

/* Start:/local/components/pusk.ext/events.detail/templates/.default/style.css?17799610607463*/
/* Стили для попапа подписки на уведомления */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.subscribe-notification-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    background-color: #CE1413;
    padding: 10px 24px;
    border-radius: 22px;
    transition: .3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: auto;
    display: inline-block;
}

.subscribe-notification-btn:hover {
    background-color: #a60f0f;
}

.notification-popup .popup-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 760px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

/* Убираем скролл */
.notification-popup .popup-content {
    overflow: visible;
}

.notification-popup .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 10;
}

.notification-popup .close-popup:hover {
    transform: rotate(90deg);
}

.notification-popup .close-popup img {
    width: 20px;
    height: 20px;
}

.notification-popup .popup-content_title {
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.notification-popup .popup-content_description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.5;
    font-size: 14px;
    text-align: center;
}

/* Стили для input */
.notification-popup .application-inputs_wrapper {
    margin-bottom: 25px;
    position: relative;
}

.notification-popup .application-form_field {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
    font-family: inherit;
}

.notification-popup .application-form_field:focus {
    outline: none;
    border-color: #FF004F;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 0, 79, 0.1);
}

.notification-popup .application-form_field:hover {
    border-color: #FF004F;
}

/* Стили для лейбла input */
.notification-popup .application-input_name {
    position: absolute;
    left: 20px;
    top: -11px;
    background: white;
    padding: 0 8px;
    font-size: 12px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Стили для кнопки отправки */
.notification-popup .submit-button {
    width: 100%;
    padding: 16px 24px;
    background: #E40527;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.5px;
    font-family: inherit;
    margin-left: 0;
}

.notification-popup .submit-button:hover:not(.button-disabled) {
    background: #c00422;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(228, 5, 39, 0.3);
}

.notification-popup .submit-button:active:not(.button-disabled) {
    transform: translateY(0);
}

/* Стили для disabled кнопки */
.notification-popup .button-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Стили для кастомного чекбокса */
.notification-popup .data-processing-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 20px 0;
}

.notification-popup .data-processing-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    visibility: hidden;
}

.notification-popup .data-processing-checkbox label {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.notification-popup .data-processing-checkbox label:before {
    content: '\e904';
    font-family: 'icomoon';
    font-size: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0;
    color: #FF004F;
}

.notification-popup .data-processing-checkbox input[type="checkbox"]:checked + label:before {
    opacity: 1;
}

.notification-popup .data-processing-checkbox input[type="checkbox"]:checked + label {
    border-color: #FF004F;
    background-color: #fff;
}

/* Весь span кликабельный */
.notification-popup .data-processing-checkbox span {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    flex: 1;
    cursor: pointer;
    user-select: none;
}

.notification-popup .data-processing-checkbox span a {
    color: #FF004F;
    text-decoration: none;
    pointer-events: auto;
}

.notification-popup .data-processing-checkbox span a:hover {
    text-decoration: underline;
}

/* Сообщения об ошибках */
.notification-popup .message {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

.notification-popup .inputBlock__error {
    color: #ff4444;
    font-size: 11px;
    margin-top: 5px;
    display: block;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .notification-popup .popup-content {
        width: 92%;
        padding: 30px 25px;
        border-radius: 20px;
    }

    .notification-popup .popup-content_title {
        font-size: 22px;
    }

    .notification-popup .application-form_field {
        padding: 14px 18px;
        border-radius: 10px;
    }

    .notification-popup .submit-button {
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 15px;
    }

    .notification-popup .data-processing-checkbox span {
        font-size: 12px;
    }
}

/* Адаптация для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .notification-popup .popup-content {
        width: 520px;
    }
}

/* Для разрешения 821px x 520px - все ровно без прокрутки */
@media (min-width: 800px) and (max-width: 900px) and (min-height: 500px) and (max-height: 550px) {
    .notification-popup .popup-content {
        width: 480px;
        padding: 30px 35px;
    }

    .notification-popup .popup-content_title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .notification-popup .popup-content_description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .notification-popup .application-inputs_wrapper {
        margin-bottom: 18px;
    }

    .notification-popup .application-form_field {
        padding: 12px 18px;
        font-size: 14px;
    }

    .notification-popup .data-processing-checkbox {
        margin: 15px 0;
    }

    .notification-popup .data-processing-checkbox span {
        font-size: 12px;
    }

    .notification-popup .submit-button {
        padding: 12px 20px;
        font-size: 15px;
        margin-top: 5px;
    }

    .notification-popup .message {
        margin-top: 10px;
    }
}
/* End */
/* /local/components/pusk.ext/events.detail/templates/.default/style.css?17799610607463 */
