:root {
  --mainBlack: #000000;
  --mainBg: #0A070B;
  --mainBgGray: #252525;
  --mainHighlight: #EE497E;
  --mainText: #807E81;
  --mainWhite: #FFFFFF;
  --bs-gutter-x: 15px;
  --root: "/";
}

@font-face {
  font-family: "Gilroy";
  src: url("/adult_cms/fonts/Gilroy-Thin.eot"); /* IE9 Compat Modes */
  src: url("/adult_cms/fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("/adult_cms/fonts/Gilroy-Thin.woff") format("woff"), url("/adult_cms/fonts/Gilroy-Thin.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/adult_cms/fonts/Gilroy-Regular.eot"); /* IE9 Compat Modes */
  src: url("/adult_cms/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("/adult_cms/fonts/Gilroy-Regular.woff") format("woff"), url("/adult_cms/fonts/Gilroy-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/adult_cms/fonts/Gilroy-SemiBold.eot"); /* IE9 Compat Modes */
  src: url("/adult_cms/fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("/adult_cms/fonts/Gilroy-SemiBold.woff") format("woff"), url("/adult_cms/fonts/Gilroy-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/adult_cms/fonts/Gilroy-Bold.eot"); /* IE9 Compat Modes */
  src: url("/adult_cms/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("/adult_cms/fonts/Gilroy-Bold.woff") format("woff"), url("/adult_cms/fonts/Gilroy-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/adult_cms/fonts/Gilroy-Black.eot"); /* IE9 Compat Modes */
  src: url("/adult_cms/fonts/Gilroy-Black.eot?#iefix") format("embedded-opentype"), url("/adult_cms/fonts/Gilroy-Black.woff") format("woff"), url("/adult_cms/fonts/Gilroy-Black.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 900;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", sans-serif;
  color: var(--mainWhite);
  min-height: 100vh;
  background-color: var(--mainBg);
  font-size: 16px;
  font-weight: normal;
}
body h1, body h2, body h3 {
  font-family: "Gilroy", sans-serif;
}
body a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: var(--mainWhite);
}
body a:hover {
  color: var(--mainHighlight);
  text-decoration: none;
}
body picture {
  display: block;
  overflow: hidden;
}
body img {
  height: auto;
}
body .row {
  --bs-gutter-x: 5px!important;
}
body main {
  overflow: hidden;
  min-height: 70vh;
  position: relative;
}

.error-message {
  color: red;
}

.admin header {
  top: 30px;
}

header {
  position: fixed;
  z-index: 50;
  background: transparent;
  padding: 25px 0;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .navbar {
  background: var(--mainWhite);
  left: 0;
  padding: 30px;
  position: absolute;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 1;
}
header .navbar ul > li {
  padding: 0 15px;
}
header .navbar ul > li a {
  color: var(--mainWhite);
}
header .navbar ul > li a:hover {
  color: var(--mainHighlight);
}
header .navbar ul > li ul {
  displaY: none;
}
@media (min-width: 992px) {
  header .navbar {
    background: initial;
    position: static;
    width: auto;
    text-align: right;
  }
}
header.scrolled {
  background-color: var(--mainBgGray);
  padding: 8px 0;
}
header .usage {
  display: inline-block;
  width: 100px;
  border: 1px solid var(--mainWhite);
  border-radius: 3px;
  height: 6px;
  padding: 1px;
}
header .usage span {
  background-color: green;
  height: 4px;
  display: block;
  border-radius: 3px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1780px;
}

.card {
  border-radius: 0;
  background-color: var(--mainBgGray);
  color: var(--mainWhite);
  height: 100%;
}
.card .card-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
}
.card:hover {
  color: var(--mainWhite);
  background-color: var(--mainHighlight);
}
.card .card-img-top {
  border-radius: 0;
}

.pagination {
  margin-top: 40px;
}
.pagination .page-item {
  margin: 5px;
}
.pagination .page-item .page-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  padding: 0;
  background-color: transparent;
  font-weight: 700;
  border: none;
  color: var(--mainWhite);
}
.pagination .page-item.active .page-link {
  background-color: var(--mainHighlight);
}

footer {
  padding-top: 60px;
  background: var(--mainBlack);
}
footer .top {
  color: #9D9D9D;
}
footer .top strong {
  color: var(--mainWhite);
}
footer .top a {
  color: #9D9D9D;
}
footer .top a:hover {
  color: var(--mainHighlight);
}
footer .top .footer-title {
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  margin-bottom: 15px;
}
footer .top .footer-links {
  padding-left: 20px;
  padding-right: 20px;
}
footer .top .footer-links ul {
  padding: 0;
  margin: 0;
}
footer .top .footer-links ul li {
  list-style: none;
  margin-bottom: 5px;
}

#toTop {
  background: var(--mainHighlight);
  border: none;
  bottom: 30px;
  color: var(--mainWhite);
  font-size: 28px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 50px;
  z-index: 100;
}
@media (min-width: 768px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
@media (min-width: 992px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
#toTop:focus {
  outline: none;
}

.error {
  margin-top: 200px;
  margin-bottom: 200px;
}
.error .clip {
  display: inline-block;
  margin: 20px;
  font-size: 50px;
}
.error .clip .shadow {
  width: 90px;
  height: 90px;
  background-color: var(--mainHighlight);
  border-radius: 50%;
  color: var(--mainWhite);
  line-height: 90px;
}

.btn, .cta .inner .btn-wrapper .more {
  border-radius: 3px;
  padding: 10px 24px 10px 24px;
  gap: 10px;
  color: var(--mainWhite);
  display: inline-block;
}
.btn.btn-default, .cta .inner .btn-wrapper .btn-default.more {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn.btn-default:hover, .cta .inner .btn-wrapper .btn-default.more:hover {
  background-color: var(--mainBgGray);
}
.btn.btn-primary, .cta .inner .btn-wrapper .more {
  background-color: var(--mainHighlight);
  border-color: var(--mainHighlight);
}
.btn.btn-primary:hover, .cta .inner .btn-wrapper .more:hover {
  background-color: #f31c63;
}
.btn.btn-bordered, .cta .inner .btn-wrapper .btn-bordered.more {
  background-color: transparent;
  border: 1px solid var(--mainWhite);
}
.btn.btn-bordered:hover, .cta .inner .btn-wrapper .btn-bordered.more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn.btn-lg, .cta .inner .btn-wrapper .btn-lg.more {
  height: 68px;
  line-height: 68px;
}
.btn:focus, .cta .inner .btn-wrapper .more:focus {
  box-shadow: none;
}
.btn:hover, .cta .inner .btn-wrapper .more:hover {
  color: var(--mainWhite);
}

.short-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 5px solid var(--mainHighlight);
}
.short-item:after {
  content: "";
  height: 40%;
  background: linear-gradient(360deg, #0A070B 0%, rgba(10, 7, 11, 0) 100%);
  opacity: 0.8;
  display: block;
  pointer-events: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.short-item .title-holder {
  position: absolute;
  bottom: 5px;
  left: 15px;
  z-index: 2;
  max-width: 50%;
}
.short-item .title-holder h3 {
  font-size: 20px;
  line-height: 30px;
}

.safemode-holder {
  position: fixed;
  bottom: 40px;
  left: 10px;
  background-color: white;
  border: 1px solid white;
  padding: 5px;
  font-size: 10px;
  border-radius: 3px;
  color: var(--mainBlack);
}

.page-0 section.top {
  padding: 0;
}
.page-0 section.top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.subpage {
  padding-top: 100px;
}

/**
Section styles
 */
section {
  padding-top: 25px;
  padding-bottom: 25px;
}
section.dark-bg {
  background-color: #1e1e1e;
}
section.white-bg {
  background-color: var(--mainWhite);
  color: var(--mainBlack);
}

section.slider-container {
  padding: 0 !important;
}
section.slider-container .row, section.slider-container .col-12 {
  padding: 0;
  margin: 0;
}
section.slider-container #slider {
  height: 70vh;
  max-height: 860px;
  background-color: var(--mainBlack);
}
section.slider-container #slider .carousel-item:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 88%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 60%;
  z-index: 2;
  top: 0;
}
section.slider-container #slider .carousel-item:after {
  content: "";
  position: absolute;
  background: linear-gradient(227deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 46.36%, rgba(0, 0, 0, 0.65) 100%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
section.slider-container #slider .carousel-item .image-container picture {
  height: 100%;
}
section.slider-container #slider .carousel-item .image-container picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.slider-container #slider .carousel-item .slider-title {
  font-size: 24px;
  line-height: 32px;
  margin-left: 4px;
  margin-bottom: 10px;
}
section.slider-container #slider .carousel-item .carousel-caption {
  z-index: 3;
  text-align: left;
  bottom: 130px;
}
@media (min-width: 1200px) {
  section.slider-container #slider .carousel-item .carousel-caption {
    max-width: 65%;
  }
}
@media (min-width: 1400px) {
  section.slider-container #slider .carousel-item .carousel-caption {
    max-width: 45%;
  }
}
@media (min-width: 1900px) {
  section.slider-container #slider .carousel-item .carousel-caption {
    max-width: 35%;
  }
}
section.slider-container #slider .carousel-item .carousel-caption h1, section.slider-container #slider .carousel-item .carousel-caption h2 {
  font-size: 65px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -1.5px;
  text-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.45);
}
section.slider-container #slider .carousel-item .carousel-caption .carousel-caption-lead {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 35px;
}
section.slider-container #slider .carousel-item .carousel-caption .btn, section.slider-container #slider .carousel-item .carousel-caption .cta .inner .btn-wrapper .more, .cta .inner .btn-wrapper section.slider-container #slider .carousel-item .carousel-caption .more {
  backdrop-filter: blur(20px);
  padding: 0 43px;
  border-radius: 3px;
  height: 68px;
  line-height: 68px;
}

