@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
         url('../fonts/Manrope-Regular.woff') format('woff'),
         url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
         url('../fonts/Manrope-Medium.woff') format('woff'),
         url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
         url('../fonts/Manrope-Bold.woff') format('woff'),
         url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --ui-primary: #2a3fd1;
    --ui-primary-deep: #1a2a9c;
    --ui-primary-mid: #4d5ecf;
    --ui-primary-muted: #6f7add;
    --ui-primary-footer: #6672d8;
    --ui-primary-soft: #a9b3ed;
    --ui-primary-pale: #f4f6ff;
    --ui-input-bg: #f8f9ff;
    --ui-placeholder: #8e99e1;
    --ui-gradient-start: #3c86e1;
    --ui-gradient-end: #1a4c9c;
    --ui-text: #19192f;
    --ui-focus-shadow: rgba(42, 63, 209, .14);
    --ui-card-shadow: rgba(42, 63, 209, .14);
    --ui-button-shadow: rgba(42, 63, 209, .28);
    --ui-button-shadow-hover: rgba(42, 63, 209, .34);
    --ui-button-shadow-soft: rgba(42, 63, 209, .12);
}

.hide {
    display:none;
}
.error-icon {
    display:block;
    width:64px;
    height:64px;
    margin:0px auto 20px auto;
    background: url('../i/error.svg') center no-repeat;
    background-size:contain;
}
.error-message {
    display:block;
    color:#df3b3b;
    font-weight:600;
    margin:10px 0;
}
.info-modal {
    max-width:500px;
    text-align:center;    
    border-radius:8px;
}

.fancybox-content.info-modal {
    width: min(420px, calc(100vw - 32px));
    padding: 34px 30px 30px;
    border-radius: 18px;
    color: var(--ui-text);
    background: #fff;
    box-shadow: 0 24px 70px rgba(26, 42, 156, .18);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.45;
}

.fancybox-content.info-modal strong {
    color: var(--ui-primary-deep);
    font-weight: 700;
}

.fancybox-content.info-modal .fancybox-close-small {
    top: 8px;
    right: 8px;
    color: var(--ui-primary-muted);
}

#sms_code_modal .js-sms-code-wrap {
    margin: 20px 0 18px;
}

#sms_code_modal .js-sms-code {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 2px solid var(--ui-primary-soft);
    border-radius: 14px;
    outline: none;
    color: var(--ui-text);
    background: var(--ui-input-bg);
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: .18em;
    box-sizing: border-box;
}

#sms_code_modal .js-sms-code:focus {
    border-color: var(--ui-primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--ui-focus-shadow);
}

#sms_code_modal .js-sms-code-wrap.-error .js-sms-code {
    border-color: #df3b3b;
}

#sms_code_modal .js-sms-error {
    margin-top: 10px;
    color: #df3b3b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

#sms_code_modal .sms-repeat {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    color: var(--ui-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

#sms_code_modal .sms-repeat:hover {
    text-decoration: underline;
}

#sms_code_modal .sms-repeat.disable {
    color: var(--ui-primary-muted);
    opacity: .65;
    text-decoration: none;
    pointer-events: none;
}

#sms_code_modal .js-sms-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--ui-gradient-start) 0%, var(--ui-gradient-end) 100%);
    box-shadow: 0 10px 22px var(--ui-button-shadow);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

#sms_code_modal .js-sms-confirm:hover,
#sms_code_modal .js-sms-confirm:focus {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 32px var(--ui-button-shadow-hover);
}

#error_modal.fancybox-content.info-modal,
#success_modal.fancybox-content.info-modal {
    font-size: 16px;
}

@media (max-width: 480px) {
    .fancybox-content.info-modal {
        padding: 30px 20px 24px;
    }
}
.sms-repeat.disable, 
.sms-repeat.disable a,
.js-repeat-accept-code.disable {
    color:#bbb;
    cursor:default;
}
.-error .form_group-title {
    color: #e15050;
}
.input_file + .js-labelFile {
    padding:2px;
}
.input_file + .js-labelFile img {
    border-radius:7px;
}
.-error .input_file + .js-labelFile {
    border-color:#e15050;
}
.form_file_item.-error p {
    color: #e15050;
}

