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

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
}

header,
footer {
  flex: 0 0 auto;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}

.container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}

.footer {
  height: 80px;
  flex: 0 0 auto;
}
.footer a {
  color: inherit;
}
.footer__container {
  padding: 5px 10px;
  text-align: center;
}
.footer__text {
  color: #545454;
  font-size: 12px !important;
  background: rgba(255, 255, 255, 0.4196078431);
  display: inline;
  line-height: initial;
}
.footer__agree {
  display: none;
}
.footer__agree p {
  color: #555555;
}

body.agree .footer__default {
  display: none;
}
body.agree .footer__agree {
  display: block;
}
body.agree .player__default {
  display: none;
}
body.agree .player__agree {
  display: flex;
}

body.close .footer__default {
  display: none;
}
body.close .footer__agree {
  display: block;
}
body.close .player__agree {
  display: flex;
}
body.close .header__close {
  display: block;
}

body.loader .player__default {
  display: none;
}
body.loader .player__loader {
  display: flex;
}

.loaderItem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  position: absolute;
  top: 40%;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loaderItem::after,
.loaderItem::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ff3d00 #ff3d00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loaderItem::before {
  width: 32px;
  height: 32px;
  border-color: #fff #fff transparent transparent;
  animation: rotation 1.5s linear infinite;
}

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

/*# sourceMappingURL=style3.css.map */
