@charset "UTF-8";
.hideThis {
  display: flex;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.showThis {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

:root {
  --hue: 223;
  --bg: hsl(10,90%,60%);
  --fg: hsl(var(--hue),10%,10%);
  --trans-dur: 0.3s;
  --trans-ease-in-out: cubic-bezier(0.65,0,0.35,1);
  --trans-ease-out: cubic-bezier(0.33,1,0.68,1);
  font-size: calc(20px + 20 * (100vw - 280px) / 3560);
}

html {
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFF;
  position: fixed;
  width: 100%;
}

header, footer {
  flex: 0 0 auto;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

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

span.logo {
  width: calc(40% + 10px);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 0 5px;
}
span.logo img {
  width: 100%;
}
@media screen and (orientation: landscape) {
  span.logo {
    width: 200px;
  }
}

@media screen and (orientation: landscape) and (max-height: 450px) {
  .player .player__window .player__panel {
    display: none;
  }
  button.player__playContainer {
    border: none;
    background: #343434;
    padding: 15px 7px 15px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  form.header__search {
    display: none;
  }
}
.player__ui {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  gap: 15px;
}
.player__ui .ui__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.player__ui .pause, .player__ui .sound, .player__ui .fullscreen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.player__ui .pause img, .player__ui .sound img, .player__ui .fullscreen img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.player__ui .timeline {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.player__ui .timeline .line {
  width: 3%;
  background: rgba(255, 0, 0, 0.58);
  height: 100%;
}
.player {
  width: 100%;
  height: 100%;
}
.player .player__window {
  background: #000000 url("../images/girl.jpg");
  background-size: cover;
  background-position: bottom;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: space-between;
}
@media screen and (orientation: landscape) and (max-height: 415px) {
  .player .player__window {
    background-position: 0 70%;
  }
}
.player__container {
  position: relative;
}
.player__container img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.player__head {
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  width: auto;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.player__head .f-width {
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.player__quality {
  background: #DE2600;
  color: #FFF;
  padding: 2px 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 3px;
}
.player__time {
  background: rgba(58, 58, 58, 0.7607843137);
  padding: 4px 5px;
  border-radius: 3px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.player__time .close {
  margin: 0 10px;
}
.player__panel {
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  width: auto;
  padding: 5px 15px;
}
.player__control {
  width: 100%;
  padding: 40px 5px;
  display: flex;
  flex-direction: column;
  color: #FFF;
  justify-content: flex-end;
  align-items: stretch;
  height: 62vh;
}
@media screen and (orientation: landscape) and (max-height: 450px) {
  .player__control {
    padding: 0 25px;
  }
}
.player__control .wrapper {
  padding: 0 20px;
}
.player__agree {
  display: none;
}
.player__loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.27);
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.player__disclaimer {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}
.player__disclaimer button.btn {
  border-radius: 10px;
  padding: 2px 5px;
  background: rgba(255, 0, 0, 0.6);
  border: 1px solid #ddd;
  color: #ffffff;
  width: 100px;
  height: 30px;
}
.player__playContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
  border: 2px solid #666;
  background: rgba(0, 0, 0, 0.45);
  padding: 45px 7px 45px 7px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
}
.player__playContainer img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 50px;
  height: 56px;
}
.player__textBtn {
  color: #FFF;
  text-align: left;
  margin-right: 0;
  margin-left: 15px;
}
.player__textBtn h2 {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3px;
}
.player__textBtn span {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.player__description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.btn-group {
  margin-top: 20px;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
}
@media screen and (orientation: portrait) {
  .footer {
    height: 75px;
  }
}
.footer a {
  color: inherit;
}
.footer__container {
  padding: 13px -2px;
  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: #545454;
}

.foot {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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.close .player__head .close {
  display: block; /* Показать крестик, когда класс close добавлен к body */
  position: absolute;
  margin-left: -25px;
  font-size: 18px;
  line-height: 1;
}
body .player__head .close {
  display: none; /* Скрыть крестик по умолчанию */
}

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=style.css.map */