@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  background-color: #111;
  color: #ccc;
  font-family: "Dosis", sans-serif;
  padding-top: 55px;
  font-size: 1rem;
  line-height: 1;
  text-rendering: optimizeSpeed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  font: inherit;
  color: inherit;
}
ol,
ul {
  list-style: none;
}
a {
  display: block;
  text-decoration: none;
  color: inherit;
}
button {
  display: block;
  cursor: pointer;
  background: transparent;
}
input {
  background: white;
}
h1 {
  font-weight: 500;
  font-size: 18px;
}
#container {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.phx-connected {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.section {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2px;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* page loading */
#page {
  opacity: 1; /* default visible state */
  transition: opacity 0.3s ease;
}
#page.is-loading {
  opacity: 0; /* fade out when loading */
}

/* HEADER */

.video-js {
  width: 100%;
  height: 100%;
}
/* Navigation */
.navigation {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 0;
  background: rgb(51 51 51 / 99%);
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* Mobile Button */
#mobile-menu-btn {
  height: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
}
#mobile-menu-btn i {
  font-size: 22px;
}

/* Site Logo */
.logo {
  display: flex;
  height: 30px;
  aspect-ratio: 206 / 30;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo img {
  width: 100%;
}

/* Mistress Race Bar */
.mistress-custom {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  margin: 0 5px;
  color: #ccc;
}
.race {
  background-color: #333;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.active {
  background-color: #ff1b00;
  color: #fff;
}

/* Side Menu */
.sideMenu {
  height: calc(100% - 50px);
  width: 200px;
  left: -200px;
  background: rgba(66, 66, 66, 0.98);
  z-index: 1000;
  position: fixed;
  top: 50px;
  bottom: 0;
  overflow-y: auto;
  /* box-shadow: 3px 1px 2px 0px rgba(0, 0, 0, 0.3); */
}
.sideMenu ul li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  min-height: 50px;
  line-height: 50px;
  font-size: 14px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
}
.sideMenu ul li a i {
  margin-left: 8px;
}
.menu-button {
  cursor: pointer;
}
.sideMenu a {
  display: block;
  color: #ccc;
  text-decoration: none;
  min-height: 50px;
  line-height: 50px;
  font-size: 14px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
}
.sideMenu a i {
  margin-right: 8px;
}
.dynamic-list {
  background: #424242;
  display: none;
}
.dynamic-list li {
  background: #424242;
}
.fa-dot-circle {
  color: #8bc34a;
  margin-left: 0 !important;
}
.fa-angle-down {
  vertical-align: middle;
}
.fa-angle-up {
  display: none;
  vertical-align: middle;
}
.dynamic-link {
  background: #333;
  padding-left: 10px;
  min-height: 40px;
  line-height: 40px;
}

/* Search Mobile */
.searchMob {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin-top: 10px;
}
.inputMob {
  padding: 10px 16px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid #424242;
  outline: none;
  color: #757575;
}
.inputMob:focus {
  border: 1px solid rgba(255, 27, 0, 0.7);
}
.buttonMob {
  border-radius: 20px;
  outline: none;
  padding: 10px;
  color: #fff;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  background: #ff1b00;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}
/* Footer Mobile Menu */
.footerMob {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  padding: 10px;
}
.footerMob p {
  line-height: 1rem;
}
#restrictedLink {
  display: flex;
  padding: 0;
  min-height: auto;
}
#restrictedLink img {
  margin-bottom: 16px;
}

/* Custom Text */
.custom-toptext {
  padding: 6px 8px 8px 8px;
  font-size: 15px;
  color: #fff;
}
.custom-toptext span {
  color: #ff1b00;
}
.custom-toptext p {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
}

/* Femdom Thumbs */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.model {
  display: flex;
  aspect-ratio: 4 / 3;
  position: relative;
  background: #0a0a0a;
}
.model-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0px;
}
.model-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.32) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* AJAX Load */
.more-femdom {
  padding: 10px;
  text-align: center;
}
.next-cams {
  width: 150px;
  margin: 0 auto;
  padding: 8px 15px;
  background: #ff1b00;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid #ff1b00;
  transition: 0.3s;
}
.next-cams:hover {
  border: 1px solid #fff;
}
#dominatrix-set {
  display: none;
}
.loading {
  display: none;
  width: 150px;
}

/* Femdom Banners */
.myBanner {
  width: 100%;
  padding: 30px 0;
}
.banner {
  width: 95%;
  margin: 0 auto;
}
.banner img {
  width: 100%;
}

/* Content */
.content {
  width: 95%;
  margin: 0 auto;
  font-size: 15px;
}
.content-title {
  padding: 10px 0;
  color: #ff1b00;
}
.content-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flex-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  border: 1px solid rgba(255, 27, 0, 0.25);
  padding: 20px;
  background: #131313;
}
.card-image {
  display: flex;
}
.card-image img {
  width: 35px;
}
.card-heading {
  color: #ff1b00;
  text-transform: uppercase;
  font-weight: 600;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
}
.card-body ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-body ul li {
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
  font-weight: 300;
}
.card-body p {
  font-size: 12px;
  line-height: 1.5;
}
.card-body h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5rem;
}