.row.owl-carousel .col-12, .row.owl-carousel .col-3, .row.owl-carousel .col-2 {
  width: 100% !important;
}

.shorts-carousel .owl-stage, .videos-carousel .owl-stage, .models-carousel .owl-stage {
  padding-left: 0 !important;
}
.shorts-carousel .owl-stage-outer, .videos-carousel .owl-stage-outer, .models-carousel .owl-stage-outer {
  overflow: unset !important;
}

/**
PageBox styles
 */
.box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
}
.box .more-link {
  float: right;
  font-size: 16px;
  font-weight: normal;
  color: var(--mainWhite);
}
.box .more-link:after {
  margin-left: 10px;
  content: "";
  display: inline-block;
  background-image: url("/adult_cms/img/arrow.svg");
  width: 11px;
  height: 11px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.box .more-link:hover {
  color: var(--mainHighlight);
}
.box .more-link:hover:after {
  margin-right: -12px;
}

.icon {
  text-align: center;
}
.icon:before {
  content: "";
  display: inline-block;
  background-color: var(--mainBlack);
  border: 2px solid var(--mainText);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  line-height: 132px;
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}
.icon h2 {
  font-weight: 500;
  font-size: 24px;
}

.cta .inner {
  text-align: center;
}
.cta .inner h2 {
  font-size: 20px;
  display: block;
}
@media (min-width: 1200px) {
  .cta .inner h2 {
    font-size: 41px;
    display: inline-block;
  }
}
.cta .inner h2 strong {
  color: var(--mainHighlight);
}
.cta .inner .btn-wrapper {
  display: inline-block;
  margin-left: 50px;
}
.cta .inner .btn-wrapper .more {
  font-size: 40px;
  font-weight: 700;
  min-width: 390px;
}

.links {
  margin-top: 15px;
  margin-bottom: 15px;
}
.links .inner ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: center;
}
.links .inner ul li {
  display: flex;
  margin: 10px 15px;
}

