/*fonts*/
@font-face {
    font-family: 'Circe-Regular';
    src: url('../assets/fonts/Circe-Regular.eot');
    src: url('../assets/fonts/Circe-Regular.woff') format('woff');
    src: url('../assets/fonts/Circe-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
}
/*common styles*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Circe-Regular', sans-serif;
    -webkit-tap-highlight-color: transparent;
    background: #FDF6E4;
}
*:before,
*:after {
    pointer-events: none;
}
html,
body {
    height: 100%;
}
a {
    text-decoration: none;
}
button {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}
input {
    outline: none
}
input[type='radio'] {
    display: none;
}
ul {
    list-style: none;
}

/*ui styles*/
.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.mainWrapper {

}
.header__content {
    display: flex;
    justify-content: center;
}
.logo__margin {
    margin-right: 40px;
}
.banner {
    display: flex;
    margin-bottom: 30px;
}
.banner__content {
    margin-right: 55px;
}
.banner__title {
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
}
.banner__subtitle {
    font-size: 37px;
}
.banner__text {
    font-size: 29px;
}
.application {
    text-align: center;
    margin-bottom: 20px;
}
.application__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
}
.application__subtitle {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
.applicationFormWrapper {
    margin-bottom: 80px;
}
.applicationForm__input {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}
.applicationForm__input .applicationForm__input-icon {
    margin-bottom: 50px;
}
.applicationForm__input-field {
    background: #FFFFFF;
    font-size: 34px;
    height: 60px;
    border: none;
    padding: 15px 25px;
}
.applicationForm__input-field::placeholder {
    font-size: 34px;
    color: rgba(20, 20, 20, 0.5);
    line-height: 34px;
}
.js-example-basic-single ~ .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: #ffffff;
    right: 35px;
}
.arrow ~ .select2-container--default .select2-selection--single .select2-selection__arrow b  {
    right: 25px;
    top: 20px;
    width: 25px;
    transform: translate(10px, 10px);
    min-width: 16px;
    height: 16px;
    background: #ffffff;
    border-color: #1A5494 transparent transparent transparent;
    border-width: 16px 16px 0 16px;
    /*background: url("../assets/img/arrow.svg") no-repeat;*/
}
.arrow ~ .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #1A5494 transparent;
    border-width: 0 16px 16px 16px;
}
.select__custom .js-example-basic-single ~ .select2-container {
    background: #FFFFFF;
    font-size: 34px;
    height: 70px;
    border: none;
    padding: 15px 25px;
    max-width: 100%;
}
.js-example-basic-single ~ .select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
}
.js-example-basic-single ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    background: transparent;
    line-height: 40px;
}
.js-example-basic-single ~ .select2-container--default .select2-selection--single .select2-selection__placeholder {
    background: transparent;
}
.js-example-basic-single ~ .select2-container--default .select2-selection--single .select2-selection__clear {
    background: #ffffff;
}
.select2-container .select2-dropdown .select2-search .select2-search__field {
    font-family: 'Circe-Regular', sans-serif;
    font-size: 20px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    background: #ffffff;
}
.select2-container .select2-dropdown--below .select2-search--dropdown {
   background: #ffffff;
}
.select2-container .select2-dropdown--above .select2-search--dropdown {
    background: #ffffff;
}
.select2-container--default .select2-results>.select2-results__options {
    background: #fff;
}
.select2-container--open .select2-dropdown--above {
    border: none;
}
.select2-container .select2-dropdown--below {
    border: none;
}
.select2-container .select2-dropdown .select2-results .select2-results__option {
    background: #ffffff;
}
.select2-container .select2-dropdown .select2-results .select2-results__option--highlighted[aria-selected] {
    background-color: #ffffff;
    color: #141414;
}
.applicationForm__input-label {
    margin-top: 10px;
    font-size: 16px;
    padding-left: 25px;
    color: rgba(20, 20, 20, 0.49);
}
.applicationForm__patronymicWrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.applicationForm__patronymic {
    position: relative;
    width: 55%;
    max-width: 100%;
    /*flex: 0 0 50%;*/
    margin-right: 25px;
    margin-bottom: 0;
    align-self: flex-end;
}
.applicationForm__checkbox-label {
    font-size: 34px;
    color: rgba(20, 20, 20, 0.5);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-align: right;
    cursor: pointer;
}
.applicationForm__checkbox-label:before {
    content: "";
    display: block;
    width: 68px;
    margin-left: 15px;
    min-width: 68px;
    height: 68px;
    background: #ffffff;
}
.applicationForm__checkbox input:checked ~ .applicationForm__checkbox-label:before {
    background: url("../assets/img/check.svg") no-repeat center;
}
input[type=checkbox] {
    display: none;
}
.applicationForm__submit {
    text-align: center;
}
.applicationForm__button {
    background: #1A5494;
    padding: 25px 75px;
    color: #FFFFFF;
    font-size: 21px;
    margin-bottom: 25px;
    margin-top: 10px;
}
.applicationForm__submit-text {
    font-size: 16px;
    color: rgba(20, 20, 20, 0.49);;
}
.application__info {
    text-align: center;
    margin-bottom: 50px;
}
.application__info-title {
    font-size: 65px;
}
.application__info-subtitle {
    font-size: 31px;
}
.application__contact {
    display: flex;
    justify-content: space-evenly;
}
.application__contact-phone {
    display: flex;
    align-items: center;
}
.application__contact-mail {
    display: flex;
    align-items: center;
}
.application__contact-icon {
    margin-right: 30px;
}
.application__contact-text {
    font-size:  30px;
    color: #141414;
    font-weight: 700;
}
.application__mail {
    font-size: 30px;
    color: #4297D0;
    font-weight: 700;
}
.applicationForm__submit-link {
    color: rgba(20, 20, 20, 0.49);
    text-decoration: underline;
}
header {
    padding-top: 30px;
    padding-bottom: 50px;
}
footer  {
    padding-bottom: 70px;
}
main {
    margin-bottom: 60px;
}
.section__line {
    margin-top: 130px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.5);
}
.footer__contact {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer__contact-mail {
    margin-right: 115px;
}
.footer__contact-info {
    display: flex;
    align-items: center;
}
.footer__logo {
    margin-right: 25px;
}
.footer__contact-logos {
    display: flex;
}
.footer__mail {
     color: #000;
    font-size: 25px;
    text-decoration: none;
    border: none;
    background-image: url("../assets/img/border-line.png");
    background-repeat: no-repeat;
    background-size: 200% 1px;
    background-position: 100% 90%;
    line-height: 25px;
}
.footer__mail:hover {
    background-position: 0 90%;
    transition: background 200ms linear, color 200ms linear;
}
.footer__contact-text {
    font-size: 14px;
    line-height: 17px;
    color: rgb(106, 103, 104);
}
.footer__contact-phoneText {
    font-size: 13px;
    line-height: 16px;
    color: rgb(106, 103, 104);
}
.footer__contact-number {
    color: #000;
    font-size: 26px;
    line-height: 31px;
}
.footer__copyright-text{
    color: rgb(106, 103, 104);
    font-size: 14px;
}
#patronymic:disabled {
    background: rgba(255, 255, 255, 0.5);
}
.applicationForm__input-field.parsley-error ~ .applicationForm__input-label {
        display: none;
}
.select2.parsley-error ~ .applicationForm__input-label {
    display: none;
}
.select2.parsley-error ~ .parsley-errors-list {
    position: absolute;
    bottom: -35px;
    left: 0;
}
.parsley-errors-list {
    color: #E40646;
    margin-top: 10px;
    padding-left: 25px;
}
.parsley-errors-list li {
    font-size: 12px;
    line-height: 14px;
}
 .applicationForm__input-field.parsley-error {
     background: #FFCACA;
 }