.callback_error {
    text-align:center;
    font-size: 42px;
    font-family: 'Gilroy-Bold';
    color: #e15050;
    padding: 50px 0;
}
.callback_success {
    text-align:center;
    font-size: 42px;
    font-family: 'Gilroy-Bold';
    color: #63B52F;
    padding: 50px 0;
}
.callback_redirect {
    font-size:16px;
    text-align:center;
}
.reason_code_description {
    padding:20px 0;
    font-size:16px;
    text-align:center;
}

.callback_attention {
    text-align:center;
    font-size: 42px;
    font-family: 'Gilroy-Bold';
    color: #ffab00;
    padding: 50px 0;
}

.new_order_box {
    background-color: #fcfcfc;
    border-radius: 15px; 
    padding: 47px 68px;
    margin-bottom: 16px;
}


.time_preloader {
    display:block;
    margin:0 auto;
    width:128px;
    height:128px;
    background: url('../i/time_preloader.gif') center no-repeat;
}

.order_accept_icon {
    display:block;
    margin:0 auto;
    width:128px;
    height:128px;
    background: url('../i/ok.svg') center no-repeat;
    background-size:cover;
}
.order_reject_icon {
    display:block;
    margin:0 auto;
    width:128px;
    height:128px;
    background: url('../i/close.svg') center no-repeat;
    background-size:cover;
}

.status_0, .status_1 {
    color:#3c3c3c
}
.status_2 {
    color:#63b630;
}
.status_3 {
    color:#dd2222;
}

#agreement_list {
    max-width:600px; 
    border-radius:8px;
}

.payment-card-list {
    
}
.payment-card-list li {
    list-style:none;
    padding:0 10px 20px 0;
    
}
.payment-card-list li label {
    border:2px solid #ddd;
    border-radius:6px;
    padding:5px 10px;
    width:100%;
    display:block;
    cursor:pointer;
}
.payment-card-list [type=radio] {
    display:none;
}
.payment-card-list li [type=radio]:checked + label {
    border-color:#63b630;
}
.payment-card-list li label strong,
.payment-card-list li label span {
    display:block;
}

