/**
 * modal-redesign.css
 * Улучшенный дизайн модальных окон и адаптивность
 * PHP 7.4 / PSR-12 / Adaptive / Full Mobile Adaptive
 */

/* =============================================
   OVERLAY / BACKDROP
   ============================================= */
.popup {
    z-index: 9100;
    padding: 20px 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.popup::before {
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

.popup.show::before,
.popup._active::before {
    opacity: 1;
}

/* =============================================
   POPUP CONTENT WRAPPER
   ============================================= */
.popup__content {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

/* =============================================
   POPUP BODY — базовый блок
   ============================================= */
.popup__body {
    transform: translateY(-20px) scale(0.97);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.25s ease;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18),
                0 4px 16px rgba(0, 0, 0, 0.08);
}

.popup.show .popup__body,
.popup._active .popup__body {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* =============================================
   LOGIN / REGISTER / RECOVER POPUP BODY
   ============================================= */
.popup-login .popup__body,
.popup-create .popup__body,
.popup-recover .popup__body,
.popup-refuse .popup__body {
    max-width: 480px;
    padding: 48px 44px 40px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    position: relative;
    box-shadow: 0 24px 64px rgba(38, 125, 237, 0.12),
                0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* =============================================
   CLOSE BUTTON
   ============================================= */
.popup-login .popup__close,
.popup-create .popup__close,
.popup-recover .popup__close,
.popup-refuse .popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.popup-login .popup__close:hover,
.popup-create .popup__close:hover,
.popup-recover .popup__close:hover,
.popup-refuse .popup__close:hover {
    background: #e5f0ff;
    transform: rotate(90deg);
}

.popup-login .popup__close::before,
.popup-create .popup__close::before,
.popup-recover .popup__close::before,
.popup-refuse .popup__close::before {
    display: block;
    font-family: icomoon;
    content: '\e91a';
    transform: rotate(-45deg);
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease;
}

.popup-login .popup__close:hover::before,
.popup-create .popup__close:hover::before,
.popup-recover .popup__close:hover::before,
.popup-refuse .popup__close:hover::before {
    color: #267ded;
}

/* =============================================
   POPUP TITLE
   ============================================= */
.popup-login .popup__title,
.popup-create .popup__title,
.popup-recover .popup__title,
.popup-refuse .popup__title {
    color: #267ded;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    padding-right: 40px;
}

/* =============================================
   FORM ITEMS
   ============================================= */
.popup-login-form .form__item {
    margin: 0 0 20px 0;
    position: relative;
}

.popup-login-form .form__label {
    font-weight: 500;
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 6px 4px;
    display: block;
    letter-spacing: 0.01em;
}

/* =============================================
   INPUTS
   ============================================= */
.popup-login-form .input {
    background: #f5f8ff;
    border: 1.5px solid #e8edf5;
    border-radius: 12px;
    height: 48px;
    padding: 0 44px 0 14px;
    color: #1a1a2e;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.popup-login-form .input::placeholder {
    color: #b0bac9;
    font-size: 14px;
}

.popup-login-form .input:focus {
    border-color: #267ded;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(38, 125, 237, 0.12);
}

.popup-login-form .input:hover:not(:focus) {
    border-color: #c5d3e8;
}

/* =============================================
   EYE ICON (password toggle)
   ============================================= */
.popup-login-form__eye {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../img/icons/eye1.svg') center/contain no-repeat;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.popup-login-form__eye:hover {
    opacity: 0.8;
}

.popup-login-form__eye._active {
    background: url('../img/icons/eye.svg') center/contain no-repeat;
    opacity: 0.8;
}

/* =============================================
   CHECKBOX
   ============================================= */
.popup-login-form .form__item_check {
    margin: -8px 0 20px 0;
}

.popup-login-form .checkbox__label {
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}

/* =============================================
   BUTTONS ROW
   ============================================= */
.popup-login-form__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.popup-login-form .form__btn {
    margin: 0;
    min-width: 120px;
    flex-shrink: 0;
}

/* =============================================
   SUBMIT BUTTON
   ============================================= */
.popup-login-form .sdmn-btn.sdmn-btn_md {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #267ded 0%, #1a6fd4 100%);
    box-shadow: 0 4px 14px rgba(38, 125, 237, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    letter-spacing: 0.01em;
}

.popup-login-form .sdmn-btn.sdmn-btn_md:hover {
    background: linear-gradient(135deg, #1a6fd4 0%, #1560c0 100%);
    box-shadow: 0 6px 20px rgba(38, 125, 237, 0.45);
    transform: translateY(-1px);
}

.popup-login-form .sdmn-btn.sdmn-btn_md:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(38, 125, 237, 0.3);
}

/* =============================================
   FORGOT PASSWORD LINK
   ============================================= */
.popup-login-form__forgot {
    font-size: 14px;
    color: #267ded;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.popup-login-form__forgot:hover {
    color: #1a6fd4;
    text-decoration: underline;
}

/* =============================================
   REGISTER LINK
   ============================================= */
.popup-login-form__create {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.6;
}

.popup-login-form__create .no-register-yet {
    display: inline;
}

.popup-login-form__create .register-link {
    color: #267ded;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 2px;
}

.popup-login-form__create .register-link:hover {
    color: #1a6fd4;
    text-decoration: underline;
}

/* =============================================
   ERROR MESSAGE
   ============================================= */
.auth-login-error-msg {
    background: #fff0f0;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #dc2626;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* =============================================
   BLOCKED NOTICE
   ============================================= */
.auth-blocked-notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.auth-blocked-notice__icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-blocked-notice__title {
    font-size: 16px;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 8px;
}

.auth-blocked-notice__text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.6;
    margin-bottom: 12px;
}

.auth-blocked-notice__contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #267ded;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.auth-blocked-notice__contact:hover {
    text-decoration: underline;
}

/* =============================================
   CALL AGAIN TIMER
   ============================================= */
.call-again-timer {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.5;
}

.call-again-timer #auth-timer,
.call-again-timer #auth-recover-timer {
    color: #267ded;
    font-weight: 600;
}

/* =============================================
   PASSWORD VALIDATION RULES
   ============================================= */
.create-form-valid {
    background: #f5f8ff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.create-form-valid__title {
    font-weight: 600;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 10px;
}

.create-form-valid__rule {
    font-size: 13px;
    color: #267ded;
    padding: 2px 0 2px 18px;
    position: relative;
    margin-bottom: 4px;
}

.create-form-valid__rule::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: #267ded;
}

/* =============================================
   DIVIDER LINE
   ============================================= */
.popup-login-form__divider {
    height: 1px;
    background: #f0f4f8;
    margin: 16px 0;
}

/* =============================================
   HEADER REDESIGN — улучшенная адаптивность
   ============================================= */

/* Логотип */
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__logo p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
    white-space: nowrap;
}

.header__logo p span {
    color: #267ded;
    font-weight: 600;
}

/* Верхняя строка шапки */
.header-top__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Блок кнопок справа */
.header-top__block.top-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Кнопка "О сервисе" */
.top-block__about {
    font-size: 14px;
    color: #4b5563;
    white-space: nowrap;
    transition: color 0.2s ease;
    padding: 6px 4px;
}

.top-block__about:hover {
    color: #267ded;
}

/* Кнопка "Войти" */
.btn_login {
    margin: 0;
    border-radius: 10px !important;
    padding: 8px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: all 0.2s ease !important;
}

/* =============================================
   HEADER FILTERS — строка поиска
   ============================================= */
.header-filters__top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.filters-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.filters-form__search {
    flex: 1;
    min-width: 0;
    position: relative;
}

.filters-form__search input {
    width: 100%;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
    border: 1.5px solid #e8edf5;
    background: #f5f8ff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.filters-form__search input:focus {
    border-color: #267ded;
    box-shadow: 0 0 0 3px rgba(38, 125, 237, 0.1);
    background: #fff;
}

/* =============================================
   MOBILE NAV — нижняя навигация
   ============================================= */
.nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}

