.fix{
    display: flex;
    position: fixed;
    left: 10px;
    bottom:0;
    flex-direction: column;
}
.fix a{
    text-align: center;
    display: block;
    padding: 8px;
    border: 1px solid #fff;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
}
body{
    font-family: 'Montserrat';
    color: #000;
    background: #E3F0F7;
    padding: 0;
    margin: 0;
}
a, a:link, a:focus {
    color: inherit;
    text-decoration: none;
}
header{
    padding: 16px 46px;
    background: #fff;
}
.container{
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start
}
header .container{
    justify-content: space-between;
    align-items: center;
}
.progress-line{
    display: block;
    min-width: 165px;
    background: #3893FF;
    height: 8px;
    margin-bottom: 80px;
}
.logo-img{
    width:auto;
    display:inline-block
}
.logo-text{
    display:inline-block;
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 10.4812px;
    color: #50616E;
    padding-left:7px;
    border-left:1px solid;
    margin-left:7px;
    margin-right:25px;
    height: 24px;
    line-height: 16px;
}

.logo-text a
{
    position: relative;
    float: left;
    margin-top: -4px;
}
.top-phone {
    font-size: 11.5px;
    line-height: 1;
    color: #3893FF;
    margin-bottom: -2px;
    text-align: right;
}
.top-phone span {
    font-size: 17.5px;
    margin-top: 10px;
    font-weight: bold;
    display: block;
    position: relative;
}
.top-phone span:before{
    position: absolute;
    content: '';
    background: url('../img/phone-icon.png') no-repeat center;
    width: 18px;
    height: 18px;
    left: -21px;
    bottom: 0;
}
.custom-checkbox{
    margin-top: 10px;
    display: flex;
    margin-bottom: 6px;
}
.custom-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>span {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #050316;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>span::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 3px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox>input:not(:disabled):active+span::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox>input:focus+span::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox>input:focus:not(:checked)+span::before {
    border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+span::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+span::before {
    background-color: #e9ecef;
}

h1{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    margin: 0 0 28px;
}
.left-info{
    max-width: 413px;
    margin-right: 30px;
}
.d-content-wrap{
    overflow: hidden;
    background: #FFF;
    margin-bottom: 30px;
    border-radius: 10px;
    width: 428px;
    min-height: 400px;
    padding: 30px 15px 80px;
    position: relative;
}
.d-content-wrap ul{
    padding-left: 40px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 12px;
    color: #505050;
    overflow: hidden;
}
.d-content-wrap ul li{
    margin-bottom: 20px;
}
.step-wrap{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column
}
.step-item{
    position: relative;
    padding-left: 40px;
    margin-bottom: 47px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #5A5757;
}
.step-item:before{
    position: absolute;
    content: '';
    background: url('../img/step-item-ok.svg') no-repeat center;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
}
.step-item-active:before{
    background: url('../img/step-item-ok-blue.svg') no-repeat center;
}
.step-item:after{
    position: absolute;
    content: '';
    background: #9E9898;
    width: 2px;
    height: 50px;
    left: 14px;
    bottom: -50px;
    z-index: 0;
}
.step-item-active:after{
    background: #3893FF;
}
.step-item-last:after{
    display: none;
}
.file-list-item{
    display: block;
    padding-left: 55px;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-decoration-line: underline !important;
    margin-bottom: 30px;
}
.file-list-item:before{
    position: absolute;
    content: '';
    background: url('../img/document.svg') no-repeat center;
    width: 32px;
    height: 32px;
    left: 6px;
    top: 50%;
    margin-top: -18px;
}
.right-content{
    position: relative;
}
.right-content hr{
    margin: 10px 0;
}
.right-content .title{
    font-weight: bold;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 40px;
    margin-top: 30px;
}
input{
    background: #FFF;
    border: 1px solid #BFC1CC;
    border-radius: 8px;
    padding: 0 15px;
    height: 44px;
    line-height: 44px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}
input[name='lastName']{
    border-color: #23263a;
}
input[name='lastName']::placeholder{
    color: #23263a;
}
input[name='firstName']{
    border-color: #23263a;
}
input[name='firstName']::placeholder{
    color: #23263a;
}
input[name='middleName']{
    border-color: #23263a;
}
input[name='middleName']::placeholder{
    color: #23263a;
}
input[name='snils']{
    border-color: #23263a;
}
input[name='snils']::placeholder{
    color: #23263a;
}
input[name='birthDate']{
    border-color: #23263a;
}
input[name='birthDate']::placeholder{
    color: #23263a;
}
input[name='email']{
    border-color: #23263a;
}
input[name='email']::placeholder{
    color: #23263a;
}

.input-100{
    width: calc(100% - 30px);
}
.input-50 {
    width: calc(50% - 45px);
}
.w-50{
    width: 50%;
}
.date-wrap{
    display: flex;
    flex-direction: column;
}
.date-wrap label{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #605E6E;
    display: block;
    margin-bottom: 2px;
}
.bottom-block{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 30px;
}
.btn{
    height: 50px;
    line-height: 50px;
    min-width: 200px;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #3893FF;
    text-align: center;
    color: #3893FF;
    cursor: pointer;
    display: block;
}
.btn-blue{
    background: #3893FF;
    color: #fff;
    position: relative;
}
.btn-red{
    border-color:#ff3838;
    background: #ff3838;
    color: #fff;
    position: relative;
}
.btn-blue:disabled{
    cursor: no-drop;
}
.btn-blue:disabled:before{
    position: absolute;
    content: '';
    top:4px;
    right:78px;
    -moz-animation: spinner-loader 1500ms infinite linear;
    -webkit-animation: spinner-loader 1500ms infinite linear;
    animation: spinner-loader 1500ms infinite linear;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    -webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    display: inline-block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    overflow: hidden;
    text-indent: 100%;
}
@-moz-keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spinner-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* :not(:required) hides this rule from IE9 and below */
.spinner-loader:not(:required) {
    -moz-animation: spinner-loader 1500ms infinite linear;
    -webkit-animation: spinner-loader 1500ms infinite linear;
    animation: spinner-loader 1500ms infinite linear;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    -webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    display: inline-block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    overflow: hidden;
    text-indent: 100%;
}
.sms-text{
    margin-top: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    text-decoration-line: underline !important;
    color: #050316;
    display: block;
    margin-bottom: 10px;
    z-index: 99;
    position: relative;
}
.sms-box{
    display: flex;
}
.sms-box input{
    width: 50px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.5px;
}
.summ{
    position: relative;
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
}
.summ .error{
    position: absolute;
    content: '';
    bottom: -18px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #FF3333;
}
.mb-30{
    margin-bottom: 30px;
}
.control-f{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.input__wrapper {
    width: 100%;
    position: relative;
    margin: 15px 0;
}

.input__file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input__file-icon-wrapper {
    height: 24px;
    width: 24px;
    margin-right: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #fff;
}

.input__file-button-text {
    margin-top: 1px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline !important;
    color: #050316;

}

.input__file-button {
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 auto;
}
.file-name{
    display: flex;
    padding-left: 35px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
.file-name:before{
    position: absolute;
    content: '';
    background: url('../img/image.svg') no-repeat center;
    width: 24px;
    height: 24px;
    left: 0;
    top: 50%;
    margin-top: -12px;
}
.file-name a{
    cursor: pointer;
}
.close{
    display: inline-block;
    margin-left: 15px;
    height: 24px;
    width: 24px;
    background: url("../img/close.svg") no-repeat center;
}
.title-ok{
    padding-left: 64px;
    position: relative;
}
.title-ok:before{
    position: absolute;
    content: '';
    background: url('../img/ok.svg') no-repeat center;
    width: 27px;
    height: 20px;
    left: 7px;
    top: 50%;
    margin-top: -12px;
}
.text{
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    margin-bottom: 40px;
}
.text a{
    text-decoration: underline !important;
    color: #3893FF;
}
.star{
    cursor: pointer;
    background: url('../img/Star-t.svg') no-repeat center;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: inline-block;
    transition: 0.3s;
}
.star:hover{
    background: url('../img/Star.svg') no-repeat center;
}
.star-ok{
    background: url('../img/Star.svg') no-repeat center;
}
.right-content .mb-20, .mb-20{
    margin-bottom: 20px;
}
.maspk-logo{
    width: 162px;
    display: none;
}
.maspk{
    background: #19204D;
}
.maspk h1{
    color: #fff;
}
.maspk .progress-line{
    background-color: #CFB05A;
}
.maspk .error-modal{
    border: 3px solid #CFB05A;
}
.maspk .step-item{
    color: #A8A8A8;
}
.maspk .custom-checkbox>input:checked+span::before{
    background-color: #CFB05A;
    border-color: #CFB05A;
}
.maspk .btn{
    border-color: #CFB05A;
    color: #000;
}
.maspk .btn-blue{
    background-color: #CFB05A;
    border-color: #CFB05A;
    color: #fff;
}
.maspk .error-title{
    color: #fff;
}
.maspk .error-text{
    color: #fff;
}
.maspk .star-ok{
    background: url(../img/Star-gold.svg) no-repeat center;
}
.maspk .star-ok:hover{
    background: url(../img/Star-gold.svg) no-repeat center;
}
.maspk .top-phone{
    color: #19204D;
}
.maspk .top-phone span:before{
    background: url(../img/phone-icon-b.png) no-repeat center;
}
.maspk .myir-logo{
    display: none;
}
.maspk .maspk-logo{
    display: block;
}


.intobr{
    background: #F8FAFE;
}
.intobr .progress-line{
    background: #C615B6;
}
.intobr .error-modal{
    border: 3px solid #C615B6;
}
.intobr .custom-checkbox>input:checked+span::before{
    background-color: #C615B6;
    border-color: #C615B6;
}
.intobr .btn{
    border-color: #C615B6;
    color: #000;
}
.intobr .btn-blue{
    background-color: #C615B6;
    border-color: #C615B6;
    color: #fff;
}
.intobr .star-ok{
    background: url(../img/Star-pink.svg) no-repeat center;
}
.intobr .star-ok:hover{
    background: url(../img/Star-pink.svg) no-repeat center;
}
.intobr .top-phone{
    color: #19204D;
}
.intobr .top-phone span:before{
    background: url(../img/phone-icon-b.png) no-repeat center;
}
.intobr .myir-logo{
    display: none;
}
.intobr .intobr-logo{
    display: block;
}
.intobr-logo{
    display: none;
}
.timer-wrap{
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 22, 0.27);
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
}
.timer-content{
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: absolute;
    width: 300px;
    content: '';
    left: calc(50% - 150px);
    top: 30%;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}
.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
    font-size: 13px;
}
.table>:not(:last-child)>:last-child>* {
    text-align: left;
    border-bottom-color: currentColor;
}
.table>thead {
    vertical-align: bottom;
}
tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
.table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
tbody td:first-child{
    max-width: 248px;
}
.close-modal{
    position: absolute;
    content: '';
    right: 26px;
    top: 26px;
    background: url(../img/cross.jpg) no-repeat center;
    width: 16px;
    height: 16px;
    opacity: 1;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    padding: 0;
}
.close-modal:hover{
    opacity: 0.8;
}
.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 172, 202, 0.37);
    backdrop-filter: blur(8px);
}
.modal {
    /*box-shadow: 0 10px 25px rgb(0 0 0 / 50%);*/
    background: #FFF;
    border-radius: 10px;
    position: absolute;
    left: 50%; top: 50%;
    max-width: 775px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow: auto;
    transform: translate(-50%,-50%);
    padding: 20px 115px 40px;
    z-index: 99;
}
.modal-big{
    max-width: 729px;
    max-height: 500px;
    padding: 23px;
}
.modal .table tbody {
    vertical-align: baseline;
}
.modal .table ol{
    padding-left: 15px;
}
.modal table a{
    padding: 0;
}
.modal .title{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-top: 25px;
    margin-bottom: 20px;
    width: 100%;
    display: block;
    text-align: center;
}
.modal .text{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 20px;
}
.modal .sub-title{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    margin: 40px 0;
}
.modal .table{
    margin-bottom: 40px;
}
.modal-h2{
    font-family: 'Montserrat';
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    margin: 0 0 47px;
}
.link-modal-wrap{
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-height: 320px;
}
.link-modal-wrap a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    width: 242px;
    height: 54px;
    border-radius: 8px;
    border: 1px solid #3893FF;
    color: #000;
    transition: 0.3s;
}
.link-modal-wrap a:hover{
    background: #3893FF;
    color: #fff;
}
button {
    display: block;
}
#prelouder{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #fff;
    z-index: 999;
}
#prelouder .title{
    font-size: 30px;
    line-height: 1.2;
    padding-top: 100px;
}
#prelouder img{
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.error-modal{
    position: absolute;
    content: '';
    right: -326px;
    top: 0;
    width: 306px;
    min-height: 118px;
    background: #FFF;
    border: 3px solid #F03E58;
    border-radius: 7px;
}
.error-modal-content{
    position: relative;
    padding: 52px 22px 17px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.error-modal-content .close-modal{
    position: absolute;
    right: 14px;
    top: 14px;
    margin: 0;
    cursor: pointer;
    height: 24px;
    width: 24px;
    background: url(../img/close.svg) no-repeat center;
    z-index: 999;
}
.error-modal-content .error-icon{
    position: absolute;
    left: 22px;
    top: 14px;
    width: 25px;
    height: 25px;
    background: url('../img/atantion!.svg') no-repeat center;
    margin: 0;
}
.error-img{
    margin-bottom: 23px;
    width: 332px;
    height: 298px;
    background: url('../img/error-page-img.png') no-repeat center;
    background-size: cover;
}
.error-img-conus{
    width: 306px;
    height: 258px;
    background: url('../img/error-page-img-conus.png') no-repeat center;
    background-size: cover;
}
.error-title{
    font-weight: 600;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    color: #4172D2;
    margin-bottom: 15px;
}
.error-text{
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: #4172D2;
}
.error-page-wrap{
    width: 100%;
    height: calc(100vh - 77px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn-tinkoff{
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
    line-height: 1;
    background-color: #ffdd2d;
    font-family: haas, pragmatica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    border-radius: 8px;
    border: 1px solid transparent;
    box-sizing: border-box;
    max-width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition-property: background-color, border, box-shadow;
    transition-duration: .25s;
    transition-timing-function: ease;
}
.d-content-wrap .input__wrapper label[for='input__file_diplomaMain'] .input__file-button-text{
    color: #FF3333;
}
.d-content-wrap .input__wrapper label[for='input__file_certificateOfAccreditation'] .input__file-button-text{
    color: #FF3333;
}
