* {
  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;
}/*# sourceMappingURL=style3.css.map */