.check_box span { font-size:14px;padding:5px 0; }
.check_box a { color:#63b630}
.-error .check_box span {color:#dd2222}
.-error input[type="checkbox"] + label::before {
    border-color: #dd2222
}
.br-10 {
    border-radius:10px;
}

.card_item {
    align-items: baseline;
    height:50px;
    padding-left:90px;
}
.card_item::before {
    width:80px;
    height:55px;
}
.make_base_card {
    color:#63b630;
    font-size:13px;
}
.is_base_card {
    color:#fff;
    font-size:13px;
    border:1px solid #63b630;
    font-weight:bold;
    border-radius:3px;
    background: #63b630;
    padding:2px 7px;
}
.s4 {
    background: #f4fff8;
    padding: 150px 0;
}
.mobheader {
    display:none;
}
.js-fileName {
    padding: 10px 15px;
    display: block;
}
.q_form_wrap {
    align-items: center;
}
.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}
.q_form input[type="tel"] {
    height: 50px;
    font: 600 16px/50px 'Manrope', arial, sans-serif;
    background: #f5f7fa;
    border-radius: 5px;
    padding: 0 25px;
    border: none;
    color: #959595;
    width: 100%;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.q_form .head_3 {
    text-align: left;
}
.q_fields {
    margin: 70px 0 0;
}
.q_form input[type="submit"] {
    width: 100%;
    height: 50px;
    background: #83d464;
    color: #fff;
    border: none;
    border-radius: 5px;
}
.form_img {
    display: block;
}
footer {
    background: #09142e;
    color: #fff;
    font: 100 16px 'Manrope', Arial, sans-serif;
}
footer a {
    color: #fff;
    text-decoration: underline;
}
footer img {
    vertical-align: middle;
    margin: 0 0 0 10px;
}
.footer_links {
    font-size: 12px;
    padding: 0px 0 40px;
}
footer p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
.footer_links li {
    margin: 0 0 5px;
}
.con_link {
    line-height: 65px;
}
ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul.menu-top_menu {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    font-size: 14px;
}
@media (max-width: 768px)
{
    .header {
        display:none
    }
    .mobheader {
        display:block;
        padding:10px 15px;
        overflow-x:hidden;
        overflow-y:auto;
    }
    .mobheader:after {
        content:'';
        clear:both;
        display:block;
    }
    .mobheader-logo {
        float:left;
        height:28px;
    }
    .mobheader-logo a {
        display:block;
        height:100%;
        width:100%;
    }
    .mobheader-logo a img {
        max-height:100%;
        max-width:100%;
    }
    .mobheader-phone {
        float:left;
        padding-left:10px;
        z-index: 10;
        position: relative;
    }
    .mobheader-phone a {
        font:18px/18px 'Gilroy-Bold';
        display:block;
        transition: all 0.5s ;
    }
    .mobheader-phone span {
        font: 13px/14px 'Gilroy-Regular';
        display:block;
        transition: all 0.5s ;
    }
    .menu-open .mobheader-phone,
    .menu-open .mobheader-phone a {
        color:#fff;
    }
    .mobheader-account {
        float:right;
        z-index: 10;
        position: relative;    
    }
    .mobheader-account a {
        display:block;
        width: 32px;
        height:32px;
        background: url('../i/account_green.png') center no-repeat;
        transition: all 0.5s ;
    }
    .menu-open .mobheader-account a  {
        background: url('../i/account_white.png') center no-repeat;
    }
    .mobheader-menu {
        float:right;
    }
    .mobheader-toggler {
        width:28px; 
        height:32px;
        display:block;
        margin-left:5px;
        z-index: 10;
        position: relative;
    }
    .mobheader-toggler > span {
        width:28px;
        height:4px;
        margin-top:5px;
        background:#333;
        display:block;
    }
    .mobheader-menu-nav {
        display:none;
        padding-top:60px;
        padding-bottom:60px;
        position:fixed;
        height:100%;
        left:100%;
        top:0;
        z-index:9;
        background:#63b630;
        transition:all 0.3s;
        width:100%;
    }
    .mobheader-menu-nav.open {
        left:125px;;
    }
    
    .mobheader-menu-nav .nav {
        
    } 
    .mobheader-menu-nav .nav-item {
        display:block;
        text-align:center;
        width:100%;
    }    
    .mobheader-menu-nav .nav-link {
        color:#fff;
        margin-bottom:10px;
    }
    .mobheader-menu-nav .nav-link:hover {
        text-decoration:underline;
    } 
    .itop_calc {
        margin-top:10px;
        padding-top:10px;
    }
    .form-group-one {
        margin-bottom:50px;
    }
    .form-group-one label {
        width:50%;
    }
    .form-group-two {
        margin-bottom:50px;
    }
    .form-group-two label {
        width:50%;
    }
    .header_menu {
        display: block;
        width:320px;
    }
}

@media (max-width: 478px){
    .mobheader-menu-nav.open {
        left: 0px;
    }
    .new_order_box {
        margin-left:0;
        padding: 20px;
    }
}

.password_info{position: absolute; top:10px; left:70px; color: #a8a8a8;}
.form-password {
    position: relative;
}

.blue-link {
    color:#00c4f1;
    padding-top:10px;
    display:block
}

.docs_list_footer {
    padding:0;
    margin:0;
}
.docs_list_footer li {
    list-style:none;
    line-height:13px;
}
.docs_list_footer li a {
    font-size:12px;
    opacity: 0.3;
    color: #fff;
}
.docs_list_footer li a:hover {
    color:#00c4f1;
    opacity:1;
} 

@media (max-width: 1200px) {
	
	.buttons a {
		padding:10px 25px;
	}
	
	.head_1 {
		font-size:42px;
	}
	
	.tabs>label {
		font-size:34px;
	}
	
	.tab {
		padding-right:0px;
	}
	
	.cal {
		margin:0 0 20px 30px;
	}
	
	.cal .button {
		font-size:12px;
	}
	
	#amount {
		font-size:14px;
	}
	
}


@media (max-width: 992px) {
	
	.top_menu {
		margin:0 0 50px;
	}
	
	.buttons {
		justify-content: center;
	}
	
	.buttons a {
		margin:0 10px;
	}
	
	.i_block br {
		display:none;
	}
	
	.i_block {
		font-size:18px;
	}
	
	.tel_img {
		display:none;
		margin:-120px auto 50px;
		width:400px;
	}
	
	.s5 {
		padding:100px 0 0;
	}
	
	.form_img {
		display:block;
		margin:50px auto 0;
	}
	
	footer {
		font-size:12px;
	}
	
	.top_header {
		margin: 0px 0 50px;
	}
	
	.cal {
		margin:0px 0 20px;
	}
}

@media (max-width: 768px) {
	
	.top_header {
		margin: 0px 0 20px;
	}
	
	.s1 {
		padding:80px 0;
	}
	
	.i_block {
		font-size: 14px;
	}
	
	.plus_wrap .row {
		margin-bottom:30px;
	}
	
	.s2 {
		padding:80px 0;
	}
	
	.tabs>label {
		font-size: 30px;
	}
	
	.s3 {
		padding:80px 0;
	}
	
	#reviews {
		padding:0px;
	}
	
	.s4 {
		padding:80px 0;
	}
	
	footer {
		height:auto;
		padding:30px 0;
	}
	
	footer div {
		text-align:center !important;
	}
	
	footer p {
		margin:0px 0 20px;
	}
	
	.top_menu {
		display:none;
	}
}


@media (max-width: 576px) {
	
	.top_menu ul {
		display:block;
		text-align:center;
	}
	
	.desc {
		font-size:12px;
	}
	
	.head_3 {
		font-size:30px;
	}
	
	.light_text {
		font-size:15px;
	}
	
	.i_block {
		margin:0 0 30px;
	}
	
	.plus_wrap .row {
		margin-bottom:0px;
	}
	
	.tabs>label {
		margin:0 0 20px;
		display:block;
	}
	
	.get_list .num {
		font: bold 34px/50px 'Manrope', arial, sans-serif;
		color: #fff;
		background: #83d463;
		min-width: 50px;
		height: 50px;
		border-radius: 100%;
		text-align: center;
		margin: 0 30px 0 0;
	}
	
	.img_wrap {
		min-width: 50px;
		max-height: 50px;
		width: 50px;
		height: 50px;
		padding: 10px;
		background: #2bb600;
		border-radius: 100%;
		margin: 0 30px 0 0;
	}
	
	.r_top {
		display:block;
	}
	
	#reviews .r_top img {
		margin:0px auto 20px;
		display:block;
	}
	
	.quest {
		font: 600 16px 'Manrope', arial, sans-serif;
	}
	
	.q_form input[type="tel"] {
		margin:0 0 20px;
	}
	
	.ui-slider {
		margin:0 0 20px;
	}
	
	.cal_info .col-lg-4 {
		border:none;
		border-top:2px solid #e2eaed; 
		text-align:center;
		padding-bottom:10px;
		padding-top:10px;
	}
	
	.cal_info {
		margin:0px;
	}
	
	header {
		height:auto;
		padding:30px 0;
	}
	
	.modal_w {
		padding:20px;
		width:100%;
	}
	
	#amount {
		text-align:center;
	}
	
	.date_wrap {
		text-align:center;
		margin:0 0 20px;
	}
	
	.cal {
		padding:15px;
	}
	
	.logo {
		width:200px;
		margin:0 auto;
		display:block;
	}
	
	.label_text2 {
		margin:0px;
	}
	
	.cal_row {
		margin:0px;
	}
	
	.ui-slider {
		margin:0px;
	}
	
	.cal_info .col-lg-4 {
		padding-bottom:0px;
		padding-top:0px;
	}
	
	.ui-spinner-input {
		padding:0 5px;
	}
	
	
}


  .custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f4f4f4;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-file-upload:hover {
    background-color: #e0e0e0;
    border-color: #999;
}