.logos {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.logos h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

.category-view .top-holder {
  position: relative;
}
.category-view .top-holder img {
  width: 100%;
}
.category-view .top-holder h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 2px 7px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  color: var(--mainWhite);
  font-weight: bold;
}
.category-view .lead {
  color: var(--mainWhite);
  font-size: 16px;
  padding: 20px;
}

.model-index .top {
  margin-bottom: 40px;
  background-color: var(--mainBgGray);
  padding: 10px 20px;
  border-radius: 8px;
}
.model-index .top h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}
.model-index .top h1 small {
  text-transform: lowercase;
  font-size: 14px;
  color: var(--mainHighlight);
}
.model-index .top .dropdown > a {
  padding: 30px;
}
.model-index .top .dropdown .filter {
  width: 500px;
}
.model-index .top .dropdown .filter a {
  color: var(--mainBlack);
}
.model-index .top .dropdown .filter-col {
  padding: 10px;
}

.model-view .left-column .picture-holder {
  position: relative;
}
.model-view .left-column .picture-holder picture {
  margin-bottom: 20px;
  border-radius: 8px;
}
.model-view .left-column .picture-holder picture img {
  width: 100%;
}
.model-view .left-column .picture-holder .list-label {
  background-color: var(--mainHighlight);
  color: var(--mainWhite);
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 15px;
}
.model-view .left-column h1 {
  text-transform: uppercase;
  color: var(--mainHighlight);
  font-weight: bold;
  font-size: 30px;
}
.model-view .left-column .data-sheet {
  color: var(--mainWhite);
  margin-top: 30px;
}
.model-view .left-column .data-sheet span {
  color: var(--mainHighlight);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5;
}
.model-view .left-column .data-sheet .item {
  margin-bottom: 10px;
}
.model-view .left-column .bio {
  color: var(--mainWhite);
  font-size: 16px;
}
.model-view .videos h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 50px;
}

