:root {
  --main-blue-50: #EEF8FF;
  --main-blue-100: #C9E8FF;
  --main-blue-200: #A4D8FF;
  --main-blue-400: #1979BF;
  --main-blue-500: #115587;
  --main-blue-600: #0F4D7A;
  --main-blue-700: #0E446C;
  --main-blue-800: #0D4065;
  
  --dark-blue-50: #F2F3F3;
  --dark-blue-100: #DCDEE0;
  --dark-blue-500: #0D4065;
  --dark-blue-800: #08263D;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.loader {
  text-align: center;
  align-self: center;
  border: 4px solid #ddd;
  border-bottom-color: #268038;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  width: 40px;
  height:40px;
  color: red;
  animation: infinite-rotate 0.8 linear infinite;
}

/* Standard syntax */
@keyframes infinite-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.label-loader {
  margin-left: 0.8rem;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  color: #292C2E;
}

.loader.green {
  border-bottom-color: #268038;
}

.loader.blue {
  border-bottom-color: #115587;
}

body {
  position: relative;
}

.cookies-policy {
  position: relative;
  bottom: 2;
  left: 0;

  @media screen and (max-width: 767px) {
    margin-left: 1.6rem;
  }

  @media screen and (min-width: 768px) and (max-width: 1023px) {
    margin-left: 15.2rem;
  }

  @media screen and (min-width: 1024px) {
    margin-left: 20rem;
  }
}

#ot-sdk-btn {
  @media screen and (min-width: 1024px) {
    margin-top: 2rem;
    position: absolute;
    bottom: 0;
    left: 28.6%;
  }
}
