@media (min-width: 460px) {

.mobile {
display:none!important;
}

}

@media (max-width: 460px) {

.descktop {
display:none!important;
}

}

.calc-radio {
    display: flex;
    gap: 50px;
}

.calc-radio > p {
    margin: 0;
}

.calc-dialog {
    transition: 0.5s ease;
    display: none!important;
    opacity: 0;
}

.calc-dialog_show {
    display: flex!important;
    opacity: 1;
}

.calc-form {
    padding: 60px 55px;
}

.calc-btn-confirm {
    display: flex;
    justify-content: center;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #ef8247;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.calc-form .error input {
    border: 1px solid red;
}

.popup .calc-form p.radio-type {
    margin: 25px 0;
}

.calc-btn-confirm .btn{
    width: 100%;
}
