@font-face {
  font-family: "Inter";
  src: url("Inter-Thin.woff2") format("truetype");
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-ExtraLight.woff2") format("truetype");
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Light.woff2") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Regular.woff2") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Medium.woff2") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-SemiBold.woff2") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Bold.woff2") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-ExtraBold.woff2") format("truetype");
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Black.woff2") format("truetype");
  font-style: normal;
  font-weight: 900;
}

:root {
  --icon-width: 20px;
  --sound-width: 50px;
  --timeline-width: 100%;
  --html-font: 12px;
  --yellow: #f9e286;
  --red: #bc8a8a;
  --blue: #d5e7fd;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Inter", sans-serif;
  color: #666;
  background: #181a1d;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: var(--html-font);
  flex-direction: column;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a {
  color: #ddd;
}

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

.row-block {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
  color: #666;
  background: transparent;
}

.title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: calc(50% - 40px);
}

.logo {
  width: auto;
  height: 70px;
  margin: 0 auto;
  position: relative;
}

.logo img {
  height: 100%;
}

.age {
  position: relative;
  width: 25px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border: 1px solid #7f7f7f;
  color: #7f7f7f;
  border-radius: 100%;
  box-sizing: border-box;
  padding: 5px;
}
.closeBtn {
  display: none;
}

.menu {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: rgba(48, 48, 51, 0.5);
  border-radius: 24px;
  padding: 9px;
  box-sizing: border-box;
}

.menu span.lf {
  width: 60%;
  height: 2px;
  background: #fff;
}

.menu span.lf2 {
  width: 80%;
  height: 2px;
  background: #fff;
}

.user {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.user img {
  width: 80%;
}

.text_header {
  padding: 0;
  text-align: center;
  font-size: 16px;
  color: #ddd;
}

.under-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 5px;
  margin-bottom: 10px;
}

.pseudo-input {
  background: #fff;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  color: #8f8f8f;
  font-size: 17px;
  height: 36px;
  margin: 2px 0;
  padding: 4px 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  flex: 1;
  box-sizing: border-box;
}

.pseudo-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #eee;
  border: 2px solid #eee;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  height: 36px;
  margin: 0;
  padding: 0 10px;
  position: relative;
  transition: background 0.2s;
  box-sizing: border-box;
}

.activate-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 34px !important;
  font-weight: bold;
  color: #fff;
  border: none;
  vertical-align: middle;
  z-index: 2;
  box-sizing: border-box;
  text-decoration: none !important;
  height: 137px;
  padding: 10px 30px;
  width: 80%;
  max-height: 17vh;
  max-width: 300px;
  background: rgb(101 101 101 / 50%);
  margin-top: 10px;
}

.activate-btn-text {
  font-weight: 700;
  font-size: 25px !important;
  padding: 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
}

.transformer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.btn-icon {
  width: 13%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-left: 20px;
  position: absolute;
  right: 50px;
}

.btn-icon img {
  width: 100%;
}

.price {
  color: #fff;
  text-align: center;
  font-size: 105%;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 2px auto;
  font-family: "Inter", sans-serif;
  position: relative;
  top: 5px;
}

.disable-btn {
  background-color: rgba(0, 0, 0, 0.7);
  width: 25%;
  border-radius: 5px;
  text-align: center;
  z-index: 1;
  padding: 1%;
  text-decoration: none;
  margin: 15px 0 20px;
}

.disable-btn > p {
  font-size: 12px;
  color: #d3d3d3;
  font-weight: 700;
}

.ui img {
  width: 100%;
  max-width: 414px;
}

.footer {
  background-color: #181a1d;
  width: 100%;
  padding: 1% 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  z-index: 999;
  color: #ffffff;
}

.play img {
  width: 100%;
}

.player {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background-size: 100%;
  min-height: 200px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  gap: 4px;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.text-bottom {
  font-size: 12px;
}

.btns-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  background: #000 no-repeat;
}

