/* Regular */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Black */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Black.ttf') format('truetype');
    font-weight: 900; /* Black weight */
    font-style: normal;
}

/* Black Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Extra Bold */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* Extra Bold weight */
    font-style: normal;
}

/* Extra Bold Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Light.ttf') format('truetype');
    font-weight: 300; /* Light weight */
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium weight */
    font-style: normal;
}

/* Medium Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold weight */
    font-style: normal;
}

/* SemiBold Italic */
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}


:root {
    --main-font: 'Figtree', sans-serif;
    --main-color: #333E48;
    --main-color-hover: #20262b;
    --second-color: #D8DCE4;
    --white-color: #FFFFFF;
    --third-color: #00ACC8;
    --dark-gray: #B8B8B8;
    /*--light-gray : #F3F3F3;*/
    --light-gray:#f4f4f4;
    --text-color: #2A2D2D;
    --red-color: #f35959;
    --red-color-hover: #fd7474;
    --green-color: #CBE2B0;
    --green-color-hover: #b2c79a;
    --yellow-color: #F6D186;
    --yellow-color-hover: #F6D186;
    --highlight-color : #FAFBA8;

    /*New color palette*/
    --light-pink-color: #F8ECEA;
    --light-pink-color-1: #f4dcd8;
    --light-pink-color-2: #DBA9A6;
    --dark-pink-color: #B76C69;
    --dark-pink-color-1: #A05858;
    --light-blue-color: #E3F3F3;
    --light-blue-color-1: #C7E8E8;
    --light-green-color: #7EAFAF;
    --dark-green-color: #417581;
    --dark-green-color-1: #5294A3;
    --light-gray-1: #EDEDED;
    --light-gray-2: #D6D8D8;
    --dark-grey-1: #474C4C;
    --dark-grey-2: #2C4043;
    --light-blue-color-2: #cee7e8;
    --light-blue-color-3: #b0d8da;

}

