@import '/theme/system/vendors/sweetalert2/sweetalert_bootstrap.scss';

:root {
    --forest-green: #354057;
    --golden-yellow: #FCDC2A;
    --light-cream: #F7F6BB;
    --green-taxiran: rgb(83,133,247)
}

body {
    font-family: 'Vazir', sans-serif;
    background-color: #f9f9f9;
}
.ltr{direction: ltr;}
.btn{
    padding: 0.5rem;
}
.btn .txt{font-size: .9rem}
@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 80rem;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 80rem;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 85rem;
    }
}

#progressBarLoading {
    height: 4px;
    width: 0;
    background-color: #007bff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: width 0.3s ease;
}
.navbar-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar-body {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
}
.navbar-body .navbar-brand{
    display: flex;
    align-items: center;
    gap: 15px;
}
.navbar-brand .logo-brand {
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #346ed1;
    font-weight: 500;
    gap: 2px;
}
.navbar-brand .logo-brand img{
    width: 100%;
    height: 100%;
}
.navbar-brand .logo-brand .site_name{
    font-size: 1.2rem;
}
.navbar-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar-menu li {
    margin: 0 15px;
}
.navbar-menu a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    color: rgb(78 83 93);
    outline: none;
}
.navbar-menu a:hover {
    color: var(--green-taxiran);
}
.navbar-action{
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-primary{
    background-color: #4187ff;
    border-color: #4187ff;
}
.swal2-styled.swal2-confirm{
    background-color: #4187ff !important;
    border-color: #4187ff !important;
}
.btn-green {
    background: transparent;
    border: 1px solid var(--green-taxiran);
    /*padding: 0.75rem 0.375rem;*/
    border-radius: 4px;
    /*font-size: 1rem;*/
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--green-taxiran);
    outline: none;
}
.btn-green:hover{}
.btn-green:focus{}
.btn-green i{
    line-height: 1;
    vertical-align: middle;
    font-size: 20px;
}
.navbar-action .btn-green:hover {
    background-color: var(--green-taxiran);
    color: #fff;
}
.navbar-action .btn-green:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgb(135 169 35 / 39%) inset;
}
.btn-mobile-menu{
    display: none;
}
@media (max-width: 768px) {
    .navbar-action .btn {display: flex;align-items: center;}
    .navbar-action .btn i{
        font-size: 1.2rem;
    }
    .navbar-action .btn .txt{display: none}
    .navbar-brand .logo-brand{
        /* width: 150px; */
        height: 40px;
    }
    .btn-mobile-menu{display: inline-block;}
    .navbar-menu{display: none}
    .btn-green{padding: 5px 10px !important;}
    .btn-green i{
        font-size: 22px;
    }
    .btn-green .loginvalue{
        display: none;
    }
}
@media (max-width: 660px) {
    .navbar-action .btn {
        width: auto;
        height: 38px;
        display: flex;
        align-items: center;
        padding: 10px;
    }

    .navbar-action .btn i {
        /* flex-basis: 100%; */
        font-size: 1.2rem;
    }
    .navbar-action .btn .loginvalue{
        display: none;
    }
}
@media (max-width: 1440px) {
    .navbar-brand .logo-brand{
        margin-left: 15px;
    }
}
@media (min-device-width: 768px) and (max-width: 1250px) {
    .navbar-action .btn {/* width: 60px; */height: 38px;display: flex;align-items: center;gap: 8px;}
    .navbar-action .btn i{
        /* flex-basis: 100%; */
        font-size: 1.2rem;
    }
    .navbar-action .btn .txt{display: none}

    .navbar-menu{
        margin: 0;
    }
    .navbar-menu li{
        margin: 0 10px;
    }
    .navbar-menu a{
        font-size: .9rem;
    }
}
.min-vh-wrapper{
    min-height: 30vh !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
}



/**
    Card 
 */
.card{
    overflow: hidden;
    border: 1px solid rgb(234, 236, 240);
    border-radius: 12px;
    color: #4d535b;
}
.card .card-header{
    border-bottom: 1px solid rgb(234, 236, 240);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    padding: 24px;
    background-color: white;

}
.card .card-header .title{
}
.card .card-header .title i{
    margin-left: 5px;
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
}
.card .card-body{
    display: block;
    background-color: white;
    padding: 20px 32px
}


.sortbycard{
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    font-size: .9rem;
}
.sortbycard label{}
.sortbycard label i{
    vertical-align: middle;
}
.sortbycard .btSortby{
    transition: all 0.3s ease;
    outline: none;
    border: 0;
    background: transparent;
    color: #706d6d;
    font-weight: 400;
}
.sortbycard .btSortby.active, .sortbycard .btSortby:hover{
    color: var(--green-taxiran);
}
.sortbycard .btSortby:active{
    transform: scale(0.95);
    /*box-shadow: 0 2px 4px rgb(135 169 35 / 39%) inset;*/
}

