@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%;
  background: #101012;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

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

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 5px;
}
.header__close {
  display: none;
  position: absolute;
  top: 15px;
  right: 10px;
}
.header__btns {
  display: flex;
  justify-content: space-between;
  margin-top: -17px;
}
.header__link {
  min-width: 62px;
  max-width: 30%;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #E2E2E2;
  text-decoration: none;
}
.header__link:nth-child(2) {
  padding-right: 30px;
}
.header__search {
  border-top: 1px solid #2D2D2D;
  border-bottom: 1px solid #2D2D2D;
  background: #101012;
  padding: 5px 0;
}
.header__search-form {
  border-radius: 5px;
  border: 1px solid #3D3D3D;
  background: #1A1B1E;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}
.header__search-form button {
  background: none;
  border: none;
  margin-right: 13px;
}
.header__search-form input {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.header__search-form input::-moz-placeholder {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #757575;
}
.header__search-form input::placeholder {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #757575;
}

.player__title {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #F1AD13;
  padding: 18px 10px 25px;
}
.player__title.def {
  display: block;
}
.player__title.agree {
  display: none;
}
@media (min-width: 468px) {
  .player__title {
    border-left: 2px solid #F1AD13;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px 0;
    font-weight: 700;
  }
}
.player__breadcrumbs {
  display: none;
  align-items: center;
  color: white;
  margin: 10px 0;
}
@media (min-width: 470px) {
  .player__breadcrumbs {
    display: flex;
  }
}
.player__breadcrumbs img {
  width: 13px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.player__breadcrumbs span {
  margin-left: 5px;
  font-size: 10px;
}
.player__container {
  border-bottom: 3px solid #222;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.player__titleImg {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  padding-bottom: 29px;
}
.player__btn {
  position: absolute;
  bottom: 0;
  max-width: 290px;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 470px) {
  .player__btn {
    max-width: 400px;
    bottom: calc(50% - 115px);
  }
}
.player__btn.def {
  display: block;
}
.player__btn.agree {
  display: none;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.player__btn.opacity {
  opacity: 1;
}
.player__btnBg {
  background: rgba(0, 0, 0, 0.77);
  color: #FFF;
  padding: 65px 10px 44px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 470px) {
  .player__btnBg {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.player__btnBg.agree {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 53px;
}
.player__btnBg.agree p {
  margin-right: 30px;
}
.player__btnTitle {
  color: #FFF;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.player__btnDesc {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.player__btn__pay {
  padding: 5px 0;
  text-align: right;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #E2E2E2;
}

.watch__container {
  border-radius: 0px 0px 4px 4px;
  border: 1px solid #2D2D2D;
  background: #18181B;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 13px;
  padding-right: 18px;
}
.watch__hr {
  max-width: 96%;
  height: 1px;
  margin: 0 auto;
  background: #999;
  margin-bottom: 10px;
}
.watch__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
}
.watch__btn {
  max-width: 48%;
  width: 100%;
  padding-left: 10px;
  padding-top: 5px;
}
.watch__btn button {
  padding: 4px;
  max-width: 130px;
  width: 100%;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  color: #FFF;
  border-radius: 2px;
  background: #A8230F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch__btn button img {
  margin-right: 4px;
}
.watch__panel {
  max-width: 48%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.watch__stat {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 5px;
  margin-bottom: 10px;
}
.watch__like {
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: #F1AD13;
  display: flex;
  align-items: center;
  gap: 7px;
}
.watch__dislike {
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 7px;
}
.watch__line {
  display: flex;
  justify-content: flex-end;
}
.watch__eye {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #E2E2E2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 30px;
}
.watch__description {
  margin-top: -20px;
}
.watch__description p {
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  font-weight: 500;
  color: #ECA914;
}
.watch__description p .white {
  font-weight: 900;
  color: #FFF;
}
.watch__tab {
  padding: 0 10px;
}

.footer__container {
  padding: 4px 3px;
}
.footer__text {
  color: #A4A4A4;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

body.agree .player__title.def {
  display: none;
}
body.agree .player__title.agree {
  display: block;
}
body.agree .player__btn.def {
  display: none;
}
body.agree .player__btn.agree {
  display: block;
}
body.agree .footer__text.def {
  display: none;
}
body.agree .footer__text.agree {
  display: block;
}

body.close .header__close {
  display: block;
}

.player__loader {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.77);
  align-items: center;
  justify-content: center;
}

body.loader .player__btn.def {
  display: none;
}
body.loader .player__btn.agree {
  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 */