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

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

.radio label {
    width: 22px;
    height: 22px;
    border: solid 2px #7ebafa;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.813em;
    font-weight: 600;
    text-align: center;
    color: #7ebafa;
    cursor: pointer;
}

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

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

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

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

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

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

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