.nav-mobile__wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
}

.nav-mobile__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
    position: relative;
    cursor: pointer;
    min-width: 52px;
}

.nav-mobile__items:hover,
.nav-mobile__items:active {
    background: #f0f7ff;
}

.nav-mobile__items img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.nav-mobile__text {
    font-size: 10px;
    color: #6b7280;
    text-transform: lowercase;
    line-height: 1;
    white-space: nowrap;
}

.nav-mobile__items-add .circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #267ded 0%, #1a6fd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(38, 125, 237, 0.4);
    margin-top: -16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-mobile__items-add:hover .circle {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(38, 125, 237, 0.5);
}

.nav-mobile__items-add .circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.nav-mobile__items-add .nav-mobile__text {
    margin-top: 4px;
}

/* =============================================
   RESPONSIVE — 992px и ниже
   ============================================= */
@media (max-width: 992px) {
    .popup-login .popup__body,
    .popup-create .popup__body,
    .popup-recover .popup__body,
    .popup-refuse .popup__body {
        max-width: 100%;
        padding: 36px 28px 32px !important;
        border-radius: 16px !important;
        margin: 0 auto;
    }

    .popup-login .popup__title,
    .popup-create .popup__title,
    .popup-recover .popup__title,
    .popup-refuse .popup__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .header-filters__top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filters-form {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* =============================================
   RESPONSIVE — 768px и ниже
   ============================================= */
@media (max-width: 768px) {
    .popup {
        padding: 0;
        align-items: flex-end;
    }

    .popup__content {
        align-items: flex-end;
        padding: 0;
    }

    .popup-login .popup__body,
    .popup-create .popup__body,
    .popup-recover .popup__body,
    .popup-refuse .popup__body {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px 32px !important;
        border-radius: 20px 20px 0 0 !important;
        margin: 0;
        /* Drag handle */
        position: relative;
    }

    /* Drag handle indicator */
    .popup-login .popup__body::before,
    .popup-create .popup__body::before,
    .popup-recover .popup__body::before,
    .popup-refuse .popup__body::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 0 auto 20px;
    }

    .popup-login .popup__close,
    .popup-create .popup__close,
    .popup-recover .popup__close,
    .popup-refuse .popup__close {
        top: 14px;
        right: 14px;
        width: 28px;
        height: 28px;
    }

    .popup-login .popup__title,
    .popup-create .popup__title,
    .popup-recover .popup__title,
    .popup-refuse .popup__title {
        font-size: 18px;
        margin-bottom: 18px;
        padding-right: 36px;
    }

    .popup-login-form .input {
        height: 46px;
        font-size: 16px; /* предотвращает zoom на iOS */
        border-radius: 10px;
    }

    .popup-login-form .form__item {
        margin-bottom: 16px;
    }

    .popup-login-form .form__item_check {
        margin: -4px 0 16px 0;
    }

    .popup-login-form__buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }

    .popup-login-form .form__btn,
    .popup-login-form .sdmn-btn.sdmn-btn_md {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .popup-login-form__forgot {
        width: 100%;
        text-align: center;
        background: #f0f7ff;
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        color: #267ded;
        display: block;
    }

    .popup-login-form__create {
        text-align: center;
        margin-top: 8px;
    }

    .popup-login-form__create .no-register-yet {
        display: block;
        margin-bottom: 4px;
    }

    .popup-login-form__create .register-link {
        font-size: 13px;
    }
}

/* =============================================
   RESPONSIVE — 480px и ниже
   ============================================= */
@media (max-width: 480px) {
    .popup-login .popup__body,
    .popup-create .popup__body,
    .popup-recover .popup__body,
    .popup-refuse .popup__body {
        padding: 24px 16px 28px !important;
        border-radius: 18px 18px 0 0 !important;
    }

    .popup-login .popup__title,
    .popup-create .popup__title,
    .popup-recover .popup__title,
    .popup-refuse .popup__title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .popup-login-form .input {
        height: 44px;
        padding: 0 40px 0 12px;
        font-size: 16px;
        border-radius: 8px;
    }

    .popup-login-form .form__label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .popup-login-form .form__item {
        margin-bottom: 14px;
    }

    .popup-login-form .sdmn-btn.sdmn-btn_md {
        padding: 13px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .create-form-valid {
        padding: 12px 14px;
    }

    .create-form-valid__title {
        font-size: 12px;
    }

    .create-form-valid__rule {
        font-size: 12px;
    }

    .call-again-timer {
        font-size: 12px;
    }
}

/* =============================================
   RESPONSIVE — 360px и ниже (очень маленькие)
   ============================================= */
@media (max-width: 360px) {
    .popup-login .popup__body,
    .popup-create .popup__body,
    .popup-recover .popup__body,
    .popup-refuse .popup__body {
        padding: 20px 14px 24px !important;
    }

    .popup-login .popup__title,
    .popup-create .popup__title,
    .popup-recover .popup__title,
    .popup-refuse .popup__title {
        font-size: 16px;
    }

    .popup-login-form .input {
        height: 42px;
        font-size: 15px;
    }
}

/* =============================================
   HEADER RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .header-top__row {
        gap: 8px;
    }

    .top-block__about {
        display: none;
    }

    .header__logo p {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-top__row {
        gap: 6px;
    }

    .header__logo img {
        height: 30px;
    }

    .btn_login {
        padding: 7px 14px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .header-top__row {
        gap: 4px;
    }

    .header__logo img {
        height: 28px;
    }

    .btn_login {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}

/* =============================================
   SAFE AREA — поддержка iPhone с чёлкой
   ============================================= */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .popup-login .popup__body,
    .popup-create .popup__body,
    .popup-recover .popup__body,
    .popup-refuse .popup__body {
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }

    @media (min-width: 769px) {
        .popup-login .popup__body,
        .popup-create .popup__body,
        .popup-recover .popup__body,
        .popup-refuse .popup__body {
            padding-bottom: 40px;
        }
    }
}

/* =============================================
   ANIMATION — плавное появление
   ============================================= */
@keyframes popupSlideUp {
    from {
        transform: translateY(30px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes popupFadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .popup.show .popup__body,
    .popup._active .popup__body {
        animation: popupSlideUp 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    }
}

@media (min-width: 769px) {
    .popup.show .popup__body,
    .popup._active .popup__body {
        animation: popupFadeIn 0.25s ease forwards;
    }
}

/* =============================================
   CHECKBOX CUSTOM STYLE
   ============================================= */
.popup-login-form .checkbox__input {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    accent-color: #267ded;
    flex-shrink: 0;
}

.popup-login-form .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   RESEND BUTTON
   ============================================= */
#auth-resend-btn {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* =============================================
   TEXTAREA в попапах
   ============================================= */
.popup-login-form textarea {
    background: #f5f8ff;
    border: 1.5px solid #e8edf5;
    border-radius: 12px;
    padding: 12px 14px;
    color: #1a1a2e;
    font-size: 14px;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.popup-login-form textarea:focus {
    border-color: #267ded;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(38, 125, 237, 0.12);
}

/* =============================================
   ADDRESS COLUMN (регистрация)
   ============================================= */
.popup-create .address-column {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.popup-create .address-column .form__street {
    flex: 1;
    min-width: 0;
}

.popup-create .address-column .form__home {
    width: 90px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .popup-create .address-column {
        flex-direction: column;
        gap: 0;
    }

    .popup-create .address-column .form__street,
    .popup-create .address-column .form__home {
        width: 100%;
    }
}

/* =============================================
   Мобильное меню добавления (nav__addblock)
   ============================================= */

.nav__addblock {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.nav__addblock.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    bottom: 60px;
}

.nav__addblock a {
    display: block;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.nav__addblock a:first-child {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.nav__addblock a:hover {
    background: #e6f0fe;
    color: #267ded;
}

.nav-mobile__items-add {
    position: relative;
    cursor: pointer;
}