.auth-page,
.auth-page * {
    box-sizing: border-box;
}

body.login-page {
    padding-top: 0;
}

.auth-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 42px 16px 28px;
    position: relative;
    overflow: hidden;
    font-family: 'Gilroy', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-page__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.auth-page__decor--flower-top {
    width: 150px;
    height: 150px;
    top: -18px;
    left: -12px;
    opacity: .22;
}

.auth-page__decor--star-top {
    width: 145px;
    height: 145px;
    top: 36px;
    right: -10px;
    opacity: .17;
}

.auth-page__decor--rings-left {
    width: 128px;
    height: 128px;
    bottom: 310px;
    left: -10px;
    opacity: .13;
}

.auth-page__decor--star-right {
    width: 92px;
    height: 92px;
    top: 32%;
    right: -28px;
    opacity: .13;
}

.auth-page__decor--arc-bottom {
    width: 160px;
    height: 160px;
    bottom: -110px;
    left: 44px;
    opacity: .16;
}

.auth-page__card {
    width: min(100%, 450px);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 42px 38px 36px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 14px 42px var(--ui-card-shadow), 0 4px 12px rgba(0, 0, 0, .04);
}

.auth-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.auth-page__logo .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-page__logo .brand img {
    display: block;
    width: 178px;
    max-width: 100%;
    height: auto;
}

