* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #F6F8FD;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}

.main {
  width: 100%;
  height: 100vh;
  position: relative;
}
.main .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.main .bg-right {
  position: absolute;
  background: url("/cdn/krtech/barrier/img/BG_right.svg") center center/cover no-repeat;
  top: 0;
  right: 0;
  z-index: 1;
  width: 731px;
  height: 573px;
}
@media (max-width: 850px) {
  .main .bg-right {
    width: 500px;
    height: 391px;
  }
}
@media (max-width: 499px) {
  .main .bg-right {
    width: 319px;
    height: 236px;
  }
}
.main .bg-left {
  position: absolute;
  background: url("/cdn/krtech/barrier/img/BG_left.svg") center center/cover no-repeat;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 731px;
  height: 573px;
}
@media (max-width: 850px) {
  .main .bg-left {
    width: 500px;
    height: 391px;
  }
}
@media (max-width: 499px) {
  .main .bg-left {
    width: 319px;
    height: 236px;
  }
}
.main .second {
  z-index: 100;
  padding-bottom: 10px;
}

.middle {
  padding: 0px 20px 0px 20px;
  max-width: 774px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .middle {
    padding: 10px 10px;
  }
}
.middle__loader {
  width: 123px;
  height: 12px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.middle__h1 {
  font-family: "Arial";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #253C77;
  text-align: center;
  margin-top: 38px;
}
.middle__text {
  margin-top: 32px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
  color: #222733;
}
.middle_timer {
  color: #4971D0;
  font-weight: bold;
}

.bottom {
  margin: 251px 20px 25px 20px;
}
@media (max-height: 850px) {
  .bottom {
    margin: 180px 20px 25px 20px;
  }
}
@media (max-height: 745px) {
  .bottom {
    margin: 50px 20px 25px 20px;
  }
}
.bottom__krtech {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 499px) {
  .bottom_wrap {
    display: block;
  }
}
.bottom__logo {
  width: 222px;
  height: 72px;
  background: url("/cdn/krtech/barrier/img/logo.svg") center center/cover no-repeat;
}
@media (max-width: 480px) {
  .bottom__logo {
    width: 153px;
    height: 49px;
  }
}
.bottom__divider-block {
  width: 33px;
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom__divider {
  width: 1px;
  height: 56px;
  background: #CCD2E2;
  display: block;
}
.bottom__developer {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #253C77;
}
@media (max-width: 480px) {
  .bottom__developer {
    font-size: 10px;
    line-height: 18px;
  }
}
.bottom__support {
  margin-top: 30px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #222733;
}

.time-start-block {
  display: none;
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  color: #253C77;
  margin: 0 auto;
  margin-bottom: 32px;
}

.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}

.loader:after {
  color: #6DCA11;
  transform: rotateY(70deg);
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@-webkit-keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  0%, 100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: -9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #809CDF;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 1s infinite;
          animation: lds-ellipsis1 1s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 1s infinite;
          animation: lds-ellipsis2 1s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 1s infinite;
          animation: lds-ellipsis2 1s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 1s infinite;
          animation: lds-ellipsis3 1s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.support {
  text-align: center;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #222733;
}
