body{
    font-family: "Inter", sans-serif;
    color: #333;
}
span.badge{
    padding: 0.35em 0.35em;
}
.form-control:disabled, .form-control[readonly]{
    cursor: not-allowed;
}
.form-group label{
    font-size: 13px;
    margin-bottom: 0.5rem;
}
.form-group input{
    font-size: 13px;
}
.tooltip{
    font-family: "Inter", sans-serif;
    font-size: 13px;
}
.tooltip .tooltip-inner{
    /*min-width: 250px;*/
}
.eh-search-input-wrapper .eh-input-group-prepend{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0;
    color: #666;
    display: -webkit-box;
    display: flex;
    left: 15px;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: 4;
}
.eh-search-input-wrapper .form-control{
    background-color: #fff;
    border-radius: 0.25rem;
    padding-left: 36px;
}
/*-------------------------------------------------- Loader -------------------------------------------------------------------*/
#loader-wrapper {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}
#loader {
    background-position: center center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}
.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 64px;
    margin: 100px auto 0;
}
.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}
.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}
.loader-ellips__dot:nth-child(4) {
    left: 3em;
}
.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}
.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}
.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}
@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}
@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}
.loader-ellips__dot:nth-child(1) {
    background: #404040;
}
.loader-ellips__dot:nth-child(2) {
    background: #09e5ab;
}
.loader-ellips__dot:nth-child(3) {
    background: #404040;
}
.loader-ellips__dot:nth-child(4) {
    background: #404040;
}
/*-------------------------------------- Loader End ------------------------------------------------*/
/*-------------------------------------- Preloader2 Start ------------------------------------------------*/
#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: #fff ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    z-index:1005; /* makes sure it stays on top */
}

#status {
    width:50px;
    height:30px;
    position:fixed;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    margin:-25px 0 0 -15px; /* is width and height divided by two */
}

.spinner {
    margin: 0px auto;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #15558d;
    /*background-color: #2c3e50;*/
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
           transform: scaleY(1.0);
           -webkit-transform: scaleY(1.0);
       }
}

/*-------------------------------------- Preloader2 End ------------------------------------------------*/
/*-------------------------------------- Loading Spinner during modal popup ------------------------------------------------*/
.loading {
    position: fixed;
    background: #00000066;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1002;
    display: none;
    top: 0;
}

.loading .spinner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
}
/*-------------------------------------- Loading Spinner during modal popup End ------------------------------------------------*/

.text-primary{
    color: #67af44 !important;
}