.auth-page__logo-img {
    display: block;
    width: 136px;
    height: auto;
}

.auth-page__title {
    margin: 0 0 8px;
    color: var(--ui-text);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.auth-page__subtitle {
    margin: 0 0 32px;
    color: var(--ui-primary-mid);
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.auth-page__notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1.5px solid var(--ui-primary-soft);
    border-radius: 12px;
    color: var(--ui-primary-deep);
    background: var(--ui-primary-pale);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.auth-page__notice svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.auth-page__field {
    margin-bottom: 22px;
}

.auth-page__label {
    display: block;
    margin-bottom: 10px;
    color: var(--ui-primary-deep);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.auth-page__input-wrap {
    position: relative;
}

.auth-page__input {
    width: 100%;
    height: 56px;
    padding: 0 54px 0 18px;
    border: 2px solid var(--ui-primary-soft);
    border-radius: 14px;
    outline: none;
    color: var(--ui-text);
    background: var(--ui-input-bg);
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.auth-page__input::placeholder {
    color: var(--ui-placeholder);
    opacity: 1;
}

.auth-page__input:focus {
    border-color: var(--ui-primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--ui-focus-shadow);
}

.auth-page__field.-error .auth-page__input {
    border-color: var(--ui-primary);
}

.auth-page__input-icon,
.auth-page__password-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--ui-primary-muted);
    transform: translateY(-50%);
}

.auth-page__input-icon svg,
.auth-page__password-toggle svg {
    width: 24px;
    height: 24px;
}

.auth-page__password-toggle {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.auth-page__password-toggle:hover,
.auth-page__password-toggle:focus {
    color: var(--ui-primary);
    outline: none;
}

.auth-page__error {
    display: none;
    margin-top: 10px;
    color: var(--ui-primary-deep);
    font-size: 16px;
    line-height: 1.35;
}

.auth-page__forgot {
    margin: -6px 0 26px;
    text-align: right;
}

.auth-page__forgot a {
    color: var(--ui-primary);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.auth-page__forgot a:hover {
    text-decoration: underline;
}

.auth-page__captcha {
    display: flex;
    justify-content: center;
    min-height: 78px;
    margin: -12px 0 18px;
    overflow: hidden;
}

.auth-page__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--ui-gradient-start) 0%, var(--ui-gradient-end) 100%);
    box-shadow: 0 10px 22px var(--ui-button-shadow);
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.auth-page__submit:hover,
.auth-page__submit:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 20px 36px var(--ui-button-shadow-hover);
}

.auth-page__submit--secondary {
    color: var(--ui-primary-deep);
    background: var(--ui-primary-pale);
    box-shadow: none;
}

.auth-page__submit--secondary:hover,
.auth-page__submit--secondary:focus {
    color: var(--ui-primary-deep);
    box-shadow: 0 12px 26px var(--ui-button-shadow-soft);
}

.auth-page__submit.loading,
.auth-page__submit.loaded {
    opacity: .75;
    pointer-events: none;
}

.auth-page__divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 24px;
    color: var(--ui-primary-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.auth-page__divider::before,
.auth-page__divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--ui-primary-soft);
}

