:root {
    --red: #D50000;
    --blue: #0C1A88;
    --second-blue: #0F2851;
    --light-blue: #4085C6;
    --back: #EDF2F4;
    --secondary: #3b4a6c;
    --dark: #31302E;
    --third: #FDFCE8;
    --gradient-logo: linear-gradient(to left, rgb(89, 206, 232, 100), rgb(8, 91, 151, 100))

}


.btn-red {
    background: var(--light-blue);
    color: white;
    width: content-box;
    padding: 7px 10px;
    border: none;

}

.btn-blue {
    background: var(--second-blue);
    color: white;
    width: content-box;
    padding: 7px 10px;
    border: none;
}

.fl-radius > a:first-child {
    border-radius: 10px 0 0 10px;
}

.fl-radius > a:last-child {
    border-radius: 0 10px 10px 0;
}

.fl-radius > a:not(:last-child):not(:first-child) {
    border-radius: 0;
}

.hidden {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top:-10000px;

}

.show_blocks {
    position: relative;
    visibility: visible;
    opacity: 1;
    top:0;
}


h1 {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-blue);
}

p {
    font-size: 14px;
}

ul li {

    font-size: 13px;
    font-weight: bolder;

}

ul{
    list-style: none;
    margin-left: .5rem;
}

.select_block_branch div {
    margin-top: 1rem;
}