.model-item {
  border-radius: 5px;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid transparent;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.model-item .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(360deg, rgba(10, 7, 11, 0.9) 0%, rgba(10, 7, 11, 0));
  padding-top: 70px;
  padding-bottom: 30px;
}
.model-item .card-body .card-title {
  text-align: left;
  font-size: 20px;
  color: var(--mainWhite);
}
.model-item .card-body .card-title:hover {
  text-decoration: underline;
}
.model-item picture {
  display: block;
}
.model-item picture img {
  border-radius: 5px !important;
}
.model-item .list-label {
  background-color: var(--mainHighlight);
  color: var(--mainWhite);
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 15px;
}

.videos-index .category-holder {
  position: relative;
  margin-bottom: 20px;
}
.videos-index .category-holder picture {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.videos-index .category-holder picture img {
  width: 100%;
}
.videos-index .category-holder .category-description {
  position: absolute;
  background: linear-gradient(360deg, #251f27 0%, rgba(10, 7, 11, 0));
  bottom: 0;
  border-radius: 8px;
  padding: 20px 40% 20px 30px;
}
.videos-index .top {
  margin-bottom: 20px;
  background-color: var(--mainBgGray);
  padding: 10px 20px;
  border-radius: 8px;
}
.videos-index .top h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}
.videos-index .top h1 small {
  text-transform: lowercase;
  font-size: 14px;
  color: var(--mainHighlight);
}
.videos-index .top .dropdown > a {
  padding: 30px;
}
.videos-index .top .dropdown .filter {
  width: 500px;
}
.videos-index .top .dropdown .filter a {
  color: var(--mainBlack);
}
.videos-index .top .dropdown .filter-col {
  padding: 10px;
}
.videos-index .top .dropdown li a {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.video-view h1 {
  color: var(--mainWhite);
  font-size: 20px;
}
.video-view .banner-place {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  position: relative;
}
.video-view .banner-place span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-view .left-side .video-holder {
  position: relative;
}
.video-view .left-side .video-holder .view-video {
  width: 100%;
}
.video-view .left-side .video-holder .picture-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  top: 0;
}
.video-view .left-side .video-holder .picture-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-view .left-side .video-holder .picture-holder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  font-weight: bold;
  z-index: 2;
}
.video-view .left-side .video-holder .login-link {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  left: 0;
  top: 0;
}
.video-view .left-side .banner-place {
  min-height: 80px;
}
.video-view .left-side .video-title h1 {
  font-size: 30px;
  font-weight: 700;
}
.video-view .left-side .video-title .models {
  margin-bottom: 40px;
}
.video-view .left-side .video-title .models a {
  color: var(--mainHighlight);
  display: inline-block;
  margin-right: 20px;
}
.video-view .left-side .video-title .models a:hover {
  color: var(--mainWhite);
  text-decoration: underline;
}
.video-view .left-side .video-community {
  color: var(--mainWhite);
}
.video-view .right-side .banner-place {
  min-height: 540px;
}