/* Website Footer */
footer {
  width: 100%;
  background: #333;
  margin-top: 50px;
  font-size: 12px;
}
.footerMain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 10px;
}
.linksFoot li:first-child {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.linksFoot li a {
  padding: 10px 0;
  width: fit-content;
  font-size: 13px;
  transition: color 0.2s;
}
.linksFoot li a:hover {
  color: #ff8476;
}
.footer-sec {
  width: 100%;
  background: #252525;
  padding: 15px 0;
}
h4 {
  padding: 10px;
  text-align: center;
}

/* FOF Page */
.not-found {
  width: 95%;
  margin: 0 auto;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
}
.not-found p {
  font-size: 15px;
  line-height: 1.5;
}
.fof-image {
  text-align: center;
  padding: 20px 0;
}
.fof-image img {
  width: 50px;
}

/* PC & Laptop Nav */
.userNav {
  display: none;
  gap: 5px;
}
.buttonTrigger {
  background-color: transparent;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.flexOption {
  position: relative;
}
.flexOption-down {
  display: none;
  position: absolute;
  background-color: #f3f3f3;
  min-width: 180px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 10px;
  border-top-left-radius: 0;
  padding: 8px;
}
.flexOption-down a {
  color: #222;
  padding: 8px;
  display: block;
  font-size: 16px;
}
.round {
  border-radius: 10px;
}
.flexOption-down a:hover {
  color: #ff1b00;
}
.flexOption:hover .flexOption-down {
  display: block;
}
.flexOption:hover .buttonTrigger {
  background-color: #ff1b00;
  color: #fff;
}

/* Main Bar */
.section-bar {
  display: flex;
  align-items: center;
}
.custom-ethnicity {
  font-size: 12px;
  flex: 1;
  display: none;
}
.custom-ethnicity a.option {
  padding: 6px 10px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.3s;
}
.custom-ethnicity a.option:hover {
  background-color: #ff1b00;
}
.option-desktop {
  background-color: #ff1b00;
}

/* Search PC*/
#search {
  display: none;
  flex: 1;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
}
.inputPc {
  width: 100%;
  padding: 0 12px;
  color: #111;
  caret-color: #ff1b00;
  text-transform: uppercase;
}
.buttonPc {
  aspect-ratio: 4 / 3;
  color: #fff;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  background: #fff;
}
.fa-search {
  font-size: 20px;
  color: #ff1b00;
}
.buttonPc:hover i {
  font-size: 22px;
}

/* Femdom chatrooms */
.chatroom {
  text-align: center;
  margin-top: 5px;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 5px;
}
.chatroom span {
  color: #ff1b00;
}
.chat-heading {
  padding: 10px 0;
  text-align: left;
  background: #111;
  font-size: 12px;
  font-weight: 600;
}
.iframe-wrapper {
  position: relative;
}
#stream {
  background: #333;
}
.chatroom-cams {
  padding: 2px;
}
.similar-femdom {
  text-align: left;
  margin: 20px 0 10px 0;
}
.room_offline {
  padding: 100px 0;
  font-size: 16px;
  color: #fff;
  background: #111;
}
.disable_adblocker {
  display: none;
  height: 10vh;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff1b00;
  color: #fff;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chatroom-tags h2 {
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 16px;
}
.chatroom-tags a {
  display: inline-block;
  padding: 8px 12px;
  margin: 2px;
  background-color: #333333;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.chatroom-tags a:hover {
  background-color: #c71500;
}
h2.chatroom-similar {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Mistress Information */
#myMistress {
  margin: 0 auto;
  font-size: 12px;
  background: #404040;
}
#myMistress span {
  color: #ff1b00;
  padding-right: 5px;
}
.flex-sec {
  display: flex;
}
/* Chat Btns */
.buttons {
  display: flex;
}
.buttons a {
  flex: 1;
}
.private {
  margin: 8px 5px !important;
}
.chat-btn {
  padding: 14px 0;
  background-color: #ff1b00;
  color: #fff;
  transition: border 0.2s;
  border: 1px solid #ff1b00;
  font-weight: 600;
}
.chat-btn:hover {
  border: 1px solid #fff;
}
.chat-btn i {
  margin-right: 5px;
}
.white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.white:hover {
  border: 1px solid #ff1b00;
}
.load-more-button {
  background-color: #ff1b00;
  color: #fff;
  padding: 12px 18px;
  width: 300px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  margin: 40px auto;
  display: block;
  font-weight: 600;
}
.load-more-button:hover {
  background-color: #b61503;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

/* partner list */
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
}
.partner-card {
  display: flex;
  aspect-ratio: 4 / 3;
  background-color: #000;
  position: relative;
}
.partner-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0 0 0 / 50%);
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
}
.partner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* general text */
.general-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.general-text h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
}
.general-text h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25rem;
}
.general-text p {
  font-size: 14px;
  line-height: 1.25rem;
}
.general-text p a {
  display: inline-block;
  color: #ff6452;
}
.general-text p a:hover {
  text-decoration: underline;
}
/* contact page */
.contact-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.contact-page h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
}
.contact-page h1.contact-success {
  color: #8bc34a;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 2px;
  color: #333;
  width: 100%;
}
.contact-form button {
  background-color: #ff1b00;
  color: #fff;
  height: 40px;
  border-radius: 2px;
  font-weight: 700;
  width: fit-content;
  padding: 0 16px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 14px;
}
.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form-row div {
  flex: 1;
}
.email-error {
  color: #ff7b6c;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

/* 404 */
.error-page {
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  gap: 30px;
}
.error-page-text {
  position: relative;
  user-select: none;
}
.error-title {
  font-size: 100px;
}
.error-subtitle {
  font-size: 18px;
  color: #ccc;
}
.error-link {
  color: #fff;
  background-color: #ff1b00;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.error-link:hover {
  background-color: #c71500;
}

/* Responsive Media Queries */

@media (min-width: 568px) {
  .logo {
    height: 40px;
  }
  .models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .navigation {
    height: 70px;
  }
  .sideMenu {
    top: 70px;
    height: calc(100% - 70px);
  }
  body {
    padding-top: 75px;
  }
  .custom-toptext {
    padding: 8px 10px 10px 13px;
  }
  .banner {
    width: 85%;
  }
  .card-body p {
    font-size: 14px;
  }
  .footerMain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-form-row {
    flex-direction: row;
  }
}

@media (min-width: 640px) {
  .partner-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .banner {
    width: 75%;
  }
  .content-title {
    padding: 10px;
  }
  .content {
    padding: 50px 0;
  }
  .card-image img {
    width: 45px;
  }
  .error-page {
    gap: 20px;
  }
  .error-title {
    font-size: 150px;
  }
  .error-subtitle {
    font-size: 20px;
    padding: 6px 14px;
    position: absolute;
    background: #111111;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/*MIN*/
@media (min-width: 1024px) {
  body {
    padding-top: 0;
  }
  #mobile-menu-btn {
    display: none;
  }
  .logo {
    position: static;
    transform: none;
  }
  .userNav {
    display: flex;
  }
  .section-bar {
    margin-bottom: 10px;
  }
  .models-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .mobile-menu-btn {
    display: none;
  }
  .sideMenu {
    display: none;
  }
  .navigation {
    position: sticky;
    top: 0;
    height: auto;
    padding: 10px;
  }
  .mistress-custom {
    display: none;
  }
  .content-flex {
    flex-direction: row;
  }
  .banner {
    width: 65%;
  }
  .custom-toptext {
    padding: 0;
    flex: 1;
    margin-left: 5px;
  }
  .fa-angle-down {
    font-size: 11px;
    vertical-align: unset;
  }
  .section {
    padding: 10px;
  }
  .custom-ethnicity {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }
  #search {
    display: flex;
  }
  .not-found {
    align-items: center;
  }
  .chat-heading {
    font-size: 14px;
  }
  #stream {
    margin-top: 5px;
  }
  #myMistress {
    font-size: 15px;
  }
  .content {
    width: 90%;
  }
  .card-image img {
    width: 55px;
  }
  .footerMain {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 95%;
    margin: 10px auto;
  }
  .linksFoot {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .linksFoot li a {
    padding: 0;
  }
  .partner-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }
  .card-body ul li {
    text-align: left;
  }
}

/*MAX*/
@media (max-width: 1023px) {
  .onlydesktop {
    display: none;
  }
}

@media (min-width: 1280px) {
  .models-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .navigation {
    justify-content: space-between;
  }
  .userNav {
    gap: 10px;
  }
  #search {
    flex: none;
    width: 240px;
  }
  .banner {
    width: 55%;
  }
  .content {
    width: 85%;
  }
  .buttonTrigger {
    font-size: 14px;
    font-weight: 600;
  }
  .partner-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .contact-page {
    max-width: 50%;
    margin: unset;
  }
  .card-body ul li {
    text-align: justify;
  }
}

@media (min-width: 1520px) {
  .models-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .banner {
    width: 50%;
  }
  .content {
    width: 80%;
  }
  .partner-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .flex-card {
    padding: 30px;
  }
}

@media (min-width: 1920px) {
  .models-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .banner {
    width: 40%;
  }
  .partner-list {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 2250px) {
  .models-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .partner-list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 2560px) {
  .models-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .banner {
    width: 35%;
  }
  .next-cams {
    width: 170px;
    margin: 10px auto;
    padding: 15px 20px;
    font-size: 16px;
  }
  .partner-list {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
