.f--finishing-work label {
    display: block;
    cursor: pointer;
    margin-bottom: 20px;
}

.calc>p{
    font-size: 18px;
    font-weight: 600;
}

.f--finishing-work label:hover {
    color: #df0004;
}

.f--finishing-work input[type="radio"]{
    margin-right: 20px;
}

.calc .btn{
    text-transform: uppercase;
}

.btn--submit {
    line-height: 40px;
    padding: 0 100px;
    background: none;
    color: #df0004;
    width: 305px;
    font-weight: bold;
    font-style: italic;
}

.btn--submit:hover {
    color: #fff;
    background: #df0004;
}
.calc .btn_round{
    line-height: 22px;
    font-size: 18px;

}
.attention {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0 10px;
}

.calc table{
    /*width: 600px;*/
    width: 100%;
    border:1px solid #ada8a8;
    border-radius: 5px;
    border-collapse: separate ;
    line-height: 20px;
}

.calc td{
    padding-bottom: 5px;
}

.calc td:first-of-type{
    padding-left: 45px;
}

.calc tr:first-of-type td{
    padding-top: 15px;
}

.calc tr:last-of-type td{
    padding-bottom: 15px;
}

.calc td:last-of-type{
    width: 15%;
}

.cat_menu{
    font-weight: 600;
    font-size: 16px;
}
.calc .square__label{
    margin: 15px 0px;
    font-size: 16px;
}
.calc h4{
    margin: 0;
    margin-bottom: 20px;
    /*font-style: italic;*/
    /*color: #df0004;*/
    line-height: 1.2;
    font-size: 24px;
}
.calc h3{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    display: block;
    font-weight: bold;
}
.square__field {
    line-height: 46px;
    border-radius: 5px;
    border: 1px solid #ada8a8;
    padding: 5px 10px;
}

.calctable{
    font-size: 16px;
}
.nodisplay{
    display: none;
}
#status_SubscribeValidation .errortext{
    display: none;
}

body .page-container .container_16 .grid_12{
  width: 100%;
}

.calc .btn_round.btn_color.btn_square{
  margin-left: 167px;
  width: 210px;
}



.custom-radio>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-radio>span {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-size: 15px;
}

.custom-radio>span::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #bdadad;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-radio>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #ffb3b3;
}

.custom-radio>input:not(:disabled):active+span::before {
    background-color: #ffb3b3;
    border-color: #ffb3b3;
}

.custom-radio>input:hover+span::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 21, 0.25);
}

/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.custom-radio>input:focus:not(:checked)+span::before {
    border-color: #ff8080;
}

/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio>input:checked+span::before {
    border-color: #DC2F2F;
    background-color: #DC2F2F;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* стили для радиокнопки, находящейся в состоянии disabled */
.custom-radio>input:disabled+span::before {
    background-color: #e9ecef;
}