.calc_gor-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.calc_gor-block {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    font-size: 16px;
}
.calc_gor-block h3 {
    font-weight: bold;
    margin-top: 0;
    font-size: 20px;
}
.calc_gor-number {
    font-weight: bold;
    color: #1abc9c;
}
.calc_gor-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}
.calc_gor-checkbox label {
    font-size: 18px;
    margin-left: 10px;
}
input[type="number"] {
    width: 75px;
    height: 25px;
    padding: 2px;
    border: 1px solid #1abc9c;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}
.calc_gor-button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.calc_gor-button:hover {
    background: #16a085;
}
.calc_gor-hidden {
    display: none;
}
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #1abc9c;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}
input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    color: #1abc9c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type="radio"] {
    border-radius: 50%;
}
input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #1abc9c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.calc_gor-date {
    font-style: italic;
    font-weight: bold;
    color: #1abc9c;
    margin-top: 6px;
}
.calc_gor-product-name {
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
.calc_gor-result-row {
    margin-bottom: 4px;
}
.calc_gor-info-row {
    margin-bottom: 4px;
}
input[type="range"] {
    accent-color: #1abc9c;
    height: 10px;
    width: 150px;
}
#result {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .calc_gor-container {
        flex-direction: column;
    }
}

.delivery_calc-block {
    background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
flex: 1;
min-width: 300px;
font-size: 16px;
}
.delivery_calc-block h3 {
    font-weight: bold;
    margin-top: 0;
    font-size: 20px;
    color: #333;
}
.delivery_calc-number {
    font-weight: bold;
    color: #1abc9c;
}
.delivery_calc-info-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.delivery_calc-vertical-label {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.delivery_calc-vertical-label input[type="radio"] {
    margin-right: 5px;
}
input[type="number"] {
    width: 75px;
    height: 25px;
    padding: 2px;
    border: 1px solid #1abc9c;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}
.delivery_calc-button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.delivery_calc-button:hover {
    background: #16a085;
}
.delivery_calc-hidden {
    display: none;
}
/* Стили для switch */
.delivery_calc-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}
.delivery_calc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.delivery_calc-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}
.delivery_calc-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .delivery_calc-slider {
    background-color: #1abc9c;
}
input:checked + .delivery_calc-slider:before {
    transform: translateX(26px);
}
/* Выделение дат */
.delivery_calc-date {
    font-weight: bold;
    color: #1abc9c;
}