<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* РўРђР‘Р›РР¦Рђ (РћРЎРќРћР’РќР«Р• РЎРўРР›Р) */
.styled-pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    padding: 10px;
    /* РЎРєСЂС‹РІР°РµРј scrollbar РґР»СЏ Р±СЂР°СѓР·РµСЂРѕРІ РЅР° WebKit (Chrome, Safari) */
    scrollbar-width: none; /* Р”Р»СЏ Firefox */
}

/* РЎРєСЂС‹РІР°РµРј scrollbar РґР»СЏ Р±СЂР°СѓР·РµСЂРѕРІ РЅР° WebKit (Chrome, Safari) */
.styled-pricing-table-wrapper::-webkit-scrollbar {
    display: none;
}

.styled-pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.styled-pricing-table thead {
    background: #004F90;
    color: #ffffff;
    font-weight: bold;
}

/* Р¤РёРєСЃРёСЂСѓРµРј С€РёСЂРёРЅСѓ РєРѕР»РѕРЅРєРё "Р‘РµСЃРїР»Р°С‚РЅР°СЏ РїРѕРіСЂСѓР·РєР°" */
.styled-pricing-table th:nth-child(3),
.styled-pricing-table td:nth-child(3) {
    width: 90px; /* РЁРёСЂРѕРєР°СЏ РЅР° РџРљ */
    min-width: 90px;
    white-space: nowrap;
}

/* РћСЃС‚Р°Р»СЊРЅС‹Рµ СЃС‚РёР»Рё (Р±РµР· РёР·РјРµРЅРµРЅРёР№) */
.styled-pricing-table th,
.styled-pricing-table td {
    padding: 12px 10px;
    border: 1px solid #e6e6e6;
}

.styled-pricing-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.styled-pricing-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

.styled-pricing-table td {
    vertical-align: middle;
}

/* РђР”РђРџРўРР’ Р”Р›РЇ РњРћР‘РР›Р¬РќР«РҐ */
@media screen and (max-width: 768px) {
    .styled-pricing-table {
        font-size: 12px;
        min-width: 600px;
    }

    /* РЈР¶Рµ РєРѕР»РѕРЅРєР° + СѓРјРµРЅСЊС€Р°РµРј С€СЂРёС„С‚, РµСЃР»Рё РЅСѓР¶РЅРѕ */
    .styled-pricing-table th:nth-child(3),
    .styled-pricing-table td:nth-child(3) {
        width: 60px; /* РЈР¶Рµ РЅР° РјРѕР±РёР»СЊРЅС‹С… */
        min-width: 60px;
        font-size: 11px; /* РћРїС†РёРѕРЅР°Р»СЊРЅРѕ, РµСЃР»Рё С‚РµРєСЃС‚ РЅРµ РІР»РµР·Р°РµС‚ */
    }

    .styled-pricing-table th, 
    .styled-pricing-table td {
        padding: 8px;
    }

    .styled-pricing-table-wrapper {
        padding: 5px;
        /* РџРѕРєР°Р·С‹РІР°РµРј scrollbar РЅР° РјРѕР±РёР»СЊРЅС‹С… */
        scrollbar-width: auto; /* Р”Р»СЏ Firefox */
    }
    .styled-pricing-table-wrapper::-webkit-scrollbar {
        display: block; /* Р”Р»СЏ WebKit Р±СЂР°СѓР·РµСЂРѕРІ */
    }
}</pre></body></html>