.auth-page__register {
    margin: 0;
    color: var(--ui-primary-mid);
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.auth-page__register a {
    color: var(--ui-primary);
    font-weight: 800;
    text-decoration: none;
}

.auth-page__register a:hover {
    text-decoration: underline;
}

.auth-page__footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    color: var(--ui-primary-footer);
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.auth-page__footer p {
    margin: 0;
}

.auth-page__footer p + p {
    margin-top: 10px;
}

.auth-page__footer a {
    color: var(--ui-primary);
    text-decoration: none;
}

.auth-page__footer a:hover {
    text-decoration: underline;
}

.auth-page__blocked {
    margin: 0;
    color: var(--ui-text);
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
}

.auth-page__register--return {
    margin-top: 24px;
}

.code-error {
    display: block;
    margin-top: 6px;
    color: var(--ui-primary-deep);
    font-size: 12px;
}

.auth-page .alert {
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.45;
}

.auth-page .alert-success {
    color: var(--ui-primary-deep);
    background: var(--ui-primary-pale);
    border: 1px solid var(--ui-primary-soft);
}

.auth-page .form-group {
    margin: 0;
}

@media (max-width: 860px) {
    .auth-page {
        padding: 32px 16px 24px;
    }

    .auth-page__card {
        width: min(100%, 450px);
        padding: 36px 28px 32px;
        border-radius: 22px;
    }

    .auth-page__logo {
        margin-bottom: 24px;
    }

    .auth-page__logo-img {
        width: 128px;
    }

    .auth-page__title {
        font-size: 26px;
    }

    .auth-page__subtitle {
        margin-bottom: 26px;
        font-size: 16px;
    }

    .auth-page__notice {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15px;
    }

    .auth-page__label {
        font-size: 15px;
    }

    .auth-page__input {
        height: 54px;
        padding: 0 52px 0 16px;
        border-width: 2px;
        border-radius: 14px;
        font-size: 17px;
    }

    .auth-page__input-icon,
    .auth-page__password-toggle {
        right: 16px;
    }

    .auth-page__forgot {
        margin-bottom: 24px;
    }

    .auth-page__forgot a {
        font-size: 15px;
    }

    .auth-page__captcha {
        min-height: 78px;
        margin-top: -12px;
    }

    .auth-page__submit {
        min-height: 56px;
        border-radius: 14px;
        font-size: 19px;
    }

    .auth-page__divider {
        margin: 26px 0 22px;
    }

    .auth-page__register,
    .auth-page__footer {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .auth-page {
        padding-inline: 12px;
    }

    .auth-page__card {
        padding: 34px 18px 32px;
    }

    .auth-page__input {
        font-size: 18px;
    }

    .auth-page__captcha {
        transform: scale(.88);
        transform-origin: top center;
        margin-bottom: 8px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal.show {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    max-width: 500px;
    margin: 28px auto;
    pointer-events: none;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 56px);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 21, 19, .18);
    outline: 0;
}

.modal-header,
.modal-body {
    padding: 16px 20px;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(23, 21, 19, .12);
}

.modal-title {
    margin: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background: rgba(23, 21, 19, .5);
}

.modal-open {
    overflow: hidden;
}

.close {
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
}

#exampleModal .modal-dialog {
    width: min(460px, calc(100vw - 32px));
    max-width: none;
    margin: 10vh auto 0;
}

#exampleModal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    color: var(--ui-text);
    background: #fff;
    box-shadow: 0 24px 70px rgba(26, 42, 156, .18);
    font-family: 'Manrope', Arial, sans-serif;
}

