/*
 * Copyright (C) Oleg Karakoz, Agile Apps. 2012-2025.
 * Project: mts
 * Last modified: 09/01/2019, 16:47
 */

.radio-big {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.radio-big label {
    width: 30px;
    height: 30px;
    border: solid 2px #c7c7c7;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    font-family: Assistant, sans-serif;
    font-size: 0.813em;
    font-weight: 600;
    text-align: center;
    color: #7ebafa;
    cursor: pointer;
    background: white;
}

.radio-big .checkbox label {
    width: 22px;
    height: 22px;
    border: solid 2px #7ebafa;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.radio-big input[type=radio]:checked + label,
.radio-big input[type=checkbox]:checked + label {
    background-color: #ffffff;
    border: solid 2px #7ebafa;
    color: #ffffff;
}

.radio-big input[type=checkbox]:checked + label {
    background-image: url(../img/v-icon-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.radio-big input[type=radio]:checked + label:before {
    content: ' ';
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #7ebafa;
    display: inline-block;
    margin-top: 3px;
}

.radio-big input[type=radio]:checked + label:hover:before {
    background-color: #3d91e8;
}

.radio-big input[type=radio]:disabled + label:before {
    background-color: lightgrey;
    border-color: lightgrey;
}

.radio-big-button {
    position: relative;
    display: inline-block;
}

.radio-big-label {
    display: inline-block;
    margin-top: 30px;
    position: absolute;
    top: 15px;
    right: -10px;
    left: 0;
    color: #aaa;
    font-weight: 300;
    font-size: 0.9em;
    width: 55px;
    line-height: 1em;
}

.radio-big input[type=radio],
.radio-big input[type=checkbox] {
    display: none;
}

.radio-big label {
    position: relative;
    margin-left: 5px;
}

.radio-big .param-line input[type=text],
.radio-big .param-line input[type=number] {
    width: 33px;
    height: 30px;
    border-radius: 6px;
    border: solid 2px #7ebafa;
    padding: 0px;
    font-weight: 600 !important;
    margin-top: 2px;
    vertical-align: middle;
}

.radio-big .param-line input,
.radio-big .param-line .result {
    font-family: Assistant, sans-serif;
    font-size: 1.375em;
    font-weight: normal;
    text-align: center;
    color: #7ebafa;
    vertical-align: middle;
}

@media handheld, only screen and (max-width: 600px) {
    .radio-big label {
        font-size: 20px;
        width: 2em;
        height: 2em;
    }

    .radio-big-label {
        width: 70px;
        font-size: 1em;
    }

    .radio-big input[type=radio]:checked + label:before {
        width: 1.3em;
        height: 1.3em;
        margin-top: 5px;
        background-color: #4f97f7;
    }
}