.custom__calculator-review {
    max-width: 420px;
    margin: 0;
    font-family: inherit;
    border: 1px solid black;
    padding: 50px 30px;
    border-radius: 20px 0px 20px 0px;
    background-color: #051C2C;
}

.custom__calculator-main-information {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom__calculator-main-information p {
    color: white;
    font-size: 17px;
}

.custom__calculator-main-price {
    padding: 10px 20px;
    color: #ffffff;
    background-color: #D4AF37;
    font-weight: 600;
    border-radius: 20px;
}

.custom__calculator-review__total {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.custom__calculator-review__presets {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.custom__calculator-review__preset {
    flex: 1;
    padding: 10px;
    background: #F2F4FA !important;
    cursor: pointer;
    color: #000000;
    border-radius: 20px 0px 20px 0px;
    transition: 0.2s ease;
    font-size: 17px;
    font-weight: 600;
}
.custom__calculator-review__preset:hover {
    color: #000000 !important;
}

.custom__calculator-review__preset--active {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
}

.custom__calculator-review__range {
    width: 100%;
    margin-bottom: 30px;
}

.custom__calculator-review__summary {
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
    font-size: 17px;
}

.custom__calculator-review__order-container {
    display: flex;
    justify-content: center;
}

.custom__calculator-review__order {
    padding: 20px 40px;
    border-radius: 20px 0px 20px 0px;
    border: none;
    cursor: pointer;
    background: #D4AF37;
    font-size: 17px !important;
    font-weight: 600;
    color: #ffffff;
}

.custom__calculator-review__order:hover {
    background-color: #D4AF37B3 !important;
}

.custom__calculator-review__range {
    --progress: 0%;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    outline: none;
    background: linear-gradient(to right,
            #D4AF37 0%,
            #D4AF37 var(--progress),
            #e5e5e5 var(--progress),
            #e5e5e5 100%);
}

.custom__calculator-review__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 20px;
    background: #D4AF37;
    border-radius: 15px;
    cursor: pointer;
}

@media(max-width: 767px) {
	.custom__calculator-review {
		margin: 0px 15px;
		max-width: 420px;
		padding: 20px 20px;
	}
	.custom__calculator-main-information p {
		color: white;
		font-size: 15px;
	}
	.custom__calculator-main-price {
		padding: 10px 15px;
	}
}