#exampleModal .modal-header {
    align-items: center;
    padding: 24px 26px 18px;
    border-bottom: 1px solid var(--ui-primary-pale);
}

#exampleModal .modal-title {
    color: var(--ui-primary-deep);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

#exampleModal .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    color: var(--ui-primary-muted);
    cursor: pointer;
}

#exampleModal .close:hover {
    color: var(--ui-primary);
    background: var(--ui-primary-pale);
}

#exampleModal .modal-body {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 26px 28px;
}

#exampleModal .col-6 {
    width: 100%;
    max-width: none;
    padding: 0;
}

#exampleModal .list-group {
    display: grid;
    gap: 10px;
}

#exampleModal .list-group-item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 72px;
    padding: 14px 16px;
    border: 2px solid var(--ui-primary-soft);
    border-radius: 14px;
    color: var(--ui-primary-deep);
    background: var(--ui-input-bg);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#exampleModal .list-group-item.active {
    border-color: var(--ui-primary);
    color: #fff;
    background: linear-gradient(135deg, var(--ui-gradient-start) 0%, var(--ui-gradient-end) 100%);
}

#exampleModal .list-group-item:hover,
#exampleModal .list-group-item:focus {
    box-shadow: 0 12px 26px var(--ui-button-shadow-soft);
    transform: translateY(-1px);
}

#exampleModal .list-group-item img {
    flex: 0 0 auto;
}

.spinner-border {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: text-bottom;
    border: 4px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--ui-primary);
}

