.header {
    transition: background-color 0.1s ease-in-out;
    background-color: transparent;
}

.header .mobile-navs__inner {
    display: block;
    background-color: #fff;
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 77px;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.header .mobile-navs__inner.__active {
    transform: translateX(0);
}

.header.__scroll {
    background-color: #fff;
}

.link-profile .avatar svg {
    width: 36px;
    height: 36px;
}

.avatar-box {
    position: relative;
}

.header {
    overflow: visible;
}

.avatar-box .profile-menu {
    position: absolute;
    top: 100%;
    opacity: 0;
    transition: opacity .3s ease;
    transform: translateY(10px);
    right: 0;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 99;
}

.avatar-box .profile-menu.__active {
    opacity: 1;
}

.avatar-box .profile-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.avatar-box .profile-nav_item {
    display: flex;
    align-items: center;
}

.avatar-box .profile-nav_item .link {
    font-size: 16px;
    text-wrap: nowrap;
    color: #000;
}

.input-hint {
    font-size: 14px;
    color: #666;
}

.input-hint a {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}

.input-group.__error {
    .form-control {
        border: 1px solid #f5bebe; /* Пастельно-красный контур */
        background-color: #fff5f5; /* Очень светлый розоватый фон */
        color: #333; /* Стандартный цвет текста */
        outline: none;
    }

    .form-control:focus {
        border-color: #e89b9b; /* Немного темнее при фокусе */
        background-color: #fff0f0;
    }
}


.profile-box .profile-info .profile-form .form-group_title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 0;
}

#geo-widget-city .btn {
    height: 30px;
    font-size: 14px;
    background-color: #f2f2f2;
    font-weight: 400;
    border-radius: 6px;
    transition: all .3s ease;
}

#geo-widget-city .btn:hover {
    background-color: #c2c2c2;
}


.btn#select-geo-city {
    width: 100%;
    display: flex;
    border-radius: 6px;
    height: 40px;
    background-color: #e6ccf9;
    font-weight: 400;
    font-size: 14px;
}

.btn#select-geo-city:hover {
    background-color: #d1a8f0;
    color: #000;
}

.icms-profile-avatar__default {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
}

.mobile-g_nav {
    display: none;
}

.couples-actions.__mob {
    display: none;
}

#contact_toggle {
    display: none;
}

.dating-filter .form-group {
    position: relative;
}

.dating-filter .select-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 10px;
    background-color: #fff;
    z-index: 9999;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
    box-shadow: 0 0 4px #694DB1;
}

.dating-filter .select-dropdown.__active {
    display: block;
    opacity: 1;
}

.dating-filter .select-dropdown .select-list {
    margin: 0;
    padding: 0;
    max-height: 200px;
    list-style: none;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE и Edge */
    scrollbar-width: none; /* Firefox */
}

.dating-filter .select-dropdown .select-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.dating-filter .select-dropdown .select-item {
    cursor: pointer;
    color: #404040;
}

.dating-filter .select-dropdown .select-item:hover {
    color: #e89b9b;
}

.profile-box .profile-photos .photos-list_item.__empty .link-add {
    pointer-events: none;
}

.profile-box .profile-photos .photos-list_item.__empty {
    cursor: pointer;
}

.alert-info {
    color: #000 !important;
    background-color: #fff !important;
    border-color: #fff !important;
}

.redactor_dropdown_box_smiles img {
    width: 32px;
    height: 32px;
}