.questionnaire-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
}
.questionnaire-title{
    font-size: 16px;
    font-weight: 600;
    color: #005AAA;
}
.blanks-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}
.blank-online-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    width: 28%;
    padding: 6px 12px;
    background-color: #005AAA;
    color: #ffffff;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #ffffff;
    transition: 300ms ease;
}
.blank-online-btn:hover{
    color: #005AAA;
    background-color: #ffffff;
    border: 1px solid #005AAA;
}
.blank-separator{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #005AAA;
    user-select: none;
}
.blank-offline-btns{
    display: flex;
    justify-content: space-between;
    width: 55%;
}
.blank-offline-download a{
    color: #ffffff !important;
    text-transform: none;
}
.blank-offline-push,
.blank-offline-download{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    width: 49.7%;
    padding: 6px 12px;
    background-color: #005AAA;
    color: #ffffff;
    text-transform: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #ffffff;
    transition: 300ms ease;
    margin: 0;
}

.blank-offline-push:hover,
.blank-offline-download:hover{
    color: #005AAA;
    background-color: #ffffff;
    border: 1px solid #005AAA;
}
.blank-offline-download{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.blank-offline-push{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.label-active{
    background: green !important;
    pointer-events: none;
}
#blank-file{
    display: none;
}
@media screen and (max-width: 1200px) {
    .blanks-container{
        flex-direction: column;
        margin-top: 20px;
    }
    .blank-online-btn{
        width: 71%;
        height: 50px;
    }
    .blank-separator{
        margin: 10px 0;
    }
    .blank-offline-btns{
        width: 71%;
    }
    .blank-offline-push,
    .blank-offline-download{
        height: 56px;
    }
}
@media screen and (max-width: 540px) {
    .blank-online-btn{
        width: 100%;
    }
    .blank-offline-btns{
        width: 100%;
    }
}
@media screen and (max-width: 414px) {
    .blank-online-btn{
        height: 78px;
    }
    .blank-offline-push,
    .blank-offline-download{
        height: 78px;
    }
}



.support-form{}
.support-form__container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    padding: 16px;
    background: #005AAA;
    border-radius: 10px;
    font-style: normal;
}

.support-form__col-1{
    display: flex;
    flex: 1 1 auto;
    max-width: 613px;
}
.question__container{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex: 1 1 auto;
    color: #ffffff;
}
.question__mail{
    background: url("./img/open-email.png") center no-repeat;
    width: 46px;
    height: 46px;
    margin-right: 18px;
    background-size: contain;
    border-radius: 8px;
    overflow: hidden;
}
.question__body{
    max-width: 490px;
}
.question__text{
    font-weight: 600;
    font-size: 16px;
}

.support-form__col-2{
    display: flex;
    align-items: center;
}
.support-form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    min-width: 150px;
    background: #ffffff;
    border-radius: 8px;
    color: #005AAA;
    font-size: 16px;
    user-select: none;
    cursor: pointer;
    border: 1px solid #005AAA;
    transition: 300ms ease;
}
/*.support-form-btn:hover{*/
/*    color: #ffffff;*/
/*    background-color: #005AAA;*/
/*    border: 1px solid #ffffff;*/
/*}*/

@media screen and (max-width: 1199px){
    .support-form__col-1 {
        max-width: 480px;
    }
    .question__body{
        max-width: 365px;
    }
}
@media screen and (max-width: 767px) {
    .support-form__container{
        flex-direction: column;
        padding: 24px;
        margin-top: 20px;
    }
    .support-form__col-1 {
        max-width: 100%;
    }
    .question__container{
        justify-content: center;
        margin-bottom: 20px;
    }
    .question__body{
        max-width: 100%;
        text-align: center;
    }
    .support-form__col-2 {
        align-items: center;
        justify-content: center
    }
    .support-form-btn{
        height: 38px;
    }
}
@media screen and (max-width: 414px) {
    .question__mail{
        display: none;
    }
}



.form-support-modal-overlay{
    opacity: 0;
    visibility: hidden;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 80;
    transition: 0.4s ease;
}

