@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
li {
  margin: 0;
}

html {
  scrollbar-width: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  background-color: #000;
  color: #d6d6d6;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  display: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font-family: "Quicksand", sans-serif;
  outline: none;
}

button {
  outline: none;
  cursor: pointer;
}

a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* general */

#app__wrap {
  margin-bottom: 70px;
}
.max_width {
  max-width: 1280px;
  margin: 0 auto;
}
.slided {
  bottom: 65px !important;
  box-shadow: 0px -2px 2px 0px rgb(0 0 0 / 30%);
}
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.space {
  height: 20px;
}
.freeze {
  overflow-y: hidden;
}

/* ask to select language box */

#lang__selection {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgb(8 5 21 / 90%);
  font-size: 14px;
  font-weight: 400;
}
#lang__selection h1 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
#lang__selection h2 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}
.lang__selection_inner {
  height: 100%;
  max-width: 220px;
  margin: 0 auto;
  flex-direction: column;
}
.lang__selection_text {
  width: 100%;
  margin-bottom: 20px;
}
.lang__selection_list {
  width: 100%;
}
.lang__selection_list li {
  margin-bottom: 10px;
}
.lang__selection_list li a {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background-color: rgb(255 255 255 / 5%);
  border: 1px solid #333;
  color: #d6d6d6;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.lang__selection_list li a:hover {
  background-color: rgb(255 255 255 / 10%);
}
.lang__selection_flag {
  height: 16px;
  margin-right: 10px;
}
.lang__selection_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(255 255 255 / 5%);
  border: 1px solid #333;
  border-radius: 2px;
  color: #d6d6d6;
  width: 36px;
  height: 30px;
  font-size: 16px;
}
.exit {
  display: inline-block;
  font-weight: 500;
}

/* HEADER */

header {
  background-color: #321a7a;
  border-bottom: 1px solid #3e2194;
  padding: 10px;
  height: 65px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0px -2px 2px 0px rgb(0 0 0 / 30%);
}
.logo {
  height: 44px;
}
.header_inner {
  display: flex;
  align-items: center;
  height: 100%;
}

/* SLIDER */

.modal__search,
.modal__menu {
  position: fixed;
  height: 81px;
  width: 100%;
  bottom: -16px;
  right: 0;
  left: 0;
  background-color: #1e1149;
  border-top: 1px solid #291763;
  color: #fff;
  transition: all 0.2s;
  z-index: 1;
}

/* slider search */
.modal__search {
  padding: 10px;
}
.search__box {
  display: flex;
  width: 100%;
}
.search__box input {
  width: 100%;
  padding: 10px;
  background-color: #0d0721;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 300;
}
.search__box input::placeholder {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 300;
}
.search__box button {
  width: 65px;
  background-color: #321a7a;
  font-size: 12px;
  font-weight: 500;
  color: #d6d6d6;
  border: none;
  border-radius: 0 3px 3px 0;
}

/* slider menu */
.menu__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  height: 100%;
}
.menu_links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.menu_links li {
  width: calc(33.3333% - 10px);
  margin: 5px;
}
.menu_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid #1b0f42;
  background-color: #321a7a;
  border-radius: 3px;
  color: #95ff00;
  font-size: 10px;
  font-weight: 600;
}
.menu_link.yellow {
  color: #cfe837;
}
.menu_link:hover {
  background-color: #3c1f94;
}
.roulette_btn {
  display: flex;
  height: 25px;
  margin: 5px;
  background-color: #cfe837;
  color: #1e1149;
  border: 1px solid #a0b32a;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
}
.delayed {
  display: none;
  flex-direction: column;
  flex: 1 1;
}
.menu_txt {
  height: 25px;
  margin: 5px;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
}

/* NAV */