.main-nav li a{
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.eh-header-nav-name{
    font-size: 16px;
    font-weight: 500;
}
.dashboard-menu > ul > li{
    font-size: 15px;
    font-weight: 500;
}
.eh-card-header-blue{
    background-color: #15558d;
    border-radius: 4px;
    padding: 10px;
}
.eh-p-white{
    color: #ffffff;
    flex-shrink: 0;
    width: auto; /* 60px */
    height: auto; /* 18px */
    white-space: pre;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 0;
    font-family: "Inter-SemiBold", "Inter", sans-serif;
    letter-spacing: 0;
    text-align: left;
}
.eh-card{
    border: 1px solid #d9d9d9;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    background: white;
}
.eh-modal-top{
    width: 100%;
    background: #15558d;
    height: 5px;
}
.eh-modal-bottom{
    width: 100%;
    background: #15558d;
    height: 30px;
    border-radius: 0 0 4px 4px;
}
.eh-label-20-500{
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    padding-top: 10px;
}
.eh-p-12{
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 4px;
}
.eh-p-13{
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 7px;
}
.eh-p-14{
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 7px;
}
.eh-p-15{
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 4px;
}
.eh-p-13-500, .eh-p-14-500, .eh-p-15-500{
    font-weight: 500;
}
.eh-p-13-600, .eh-p-14-600, .eh-p-15-600{
    font-weight: 600;
}
.eh-p-13-700, .eh-p-14-700, .eh-p-15-700{
    font-weight: 700;
}
.eh-p-500{
    font-weight: 500;
}
.eh-p-600{
    font-weight: 600;
}
.eh-p-700{
    font-weight: 700;
}
.eh-btn-success{
    background: #eaedf1;
}
.eh-btn-success:hover{
    background: #67af44;
    color: #ffffff;
}
.eh-attendee-wrapper{
    flex-shrink: 0;
    width: 100%;
    height: auto; /* 56px */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
}
.eh-attendee-img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.eh-attendee-img.success{
    border: 2px #67af44 solid;
}
.eh-attendee-img.danger{
    border: 2px #e63c3c solid;
}
.eh-rows{
    flex-shrink: 0;
    flex: 1;
    width: 1px;
    height: auto; /* 56px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #ffffff;
}
.eh-hover-green:hover i{
    color: #67af44 !important;
}
 /*Calendar*/
.fc-day{
    /*background: #c1c1c1;*/
}
.fc-past{
    /*background: #c1c1c1;*/
}
 .fc-widget-content .fc-day-grid.fc-unselectable{
     display: none;
 }
.fc-widget-content .fc-scroller.fc-time-grid-container{
    /*overflow: unset !important;*/
    /*height: unset !important;*/
    overflow: scroll;
}
.fc-widget-content .fc-divider.fc-widget-header{
    display: none;
}
.fc-agendaDay-view thead.fc-head{
    display: none;
}
/*#calendar .fc-toolbar.fc-header-toolbar{*/
/*    display: none;*/
/*}*/
a.fc-time-grid-event{
    margin: 0;
}
.fc-ltr .fc-time-grid .fc-event-container{
    margin: 0 !important;
}

.bg-success{
    background-color: #3ea30e !important;
    border-color: #379806 !important;
}
.bg-warning{
    background-color: #d97604 !important;
    border-color: #70500a !important;
}
.bg-info{
    background-color: #0189d9 !important;
}
.fc-event.bg-success:hover{
    background-color: #67af44 !important;
}
.fc-time-grid .fc-slats td{
    height: 3em;
}
.fc-unthemed td.fc-today{
    background-color: #fff;
}
.fc th.fc-widget-header{
    background-color: #ffffff;
    border: unset;
}
.fc-widget-content .fc-scroller{
    height: 400px !important;
}
/*provider search*/
.eh-range-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eh-range-wrapper:before{
    content: attr(data-min);
    margin-right: 10px;
}
.eh-range-wrapper:after{
    content: attr(data-max);
    margin-left: 10px;
}
.eh-range{
    width: calc(100% - (15px));
}
.eh-range-label-wrapper{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.2;
    color: #808080;
}
.custom_check .checkmark{
    background-color: rgb(235, 235, 235);
    border-color: rgb(235, 235, 235);
    width: 16px;
    height: 16px;
}
.custom_check input:checked ~ .checkmark{
    background-color: rgb(0, 153, 255);
    border-color: rgb(0, 153, 255);
}
.custom_check .checkmark::after{
    color: rgb(255, 255, 255);
    top: -2px;
    left: 2px;
}
.eh-img-100{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: #D9D9D9 solid 1px;
}
.eh-img-100:hover{
    border: #67af44 solid 2px;
}
.eh-search-header-wrapper{
    border-bottom: #D9D9D9 solid 2px;
    padding: 14px;
    margin-bottom: 10px;
}
.eh-search-wrapper{
    align-items: center;
    margin-top: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
    border: #D9D9D9 solid 1px;
    justify-content: flex-start;
}
.eh-search-wrapper span{
    font-size: 14px;
}
.btn-info{
    background-color: #15558d;
    color: #ffffff;
    border: unset;
    width: 100%;
    padding: 9px;
    /*margin: 4px;*/
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.btn-info:hover,
.btn-info:hover,
.btn-info:focus,
.btn-info.active{
    background-color: #67af44 !important;
    border: unset !important;
}
.btn-outline-info {
    color: #15558d;
    border-color: #15558d;
    width: 100%;
    padding: 9px;
    /*margin: 4px;*/
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.btn-outline-info:hover {
    color: #fff;
    background-color: #15558d;
    border-color: #15558d;
}
.btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: none;
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
    background-color: transparent;
    color: #15558d;
}
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    background-color: #15558d;
    border-color: #15558d;
}
.btn-green{
    background-color: #67af44;
    color: #ffffff;
    border: unset;
    width: 100%;
    padding: 9px;
    /*margin: 4px;*/
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.btn-green:hover,
.btn-green:hover,
.btn-green:focus,
.btn-green.active{
    background-color: #78828c !important;
    color: #ffffff;
    border: unset !important;
}
.btn-secondary, .btn-dark{
    width: 100%;
    padding: 9px;
    /*margin: 4px;*/
    font-size: 11px;
    border: unset;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.btn-outline-dark {
    width: 100%;
    padding: 6px;
    /*margin: 4px;*/
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.eh-img-wrapper img, .eh-img-wrapper span{
    cursor: pointer;
}
.eh-img-wrapper span:hover{
    color: #67af44;
}
.eh-details-modal-wrapper .modal-header{
    padding: 10px;
    background-color: #15558d;
}
.modal-header span{
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
.modal-header .close{
    color: #ffffff;
    opacity: 1;
    text-shadow: unset;
}
.close{
    background: transparent;
    /* box-shadow: none; */
    border: 0;
    font-size: 1.5rem;
    line-height: 1;
}
#profile_details .nav-tabs{
    border-bottom: unset;
}
#profile_details .nav-item a{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
}
.eh-search-report{
    font-size: 14px;
    color: #636363;
    cursor: pointer;
}
.eh-search-report:hover{
    color: #67af44;
}
.eh-tag {
    cursor: pointer;
    background-color: #989c9e;
    border-radius: 4px;
    color: #fff;
    padding: 5px 25px;
    position: relative;
    margin: 0 0.5rem 0.5rem 0;
    font-size: 13px;
    border: 1px solid #989c9e;
    display: inline-block;
}
.eh-tag.selected::before{
    color: #fff;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    right: 6px;
    top: 6px;
}
.eh-tag.selected{
    background-color: #67af44;
    color: #fff;
    border: 1px solid #67af44;
}
/*-------------------------------------------------Provider Appointment request modal------------------------------------------------------------------*/
.eh-provider-header{
    justify-content: center;
    align-items: center;
    padding: 14px;
    border: #D9D9D9 solid 1px;
    font-size: 13px;
}
.eh-provider-header:not(:first-child){
    border-top: none;
}

.modal .form-group{
    font-size: 13px;
}
.modal .form-control{
    font-size: 13px;
    padding: 0 5px;
}
.eh-patient-img:hover{
    border: #67af44 solid 2px;
}
/*-------------------------------------------------Provider Appointment request modal end------------------------------------------------------------------*/
/*-------------------------------------------------Provider: My participant----------------------------------------------------------------------------------*/
.grid-view.active i{
    color: #67af44;
}
.list-view.active i{
    color: #67af44;
}
.booking-doc-img img:hover{
    border: #67af44 solid 2px;
}
/*-------------------------------------------------Provider: My participant end----------------------------------------------------------------------------------*/
.toast-success{
    background-color: #67af44 !important;
    opacity: 1 !important;
}
.toast-warning{
    opacity: 1 !important;
}
.toast-error{
    opacity: 1 !important;
}
.toast-info{
    opacity: 1 !important;
}
button{
    margin-top: 1px;
    margin-bottom: 1px;
}
/*----------------------------------------------Select  2 ----------------------------*/
.select2-container--default .select2-selection--single .select2-selection__rendered{
    font-size: 13px;
}
.select2-results{
    font-size: 12px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #ddd;
    color: unset;
}
.select2-search--dropdown .select2-search__field{
    font-size: 13px;
    padding: 8px;
    outline: unset;
}
/*----------------------------------------------Select  2 end----------------------------*/
.eh-font-10{
    font-size: 10px !important;
}
.eh-font-11{
    font-size: 11px !important;
}
.eh-font-12{
    font-size: 12px !important;
}
.eh-font-13{
    font-size: 13px !important;
}
.eh-font-14{
    font-size: 14px !important;
}
.eh-font-15{
    font-size: 15px !important;
}
.eh-font-16{
    font-size: 16px !important;
}
.eh-font-17{
    font-size: 17px !important;
}
.eh-font-18{
    font-size: 18px !important;
}
.eh-font-19{
    font-size: 19px !important;
}
.eh-font-20{
    font-size: 20px !important;
}
.eh-font-24{
    font-size: 24px !important;
}
.eh-font-26{
    font-size: 26px !important;
}
.eh-font-28{
    font-size: 28px !important;
}
.eh-font-30{
    font-size: 30px !important;
}
.eh-font-32{
    font-size: 32px !important;
}
.eh-font-36{
    font-size: 36px !important;
}
.eh-font-48{
    font-size: 48px !important;
}
.eh-font-50{
    font-size: 50px !important;
}
.eh-font-500{
    font-weight: 500;
}
.eh-font-600{
    font-weight: 600;
}
.eh-font-700{
    font-weight: 700;
}
.card{
    border: 1px solid #D9D9D9;
}
.eh-overflow-ellipsis{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}
/*-------------------------------clinical notes---------------------------------*/
.clinical_notes_content div:not(:first-child){
    margin-top: 15px;
}
/*-------------------------------clinical notes end-----------------------------*/
/*-------------------------------schedule timeings-------------------------------*/
.schedule-nav .nav-tabs .nav-link:hover{
    background: #eee;
    border-color: transparent;
    color: #272b41;
}
.schedule-nav .nav-tabs li a.active {
    background: #67af44 !important;
    border: 1px solid #67af44 !important;
    color: #fff !important;
}
.btn-primary {
    background-color: #15558d;
    border: 1px solid #15558d;
}
.btn-primary:hover{
    background: #67af44 !important;
    border: 1px solid #67af44;
}
.doc-slot-list{
    background-color: #15558d;
    border: 1px solid #15558d;
}
/*-------------------------------schedule timeings end-------------------------------*/
.eh-document-wrapper{
    padding: 10px;
    cursor: pointer;
}
.eh-document-wrapper:hover{
    border: 1px solid #67af44;
    border-radius: 2px;
}
/*------------------------------- My Document page ------------------------------------*/
.view-group{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
}
.item.list-group-item
{
    float: none;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 1rem;
    border: 0;
}
.item.list-group-item .eh-document-wrapper{
    display: flex;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
}
.item.list-group-item .eh-document-wrapper:hover{
    background-color: #f8f9fa;
}
.item.list-group-item .eh-document-wrapper:hover .eh-document-img{
    border: 2px solid #67af44;
    border-radius: 4px;
}
.item.list-group-item .eh-document-img{
    max-width: 75px;
    width: 10%;
}
.item.list-group-item .eh-document-description{
    margin-left: 15px;
}
.eh-document-wrapper .eh-document-img:before{
    padding-top: 60%;

    content: "";
    display: block;
}
.eh-document-wrapper .eh-document-img:after{
    padding-bottom: 60%;
    content: "";
    display: block;
}
@media only screen and (max-width: 992px) {
    .eh-document-wrapper .eh-document-img{
        width: 50px;
        display: inline-grid;
    }
    .eh-document-wrapper .eh-document-description{
        display: inline-grid;
    }
}
/*----------------------------------------- My Document page end -------------------------------------------------*/
/*------------------------------------------ Provider Profile Setting --------------------------------------------*/
.circle-bar > div canvas {
    width: 42px !important;
    height: 42px !important;
    vertical-align: middle;
}
.circle-bar > div span {
    left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    text-align: center;
    margin: 0 auto;
    transform: translateY(-50%);
    font-size: 11px;
}
.nav-tabs.nav-tabs-custom1 > li > a.active,
.nav-tabs.nav-tabs-custom1 > li > a.active:hover,
.nav-tabs.nav-tabs-custom1 > li > a.active:focus {
    background-color: #edfaeb;
    border-color: #edfaeb !important;
    border-radius: 15px;
    color: #272b41;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
    background: unset;
}
.success i{
    color: #67af44;
}
.file-drop-area{
    position: relative;
    /*display: flex;*/
    align-items: center;
    width: 100%;
    padding: 15px;
    border: 1px dashed rgb(184, 184, 184);
    border-radius: 3px;
    transition: 0.2s;
}
.choose-file-button{
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    /*padding: 8px 15px;*/
    margin-right: 10px;
    font-size: 14px;
    color: #15558d;
    font-weight: 600;
    /*text-transform: uppercase;*/
}
.file-input{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.hidden{
    /*display: none;*/
}
/*------------------------------------------ Provider Profile Setting End --------------------------------------------*/
.eh-yellow{
    color: #ffaa22;
}
.eh-red{
    color: #ff0100;
}
.eh-green{
    color: #67af44;
}
.section-landing{
    /*background: url('../../assets/img/landing.jpg') no-repeat center center fixed; */
    height: 90vh;
    background: url('../../assets/img/landing.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;;
}
.eh-bullet{
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    max-width: 500px;
    background: #0e416294;
    color: white;
}
.eh-bullet .title{
    font-family: "Shadows Into Light Two", serif;
    font-size: 51px;
    color: white;
    text-align: left;
    line-height: 1.2;
}
.eh-bullet .cont{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    color: white;
    line-height: 1.2;
    text-align: left;
}
/*-----------------------------------------------------------faq---------------------------------*/

.accordion .card{
    margin-bottom: 0;
}
.accordion .card-header{
    padding-top: 7px;
    padding-bottom: 2px;
}
.accordion .card-header .title {
    font-size: 17px;
    color: #000;
    font-weight: bold;
    /*text-transform: uppercase;*/
}
.accordion .card-header .accicon {
    float: right;
    font-size: 20px;
    width: 1.2em;
}
.accordion .card-header{
    cursor: pointer;
    border-bottom: none;
}
.accordion .card{
    border: 1px solid #ddd;
}
.accordion .card-body{
    border-top: 1px solid #ddd;
    padding-top: 12px;
    padding-bottom: 0;
}
.accordion .card-header:not(.collapsed) .rotate-icon {
    transform: rotate(180deg);
}
/*************************************************************faq end**********************************************************/
/************************ full calendar v5 *********************************/
.fc .fc-timegrid-slot{
    height: 3em;
}
.fc .fc-toolbar-title{
    font-size: 18px;
}
.fc .fc-bg-event{
    margin: 0.4px 0;
}
a.fc-timegrid-event{
    margin: 0;
    line-height: 1.2;
}
.fc-direction-ltr .fc-timegrid-col-events{
    margin: 0 !important;
}
.eh-calendar-cell{
    /*cursor: not-allowed;*/
}
.fc .fc-timegrid-col.fc-day-today{
    background: unset;
}
.eh-calendar-cell .fc-timegrid-now-indicator-container{
    background: #afb8c133;
}
.eh-calendar-cell .fc-bg-event{
    background: white;
    opacity: unset;
    cursor: pointer;
}
.fc .fc-list-event:hover td{
    background-color: unset;
}
/**************************/
.btn-circle.icon {
    padding: 5px 6px !important;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    border-radius: 500px;
    height: 29px;
    min-width: 29px;
    margin: 0 1.6px;
}
.mobile{
    display: none;
}
@media only screen and (max-width: 575.98px){
    .mobile{
        display: block;
        padding: 0.5rem;
    }
}
.form-control{
    font-size: 13px;
}
.bg-purple{
    background-color: #804499 !important;
}
.swal2-styled.swal2-confirm, .swal2-styled.swal2-cancel{
    font-size: 13px;
}
.custom-modal .delete{
    border-radius: 50%;
    color: #969696;
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    margin: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    right: 45px;
    top: 15px;
    width: 20px;
    z-index: 99;
    border: 0;
    background-color: transparent;
}
.custom-modal .delete:hover {
    color: #67af44;
}
/*------------------ Sign up form -------------------------------*/
.login-header h3 a{
    color: #67af44;
}
.login-header h3 a:hover{
    text-decoration: underline;
}
.form-focus .select2-container .select2-selection--single .select2-selection__rendered{
    padding-top: 4px;
}
.select2-container--default .select2-search--inline .select2-search__field{
    display: none;
}
.select2-selection__choice__display{
    font-size: 12px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    border: unset;
}
.select2-container--default .select2-results__option--selected{
    background-color: #ddd;
    color: unset;
}
/*---------------------------------btn----------------------------------------*/
.btn-third{
    box-sizing: border-box;
    /* width: min-content; */
    height: 26px;
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    /* padding: 6px 14px; */
    background: rgba(38, 38, 38, 0);
    overflow: hidden;
    /* align-content: center; */
    flex-wrap: nowrap;
    gap: 0;
    border-radius: 13px;
    border: 1px solid #262626;
    /* white-space: pre; */
    /* flex-shrink: 0; */
    /* width: auto; */
    /* height: auto; */
    /* overflow: visible; */
    color: #262626;
    font-size: 14px;
    /* letter-spacing: 0px; */
    line-height: 1.2;
    text-align: center;
}
.btn-third:hover{
    background: rgba(38, 38, 38, 0.1);
}
.btn-third.active{
    color: #15558d;
    border: 1px solid #15558d;
    background: rgba(21, 85, 141, 0);
}
.btn-third.active:hover{
    background: rgba(21, 85, 141, 0.1);
}
.eh-box-grid{
    --border-bottom-width: 1px;
    --border-color: #f0f0f0;
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    place-content: flex-start center;
    align-items: flex-start;
    border-radius: 4px;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    gap: 30px;
    height: min-content;
    overflow: visible;
    /*padding: 0px;*/
    padding: 3px;
    position: relative;
    width: 100%;
}
@media (max-width: 809px){
    .eh-box-grid{
        flex-direction: column;
    }
    .eh-working-hours-container{
        margin-top: 23px;
    }
}
@media (min-width: 810px){
    .eh-box-grid {
        align-content: unset;
        align-items: unset;
        display: grid;
        gap: 23px;
        grid-auto-rows: min-content;
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        grid-template-rows: repeat(2, min-content);
        justify-content: start;
        overflow: auto;
    }
}

.eh-box-wrapper{
    display: flex;
    /*width: 328px;*/
    width: 100%;
    height: min-content;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    /*box-shadow: 0px 1px 9px 2px rgba(0, 0, 0, 0.25);*/
    background-color: white;
    overflow: visible;
    padding: 0px;
    align-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    border-radius: 4px;
    border-color: rgba(34,34, 34, 0.2);
    /* border-style: solid; */
    /* border-top-width: 8px; */
    border-top-color: #67af44;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
}
.eh-box-wrapper:hover{
    box-shadow: 0px 1px 9px 2px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}
.eh-box-top{
    flex: 0 0 auto;
    height: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: rgba(38, 38, 38, 0.2);
}
.eh-box-top.active{
    background-color: #67af44;
}
.eh-box-header{
    place-content: center flex-end;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    gap: 0px;
    height: min-content;
    /*overflow: hidden;*/
    padding: 14px;
    position: relative;
    width: 100%;
}
.eh-box-content{
    place-content: center flex-start;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    gap: 10px;
    height: min-content;
    overflow: hidden;
    padding: 0px 14px 14px;
    position: relative;
    width: 100%;
}
.eh-box-content-content{
    place-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    flex: 1 0 0px;
    flex-flow: column nowrap;
    gap: 10px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: 1px;
}
.eh-box-footer{
    border-color: rgba(34, 34, 34, 0.1);
    border-style: solid;
    border-top-width: 1px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    place-content: center space-between;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    height: 56px;
    overflow: hidden;
    padding: 14px;
    position: relative;
    width: 100%;
}
.eh-box-wrapper .dropdown.show .dropdown-toggle::after{
    transform: rotate(180deg);
    transition: all 0.15s ease-in-out;
}
/*-----------------------------------------------New Template Start----------------------------------------------------*/
.eh-hero{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 60px;
    display: table;
    position:relative;
    background-color: rgba(0, 0, 0, 0.5);
}
.eh-hero-title {
    flex-shrink: 0;
    width: auto; /* 710px */
    height: auto; /* 60px */
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    z-index: 1;
    position: relative;
    font-weight: 700;
    font-style: normal;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    color: #ffffff;
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1.2;
    text-align: center;
}
.eh-hero-subtitle {
    flex-shrink: 0;
    width: 75%;
    height: auto; /* 36px */
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    overflow: visible;
    z-index: 1;
    position: relative;
    font-weight: 500;
    font-style: normal;
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.5;
    text-align: center;
}
.eh-gap-0{
    gap: 0 !important;
}
.eh-gap-10{
    gap: 10px !important;
}
.eh-gap-15{
    gap: 15px !important;
}
.eh-gap-20{
    gap: 20px !important;
}
.eh-gap-24{
    gap: 24px !important;
}
.eh-gap-30{
    gap: 30px !important;
}
.eh-gap-40{
    gap: 40px !important;
}
.eh-gap-60{
    gap: 60px !important;
}
.eh-row {
    flex-shrink: 0;
    width: min-content; /* 232px */
    height: min-content; /* 40px */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 1;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    border-radius: 0px 0px 0px 0px;
}
.eh-col {
    flex-shrink: 0;
    flex: 1 0 0px;
    width: 100%;
    height: min-content; /* 428px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    border-radius: 0px 0px 0px 0px;
}

.eh-btn-white{
    box-sizing: border-box;
    flex-shrink: 0;
    width: min-content; /* 109px */
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 15px 15px;
    background-color: #ffffff;
    overflow: visible;
    z-index: 1;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    border-radius: 8px;

    white-space: pre;
    font-weight: 700;
    font-style: normal;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    color: #333333 !important;
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.eh-btn-transparent{
    box-sizing: border-box;
    flex-shrink: 0;
    width: min-content; /* 109px */
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 15px 15px;
    background-color: rgba(255, 255, 255, 0.25);
    overflow: visible;
    z-index: 1;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    border-radius: 8px;

    white-space: pre;
    font-weight: 700;
    font-style: normal;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}

.section-2, .section-3, .section-5, .section-6 {
    flex-shrink: 0;
    /*width: 1px;*/
    height: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /*max-width: 1440px;*/
    overflow: hidden;
    flex: 1 0 0px;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 0;
    border-radius: 0px 0px 0px 0px;
}
.section-2, .section-3{
    max-width: 1440px;
}
.section-4 {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 1px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 40px 40px;
    background-color: #ffffff;
    max-width: 1440px;
    overflow: hidden;
    flex: 1 0 0px;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    border-radius: 0px 0px 0px 0px;
}
.section-4-b {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 1px;
    height: min-content; /* 593px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 40px 40px;
    background-color: #ffffff;
    max-width: 1440px;
    overflow: hidden;
    flex: 1 0 0px;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 0;
    border-radius: 0px 0px 0px 0px;
}
.section-7 {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 1px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px 60px 40px;
    background-color: #ffffff;
    max-width: 1440px;
    overflow: hidden;
    flex: 1 0 0px;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    border-radius: 0px 0px 0px 0px;
}
.section-8 {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 1px;
    height: min-content; /* 628px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 100px 100px 100px;
    background-color: #ffffff;
    max-width: 1440px;
    overflow: hidden;
    flex: 1 0 0px;
    position: relative;
    align-content: center;
    flex-wrap: nowrap;
    gap: 60px;
    border-radius: 0px 0px 0px 0px;
}
.section-8 .image {
    flex-shrink: 0;
    width: 100%;
    height: 250px;
    display: block;
    overflow: hidden;
    /*flex: 1 0 0px;*/
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}
.eh-grid {
    flex-shrink: 0;
    /*width: 1px;*/
    width: 100%;
    height: min-content; /* 513px */
    display: grid;
    max-width: 1000px;
    overflow: visible;
    /*flex: 1 0 0px;*/
    position: relative;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    justify-content: center;
    grid-auto-rows: min-content;
    grid-template-rows: repeat(2, min-content);
    padding: 0px 0px 0px 0px;
    gap: 60px;
    border-radius: 0px 0px 0px 0px;
}
.eh-grid .rows {
    flex-shrink: 0;
    /*width: 294px;*/
    width: 100%;
    height: min-content; /* 453px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    justify-self: start;
    align-self: start;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    border-radius: 0px 0px 0px 0px;
}
.eh-grid .rows .image {
    /*flex-shrink: 0;*/
    width: 100%;
    /*height: 250px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /*flex: 1 0 0px;*/
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    aspect-ratio: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}
.eh-content {
    flex-shrink: 0;
    width: 550px;
    height: 346px; /* 346px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 2018px;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    border-radius: 0px 0px 0px 0px;
}
.eh-content-title {
    flex-shrink: 0;
    /*width: 1px;*/
    height: auto; /* 180px */
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow: visible;
    /*flex: 1 0 0px;*/
    position: relative;
    font-weight: 700;
    font-style: normal;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    color: #333333;
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1.2;
    text-align: left;
}
.section-4-b .eh-content-title{
    line-height: 1.5;
    letter-spacing: -0.8px;
}
.section-7 .eh-content-title{
    text-align: center;
    width: 62%;
}
.section-8 .eh-content-title{
    line-height: 1.5;
    letter-spacing: -0.7px;
}
.eh-content-subtitle {
    flex-shrink: 0;
    /*width: 1px;*/
    height: auto; /* 86px */
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow: visible;
    /*flex: 1 0 0px;*/
    position: relative;
    font-weight: 500;
    font-style: normal;
    font-family: "Inter", sans-serif;
    color: #888888;
    font-size: 24px;
    /*letter-spacing: -0.5px;*/
    line-height: 1.2;
    text-align: left;
}
.section-4-b .eh-content-subtitle{
    /*letter-spacing: -0.5px;*/
    line-height: 1.4;
}
.section-7 .eh-content-subtitle{
    line-height: 1.5;
    /*letter-spacing: -0.5px;*/
}
.section-8 .eh-content-subtitle{
    line-height: 1.4;
    /*letter-spacing: -0.5px;*/
}
.eh-image {
    flex-shrink: 0;
    flex: 1 0 0px;
    /*width: 1px;*/
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    border-radius: 0px 0px 0px 0px;
}
.section-5 .eh-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 90px 0 0 0;
}
.section-6 .eh-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 0 90px 0;
}
.eh-frame {
    flex-shrink: 0;
    width: 560px;
    height: 415px;
    display: block;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 90px 0 90px 0;
}
.eh-content-wrapper{
    flex-shrink: 0;
    flex: 1 0 0px;
    height: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0px 0px 0px 0px;
    align-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    border-radius: 0px 0px 0px 0px;

}
.btn-140-40{
    width: 140px;
    height: 40px;
}
.primary-footer {
    box-sizing: border-box;
    /*width: 1440px;*/
    height: min-content; /* 445px */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px 24px 60px 24px;
    background-color: #15558d;
    overflow: visible;
    align-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    /*position: absolute;*/
    border-radius: 0px 0px 0px 0px;
    color: white;
}
.primary-footer-content-wrapper{
    align-content: center;
    align-items: center;
    display: flex;
    flex: 1 0 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
    height: min-content;
    justify-content: center;
    max-width: 1440px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 1px;
}

.primary-footer-copyright{
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}
.eh-footer-title{
    align-items: unset;
    flex: unset;
}
.primary-footer-item{
    padding: 0 24px 0 0;
}
.eh-accordion-icon{
    text-align: center;
    flex: none;
    height: 24px;
    position: relative;
    width: 24px;
}
.primary-footer .eh-accordion-icon{
    display: none;
}
@media only screen and (max-width: 1440px){
    .eh-content{
        width: 1px;
        flex: 1 0 0px;
        padding: 24px;
    }
    .eh-content-title{
        font-size: 38px;
        flex-shrink: 0;
    }
    .section-7 .eh-content-title{
        width: 70%;
        font-size: 50px;
    }
    .eh-content-subtitle{
        font-size: 24px;
        line-height: 1.2;
        flex-shrink: 0;
    }
    .eh-frame{
        width: 353px;
        height: 262px;
    }
    .section-3 .eh-frame{
        width: 100%;
        height: 55.3vh;
    }
    .primary-footer .eh-row{
        flex-direction: column;
    }
    .primary-footer-item{
        padding: 0;
    }
    .primary-footer .eh-accordion-icon{
        display: block;
        transition: transform 1s;
    }
    .primary-footer-item .primary-footer-item-content{
        display: none;
    }
    .primary-footer-item.primary-footer-item-active .primary-footer-item-content{
        display: flex;
    }
}

@media only screen and (max-width: 809px){
    .eh-hero-title{
        font-size: 38px;
    }
    .eh-hero-subtitle{
        width: 90%;
        line-height: 1.1;
    }
    .eh-row{
        flex-direction: column;
    }
    .eh-grid{
        gap: 40px;
        grid-template-columns: repeat(1,minmax(200px,1fr));
    }

    .section-2, .section-3, .section-5, .section-6 {
        height: min-content;
        flex-direction: column;
    }
    .section-4{
        height: 300px;
    }
    .section-7{
        /*height: 417px;*/
        flex-direction: column;
    }
    .section-8{
        padding: 50px;
    }

    .eh-content-wrapper {
        box-sizing: border-box;
        flex-shrink: 0;
        height: min-content;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 40px 24px 40px 24px;
        overflow: hidden;
        flex: none;
        position: relative;
        align-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        border-radius: 0px 0px 0px 0px;
    }

    .eh-content {
        flex-shrink: 0;
        flex: 1 0 0px;
        width: 100%;
        height: min-content; /* 368px */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        max-width: 2018px;
        position: relative;
        padding: 0px 0px 0px 0px;
        align-content: flex-start;
        flex-wrap: nowrap;
        gap: 20px;
        border-radius: 0px 0px 0px 0px;
    }
    .eh-content-title{
        font-size: 32px;
    }
    .section-7 .eh-content-title{
        width: 90%;
        max-width: 100%;
        font-size: 32px;
    }
    .eh-content-subtitle{
        font-size: 24px;
    }
    .section-4 .eh-content-subtitle{
        line-height: 1.5;
    }
    .eh-image {
        flex-shrink: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        flex: none;
        position: relative;
        padding: 0px 0px 0px 0px;
        align-content: center;
        flex-wrap: nowrap;
        gap: 20px;
        border-radius: 0px 0px 0px 0px;
    }
    .eh-frame {
        flex-shrink: 0;
        width: 100%;
        flex: 1 0 0px;
        height: 1px;
        display: block;
        overflow: hidden;
        position: relative;

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 90px 0 90px 0;
    }
    .section-3 .eh-image, .section-6 .eh-image{
        order: 2;
    }
    .section-3 .eh-content-wrapper, .section-6 .eh-content-wrapper{
        order: 1;
    }
}
.about-banner-primary:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
}
/*------------------------------------------------- New Template End ---------------------------------------------*/
.no-desktop{
    display: none !important;
}
@media only screen and (max-width: 991.98px){
    .no-desktop{
        display: block !important;
    }
}
/*-------------------------------------New provider dashboard-------------------------------------------------*/
.loggedin .header-nav{
    background-color: #15558d;
    border-bottom: 1px solid #15558d;
}
.loggedin .header-nav li > a{
    color: white;
}
.loggedin .main-nav  li > a{
    color: white;
    font-size: 14px;
}
.loggedin .main-nav  li > a:hover{
    opacity: 0.7;
}
.loggedin .main-nav  li > a img{
    width: 24px;
    height: 24px;
    padding-bottom: 3px;
}
.header .has-arrow .dropdown-toggle:after{
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
#last_messages_wrapper, #last_notifications_wrapper{
    width: 320px;
}
#eh_sidebar_btn{
    display: none;
}
@media only screen and (max-width: 1280px){
    .loggedin .header-navbar-rht {
        display: block;
    }
    .loggedin .navbar-header {
        width: auto;
    }
    .loggedin .navbar-brand.logo img {
        height: 35px;
    }
    #last_messages_wrapper{
        width: auto;
        top: 51px;
    }
    #last_notifications_wrapper{
        width: auto;
        right: auto;
        top: 51px;
    }
    #eh_sidebar_btn{
        display: block;
    }
    .loggedin .main-menu-wrapper{
        order: 3;
        /* width: 260px; */
        width: 100%;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 1060;
        transform: translateX(100%);
        transition: all 0.2s;
        background-color: white;
    }
    .loggedin .main-nav li > a{
        color: #262626;
        line-height: 1.5;
        padding: 12px 20px !important;
        font-size: 19px !important;
        font-weight: 600 !important;
    }
    .loggedin .main-nav{
        padding: 0;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        margin-top: 30px;
    }
    .loggedin .main-nav li i{
        width: 30px;
    }
    .menu-opened .loggedin .main-menu-wrapper{
        transform: translateX(0);
    }
    .loggedin .menu-header{
        background-color: white;
        height: 85px;
        border-bottom: 1px solid #3d3d3d;
        display: flex;
    }
    .loggedin .menu-header .navbar-brand.logo{
        text-align: left;
    }
    .loggedin .menu-header .navbar-brand.logo img{
        height: 60px;
    }
}
.loggedin .main-nav li.active > a{
    color: #67af44;
}
.eh-main{
    background: #F8F9FB;
}
.eh-container{
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
}
.eh-header{
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 24px 0 24px;
    color: #002c63;
}
.eh-roboto-condensed{
    font-family:  "Roboto Condensed", "Roboto Condensed Placeholder", sans-serif;
}
a.eh-blue{
    color: #0470bb;
}
a.eh-blue:hover{
    text-decoration: underline;
    color: #67af44;
}
.eh-text{
    color: #333333;
}
a:hover .eh-text{
    opacity: 0.5;
}
.eh-overview{
    padding: 12px;
}
.eh-appointment-item{
    width: 100%;
    border: 1px solid #26262633;
    background-color: white;
    border-radius: 4px;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 0 16px 0 0;
    position: relative;
    cursor: pointer;
}
.eh-appointment-item .eh-appointment-status{
    width: 5px;
    height: auto;
    flex: none;
    align-self: stretch;
}
.eh-appointment-item .eh-appointment-eye{
    opacity: 0;
}
.eh-appointment-item:hover .eh-appointment-eye{
    opacity: 1;
}
.eh-appointment-item:hover{
    opacity: 0.65;
}
.eh-appointment-status.progress{
    background-color: #7460ee;
}
.eh-appointment-status.pending{
    background-color: #67af44;
}
.eh-appointment-status.confirmed{
    background-color: #009efb;
}
.eh-appointment-status.completed{
    background-color: #ffbc34;
}
.eh-appointment-item .eh-appointment-content{
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 20px;
    position: relative;
    line-height: 1;
}
@media only screen and (max-width: 809px){
    .eh-overview{
        padding: 5px;
    }
}
.btn-info:hover{
    color: white;
}
.footer a{
    color: white;
    text-decoration: none;
}
a{
    text-decoration: none;
}
a:not([href]){
    text-decoration: none;
}
#login_nav_link{
    color: #2E3842;
}
#login_nav_link:hover{
    color: #67af44;
}
.accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