.form-support-modal{}
.form-support-modal__container {
    opacity: 0;
    visibility: hidden;

    display: flex;
    flex-direction: column;
    padding: 40px 56px;
    width: 1028px;
    max-width: 1028px;
    font-style: normal;
    color: #232323;
    transform: translate(-50%, -60%);
    background-color: #FFFFFF;
    transition: 0.4s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
    overflow-y: scroll;
    height: 70vh;
}
#blank-form{
    margin-top: 10px;
    height: 80vh;
}
.form-support-modal-icon-close{
    position: absolute;
    display: flex;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    top: 30px;
    right: 30px;
    user-select: none;
    cursor: pointer;
    background: url("./img/x-close.svg") center no-repeat;
}
.form-support-modal__title{
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 32px;
}
.form-support-modal__steps{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 6px;
    color: #005AAA;
    border: 1px solid #005AAA;
    border-radius: 6px;
}
.form-support-modal__step{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 25%;
    border-right: 1px solid #005AAA;
    padding: 4px 10px;
    transition: 200ms ease;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    user-select: none;
}
.form-support-modal__step .step-number{
    font-size: 15px;
    margin-right: 20px;
}
.form-support-modal__step:last-child{
    border-right: none;
}
.form-support-modal__step.active{
    background-color: #005AAA;
    color: #ffffff;
}
.form-support-modal__tabs{
    position: relative;
    width: 100%;
}
.form-support-modal__tab{
    width: 100%;
    display: none;
}
.form-support-modal__tab.active{
    display: block;
}

.tab__sub-title-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #000000;
    border: 1px solid #9cc2e5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
.tab__sub-title{
    padding: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #deeaf6;
}
.tab__label-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.tab__label-wrapper input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
}
.tab__label-switcher{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 2px;
    margin-bottom: 0;
    width: 20%;
    border-top: 1px solid #9cc2e5;
    border-right: 1px solid #9cc2e5;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}
.tab__label-switcher.active{
    background-color: #deeaf6;
}
.tab__label-switcher input[type="radio"]:checked,
.tab__label-switcher input[type="radio"]:not(:checked){
    display: none;
}
.tab__label-switcher:last-child{
    border-right: none;
}

.tab__animal-container{
    margin-top: 16px;
    display: none;
}
.tab__animal-container.active{
    display: block !important;
}
.tab__input-line{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.tab__input-cell{
    width: 49%;
}
.tab__input-cell input{
    width: 100%;
    padding: 4px 16px;
    font-size: 18px;
}

.additional-tab-container{
    display: flex;
    justify-content: space-between;
}
.additional-tab{
  width: 49%;
}
.additional-tab-container .tab__input-cell{
    width: 100%;
}

.select-list {
    position: relative;
    width: 100%;
    height: 38px;
}
.select-list[data-state="active"] .select-list__title::before {
    transform: translate(-3px, -50%) rotate(-45deg);
}
.select-list[data-state="active"] .select-list__title::after {
    transform: translate(3px, -50%) rotate(45deg);
}
.select-list[data-state="active"] .select-list__content {
    opacity: 1;
}
.select-list[data-state="active"] .select-list__label + .select-list__input + .select-list__label {
    max-height: 38px;
    border-top-width: 1px;
}
.select-list__title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 16px;
    border-radius: 8px;
    border: solid 1px #c7ccd1;
    cursor: pointer;
    color: #959595;
}
.select-list__title.active{
    color: #000000;
}
.select-list__title::before, .select-list__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    display: block;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-out;
    background-color: #333333;
    transform: translate(-3px, -50%) rotate(45deg);
}
.select-list__title::after {
    transform: translate(3px, -50%) rotate(-45deg);
}
.select-list__title:hover {
    border-color: #005AAA;
}
.select-list__title:hover::before, .select-list__title:hover::after {
    background-color: #005AAA;
}
.select-list__content {
    position: absolute;
    top: 38px;
    left: 3px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 6px);
    background-color: #ffffff;
    border: 1px solid #c7ccd1;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: 8;
}
.select-list__input {
    display: none;
}
.select-list__input:checked + label {
    background-color: #dedede;
}
.select-list__input:disabled + label {
    opacity: 0.6;
    pointer-events: none;
}
.select-list__hidden{
    margin-top: 8px;
    width: 100%;
    display: none;
}
.select-list__hidden.active{
    display: block;
}
.select-list__hidden input:not(:first-child){
    margin-top: 8px;
}
.select-list__label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 38px;
    max-height: 0;
    padding: 0 16px;
    margin: 0;
    transition: all 0.2s ease-out;
    cursor: pointer;
    overflow: hidden;
}
.select-list__label + input + .select-list__label {
    border-top: 0 solid #C7CCD160;
}
.select-list__label:hover {
    background-color: #005AAA !important;
    color: #ffffff;
}

