@charset "UTF-8";

/* Banner Styles */
.banner__social {
    padding-top: 200px;
    align-items: flex-start;
}

.banner__social ul {
    margin-top: 180px;
}

.banner__slide-info {
    padding-left: 0;
}

@media (max-width: 767.98px) {
    .banner__slide-info {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding-left: 0;
}

/* Doctor Wrap */
.doctor__wrap {
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 1550px;
    padding: 0 15px;
    margin-right: auto;
}

/* Doctor Categories */
.doctor__categories-wrap {
    position: relative;
}

.doctor__categories {
    position: absolute;
    z-index: 1;
    top: 50px;
    left: 0;
    padding: 40px;
    width: 300px;
    min-height: 230px;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.doctor__categories li {
    font-family: GothamProRegular;
    font-size: 12px;
    line-height: 0.91667;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    color: #858282;
}

.doctor__categories li + li {
    margin-top: 10px;
}

.doctor__categories li:hover {
    color: #2c2c2c;
}

.doctor__categories li:hover:before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 5px;
    height: 5px;
    content: "";
    background-color: #ca0009;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.doctor__categories-label {
    position: relative;
    display: block;
    width: 300px;
}

@media (max-width: 575.98px) {
    .doctor__categories-label {
        width: 260px;
    }
}

.doctor__categories-input {
    width: 300px;
    border: none;
    border-bottom: 2px solid #d8d8d8;
}

@media (max-width: 575.98px) {
    .doctor__categories-input {
        width: 260px;
    }
}

.doctor__categories-input.active {
    border-bottom: 2px solid #ca0009;
}

.doctor__arrow {
    position: absolute;
    top: -4px;
    right: 0;
    left: auto;
}

/* Doctor Block */
.doctor__block {
    position: relative;
    /* margin-right: -60px;
    margin-left: -60px; */
    /* display: flex;
    flex-flow: row wrap; */
}

.doctor__filter-dropdown {
    margin-bottom: 30px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    max-width: 350px;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 2px solid #ca0009;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select__trigger:hover {
    border-color: #ca0009;
}

.custom-select.open .custom-select__trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #ca0009;
}

.custom-select__trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow {
    position: relative;
    height: 10px;
    width: 10px;
    margin-left: 10px;
    flex-shrink: 0;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0.12rem;
    height: 100%;
    background-color: #ca0009;
    transition: all 0.3s ease;
}

.arrow::before {
    left: -3px;
    transform: rotate(45deg);
}

.arrow::after {
    left: 3px;
    transform: rotate(-45deg);
}

.custom-select.open .arrow::before {
    left: -3px;
    transform: rotate(-45deg);
}

.custom-select.open .arrow::after {
    left: 3px;
    transform: rotate(45deg);
}

.custom-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #ca0009;
    border-top: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-option:hover {
    background-color: #f0f8ff;
    color: #ca0009;
    text-decoration: none;
}

.custom-option.selected {
    background-color: #ca0009;
    color: #fff;
}

.custom-option.selected:hover {
    background-color: #ca0009;
    color: #fff;
}

/* Скроллбар */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-options::-webkit-scrollbar-thumb {
    background: #ca0009;
    border-radius: 4px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: #ca0009;
}

@media (max-width: 991.98px) {
    .doctor__block {
        /* margin-right: -30px;
        margin-left: -30px; */
    }
}

@media (max-width: 575.98px) {
    .doctor__block {
        margin-right: 0;
        margin-left: 0;
    }
}

/* Doctor Item */
.doctor__item {
    position: relative;
    /* margin: 0 30px; */
    margin-bottom: 80px;
    /* display: flex;
    flex-flow: column nowrap;
    width: calc(25% - 60px);
    max-width: calc(25% - 60px);
    background-color: #fff;
    flex: 0 0 calc(25% - 60px); */
}

@media (max-width: 991.98px) {
    .doctor__item {
        margin: 0 30px 50px;
        width: calc(50% - 60px);
        max-width: calc(50% - 60px);
        flex: 0 0 calc(50% - 60px);
    }
}

@media (max-width: 575.98px) {
    .doctor__item {
        margin: 0 0 50px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* Doctor Image */
.doctor__img {
    position: relative;
    margin-bottom: 20px;
    display: block;
}


.doc__title {
    color: #ca0009;
    font-weight: 600;
}

.doc__descr {
    color: #646464;
    font-size: 16px;
}



@media (max-width: 575.98px) {
    .doctor__img {
        margin-bottom: 15px;
    }
}

.doctor__img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    content: "";
    background-color: #bcbcbc;
}

.doctor__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor__img:hover:after {
    background-color: #ca0009;
}

.doctor__img a {
    line-height: 1;
    display: block;
    overflow: hidden;
}

.doctor_data_item{
    margin-bottom: 15px;
}

.data_video {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background: #ca0009;
    width: 40px;
    height: 40px;
    z-index: 999;
    border-radius: 50%;
    cursor: pointer;
}
.data_video::after{
    content: '';
    background-image: url(/images/play.png);
    width: 32px;
    height: 32px;
    position: absolute;
    background-size: contain;
    top: 4px;
    left: 4px;
}

.data_video.active{

}
.data_video.active::after{
    content: '';
    background-image: url(/images/close.png);
}


video.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}





/* Doctor Detail */
.doctor-detail__img-block {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    max-width: 518px;
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .doctor-detail__img-block {
        margin-bottom: 40px;
    }
}

.doctor-detail__img {
    position: relative;
    width: 100%;
}

.doctor-detail__img img {
    display: block;
    box-sizing: border-box;
    -o-object-fit: fill;
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.doctor-detail__img-bottom {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}

.doctor-detail__button-item {
    flex: 0 0 50%;
}

/* Certificate Slider */
.cert-slider {
    max-width: 780px;
    flex: 0 0 70%;
}

@media (max-width: 991.98px) {
    .cert-slider {
        flex: 0 0 70%;
    }
}

@media (max-width: 575.98px) {
    .cert-slider {
        flex: 0 0 70%;
    }
}

.cert-slider__item {
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.cert-slider__img {
    width: 100%;
    max-width: 180px;
}

.cert-slider__wrap {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}

.cert-slider__arrow-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    flex: 0 0 15%;
}

/* Slider Buttons */
.sliders-buttons__left,
.sliders-buttons__right {
    margin: 0 auto;
    width: 52px;
    height: 52px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10629);
    flex: 0 0 52px;
}

/* Work Slider */
.work-slider__img-wrap {
    display: flex;
    flex-flow: row nowrap;
}

.work-slider__img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.work-slider__left {
    position: relative;
}

.work-slider__left:after {
    font-family: GothamProBold;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 54px;
    content: 'До лечения';
    color: #fff;
    background-color: #ca0009;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .work-slider__left:after {
        height: 44px;
        font-size: 20px;
        line-height: 1.2;
    }
}

@media (max-width: 767.98px) {
    .work-slider__left:after {
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .work-slider__left:after {
        padding: 0 5px;
        height: 22px;
        font-size: 9px;
    }
}

.work-slider__right {
    position: relative;
}

.work-slider__right:after {
    font-family: GothamProBold;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 54px;
    content: 'После лечения';
    color: #fff;
    background-color: #ca0009;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .work-slider__right:after {
        height: 44px;
        font-size: 20px;
        line-height: 1.2;
    }
}

@media (max-width: 767.98px) {
    .work-slider__right:after {
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .work-slider__right:after {
        padding: 0 5px;
        height: 22px;
        font-size: 9px;
    }
}

/* Form Button */
.form-doctor-btn[disabled=disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}