form.btn-group {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ani {
  animation-name: pulse;
  animation-duration: 1.1s;
  animation-iteration-count: infinite;
}

.btn-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ui {
  padding: 3px 15px 6px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.polygon,
.uiicon {
  width: var(--icon-width);
  height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.polygon img {
  width: 100%;
  display: block;
}

.uiicon img {
  width: 100%;
  display: block;
}

.timeline {
  height: 3px;
  margin: 2px 0;
  margin-bottom: 7px;
  border-radius: 1px;
  background: #d9d9d9;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: var(--timeline-width);
}

.line {
  background: #ffffff;
  border-radius: 0;
  height: 100%;
}

.player-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
}

.hd {
  color: #fff;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #ea2d43;
  padding: 2px 5px;
  box-sizing: border-box;
}

.timestamp {
  box-sizing: border-box;
  height: 25px;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(58, 58, 58, 0.76);
  border-radius: 3px;
  padding: 2px 5px;
}

.timer {
  color: #ffffff;
}

.block {
  display: flex;
  gap: 5px;
}

.compare {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: auto;
}

.more {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  color: #ffffff;
}

.more .block {
  font-size: 12px;
  color: #ddd;
  padding: 2px 10px;
  flex: 2;
}

.more .block.active {
  font-size: 12px;
  color: #ffffff;
  flex: 0.5;
}

.ux {
  display: flex;
  position: relative;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 40px;
  margin-bottom: 10px;
}

.icon-block {
  width: 30px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.icon-block img {
  height: 80%;
}

.icon-block img.small {
  height: 50%;
}

.icon-block .tick {
  padding: 2px 4px;
  background: #ea2d43;
  color: #ffffff;
  font-size: 8px;
  position: absolute;
  border-radius: 6px;
  right: 0;
  top: 0;
}

.rate {
  font-size: 10px;
  color: #111;
  padding: 2px 0;
}

.rate.bold {
  font-size: 16px;
  color: #ddd;
  font-weight: 700;
}

.promo {
  width: 100%;
  background: transparent;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
}

.card {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.card img {
  width: 100%;
}

.row-1 {
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.check {
  width: 15px;
  height: 15px;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #111;
}

.check img {
  width: 60%;
}

.name {
  font-size: 10px;
  flex-wrap: nowrap;
  text-wrap: nowrap;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 4px;
}

.views {
  color: #ffffff;
  background: #ea2d43;
  border-radius: 4px;
  padding: 2px 4px;
}

.time {
  color: #ffffff;
  background: #5f797e;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 4px;
  flex-wrap: nowrap;
  text-wrap: nowrap;
}

.img-block {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 30svh;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes width {
  0% {
    width: 0;
  }
  to {
    width: 28%;
  }
}

@keyframes width {
  0% {
    width: 0;
  }
  to {
    width: 28%;
  }
}

.width {
  -webkit-animation-name: width;
  animation-name: width;
  animation-timing-function: steps(22, end);
  animation-duration: 7s;
  animation-fill-mode: forwards;
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.girl-detail-top-caption {
  max-width: none;
}

.img-block {
  position: relative;
}

.girl-detail-info {
  position: absolute;
  bottom: 0;
  padding: 10px;
  padding-bottom: 10%;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.girl-detail-top .girl-detail-info {
  padding: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.girl-detail-name {
  font-weight: 600;
  font-size: 13px;
  line-height: 130%;
  margin-bottom: 3px;
}

.girl-detail-job {
  font-size: 9px;
  opacity: 0.85;
  line-height: 130%;
  font-weight: 400;
}

.girl-detail-sentiment {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 12px;
  height: 29px;
  font-weight: 500;
  border-radius: 123px;
}

@media all and (max-width: 913px) and (max-height: 1368px) {
  .header {
    padding: 2% 4px;
  }

  .text_header {
    font-size: 12px;
  }

  .activate-btn-text {
    font-size: 20px;
    padding: 2% 0;
  }

  .disable-btn {
    padding: 2% 0;
    width: 30%;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .disable-btn > p {
    font-size: 12px;
  }

  .footer {
    padding: 1% 0;
  }

  .footer-container p {
    font-size: 20px;
  }
}

@media all and (max-width: 415px) and (max-height: 915px) {
  .header {
    padding: 2% 4px;
  }

  .text_header {
    font-size: 12px;
    padding: unset;
  }

  .activate-btn {
    width: 86%;
    text-decoration: none;
  }

  .activate-btn-text {
    padding: 1% 0;
    letter-spacing: 0.3px;
  }

  .disable-btn {
    padding: 2%;
    width: 30%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .disable-btn > p {
    font-size: 12px;
    padding: 0;
  }

  .main-header > p {
    font-size: 35px;
    padding: 5% 0 0 0;
  }

  .footer {
    padding: 1% 0;
  }

  .footer-container p {
    font-size: 12px;
  }
}

@media all and (max-width: 376px) and (max-height: 750px) {
  .header {
    padding: 2% 4px;
  }

  .text_header {
    font-size: 10px;
    line-height: 1;
  }

  .activate-btn-text {
    font-size: 27px;
  }

  .legal p {
    font-size: 10px;
    padding: 2% 0;
  }

  .disable-btn {
    padding: 5px;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .disable-btn > p {
    font-size: 12px;
  }

  .main-header > p {
    font-size: 30px;
    padding-top: 3%;
  }

  .footer {
    padding: 3% 0 1%;
  }

  .footer-container p {
    font-size: 9px;
  }
}

@media all and (max-width: 250px) and (max-height: 400px) {
  .header {
    padding: 2% 0 0 1%;
    height: unset;
  }

  .text_header {
    font-size: 7.5px;
  }

  .activate-btn {
    border-radius: 100px;
    width: 70%;
  }

  .activate-btn-text {
    font-size: 10px;
    padding: 0.5% 0;
  }

  .legal > p {
    font-size: 7.5px;
  }

  .disable-btn {
    padding: 0;
    margin: 0;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .disable-btn > p {
    font-size: 12px;
    padding: 5%;
  }

  .main_content > img {
    overflow: hidden;
    bottom: 7%;
    width: 80%;
  }

  .main-header > p {
    font-size: 12px;
    padding-top: 3%;
  }

  .footer {
    padding: 1% 0;
  }

  .footer-container p {
    font-size: 7.5px;
  }
}

@media all and (max-width: 915px) and (max-height: 415px) and (orientation: landscape) {
  .prev,
  .zag {
    display: none;
  }

  .player {
    margin: 10px 0 3px;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .transformer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 100%;
  }

  .header {
    padding: 5px 5px;
  }

  .text_header {
    font-size: 10px;
  }

  .activate-btn {
    width: 93%;
    position: relative;
  }

  .btn-icon {
    width: 44px;
  }

  .player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .btns-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding: 0 0 5px 0;
    margin: 0 auto;
    bottom: 0;
    box-sizing: border-box;
  }

  .disable-btn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 360px) {
  .header {
    padding: 3px 8px;
  }
}

@media screen and (orientation: landscape) {
  .container {
    margin: 0 auto;
    min-width: 500px;
  }

  .transformer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 100%;
  }

  .promo {
    display: none;
  }
}

@media screen and (max-height: 640px) {
  .player {
    max-height: 42vh;
  }

  .activate-btn {
    height: 97px;
  }
}

.hidden {
  display: none !important;
}

.wrapper {
  height: 100vh;
}
body {
  .loader {
    display: none;
  }
  &.loader {
    .loader {
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 100%;
      position: absolute;
      display: flex;
      background: #111;
      z-index: 99;
      .loaderItem {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: inline-block;
        position: absolute;
        top: 40%;
        border: 3px solid;
        border-color: #fff #fff transparent transparent;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
        &::after,
        &::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;
        }

        &::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);
  }
}