.form-body__container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-body__col-1{
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 50%;
    /*width: 400px;*/
}
.field-title{
    color: #005AAA;
    margin-top: 4px;
    font-weight: 600;
    font-size: 16px;
    padding-left: 2px;
}
.form-desc{
    resize: none;
    /*flex-grow: 1;*/
    height: 100%;
    outline: none;
}
.form-body__col-2{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin-right: 34px;
    width: 50%;
}
.form-input{
    font-size: 16px;
    padding: 6px 12px;
    border: 1px solid #c7ccd1;
    border-radius: 8px;
    transition: 0.3s ease;
}
.form-input:focus{
    border: 1px solid #005AAA;
}
.form-submit-container{
    display: flex;
    justify-content: center;
}
.form-submit-btn{
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin: 25px 0;
    padding: 11px 0;
    text-align: center;
    width: 152px;
    background: #005AAA;
    transition: 300ms ease;
}
.form-body__link{
    color: #555555;
    font-size: 16px;
}
.form-body__link a{
    text-decoration: underline;
    color: #555555 !important;
}
.error-field{
    opacity: 0;
    font-size: 12px;
    padding-left: 3px;
    color: #d72a2a;
    transition: 0.2s ease;
}
.error-field-active{
    opacity: 1;
}
.error-input-active{
    border: 1px solid #d72a2a !important;
}
.form-submit-active{
    width: 280px !important;
    background: green !important;
    pointer-events: none;
}
#attach-files,
#blank-attach-files{
    display: none;
}
.attached-label{
    display: flex;
    align-items: center;
    color: #005AAA;
    font-size: 14px;
    cursor: pointer;
    margin: 14px 0 0 0;
}
.attached-label img{
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-right: 10px;
}

.form-mob-overlay-active{
    opacity: 1;
    visibility: visible;
}
.form-mob-modal-active{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
#error-offline-blank{
    text-align: end;
}
.error-upload{
    font-size: 12px;
    color: #d72a2a;
}


.table-blank-container{
    margin-top: 40px;
}
.table-blank th,
.table-blank td,
.table-blank label,
.table-blank div,
.table-blank span{
    padding: 0;
    margin: 0;
    font-size: 16px;
}
.table-blank input{
    max-width: 100%;
}
.table-blank{
    border-collapse: collapse;
    width: 100%;
    min-width: 767px;
}
.table-blank th,
.table-blank td{
    /*padding: 8px;*/
    text-align: left;
}
.table-blank table th,
.table-blank table td{
    /*border: 1px solid #bbd4f0;*/
    border: none;
}
.table-blank td span{
    display: inline-block;
}
.table-active, .table-active > th, .table-active > td{
    background-color: #ffffff;
}
.table-blank .table-blank__section{
    border: 1px solid #bbd4f0;
    background-color: #9cc2e5;
    text-align: center;
    font-weight: 500;
    padding: 8px;
}
.table-blank__sub-section{
    font-weight: 600;
    padding: 8px !important;
}
.table-blank__td-section{
    padding: 8px;
}

.label-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}
.label-wrapper-others{
    margin-top: 12px !important;
}
.label-wrapper-others span{
    display: flex !important;
    align-items: center;
    flex: 1 0 auto;
}
.label-wrapper-others input{
    margin-left: 6px;
    width: 100%;
}
.table-blank label{
    cursor: pointer;
    user-select: none;
    padding: 8px;
}
.animal-tables{
    display: block;
}
.table-active{
    display: table !important;
}


