@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

header, footer {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

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

.header {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__burger, .header__user {
  background: none;
  border: none;
  cursor: pointer;
}
.header__burger img, .header__user img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.header__burger {
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
}
.header__right {
  display: flex;
  align-items: center;
}
.header__close {
  display: flex;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  margin-right: 5px;
}
.header__close img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.header__user {
  max-width: 24px;
  max-height: 24px;
  width: 100%;
  height: 100%;
}
.header__search {
  display: flex;
  width: 100%;
  border: #EEEEEE 1px solid;
  border-radius: 5px;
}
.header__search input {
  max-width: 100%;
  width: 100%;
  border: none;
  background: none;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 11px;
  color: #8F8F8F;
}
.header__search button {
  color: #000000;
  border: none;
  background: #EEEEEE;
  padding: 9px 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.panel {
  display: flex;
  flex-direction: column;
}
.panel__containerLine {
  width: 100%;
  margin-bottom: 10px;
}
.panel__containerManagement {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel__line {
  width: calc(100% - 30px);
  margin-bottom: 10px;
  display: block;
  height: 4px;
  background: #D9D9D9;
  position: absolute;
}
.panel__line::before {
  content: "";
  position: absolute;
  height: inherit;
  left: 0;
  top: 0;
  right: 0;
  width: 30%;
  background: #FFF;
}
.panel__play {
  display: block;
  background: none;
  border: none;
  margin: 0 10px;
}
.panel__play img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.panel__sound {
  background: none;
  border: none;
  margin: 0 10px;
}
.panel__sound img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.panel__time {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 20px;
}
.panel__control {
  display: flex;
}
.panel__setting {
  background: none;
  border: none;
  margin-right: 10px;
}
.panel__wid {
  background: none;
  border: none;
}

.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;
}
.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;
}
.player__panel {
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  width: auto;
  padding: 5px 15px;
}
.player__control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  color: #FFF;
  justify-content: center;
  align-items: stretch;
}
.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-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}
.player__playContainer {
  border: none;
  background: rgba(0, 0, 0, 0.7);
  padding: 45px 7px 45px 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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: 21px;
}
.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: #FFF;
  text-align: center;
  padding-top: 10px;
}

.watch {
  padding: 5px;
}
.watch__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.watch__eye {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.watch__eye img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 24px;
}
.watch__eye span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.watch__like, .watch__dislike {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
.watch__like img, .watch__dislike img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 24px;
}
.watch__like span, .watch__dislike span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.watch__message {
  position: relative;
}
.watch__message span {
  position: absolute;
  top: 0;
  right: -4px;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #DE2600;
  color: #FFF;
  border-radius: 6px;
  padding: 2px 4px;
}

.footer a {
  color: inherit;
}
.footer__container {
  padding: 13px 10px;
}
.footer__text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.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=style.css.map */