/**
SITES VARS
 */
:root {
    /**
    General
     */
    --desktop-container-width: 1448px;
    --tab-hor-container-width: 92.29%;
    --tab-ver-container-width: 89.58%;
    --mobile-container-width: 90.70%;
    --row-margin: -10px;
    --grid-padding: 10px;
    --general-font: "Inter", sans-serif;

    /**
    colors
     */
    --general-blue: #322AD7;
    --dark-blue: #193475;
    --semy-blue-strong: #4a4cf5;
    --semy-blue-strong2: #5862f5;
    --semy-blue-light: #7d97f4;
    --semy-blue-light2: #ebf4fc;
    --accent-carrot: #fe7062;

    /**
    font colors
     */
    --font-white:#fff;
    --font-black:#000;
    --font-black2:#414141;
    --font-black3:#5d5d5d;
    --font-black4:#333;
    --font-black5:#666;
    --font-yellow:#FCCD1C;
    --font-grey:#758089;

    /**
    margins
     */
    --large-margin: 80px;
    --big-margin: 60px;
    --medium-margin: 40px;
    --small-margin: 20px;
    --tiny-margin:10px;
}

html {
    scroll-behavior: smooth;
}

/**
GRIDS
 */
.container{
    width: var(--desktop-container-width);
    margin:0 auto;
    height: 100%;
}
textarea {
    resize: none;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--row-margin);
}
.grid{
    padding:0 var(--grid-padding);
}
.w100, .w1-1{
    width:100%;
}
.w1-2{
    width:50%;
}
.w1-3{
    width:calc(100%/3);
}
.w2-3{
    width:calc((100%/3) * 2);
}
.w1-4{
    width:calc(100%/4);
}
.w3-4{
    width:calc((100%/4) * 3);
}
.w1-6{
    width:calc(100% / 6)
}

/**
Features
 */
.align-center{
    align-items: center;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.box{
    padding-top:120px;
    padding-bottom:40px;
}
.visible-mobile{
    display:none;
}
.visible-desktop{
    display: block;
}
.mt-20{
    margin-top:var(--small-margin)
}
.success-label, .error-label{
    padding:10px 20px;
    margin:var(--small-margin) 0;
    color:var(--font-white);
    border-radius:12px;
    font-weight:500;
}
.success-label{
    background: var(--general-blue);
}
.error-label{
    background: var(--accent-carrot);
}

body{
    font-family: var(--general-font);
    color: var(--font-black4);
    font-size:14px;
    overflow-x: hidden;
}
a{
    color:var(--general-blue);
    text-decoration:none;
    transition: all ease-in .2s;
}
a:hover{
    color:var(--semy-blue-light);
}

.btn{
    display:inline-block;
    padding:3px 20px;
    cursor: pointer;
    text-align: center;
    transition: all ease-in .2s;
    border-radius:12px;
}
.btn-blue{
    background:var(--general-blue);
    border:1px solid var(--general-blue);
    color:var(--font-white);
}
.btn-blue:hover,
.btn-blue:focus{
    background:var(--semy-blue-strong2);
    border:1px solid var(--semy-blue-strong2);
    color:var(--font-white);
}
.btn-blue-bordered{
    background:transparent;
    border:1px solid var(--general-blue);
    color:var(--general-blue);
}
.btn-blue-bordered:hover,
.btn-blue-bordered:focus {
    background:transparent;
    border:1px solid var(--semy-blue-strong2);
    color:var(--semy-blue-strong2);
}

.btn-carrot-bordered{
    background:transparent;
    border:1px solid var(--accent-carrot);
    color:var(--accent-carrot);
}
.btn-carrot-bordered:hover,
.btn-carrot-bordered:focus {
    background:transparent;
    border:1px solid var(--accent-carrot);
    color:var(--accent-carrot);
    opacity:.7;
}
.mobile-menu {
    display:none;
}
.anchor {
    position: absolute;
    top: -112px;
}
/**
Header
 */
header{
    height:112px;
    position: fixed;
    z-index:1000;
    background:#fff;
    width: 100%;
}
.logo{
    width: 195px;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-wrapper nav {
    display: flex;
    align-items: center;
}
.header-wrapper nav div{
    font-size: 18px;
    font-weight: bold;
    margin-right: 40px;
}
.header-wrapper nav a{
    color: var(--dark-blue);
}
.header-wrapper nav a:hover{
    color:var(--font-black3);
}
.header-wrapper nav a:last-child{
    margin:0;
}
.header-wrapper .side-elements {
    display: flex;
    align-items: center;
    // margin-right: 40px;
}
.header-wrapper .side-elements .auth-button {
    width: 140px;
    text-align: center;
    border: 1px solid;
    border-color: var(--general-blue);
    border-radius: 24px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    color: var(--font-white);
    background: var(--general-blue);
 }
 .header-wrapper .side-elements .auth-button:hover {
    background: var(--font-white);
    color: var(--general-blue);
 }
.header-wrapper .side-elements .login-button {
    margin-right: 16px;
    background: #fff;
    color: var(--general-blue);
    transition: all .3s;
 }
 .header-wrapper .side-elements .login-button:hover {
    color: #fff;
    background: var(--general-blue);
 }
.icon-lang {
    width:24px;
    height:24px;
    margin-right: 8px;
}
.drop-down{
    position:relative;
    display:inline-block;
    background:#fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.drop-down .current{
    font-size: 18px;
    font-weight: bold;
    color: var(--general-blue);
}
.drop-down .langs{
    display:inline-block;
    position:absolute;
    top:38px;
    right: 0px;
    background:#fff;
    padding:16px;
    transition: all ease-in .2s;
    opacity: 0;
    z-index:-2;
    box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.34);
    border-radius: 8px;
    visibility: hidden;
}
.drop-down:hover .langs{
    opacity: 1;
    z-index:2;
    visibility: visible;
}
.drop-down .langs .dropped{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
    display: block;
}
.drop-down .langs .dropped a{
    color: var(--dark-blue);
}
.drop-down .langs .dropped:last-child{
    margin-bottom: 0;
}
.drop-down .langs .dropped:hover a{
    color: var(--general-blue);
}
.mobile-menu-button {
    display: none;
}
/**
Banner
 */
.banner {
    background: var(--general-blue);
    padding-top: 112px;
}
.banner-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 0;
}
.banner-label-white {
    margin-right: 16px;
    color: var(--general-blue);
    font-size: 12px;
    font-weight: bold;
    border-radius: 100px;
    padding: 8px 12px;
    background: var(--font-white);
}