nav {
  flex: 1 1;
  margin-left: 20px;
}
.nav__mobile_buttons {
  display: flex;
  justify-content: flex-end;
}
.nav__mobile_btn {
  height: 38px;
  width: 50px;
  background: #3c1f94;
  border: 1px solid #2c176b;
  border-radius: 3px;
  cursor: pointer;
}
#menuBtn {
  margin-left: 10px;
}
.search__icon {
  height: 24px;
}
.nav__search_wrap {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav__search {
  display: none;
  flex: 1 1;
  max-width: 300px;
  border: 1px solid #2c176b;
  border-radius: 3px;
}
.nav__search input {
  flex: 1 1;
  border: none;
  border-radius: 3px 0 0 3px;
  background-color: #1e1149;
  padding: 10px;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 300;
}
.nav__search input::placeholder {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 300;
}
.nav__search button {
  width: 50px;
  background-color: #3c1f94;
  color: #d6d6d6;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}
.nav__search button:hover {
  background-color: #381d8a;
}
.search__icon_desktop {
  height: 24px;
}
.nav__toplinks {
  display: none;
  align-items: center;
}
.nav__toplinks ul {
  display: flex;
}
.nav__toplinks ul li a {
  display: flex;
  flex-direction: column;
  padding: 9px;
  font-size: 10px;
  font-weight: 700;
  color: #d6d6d6;
  border-bottom: 1px solid transparent;
}
.nav__toplinks ul li a:hover {
  border-bottom: 1px solid #fff;
  color: #95ff00;
  background-color: #391e8c;
}
.toplink.active {
  border-bottom: 1px solid #fff;
  color: #95ff00;
  background-color: #391e8c;
}
.nav__toplinks ul li {
  margin-right: 5px;
}
.toplink_icon {
  height: 20px;
  margin-bottom: 5px;
}
.nav__selectors {
  display: none;
}
#select_language {
  position: relative;
  display: inline-block;
}
.lang_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px 0;
  min-width: 80px;
  height: 42px;
  background-color: #3c1f94;
  color: #d6d6d6;
  border: 1px solid #2c176b;
  cursor: pointer;
  text-transform: uppercase;
}
.lang_btn span {
  display: flex;
  align-items: center;
  color: #d6d6d6;
  font-size: 11px;
  font-weight: 500;
}
.lang_btn span i {
  margin-left: 5px;
  font-size: 10px;
}
.lang_content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #291763;
  min-width: 120px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.lang_content a {
  display: flex;
  align-items: center;
  color: #d6d6d6;
  padding: 14px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}
.lang_content a:hover {
  background-color: #1e1149;
}
#select_language:hover .lang_content {
  display: block;
}
#select_language:hover .lang_btn {
  background-color: #391e8c;
  color: #95ff00;
}
.lang_icon {
  height: 14px;
  margin-right: 10px;
}

/* THUMBS */

.channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 5px;
  padding: 5px;
}
.channels_title {
  padding: 10px;
  background-color: #1e1149;
  color: #95ff00;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: justify;
  text-transform: uppercase;
}
.channels_title.secondary {
  margin: 0 5px 5px 5px;
  background: #100927;
  color: #e0fc35;
}
.channels li {
  /* background-color: #140b31; */
  background-color: #fff;
  border: 1px solid #291763;
}
.channels li:hover > .thumb__title {
  background-color: #3e2194;
}
.channels li a {
  position: relative;
  padding-bottom: 56.25%;
  font-size: 12px;
  color: #080515;
  font-weight: 400;
  /* color: #d3c6ff;
  font-weight: 300; */
}
.thumb {
  position: absolute;
  width: 100%;
  height: 100%;
}
.thumb:hover {
  opacity: 1;
  -webkit-animation: flash 0.2s;
  animation: flash 0.2s;
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.95;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.95;
  }
  100% {
    opacity: 1;
  }
}
.thumb__counter {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: rgb(0 0 0 / 40%);
  color: #fff;
  padding: 2px 4px;
  font-size: 9px;
  font-weight: 400;
  border-radius: 2px;
}
.thumb__title {
  background-color: #291763;
  border-top: 1px solid #321a7a;
  color: #e0fc35;
  padding: 5px 4px 3px 4px;
  height: 20px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.userinfo_flex {
  display: flex;
}
.user__name {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user__age_flag {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.user__age_flag span {
  display: flex;
}
.flag {
  width: auto;
  height: 14px;
  display: flex;
  margin: 0 0 1px 3px;
}
.flag_worldwide {
  height: 11px;
  margin: 0 0 2px 3px;
}
.thumb__languages {
  position: absolute;
  bottom: 1px;
  left: 1px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap-reverse;
  overflow: hidden;
}
.thumb__languages span {
  max-width: 70px;
  background-color: rgb(0 0 0 / 40%);
  color: #fff;
  margin: 1px;
  padding: 2px 4px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 2px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumb__languages > span:nth-child(3) ~ * {
  display: none;
}
.thumb__hd {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: rgb(149 255 0 / 80%);
  color: #1e1149;
  padding: 2px 4px;
  font-size: 9px;
  font-weight: 600;
  border-radius: 2px;
}
.sex_toy {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
}
.dildo_img {
  height: 16px;
}

/* CHANNELS LIST */

.channels_list {
  display: flex;
  flex-wrap: wrap;
  background-color: #080515;
  margin: 5px;
  padding: 10px;
  font-size: 12px;
}
.channels_list li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px;
}
.categ_list_link {
  color: #95ff00;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.categ_list_link:hover {
  color: #e0fc35;
  text-decoration: underline;
}
.categ_img {
  min-width: 14px;
  margin-right: 5px;
}
.categ_icon {
  width: 14px;
  height: 14px;
}
.categ_counter {
  margin-left: 5px;
  color: #d6d6d6;
  font-size: 11px;
  white-space: nowrap;
}
.categ_counter span {
  color: #e0fc35;
  font-size: 12px;
}

/* paging */

#pagination {
  margin: 0 5px 5px;
}
.flexpages {
  display: flex;
  justify-content: center;
  padding: 5px;
}
.flexpages a {
  display: flex;
  align-items: center;
  padding: 8px;
  margin: 3px;
  background-color: #000;
  font-size: 14px;
  border: 1px solid #291763;
  border-radius: 3px;
}
.flexpages a:hover,
.active-page {
  background-color: #291763;
  color: #e0fc35;
}
.flexpages a i {
  font-size: 10px;
}
.active-page {
  background-color: #291763 !important;
}

/* FOOTER */

footer {
  display: none;
  padding: 12px 10px;
  background-color: #321a7a;
  color: #d6d6d6;
  border-top: 1px solid #3e2194;
  font-size: 11px;
}
.footer_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer_links {
  display: flex;
}
.footer_links li a {
  margin-right: 20px;
  color: #d6d6d6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer_links li a:hover {
  color: #e0fc35;
}

/* 404 not found */

.not_found {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.not_found h1 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}
.not_found p {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  font-size: 12px;
}
.not_found p a {
  margin: 0 5px;
  color: #d0e937;
  font-size: 12px;
}

/* TEXT CONTENT */

#content {
  margin: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  text-align: justify;
}
#content h1 {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #e0fc35;
  text-transform: uppercase;
}
#content p {
  margin-bottom: 10px;
  font-size: 13px;
  color: #d6d6d6;
}
#content h6 {
  margin: 10px 0;
  text-align: center;
  color: #95ff00;
  font-size: 12px;
  font-weight: 600;
}
.content_cards {
  display: flex;
  flex-wrap: wrap;
}
.content_card {
  width: 100%;
  margin: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0b061b;
  border: 1px solid #1b1042;
}
.card_img {
  height: 80px;
}
.content_card_body p {
  font-size: 12px !important;
}
.content_card_body a {
  margin: 20px auto 10px auto;
  padding: 6px;
  max-width: 180px;
  background-color: #1b1042;
  border: 1px solid #291763;
  border-radius: 2px;
  text-align: center;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.content_card_body a:hover {
  background-color: #291763;
}

/* CHATROOM */

#chatroom {
  width: 100%;
  margin-bottom: 10px;
  color: #d6d6d6;
}
#livestream {
  width: 100%;
}
iframe {
  display: flex;
  border: none;
}
#profile {
  line-height: 1.5;
  background-color: #100927;
}
.profile__flex {
  display: flex;
  flex-direction: column;
}
.text_title {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  background-color: #291763;
  color: #e0fc35;
}
.text_title i {
  margin-right: 5px;
}
.box1__left {
  display: flex;
  flex-direction: column;
}
.box1__image_wrap {
  position: relative;
  margin: 10px auto 15px;
}
.box1__img {
  width: 100%;
  max-width: 210px;
  border: 1px solid #1a0e40;
}
.box1__hd {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: rgb(149 255 0 / 75%);
  color: #1e1149;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
}
.box1__languages {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.box1__languages span {
  padding: 2px 4px;
  margin-right: 5px;
  background-color: rgb(0 0 0 / 40%);
  color: #fff;
  font-size: 10px;
  border-radius: 3px;
}
.box1__languages > span:nth-child(3) ~ * {
  display: none;
}
.box1__modelinfo {
  flex: 1 1;
}
.box1__modelinfo h1 {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  padding: 10px;
  background-color: #291763;
  color: #95ff00;
}
.curr_user__name {
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.curr_user__age {
  width: 15%;
  text-align: right;
}
.box1__topbox {
  padding: 5px 10px;
}
.box1__topbox h2 span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.box1__modelinfo h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
  padding: 5px;
  text-transform: capitalize;
}
b {
  font-weight: 500;
}
.country_flexed {
  display: flex;
  align-items: center;
}
.country {
  height: 18px;
}
.country_earth {
  height: 16px;
}
.country_name {
  margin-left: 5px;
}
.box1__buttons {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 10px;
}
.box1__btn {
  flex: 1 1;
}
.box1__btn {
  margin: 5px;
  padding: 5px;
  max-height: 30px;
  display: inline-block;
  vertical-align: middle;
  background-color: #321a7a;
  color: #d6d6d6;
  border: 1px solid #291763;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.box1__btn:hover {
  background-color: #3e2194;
  color: #fff;
}
.box1__btn.chat_now {
  background-color: #cfe837;
  border: 1px solid #a3b72b;
  color: #100927;
  font-weight: 700;
}
.box1__btn.chat_now:hover {
  background-color: #e3ff3b;
}
.box1__text.title {
  padding: 10px;
  background-color: #291763;
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 500;
}
.fa-user-circle {
  margin-right: 10px;
}
.box1__text.title span {
  color: #e0fc35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.box1__text_rows {
  padding: 10px;
}
.box1__text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
.box1__title {
  font-weight: 500;
}
.box1__text span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.box2 {
  background-color: #100927;
}
.box2 p {
  padding: 15px;
  font-size: 12px;
  font-weight: 400;
}
.box2__chat {
  padding: 15px;
}
.box2__form {
  display: flex;
  border-radius: 3px;
}
.box2__form input {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #070410;
  border-radius: 3px 0 0 3px;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 400;
}
.box2__form input::placeholder {
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 400;
}
.send {
  width: 70px;
  background-color: #1a0f3e;
  font-size: 14px;
  color: #cecece;
  border-radius: 0 3px 3px 0;
}
.send:hover {
  background-color: #1b1042;
}
.offline_room {
  min-height: 20vh;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

/* custom favorites and premium */

#custom__selection {
  margin: 5px 5px 0 5px;
}
#custom__selection i {
  margin-right: 5px;
}
.custom__genders {
  display: flex;
}
.custom__genders li {
  flex: 1 1;
  justify-content: center;
}
.custom_gender {
  margin: 5px;
  background-color: #120a2b;
  color: #d6d6d6;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px;
  text-align: center;
  border: 1px solid #1e1149;
  border-radius: 3px;
  white-space: nowrap;
}
.custom_gender:hover {
  background-color: #1e1149;
}