/*
    Card Large doctor
*/

.card-doctor-large{
    padding: 20px 15px;
    box-shadow: rgba(224, 224, 224, 0.2) 0 1px 10px 1px;
    position: relative;
    display: flex;
    flex-direction: column;
    user-select: none;
}
.card-doctor-large .dtl1{
    display: flex;
    gap: 1.5rem;
}
.card-doctor-large .dtl1 .linkprofile{
    margin-right: auto;
    font-size: .9rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.card-doctor-large .dtl1 .linkprofile:hover{
    color: var(--green-taxiran);
}
.card-doctor-large .dtl1 .linkprofile i{}
.card-doctor-large .dtl1 .image{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-doctor-large .dtl1 .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-doctor-large .dtl1 .info .name .status {
    position: relative;
    width: 14px;
    height: 14px;
    background: black;
    border-radius: 50%;
}

.card-doctor-large .dtl1 .info .name .status.online {
    background-color: green;
    animation: blink 1s infinite;
}

.card-doctor-large .dtl1 .info .name .status.offline {
    background-color: #cc0000;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.card-doctor-large .dtl1 .info{
    display: flex;
    flex-direction: column;
    position: relative;
}
.card-doctor-large .dtl1 .info .name{position: relative;display: flex;align-items: center;margin-bottom: 7px;gap: 7px;}
.card-doctor-large .dtl1 .info .name .namefamily{color: var(--forest-green);font-weight: 500;font-size: 1.2rem;line-height: 24px;}
.card-doctor-large hr{margin: 0.8rem 0;}

.card-doctor-large .dtl2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-doctor-large .dtl2 .right{}
.card-doctor-large .dtl2 .right .first_turn{
    font-size: 1rem;
    font-weight: 300;
    color: #888888;
}
.card-doctor-large .dtl2 .right .first_turn .turnval{
    color: #333;
    font-weight: 500;
}
.card-doctor-large .dtl2 .left{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
.card-doctor-large .dtl2 .left .price{
    color: black;
    font-size: 1.4rem;
    font-weight: 500;
}
.card-doctor-large .dtl2 .left .price small{
    font-size: .8rem;
}
.card-doctor-large .dtl2 .left .action{}
.card-doctor-large .dtl2 .left .action .btn {
    background: var(--green-taxiran);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-doctor-large .dtl2 .left .action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.successful-consultation{
    display: flex;
    line-height: 1;
    gap: 5px;
}
.successful-consultation .scname{}
.successful-consultation .scvalue{}

@media (max-width: 767px) {

    .card-doctor-large .dtl1{
        gap: 1rem;
    }
    .card-doctor-large .dtl1 .linkprofile{display: none}
    .card-doctor-large .dtl1 .image{
        width: 62px;
        height: 62px;
    }
    .card-doctor-large .dtl1 .info .name .namefamily{
        font-size: 1rem;
    }
    .card-doctor-large .dtl1 .info .eduction_name{
        font-size: .85rem;
    }
    .card-doctor-large .dtl2{
        flex-direction: column;
    }
    .card-doctor-large .dtl2 .right{
        margin-bottom: 10px;
    }
}


/*
    filter search
*/
.filtercard{
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.filtercard .form-label{
    font-weight: 500;
    color: #000;
}
.filter-mobile{display: none}
/*
    mobile and tablet
*/
@media (max-width: 992px) {
    .filter-mobile{
        position: fixed;
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: space-around;
        left: 0;
        width: 100vw;
        margin-left: -50vw;
        transform: translateX(50%);
        background-color: white;
        z-index: 1000;
        border-radius: 0;
        bottom: -8px;
        border-bottom: 0;
        border-right: 0;
        border-left: 0;
    }
    .filter-mobile .line{
        border-left: 1px solid #ddd;
        height: 35px;
    }
    .filter-mobile .item{
        color: var(--forest-green);
        font-weight: 500;
        font-size: .9rem;
    }
    .filter-mobile .item i{
        line-height: 1;
        vertical-align: middle;
    }
    .filter-mobile .item:hover{
        color: var(--green-taxiran);
    }
}
/**
    only mobile
 */
@media (max-width: 767px) {
    .sortbycard {
        flex-direction: column;
        align-items: flex-start;
    }
    .sortbycard label {
        width: 100%;
        text-align: right; /* Ã˜Â§ÃšÂ¯Ã˜Â± Ã™â€ Ã›Å’Ã˜Â§Ã˜Â² Ã˜Â¨Ã™â€¡ Ã˜ÂªÃ˜Â±Ã˜Â§Ã˜Â² Ã˜Â¨Ã™â€¡ Ã˜Â±Ã˜Â§Ã˜Â³Ã˜Âª Ã˜Â¯Ã˜Â§Ã˜Â±Ã›Å’Ã˜Â¯ */
    }
    .sortbycard .btSortby {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Ã™ÂÃ˜Â§Ã˜ÂµÃ™â€žÃ™â€¡ Ã˜Â¨Ã›Å’Ã™â€  Ã˜Â¯ÃšÂ©Ã™â€¦Ã™â€¡Ã¢â‚¬Å’Ã™â€¡Ã˜Â§ */
    }
}


.doctor-small{
    display: block;
    position: relative;
    padding: 20px;
}

.doctor-small .profile_picture{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.doctor-small .profile_picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-small .info{
    display: flex;
    flex-direction: column;
    position: relative;
}
.doctor-small .info .name{position: relative;display: flex;align-items: center;margin-bottom: 7px;gap: 7px;}
.doctor-small .info .name .namefamily{color: var(--forest-green);font-weight: 500;font-size: 1.2rem;line-height: 24px; margin: 0}

.shareProfile{
    text-align: left;
    display: block;
}
.doctor-bio{
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.66;
    text-align: justify;
}

.tableSchedules{
    font-size: .9rem;
    color: #000000c2;
}

.rating-label{
    font-weight: 500;
    font-size: .9rem;
}
.star-rating {
    font-size: 20px;
    color: #ffc107;
    cursor: pointer;
}

.star-rating .bi-star-fill {
    color: #ffc107;
}

.rating-star:hover,
.rating-star:hover ~ .rating-star {
    color: #ffc107;
}
.rating-star {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}
.rating-star:hover {
    transform: scale(1.2);
}
.pulse {
    animation: pulseEffect 0.3s ease-in-out;
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.glow {
    animation: glowEffect 0.4s ease-in-out;
}

@keyframes glowEffect {
    0% { text-shadow: 0 0 2px #ffd700; }
    50% { text-shadow: 0 0 8px #ffdd44; }
    100% { text-shadow: 0 0 2px #ffd700; }
}


@media (max-width: 767px) {
    .doctor-small .info .name{
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }
    .shareProfile{
        text-align: center;
    }
}
@media (max-width: 768px) {
    .doctor-small .profile_picture{
        width: 64px;
        height: 64px;
    }
    .doctor-small .profile_picture img{}
    .doctor-small .info{
    }
    .doctor-small .info .name{
        text-align: right;
        margin-bottom: 5px;
    }
    .doctor-small .info .name .namefamily{
        font-size: 1rem;
    }
    .doctor-small .info .eduction_name{
        font-size: .8em;
    }
    .doctor-small .info .rating{
        font-size: .9rem;
    }
    .successful-consultation{
        font-size: .9rem;
    }
}

.price_feeText{
    color: black;
    font-size: 1.4rem;
    font-weight: 500;
}
.price_feeText .small{
    font-size: .8rem;
}

.btn-moshavere {
    background: linear-gradient(135deg, var(--green-taxiran), #4caf50);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-moshavere {
    background: #0d6efd;
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-moshavere:hover{
    transform: translateY(-2px);
    box-shadow: 0 2px 4px #b0c7e6;
    background-color: #0d6efd;
}


.inputs input {
    width: 60px;
    height: 60px;
    border-color: #c0bebe !important;
    font-size: 18px;
    font-weight: bold;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}
.helpverifylogin{
    font-weight: 300;
    /* font-size: .9rem; */
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 11px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #E91E63;
}
.helpverifylogin #maskedNumber, .helpverifylogin #maskedNumberRegister{
    direction: ltr;
    margin: 0 10px;
    font-weight: 500;
    letter-spacing: 1px;
}
.notyf__message{
    font-size: .9rem;
}


.loaderdots {
    display: block;
    margin: 0 auto;
    width: 48px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #ffffffe0 90%, #0000);
    background:
            var(--_g) 0%   50%,
            var(--_g) 50%  50%,
            var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.management-calendar #jalali_date{
    font-size: 1.13rem;
    color: #198754;
}
.tooltip{font-family: "Vazir", sans-serif; font-size: 13px; font-weight: 300}

.warning-pm-small{
    font-size: .95rem;
    display: flex;
    align-items: center;
    background-color: rgb(253 246 223);
    padding: 10px;
    border-radius: 10px;
    color: #333;
}
.warning-pm-small i{
    margin-left: 10px;
    color: orange;
}
.warning-pm-small p.text{
    margin: 0;
    font-weight: 300;
}
.expiryel{
    margin-right: auto;
    position: absolute;
    left: 0;
    padding: 6px 13px;
    border-radius: 13px;
    line-height: 1;
    color: #4626a6;
    background-color: #E8EAF6;
}
#expireTimer{direction: ltr}

.shield-shaded{position: relative; display: block}
.shield-shaded .title{
    font-weight: 500;
    color: #FF5722;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.shield-shaded .title i{
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
}
.shield-shaded p{
    font-weight: 300;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.66;
}

.etminanel{
    position: relative;
    display: block;
}
.etminanel .title{
    font-weight: 500;
    color: green;
    font-size: 1rem;
}
.etminanel .title i{
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
}
.etminanel .list{
    font-weight: 300;
    color: #333;
    margin-top: 15px !important;
}
.etminanel .list li{}

.card-myadvice {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: .9rem;
    transition: 250ms;
    user-select: none;
    position: relative;
    overflow: hidden;
}
.card-myadvice .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding: 6px;
}
.card-myadvice .item .name {
    font-weight: 500;
}
.card-myadvice .item .value {
    margin-right: auto;
}
.payment_method{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    user-select: none;
}
.payment_method .item{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #ddd;
    padding: 2px 15px;
    border-radius: 7px;
    transition: width 0.3s ease;
}
.payment_method .item.active{
    border-color: var(--green-taxiran);
}
.payment_method .item .name{
    display: flex;
    align-items: center;
}
.payment_method .item .name img{
    width: 48px;
    height: 48px;
    object-fit: cover;
}
.payment_method .item .name .subject{
    font-weight: 500;
    color: black;
    margin-right: 15px;
    font-size: .9rem;
}
.payment_method .item .checkbox{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-flow: row-reverse;
}
.payment_method .item .checkbox input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    transition: 0.2s all linear;
    margin-right: 5px;
    position: relative;
    top: 4px;
}
.payment_method .item .checkbox input:checked{
    border: 6px solid var(--green-taxiran);
    outline: unset !important
}
.payment_method .item .checkbox .wallet_amount{
    font-size: .8rem;
    color: #8a8a8a;
}
.payment_method .item .checkbox .wallet_amount .price{}
.link_use_coupen{
    border: 0;
    background-color: transparent;
    color: #0754e3;
    font-size: .9rem;
    padding: 0;
    margin: 0;
}
.link_use_coupen:hover{color: #003da4
}


/*
------------------------------------------------------------
Sidebar Account dashboard
------------------------------------------------------------
*/
.user-panel-sidebar .box{
    box-shadow: 0 0 20px rgb(0 0 0 / 9%);
    padding: 20px;
    border-radius: 5px;
    background: #fff;
}
.user-panel-sidebar-toggle{
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: -27px;
    background: #939393;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    z-index: 4;
    display: none;
}
.user-panel-sidebar-toggle span{
    display: block;
    width:20px;
    height: 3px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 10px;
    transition: 250ms;
}
.user-panel-sidebar-toggle span:nth-child(2){
    width: 10px;
    top: 18px;
}
.user-panel-sidebar-toggle span:nth-child(3){
    width: 16px;
    top: 26px;
}
.user-panel-sidebar-toggle.open{

}
.user-panel-sidebar-toggle.open span:nth-child(2){
    width: 0;
}
.user-panel-sidebar-toggle.open span:nth-child(1){
    transform: rotate(45deg);
    top: 17px;
}
.user-panel-sidebar-toggle.open span:nth-child(3){
    width: 20px;
    transform: rotate(-45deg);
    top: 17px;
}

.sidebar-backdrop{
    z-index: 3;
}

@media (min-width: 992px) {
    .sidebar-backdrop{
        display: none!important;
    }
}
.backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(62,62,62,0.51);
    display: none;
    z-index: 7;
}

.user-panel-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.user-panel-sidebar{
    width: 280px;
    z-index: 9;
}
.user-panel-content{
    width: calc(100% - 310px);
}
.user-panel-sidebar-head{
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.user-panel-sidebar-image{
    position: relative;
    width: 120px;
    margin: 0 auto;
}
.user-panel-sidebar-image img{
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 8px solid #e9e9e9;
}

.links-account{
    display: flex;
    flex-direction: column;
}
.sidebar-link-item{
    /* display: block; */
    padding: 10px;
    text-decoration: none;
    color: #000 !important;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.sidebar-link-item i{
    /* margin-left: 15px; */
    color: #bbb;
    font-size: 1.3rem;
    line-height: 0;
    vertical-align: middle;
}
.sidebar-link-item:after{
    content: "\f12e";
    font-family: bootstrap-icons !important;
    /* display: block; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 30px; */
    margin: auto;
    color: var(--green-taxiran);
    font-size: 1.4rem;
    /* height: 20px; */
    /* line-height: 25px; */
    transition: 200ms;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    margin-left: initial;
}
.sidebar-link-item:hover:after{
    left: 20px;
    opacity: 1;
    visibility: visible;
}
.sidebar-link-item:hover{
    background: #f5f5f5;
}
.sidebar-link-item:hover i {
    color: var(--green-taxiran)!important;
}
.sidebar-link-item.active{
    background: #f5f5f5;
}
.sidebar-link-item.active i{
    color: var(--green-taxiran);
}

@media (max-width: 1024px) {
    .scrollable-content{
        overflow: auto;
        height: 100%;
    }

    .user-panel-sidebar-toggle{
        display: block;
    }
    .user-panel-wrapper{
        display: block;
    }
    #sidebar-box{display: none}
    .user-panel-sidebar{
        position: absolute;
    }
    .user-panel-content{
        width: 100%;
    }
}
.font-11{font-size: .75rem; color: #777}

.breadcrumb{
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 8px;
    font-size: 1rem;
}
.breadcrumb a{
    color: #333;
    text-decoration: none;
}
.breadcrumb a:hover{
    color: var(--green-taxiran)
}


.walletboxuser{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.walletboxuser .image{
    width: 60%;
}
.walletboxuser .image img{}
.walletboxuser .label{
    font-weight: 300;
    font-size: .9rem;
}
.walletboxuser .amount{
    font-weight: bold;
    font-size: 1.2rem;
    color: #ba6f00;
}
.walletboxuser .tmn{
    font-weight: 300;
    font-size: .9rem;
}

.fs--1{font-size: .9rem}


.card-myadvice {
    border: 1px solid var(--bs-gray-400);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    color: var(--bs-gray-800, inherit);
    font-size: 0.9rem;
    transition: 250ms;
    user-select: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(29, 58, 83, 0.15);
}
.flatpickr-current-month{
    right: 0;
    font-size: 1rem;
    position: relative;
    height: auto;
    padding: 0;
    top: 7px;
}
.flatpickr-current-month .numInputWrapper{
    width: 59px;
    background-color: #eee;
    border-radius: 5px;
    text-align: center;
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
    direction: rtl;
    background-color: #eee;
    border-radius: 5px;
}
.flatpickr-current-month .numInputWrapper{}
.card-myadvice.primary {
}
.card-myadvice.success {
    background-color: #f7fff5;
    border-color: #c5debd;
}
.card-myadvice.danger {
    background-color: #fdf6f6;
    border-color: #dbbfbf;
}
.card-myadvice:hover {
    /*background-color: #f5fdff;*/
}
.card-myadvice .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dashed var(--bs-gray-400);
    padding: 6px;
}
.card-myadvice .item:last-child {
    border: 0;
}
.card-myadvice .item .name {
    font-weight: 600;
}
.card-myadvice .item .value {
    margin-right: auto;
}
.card-myadvice .item .value.profile {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}
.card-myadvice .item .value.profile img {
    width: 48px;
}
.card-myadvice .action-item {
    display: block;
    text-align: left;
    padding: 8px 0 0;
}
.card-myadvice .action-item .btn {
    margin-bottom: 0;
}

.badge.bg-warning {
    color: #9d5228 !important;
    background-color: #fde6d8 !important;
}

.none-button,
.nonebutton,
.button-none,
.buttonnone {
    border: none;
    outline: none;
    user-select: none;
    background: transparent;
}
.chat-content-scroll-area {
}
.chat-message {
    max-width: calc(100% - 7rem);
    margin-bottom: 0.25rem;
    display: inline-block;
    position: relative;
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.bg-primary.light {
    background-color: #3593ff !important;
}
@media (min-width: 990px) {
    .bootstrap-table .fixed-table-container .fixed-table-body {
        overflow: initial !important;
    }
}
.dropdown-item{font-size: .9rem !important;}

.price_harf {
    font-size: .8rem;
    margin-top: 5px;
    color: #0a966c;
}

.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn.dropdown-toggle-split:first-child, .btn-group>.btn:not(:last-child):not(.dropdown-toggle){
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}


.avatar {
    height: 3rem;
    width: 3rem;
    position: relative;
    display: inline-block !important;
}

.avatar-img, .avatar img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.avatar-group {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.avatar-group > li {
    position: relative;
}
.avatar-group > li:not(:last-child) {
    margin-left: -0.8rem;
}
.avatar-group .avatar-img {
    border: 2px solid var(--bs-body-bg);
}

.avatar .avatar-name {
    margin-right: 7px;
}

.avatar-xs {
    height: 2.1875rem;
    width: 2.1875rem;
}

.avatar-sm {
    height: 2.5rem;
    width: 2.5rem;
}

.avatar-lg {
    height: 4rem;
    width: 4rem;
}

.avatar-xl {
    height: 5.125rem;
    width: 5.125rem;
}

.avatar-xxl {
    height: 5.125rem;
    width: 5.125rem;
}
@media (min-width: 768px) {
    .avatar-xxl {
        width: 8rem;
        height: 8rem;
    }
}

.avatar-xxxl {
    height: 8rem;
    width: 8rem;
}
@media (min-width: 768px) {
    .avatar-xxxl {
        width: 11rem;
        height: 11rem;
    }
}
.mt-n4 {
    margin-top: -1.6rem !important;
}
.dashboard-title h1 {
    font-size: 2em;
}
@media (max-width: 768px) {
    .dashboard-title h1 {
        font-size: 1.2em;
    }
}
.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(247, 195, 46, var(--bs-bg-opacity)) !important;
}

.text-purple {
    --bs-text-opacity: 1;
    color: rgba(111, 66, 193, var(--bs-text-opacity)) !important;
}

.bg-purple {
    --bs-bg-opacity: 1;
    background-color: rgba(111, 66, 193, var(--bs-bg-opacity)) !important;
}

.bg-opacity-15 {
    --bs-bg-opacity: 0.15;
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important;
}

.display-6 {
    font-size: calc(1.075rem + 2.7vw);
    font-weight: 700;
    line-height: 1.25;
}

.xitemNumber {
    margin-right: auto;
    margin-left: 0 !important;
}

.btn-default {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: #ddd;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f7f7f7;
    --bs-btn-hover-border-color: #ddd;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #f7f7f7;
    --bs-btn-active-border-color: #f7f7f7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.18);
    --bs-btn-disabled-color: rgba(255, 255, 255, 0.54);
    --bs-btn-disabled-bg: #ddd;
    --bs-btn-disabled-border-color: #ddd;
}

.action_myadvice{
    display: flex;
    margin-top: 10px;
    gap: 10px;
    align-items: center;
    margin-right: auto;
}
@media (max-width: 768px) {
    .action_myadvice{
        flex-direction: column;
        flex: auto;
        width: 100%;
    }
    .action_myadvice .btn{
        width: 100%;
        margin-right: 0;
    }
}

#days_of_week tr{
}
#days_of_week tr td{
    padding: 10px;
    border: 0;
    box-shadow: none;
}

.mdtimepicker{
    direction: ltr;
}
.gerdali{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
.gerdali.green{
    background-color: #45be39;
}
.gerdali.red{
    background-color: #dc4747;
}

.filter-search-custom-a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #E8EAF6;
    padding: 15px;
}
.filter-search-custom-a .item{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3px;
}
.filter-search-custom-a .item label{
    display: block;
    font-size: .9rem;
    font-weight: 500;
}
.filter-search-custom-a .item .input{
    width: 100%;
    border: 0;
    padding: 10px 7px;
    border-radius: 4px;
    outline: none;
}
.filter-search-custom-a .item .input:focus{
    box-shadow: 0px 0px 2px #212441;
}
.filter-search-custom-a .item .action{
    margin-top: 22px;
}

@media (max-width: 992px) { /* Ã˜Â¨Ã˜Â±Ã˜Â§Ã›Å’ Ã˜ÂªÃ˜Â¨Ã™â€žÃ˜Âª */
    .filter-search-custom-a {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .filter-search-custom-a .item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 767px) { /* Ã˜Â¨Ã˜Â±Ã˜Â§Ã›Å’ Ã™â€¦Ã™Ë†Ã˜Â¨Ã˜Â§Ã›Å’Ã™â€ž */
    .filter-search-custom-a {
        flex-direction: column;
        gap: 10px;
    }
    .filter-search-custom-a .item {
        width: 100%;
    }
    .filter-search-custom-a .item .action{
        margin: 0;
    }
}



.footer-main {
    background-color: #4376cb;
    color: #ffffff;
    padding: 120px 0 30px;
}

.footer-bottom {
    background: #467cd5;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    top: 83px;
    box-shadow: 0 -3px 17px 3px #11423229;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/callfooter.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 41% auto;
    opacity: 0.2; /* Ã˜ÂªÃ™â€ Ã˜Â¸Ã›Å’Ã™â€¦ Ã˜Â´Ã™ÂÃ˜Â§Ã™ÂÃ›Å’Ã˜Âª */
    border-radius: 15px; /* Ã™â€¡Ã™â€¦Ã˜Â§Ã™â€¡Ã™â€ ÃšÂ¯ Ã˜Â¨Ã˜Â§ Ã™Ë†Ã˜Â§Ã™â€žÃ˜Â¯ */
    z-index: -1;
}


.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: gray;
    margin-bottom: 30px;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: end;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    letter-spacing: 1px;
}

.phone-text {
    font-size: .9rem;
    color: #888888;
    margin: 0;
}

.phone-icon {
    background: #4376cb;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 6px;
}
.phone-icon i{font-size: 1.8rem}
.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.company-description {
    color: #ffffffc9;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1rem;
    text-align: justify;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #b8c5d1;
}

.contact-info i {
    width: 20px;
    color: var(--green-taxiran);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgb(254 254 254 / 26%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    /* border: 1px solid rgba(255,255,255,0.2); */
}

.social-links a:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 7%);
    color: var(--green-taxiran);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 2px;
}

.footer-links a {
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffffff;
    padding-right: 10px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-taxiran);
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
    align-items: end;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 35px;
    max-height: 35px;
    filter: brightness(0) invert(1);
}

.footer-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .contact-section {
        text-align: center;
    }

    .phone-section {
        flex-direction: column;
        text-align: center;
    }

    .brand-logos {
        flex-wrap: wrap;
        gap: 15px;
        flex-direction: row;
        margin-top: 0;
    }

    .social-links {
        justify-content: center;
    }
}


.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}


.reveal {
    position: relative;
    display: inline-block;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: right;
    transform-origin: right;
}

.wrapper-page {
    margin: 2rem 0;
}

.wrapper-page .page-title {
    font-weight: 800;
    font-size: 2.1rem;
    font-family: "Vazir", sans-serif;
    color: var(--forest-green);
    position: relative;
    user-select: none;
    display: inline-block;
}

.wrapper-page .page-title:before {
    content: "";
    background-color: #cdf0cd;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: -1;
    height: 24px;
    width: 100%;
}

.wrapper-page .page-story {
    background-color: white;
    min-height: 40vh;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    display: block;
    position: relative;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 1rem;
}
.card-register-doctor{
    display: flex;
    min-height: 500px;
    flex-flow: row-reverse;
}
.register-cn-leftside{
    width: 40%;
    flex-basis: 40%;
    background: white url(../images/imgskin/doctor-register.jpeg);
    min-height: 100%;
    position: relative;
    box-shadow: 2px 0px 10px #00000040;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.register-cn-leftside .bgimage{display: block;position: absolute;bottom: 0;max-width: 80%;margin: 0 auto;right: auto;left: auto;}
.title-card-stepwizard{
    margin: 0 0 40px;
    position: relative;
}
.title-card-stepwizard h1{
    color: #114232;
    font-size: 1.5rem;
}
.wizard-steps-wrapper{
}
.small-txt{font-size: .85rem}


.subscription_plans{
    position: relative;
    display: flex;
    flex-direction: column;
    user-select: none;
}

.subscription_plans .item {
    color: rgb(28, 28, 28);
    padding: 1rem;
    border: 1px solid rgb(0, 148, 148);
    background-color: rgb(255, 255, 255);
    position: relative;
    display: flex;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 16px;
    margin-top: 0px;
    height: 104px;
    text-decoration: none;
}
@media (min-width: 1281px) {
    .subscription_plans .item::before,
    .subscription_plans .item::after {
        content: "";
        position: absolute;
        right: 6.125rem;
        width: 1.5rem;
        height: 0.75rem;
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(0, 148, 148);
        transition: border-color 0.3s, background-color 0.3s;
        margin: auto;
    }
    .subscription_plans .item::before {
        border-top: none;
        top: -1px;
        border-radius: 0px 0px 1.5rem 1.5rem;
    }
    .subscription_plans .item::after {
        border-bottom: none;
        bottom: -1px;
        border-radius: 1.5rem 1.5rem 0px 0px;
    }
    .subscription_plans .item:hover {
        border-color: rgb(0, 148, 148);
        background-color: #f7f7f7;
    }
    .subscription_plans .item:hover::before,
    .subscription_plans .item:hover::after {
        border-color: rgb(0, 148, 148);
    }
}
@media (max-width: 1280px) {
    .subscription_plans .item {
        padding-right: 1rem;
        height: 137px;
        /* border: 0px; */
    }
}

.subscription_plans .item .icon {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding-left: 1rem;
    margin-left: 1.5rem;
    width: 6.5rem;
    flex-shrink: 0.6;
    border-left: 0.125rem dashed rgba(138, 141, 143, 0.25);
}
.subscription_plans .item .icon img{

}
@media (min-width: 960px) {
    .subscription_plans .item .icon {
        margin-left: 1.5rem;
    }
}
@media (max-width: 1280px) {
    .subscription_plans .item .icon {
        display: none;
    }
}

.subscription_plans .item .detail {
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}
.subscription_plans .item .detail .right-dt{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscription_plans .item .detail .right-dt .title{
    font-weight: 500;
    font-size: 1.1rem;
    color: black;
}
.subscription_plans .item .detail .right-dt .price{
    font-size: 1.1rem;
    color: #666;
}
.subscription_plans .item .detail .left-dt{
    display: flex;
    flex-direction: column;
    align-items: end;
}
.subscription_plans .item .detail .left-dt .buy{
    color: #019494;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .card-body-plans{padding: 15px !important;}
    .subscription_plans .item{
        flex-direction: column;
        height: auto;
    }
    .subscription_plans .item .detail{
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
    .subscription_plans .item .detail .right-dt{gap: 4px}
    .subscription_plans .item .detail .right-dt .price{font-size: 1rem}
    .subscription_plans .item .detail .left-dt .buy{font-size: .9rem}
}
.old_price{
    color: #a4a4a4;
    font-weight: 300;
    font-size: .9rem;
    position: relative;
    display: inline-block;
}
.old_price:before{
    content: "";
    position: absolute;
    width: 100%;
    top: 0.65em;
    transform: rotate(-10deg) scale(1.2);
    border-top: 1px solid;
    opacity: 0.5;
}
.total_price_plan{font-weight: 500; color: black}

.link-login-by-pass{
    align-items: center;
    color: rgb(68, 68, 68);
    font-weight: 300;
    display: flex;
    position: relative;
    text-decoration: none;
    background-color: rgba(242, 243, 246, 0.72);
    padding: 14px 15px;
    border-radius: 6px;
    gap: 10px;
    font-size: .92rem;
    transition: all 0.3s ease;
}
.link-login-by-pass:hover{
    color: black;
    background-color: rgba(227, 229, 236, 0.72);
}
.link-login-by-pass i{
    color: #666;
}
.link-login-by-pass:before{
    font-family: "bootstrap-icons" !important;
    content: "\f284";
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 15px;
    color: #666;
}
.account-dropdowncard{
    inset: 0 auto auto 0 !important;
    background-color: #f9fafd;
    color: rgb(255, 255, 255);
    border-radius: 0.25rem;
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 1rem; */
    padding: 1rem;
    max-height: 100vh;
    overflow-y: auto;
    width: 18.75rem;
}
.account-dropdowncard a.dropdown-item{
    color: #4d5969;
    display: flex;
    padding: 8px 0;
    margin: 0;
    align-items: center;
    gap: 10px;
    font-size: 1rem !important;
    font-weight: 300;
}
.account-dropdowncard a.dropdown-item i{
    font-size: 20px;
}
.account-dropdowncard a.dropdown-item:hover{color: #1f5ec9;background-color: transparent;}
.account-dropdowncard .dropdown-divider{
    color: #8493a0;
    border-bottom: 1px solid;
    opacity: 0.2;
}
.subscription_status{display: flex;justify-content: space-between;padding: 10px 10px;background-color: #e2e9f5;border-radius: 5px;user-select: none;}
.subscription_status .cntspt_label{/* color: #00e000; */opacity: .6;}
.subscription_status .cntspt_none{color: #F44336;text-align: center;flex: auto;}
.subscription_status .cntspt_expdate{
    color: #00e000;
}
.links-account .subscription_status{background-color: #eee;}

.btn-login{
    border-color: rgb(208, 213, 221);
    color: rgb(71, 84, 103);
    padding: 8px 27px;
    font-size: .9rem;
    transition-duration: 0.3s;
}
.btn-login:hover{
    background-color: rgb(208, 213, 221);
    color: rgb(71, 84, 103);
}

.modalLogin-or  {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0px 25px;
}
.modalLogin-or .title {
    display: inline-block;
    position: relative;
    top: -17px;
    background-color: rgb(255, 255, 255);
    font-size: .9rem;
    color: rgb(0, 0, 0);
    margin: 10px 0 0;
    padding: 0 15px;
}
.container-custom {margin: 0 auto;}
@media (min-width: 992px) {
    width: 960px;
}
@media (min-width: 1200px) {
    width: 1140px;
}
@media (min-width: 1400px) {
    .container-custom {
        width: 1128px !important;
        margin: 0 auto;
    }
}
.sessions .session{flex-basis: 15%}
@media (max-width: 450px) {
    .sessions .session{flex-basis: 18%}
}
@media (max-width: 320px) {
    .sessions .session{flex-basis: 22%}
}