.banner-label-yellow {
    color: var(--general-blue);
    font-size: 12px;
    font-weight: bold;
    border-radius: 100px;
    padding: 8px 12px;
    background: var(--font-yellow);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.banner-text {
    color: var(--font-white);
}
.banner-header {
    font-size: 18px;
    font-weight: bold;
}
.banner-description {
    font-size: 14px;
}
/**
Main page
 */
.main-page {
    background-image: url("/static/img/desktop-main-bg.png");
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    padding-bottom: 135px;
}
.main-decoration {
    position: absolute;
    top: -164px;
    right: -282px;
}
.main-wrapper {
    display: flex;
}
.main-block-left {
    width: 750px;
    margin-top: 137px;
}
.main-block-right {
    z-index: 9;
    margin-top: 291px;
    transform: translateX(95px);
}
.stickers {
    display: flex;
}
.main-stickers {
    margin-bottom: 32px;
}
.sticker {
    display: flex;
    align-items: center;
    background: var(--font-yellow);
    color: var(--dark-blue);
    border-radius: 100px;
    padding: 8px 12px;
    margin-right: 16px;
    font-size: 12px;
    font-weight: bold;
}
.icon-sticker {
    margin-right: 8px;
    margin-bottom: 1px;
}
.header {
    font-size: 64px;
    font-weight: bold;
    color: var(--general-blue);
    line-height: 1.2;
}
.main-header {
    margin-bottom: 32px;
}
.description {
    font-size: 24px;
    color: var(--dark-blue);
}
.main-description {
    margin-bottom: 32px;
}
.main-contact-button {
    background: var(--general-blue);
    color: var(--font-white);
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    padding: 13px 70px;
    display: inline-block;
}
.main-video {
    width: 694px;
    border-radius: 16px;
}
/**
Features page
 */
.features {
    position: relative;
}
.features-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.features-container {
    display: flex;
    justify-content: end;
}
.features-info {
    width: 750px;
    margin-top: 120px;
}
.features-stickers {
    margin-bottom: 24px;
}
.features-header {
    margin-bottom: 24px;
}
.features-description {
    margin-bottom: 40px;
}
.features-list-item {
    display: flex;
    margin-bottom: 24px;
}
.icon-features-list-item {
    width: 64px;
    margin-right: 24px;
}
.features-list-item-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}
.features-list-item:last-child {
    margin-bottom: 100px;
}
.features-list-item-header {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-blue);
}
.features-list-item-description {
    font-size: 14px;
    color: var(--font-grey);
}
/**
Pricing page
 */