.video-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.video-item .vjs-big-play-button {
  display: none !important;
}
.video-item.preview .pictures picture {
  z-index: 0;
}
.video-item .pictures {
  position: relative;
}
.video-item .pictures picture {
  display: block;
  position: relative;
  z-index: 1;
}
.video-item .pictures picture img {
  border-radius: 10px !important;
}
.video-item .pictures .preview-image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  displaY: none;
}
.video-item .pictures .steppers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  flex-wrap: wrap;
}
.video-item .pictures .steppers .image-stepper {
  flex: 1 0 0%;
  height: 100%;
  border-top: 2px solid var(--mainHighlight);
  opacity: 0;
}
.video-item .pictures .preview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.video-item .pictures .preview .preview-video {
  position: absolute;
  width: 101%;
  height: 101%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.video-item .pictures .preview .preview-video video {
  width: 101%;
  height: 101%;
}
.video-item .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(360deg, #251f27 0%, rgba(10, 7, 11, 0));
}
.video-item .card-body .card-title {
  text-align: left;
  font-size: 20px;
  color: var(--mainWhite);
}
.video-item .card-body .card-title:hover {
  text-decoration: underline;
}
.video-item .card-body .models {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--mainText);
}
.video-item .card-body .models a {
  color: var(--mainHighlight);
  margin-right: 5px;
  display: inline-block;
}
.video-item .card-body .models a:hover {
  text-decoration: underline;
}
.video-item .card-body .models a:after {
  content: "|";
  margin-left: 5px;
  display: inline-block;
}
.video-item .card-body .models a:last-of-type:after {
  content: "";
}

.coming-item {
  position: relative;
}
.coming-item .counter-holder {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 40px 40px 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.coming-item .counter-holder .counter-holder-inner {
  position: relative;
  top: -25px;
}
.coming-item .counter-holder .counter-holder-inner .counter-models {
  position: relative;
  text-align: center;
  padding-left: 10px;
}
.coming-item .counter-holder .counter-holder-inner .counter-models a {
  display: inline-block;
  margin-left: -10px;
  border: 2px solid rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border-radius: 50%;
}
.coming-item .counter-holder .counter-holder-inner .counter-models a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names {
  text-align: center;
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names div {
  display: inline-block;
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names div a {
  display: inline-block;
  color: var(--mainHighlight);
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names div a:hover {
  color: var(--mainWhite);
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names div:after {
  content: "x";
  margin: 0 5px;
}
.coming-item .counter-holder .counter-holder-inner .counter-models-names div:last-of-type:after {
  content: "";
}
.coming-item .counter-holder .counter-holder-inner .counter-starring {
  text-align: center;
}
.coming-item .counter-holder .counter-holder-inner .counter-title {
  text-align: center;
}
.coming-item .counter-holder .counter-holder-inner .counter-title h3 {
  font-weight: 700;
}
.coming-item .counter-holder .counter-holder-inner .counter {
  font-size: 40px;
  display: flex;
}
.coming-item .counter-holder .counter-holder-inner .counter .simply-section {
  display: flex;
  padding: 15px;
  text-align: center;
  width: 25%;
}
.coming-item .counter-holder .counter-holder-inner .counter .simply-section .simply-amount {
  display: block;
  font-weight: 700;
}
.coming-item .counter-holder .counter-holder-inner .counter .simply-section .simply-word {
  display: block;
  font-size: 16px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}
.form-group .control-label {
  color: var(--mainBlack);
}
.form-group.checkbox .control-label {
  color: var(--mainWhite);
}

.has-error .form-control {
  border-color: #f67e7e;
  background-color: #ffc7c7;
}
.has-error .error-message {
  font-size: 16px;
}

.login {
  background-image: radial-gradient(ellipse, rgba(238, 73, 126, 0.3), rgba(0, 0, 0, 0) 50%);
}
.login .login-holder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.login .login-holder .inner {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
}
.login .login-holder .inner h1 {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.registration {
  background-image: radial-gradient(ellipse, rgba(238, 73, 126, 0.3), rgba(0, 0, 0, 0) 50%);
}
.registration h1 {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.registration .register-cover-holder {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.registration .register-cover-holder .register-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.registration .register-cover-holder .register-cover-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 200px 20px 30px;
  background: linear-gradient(360deg, #251f27 0%, rgba(10, 7, 11, 0));
}
.registration .package {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 2px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}
.registration .package:hover {
  border: 1px solid var(--mainWhite);
}
.registration .package.active {
  background-color: var(--mainHighlight);
}
.registration .package .title {
  font-size: 20px;
  font-weight: 700;
}
.registration .package .per-day {
  font-size: 30px;
  text-align: right;
  font-weight: 700;
}
.registration .package .per-day span {
  font-size: 14px;
  display: block;
  font-weight: 400;
}

/*# sourceMappingURL=style.css.map */
