/* icon in ckeditor  */
.round-tick-icon {
    color: white;
    font-size: 0.8rem;
    background-color: #022b6d;
    padding: 0.2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}


/* this is to arrange the content in number of lines  */
.clamp-1-lines {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clamp-1-lines.no-clamp {
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: unset;
}


.clamp-2-lines {
    border: 1px solid red;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clamp-2-lines.no-clamp {
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: unset;
}



.clamp-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clamp-3-lines.no-clamp {
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: unset;
}



/* .ck-editor-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 10px;
} */

/* .ck-editor-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 0rem 0.5rem;
    background-color: #fd7e14;
} */



.three-line-text {
    display: -webkit-box;
    /* enables line clamp */
    -webkit-box-orient: vertical;
    /* vertical orientation */
    -webkit-line-clamp: 3;
    /* clamp to 3 lines */
    overflow: hidden;
    /* hide extra lines */
    text-overflow: ellipsis;
    /* show "..." if text overflows */
    word-break: break-word;
    transition: line-height 0.2s, font-size 0.2s;
}


.breadcumb-area {
    height: auto !important;
    padding: 4rem 0rem;
}

.breadcumb-area {
    background: none !important;
    background-color: #4c1f84 !important;
}

.britcam-shape {
    background-color: black;
}

.breadcumb-area * {
    color: white !important;
}

.widget-categories-thumb {
    background: none !important;
    background-color: #4c1f84 !important;
}

.widget-categories-thumb * {
    color: white !important;
}

.widget-categories-thumb .widget-button a {
    background-color: black;
}


.btn-primary {
    background-color: #4c1f84 !important;
}

.modal-title {
    color: white !important;
}

.modal-header {
    background-color: #4c1f84 !important;
}