.ashe-langs {
    margin-left: 15px;
    position: relative;
    z-index: 2
    }
.ashe-langs__title {
    align-items: center;
    color: #fafafa;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    gap: 7px;
    justify-content: flex-start
    }
@media only screen and (max-width: 767px) {
    .ashe-langs__title {
        font-size: 16px
        }
    }
.ashe-langs__title svg {
    fill: #fafafa;
    height: 10px;
    margin-left: 5px;
    transition: all 0.3s;
    width: 10px
    }
.ashe-langs__title.active svg {
    transform: rotate(180deg)
    }
.ashe-langs__list {
    background-color: var(--light-color);
    box-shadow: 1px -1px 3px -1px rgba(0, 0, 0, 0.59);
    display: none;
    flex-direction: column;
    gap: 5px;
    min-width: 130px;
    padding: 5px 5px 0;
    position: absolute;
    right: 50%;
    top: calc(100% + 5px);
    transform: translatex(50%)
    }
.ashe-langs__list.active {
    display: flex
    }
@media only screen and (max-width: 767px) {
    .ashe-langs__list {
        background-color: initial;
        box-shadow: none;
        display: flex;
        max-height: 0;
        overflow: hidden;
        padding-left: 10px;
        position: static;
        transform: none;
        transition: max-height 0.3s ease-in-out
        }
    .ashe-langs__list.active {
        max-height: 300px
        }
    }
.ashe-langs__list-item {
    align-items: center;
    color: var(--main-color);
    cursor: pointer;
    display: flex;
    gap: 7px;
    justify-content: flex-start;
    padding-bottom: 5px;
    transition: all 0.3s
    }
@media only screen and (max-width: 767px) {
    .ashe-langs__list-item {
        color: #fff
        }
    }
.ashe-langs__list-item:hover {
    color: var(--accent-color)
    }
.ashe-langs__list-item:not(:last-child) {
    border-bottom: 1px solid var(--main-color)
    }
@media only screen and (max-width: 767px) {
    .ashe-langs__list-item:not(:last-child) {
        border-bottom: none
        }
    }