A:visited {
    color: dimgrey; /* Цвет посещенных ссылок */
}

A {
    color: grey;
}
.checkBox {
    vertical-align: middle;
}
span, div {
    font-family: 'Roboto';
}
.disable-dbl-tap-zoom {
    touch-action: manipulation;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* non-prefixed version, currently not supported by any browser */
}

input {
    outline: none;
    box-sizing: border-box;
}

.small {
    font-size: 18px;
    text-decoration: underline;
}

.large {
    font-size: 18px;
}

.grey {
    color: grey;
}

.right {
    float: right;
    margin-right: 10px;
}

.commonTable {
    width: 100%;
    border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-spacing: 0;
}

.commonTable>tbody > tr > td {
    height: 35px;
    padding-left: 15px;
    border-right: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;
}

.top {
    height: 50px;
    background-color: rgba(212, 236, 255, 0.21);
}

.content {
    background-color: #F6F9FF;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.clickable {
    cursor: pointer;
}

.myTable table tr {
    height: 24px;
}
.vzt-button {
    background-color: #1B6FF5;
    padding: 5px;
    color: white;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    margin: 1px;
}

table {
    padding: 0;
    border-collapse: separate;
}
.input {
    background-color: rgb(238,241,248);
    border: none;
}

.myTable table tr {
    height: 24px;
}
html {
    background: #f1f3f7;
}
body {
    margin: 0;
}

.blink {
    animation: blinker 1s linear infinite;
}

.mobileOnly {
    display: block;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.pink {
    color: #e08593;
}

.bold {
    font-weight: 500;
}
.floatRight {
    float: right;
}

.mobile .configDiv {
    height: 24vw;
}