<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", Arial, sans-serif;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 320px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    color: #333;
    max-height: 90vh; /* РћРіСЂР°РЅРёС‡РёРІР°РµРј РІС‹СЃРѕС‚Сѓ */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* РљРѕРЅС‚РµР№РЅРµСЂ РґР»СЏ РєРѕРЅС‚РµРЅС‚Р° РІРЅСѓС‚СЂРё РјРѕРґР°Р»РєРё */
.modal-body {
    flex-grow: 1;
    overflow-y: auto; /* Р”РѕР±Р°РІР»СЏРµРј РїСЂРѕРєСЂСѓС‚РєСѓ, РµСЃР»Рё РЅРµ РїРѕРјРµС‰Р°РµС‚СЃСЏ */
    max-height: calc(75vh - 100px); /* РќРµРјРЅРѕРіРѕ СѓРјРµРЅСЊС€РёР»Рё СЃ 80vh РґРѕ 75vh */
    padding-bottom: 10px; /* Р”РѕР±Р°РІР»СЏРµРј РѕС‚СЃС‚СѓРї СЃРЅРёР·Сѓ */
}

/* РђРґР°РїС‚РёРІРЅРѕРµ СЃР¶Р°С‚РёРµ РјРѕРґР°Р»РєРё РїСЂРё РјР°Р»С‹С… СЌРєСЂР°РЅР°С… */
@media (max-height: 700px) {
    .modal-content {
        width: 280px;
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-height: 600px) {
    .modal-content {
        width: 260px;
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-height: 500px) {
    .modal-content {
        width: 240px;
        padding: 8px;
        font-size: 12px;
    }
}

/* РљРѕРЅС‚РµР№РЅРµСЂ СЃ С„РѕСЂРјРѕР№ Рё РєРЅРѕРїРєРѕР№ "РћС„РѕСЂРјРёС‚СЊ" */
.modal-body {
    flex-grow: 1;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

h2 {
    font-size: 20px;
    color: #111;
    text-align: center;
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.checkbox-container input {
    width: auto;
}

.modal-button {
    width: 100%;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #00aaff;
    color: white;
    border: none;
    margin-bottom: 5px; /* Р”РѕР±Р°РІР»РµРЅ РѕС‚СЃС‚СѓРї СЃРЅРёР·Сѓ РґР»СЏ РєРЅРѕРїРєРё */
    position: relative; /* РћР±РµСЃРїРµС‡РёРІР°РµС‚ РІРёРґРёРјРѕСЃС‚СЊ РєРЅРѕРїРєРё */
}

.modal-button:hover {
    background: #0077cc;
}

/* РљР°С‚РµРіРѕСЂРёРё СѓСЃР»СѓРі */
.service-category {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 8px;
    color: #00aaff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-category.active {
    color: #0077cc;
}

/* РЎС‚РёР»Рё РґР»СЏ РєРЅРѕРїРѕРє РІС‹Р±РѕСЂР° СѓСЃР»СѓРіРё */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.service-option {
    flex: 1 1 calc(50% - 8px);
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.service-option.active {
    border-color: #00aaff;
    background: #00aaff;
    color: white;
}

/* РЎС‚РёР»Рё РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… СѓСЃС‚СЂРѕР№СЃС‚РІ */
@media (max-width: 480px) {
    .service-option {
        flex: 1 1 100%;
    }
}
.service-options-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.service-options-container.open {
    max-height: 300px; /* Р”РѕСЃС‚Р°С‚РѕС‡РЅРѕ РјРµСЃС‚Р° РґР»СЏ РєРЅРѕРїРѕРє */
    overflow: visible; /* Р”Р°РµРј РґРѕСЃС‚СѓРї Рє РєРЅРѕРїРєР°Рј */
}

/* РЎРµРїР°СЂР°С‚РѕСЂ РјРµР¶РґСѓ Р±Р»РѕРєР°РјРё */
.separator-line {
    width: 100%;
    height: 2px;
    background-color: #ddd;
    margin: 12px 0;
}

/* Р‘Р»РѕРє СЃ РїРѕРґР°СЂРѕС‡РЅС‹РјРё РґР°РЅРЅС‹РјРё */
.gift-details {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
}

/* РЎРїРµС†РёР°Р»СЊРЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ iOS СѓСЃС‚СЂРѕР№СЃС‚РІ (iPhone) */
@supports (-webkit-touch-callout: none) {
    /* iOS-specific styles */
    .modal-content {
        -webkit-overflow-scrolling: touch; /* РџР»Р°РІРЅР°СЏ РїСЂРѕРєСЂСѓС‚РєР° РЅР° iOS */
        padding-bottom: 25px; /* РЈРІРµР»РёС‡РёРІР°РµРј РѕС‚СЃС‚СѓРї РІРЅРёР·Сѓ РґР»СЏ iOS */
        transform: scale(0.85); /* СѓРјРµРЅСЊС€Р°РµРј С‡СѓС‚СЊ-С‡СѓС‚СЊ */
        transform-origin: top center;
    }
    
    .modal-body {
        -webkit-overflow-scrolling: touch; /* РџР»Р°РІРЅР°СЏ РїСЂРѕРєСЂСѓС‚РєР° РЅР° iOS */
        max-height: calc(80vh - 80px); /* РњРµРЅСЊС€Р°СЏ РІС‹СЃРѕС‚Р° РґР»СЏ iOS */
    }
    
    .service-options-container.open {
        max-height: 250px; /* РЈРјРµРЅСЊС€Р°РµРј РґР»СЏ iOS */
    }
}

/* Р”РѕРїРѕР»РЅРёС‚РµР»СЊРЅР°СЏ РјРµРґРёР°-Р·Р°РїРёСЃСЊ СЃРїРµС†РёР°Р»СЊРЅРѕ РґР»СЏ iPhone */
@media screen and (max-width: 428px) and (max-height: 926px) {
    .modal-content {
        width: 90%; /* РЈРјРµРЅСЊС€Р°РµРј С€РёСЂРёРЅСѓ РґР»СЏ Р»СѓС‡С€РµРіРѕ РѕС‚РѕР±СЂР°Р¶РµРЅРёСЏ */
        padding: 15px 15px 25px 15px; /* РЈРІРµР»РёС‡РёРІР°РµРј РѕС‚СЃС‚СѓРї СЃРЅРёР·Сѓ */
    }
    
    .modal-button {
        padding: 10px 20px;
        margin-top: 5px; /* Р”РѕР±Р°РІР»СЏРµРј РѕС‚СЃС‚СѓРї СЃРІРµСЂС…Сѓ */
    }
}</pre></body></html>