﻿@keyframes sk-bouncedelay {
  0%,
  10%,
  70%,
  100% {
    transform: scale(0);
  }

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

:root {
  --color-primary-light-1: rgba(105, 197, 255, 1);
  --color-primary-dark-1: #0068cb;
  --first-step-color: rgb(105, 197, 255);
  --second-step-color: rgb(204, 234, 255);
  --background-color: white;
  --warning-color: rgba(255, 201, 71, 0.16);
}

body {
  margin: 0;
}

.main-block {
  background-color: var(--background-color);
  border-radius: 5px;
  padding: 30px;
  z-index: 2;
  width: 53.8rem;
}

.response {
  margin-top: 3rem;
}

.title-wrapper {
  display: flex;
}

.row-loading {
}

.row__margin-top {
  margin-top: 20vh;
}

.row__margin-top_26px {
  margin-top: 26px;
}

.row__margin-top_20px {
  margin-top: 20px;
}

.row__margin-top_30px {
  margin-top: 30px;
}

.row__margin-top_50px {
  margin-top: 50px;
}

.row__warning-msg{
  background-color: var(--warning-color);
  border-radius: 5px;
  padding: 16px 20px;
}

.col {
  flex-direction: column;
}

.col__padding_left {
  padding-left: 19px;
}

.col__align-self_top{
  align-self: self-start;
}

.flex__center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex__end{
  display: flex;
  justify-content: flex-end;
}

@font-face {
  font-family: idt-sans-bold;
  src: url(../fonts/IDT_Sans_Bold.woff);
}

.font__bold{
  font-family: idt-sans-bold, sans-serif;
  line-height: 34px;
  font-size: 2.4rem;
  font-weight: 700;
}

.font__small{
  font-size: 12pt;
}

.title-site {
  text-align: left;
  margin-left: 2rem;
  align-self: center;
}

.loader {
  width: 100%;
  height: inherit;
}

.circle {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  background-color: var(--color-primary-dark-1);
  border-radius: 100%;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.animation-delay__first-step {
  animation-delay: 0.14s;
  background-color: var(--first-step-color);
}

.animation-delay__second-step {
  animation-delay: 0.28s;
  background-color: var(--second-step-color);
}

.hide {
  display: none;
}

.bg__main {
  background: url(../imges/bg.png) no-repeat fixed 0 0;
  background-size: cover;
  width: 100vw;
  height: 100vh;
}

.bg__world-map {
  background: url(../imges/icon-worldmap.svg) no-repeat 50% 40%;
  background-size: 83.5vw, 67.18vh;
  width: 100vw;
  height: 100vh;
}

.logo {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 2;
}

.claim-status {
  position: absolute;
  bottom: 12.5vh;
  left: 13.6vw;
  z-index: 1;
}

.btn-circle {
  width: 10rem;
  border-radius: 10rem;
}

.social-networks {
  color: var(--color-grey-light-3);
}

.social-networks a {
  color: var(--color-grey-light-3);
  font-weight: 700;
  font-size: 1.6rem;
}

.social-networks a:hover {
  text-decoration: none;
}

.description-message p {
  line-height: 3.4rem;
  font-size: 2rem;
  text-align: initial;
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 1px) {
  .claim-status {
    display: none;
  }
}

@media (min-width: 1000px) {
  .claim-status {
    display: block;
    left: 2vw;
  }

  .claim-status img {
    width: 50%;
  }
}

@media (min-width: 1238px) {
  .claim-status {
    left: 9vw;
  }

  .claim-status img {
    width: 60%;
  }
}

@media (min-width: 1400px) {
  .claim-status {
    left: 10vw;
  }

  .claim-status img {
    width: 80%;
  }
}

@media (min-width: 1600px) {
  .claim-status {
    left: 13.6vw;
  }

  .claim-status img {
    width: 100%;
  }
}