.applicationFormWrapper.success {
    display: none;
}
.applicationFormWrapper.error {
    display: none;
}
.js-example-basic-single {
    background: #FFFFFF;
    font-size: 34px;
    height: 70px;
    border: none;
    padding: 15px 25px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select__custom .js-example-basic-single.parsley-error ~ .select2-container {
    background: #FFCACA;
}
.js-example-basic-single.parsley-error ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: #FFCACA;
}
.js-example-basic-single.parsley-error ~ .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: #FFCACA;
}
.arrow.parsley-error ~ .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: #FFCACA;
}
.applicationForm__input.parsley-error {
    flex-direction: column-reverse;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 40px white inset !important;
}

#agree-link{
    text-decoration: underline;
    cursor: pointer;
}
#agree-close{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    background: #fff;
}
#agree-overlay{
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
}
#agree-popup *{
    box-sizing: border-box;
    background: #fff;
}
#agree-popup{
    position: relative;
    width: 60%;
    height: 100%;
    padding: 50px;
    background: #fff;
    color: rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    box-sizing: border-box;
    float: right;
    line-height: 17px;
    z-index: 10002;
}
#agree-popup p,li{
    position: relative;
    margin-bottom: 10px;
}
#agree-popup ul{
    list-style-type: disc;
    background: #fff;
}
#agree-popup ul, ol{
    padding-left: 20px;
    margin-bottom: 20px;
    background: #fff;
}
#agree-popup h2{
    margin: 20px 0;
    line-height: 30px;
    background: #fff;
}
#agree-popup .sup-left{
    position: absolute;
    left: -7px;
    top: -7px;
    font-size: 11px;
    font-weight: bold;
    background: #fff;
}
#agree-popup .sup-right{
    position: absolute;
    right: -3px;
    bottom: 2px;
    font-size: 11px;
    font-weight: bold;
    background: #fff;
}

.parsley-errors-list li {
    font-size: 16px;
}
/*.applicationForm__input.select__custom {*/
/*    flex-direction: column-reverse;*/
/*}*/
.applicationForm__button-next {
    margin-top: 70px;
}
.message__text {
    font-size: 34px;
    text-align: center;
    line-height: 40px;
}
.message__subtitle {
    font-size: 24px;
    text-align: center;
    font-weight: 400;
    color: #141414;
    opacity: 0.5;
    padding-top: 20px;
}
.application__subtitle.remove__subtitle {
    display: none;
}
.fio__bold {
    font-weight: 700;
}
.result__logo {
    padding-bottom: 20px;
}
.SmartCaptcha-Shield.SmartCaptcha-Shield_position_bottom {
    bottom: 2% !important;
}
.SmartCaptcha-Shield_position_right .SmartCaptcha-Shield-PrivacyLink {
    background: #ffffffb2;
}
.continue__link {
    color: #fff;
    background: transparent;
}

#cookie-fixed-popup p {
	background-color: white;
}

#cookie-fixed-link {
	background-color: white;
}
.footer__cookie {
	margin-top: 10px;
}
#cookie-popup * {
	background-color: white !important;
}
#cookie-block-link {
	text-decoration:underline;
	cursor: pointer;
}