html, body{
    font-family: var(--main-font);
    font-size: 15px;
    font-weight: normal;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6{
    color: var(--text-color);
}

h1{
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.no-padding {
    padding: 0;
}

a{
    border-bottom: 1px solid transparent;
    -webkit-transition: color .15s ,border-color .15s ;
    -moz-transition: color .15s ease-out,border-color .15s ease-out;
    transition: color .15s , border-color .15s ;
    text-decoration: none;
}

a:hover {
    color: var(--dark-grey-1);
    border-color: var(--dark-grey-1);
}

.btn{
    font-weight: 400;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-size: 15px;
}

.btn-primary{
    background-color: var(--dark-green-color);
    border-color: var(--dark-green-color);
}

.btn-primary:hover,  .btn-primary:focus, .btn-primary:active{
    background-color: var(--main-color-hover) !important;
    border-color: var(--main-color-hover) !important;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--dark-green-color);
    border-color: var(--dark-green-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-info{
    background-color: var(--dark-green-color);
    border-color:  var(--dark-green-color);
    color:  var(--white-color);
    font-weight: 600;
}

.btn-info:hover,  .btn-info:focus, .btn-info:active{
    background-color: var(--main-color-hover) !important;
    border-color: var(--main-color-hover) !important;
    color: var(--white-color) !important;
}

.btn-info:disabled{
    background-color: var(--dark-green-color);
    border-color:  var(--dark-green-color);
    color: var(--white-color);
}

.btn-outline-primary{
    border-color: var(--dark-green-color);
    color: var(--dark-green-color);
}

.btn-outline-primary .icon{
    background-color: var(--dark-green-color);
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.btn-outline-primary:hover{
    background-color: var(--dark-green-color);
    border-color: var(--dark-green-color);
}

.btn-outline-primary:hover .bg-secondary{
    background-color: #fff !important;
}

.btn-outline-primary:hover .icon{
    background-color: var(--white-color);
}

.btn-warning{
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
    color: var(--text-color);
    font-weight: 600;
}

/*.btn-warning:hover,  .btn-warning:focus, .btn-warning:active{
    background-color: var(--yellow-color-hover) !important;
    border-color: var(--yellow-color-hover) !important;
    opacity: 0.7;
}*/

.btn-danger{
    background-color: var(--red-color);
    border-color: var(--red-color);
    color: var(--white-color);
    font-weight: 600;
}

.btn-danger:hover,  .btn-danger:focus, .btn-danger:active{
    background-color: var(--red-color-hover) !important;
    border-color: var(--red-color-hover) !important;
    opacity: 0.7;
}

.btn-success{
    background-color: var(--green-color);
    border-color: var(--green-color);
    color: #ffffff;
    font-weight: 600;
}

.btn-success:hover{
    background-color: var(--green-color);
    border-color: var(--green-color);
    opacity: 0.7;
}

.btn-light{
    background-color: var(--light-blue-color-2);
    border-color:  var(--light-blue-color-2);
    color:  var(--text-color);
    font-weight: 600;
}

.btn-light:hover,  .btn-light:focus, .btn-light:active{
    background-color: var(--light-blue-color-3) !important;
    border-color: var(--light-blue-color-3) !important;
}

.btn-outline-light{
    border-color: #2b2d2d;
    color: #2b2d2d;
    font-weight: 600;
}

.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active{
    border-color: #2b2d2d;
    color: #2b2d2d;
    background-color: #f1f1f1;
}

.btn{
    border-radius: 8px;
}

.alert{
    font-size: 15px;
    padding: 10px;
}

.alert-success p{
    color: #0a3622;
}

.icon, .fa{
    vertical-align: middle;
    width: 28px;
    height: 28px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    display: inline-block;
    background-color: var(--text-color);
    transition: color 0.3s ease;
}

.icon-small {
    width: 20px !important;
    height: 20px !important;
}

.icon-home{
    mask: url('../images/facetec/icon/icon-home.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-home.svg?v=1.1') no-repeat center;
}

.icon-calendar{
    mask: url('../images/facetec/icon/icon-calendar.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-calendar.svg?v=1.1') no-repeat center;
}

.icon-user{
    mask: url('../images/facetec/icon/icon-user.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-user.svg?v=1.1') no-repeat center;
}

.icon-photo{
    mask: url('../images/facetec/icon/icon-photo.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-photo.svg?v=1.1') no-repeat center;
}

.icon-search{
    mask: url('../images/facetec/icon/icon-search.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-search.svg?v=1.1') no-repeat center;
}

.icon-marketing{
    mask: url('../images/facetec/icon/icon-marketing.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-marketing.svg') no-repeat center;
}

.icon-money{
    mask: url('../images/facetec/icon/icon-money.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-money.svg?v=1.1') no-repeat center;
}

.icon-user-profile{
    mask: url('../images/facetec/icon/icon-user-profile.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-user-profile.svg?v=1.1') no-repeat center;
}

.icon-expand{
    mask: url('../images/facetec/icon/icon-expand.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-expand.svg?v=1.1') no-repeat center;
}

.icon-users{
    mask: url('../images/facetec/icon/icon-users.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-users.svg?v=1.1') no-repeat center;
}

.icon-user-location{
    mask: url('../images/facetec/icon/icon-user-location.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-user-location.svg?v=1.1') no-repeat center;
}

.icon-task{
    mask: url('../images/facetec/icon/icon-task.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-task.svg?v=1.1') no-repeat center;
}

.icon-right-arrow-c{
    mask: url('../images/facetec/icon/icon-right-arrow-c.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-right-arrow-c.svg?v=1.1') no-repeat center;
}

.icon-right-arrow{
    mask: url('../images/facetec/icon/icon-right-arrow.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-right-arrow.svg?v=1.1') no-repeat center;
}

.icon-left-arrow-line{
    mask: url('../images/facetec/icon/icon-left-arrow-line.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-left-arrow-line.svg?v=1.1') no-repeat center;
}

.icon-left-arrow{
    mask: url('../images/facetec/icon/icon-left-arrow-v2.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-left-arrow-v2.svg?v=1.1') no-repeat center;
}

.icon-list{
    mask: url('../images/facetec/icon/icon-list.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-list.svg?v=1.1') no-repeat center;
}

.icon-view{
    mask: url('../images/facetec/icon/icon-view.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-view.svg?v=1.1') no-repeat center;
}

.icon-delete{
    mask: url('../images/facetec/icon/icon-delete.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-delete.svg?v=1.1') no-repeat center;
}

.icon-compare{
    mask: url('../images/facetec/icon/icon-compare.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-compare.svg?v=1.1') no-repeat center;
}

.icon-edit{
    mask: url('../images/facetec/icon/icon-edit.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-edit.svg?v=1.1') no-repeat center;
}

.icon-list-box{
    mask: url('../images/facetec/icon/icon-list-box.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-list-box.svg?v=1.1') no-repeat center;
}

.icon-list-v{
    mask: url('../images/facetec/icon/icon-list-v.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-list-v.svg') no-repeat center;
}

.icon-dollar{
    mask: url('../images/facetec/icon/icon-dollar.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-dollar.svg?v=1.1') no-repeat center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.icon-wrench{
    mask: url('../images/facetec/icon/icon-wrench.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-wrench.svg?v=1.1') no-repeat center;
}

.icon-eyedropper{
    mask: url('../images/facetec/icon/icon-eyedropper.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-eyedropper.svg?v=1.1') no-repeat center;
}

.icon-download{
    mask: url('../images/facetec/icon/icon-download.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-download.svg?v=1.1') no-repeat center;
}

.icon-remove{
    mask: url('../images/facetec/icon/icon-remove.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-remove.svg?v=1.1') no-repeat center;
}

.icon-crop{
    mask: url('../images/facetec/icon/icon-crop.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-crop.svg?v=1.1') no-repeat center;
}

.icon-rotate-left{
    mask: url('../images/facetec/icon/icon-rotate-left.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-rotate-left.svg?v=1.1') no-repeat center;
}

.icon-rotate-right{
    mask: url('../images/facetec/icon/icon-rotate-right.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-rotate-right.svg?v=1.1') no-repeat center;
}

.icon-arrow-h{
    mask: url('../images/facetec/icon/icon-arrow-h.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-arrow-h.svg?v=1.1') no-repeat center;
}

.icon-arrow-v{
    mask: url('../images/facetec/icon/icon-arrow-v.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-arrow-v.svg?v=1.1') no-repeat center;
}

.icon-paper{
    mask: url('../images/facetec/icon/icon-paper.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-paper.svg?v=1.1') no-repeat center;
}

.icon-move{
    mask: url('../images/facetec/icon/icon-move.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-move.svg?v=1.1') no-repeat center;
}

.icon-settings{
    mask: url('../images/facetec/icon/icon-settings.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-settings.svg?v=1.1') no-repeat center;
}

.icon-plus{
    mask: url('../images/facetec/icon/icon-plus.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-plus.svg?v=1.1') no-repeat center;
}

.icon-small-edit{
    mask: url('../images/facetec/icon/icon-small-edit.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-small-edit.svg?v=1.1') no-repeat center;
}

.icon-consent{
    mask: url('../images/facetec/icon/icon-paper.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-paper.svg?v=1.1') no-repeat center;
}

.icon-history{
    mask: url('../images/facetec/icon/icon-history.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-history.svg?v=1.1') no-repeat center;
}

.icon-close{
    mask: url('../images/facetec/icon/icon-close.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-close.svg?v=1.1') no-repeat center;
}

.icon-check-mark{
    mask: url('../images/facetec/icon/icons8-check-mark.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icons8-check-mark.svg?v=1.1') no-repeat center;
}

.icon-check{
    mask: url('../images/facetec/icon/icon-check.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-check.svg') no-repeat center;
}

.icon-question{
    mask: url('../images/facetec/icon/icon-question.svg?v=1.1') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-question.svg?v=1.1') no-repeat center;
}

.icon-eraser{
    mask: url('../images/facetec/icon/icon-eraser.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-eraser.svg') no-repeat center;
}

.icon-folder{
    mask: url('../images/facetec/icon/icon-folder.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-folder.svg') no-repeat center;
}

.icon-order{
    mask: url('../images/facetec/icon/icon-order.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-order.svg') no-repeat center;
}

.icon-charts{
    mask: url('../images/facetec/icon/icon-charts.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-charts.svg') no-repeat center;
}

.icon-camera-flip{
    mask: url('../images/facetec/icon/icon-camera-flip.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-camera-flip.svg') no-repeat center;
}

.icon-camera-rotate{
    mask: url('../images/facetec/icon/icon-camera-rotate.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-camera-rotate.svg') no-repeat center;
}

.icon-hide{
    mask: url('../images/facetec/icon/icon-hide.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-hide.svg') no-repeat center;
}

.icon-double-right{
    mask: url('../images/facetec/icon/icon-double-right.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-double-right.svg') no-repeat center;
}

.icon-camera{
    mask: url('../images/facetec/icon/icon-camera.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-camera.svg') no-repeat center;
}

.icon-comment-alt-lines{
    mask: url('../images/facetec/icon/icon-comment-alt-lines.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-comment-alt-lines.svg') no-repeat center;
}

.icon-shuffle{
    mask: url('../images/facetec/icon/icon-shuffle.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-shuffle.svg') no-repeat center;
}

.icon-left-arrow{
    mask: url('../images/facetec/icon/icon-left-arrow.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-left-arrow.svg') no-repeat center;
}

.icon-left-arrow-1{
    mask: url('../images/facetec/icon/icon-left-arrow-1.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-left-arrow-1.svg') no-repeat center;
}

.icon-right-arrow-1{
    mask: url('../images/facetec/icon/icon-right-arrow-1.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-right-arrow-1.svg') no-repeat center;
}

.icon-folder-open{
    mask: url('../images/facetec/icon/icon-folder-1.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-folder-1.svg') no-repeat center;
}

.icon-flash{
    mask: url('../images/facetec/icon/icon-flash-on.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-flash-on.svg') no-repeat center;
}

.icon-flash-off{
    mask: url('../images/facetec/icon/icon-flash-off.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-flash-off.svg') no-repeat center;
}

.icon-search-plus{
    mask: url('../images/facetec/icon/icon-search-plus.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-search-plus.svg') no-repeat center;
}

.icon-search-minus{
    mask: url('../images/facetec/icon/icon-search-minus.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-search-minus.svg') no-repeat center;
}

.icon-upload{
    mask: url('../images/facetec/icon/icon-upload.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-upload.svg') no-repeat center;
}
.icon-megaphone{
    mask: url('../images/facetec/icon/icon-megaphone.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-megaphone.svg') no-repeat center;
}

.icon-warning{
    mask: url('../images/facetec/icon/icon-warning.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-warning.svg') no-repeat center;
}

.icon-info{
    mask: url('../images/facetec/icon/icon-info.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-info.svg') no-repeat center;
}

.icon-star{
    mask: url('../images/facetec/icon/icon-star.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-star.svg') no-repeat center;
}

.icon-revert{
    mask: url('../images/facetec/icon/icon-revert.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-revert.svg') no-repeat center;
}

.icon-undo{
    mask: url('../images/facetec/icon/icon-undo.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-undo.svg') no-repeat center;
}

.icon-upload{
    mask: url('../images/facetec/icon/icon-upload.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-upload.svg') no-repeat center;
}

.expired-box .i-exp.i-check-m{
    width: 50px;
    height: 50px;
    border: 0px;
}

.expired-box .icon.icon-check-mark{
    width: 80px;
    height: 80px;
}

footer{
    position: absolute;
    bottom: 0;
    right: 10px;
}

footer p{
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-style-1{
    position: relative;
    right: 0;
    padding: 20px;
    text-align: center;
}

.footer-style-1 p{
    margin-bottom: 0;
}

.form-control{
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--dark-grey-1);
}

.form-control::placeholder{
    color: var(--dark-gray);
    font-weight: 400;
}

.control-group{
    margin-bottom: 15px;
    position: relative;
}

.required-label{
    color: var(--red-color);
    font-style: italic;
    font-size: 16px;
    font-weight: 600;
}

.control-group label{
    margin-bottom: 5px;
}

.select2-container .select2-selection {
    background-color: #fff;
    border: 1px solid var(--dark-grey-1);
    border-radius: 4px;
    padding: 0.4rem 0.75rem;
    height: auto;
}

.select2-container .select2-selection .select2-selection__rendered{
    padding-left: 0;

}

.select2-container .select2-selection .select2-selection__placeholder{
    color: var(--dark-gray);
    font-weight: 400;
    font-family: var(--main-font);
}

.select2-container .select2-selection .select2-selection__arrow b{
    border: 0;
    mask: url(../images/facetec/icon/icon-down-arrow.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-down-arrow.svg) no-repeat center;
    background-color: var(--text-color);
    width: 22px;
    height: 22px;
    -webkit-mask-size: contain;
    mask-size: contain;
    left: -5px;
    margin-top: 0;
    top: 8px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../images/facetec/icon/icon-down-arrow.svg');
    background-size: 20px;
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 20px;
}

/**Login ----- Start**/
.login-background {
    background: linear-gradient(to bottom, var(--light-blue-color), var(--light-pink-color));
    width: 100%;
    height: 100%;
    position: relative;
}

.login-background-layer::before {
    content: url('../images/facetec/logo-icon.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: auto;
}

.login-form{
    width: 75%;
    margin: 0 auto;
}

.login-form form{
    width: 100%;
}

.login-form img{
    width: 160px;
}

.login-form h2{
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
}

.login-form p{
    color: #767575;
}

.login-form .form-label{
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
}

.login-form .form-control::placeholder {
    color: var(--second-color);
    font-size: 15px;
}

.login-form .form-control{
    height: 54px;
    font-size: 15px;
}

a{
    color: var(--dark-green-color);
    text-decoration: none;
    border-color: var(--dark-green-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover{
    color: var(--main-color);
    text-decoration: none;
    border-color: var(--main-color);
}

.l-copyright{
    padding-left: 60px;
}

.l-copyright p{
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.login-form .btn{
    padding: 10px 65px;
    font-size: 18px;
    font-weight: 600;
}

/**Login ----- End**/

.screen-style{
    max-width: 1920px;
    margin-left: 0;
}

.left-content{
    background-color: var(--dark-green-color);
    z-index: 999;
    width: 280px;
    z-index: 1000;
    bottom: 0;
    top: 0;
    right: auto;
    overflow: hidden;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    -moz-transition: -moz-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    -o-transition: -o-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

.right-content{
    width: 100%;
    padding-top: 2rem;
    padding-left: 310px;
    padding-right: 30px;
}

.sm-logo .icon{
    -webkit-mask-size: 100%;
    mask-size: 100%;
    width: 35px;
    height: 35px;
}

.main-nav{
    padding: 0;
    padding-right: 20px;
    padding-left: 20px;
}

.nav-clear{
    height: 85px;
}

.main-nav .nav-item{
    width: 100%;
}

.main-nav .nav-link {
    position: relative;
    width: 100%;
    padding: 6px 25px 6px 0;
    font-size: 15px;
    color: var(--white-color);
    transition: color 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-nav .nav-link:hover{
    color: var(--light-blue-color-1);
}

.submenu-list{
    margin-left: 20px;
}

.submenu-list .nav-link{
    padding: 8px;
    margin-left: 15px;
}

.submenu-list li{
    position: relative;
    display: flex;
    align-items: center;
}

.submenu-list li::marker{
    content: ' ';
}

.submenu-list li::before{
    content: ' ';
    position: absolute;
    mask: url('../images/facetec/icon/icon-circle.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-circle.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 17px;
    height: 17px;
    left: 0;
    transition: color 0.3s ease;
    background-color: var(--white-color);
}

.submenu-list li:hover::before{
    background-color:  var(--light-blue-color-1);
}

.main-nav .nav-link .icon{
    vertical-align: sub;
    width: 30px;
    height: 30px;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-block;
    background-color: var(--white-color);
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover .icon{
    background-color: var(--light-blue-color-1);
}

.submenu::after{
    content: ' ';
    mask: url('../images/facetec/icon/icon-down-arrow.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-down-arrow.svg') no-repeat center;
    background-color: var(--second-color);
    position: absolute;
    right: 0;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 22px;
    height: 22px
}

.submenu.collapsed::after{
    width: 12px;
    height: 12px;
    background-color: var(--second-color);
    mask: url('../images/facetec/icon/icon-left-arrow.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-left-arrow.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.main-nav .active a{
    color:var(--light-blue-color-1);
}

.main-nav .active .icon{
    background-color: var(--light-blue-color-1);
}

.menu-title{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 30px;
    color: var(--white-color);
    font-weight: 600;
}

.logo{
    width: 100%;
    text-align: center;
}

.logo a {
    padding: 0 20px;
    display: block;
    border-color: transparent;
    border: 0px;
}

.logo img{
    width: 140px;
}

.page{
    background-color: var(--light-gray);
}

.app-header{
    background: var(--white-color);
    border-block-end: 1px solid #e1e6f1;
    padding: 10px 0;
    inset-block-start: 0;
    inset-inline: 0;
    max-width: 100%;
    position: absolute;
    transition: all .1s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.app-header .row {
    margin-right: auto;
}

.user-profile{
    width: 33px;
    height: 33px;
    margin-right: 10px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center; /* Horizontally center the icon */
    align-items: center;
}

.user-profile .icon{
    background-color: var(--dark-gray);
    width: 28px;
    height: 28px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.user-pr .dropdown-toggle span{
    display: inline-block;
    margin-right: 32px;
}

.user-pr .dropdown-toggle::after{
    border: 0;
    content: ' ';
    mask: url('../images/facetec/icon/icon-down-arrow.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-down-arrow.svg') no-repeat center;
    background-color: var(--text-color);
    position: absolute;
    right: 0;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 22px;
    height: 22px;
}

.toggle-fullscreen .icon{
    width: 25px;
    height: 25px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.has-search .form-control {
    padding-left: 2.375rem;
    background-color: var(--light-gray);
    border: 1px solid var(--light-gray);
}

.has-search .form-control::placeholder{
    color: var(--dark-grey-1);
}

.has-search .form-control-feedback {
    position: absolute;
    top: 50%; /* Position at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    z-index: 2;
    display: block;
    width: 22px;
    height: 22px;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    background-color: var(--second-color);
    margin-left: 8px;
    -webkit-mask-size: 25px 25px;
}

.user-pr .dropdown-menu{
    border: 0;
    right: 0 !important
}

.dropdown-item.role{
    cursor:default;
    color: #000;
}

.user-pr .dropdown-menu .dropdown-item{
    padding: 12px;
}

.breadcrumb li:first-child a {
    color: var(--text-color);
    text-decoration: none;
}

.breadcrumb .breadcrumb-item{
    color : #787676
}

.breadcrumb .breadcrumb-item a{
    color : #787676;
    text-decoration: none;
    border: 0px;
}

.welcome-card{
    background-image: url('../images/facetec/welcome-bg.jpg');
    background-size: cover;
    width: 100%;
    min-height: 217px;
    height: 100%;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    background-position: center;
}

.welcome-card .bg{
    background-color: rgb(0 172 200 / 29%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999;
    border-radius: 10px;
}

.welcome-card .content{
    z-index: 999999;
    position: relative;
    color: var(--white-color);
    height: 100%;
}

.welcome-card .content h2{
    color: var(--white-color);
    margin-bottom: 13px;
}

.h2-font-style-bold{
    font-size: 16px;
    font-weight: 600;
}

.small-font-style{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.card{
    border-radius: 10px;
}

.card-body{
    padding: 20px;
}

.welcome-card p{
    margin-bottom: 5px;
}

.welcomr-card__bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.dashboard-card{
    position: relative;
    height: 100%;
}

.dashboard-card span{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.dashboard-card p{
    color: var(--dark-grey-2);
    margin-bottom: 5px;
}

.dashboard-card .dashboard-card-icon{
    background-color: var(--dark-green-color);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    top: 50%;
    border-radius: 50%;
    gap: 1rem;
}

.dashboard-card .dashboard-card-icon .icon{
    background-color: var(--white-color);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    width: 45px;
    height: 35px;
}

.dashboard-card .card-body{
    padding: 18px;
}

.card-body.dashboard-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-line::before{
    content: ' ';
    width: 3px;
    height: 27px;
    background-color: var(--main-color);
    position: absolute;
    display: inline-block;
    top: -5px;
    left: 0;
}

.recent-patient-list{
    margin-top: 30px;
}

.recent-patient-list p{
    margin: 0;
}

.recent-patient-list .date{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.recent-patient-list .date .icon{
    width: 26px;
    margin-right: 10px;
    background-color: var(--main-color);
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.recent-patient-list .name{
    display: flex;
    align-items: center;
    width: 100%;
}

.recent-patient-list .name .icon{
    width: 20px;
    margin-right: 15px;
    background-color: var(--dark-grey-1);
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.recent-patient-list .name a{
    text-decoration: none;
}

.bt-link .icon{
    width: 15px;
    background-color: var(--third-color);
    height: 10px;
    width: 10px;
}

.bt-link:hover .icon{
    background-color: var(--white-color);
}

.bt-link{
    padding: 5px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-logo{
    margin-top: 10px;
}

#sidebar-mobile{
    background-color: var(--main-color);
}

.main-content{
    position: relative;
    padding-bottom: 45px;
}

.toggle-fullscreen{
    text-decoration: none;
    border: 0px;
}

.toggle-fullscreen:hover, .logo a:hover{
    text-decoration: none;
    border: 0;
}

/**Schedule -- Start**/
.dhx_menu_icon.icon_location{
    background-image: url('location_icon.png');
}

.dhx_section_time {
    height: auto !important;
}

.dhx_section_time select:nth-child(5),
.dhx_section_time select:nth-child(6),
.dhx_section_time select:nth-child(7),
.dhx_section_time select:nth-child(8) {
    display: none;
}

.dhx_section_time select:nth-child(4) {
    clear: both;
}

.dhx_section_time select:nth-child(4):before {
    content: "Start Time";
}

.dhx_cal_event.op_2{
    background: linear-gradient(135deg, #00B894, #009966); /* Emerald to Teal */
}

.dhx_cal_event.op_3{
    background: linear-gradient(135deg, #FFA726, #FF7043); /* Orange to Coral */
}

.dhx_cal_event.no_op{
    background: linear-gradient(135deg, #90A4AE, #607D8B) !important; /* Cool Gray to Slate */
}

.dhx_cal_event{
    background: linear-gradient(135deg, #42A5F5, #0288D1); /* Sky Blue to Ocean Blue */
}

.dhx_cal_event .dhx_body,
.dhx_cal_event .dhx_footer,
.dhx_cal_event .dhx_header,
.dhx_cal_event .dhx_title {
    background-color: unset !important;
}

.dhx_cal_tab{
    font-size: 13px;
}


.schedule_title_link, .edit_event_link, .ap_type_event{
    border-color: unset !important;
    text-decoration: none !important;
    border-bottom: unset !important;
}


.lightbox-input {
    width: 100%;
    border-radius: 2px !important;
    padding: 0.7rem 0.75rem !important;
    border: 1px solid var(--dark-grey-1) !important;
}

.new_label_patient img{
    width: 20px;
}

.new_label_patient{
    color: #0288d1;
    border-top: 1px solid #e2e2e2;
    padding: 5px 0;
    margin-top: 10px;
}

.new_label_patient_empty{
    text-transform: uppercase;
    color: #626262;
    padding-top: 5px;
}

.close-patient{
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
}

.dhx_cal_event.no_op .ap_type_event,
.ap_type_event{
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 11px;
    color: #fff;
    background-color: #4d4d4d !important;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dhx_cal_event.op_2 .ap_type_event,
.dhx_cal_event.op_3 .ap_type_event{
    background-color: #4d4d4d !important;
}

.dhx_scale_holder .dhx_cal_event .dhx_body{
    overflow: hidden !important
}

.schedule_title_link{
    color: #FFFFFF !important;
    text-decoration: underline;
}

.schedule_title_link :hover {
    cursor: pointer;
}

.dhx_cal_event :hover .edit-event{
    display: block;
}
.edit-event {
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: 4px;
    background-color: #4d4d4d !important;
    width: 20px;
    height: 20px;
    display: block;
    justify-content: center;
    align-items: center;
    margin-right: 22px;
    text-align: center;
}

.edit-event-icon {
    vertical-align: middle;
    width: 14px;
    height: 14px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    display: inline-block;
    transition: color 0.3s ease;
    background-color: #fff !important;
}

.dhx_cal_event :hover .edit-event
{
    display: block;
}

.dhx_cal_event.dhx_cal_event_drag .dhx_event_resize.dhx_footer,
.dhx_cal_event.dhx_cal_event_selected .dhx_event_resize.dhx_footer,
.dhx_cal_event:hover .dhx_event_resize.dhx_footer{
    margin-top: -8px;
    height: 8px;
}

.dhx_cal_navline{
    position: relative;
    height: 80px !important;
}

.dhx_cal_navline .dhx_cal_prev_button,
.dhx_cal_navline .dhx_cal_next_button,
.dhx_cal_navline div{
    top: 20px;
}

#scheduler_here{
    width: 100%;
    height: 850px !important;
    font-family: var(--main-font);
    font-size: 15px;
}

.clinic_closed{
    background-color: #f0f0f0 !important;
    opacity: 0.6;
}

.dhx_cal_event{
    overflow: hidden;
}

.dhx_cal_light{
    border-radius: 10px !important;
    overflow: hidden;
    padding: 20px !important;
}

.dhx_cal_ltitle{
    background-color: #fff !important;
    border: 0px !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
}

.dhx_cal_light .dhx_title{
    color: var(--text-color) !important;
    font-family: var(--main-font);
    padding: 0 !important;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 15px;
}

.dhx_cal_light_wide .dhx_wrap_section{
    padding-right: 0 !important;
    display: flex;
    align-items: center;
    margin-bottom: 8px !important;
}

.dhx_cal_light_wide .dhx_cal_lsection{
    margin: 0 !important;
    width: 180px !important;
    font-family: var(--main-font);
    font-weight: 400;
    color: var(--text-color);
    padding-top: 0 !important;
    text-align: left !important;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.dhx_cal_light .dhx_lightbox_month_select,
.dhx_cal_light .dhx_lightbox_day_select,
.dhx_cal_light .dhx_lightbox_year_select,
.dhx_cal_light .dhx_lightbox_time_select{
    margin-right: 5px !important;
    height: 32px !important;
}

.dhx_cal_light .dhx_lightbox_time_select{
    margin-top: 5px !important;
}

.dhx_cal_light input{
    height: 40px !important;
    border-radius: 0.375rem !important;
    font-size: 15px !important;
    font-family: var(--main-font);
    font-weight: 400;
    color: var(--text-color);
}

.dhx_cal_ltext textarea{
    border-radius: 0.375rem !important;
    height: 80px !important;
    border: 1px solid var(--dark-grey-1);
}

.dhx_cal_light select{
    height: 40px !important;
    border-radius: 0.375rem !important;
    font-size: 15px !important;
    font-family: var(--main-font);
    font-weight: 400;
    color: var(--text-color);
    margin: 0 !important;
    border: 1px solid var(--dark-grey-1);
}


.dhx_cal_light_wide .dhx_cal_ltext{
    height: auto !important;
    margin: 0 !important;
    width: 100%;
    padding-left: 10px;
}

.dhx_cal_light .dhx_wrap_section .dhx_section_time{
    padding: 0 !important;
    width: 100%;
    padding-left: 10px !important;
}

.dhx_cal_light{
    width: 500px;
}

.custom-time-label{
    left: -390px !important;
    top: 5px !important;
}

.custom-date-label{
    top: -20px;
    position: relative;
}

.dhx_cal_light_wide .dhx_cal_larea{
    padding-bottom: 25px;
}

.dhx_delete_btn_set{
    background-color: var(--red-color) !important;
    margin-left: 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-family: var(--main-font);
    border: 0px !important;
}

.dhx_save_btn_set{
    background-color: var(--dark-green-color) !important;
    border: 0px !important;
    margin-right: 0 !important;
    color: var(--white-color) !important;
    font-family: var(--main-font);
}

.dhx_save_btn_set:hover div {
    background-color: var(--main-color) !important;
}

.dhx_cancel_btn_set{
    background-color: var(--second-color) !important;
    border: 0px !important;
    color: var(--dark-grey-1) !important;
    font-family: var(--main-font);
}

.dhx_time{
    color: var(--text-color) !important;
    font-size: 15px;
}

.dhx_time:not(:empty) {
    margin-right: 15px !important;
}

.dhx_scale_bar{
    font-family: var(--main-font);
    color: var(--dark-grey-1) !important;
    font-size: 15px;
}


.dhx_section_time select.dhx_lightbox_day_select{
    min-width: 60px!important;
}

.ui-menu{
    font-size: 14px !important;
    font-family: var(--main-font);
}

.dhx_cal_event .dhx_title{
    height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    font-size: 14px !important;
    font-family: var(--main-font)
}

/* .dhx_cal_data {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
} */

.dhx_cal_touch_active {
    overscroll-behavior: auto !important;
}

.dhx_cal_data {
    touch-action: auto !important;
}

.dhx_cal_data div.dhx_cal_event_clear,
.dhx_cal_data div.dhx_cal_event_line,
.dhx_multi_day div.dhx_cal_event_clear,
.dhx_multi_day div.dhx_cal_event_line{
    background-color: #e8e8e8;
    color: #000;
}

/**Schedule -- End**/

.help-block{
    color: #e24a4a;
}

.datepicker .next::before{
    content: " ";
    mask: url('../images/facetec/icon/icon-arrow-forward-right.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-arrow-forward-right.svg') no-repeat center;
    background-color: #000;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-block;
}

.datepicker .prev::before{
    content: " ";
    mask: url('../images/facetec/icon/icon-arrow-back-left.svg') no-repeat center;
    -webkit-mask: url('../images/facetec/icon/icon-arrow-back-left.svg') no-repeat center;
    background-color: #000;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-block;
}

.datepicker-dropdown{
    padding: 15px;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

/**Patients -- Start**/
.help-tooltip{
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    position: relative;
    margin-left: 6px;
}

.help-tooltip .icon{
    width: 100%;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.help-tooltip svg{
    width: 15px;
    fill: #fff;
    margin-top: 2px;
}

.table-style table{
    width: 100% !important;
    border-collapse: separate;
}

.table-style table td, .table-style table th {
    border: 1px solid var(--second-color);
    padding: 11px !important;
    color: var(--text-color);
}

.table-style table.no-footer {
    border: 0 !important;
}

.table-style table thead th{
    border-bottom: 1px solid var(--second-color) !important;
    font-weight: 600 !important;
}

.table-style table td, .table-style table th {
    border-left: none;
    border-top: none;
    vertical-align: middle;
}

.table-style table tr:first-child th {
    border-top: 1px solid var(--second-color);
}
.table-style table tr th:first-child, .table-style table tr td:first-child {
    border-left: 1px solid var(--second-color);
}

.table-style .dataTables_length select{
    border: 1px solid var(--second-color);
    padding: 3px 5px;
    border-radius: 3px;
    width: 60px;
}

.table-style div.dt-container div.dt-search{
    margin-bottom: 20px;
}

.table-style div.dt-container div.dt-search input{
    border: 1px solid var(--second-color);
    border-radius: 5px;
    padding: 5px;
}

.table-style div.dt-container div.dt-search input:focus {
    border-color: var(--dark-gray);
    outline: none;
}


.table-style .pagination .page-item,
.table-style .dataTables_wrapper .pagination .page-item
{
    font-family: var(--main-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color) !important;
    margin-left: 5px;
}

.table-style .page-link{
    color: var(--text-color) !important;
}

.table-style .pagination .page-item.active .page-link{
    background: var(--second-color);
    border: 1px solid var(--second-color);
}

.table-style .dataTables_wrapper .pagination .page-item.disabled,
.table-style .dataTables_wrapper .pagination .page-item.disabled:hover,
.table-style .dataTables_wrapper .pagination .page-item.disabled:active{
    color: #d2d2d2 !important;
    border: 1px solid #d2d2d2;
}

.table-style .dataTables_wrapper .pagination{
    margin-top: 10px;
}

.table-style .dataTables_info{
    margin-top: 18px;
}

body .ui-tooltip {
    border-width: 2px;
    background: #000;
    border: 0;
    box-shadow: 0 0 0px;
    color: #fff;
    font-family: var(--main-font);
    font-size: 12px;
    padding: 10px;
}

.badge{
    font-size: 90% !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
}

.badge-success{
    background-color: var(--green-color);
    color: var(--text-color);
}

.badge-danger{
    background-color: var(--red-color);
}

.badge-secondary{
    background-color: var(--second-color);
    color: var(--text-color);
}

.action-icons, .action-buttons{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.action-icons li{
    display: inline-block;
    margin-right: 5px;
}

.action-icons li a, .action-icons li button{
    width: 33px;
    height: 33px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 0;
}

.action-icons li .color-success,
.action-buttons li .color-success
{
    background-color: var(--green-color);
}

.action-icons li .color-success:hover,
.action-buttons li .color-success:hover
{
    background-color: var(--green-color-hover);
}

.action-icons li .color-warning,
.action-buttons li .color-warning
{
    background-color: var(--yellow-color);
}

.action-icons li .color-warning:hover,
.action-buttons li .color-warning:hover
{
    background-color: var(--yellow-color-hover);
}

.action-icons li .color-danger,
.action-buttons li .color-danger
{
    background-color: var(--red-color);
}

.action-icons li .color-danger:hover,
.action-buttons li .color-danger:hover
{
    background-color: var(--red-color-hover);
}

.action-icons li .color-info,
.action-buttons li .color-info
{
    background-color: var(--third-color);
}

.action-icons li .color-info:hover,
.action-buttons li .color-info:hover
{
    opacity: 0.8;
}

.action-icons li .color-default,
.action-buttons li .color-default
{
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
}

.action-icons li .color-default:hover,
.action-buttons li .color-default:hover
{
    opacity: 0.8;
}

.action-icons li .icon{
    width: 28px;
    height: 28px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.treatment-table .action-icons li a, .action-icons li button{
    width: 38px;
    height: 38px;
}

.action-icons li .consent-icon{
    width: 28px;
    height: 28px;
}

.action-icons li .icon.icon-list-box{
    width: 28px;
    height: 28px;
    -webkit-mask-size: 100%;
     mask-size: 100%;
}

.action-buttons li{
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 5px;
}

.action-buttons li a, .action-buttons li button{
    transition: background-color 0.3s ease;
    border: 0;
    padding: 6px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.action-buttons li .icon{
    width: 26px;
    height: 26px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.action-buttons li .color-success,
.action-buttons li .color-warning
{
    color: var(--text-color);
}

.action-buttons li .color-success .icon,
.action-buttons li .color-warning .icon
{
    background-color: var(--text-color);
}

.action-buttons li .color-info,
.action-buttons li .color-danger{
    color: var(--white-color);
}

.action-buttons li .color-info .icon,
.action-buttons li .color-danger .icon{
    background-color: var(--white-color);
}


/**Patients -- End**/

/**Patient - Add -- Start**/
.form-check-input:checked {
    background-color: var(--text-color);
    border-color: var(--text-color);
}

.card-style .card-body {
    padding: 20px;
    color: var(--text-color);
}

.h3-style-1{
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: capitalize;
}

.h3-style-2{
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: capitalize;
}

.h3-style-2-uncapitalized{
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.h3-style-3{
    font-size: 14px;
    color: var(--white-color);
    font-weight: 600;
}

.h3-style-4{
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
}

.h3-style-5{
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkbox-style .controls {
    display: flex;
    align-items: center;
}

.checkbox-style .controls label.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.checkbox-style .controls label.checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.select2-custom-div .form-control-feedback.glyphicon{
    right: 20px;
}

.form-control-feedback.glyphicon{
    position: absolute;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: inline-block;
    right: 0;
    margin-right: 3px;
    top: 6px;
    z-index: 1;
}

.form-control-feedback.glyphicon.glyphicon-ok{
    mask: url(../images/facetec/icon/icon-correct.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-correct.svg) no-repeat center;
    background-color: #3c763d;
}

.form-control-feedback.glyphicon.glyphicon-remove{
    mask: url(../images/facetec/icon/icon-remove.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-remove.svg) no-repeat center;
    background-color: #a94442;
}

.controls, .cust-form-width, .form-group{
    position: relative;
}

.datepicker-days {
    padding: 10px
}

.datepicker .datepicker-days table td, .datepicker .datepicker-days th {
    width: 30px;
    height: 30px;
}
/**Patient - Add -- End**/

.split-view{
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-column-gap: 15px
}

.card-details{
    padding: 0;
    list-style: none;
    margin: 0;
}

.card-details li{
    margin-bottom: 20px;
}

.card-details li label{
    font-weight: 600;
}

.profile-card_img{
    box-sizing: border-box;
    border-right: 1px solid #eee;
    padding: 5px;
}

.profile-card_img .img_box{
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    border: 0.5px solid lightgray;
}

.profile-card_img .edit_img_box{
    width: 100%;
    height: 100%;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    border: 0.5px solid lightgray;
}

.profile-img-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
}

.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-overlay:focus-within,
.profile-overlay:hover {
  opacity: 1;
  cursor: pointer;
}

.edit-profile-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.profile-card {
    display: flex;
    gap: 3px;
}

.profile-card_img {
    margin-bottom: 5px;
    width: 40%;
    min-width: 200px;
}

.profile-card_content{
    box-sizing: border-box;
    padding-left: 10px;
    width: 60%;
}

.patient-personal-details {
    min-width: 330px;
}

.btn-same{
    max-width: 180px;
    min-width: 145px;
    padding: 10px;
}

.btn-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-list button{
    max-width: 120px;
    min-width: 80px;
    padding: 5px;
    margin: 2px;
}

.same-height .card-box-1{
    height: 100%;
}

.same-height .card-box-1 .card-style{
    height: 100%;
}

.list-style-1{
    padding: 0;
    list-style: none;
    position: relative;
}

.list-style-1 li{
    padding-left: 22px;
    position: relative;
}

.list-style-1 li::before{
    content: " ";
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
}

.list-style-2{
    padding-left: 10px;
    list-style: none;
    position: relative;
}

.list-style-2 li{
    padding-left: 22px;
    position: relative;
    margin-bottom: 15px;
}

.list-style-2 li .text-no-empty{
    background-color: var(--highlight-color);
    color: #404040;
    font-weight: 500;
    padding: 3px 10px;
    display: block;
    width: fit-content;
    /*white-space: pre-line;*/
    border-radius: 5px;
}

.list-style-2 li::before{
    content: " ";
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 4px;
}


.tabs-style{
    background-color: var(--light-gray);
    padding: 5px;
    border-radius: 5px;
}

.tabs-style .nav-link.active, .tabs-style .show>.nav-link{
    background-color: var(--white-color);
    color: var(--text-color);
    font-weight: 500;
}

.tabs-style .nav-link{
    color: var(--dark-gray);
}

.highlight-box, .highlight-box .select2-container .select2-selection{
    border-color: #f7ef83 !important;
    background-color: #fffcd8;
    border-radius: 4px;
}

.display-block{
    display: block !important;
}

.compareVisit li{
    margin-bottom: 10px;
}

.compareVisit li a{
    color: var(--text-color);
}

.label-list span{
    font-size: 15px;
    letter-spacing: normal;
    font-weight: 600;
    padding: 5px 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.label-list a{
    color: #000;
}

.no-border{
    border: 0;
}


.note-editor {
	border: 1px solid #DCE1E4;
	border-radius: 0;
}

.note-dialog .note-modal-form {
	margin: 0 15px 0 15px;
}

.note-editor .note-toolbar {
	border-bottom: 0;
	background: #fff;
	padding: 10px;
}

.note-popover .popover .popover-content>.btn-group, .note-toolbar>.btn-group {
	margin-top: 0;
}

.note-editor .note-editable {
	padding: 15px;
	padding-top: 10px;
	overflow: auto;
	outline: 0;
}

.note-editor .note-statusbar {
	background: transparent;
}

.note-editor .note-statusbar .note-resizebar {
	border: 0;
}

.fa-bold{
    mask: url(../images/facetec/icon/icon-bold.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-bold.svg) no-repeat center;
}

.fa-italic{
    mask: url(../images/facetec/icon/icon-italic.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-italic.svg) no-repeat center;
}

.fa-underline{
    mask: url(../images/facetec/icon/icon-underline.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-underline.svg) no-repeat center;
}

.fa-list-ul{
    mask: url(../images/facetec/icon/icon-list-ul.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-list-ul.svg) no-repeat center;
}

.fa-save{
    mask: url(../images/facetec/icon/icon-save.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-save.svg) no-repeat center;
}

.note-editor .note-toolbar{
    background-color: transparent !important;
    border: 0 !important;
}

.note-style.btn-group .fa, .note-para.btn-group .fa{
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.note-style.btn-group button, .note-para.btn-group button{
    border: 1px solid var(--dark-grey-1);
    width: 30px;
    height: 30px;
    border-radius: 0;
    padding: 0;
}

.note-editor{
    border: 1px solid var(--dark-grey-1) !important;
    border-radius: 5px;
}

.note-editor .note-statusbar{
    background-color: transparent !important;
}

.note-editor .note-statusbar .note-resizebar{
    border: 0 !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.text-editor .pull-right button{
    padding: 8px 20px;
}

.text-editor .pull-right button .fa{
    display: none;
}

.visit-box .panel-heading {
    overflow: hidden;

}

.visit-box .panel-heading .panel-title{
    float: left;
}

.btn-default{
    border: 1px solid var(--second-color);
    font-weight: 500;
    color: var(--text-color);
}

.visit-btn-group button{
    padding: 5px 12px;
}

.visit-btn-group .icon{
    width: 28px;
    height: 28px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.table-style-2 tr th{
    font-size: 14px;
}

.table-style-2 td{
    vertical-align: middle;
}

.table-style-2 .control-group{
    margin-bottom: 0;
}

.displayBox1{
    display: flex;
    align-items: flex-start;
}

.displayBox1 .box{
    margin-right: 25px;
}

.displayBox1 .box strong{
    font-weight: 600;
}

.displayBox1 .box p{
    margin-bottom: 5px;
    margin-left: 10px;
}

.open>.dropdown-menu {
    display: block;
}

.table-td-top table td{
    vertical-align: top;
}

.ui-select-bootstrap .ui-select-toggle>.caret {
    mask: url(../images/facetec/icon/icon-down-arrow.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-down-arrow.svg) no-repeat center;
    background-color: var(--text-color);
    width: 22px;
    height: 22px !important;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    top: 10px !important;
    right: 3px !important;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn,
button[disabled],
.disabled
{
    cursor: not-allowed !important;
    box-shadow: none;
    opacity: .5;
}

.txEncDiv[disabled]{
    cursor: not-allowed !important;
}

.table>:not(caption)>*>*{
    box-shadow: none;
}

.btn-close{
    background-size: 40%;
}

/*.alert-dismissible .btn-close{
    background-size: 30%;
    padding: 8px;
}*/
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    color: inherit;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.btn-secondary{
    background-color: var(--second-color);
    border: 0;
    color: var(--text-color);
}

.btn-publish-live {
    background-color: var(--green-color-hover) !important;
}

.btn-small{
    padding: 2px 10px;
}

.btn-small .icon{
    width: 28px;
    height: 28px;
}

.btn-secondary:hover .icon{
    background-color: var(--white-color);
}

.map-container .location {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #000;
    cursor: pointer;
    font-family: 'Arial';
    font-size: 8px;
    color: #fff;
    text-align: center;
}

.map-container {
    width: 321px;
    height: 426px;
    position: relative;
}

.map-container2 {
    width: 231px;
    height: 306px;
    position: relative;
}

.map-container2.fullscreen {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.map-container2 .location2 {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background: #000;
    font-family: 'Arial';
    font-size: 7px;
    color: #fff;
    text-align: center;
}

.map-container2 .location2.fullscreen {
    position: absolute;
    width: 2vw;
    height: 2vw;
    min-width: 9px;
    min-height: 9px;
    max-width: 25px;
    max-height: 25px;
    border-radius: 50%;
    background: #000;
    font-family: 'Arial';
    font-size: clamp(7px, 1.3vw, 18px);
    color: #fff;
    text-align: center;
}

.treatment-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.treatment-preview-overlay:focus-within,
.treatment-preview-overlay:hover {
    opacity: 1;
    cursor: pointer;
}

.fullscreen-image {
    width: 100%;
    height: min(80vh, 100vw);
    object-fit: contain;
    display: block;
}

.dermal-editor {
    width: auto;
    height: min(70vh, 100vw);
    object-fit: contain;
    display: block;
}

.dermal-canvas.draw {
    cursor: url('../images/facetec/icon/icon-pencil-cursor.png') 1 20, auto;
}

.dermal-canvas.erase {
    cursor: url('../images/facetec/icon/icon-eraser-cursor.png') 2 12, auto;
}

.dermal-bg {
    background-image: url("../images/anatomy/675px_front.jpg");
    object-fit: contain;
    display: block;
}

.treatment-preview-img-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.treatmentPreviewModal {
    width: 60vw;
    max-height: 100vh;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.editDermalFillerModal {
    width: 60vw;
    max-height: 100vh;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

/* Prevents an issue where clicking slider arrows highlights all components of the next slide */
.swiper-slide {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.swiper {
    visibility: hidden;
}

.swiper.swiper-initialized {
    visibility: visible;
}

.dropzone {
    border: 0 !important;
    background: var(--second-color) !important;
}

.nsort-container {
    float: left;
    width: 20%;
}

.nsort-portrait {
    width: 95%;
    aspect-ratio: 1 / 1.4;
    list-style: none;
    padding: 0;
}

.nsort-landscape {
    width: 95%;
    aspect-ratio: 1.2 / 1;
}

/*.nsort {
    list-style-type: none;
    padding: 0;
}*/

.nsort-text {
    text-align: center;
    margin-bottom: 10px;
}

.btn-m{
    padding: 7px 10px;
}

.icon-d{
    width: 26px !important;
    height: 26px !important;
    -webkit-mask-size: 100%;
    mask-size: 100% !important;
}

.img-portrait .childDiv .icon{
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.img-portrait {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 191px;
    margin: 0;
    padding-left: 143px 0 0 0;
}

.contained-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-portrait > div {
    padding-top: 167px;
    width: 100%;
    position: absolute;
    z-index: 1000;
}

.img-portrait .dropzone-file{
    position: relative ;
    padding-top: 0;
    text-align: left;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #616161;
}

.img-portrait .dropzonepdf{
    width:65%;
    height: auto;
}

.childDiv {
    display: none;
    font-size: 0px;
}

.parentDiv:hover {
    cursor: pointer;
}

.parentDiv{
    position: relative;
    width: 100%;
    height: 100%;

    text-align: center;
}

/*.img-portrait > div > button:nth-of-type(1) {
    width: 48px;
}*/

.ptifa-corner-btn {
    margin: 0px;
    padding: 2px;
    width: 33.3333%;
    border-radius: 0;
    height: 38px;
}

.delete-corner-btn {
    position: absolute;
    right: 0px;
    top: 0px;
}

.parentDiv:hover .childDiv, .parentDiv.hover .childDiv {
    display: block;
}

.nsort li{
    border: 0;
    width: 100%;
    height: 100%;
}

.div-bottom{
    padding-top: 0 !important;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Override bootstrap property */
.fullscreen .modal {
    --bs-modal-width:: 100vw;
}

.fullscreen .modal-dialog {
    --bs-modal-width:: 100vw;
    margin: var(--bs-modal-margin)  auto  0 auto;
}

.fullscreen .modal-content {
    --bs-modal-width:: 100vw;
}

#modalImgTag {
    max-width: 100%;
    max-height: 100%;
}

.img-container {
    max-height: calc(100vh - 225px);
    overflow: hidden;
}

.docs-buttons .icon {
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.docs-buttons button{
    padding: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    list-style: none;
    text-shadow: none;
    padding: 0px;
    margin: 10px 0px 0px 0px;
    background-color: #ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid #d8dee4;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu:before {
    position: absolute;
    top: -8px;
    left: 9px;
    right: auto;
    display: inline-block !important;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #d8dee4;
    border-left: 8px solid transparent;
    content: '';
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    border: 0px;
}

.dropdown-menu li a {
    padding: 7px 10px 7px 10px;
    color: #5f5f5f;
}

.compare-list-photos .item{
    text-align: center;
    cursor: pointer;
}

.compare-list-photos .item-box{
    height: 150px;
    display: flex;
}

.compare-list-photos .item .img-box{
    height: 100%;
    width: 100%;
    background-size: cover;
}

.compare-list-photos .owl-nav .owl-prev{
    margin-right: 10px;
}

.btn-group-text .twitter-typeahead{
    flex: 1 1 auto;
    width: 1%;
    margin: 0;
}

.btn-group-text .form-control{
    border-radius: 0;
}

.btn-group-text .input-group-append button{
    height: 100%;
    border-radius: 0;
}

.checkbox-group .checkbox .cb-label{
    display: flex;
    align-items: center;
}

.checkbox-group .checkbox{
    margin-bottom: 5px;
}

.checkbox-group .checkbox .cb-label input{
    margin-right: 5px;
}

.display_flex{
    display: flex;
}

.btn-group-text.half-border .form-control{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn-group-text.half-border .input-group-append button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.loading{
    text-align: center;
    padding: 50px;
    display: none;
}

.loading .loading-icon{
    mask: url(../images/facetec/icon/icon-loading.svg) no-repeat center;
    -webkit-mask: url(../images/facetec/icon/icon-loading.svg) no-repeat center;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    display: inline-block;
    background-color: var(--text-color);
    transition: color 0.3s ease;
}

.fv-tooltip-p p{
    margin-bottom: 0px !important;
}

.fv-tooltip-p .icon{
    background-color: var(--white-color);
}

.text-bg-secondary{
    color: var(--main-color) !important;
    background-color: var(--second-color) !important;
}

.no-photos {
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #808080;
    font-size: 2rem;
    font-weight: 400;
    border-radius: 10px;
    height: 250px;
    width: 100%;
    text-align: center;
}

.tab-menu-style-1{
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 5px;
    border-radius: 5px;
}

.tab-menu-v label {
    background-color: transparent;
    border: 0;
    padding: 2px 10px;
    font-weight: 400;
    color: var(--dark-gray);
}

.tab-menu-v label .icon{
    -webkit-mask-size: 100%;
    mask-size: 100%;
    width: 25px;
    height: 25px;
    margin-right: 3px;
    background-color: var(--dark-gray);
}

.tab-menu-v input[type="radio"]:checked + label {
    background-color: white;
    font-weight: 500;
}

.tab-menu-v input[type="radio"]:checked + label .icon{
    background-color: var(--text-color);
}

.gray-bg{
    background-color: var(--light-gray);
}

.text-right{
    text-align: right;
}

.dataTables_filter{
    margin-bottom: 20px;
}

.display-inline-flex{
    display: inline-flex;
}

.nsort-img.nsort-portrait{
    width: 100%;
    background-size: 100% !important;
}

.table b{
    font-weight: 600;
}

.dropdown-menu.hide{
    display: none !important
}

.dropdown-menu.show {
    display: block !important;
}

.header-menu .dropdown-menu{
    top : 15px !important
}

pre{
    background-color: var(--second-color);
    border: 1px solid var(--dark-gray);
    padding: 10px;
    border-radius: 5px;
}

.i-w1{
    background-color: var(--white-color);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    width: 20px;
    height: 20px;
}

.regOpBox{
    padding: 5px;
}

.regOpBox .regContent{
    padding: 15px;
    background-color: #f2f2f2;
    word-wrap: break-word;
}

.ui-widget.ui-widget-content {
    padding: 10px;
    background-color: #f3f3f3;
}

#patient-table {
    min-width: 1024px;
}

#patient-table th:nth-child(3){
    width: 11% !important;
}

#patient-table th:nth-child(8){
    width: 12% !important;
}

#patient-table th:nth-child(6){
    width: 13% !important;
}

#patient-table th:nth-child(7){
    width: 10% !important;
}

#patient-table th:nth-child(9){
    width: 12% !important;
}

#visits-table {
    min-width: 1024px;
}

.bootstrap-datetimepicker-widget {
    display: block !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block !important;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* semi-transparent background */
    z-index: 999999;
}
.loading-indicator svg {
    margin-bottom: 10px; /* adjust spacing between SVG and text */
}
.loading-indicator span {
    font-size: 16px;
    color: #333;
}

.status-success{
    color: #8e9858;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #e7f1bf;
    padding: 2px 10px;
}

.status-error{
    color: #d6254e;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background-color: #facede;
    padding: 2px 10px;
}

.ic-b li a, .ic-b li button {
    width: 35px;
    height: 35px;
}

.ic-b li .icon.icon-list-box{
    width: 20px;
    height: 20px;
}

.dropzone-file {
    position: relative;
    display: inline-block;
}

.filename-display {
    display: inline;
    cursor: pointer;
    padding: 5px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.filename-input {
    display: none;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.dropzone-file.editing .filename-display {
    display: none;
}

.dropzone-file.editing .filename-input {
    display: inline;
}

.file-edit-box{
    display: flex;
    justify-content: space-between;
}

.ic-file{
    background-color: #fff;
    padding: 5px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.ic-file .icon{
    width: 20px;
    height: 20px;
}

.error-validation ul{
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.error-validation p{
    color: #58151c;
    margin-bottom: 0;
}

.expired-box {
    min-height: 100vh; /* Ensures full height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top left, #e3f2fc, #f2e8fd);
}

.expired-box .icon{
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    background-color: #666666;
}

.expired-box .i-exp{
    width: 40px;
    height: 40px;
    border: 1px solid #666666;
    margin: 0 auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-link{
    color: #333;
    margin-left: 20px;
    text-decoration: none;
}

.product-link :hover{
    text-decoration: none !important;
}


.pd_top_10 {
    padding-top: 10px;
}

.pd_bottom_10 {
    padding-bottom: 10px;
}

.mg_top_10 {
    margin-top: 10px;
}

.treatment-table {
    border-collapse: collapse !important;
}

.btn-add-product{
    margin-top: 0px !important;
    margin-left: 10px !important;
}

.table-consent{
    border-collapse: collapse !important;
}

.consent-forms input[type='checkbox']
{
    display: none;
}

.consent-forms .wrap-collabsible { margin: 1.2rem 0; }

.consent-forms .lbl-toggle {
    display: block;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.consent-forms .lbl-toggle:hover {
    color: #000;
}

.consent-forms .lbl-toggle::before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
    transition: transform .2s ease-out;
}

.consent-forms .toggle{
    background-color: #000;
}

.consent-forms .toggle:checked+.lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.consent-forms .collapsible-content {
    max-height: 0px; overflow: hidden; transition: max-height .25s ease-in-out;
}

.consent-forms .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 850px;
}

.consent-forms .toggle:checked+.lbl-toggle {
    border-bottom-right-radius: 0; border-bottom-left-radius: 0;
}

.consent-forms .collapsible-content .content-inner {

    border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; padding: .5rem 1rem;
}

.consent-forms .collapsible-content p {
    margin-bottom: 0;
}

.consent-history-title{
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 10px;
}

.consent-history-body{
    padding-bottom: 20px;
}

.consent-history-nodata{
    text-align: center;
}

.view-consent-a, .view-consent-a:visited  {
    cursor: pointer !important;
}

.update-consent-a, .update-consent-a:visited {
    cursor: pointer !important;
    margin-left: 20px;
}

.d-logo{
    background-color: var(--text-color);
    padding: 20px;
    text-align: center;
}

.d-logo img{
    width: 40%;
}

.ui-select-container .ui-select-toggle{
    border: 1px solid var(--dark-grey-1);
}

.ui-select-bootstrap .ui-select-choices-row > a {
    border: 0px;
}

.dhx_cal_tab.active{
    background-color: var(--dark-green-color);
    color : var(--white-color) !important;
}

.dhx_cal_tab.active:hover{
    background-color: var(--main-color);
    color : var(--white-color) !important;
}

.dhx_cal_tab, .dhx_cal_tab.active{
    border: 1px solid var(--dark-green-color);
    color : var(--dark-green-color);
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

/* Patient list sort arrows */
table.dataTable thead .sorting {
    background-position: right 4px center !important;
    background-size: 25px 25px;
}

table.dataTable thead .sorting_asc{
    background-position: right 4px center !important;
    background-size: 25px 25px;
    background-image: url("../images/custom_sort_arrow_top.png");
}

table.dataTable thead .sorting_desc {
    background-position: right 4px center !important;
    background-size: 25px 25px;
    background-image: url("../images/custom_sort_arrow_bot.png");
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.custom-dermal-btn {
    font-weight: 600;
}

.custom-dermal-btn.active {
    background-color: var(--dark-green-color);
    border-color:  var(--dark-green-color);
    color:  var(--white-color);
}

.custom-dermal-btn.inactive {
    background-color: var(--second-color);
    border: var(--second-color);
    color: var(--text-color);
}

.custom-dermal-btn.draw {
    border-radius: 8px 0 0 8px !important;
    border-right: none;
}

.custom-dermal-btn.erase {
    border-radius: 0 8px 8px 0 !important;
    border-left: none;
}

.invert-svg {
    filter: invert(1);
}

.custom-dermal-btn .icon {
    -webkit-mask-size: 100%;
    mask-size: 100% !important;
}

.reg-setting.form-check-input:checked {
    background-color: var(--dark-green-color);
    border-color: var(--dark-green-color);
}

/* Override default colour */
.toast-success {
    background-color: var(--dark-green-color) !important;
}

.publish-btn {
    min-width: 122px;
    height: 100%;
}

.file-preview {
    width: min(80%, 800px);
    height: 50rem;
}

.file-image-preview {
    width: 80%;
}

.draggable {
    cursor: grab;
}

.draggable-list {
    list-style-type: none;
    padding-left: 0;
}

.drag-over {
    border: 2px dashed var(--dark-green-color);
    background: #ffffff;
    padding: 4px;
}

.checkout-container {
    margin: 40px auto;
}

.checkout-box, .payment-history-box{
    background: white;
    padding: 2rem;
    border-radius: 0;
    height: 100%;
}

.paid-stamp{
    color: #dc3545;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
}

.refund-stamp{
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}

.btn-express {
    height: 50px;
    font-weight: bold;
}
.order-summary {
    background-color: #fff;
    border-radius: 0;
    padding: 20px;
    border-left: 1px solid #e1e1e1;
}
.product-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.success-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}
.checkmark {
    width: 100%;
    height: 100%;
    stroke: #28a745;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    animation: scaleIn 0.3s ease-out forwards;
}
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke: #28a745;
    animation: strokeCircle 0.6s ease-out forwards;
}
.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #28a745;
    animation: strokeCheck 0.4s 0.6s ease-out forwards;
}

@keyframes strokeCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes strokeCheck {
    to { stroke-dashoffset: 0; }
}
@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.custom-close {
    width: 2rem;   /* default is 1rem */
    height: 2rem;  /* default is 1rem */
    font-size: 1.5rem; /* makes the "X" visually bigger */
}

.custom-close-b{
    right: 50px;
}

.custom-close-b{
    right: 50px;
}


.camera-btn{
    width: 100%;
}

.camera-btn .icon{
    mask-size: 100%;
    background-color: #fff;
}

#uploading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.dropzone .dz-preview .dz-image {
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
}

.dropzone .dz-preview{
    display: block;
}

.dropzone .dz-preview .dz-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

table.dataTable thead>tr>th span{
    font-size: inherit;
   letter-spacing: normal;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date{
    text-align: left;
}

#visits-table th:nth-child(5) {
    width: 15% !important;
}

span.note-icon-caret{
    display: none;
}

.text-main {
    --bs-text-opacity: 1;
    color: var(--dark-green-color) !important;
}


/** Confirm Alert Custom Styles **/
.custom-alert-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7); /* Deeper navy-toned backdrop */
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-alert-card {
    background: white;
    width: 450px; /* Much wider */
    border-radius: 28px;
    overflow: hidden;
    animation: slideUpPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.alert-header-visual {
    background: #fff5f5;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ffebeb;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

.icon-wrapper .icon {
    background-color: #ffffff !important;
    mask-size: 100%;
    width: 45px;
}

.alert-content {
    text-align: center;
}

.alert-content h3 {
    letter-spacing: -0.5px;
}

.alert-actions {
    background: #f8f9fa;
}

.action-btn {
    flex: 1;
    border: none;
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    background: transparent;
}

.cancel-btn {
    color: #64748b;
}

.cancel-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.delete-btn {
    color: #ff4757;
}

.delete-btn:hover {
    background: #fff1f2;
    color: #e11d48;
}

@keyframes slideUpPop {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
/* 1. Red (Danger) - Default */
.theme-danger .alert-header-visual { background: #fff5f5; border-bottom: 1px solid #ffebeb; }
.theme-danger .icon-wrapper { background: #ff4757; box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3); }
.theme-danger .confirm-btn { color: #ff4757; }
.theme-danger .confirm-btn:hover { background: #fff1f2; color: #e11d48; }

/* 2. Yellow (Warning) */
.theme-warning .alert-header-visual { background: #fffaf0; border-bottom: 1px solid #fff3db; }
.theme-warning .icon-wrapper { background: #ffa502; box-shadow: 0 10px 20px rgba(255, 165, 2, 0.3); }
.theme-warning .confirm-btn { color: #ffa502; }
.theme-warning .confirm-btn:hover { background: #fffaf0; color: #cc8400; }

/* 3. Blue (Info) */
.theme-info .alert-header-visual { background: #f0f7ff; border-bottom: 1px solid #e0efff; }
.theme-info .icon-wrapper { background: #1e90ff; box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3); }
.theme-info .confirm-btn { color: #1e90ff; }
.theme-info .confirm-btn:hover { background: #f0f7ff; color: #0077e6; }

/* 4. Success Theme (Green) */
.theme-success .alert-header-visual {
    background: #f0fff4;
    border-bottom: 1px solid #dcfce7;
}
.theme-success .icon-wrapper {
    background: #22c55e;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    animation: iconBounce 0.5s ease;
}
.theme-success .confirm-btn {
    color: #22c55e;
}
.theme-success .confirm-btn:hover {
    background: #f0fff4;
    color: #16a34a;
}

/* Alert Mode Specific Styles */
.alert-mode-btn {
    border-left: none !important;
    font-size: 1rem !important;
    padding: 22px !important;
}

/* Creative Animation for the Icon */
@keyframes iconBounce {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Pulse for Info/Warning to draw attention */
.theme-info .icon-wrapper, .theme-warning .icon-wrapper {
    animation: softPulse 2s infinite;
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(30, 144, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 144, 255, 0); }
}

/** Loading **/
/** Simple Creative Loader **/
.simple-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px); /* Deep blur for a "Frosted Glass" look */
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.simple-overlay.show {
    display: flex;
}

.creative-loader-inner {
    text-align: center;
    width: 300px;
}

/* The Creative Element: A breathing liquid line */
.liquid-line {
    width: 40px;
    height: 4px;
    background: #3b82f6; /* Arctic Blue */
    margin: 0 auto 20px;
    border-radius: 10px;
    animation: liquidFlow 2s infinite ease-in-out;
}

/* Typography */
.loader-label .main-text {
    display: block;
    color: #1e293b; /* Deep Slate */
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loader-label .sub-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 400;
}

/* The Animation: It grows, shrinks, and shifts color slightly */
@keyframes liquidFlow {
    0% {
        width: 10px;
        background: #3b82f6;
    }
    50% {
        width: 80px;
        background: #60a5fa; /* Lighter blue at peak */
    }
    100% {
        width: 10px;
        background: #3b82f6;
    }
}

/* Container positioning */
#toast-container.toast-bottom-right {
    bottom: 30px;
    right: 30px;
}

/* The Creative Emerald Glass Pill */
#toast-container > .toast-success {
    /* A vibrant, "Proper" Green Gradient */
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-radius: 16px !important;
    padding: 25px 30px !important;

    /* Creative Glow: Makes the green pop off the screen */
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;

    border: none !important;
    color: #ffffff !important;
    width: 400px !important;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

/* Creative Detail: A subtle "Glass Shine" across the top half */
#toast-container > .toast-success::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

/* Typography - Ultra Clear White */
#toast-container .toast-title {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    display: block;
}

#toast-container .toast-message {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Progress Bar at the bottom */
#toast-container .toast-progress {
    background-color: rgba(255, 255, 255, 0.5) !important;
    height: 4px;
}

/* Animation: Pop and Slide from Right */
#toast-container > .toast {
    animation: greenPopSlide 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes greenPopSlide {
    0% { transform: translateX(100%) scale(0.8); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* The Creative Error Glass Pill */
#toast-container > .toast-error {
    /* A vibrant, Deep Ruby Red Gradient */
    background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%) !important;
    border-radius: 16px !important;
    padding: 25px 30px !important;

    /* Creative Glow: A warm red aura */
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;

    border: none !important;
    color: #ffffff !important;
    width: 400px !important;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

/* Glass Shine Detail (Same as Success) */
#toast-container > .toast-error::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

/* Typography - Sharp White */
#toast-container .toast-error .toast-title {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 5px;
    display: block;
}

#toast-container .toast-error .toast-message {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}
/* Error Progress Bar */
#toast-container .toast-error .toast-progress {
    background-color: rgba(255, 255, 255, 0.5) !important;
    height: 4px;
}

span.note-icon-caret{
    display: none;
}
