@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 {
  font-family: "Inter", sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(174deg, #15141B 4.82%, #0B0A12 100%);
  color: #fff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
  min-height: 100dvh;
}

.header {
  flex: 0 0 auto;
  padding: 10px;
}
.header .head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.header .logo {
  max-width: 150px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .menu {
  max-width: 25px;
  max-height: 25px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .search {
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.main {
  flex: 1 0 auto;
}
.main .content {
  padding: 10px;
  position: relative;
}
.main .content .img {
  max-width: 100%;
  width: 100%;
  max-height: 70dvh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .content .btn {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 360px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  min-width: 300px;
  color: #fff;
  padding: 30px 20px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main .content .btn::before {
  content: "";
  position: absolute;
  right: 20px;
  background: url("../img/play.png") no-repeat;
  background-size: contain;
  width: 20%;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.main .content .btn span:nth-child(1) {
  font-size: 24px;
}
.main .content .btn span:nth-child(2) {
  font-size: 14px;
}
.main .content .description {
  position: absolute;
  text-align: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
  font-size: 12px;
  width: 70%;
}
.main .content .player {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
  max-width: 90%;
  width: 100%;
  min-height: 82px;
  transform: translateX(-50%);
  position: absolute;
  bottom: 20px;
  left: 50%;
  border-radius: 0px 0px 12px 12px;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0) 0%, rgba(8, 9, 13, 0.9) 80.37%);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.main .content .player img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  flex: 0 0 auto;
}
.footer .text {
  padding: 10px;
  max-width: 295px;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  width: 100%;
}
.footer .text a {
  color: inherit;
}

body.default .agree {
  display: none !important;
}
body.default .loader {
  display: none !important;
}

body.agree .default {
  display: none !important;
}
body.agree .loader {
  display: none !important;
}

body.loader .default {
  display: none !important;
}
body.loader .agree {
  display: none !important;
}
body.loader .agree-loader {
  display: block !important;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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 */