.pricing {
    position: relative;
    background-image: url("/static/img/desktop-pricing-bg.png");
    background-size: 100% 100%;
    overflow: hidden;
}
.pricing-stickers {
    justify-content: center;
    margin: 120px 0 24px;
}
.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}
.pricing-description {
    text-align: center;
    margin-bottom: 24px;
}
.pricing-labels {
    width: 1060px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 72px;
}
.pricing-labels-item {
    background: var(--font-white);
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0px 12px 24px #E6CFE6;
}
.icon-pricing-labels-item {
    margin-right: 24px;
}
.pricing-labels-item-text {
    width: 244px;
    font-size: 16px;
    font-weight: bold;
    color: var(--general-blue);
}
.pricing-cards {
    display: flex;
    justify-content: space-between;
}
.pricing-cards-item-wrapper {
    position: relative;
    padding: 8px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9;
    margin-right: 40px;
    width: 100%;
    transition: .3s all;
}
.pricing-cards-item-wrapper:hover {
    width: 110%;
    transform: scale(1.04);
}
.pricing-cards-item-wrapper:last-child {
    margin-right: 0;
}
.pricing-cards-item-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    z-index: -1;
    background: linear-gradient(135deg, #FCCD1C, #EBF4FC 55%, #322AD7);
    visibility: hidden;
}
.pricing-cards-item-wrapper:hover::before {
    visibility: visible;
}
.pricing-cards-item {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 32px;
}
.icon-pricing-basic {
    width: 80px;
}
.icon-pricing-pro {
    width: 164px;
}
.icon-pricing-premium {
    width: 110px;
}
.pricing-cards-item-header {
    margin: 24px 0 8px;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-blue);
}
.pricing-cards-item-description {
    font-size: 14px;
    color: var(--font-grey);
    margin-bottom: 40px;
}
.pricing-cards-item-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--general-blue);
}
.pricing-cards-item-period {
    font-size: 14px;
    color: var(--font-grey);
    margin-bottom: 40px;
}
.pricing-cards-item-list {
    margin-bottom: 40px;
}
.pricing-cards-item-list-item {
    display: flex;
    margin-bottom: 16px;
}
.pricing-cards-item-list-item-icon {
    width: 30px;
    margin-right: 10px;
    background-image: url("/static/img/icons/icon-tick-list.svg");
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
}
.pricing-cards-item-wrapper:hover .pricing-cards-item-list-item-icon {
    background-image: url("/static/img/icons/icon-tick.svg");
}
.pricing-cards-item-list-item-description {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue);
}
.pricing-cards-item-info {
    display: flex;
    margin-bottom: 40px;
}
.pricing-cards-item-list-item-description {
    font-size: 14px;
    color: var(--dark-blue);
}
.pricing-contact-button {
    background: var(--font-white);
    color: var(--general-blue);
    border: 1px solid;
    border-color: var(--general-blue);
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    padding: 12px 0;
    width: 100%;
    transition: .5s all;
    display: block;
    text-align: center;
}
.pricing-cards-item-wrapper:hover .pricing-contact-button {
    background: var(--general-blue);
    color: var(--font-white);
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    padding: 12px 0;
    width: 100%;
}
.pricing-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    color: var(--dark-blue);
}
.pricing-info-icon {
    width: 24px;
}
.pricing-info-disclaimer {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 80px;
}
/**
Platform page
 */
 .platform {
    position: relative;
 }
 .platform-container {
    position: relative;
 }
.platform-wrapper {
    margin: 120px 0;
    display: flex;
    justify-content: space-between;
 }
.platform-info {
    width: 902px;
}
.platform-header {
    margin: 24px 0;
}
.platform-description {
    margin-bottom: 24px;
}
.platform-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.platform-contact-button {
    background: var(--general-blue);
    color: var(--font-white);
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    padding: 13px 65px;
    display: inline-block;
}
/**
Feedback page
 */
 .feedback {
    position: relative;
 }
