/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 29 2026 | 07:43:12 */
/* .pf-calc-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: system-ui, 'Segoe UI', 'Roboto', sans-serif;
} */
/* .pf-calc-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px;
    background: #f8fafc;
} */
/* .pf-calc-left {
    flex: 1.4;
    background: white;
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pf-calc-right {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
/*     border-top: 5px solid #1e3a5f; */
 /*   display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
} */
.pf-calc-form-group {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.pf-calc-form-group label {
/*     min-width: 0; */
    width: 180px;
    font-weight: 400;
    color: #003976;
	font-size: 14px;
	 
}
.pf-calc-form-group input,
.pf-calc-form-group select {
    flex: 1;
    min-width: 160px;
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    font-size: 14px;
    background: #fff;
    color: #007fb0;
    transition: 0.2s;
}

/* Подсветка при перемещении стрелками или наведении мыши */
.pf-input-wrapper select option:checked,
.pf-input-wrapper select option:focus {
    background-color: #007fb0 !important;
    color: #fff;
}



.pf-calc-form-group input:focus,
.pf-calc-form-group select:focus {
    border-color: #007fb0;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30,58,95,0.2);
}
.pf-calc-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 24px 0 16px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #cfdee9;
    color: #0f3b5f;
}
.pf-calc-section-title:first-of-type {
    margin-top: 0;
}
.pf-calc-result-card {
    background: #f0f6fe;
    border-radius: 20px;
    padding: 32px 20px;
}
.pf-calc-total-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00acee;
    margin-bottom: 16px;
}
.pf-calc-result-line {
    font-size: 1rem;
    color: #2c3e50;
}
.pf-calc-button {
    background: #00acee;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
    margin-top: 16px;
}
.pf-calc-button:hover {
    background: #007fb0 ;
    transform: scale(1.01);
}
.pf-calc-hint {
    font-size: 0.8rem;
    color: #5e6f8d;
    margin-top: 24px;
    text-align: center;
}
.pf-calc-guarantee {
    font-size: 1.3rem;
/*     color: #2c3e50; */
    margin: 8px 0;
    text-align: left;
    font-weight: 500;
}

.pf-calc-hint-top {
/*     background: #eef2fa; */
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1e3a5f;
}

.pf-calc-hint-block {
    font-size: 1.1rem;
/*     color: #5e6f8d; */
    margin-top: 12px;
    margin-bottom: 16px;
    padding-left: 232px; /* отступ под ширину label */
}
/*подсказка для цены*/
.pf-calc-price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pf-calc-total-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #007fb5;
    margin: 0;
}

.pf-tooltip-icon-price {
    background-color: #007FB5;
    width: 22px;
    height: 22px;
    font-size: 14px;
}

.pf-tooltip-icon-price:hover {
    background-color: #005f8a;
}

/* Скрываем подсказку по умолчанию */
#pf-price-tooltip {
    display: none;
}
 
@media (max-width: 800px) {
	 .pf-calc-hint-block {
        margin-left: 0;
        margin-top: 4px;
        padding-left: 0;
    }
    .pf-calc-form-group label {
        width: 100%;
    }
    .pf-calc-two-columns {
        flex-direction: column;
    }
}


.pf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.pf-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    position: relative;
}
.pf-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.pf-modal-close:hover {
    color: #000;
}

/*для подсказок*/
/* ========== ПОДСКАЗКИ (TOOLTIP) ========== */
.pf-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.pf-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.pf-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #007FB5;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pf-tooltip-icon:hover {
    background-color: #005f8a;
}

/* Текст подсказки (скрыт по умолчанию) */
.pf-tooltip .pf-tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: #007FB5;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 12px 16px;
    position: absolute;
    z-index: 1000;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: 280px;
    font-size: 1.0 rem;
    font-weight: normal;
    line-height: 1.5;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Стрелка подсказки (снизу) */
.pf-tooltip .pf-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #007FB5 transparent transparent transparent;
}

/* Класс для отображения подсказки (добавляется JavaScript) */
.pf-tooltip .pf-tooltip-text.show {
    visibility: visible;
    opacity: 1;
}

/* Адаптация для мобильных устройств */
@media (max-width: 800px) {
    .pf-tooltip .pf-tooltip-text {
        width: 240px;
        font-size: 0.8rem;
        padding: 10px 14px;
    }
	
	.pf-tooltip .pf-tooltip-text {
        left: auto;
        right: 0;
        transform: translateX(0);
        width: calc(100vw - 40px);
        max-width: 280px;
    }
    
    /* Стрелка подсказки тоже смещаем */
    .pf-tooltip .pf-tooltip-text::after {
        left: auto;
        right: 20px;
        transform: translateX(0);
    }
}