.ui-checkbox-wrapper{
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.ui-checkbox-default {
    display: none;
}

/* НОВЫЙ ВАРИАНТ ЧЕКБОКСОВ */

.ui-checkbox-custom {
    position: relative;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4' width='16' height='16' rx='2' stroke='%236C6C70' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat center;
    margin-right: 7px;
}

.ui-checkbox-custom::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.ui-checkbox-default:checked + .ui-checkbox-custom::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 12L11 15L17 9' stroke='%236C6C70' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
}

/* ============================= */




/* ======= СТАРЫЙ ВАРИАНТ ЧЕКБОКСОВ ======== */

.checkbox-custom-nocheck{
    display: flex;
    margin-right: 10px;
}
.checkbox-custom-check{
    display: none;
    margin-right: 10px;
}

.ui-checkbox-default:checked + .checkbox-custom-nocheck {
    display: none;
}
.ui-checkbox-default:checked ~ .checkbox-custom-check {
    display: flex;
}

/* ================================================= */



.main__drop-down-filters__button:hover{
    background-color: #2B3063;
    color: white;
}

.ui-button-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ui-button{
    cursor: pointer;
    padding: 10px 24px;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border-radius: 6px;
    width: 100%;
}
.ui-button-blue{
    color: white;
    border: 0px;
    background-color: #2B3063;
    cursor: pointer;
}
.ui-button-blue:hover{

    background-color: #E6E7EC;
    color: #2B3063;
}

.ui-button-transparent {
    color: #2B3063;
    border: 1px solid #2B3063;
    background-color: transparent;
}

.ui-input{
    width: 100%;
    padding: 16px;
    color: #2B3063;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    border: 1px solid #E6E7EC;
    border-radius: 6px;
}
.ui-input:focus {
    outline: none;
    border-color: #2B3063;
}

.ui-input::placeholder{
    color: #6C6C70;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.ui-title-big-blue{
    color: #122D4E;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}

.ui-title-big-white{
    color: white;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}
.ui-title-small-blue{
    color: #122D4E;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}
.ui-title-small-white{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}
.ui-title-normal-blue{
    color: #122D4E;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    text-transform: uppercase;
}
.ui-title-normal-black{
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.ui-title-normal-white{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.main__content__document-block-pdf:hover{
    color: #122D4E;
}

@media(max-width:920px){
    .ui-title-big-blue{
        color: #122D4E;
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
    }

    .ui-title-big-white{
        color: white;
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
    }
    .ui-title-small-blue{
        color: #122D4E;
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
    }
    .ui-title-small-white{
        color: #FFF;
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
    }

}

@media (max-width: 576px) {
    .ui-checkbox-wrapper {
        align-items: flex-start;
    }
}