.feedback-wrapper {
    margin: 120px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feedback-block-left {
    width: 750px;
}
.feedback-header {
    margin: 24px 0;
}
.feedback-block-right {
    width: 600px;
}
.feedback-form {
    padding: 48px;
    border-radius: 32px;
    background: #EBF4FC;
}
.feedback-form input,
.feedback-form textarea {
    border: 1px solid #E6E6E6;
    border-radius: 32px;
    padding: 16px 24px;
}
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.feedback-form-button {
    background: var(--general-blue);
    color: var(--font-white);
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    border: none;
    width: 100%;
    padding: 13px 0;
    cursor: pointer;
    transition: all .3s;
}
.feedback-form-button:hover {
    color: var(--general-blue);
    background: var(--font-white);
}
/**
For all pages
 */
.box-header{
    margin-bottom: var(--large-margin);
}
.pre-heading{
    text-transform: uppercase;
    font-size:20px;
    color:var(--font-black3);
    text-align: center;
    font-weight:600;
}
.heading{
    text-align: center;
    margin: var(--medium-margin) 0;
}
.heading h2{
    font-size:36px;
    font-weight:700;
}
.sub-heading{
    text-align: center;
    font-size: 16px;
    color:var(--font-black3);
}


/**
Second screen
 */
.features h3{
    font-size:24px;
}
.icons .icon{
    color:var(--general-blue);
    margin-top: var(--medium-margin);
    margin-bottom: var(--small-margin);
}
.icons .icon .feather{
    width:40px;
    height:40px;
}
.icons span{
    font-size:16px;
    font-weight:500;
}

/**
Component card
 */
.card-theme .card-data{
    margin-top:var(--big-margin);
    background:var(--semy-blue-light);
    color:#fff;
    padding:20px 30px;
    border-radius: 12px;
}
.card-theme .card-data .pseudo-btn{
    padding:3px 20px;
    border-radius:12px;
    background:var(--semy-blue-strong);
    font-weight:600;
}
.card-theme .card-data .carrot-pseudo .pseudo-btn{
    background:var(--accent-carrot);
}
.card-theme .card-data .newest-version{
    color:var(--font-black);
    font-size:18px;
    text-transform: uppercase;
    margin-bottom:var(--small-margin);
    font-weight:600;
}
.card-theme .card-data .d3-d-secure-2{
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.card-theme .card-data .d3-d-secure-2 .big-text{
    font-size:30px;
    font-weight:600;
}
.card-theme .card-data .text-about-3ds{
    margin:var(--medium-margin) 0;
    font-size:18px;
}


/**
prices
 */
.price-panel{
    padding:20px;
    border-radius: 12px;
    box-shadow:0 1px 30px rgba(0,0,0,.1);
}
.pp-header{
    font-size:30px;
    font-weight:600;
    margin-bottom: var(--small-margin);
}
.pp-sub-header{
    font-size:14px;
    color:var(--font-black2);
    margin-bottom: var(--small-margin);
    height:42px;
}
.pp-price{
    margin-bottom: var(--medium-margin);
    height:71px;
}
.pp-price .price-main{
    font-size:36px;
    font-weight:300;
    display: block;
}
.pp-price .price-about{
    font-size: 18px;
    display: block;
    color:var(--font-black2);
    margin-top:-10px;
}
.pp-features{
    margin-bottom: var(--medium-margin);
}
.pp-f{
    display: flex;
    margin-bottom: var(--tiny-margin);
}
.pp-f .pp-f-icon{
    color:var(--accent-carrot);
    margin-right: var(--tiny-margin);
}
.pp-f .pp-f-icon .feather{
    width:20px;
    height:20px;
}

.description-panel{
    padding:20px;
    background: var(--semy-blue-strong);
    color:#fff;
    border-radius: 12px;
    box-shadow:0 1px 30px rgba(0,0,0,.1);
    height:100%;
}
.dp-main{
    height:237px;
}
.dp-header{
    font-weight:600;
    font-size:30px;
    margin-bottom: var(--big-margin);
}
.dp-sub-header{
    font-size:18px;
}

.about-terms{
    margin-top:var(--medium-margin);
    font-size:16px;
    color:var(--font-black2);
}

/**
Testimonials
 */

.testimonial{
    /*border-radius: 12px;*/
    /*box-shadow:0 1px 30px rgba(0,0,0,.1);*/
    background: #fff;
}
.testimonial .logo-testimonial{
    display: flex;
    align-items: center;
    justify-content: center;
    background:var(--semy-blue-light2);
    min-height:320px;
    margin-left:-10px;
}
.testimonial .logo-testimonial img{
    height:160px;
}

.testimonial .about-testimonial{
    position:relative;
    min-height:300px;
    padding-right: 20px;
}
.testimonial .about-testimonial .company-name{
    font-size:36px;
    font-weight:700;
}
.testimonial .about-testimonial .company-info{
    font-size:18px;
    font-weight:700;
    color:var(--font-black5);
    margin-bottom:var(--medium-margin)
}
.testimonial .about-testimonial .company-testimonial{
    color:var(--font-black4);
}
.testimonial .about-testimonial .company-ceo{
    position:absolute;
    bottom:20px;
    font-style: italic;
}
.sub-testimonials{
    margin:var(--big-margin) 0;
    font-size:16px;
    font-weight:500;
}

.navi{
    text-align: center;
}
.navi .navigation{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:10px;
    color:var(--semy-blue-strong);
    cursor:pointer;
    transition: all ease-in .2s;
}
.navi .navigation .feather{
    width:80px;
    height:80px;
}

/**
Sandbox
 */
.sandbox-text{
    font-weight:500;
    color:var(--font-black4);
}
.sandbox-text .video-box{
    color:var(--accent-carrot);
    /*height:360px;*/
    min-height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#fff;
    border-radius: 12px;
    box-shadow: 0 1px 30px rgba(0,0,0,.1);
    margin-top: var(--big-margin);
}
.sandbox-text .video-box .feather{
    width:100px;
    height:100px;
}
.sandbox-bottom{
    margin-top: var(--medium-margin);
    font-size:18px;
}

/**
form
 */
.form-wrapper{
    margin-top:var(--big-margin);
}
.form-wrapper .btn{
    font-size:18px;
}
.form-input{
    width:100%;
    display:block;
    border-radius:12px;
    border:1px solid var(--semy-blue-strong2);
    min-height: 35px;
    padding:5px 20px;
    margin-bottom:20px;
}
textarea.form-input{
    min-height:200px;
}
label{
    display:inline-block;
    margin-bottom:5px;
}


.input-wrapper{
    position:relative;
    min-height: 35px;
}
.input-wrapper .label{
    position:absolute;
    left:20px;
    top:6px;
    color:var(--font-black5);
    transition: all ease-in .2s;
}
.input-wrapper .label.active{

}
.note-form{
    margin-top:var(--big-margin);
    font-size:16px;
}


/**
footer
 */
 .footer-wrapper{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid #f1f2f5;
   padding: 30px 0;
 }
.footer-logo-and-certs{
   display: flex;
   align-items: center;
}
.footer-logo {
    width: 208px;
    margin-right: 16px;
}
.footer-cert {
    width: 75px;
}
.footer-link-item {
    font-size: 14px;
    color: var(--dark-blue);
    margin-right: 24px;
}
.footer-link-item:last-child {
    margin-right: 0;
}
.footer-visa {
    width: 150px;
}
/**
Colors for boxes
 */
.second-screen,
.testimonials,
.form-message{
    background: var(--semy-blue-light2);
}

/**
Modal
 */

.simple-modal,
.simple-modal.unactive{
    opacity:0;
    z-index:-1000;
    /*transition: opacity .2s ease, visibility .2s ease;*/
    visibility: hidden;
    position: relative;
    display:none;
}
.simple-modal.active{
    opacity:1;
    z-index:1000;
    /*transition: opacity ease-in .2s;*/
    visibility: visible;
    /*animation: showBlock .3s linear forwards;*/
    height:100%;
    display:block;
}
@keyframes showBlock {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes hideBlock {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.simple-modal.active .overlay{
    position:fixed;
    z-index:10000;
    background:rgba(0,0,0,0.4);
    top:0;
    right:0;
    width:100%;
    height:100%;
    transition: all ease-in;
    animation: showBlock .1s ease-in forwards;
}
.simple-modal.unactive .overlay{
    animation: hideBlock .1s ease-in forwards;
}

.simple-modal.active .overlay .modal{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right:0;
    left:0;
    margin:0 auto;
    max-width:450px;
    background:#fff;
    border-radius: 12px;
    padding:20px;
}
.simple-modal.active .close-modal{
    position:absolute;
    top:20px;
    right:20px;
    cursor:pointer;
}

/**
Preloader
 */
.preloader {
    /*фиксированное позиционирование*/
    position: fixed;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #fff;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 1001;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: var(--semy-blue-strong2);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}