.calc-radio {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
}
.calc-block {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}
.calc-block__form {
    display: flex;
    flex-direction: column;
}
.calc-block__room {
	display: none;
    border-bottom: 1px solid #de0101;
    margin-bottom: 20px;
}
.calc-block__room[data-active="true"] {
    display: block;
}
.calc-block-result {
    display: flex;
    align-items: center;
}
.calc-block-result__num {
    margin: 7px;
    padding: 5px;
    font-weight: 500;
    color: #de0101;
}
.calc-form__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}
.calc-form__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}

.calc-form__hint {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.hint__custom {
    position: relative;
    cursor: pointer;
}
.hint-content__title {
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 10px;
	color: black;
}
.hint-content__text {
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
	color: black;
}
.hint-content__block, .form-result-custom__popup {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .5);
    -webkit-overflow-scrolling: touch;
	cursor: default;
}
.hint-content__element, .form-result-custom__element {
    border-radius: 10px;
    overflow: hidden;
    position: fixed;
    min-width: 250px;
    max-width: 460px;
    width: 100%;
    max-height: 100%;
    padding: 20px;
    background: white;
}
.hint-content__block[data-active="true"], .form-result-custom__popup[data-active="true"] {
    display: flex;
}
.popup-window-titlebar-close-icon {
	width: 40px;
    height: 40px;
}
.popup-window-close-icon:after {
    width: 16px;
    height: 16px;
}
.overflow-hidden {
	overflow: hidden;
}
.form-result__wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
    gap: 10px;
}
.radio-room {
    opacity: 0;
    appearance: none;
    height: 0;
    width: 0;
    margin: 0;
}
.radio-room__visible {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    padding: 3px 15px;
    border-radius: 3px;
    font-family: inherit;
    border: 1px solid #fe1414;
}
.radio-room__visible:hover {
    background-color: #fe1414;
    color: #fff;
}
.radio-room:checked + .radio-room__visible {
    background-color: #de0101;
    color: #fff;
}
.hint__huge {
    font-style: normal;
    border: 1px solid #de0101;
    border-radius: 50%;
    display: flex;
    font-size: 22px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: #de0101;
    color: white;
}
@media all and (max-width:660px) {
    .calc-form__title {
        font-size: 22px;
    }
    .calc-form__text, .hint-content__text {
        font-size: 16px;
    }
    .hint-content__title {
        font-size: 18px;
    }
    .form-result__wrapper {
		border-radius: 3px;
		margin-top: 15px; 
    }
}