/* turn off the blocker */

.fixer {
  display: none;
  padding: 20px 10px;
  color: #e0fc35;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

/* AT MEDIA */

@media screen and (min-width: 320px) {
  .search__box button {
    width: 70px;
  }
  .flexpages a {
    margin: 5px;
  }
}

@media screen and (min-width: 360px) {
  .menu__wrapper {
    justify-content: space-between;
  }
  .flexpages a {
    padding: 8px 10px;
  }
  .user__name {
    width: 75%;
  }
  .user__age_flag {
    width: 25%;
  }
  .flag {
    height: 16px;
  }
  .flag_worldwide {
    height: 13px;
  }
  .dildo_img {
    height: 20px;
  }
  .profile__flex {
    padding: 5px;
  }
  .box1 {
    display: flex;
    padding-bottom: 5px;
  }
  .box1__left {
    width: calc(50% - 5px);
    margin-right: 5px;
  }
  .box1__right {
    width: 50%;
  }
  .box1__topbox {
    padding: 10px;
    padding-bottom: 0;
  }
  .box1__buttons {
    flex: 1 1;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .box1__image_wrap {
    margin: 5px;
  }
  .box1__modelinfo {
    flex: unset;
  }
  .box2__form input {
    padding: 12px;
  }
  .send {
    font-size: 16px;
  }
  .country_name.lazy {
    display: none;
  }
}

@media screen and (min-width: 520px) {
  .channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 540px) {
  nav {
    display: flex;
    margin-left: 10px;
  }
  .nav__search {
    display: flex;
  }
  .modal__search {
    display: none;
  }
  .search__box {
    display: none;
  }
  #searchBtn {
    display: none;
  }
  .menu_links {
    width: 70%;
  }
  .delayed {
    display: flex;
  }
  .flexpages a {
    padding: 8px 12px;
  }
  .content_card {
    margin: 5px;
    width: calc(50% - 10px);
  }
  .box1__modelinfo h2 {
    flex-direction: row;
  }
  .box1__left {
    width: calc(40% - 5px);
  }
  .box1__right {
    width: 60%;
  }
  .box1__img {
    max-width: unset;
  }
  .country_name.lazy {
    display: block;
  }
}

@media screen and (min-width: 568px) {
  .channels_list li {
    width: 50%;
  }
}

@media screen and (min-width: 650px) {
  .box1__buttons {
    flex-direction: row-reverse;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .channels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .channels_list li {
    width: 33.3333%;
  }
  .menu_links {
    width: 65%;
    flex-wrap: nowrap;
    align-items: center;
  }
  .menu_link {
    height: 30px;
  }
  .delayed {
    flex-direction: unset;
    align-items: center;
  }
  .roulette_btn {
    flex: 1 1;
    height: 30px;
    margin-left: 70px;
  }
  .menu_txt {
    display: none;
  }
  .modal__search {
    padding: 20px;
  }
  .thumb__counter,
  .thumb__languages span {
    padding: 5px;
    font-size: 10px;
  }
  .content_card {
    width: calc(33.3333% - 10px);
  }
  .box1__left {
    max-width: 320px;
  }
  .box1__right {
    width: unset;
    flex: 1 1;
  }
}

@media screen and (min-width: 1024px) {
  #app__wrap {
    margin-bottom: 0;
  }
  #lang__selection {
    display: none !important;
  }
  header {
    position: relative;
    padding: 5px 10px;
  }
  nav {
    height: 100%;
    margin-left: 30px;
  }
  .logo {
    height: 54px;
  }
  .nav__mobile_buttons,
  .modals {
    display: none;
  }
  .nav__search_wrap {
    margin-right: 10px;
  }
  .nav__search {
    height: 36px;
  }
  .nav__search input,
  .nav__search input::placeholder {
    font-weight: 400;
  }
  .nav__search button {
    width: 54px;
  }
  .search__icon_desktop {
    height: 20px;
  }
  .nav__toplinks {
    display: flex;
  }
  .nav__selectors {
    display: block;
  }
  .channels_title {
    padding: 15px;
    margin-top: 10px;
  }
  .thumb__title {
    height: 25px;
    padding: 7px 6px 5px 6px;
    font-size: 12px;
  }
  .flag {
    height: 18px;
    margin: 0 0 0 5px;
  }
  .flag_worldwide {
    margin: 0 0 0 5px;
  }
  .channels {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .channels_list li {
    width: 25%;
  }
  .content_cards {
    padding: 20px;
  }
  .content_card {
    margin: 10px;
    width: calc(33.3333% - 20px);
  }
  .content__top p,
  .content__bottom p {
    margin-bottom: 20px !important;
  }
  footer {
    display: block;
  }
  .not_found h1 {
    font-size: 18px;
  }
  .not_found p,
  .not_found p a {
    font-size: 14px;
  }
  #chatroom {
    margin: 20px 0;
  }
  .profile__flex {
    flex-direction: row;
  }
  .box1 {
    width: 50%;
  }
  .box1__left {
    max-width: unset;
    flex: 1 1;
    width: auto;
  }
  .box1__right {
    width: 50%;
    flex: unset;
  }
  .box1__text.title {
    background-color: #1d1046;
  }
  .box1__text {
    text-transform: uppercase;
  }
  .box2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-left: 5px;
  }
  .box2__left {
    flex: 1 1;
  }
  .box2__turnOnOff {
    display: flex;
  }
  .box2__turnOnOff div {
    flex: 1 1;
  }
  .box2__turnOnOff div:first-child {
    margin-right: 5px;
  }
  .text_title {
    padding: 10px;
    font-size: 14px;
    background-color: #1d1046;
  }
  .mb {
    margin-bottom: 20px;
  }
  #custom__selection {
    margin: 5px 0 0;
  }
  .custom__genders {
    width: 35%;
    margin-left: auto;
  }
  .fixer {
    padding: 20px 20px 40px 20px;
  }
}

@media screen and (min-width: 1280px) {
  .nav__search {
    max-width: 350px;
  }
  .channels {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 10px 0;
  }
  .channels_list {
    margin: 0;
  }
  .channels_list li {
    width: 20%;
  }
  .channels_title.secondary {
    margin: 0 0 10px 0;
  }
  #pagination {
    margin: 0 0 10px 0;
  }
  #content {
    margin: 10px 0;
  }
}

@media screen and (min-width: 1780px) {
  .max_width {
    max-width: 1500px;
  }
  .channels {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .custom__genders {
    width: 30%;
  }
}