.mt-3 {
    margin-top: 16px;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.stage,
.landing {
    --stage-blue: var(--ui-primary);
    --stage-blue-deep: var(--ui-primary-deep);
    --stage-blue-soft: var(--ui-primary-soft);
    --stage-blue-pale: var(--ui-primary-pale);
    --stage-blue-input: var(--ui-input-bg);
    --stage-blue-placeholder: var(--ui-placeholder);
    --stage-focus-shadow: var(--ui-focus-shadow);
    --stage-button-shadow: var(--ui-button-shadow);
    --stage-button-shadow-hover: var(--ui-button-shadow-hover);
    --stage-button-gradient: linear-gradient(135deg, var(--ui-gradient-start) 0%, var(--ui-gradient-end) 100%);
}

.landing__header-info-progress span,
.stage__header-info-progress span,
.stage__form-info span,
.stage__form-group-code-repeat,
.stage__form-actions-back,
.stage .text-success,
.stage .-green,
.stage a {
    color: var(--stage-blue) !important;
}

.landing__form-group input,
.stage__form-group input,
.stage__form-group select,
.stage__form-group-code input {
    background: var(--stage-blue-input);
    border: 2px solid var(--stage-blue-soft);
    color: var(--ui-text);
}

.landing__form-group input:focus,
.stage__form-group input:focus,
.stage__form-group select:focus,
.stage__form-group-code input:focus {
    background: #fff;
    border-color: var(--stage-blue);
    box-shadow: 0 0 0 3px var(--stage-focus-shadow);
}

.landing__form-group input::placeholder,
.stage__form-group input::placeholder,
.stage__form-group select::placeholder {
    color: var(--stage-blue-placeholder);
}

.stage__form-info,
.stage .help_text,
.stage .alert-success {
    background: var(--stage-blue-pale) !important;
    border: 1px solid var(--stage-blue-soft);
    color: var(--stage-blue-deep) !important;
}

.landing__form-btn,
.stage__form-actions-submit,
.stage .custom-file-upload,
.stage__form-group-file label {
    border: 0 !important;
    color: #fff !important;
    background: var(--stage-button-gradient) !important;
    box-shadow: 0 10px 22px var(--stage-button-shadow);
    text-decoration: none;
}

.landing__form-btn:hover,
.landing__form-btn:focus,
.stage__form-actions-submit:hover,
.stage__form-actions-submit:focus,
.stage .custom-file-upload:hover,
.stage .custom-file-upload:focus,
.stage__form-group-file label:hover,
.stage__form-group-file label:focus {
    color: #fff !important;
    box-shadow: 0 20px 36px var(--stage-button-shadow-hover);
}

.stage__form-group-radio .radio label::before,
.stage__form-group-radio-work .radio label::before,
.stage__form-group-checkbox input:checked + label::before {
    border-color: var(--stage-blue) !important;
}

.stage__form-group-radio .radio input:checked + label::after,
.stage__form-group-radio-work .radio input:checked + label::after {
    background: var(--stage-blue) !important;
}

.stage__form-group-checkbox input:checked + label::after {
    color: var(--stage-blue) !important;
}

.stage .spinner-border {
    display: none !important;
}

.stage,
.stage__form,
.stage__form-group,
.stage__form-group-checkbox,
.stage__form-group-checkbox label,
.stage__form-group-checkbox span,
.stage__form-group-checkbox a {
    min-width: 0;
}

.stage__form {
    box-sizing: border-box;
}

.stage__form-group-checkbox {
    max-width: 100%;
}

.stage__form-group-checkbox label {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.stage__form-group-checkbox label span,
.stage__form-group-checkbox > span,
.stage__form-group-checkbox > span > *,
.stage__form-group-checkbox a,
.stage .form_row a span,
.stage .text-danger {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.stage .text-danger {
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .stage {
        width: 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        box-sizing: border-box;
    }

    .stage__form,
    .stage__form.regform {
        width: 100% !important;
        max-width: 570px !important;
    }

    .stage__form-row,
    .stage__form-row[style] {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .stage__form-group-file {
        grid-template-columns: 1fr;
    }

    .stage__form-group-file p,
    .stage__form-group-file span {
        grid-column: auto;
        justify-self: center;
    }

    .stage__form-group-file img {
        max-width: 100%;
        justify-self: center;
    }
}

@media (max-width: 575px) {
    .stage {
        margin-top: 32px;
        margin-bottom: 60px;
        gap: 24px;
    }

    .stage__form {
        gap: 28px;
    }

    .stage__form-info {
        padding: 16px;
    }

    .stage__form-group-checkbox:not(:last-child) {
        margin-bottom: 14px;
    }

    .stage__form-group-checkbox label {
        gap: 10px;
        font-size: 13px;
        line-height: 18px;
    }

    .stage__form-group-checkbox label::before {
        width: 24px !important;
        height: 24px !important;
        border-radius: 6px !important;
    }

    .stage__form-group-checkbox input:checked + label::after {
        left: 5px !important;
        top: 3px !important;
        font-size: 18px !important;
    }

    .stage__form-group-code {
        gap: 8px;
    }

    .stage__form-group-code input {
        flex: 0 0 48px;
        width: 48px;
        height: 52px;
    }

    .stage .text-danger {
        padding: 14px !important;
        font-size: 13px;
        line-height: 18px;
    }

    .stage__form-actions {
        gap: 14px;
    }

    .stage__form-actions--card {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .stage__form-actions--card .btn_back {
        justify-self: start;
    }

    .stage__form-actions--card .stage__form-actions-submit {
        position: static;
        transform: none;
    }
}

.notfound .mantra .it {
    font-size: 49px;
}

.qr {
    padding: 0 0 120px;
    position: relative;
    overflow: hidden
}

.qr ul {
    list-style: none;
    padding: 0;
    counter-reset: req
}

.qr li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--rule);
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 14px
}

.qr li:before {
    content: counter(req, decimal-leading-zero);
    counter-increment: req;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .1em
}

.qr ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.qr ul a:hover {
    color: var(--blue);
}