body.lock,
.wrapper.lock {
    overflow: hidden;
}
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3001;
	background: rgba(69, 90, 100, 0.25);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s linear;
    overflow-x: hidden;
    display: none;
}
.modal--show { 
	opacity: 1;
	visibility: visible;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal--show .modal__dialog {
	transform: none;
}
.modal__dialog {
	display: flex;
	justify-content: center;
    align-items: center;
    width: 1000px;
    max-width: 95%;
	margin: 0 auto;
	transform: translate(0, -20px);
	transition: transform .3s ease-out;
}
.modal__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease-out;
    position: relative;
    padding: 30px 40px 20px;
}
.modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
}
.modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    position: relative;
}
.modal__header-page{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #989898;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.modal__header-title {
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
    color: #333;
}
.modal__download-progress {
    height: 4px;
    background-color: #31CE4A;
    border-radius: 300px;
    margin-bottom: 3px;
    width: 0;
}
.modal__download-progress.hide {
    visibility: hidden;
}
.modal--show .modal__download-progress {
    width: 100%;
    animation: animateProgress 18s ease-in-out;
    
}
@keyframes animateProgress {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
}
.modal__block-pdf {
    border: 1px solid #EAEBF2;
    overflow-y: auto;
    overflow-x: hidden;
/*    display: flex;*/
	display: block;
    width: 100%;
    justify-content: center;
}
.modal__preloader-pdf {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    width: 100%;
    margin-top: 62px;
}
.modal__preloader-pdf.hide {
    display: none;
}
.modal__preloader-pdf-column {
    height: 20px;
    margin-bottom: 20px;
    background-image: linear-gradient(90deg, #f5f5f5 0, #ebebeb 30%, #ebebeb 70%, #f5f5f5 100%);
    background-size: 200% 20px;
    background-position: 0 0;
    animation: loading 1.5s infinite;
}
@keyframes loading {
    0% {
        background-position:
            200% 0;
    }
    50% {
        background-position:
            100% 0;
    }
    100% {
        background-position:
            0 0;
    }
}
.modal__preloader-pdf-title {
    font-weight: 500;
    font-size: 21px;
    line-height: 26px;
    color: #B0B0B0;
    padding-top: 22px;
    padding-bottom: 42px;
}
.modal__wrap-pdf {
/*    display: none;*/
}
.modal__wrap-pdf.showe {
/*    display: block;*/
}


.modal__wrap-pdf {
     min-height: 600px;
}


.columns-pays{
    flex-wrap: wrap;
    flex: 0 0 100%;
    margin-left: -5.5px;
    margin-right: -5.5px;
    justify-content: flex-start !important;
}
.columns-pays .col-3{
    flex: 0 0 25%;
    width: 25%;
    padding-left: 5.5px;
    padding-right: 5.5px;
}
.link{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EAEBF2;
    border-radius: 5px;
    padding: 15px 10px 10px 10px;
    transition: all, 0.3s;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.link:hover, .link.active{
    border: 1px solid #7F46DB;
    transition: all, 0.3s;
}
.link:hover .link--info{
    color: #333333;
    transition: all, 0.3s;
}
.form-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.link .link--info{
    letter-spacing: -0.01em;
    color: rgba(51, 51, 51, 0.7);
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    margin-top: 3px;
}
.mb-11{margin-bottom:11px;}
.d-flex{display:flex;}
.w-100{width:100%;}
.mb--11{margin-bottom: -11px;}

.payment-form{
    flex-direction: column;
}
.style-select{
    background: #fff;
    border: 1px solid #EAEBF2;
    border-radius: 5px;
    outline: none;
    box-shadow: 0px 0px 1px rgb(26 32 36 / 32%), 0px 1px 2px rgb(91 104 113 / 32%);
    color: #333;
}
.select-style{
    padding: 8px 12px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    appearance: none;
    overflow: hidden;
    background: url("../../img/arrow.svg") no-repeat center right 10px / 0.8em;
    padding-right: 30px;
}
.style-select.--arrow{
    position: relative;
}
.style-select.--arrow::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 30px;
    display: block;
    background-image: url("../../img/arrow.svg");
    /* no-repeat center right 10px / 0.8em */
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-size: 0.8em;
    background-color: #fff;
    border-radius: 5px;

    top: 0;
    right: 0;
    z-index: 1;
}
.app-welcome .input{
    padding: 8px 12px;
}
.link .link--image{
    display: flex;
    width: 24px;
    height: 24px;
}
.workflow-form .form-action.form-action-row {
    padding-bottom: 0;
}
form.payment-form {
    margin-bottom: 10px;
}
@media (max-width:578px){
    .columns-pays .col-3{
        flex: 0 0 50%;
        width: 50%;
    }
}
@media (min-width:578px){
    .app-welcome .payment-form{
        min-height: 386px;
    }
}


.payment_loading{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	background: #8080802b;
	z-index: 999;
}
.payment_loading .spiner{
	width: 100px;
}


