body {
    font-family: 'Wix Madefor Display', sans-serif;
    padding: 20px;
    margin: 0;
    background-color: #232323;
}

.container {
    display: flex;
    flex-direction: column;
    width: 320px;
    gap: 22px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container {
        gap: 35px;
        width: 1200px;
    }
}

.main-logic {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 40px;
}

@media (min-width: 1200px) {
    .main-logic {
        gap: 59px;
        flex-direction: row;
    }
}

.sliders {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1200px) {
    .sliders {
        flex: 1;
    }

    .summary {
        flex: 1;
    }
}

.slider-section label {
    display: block;
    margin-bottom: 20px;

    font-weight: 500;
    font-size: 16px;
    color: #8d8d8d;
}

@media (min-width: 1200px) {
    .slider-section label {
        font-size: 20px;
    }
}

.slider-container {
    display: flex;
    gap: 20px;
}

@media (min-width: 1200px) {
    .slider-container {
        gap: 36px;
    }
}

.slider {
    width: 100%;
}

input[type='range'] {
    width: 100%;
    height: 8px;
    margin: 0;
    background-color: #1e1e1e;
    border-radius: 32px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Точка (ползунок) */
input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: #2dd406;
    border-radius: 50%;
    cursor: pointer;
}

input[type='range']::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: #2dd406;
    border-radius: 50%;
    cursor: pointer;
}

.slider-container .slider .markers {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

.markers span {
    font-weight: 500;
    font-size: 16px;
    color: #dfe1df;
}

@media (min-width: 1200px) {
    .markers span {
        font-size: 20px;
    }
}

.value {
    text-align: center;

    min-width: 108px;
    padding: 6px;
    background-color: #1e1e1e;
    border: 1px solid #363636;
    border-radius: 8px;

    font-weight: 500;
    font-size: 16px;
    color: #dfe1df;
}

@media (min-width: 1200px) {
    .value {
        padding: 6px;
        min-width: 162px;
        font-size: 20px;
    }
}

.summary {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
    border: 1px solid #444444;
    border-radius: 20px;
    padding: 10px;
    background-color: #ffffff0d;
}

.summary-item {
    display: flex;
    padding: 3px;

    justify-content: space-between;
}

@media (min-width: 1200px) {
    .summary-item {
        padding: 12px;
    }
}

.summary-item span {
    font-weight: 500;
    font-size: 16px;
    color: #dfe1df;
}

.summary-item span:first-child {
    max-width: 150px;
}

@media (min-width: 1200px) {
    .summary-item span:first-child {
        max-width: unset;
    }
}

.summary-item span:nth-child(2) {
    font-family: 'Unbounded';
    font-size: 20px;
    white-space: nowrap;
}

.summary-item:nth-child(3) span:last-child,
.summary-item:nth-child(4) span:last-child {
    color: #2dd406;
}

@media (min-width: 1200px) {
    .summary-item span {
        font-size: 20px;
    }
}

button[type='button'] {
    margin-top: ;
    align-self: flex-end;
    min-width: 320px;
    cursor: pointer;

    background-color: #2dd406;
    padding: 10px;
    border: none;
    border-radius: 100px;

    font-weight: 500;
    font-size: 16px;
    color: #232323;
}

@media (min-width: 1200px) {
    button[type='submit'] {
        align-self: flex-end;
        min-width: 344px;

        font-size: 20px;
    }
}
