@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);
}

* {
  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: #ffffff;
}

header, footer {
  flex: 0 0 auto;
}

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

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

@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;
  }
}
button.dd {
  color: var(--fg);
  font: 0.7em/0.7 "DM Sans", sans-serif;
  transition: background-color var(--trans-dur), color var(--trans-dur);
}

.drop {
  --drop-trans-dur: 0.5s;
  --drop-flare-dist: 0;
  border-radius: 0.5em;
  margin: auto;
  padding: 0.25em 0.25em 0 0.25em;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  min-width: 9em;
  max-width: 100px;
}
.drop, .drop:after {
  background-color: transparent;
  transition: background-color var(--trans-dur);
}
.drop:before, .drop:after {
  content: "";
  position: absolute;
}
.drop:before {
  background-image: radial-gradient(100% 100% at 100% 50%, hsla(var(--hue), 90%, 50%, 0.5), hsla(var(--hue), 90%, 50%, 0) 50%);
  display: none;
  right: 0;
  bottom: 100%;
  width: 9em;
  height: 9em;
}
.drop:after {
  border-radius: 0.4375em;
  display: block;
  top: 0.125em;
  left: 0.125em;
  width: calc(100% - 0.25em);
  height: calc(100% - 0.25em);
}
.drop__btn {
  background-color: hsla(0, 0%, 100%, 0.67);
  border-radius: 0.375em;
  box-shadow: 0 0 0 0.25em hsla(var(--hue), 90%, 50%, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1;
  height: 0.5em;
  outline: transparent;
  margin-bottom: 0.25em;
  padding: 0.75em;
  position: relative;
  width: 100%;
  transition: background-color var(--trans-dur), box-shadow calc(var(--trans-dur) / 2) var(--trans-ease-in-out), color var(--drop-trans-dur);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.drop__btn:hover, .drop__btn:focus-visible, .drop__btn[aria-expanded=true] {
  background-color: hsl(var(--hue), 10%, 95%);
}
.drop__btn:focus-visible {
  box-shadow: 0 0 0 0.25em hsla(var(--hue), 90%, 50%, 1);
}
.drop__btn:after {
  border-top: 0.375em solid currentColor;
  border-right: 0.375em solid transparent;
  border-left: 0.375em solid transparent;
  content: "";
  display: block;
  margin-inline-start: auto;
  width: 0;
  height: 0;
  transform-origin: 50% 37.5%;
  transition: transform var(--drop-trans-dur) var(--trans-ease-out);
}
.drop__btn[aria-expanded=true]:after {
  transform: rotate(0.5turn);
}
.drop--collapsing, .drop--expanding, .drop__items {
  overflow: hidden;
}
.drop__items {
  height: 0;
}
.drop__items-inner {
  visibility: hidden;
}
.drop--collapsing .drop__btn[aria-expanded=true] {
  background-color: hsl(0, 0%, 100%);
}
.drop--collapsing .drop__btn[aria-expanded=true]:after {
  transform: rotate(0);
}
.drop--expanding:before {
  display: block;
}
.drop__items .drop__btn:hover, .drop__items .drop__btn:focus-visible {
  background-color: hsl(var(--hue), 10%, 97.5%);
  color: hsla(var(--hue), 90%, 50%);
}
.drop__items .drop__btn:focus-visible {
  box-shadow: 0 0 0 0.25em hsla(var(--hue), 90%, 50%, 0);
}
.drop__items .drop__btn:after {
  border: 0;
  content: "✓";
  display: none;
  width: auto;
  height: auto;
}
.drop__items .drop__btn--selected:after {
  display: block;
}
.drop__btn[aria-expanded=true] ~ .drop__items {
  height: auto;
}
.drop__btn[aria-expanded=true] ~ .drop__items .drop__items-inner {
  visibility: visible;
}
.drop:has([aria-expanded=true]) {
  height: auto;
}
.drop:has([aria-expanded=true]):before {
  transform: translateY(calc(9em + var(--drop-flare-dist)));
  transition: transform var(--drop-trans-dur) linear;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue),10%,10%);
    --fg: hsl(var(--hue),10%,90%);
  }
  .drop, .drop:after {
    background-color: hsl(0, 0%, 0%);
  }
  .drop__btn {
    background-color: hsl(var(--hue), 10%, 10%);
  }
  .drop__btn:hover, .drop__btn:focus-visible, .drop__btn[aria-expanded=true] {
    background-color: hsl(var(--hue), 10%, 20%);
  }
  .drop__items .drop__btn:hover, .drop__items .drop__btn:focus-visible {
    background-color: hsl(var(--hue), 10%, 15%);
    color: hsla(var(--hue), 90%, 70%);
  }
  .drop--collapsing .drop__btn[aria-expanded=true] {
    background-color: hsl(var(--hue), 10%, 10%);
  }
}
.header {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container svg {
  width: 110px;
  height: 35px;
  padding: 5px;
  text-align: left;
}
.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__right .age {
  color: #ffffff;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  font-size: 10px;
}
.header__close {
  display: none;
  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%;
  filter: contrast(0) brightness(200);
}
.header__user {
  max-width: 24px;
  max-height: 24px;
  width: 100%;
  height: 100%;
  filter: contrast(0) brightness(200);
}
.header__search {
  display: flex;
  width: 100%;
  border-radius: 5px;
}
.header__search input {
  max-width: 100%;
  width: 100%;
  background: none;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 11px;
  color: #2D2D2D;
  background: #fff;
  border: 1px solid #fefefe;
}
.header__search button {
  color: #2d2d2d;
  border: none;
  background: #222;
  padding: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 70px;
  border-radius: 100px;
  display: flex;
}

.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 {
  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;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
}
.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 {
  width: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  color: #FFF;
  justify-content: center;
  align-items: stretch;
  height: 62vh;
}
@media screen and (orientation: landscape) and (max-height: 450px) {
  .player__control {
    padding: 0 25px;
  }
}
.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: 100px;
  margin: 0 auto;
  border: 2px solid #666;
  background: rgba(53, 53, 53, 0.65);
  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: 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;
}

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

.watch {
  padding: 5px;
}
@media screen and (orientation: landscape) and (max-height: 450px) {
  .watch {
    display: none;
  }
}
.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;
}

@media screen and (orientation: portrait) {
  .footer {
    height: 110px;
  }
}
.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;
  color: #666666;
}
.footer__agree {
  display: none;
}
.footer__agree p {
  color: #666666;
}

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__default {
  display: none;
}
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 */