html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #f7f9fa;
    color: #181819;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

a:link, a:visited {
    color: #1565c0;
    cursor: pointer;
}

a:link:hover,
a:visited:hover {
    color: #0091ea;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

a:link:active,
a:visited:active {
    color: #311b92;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

a[target="_blank"]:after {
    /*noinspection CssNoGenericFontName*/
    font-family: 'Material Symbols Outlined';
    content: "\e89e";
    opacity: 0.85;
    margin-left: 3px;
    font-size: 0.9em;
    letter-spacing: normal;
    text-transform: none;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-variation-settings: 'FILL' 0,
    'wght' 300,
    'GRAD' 200,
    'opsz' 48;
}

a[target="_blank"].--no-blank-ico:after {
    display: none;
}

p {
    margin: 0 0 16px;
}

b, strong {
    font-weight: 500;
}

code, kbd, pre, samp {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
}

i {
    font-weight: 400;
    font-style: italic;
}

dialog {
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    overflow-y: auto;
    overflow-x: hidden;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.35);
}

table, tr, td, th, thead, tbody, tfoot {
    padding: 0;
    margin: 0;
    border-spacing: 0;
    border-collapse: separate;
}

iframe {
    width: 100%;
    border: none;
}


.form.--slim {
    max-width: 300px;
}

.form.--normal {
    max-width: 540px;
}

.form.--fat {
    max-width: 620px;
}

.form__lb {
    display: inline-block;
    line-height: 22px;
    font-size: 16px;
}

.form__txt {
    font-size: 16px;
    height: 36px;
    line-height: 34px;
    padding: 0 14px;
    border: solid #9e9e9e 1px;
    border-radius: 6px;
    outline: transparent none;
    background: #fff;
    transition: outline-color 200ms,
    outline-width 200ms,
    border-bottom-color 200ms,
    border-top-color 200ms,
    border-left-color 200ms,
    border-right-color 200ms;
}

select.form__txt {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAD1BMVEX///8AAAAAAAAAAAAAAABRO2rwAAAABHRSTlMAd3+ApzL+VgAAADZJREFUeF5jGLlgFIi4gIEThgQjREIBmxaIBuxaFBiwABGwBuxaFBiwAhEnBuyA2YBhJINRAACIEAhPkYd1iwAAAABJRU5ErkJggg==');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    padding-right: 24px;
}

.form__txt:active,
.form__txt:focus {
    border-color: #1976d2;
    outline: solid rgba(37, 149, 190, 0.2) 5px;
}

.form__txt:focus:invalid {
    border-color: red;
}


.form__btn,
a.form__btn {
    color: rgba(255, 255, 255, 0.925);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: #3f51b5;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    min-width: 80px;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
    border: none;
    cursor: pointer;
    outline: transparent none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: outline-color 200ms,
    outline-width 200ms,
    background-color 200ms;
    text-decoration: none;
}

.form__btn:hover,
.form__btn:focus,
a.form__btn:hover,
a.form__btn:focus {
    color: rgba(255, 255, 255, 0.925);
    background: #283593;
    outline: solid rgba(0, 0, 0, 0.1) 5px;
}

.form__btn:active,
a.form__btn:active {
    color: rgba(255, 255, 255, 0.925);
    background: #304ffe;
    outline: solid rgba(37, 149, 190, 0.2) 7px;
}

.form__btn.--iconic {
    min-width: 50px;
    font-size: 0;
    padding: 0;
}

.form__btn.--iconic .mtico {
    margin-top: 7px;
}

.form__btn.--danger,
.form__btn.--error {
    color: rgba(255, 255, 255, 0.94);
    background: #f44336;
}

.form__btn.--danger:hover,
.form__btn.--danger:focus,
.form__btn.--error:hover,
.form__btn.--error:focus {
    background: #c62828;
}

.form__btn.--danger:active,
.form__btn.--error:active {
    background: #ff1744;
}

.form__btn.--warning {
    color: #000000;
    background: #ffb300;
}

.form__btn.--warning:hover,
.form__btn.--warning:focus {
    background: #ff8f00;
}

.form__btn.--warning:active {
    background: #ffab00;
}

.form__btn:disabled {
    background: #9e9e9e !important;
    color: #fff !important;
    outline: none !important;
    opacity: 0.85;
    cursor: auto !important;
}

.form__lb__checkbox {
    display: grid;
    grid-template-columns: 15px auto;
    gap: 15px;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.21em;
}


/*.form__lb__checkbox:hover,
.form__lb__checkbox:focus {
    text-decoration: underline;
}*/

.form__checkbox {

    /* Hide native checkbox input */
    -webkit-appearance: none;
    appearance: none;
    margin: 0;

    /* Unchecked style */
    font: inherit;
    color: black;
    width: 21px;
    height: 21px;
    border: solid #bdbdbd 2px;
    border-radius: 2px;
    background: #FEFEFEFF center no-repeat;
    background-size: 10px auto;
    cursor: pointer;
    outline: transparent none;
    transition: background-color 200ms,
    border-bottom-color 200ms,
    border-top-color 200ms,
    border-left-color 200ms,
    border-right-color 200ms,
    outline-color 160ms,
    outline-width 160ms;

}

.form__checkbox:checked {
    background: #f8f8ff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAJCAMAAAAxZj1mAAAAM1BMVEX///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADxgEwMAAAAEHRSTlMABa2o6lJL+K6qWCMuLfq3pd5NcQAAADhJREFUeF5FylcOACAMAtAu97z/aY22qXy9AODBUr9psztvQsCm/TWwDDfEJF0/N2HKMr/NrBubD0IHAS4boRlXAAAAAElFTkSuQmCC) center no-repeat;
    border: solid #9fa8da 2px;
}

.form__file {
    padding: 8px;
    border: solid #9e9e9e 1px;
    border-radius: 4px;
    background: #fafafa;
}

.form__checkbox:hover,
.form__checkbox:focus {
    outline: solid rgba(0, 0, 0, 0.08) 4px;
}

.form__group {
    margin-bottom: 14px;
}

.form__ctrl {
    margin-top: 22px;
}

.form__group:after,
.form__ctrl:after {
    content: "";
    display: table;
    clear: both;
}

.form__ctrl .form__btn.float-right {
    margin-left: 8px;
}

.form__ctrl .form__btn.float-left {
    margin-right: 8px;
}

.form__group .form__lb {
    display: block;
    margin-bottom: 4px;
}

.form__group .form__txt {
    display: block;
    width: 100%;
}

.form__fieldset {
    border: solid rgba(0, 0, 0, 0.1) 1px;
    border-radius: 6px;
    padding: 12px 16px;
}

.form__fieldset legend {
    padding: 0 8px;
    font-weight: 500;
}

.form__msg {
    background: #f5f5f5;
    border: solid #e0e0e0 1px;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0 0 5px;
}

.form__msg--error {
    border-color: #e53935;
    background: #e57373;
    color: rgba(255, 255, 255, 0.99);
}

.form__msg--success {
    border-color: #4caf50;
    background: #e8f5e9;
    color: rgba(0, 0, 0, 0.9);
}

.form__progress {
    height: 36px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

/* Container/Background */
.form__progress,
.form__progress[value]::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 6px;
}

/* Value webkit */
.form__progress[value]::-webkit-progress-value {
    background: #5c6bc0;
    border-radius: 6px;
}

/* Value firefox */
.form__progress[value]::-moz-progress-bar {
    background: #5c6bc0;
    border-radius: 6px;
}

.form__group .form__progress {
    width: 100%;
}


.grid {
    display: block;
    width: 100%;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
}

.col,
[class*='col-'] {
    display: block;
    float: left;
}

.col-row,
.col-1-1 {
    width: 100%;
}

.col-1-2 {
    width: 50%;
}

.col-1-2.col-1-2-gap:nth-child(odd) {
    padding-right: 4px;
}

.col-1-2.col-1-2-gap:nth-child(even) {
    padding-left: 4px;
}

.col-1-3 {
    width: 33.333%;
}

.col-2-3 {
    width: 66.667%;
}

.col-1-4 {
    width: 25%;
}

.col-2-4 {
    width: 50%;
}

.col-3-4 {
    width: 75%;
}

.col-1-5 {
    width: 20%;
}

.col-2-5 {
    width: 40%;
}

.col-3-5 {
    width: 60%;
}

.col-4-5 {
    width: 80%;
}

.col-1-6 {
    width: 16.667%;
}

.col-2-6 {
    width: 33.333%;
}

.col-3-6 {
    width: 50%;
}

.col-4-6 {
    width: 66.667%;
}

.col-5-6 {
    width: 83.333%;
}

.col-1-7 {
    width: 14.286%;
}

.col-2-7 {
    width: 28.571%;
}

.col-3-7 {
    width: 42.857%;
}

.col-4-7 {
    width: 57.143%;
}

.col-5-7 {
    width: 71.429%;
}

.col-6-7 {
    width: 85.714%;
}

.col-1-8 {
    width: 12.5%;
}

.col-2-8 {
    width: 25%;
}

.col-3-8 {
    width: 37.5%;
}

.col-4-8 {
    width: 50%;
}

.col-5-8 {
    width: 62.5%;
}

.col-6-8 {
    width: 75%;
}

.col-7-8 {
    width: 87.5%;
}

.col-1-9 {
    width: 11.111%;
}

.col-2-9 {
    width: 22.222%;
}

.col-3-9 {
    width: 33.333%;
}

.col-4-9 {
    width: 44.444%;
}

.col-5-9 {
    width: 55.556%;
}

.col-6-9 {
    width: 66.667%;
}

.col-7-9 {
    width: 77.778%;
}

.col-8-9 {
    width: 88.889%;
}

.col-1-10 {
    width: 10%;
}

.col-2-10 {
    width: 20%;
}

.col-3-10 {
    width: 30%;
}

.col-4-10 {
    width: 40%;
}

.col-5-10 {
    width: 50%;
}

.col-6-10 {
    width: 60%;
}

.col-7-10 {
    width: 70%;
}

.col-8-10 {
    width: 80%;
}

.col-9-10 {
    width: 90%;
}

.col-1-11 {
    width: 9.091%;
}

.col-2-11 {
    width: 18.182%;
}

.col-3-11 {
    width: 27.273%;
}

.col-4-11 {
    width: 36.364%;
}

.col-5-11 {
    width: 45.455%;
}

.col-6-11 {
    width: 54.545%;
}

.col-7-11 {
    width: 63.636%;
}

.col-8-11 {
    width: 72.727%;
}

.col-9-11 {
    width: 81.818%;
}

.col-10-11 {
    width: 90.909%;
}

.col-1-12 {
    width: 8.333%;
}

.col-2-12 {
    width: 16.667%;
}

.col-3-12 {
    width: 25%;
}

.col-4-12 {
    width: 33.333%;
}

.col-5-12 {
    width: 41.667%;
}

.col-6-12 {
    width: 50%;
}

.col-7-12 {
    width: 58.333%;
}

.col-8-12 {
    width: 66.667%;
}

.col-9-12 {
    width: 75%;
}

.col-10-12 {
    width: 83.333%;
}

.col-11-12 {
    width: 91.667%;
}


.hidden, .hide, [hidden="hidden"], [hidden=""] {
    display: none !important;
}

.shadow--1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow--2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow--3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow--4 {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow--5 {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.no-select {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.mtico {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    font-variation-settings: 'FILL' 0,
    'wght' 300,
    'GRAD' 200,
    'opsz' 48;
}

.help-icon-link .mtico {
    font-size: 16px !important;
    margin: 0 3px !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

[class^="spc-"] {
    display: block;
    background: transparent;
    width: 100%;
    font-size: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.spc-4 {
    height: 4px;
}

.spc-6 {
    height: 6px;
}

.spc-12 {
    height: 12px;
}

.spc-16 {
    height: 16px;
}

.spc-18 {
    height: 18px;
}

.spc-20 {
    height: 20px;
}

.spc-24 {
    height: 24px;
}

.spc-32 {
    height: 32px;
}


