.dr-detail-container {
    /*min-width: 1176px;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.doctor-detail-page {
    max-width: 1440px;
   /* min-width: 1176px;*/
    width: 100%;
    gap: 40px;
}

.doctor-detail-header {
    max-width: 1440px;
    width: 100%;
    padding-left: 164px;
    padding-right: 164px;
}

.dr-detail-clinic-infos {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-bottom: 40px;
    padding-right: 0;
    width: 536px;
    gap: 32px;
}

.dr-detail-appointment {
    display: flex;
    justify-content: end;
    width: 536px;
    margin-top: 0px;
    margin-left:20px;
    padding-bottom: 20px;
}

.appointment-cover {
    min-height: 520px;
    top: 112px;
    margin-top: -224px;
    filter: drop-shadow(0px 5px 5px #00000010);
}

.mobile-dr-appointment {
    display: none;
}

.main-tab-head {
    position: sticky;
    position: -webkit-sticky;
    top: 80px;
    padding-bottom: 4px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: 42px;
    background-color: #fff;
    border-top: 1px solid #f4f4f4;
    border-radius: 0 0 16px 16px;
    z-index: 90;
    filter: drop-shadow(0px 5px 5px #00000010);
}

.main-tab-head__item {
    padding: 15px 15px;
    font-weight: 600;
    color: rgba(4, 3, 69, 0.3)!important;
    font-size: 14px!important;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.main-tab-head-links {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 10px;
}

.main-tab-head__item:hover>span {
    color: #040345;
}

.main-tab-head__item.active:after {
    width: calc(100% - 20px);
    left: 10px;
    
}

.main-tab-head__item>span {
    font-weight: 600;
    color: rgba(4, 3, 69, 0.3);
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}

.main-tab-head__item:after {
    content: "";
    position: absolute;
    bottom: -2.5px;
    left: 50%;
    width: 0;
    height: 5px;
    transform: translateY(-50%);
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}

.main-tab-wrp {
    position: relative;
    z-index: 4;
}

@media (max-width: 1375px) {
    .doctor-detail-page,
    .doctor-detail-header {
        padding-right: 34px;
        padding-left: 34px;
    }
}

@media (max-width: 1024px) {
    .doctor-detail-page {
        min-width: 100%;
        display: flex;
        align-items: start;
        justify-content: center;
    }
    .dr-detail-container {
        min-width: 100%;
    }
    .dr-detail-clinic-infos {
        align-items: center;
        width: 100%!important;
    }
    .dr-detail-appointment {
        /*display: none !important;*/
    }
    .doctor-options {
        display: none;
    }
    .mobile-dr-appointment {
        display: flex;
    }
    .appointment-cover {
        position: inherit;
        position: -webkit-inherit;
        /* Safari */
        top: 112px;
        filter: drop-shadow(0px 5px 5px #00000010);
    }
    .appointment-cover {
        display: none;
    }
    .main-tab {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .doctor-detail-header,
    .doctor-detail-page {
        padding-right: 24px;
        padding-left: 24px;
    }
    .main-tab-head__item {
        padding: 0 0px;
    }
    .main-tab__item {
        width: 100%;
    }
}