/* Teachers */

.teachers {
}

.teachers .teachers-wrapper {
    display: flex;
    margin-bottom: 60px;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.teachers .teachers-filter {
    width: 332px;
    border-right: 1px solid var(--gray-light);
    border-left: 1px solid var(--gray-light);
}

.teachers .teachers-filter-wrapper {
    position: sticky;
    top: 190px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
}

.teachers .teachers-filter-wrapper.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.teachers .teachers-filter-wrapper.disabled label {
    pointer-events: none;
}

.teachers .teachers-filter__main-title {
    margin-bottom: 4px;
}

.teachers .teachers-filter__item + .teachers-filter__item {
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.teachers .teachers-filter__title {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
}

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

.teachers .teachers-filter__label svg {
    color: var(--red);
    width: 1em;
    height: 1em;
    margin-right: 8px;
    transform: translateY(2px);
}

.teachers .teachers-filter__current-option {
    display: none;
}

.teachers .teachers-filter__icon {
    position: absolute;
    top: 4px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    transition: var(--transition);
    cursor: pointer;
    z-index: 5;
}

.teachers .teachers-filter__title.active .teachers-filter__icon {
    color: var(--red);
    transform: rotate(180deg);
}

.teachers .teachers-filter__options {
    display: none;
    margin-top: 14px;
}

.teachers .teachers-filter__option + .teachers-filter__option {
    margin-top: 14px;
}

.teachers .teachers-filter__option {
    height: auto;
}

.teachers .teachers-filter__option label {
    align-items: flex-start;
    color: var(--black);
    white-space: normal;
    transition: var(--transition);
}

.teachers .teachers-filter__reset {
    display: none;
}

.teachers .teachers-filter__reset.active {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.teachers .teachers-filter__reset .btn-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.teachers .teachers-filter__reset .btn-reset svg {
    transition: var(--transition);
}

.teachers .teachers-filter__reset .btn-reset:hover {
    color: var(--red);
}

.teachers .teachers-filter__reset .btn-reset:hover svg {
    transform: rotate(180deg);
}

/* Results */
.teachers .teachers-results {
    flex: 1;
    position: relative;
    padding: 32px;
    border-right: 1px solid var(--gray-light);
}

/* Teachers Items */
.teachers .teachers-items-wrapper {
    transition: var(--transition);
}

.teachers .teachers-items-wrapper.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.teachers .teachers-items {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.teachers .teachers-item {
    display: flex;
    gap: 32px;
}

.teachers .teachers-item__image {
    position: relative;
    flex: 0 0 min(355px, 40%);
    display: flex;
    height: 100%;
}

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

.teachers .teachers-item__languages {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.teachers .teachers-item__languages-item {
    width: 27px;
    height: 21px;
    border: 1px solid var(--gray-dark-7);
    transition: var(--transition);
}

.teachers .teachers-item__languages-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teachers .teachers-item__languages:has(> .active) .teachers-item__languages-item:not(.active) {
    opacity: 0.5;
}

.teachers .teachers-item__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.teachers .teachers-item__title {

}

.teachers .teachers-item__description {
    margin-top: 8px;
}

.teachers .teachers-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-light);
}

.teachers .teachers-item__info-item {
    display: flex;
    gap: 8px;
}

.teachers .teachers-item__info-item .icon {
    flex-shrink: 0;
    width: 1em;
}

.teachers .teachers-item__info-item .icon svg {
    width: 100%;
    height: 100%;
}

.teachers .teachers-item__info-item .text {
    align-self: center;
}

.teachers .teachers-item__groups {
    margin-block: 20px;
}

.teachers .teachers-item__groups-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.teachers .teachers-item__groups-item {
    background-color: #F2F2F2;
    padding: 9px 20px;
    transition: var(--transition);
}

.teachers .teachers-item__groups-item.active {
    color: var(--white);
    background-color: var(--red);
}

.teachers .teachers-item__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.teachers .teachers-item__button {
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .teachers .teachers-filter {
        width: 235px;
        border-left: none;
    }

    .teachers .teachers-filter-wrapper {
        padding-left: 0px;
    }

    .teachers .teachers-results {
        padding-right: 0;
        border-right: none;
    }

    .teachers .teachers-items {
        gap: 42px;
    }

    .teachers .teachers-item {
        flex-wrap: wrap;
        gap: 24px;
    }

    .teachers .teachers-item__image {
        flex-basis: min(340px, 50%);
    }

    .teachers .teachers-item__info {
        margin-top: 16px;
    }

    .teachers .teachers-item__groups {
        margin-block: 16px;
    }

    .teachers .teachers-item__groups-list {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .teachers .teachers-wrapper {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .teachers .teachers-filter {
        display: flex;
        width: 100vw;
        margin-inline: -18px;
        padding-inline: 18px;
        border: none;
        border-bottom: 1px solid var(--gray-light);
    }

    .teachers .teachers-filter-wrapper {
        position: relative;
        top: 0;
        gap: 16px;
        width: 100%;
        padding: 24px 0;
    }

    .teachers .teachers-filter__item + .teachers-filter__item {
        padding-top: 16px;
    }

    .teachers .teachers-filter__label::after {
        content: ":";
    }

    .teachers .teachers-filter__current-option {
        display: inline-block;
    }

    .teachers .teachers-filter__reset.active {
        padding-top: 16px;
    }

    .teachers .teachers-results {
        padding: 24px 0;
    }

    .teachers .teachers-item__image {
        flex-basis: max(260px, 50%);
    }
}

@media (max-width: 400px) {
    .teachers .teachers-item__image {
        flex-basis: 100%;
    }
}

/* Teachers - END */