#anket h1{
    margin-bottom: 5rem;
    margin-top: 5rem;
    font-weight: bold;
    min-height: 66px; /**/
}
.to-print, .to-print_head{
    display: none !important;
}
.to-print_head .text-center,.to-print_head .printFilters__header__text{
    color: #623B2A;
}
.qwestionsArea{
    padding: 50px 73px;
    border-radius: 15px;
    border: 1px solid #DBDBDB;
    margin-bottom: 5rem;
}
.qwestionsArea__anketaList{
    display: flex;
    justify-content: center;
}
.qwestionsArea__anketaList a{
    display: flex;
    justify-content: center;
    background: #FFF;
    border-radius: 7px;
    border: 1px solid #DBDBDB;
    transition: all 0.3s;
    color: #000000;
    font-size: 14px;
    padding: 10px;
    margin-right: 24px;
    cursor: pointer;
}
.checked-life a{
    color: #FFF !important;
    background: #e04e39 !important;
}
.qwestionItem{
    margin-bottom: 2.4rem;
}
.qwestionItem__title label{
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    color: unset;
}
.link_list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.link_list__item{
    padding: 25px 16px;
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 4px 8px 0px #0000001F;
    transition: all 0.3s;
    color: #000;
}
.link_list__item:hover{
    box-shadow: 0px 8px 16px 0px #0000001F;
    transition: all 0.3s;
}
.folder-service-icon {
    line-height: 0;
    height: 30px;
    width: 30px;
    font-size: 3rem;
}
.folder-service-icon:before{
    content: url(/services/selection/assets/folder-service-icon.svg);
}

.multiselect__tags, .custom-select{
    min-height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 7px;
    border: 1px solid #DBDBDB;
    background: #fff;
    font-size: 15px;
    color: #000;
}
.custom-select{
    padding: 0 40px 0 8px;
}
.multiselect__single{
    padding: 5px 40px 6px 8px;
}
.multiselect__tags > :not(.multiselect__single){
    padding: 17px 40px 6px 8px;
}
.multiselect__select{
    z-index: 10;
    height: 55px;
    cursor: pointer;
}

.multiselect__option--highlight {
    background-color: #ED5338;
}

.multiselect__option--highlight:after {
    background-color: #ED5338;
}

/**/

.multiselect__tag {
    background-color: #FFF;
    color: #000000;
    font-size: 15px;
}

.multiselect__tag-icon:hover {
    background-color: #ED5338;
}

.multiselect__single {
    margin-top: 3px;
    margin-bottom: 0;
}
.multiselect__option--highlight, .multiselect__option--highlight:after{
    background: #ED5338 !important;
    color: #fff;
}
.qwestionsArea__Print{
    display: flex;
    justify-content: flex-end;
}
.qwestionsArea__Print a{
    display: flex;
    flex-direction: row !important;
    background: #ED5338;
    color: #FFF;
    transition: all 0.5s;
    width: fit-content;
    cursor: pointer;
    border-radius: 7px;
    padding: 5px 20px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 210px;
    min-height: 52px;
    height: fit-content;
    line-height: 100%;
    text-decoration: none;
}
.qwestionsArea__Print i{
    width: 30px;
    height: 32px;
    font-size: 2.3rem;
    display: flex;
    align-items: center;
}
.qwestionsArea__Print a:hover{
    background: #fc6d5b;
    color: #FFF;
}

.loader {
    height: 50px;
    width: 50px;
    animation: around 5.4s infinite;
    margin: auto;
}
.loader::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 6px;
    border-color: #e04e39 #e04e39 transparent transparent;
    border-style: solid;
    border-radius: 50px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
}
.loader::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
}
@keyframes around {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}