.attached-label input {
    display: none;
}
.files-container{
    display: flex;
    flex-direction: column;
    margin: 8px 0;
    width: 100%;
}
.file-message{
    font-size: 14px;
    color: red;
    text-align: center;
}
.file-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.file-list li {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-top: 10px;
    background-color: #f0f0f0;
    position: relative;
    border-radius: 10px;
}
.file-list li:before {
    content: none;
}
.file-list .img-container{
    height: 50px;
    max-width: 100px;
    margin-right: 14px;
    border-radius: 6px;
    overflow: hidden;
}
.file-list .img-container img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.file-list .text{
    font-size: 14px;
    word-break: break-all;
}
.file-list .deleteTab {
    position: absolute;
    top: -2px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #005AAA;
}


@media screen and (max-width: 1199px){
    .form-support-modal__container{
        width: 971px;
        max-width: 971px;
    }
}
@media screen and (max-width: 991px){
    .form-support-modal__container{
        width: 747px;
        max-width: 747px;
    }
    .form-body__col-1{
        width: 304px;
    }
}
@media screen and (max-width: 767px) {
    .form-support-modal__step{
        border-right: none;
        width: 50%;
    }
    .form-support-modal__step > div:nth-child(2){
        width: 70%;
        font-size: 10px;
    }
    .form-support-modal__step:nth-child(odd) {
        border-right: 1px solid #005AAA;
    }
    .form-support-modal__step:nth-child(1){
        border-bottom: 1px solid #005AAA;
    }
    .form-support-modal__step:nth-child(2){
        border-bottom: 1px solid #005AAA;
    }
    .form-support-modal__step .step-number{
        font-size: 12px;
        margin-right: 0;
    }
    .tab__sub-title{
        font-size: 14px;
    }
    .tab__label-switcher{
        font-size: 14px;
        border-top: none;
        border-right: none;
        width: 50%;
    }
    .tab__label-switcher:nth-child(odd) {
        border-right: 1px solid #deeaf6;
    }
    .tab__label-switcher:nth-child(1){
        border-bottom: 1px solid #deeaf6;
    }
    .tab__label-switcher:nth-child(2){
        border-bottom: 1px solid #deeaf6;
    }
    .tab__label-switcher:last-child{
        width: 100%;
        border-top: 1px solid #deeaf6;
        border-bottom: none;
    }
    .tab__input-cell .select-list__title{
        font-size: 14px;
    }
    .tab__input-cell label{
        font-size: 14px;
    }
    .field-title{
        font-size: 14px;
    }
    .form-support-modal__container{
        overflow-y: scroll;
        padding: 24px;
        width: 520px;
        max-width: 520px;
        height: 90vh;
    }
    .table-blank-container{
        margin-top: 20px;
        overflow-x: scroll;
    }
    .form-body__container{
        flex-direction: column;
    }
    .form-body__col-1{
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    .form-body__col-2{
        margin-right: 0;
        width: 100%;
    }
    .form-desc{
        height: 300px;
    }
    .form-support-modal__title{
        font-size: 24px;
    }
    .form-input{
        font-size: 14px;
    }
    .form-body__link{
        font-size: 16px;
        margin: 25px 0;
    }
    .form-submit-btn{
        font-size: 16px;
        order: 5;
        margin: 0;
    }
    .file-list .img-container{
        height: 40px;
        max-width: 80px;
        margin-right: 10px;
    }
    .file-list .text{
        font-size: 12px;
    }
    .file-list .deleteTab {
        font-size: 16px;
    }
}

@media screen and (max-width: 540px){
    .form-support-modal__step{
        width: 100%;
    }
    .form-support-modal__step > div:nth-child(2){
        width: 70%;
        font-size: 10px;
    }
    .form-support-modal__step{
        border-bottom: 1px solid #005AAA;
        border-right: none !important;
    }
    .form-support-modal__step:last-child{
        border-bottom: none;
    }
    .form-support-modal__step .step-number{
        font-size: 12px;
        margin-right: 0;
    }
    .form-support-modal__container{
        width: 370px;
        max-width: 370px;
    }
    .tab__label-wrapper{
        flex-direction: column;
    }
    .tab__label-switcher{
        border-right: none !important;
        border-bottom: 1px solid #deeaf6;
        width: 100%;
    }
    .tab__label-switcher{
        border-top: none !important;
        width: 100%;
    }
    .tab__input-line{
        flex-direction: column;
    }
    .tab__input-cell{
        width: 100%;
    }
    .additional-tab-container{
        flex-direction: column;
    }
    .additional-tab{
        width: 100%;
    }
    .additional-tab .tab__input-line{
        margin-top: 5px;
    }
}
@media screen and (max-width: 375px){
    .form-support-modal__container{
        width: 300px;
        max-width: 300px;
    }
}
@media screen and (max-width: 300px){
    .form-submit-active{
        width: 200px;
    }
    .form-support-modal__container{
        width: 260px;
        max-width: 260px;
    }
}



.registration-form__item-ceckbox {
    padding-top: 20px;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.registration-form__item-ceckbox input[type=checkbox] {
    /*display: none;*/
    transform: scaleY(3) scaleX(0.1);
    position: relative;
    top: 28px;
    /*right: 45%;*/
    opacity: 0;
}
.registration-form__item-ceckbox input[type=checkbox]+label span.check {
    background-image: unset !important;

    background: #fff;
    border: 2px solid #014ea2;
    border-radius: 4px;
    box-sizing: border-box;
    height: 19px;
    transition: all .25s cubic-bezier(.4,0,.23,1);
    width: 19px;
    /*margin-right: 10px;*/
    margin: -2px 10px 0 0;

    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.registration-form__item-ceckbox input[type=checkbox]:not([disabled]):checked+label span.check {
    animation: shrink-bounce .2s cubic-bezier(.4,0,.23,1);
    background-color: #014ea2;
    border: 6px solid #014ea2 !important;
    position: relative;
}

.registration-form__item-ceckbox label {
    cursor: pointer;
}

.registration-form__item-ceckbox input[type=checkbox]:not([disabled]):checked+label span.check:after {
    animation: checkbox-check 125ms cubic-bezier(.4,0,.23,1) .25s forwards;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
    box-sizing: content-box;
    content: "";
    height: 7px;
    left: -2px;
    top: 0px;
    position: absolute;
    transform: rotate(45deg);
    transform-origin: 0 100%;
    width: 3px;
}

@keyframes shrink-bounce {
    0% {
        transform: scale(1)
    }
    33% {
        transform: scale(.85)
    }
    to {
        transform: scale(1)
    }
}

@keyframes checkbox-check {
    0% {
        border-color: #fff;
        height: 0;
        transform: translateZ(0) rotate(45deg);
        width: 0
    }
    33% {
        height: 0;
        transform: translateZ(0) rotate(45deg);
        width: 3px
    }
    to {
        border-color: #fff;
        height: 6px;
        transform: translate3d(0, -6px, 0) rotate(45deg);
        width: 4px
    }
}
.registration-form__item-ceckbox{
    padding-top: 0;
}
.registration-form__item-agree-checkbox{
    line-height: 1;
}
.registration-form__item-agree-checkbox .text{
    font-size: 14px;
}
.border{
    border: 5px solid #005aaa !important;
    padding: 25px;
}

.captcha-container {
    position: relative;
    display: flex;
    margin-top: 6%;
    margin-bottom: 15px;
    padding-left: 1.5%;
    width: 100%;
}
.captcha-container button {
    width: 5%;
    margin-right: 4%;
}
.captcha-container button:active, .captcha-container button:hover, .captcha-container button:focus {
    border: none;
    box-shadow: none !important;
    outline: none;
}
.captcha-container .captcha_word {
    margin-right: 4%;
    width: 45%;
    font-size: 16px;
    padding: 6px 12px;
    border: 1px solid #c7ccd1;
    border-radius: 8px;
    transition: 0.3s ease;
}
.captcha-container .form__error-captcha {
    position: absolute;
    top: 100%;
    margin-top: 3px;
    color: red;
    font-size: 12px;
    display: none;
}

.captcha-container .form__error-captcha.form__error-captcha-active {
    display: inline !important;
}