@font-face {
  font-family: "Outfit";
  src: url("/static/images/fonts/Outfit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/static/images/fonts/Outfit-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/static/images/fonts/Outfit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/static/images/fonts/Outfit-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  margin: 0;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  background-color: #fff;
  color: #343434;
  margin: 0;
}
body.is-menu-open {
  overflow: hidden;
}
@media (min-width: 1025px) {
  body.is-menu-open {
    overflow: visible;
  }
}
@media (min-width: 1025px) {
  body.is-menu-open .wrapper-inner {
    background-color: #F2F2F2;
    padding-left: 310px;
  }
}
body.is-menu-open .header__toggler .line {
  background-color: transparent;
}
body.is-menu-open .header__toggler .line:before {
  top: calc(50% - 1.5px);
  transform: rotate(-225deg);
}
body.is-menu-open .header__toggler .line:after {
  bottom: auto;
  top: calc(50% - 1.5px);
  transform: rotate(225deg);
}
body.is-menu-open .aside {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  body.is-menu-open .aside__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
body.is-menu-open .content {
  border-radius: 20px 0 0 0;
}
body.hiddden {
  overflow: hidden;
}

body *::-webkit-scrollbar-track {
  width: 10px;
  height: 10px;
}

body *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

body *::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 2px;
  background-color: rgba(52, 52, 52, 0.5);
}

@media (min-width: 1280px) {
  .video-page .header__toggler,
  .account-page .header__toggler,
  .static-page .header__toggler {
    display: none;
  }
}

.wrapper {
  display: table;
  overflow: hidden;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
@media (min-width: 1025px) {
  .wrapper-inner {
    transition: all 0.2s ease-in-out;
  }
}

.container {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1025px) {
  .container {
    padding: 0 30px;
  }
}

.content {
  padding: 20px 0 30px;
}
@media (min-width: 1025px) {
  .content {
    background-color: #fff;
    padding: 30px 0;
  }
}

h1 {
  font-size: 32px;
  margin: 0;
}

a {
  text-decoration: none;
  color: #FF00A5;
  transition: all 0.2s ease-in-out;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  line-height: 1;
}

.btn {
  margin: 0;
  outline: none;
  border: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  height: 40px;
  background-color: #FF00A5;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
}
.btn svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}
.btn--border {
  background: none;
  border: 2px solid #FF00A5;
  color: #343434;
}
@media (min-width: 1025px) {
  .btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .btn:hover {
    background-color: #dd0491;
    border-color: #dd0491;
    color: #fff;
  }
}

input,
textarea {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background-color: #DEDEDE;
  color: #343434;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  text-overflow: ellipsis;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #343434;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #343434;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #343434;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #343434;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
input:focus,
textarea:focus {
  outline: none;
}

.icon {
  fill: currentColor;
}

.active-filters {
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .active-filters {
    display: flex;
    align-items: flex-start;
    grid-gap: 10px;
    margin-bottom: 20px;
  }
  .active-filters.is-open .active-filters__wrap {
    max-height: 200px;
  }
  .active-filters.is-open .active-filters__more svg {
    transform: rotate(180deg);
  }
}
.active-filters__wrap {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  overflow: hidden;
  overflow-x: auto;
  margin: 0 -10px;
  padding: 0 10px 5px;
}
@media (min-width: 1025px) {
  .active-filters__wrap {
    max-height: 36px;
    overflow: hidden;
    flex-wrap: wrap;
    transition: all 0.2s ease-in-out;
    margin: 0;
    padding: 0;
  }
}
.active-filters__btn {
  white-space: nowrap;
  height: 36px;
  border-radius: 15px;
  width: auto;
}
.active-filters__more {
  display: none;
}
@media (min-width: 1025px) {
  .active-filters__more {
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 15px;
    background: #DEDEDE;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .active-filters__more:hover {
    background-color: #FF00A5;
    color: #fff;
  }
  .active-filters__more svg {
    fill: currentColor;
    width: 12px;
    height: 12px;
    transition: all 0.2s ease-in-out;
  }
}

.aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 310px;
  height: 100vh;
  background-color: #F2F2F2;
  padding: 100px 30px 30px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 11;
  transition: all 0.2s ease-in-out;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}
.aside__menu:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .aside__menu:not(:last-child) {
    display: none;
  }
}
.aside__menu-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.aside__menu .header__models {
  display: flex;
}
.aside__menu .header__nav {
  display: block;
  margin: 0 -30px;
}
.aside__filter.is-open .aside__filter-item {
  color: #FF00A5;
  background-color: #E8E8E8;
}
.aside__filter.is-open .icon-arrow-down {
  fill: #FF00A5;
  transform: rotate(180deg) translateY(50%);
}
.aside__filter-item {
  display: flex;
  align-items: center;
  grid-gap: 13px;
  padding: 12px 50px 12px 30px;
  margin: 0 -30px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .aside__filter-item {
    cursor: pointer;
  }
  .aside__filter-item:hover {
    color: #FF00A5;
  }
}
.aside__filter-item .icon {
  width: 26px;
  height: 26px;
}
.aside__filter-item .icon-arrow-down {
  flex-shrink: 0;
  flex-grow: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 10px;
  height: 10px;
  transition: all 0.2s ease-in-out;
}
.aside__filter-list {
  margin: 0 -30px;
  display: none;
}
.aside__filter-btn {
  display: block;
}
.aside__filter-btn input {
  display: none;
}
.aside__filter-btn input:checked + span {
  background-color: #FF00A5;
  color: #fff;
}
.aside__filter-btn input:checked + span .icon {
  opacity: 1;
}
.aside__filter-btn span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 30px 0 60px;
  grid-gap: 10px;
  font-weight: 600;
  background-color: #DEDEDE;
  transition: all 0.2s ease-in-out;
}
.aside__filter-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.aside__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4.5px);
  z-index: 10;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.back-top {
  position: fixed;
  right: 10px;
  bottom: 150px;
  width: 50px;
  height: 50px;
  background-color: #FF00A5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateX(100px);
  transition: all 0.2s ease-in-out;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (min-width: 1025px) {
  .back-top {
    cursor: pointer;
  }
  .back-top:hover {
    background-color: #dd0491;
  }
  .back-top:hover svg {
    transform: scale(1.2);
  }
}
.back-top__icon {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
@media (min-width: 1025px) {
  .back-top__icon {
    transition: all 0.2s ease-in-out;
  }
}

.footer {
  display: table-row;
  height: 1px;
  background-color: #F2F2F2;
}
.footer__holder {
  padding: 26px 0;
  text-align: center;
}
.footer__logo {
  display: block;
  margin: 0 auto 25px;
}
.footer__logo img {
  margin: auto;
}
.footer__nav {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .footer__nav {
    grid-gap: 40px;
  }
}
.footer__nav-link {
  color: #343434;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .footer__nav-link {
    font-size: 16px;
  }
  .footer__nav-link:hover {
    color: #FF00A5;
  }
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
}

.grid {
  margin-bottom: 30px;
}
.grid__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.grid__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
@media (min-width: 410px) {
  .grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1550px) {
  .grid__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid__btn {
  max-width: 180px;
  margin: 20px auto 0;
  font-size: 16px;
}

.header {
  background-color: #F2F2F2;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  grid-gap: 20px;
  height: 70px;
  justify-content: space-between;
  position: relative;
  z-index: 12;
}
@media (min-width: 1280px) {
  .header {
    height: 90px;
  }
}
@media (min-width: 1550px) {
  .header {
    grid-gap: 30px;
  }
}
@media (min-width: 1700px) {
  .header {
    grid-gap: 40px;
  }
}
@media (min-width: 1280px) {
  .header__right, .header__left {
    display: flex;
    align-items: center;
    grid-gap: 20px;
  }
}
@media (min-width: 1280px) {
  .header__middle {
    flex-shrink: 1;
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 30px;
  }
}
.header__toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}
@media (min-width: 1025px) {
  .header__toggler {
    cursor: pointer;
  }
}
.header__toggler .line {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #FF00A5;
  transition: all 0.2s ease-in-out;
}
.header__toggler .line:before, .header__toggler .line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #FF00A5;
  transition: all 0.2s ease-in-out;
}
.header__toggler .line:before {
  top: 0;
}
.header__toggler .line:after {
  bottom: 0;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: none;
  max-width: 200px;
  width: 100%;
}
@media (min-width: 375px) {
  .header__logo {
    max-width: 247px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    position: static;
    transform: none;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1280px) {
  .header__nav {
    display: flex;
    align-items: center;
    grid-gap: 20px;
  }
}
@media (min-width: 1550px) {
  .header__nav {
    grid-gap: 30px;
  }
}
@media (min-width: 1700px) {
  .header__nav {
    grid-gap: 40px;
  }
}
.header__nav-item {
  position: relative;
  white-space: nowrap;
}
.header__nav-item.is-open .header__nav-link {
  color: #FF00A5;
  background-color: #E8E8E8;
}
.header__nav-item.is-open .header__nav-link .icon-arrow-down {
  transform: rotate(180deg) translateY(50%);
}
@media (min-width: 1280px) {
  .header__nav-item {
    padding: 0;
    text-transform: none;
  }
  .header__nav-item:hover .header__nav-link {
    color: #FF00A5;
  }
  .header__nav-item:hover .header__nav-link .icon-arrow-down {
    transform: rotate(180deg);
  }
  .header__nav-item:hover .header__nav-drop {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
}
.header__nav-link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  text-transform: uppercase;
  padding: 12px 50px 12px 30px;
  font-weight: 600;
  color: #343434;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .header__nav-link {
    padding: 0;
  }
}
.header__nav-link svg {
  fill: currentColor;
  width: 26px;
  height: 26px;
  transition: all 0.2s ease-in-out;
}
.header__nav-link .icon-arrow-down {
  position: absolute;
  flex-shrink: 0;
  flex-grow: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 10px;
  height: 10px;
}
@media (min-width: 1280px) {
  .header__nav-link .icon-arrow-down {
    position: static;
    transform: none;
  }
}
.header__nav-drop {
  display: none;
}
@media (min-width: 1280px) {
  .header__nav-drop {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    width: 190px;
    padding-top: 12px;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
@media (min-width: 1280px) {
  .header__nav-drop-inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.15);
  }
}
.header__nav-drop-link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  height: 50px;
  padding: 12px 50px 12px 30px;
  font-weight: 600;
  color: #343434;
  background-color: #DEDEDE;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .header__nav-drop-link {
    text-transform: none;
    background-color: #fff;
    padding: 10px 20px;
    height: 40px;
    font-weight: 400;
  }
}
.header__nav-drop-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1280px) {
  .header__nav-drop-link svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1280px) {
  .header__nav-drop-link {
    transition: all 0.2s ease-in-out;
  }
  .header__nav-drop-link:hover {
    color: #fff;
    background-color: #FF00A5;
  }
}
.header__search {
  position: absolute;
  top: 50%;
  left: 20px;
  width: calc(100% - 74px);
  transform: translateY(-200px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1280px) {
  .header__search {
    width: 100%;
    left: 0;
  }
}
@media (min-width: 1550px) {
  .header__search {
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-width: 500px;
  }
}
.header__search.is-open {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.header__search input {
  padding: 0 50px 0 20px;
}
.header__search-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.header__search-btn svg {
  width: 20px;
  height: 20px;
}
.header__search-toggler {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1550px) {
  .header__search-toggler {
    display: none;
  }
}
.header__search-toggler.is-active .icon-close {
  transform: scale(1);
}
.header__search-toggler.is-active .icon-search {
  transform: scale(0);
}
.header__search-toggler svg {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.header__search-toggler .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}
.header__models {
  display: none;
  align-items: center;
  grid-gap: 5px;
}
@media (min-width: 1280px) {
  .header__models {
    display: flex;
  }
}
.header__models-img {
  width: 44px;
  height: 44px;
}
.header__models-value {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: #FF00A5;
}
.header__models-txt {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.popup {
  display: none;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 10px !important;
}
.popup .iziModal-content {
  padding: 20px 20px 30px !important;
}
@media (min-width: 768px) {
  .popup .iziModal-content {
    padding: 40px 50px 30px !important;
  }
}
.popup__head {
  margin-bottom: 20px;
}
.popup__close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
}
@media (min-width: 1025px) {
  .popup__close {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .popup__close:hover {
    color: #FF00A5;
  }
}
.popup__close svg {
  width: 100%;
  height: 100%;
}
.popup__logo {
  padding: 0 30px;
  max-width: 307px;
  margin: 0 auto 25px;
}
.popup__logo img {
  max-width: 100%;
}
.popup__title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
}
.popup__title span {
  color: #FF00A5;
}
.popup__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .popup__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (min-width: 1280px) {
  .popup__form-row {
    grid-gap: 50px;
  }
}
.popup__form-label {
  display: inline-block;
  margin-bottom: 10px;
}
.popup__form-inputbox {
  margin-bottom: 20px;
}
.popup__form-inputbox input {
  height: 40px;
}
.popup__form-date {
  display: flex;
  grid-gap: 10px;
}
.popup__form-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 20px;
  justify-content: space-between;
  padding: 5px 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.popup__form-link {
  color: #343434;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .popup__form-link:hover {
    color: #FF00A5;
  }
}
.popup__form-txt a {
  color: #FF00A5;
  cursor: pointer;
}
.popup__form-notice {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #868686;
}
.popup__form-btn {
  width: 160px;
  margin: 0 auto;
}

#login,
#signup,
#forgot_password {
  max-width: 490px !important;
}

.iziModal-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(7.5px);
}

.seo-block h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
}
.seo-block p {
  line-height: 1.5;
  margin: 0;
}
.seo-block p:not(:last-child) {
  margin-bottom: 20px;
}
.seo-block ul li {
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.seo-block ul li:before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #343434;
}
.seo-block ul li:not(:last-child) {
  margin-bottom: 20px;
}

.settings {
  margin-bottom: 30px;
}
.settings__form-row {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
@media (min-width: 1025px) {
  .settings__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
  }
}
.settings__form-group {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.settings__form-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.settings__form-subtitle {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.settings__form-input:read-only {
  background-color: #F2F2F2;
  width: 230px;
}
@media (min-width: 1025px) {
  .settings__form-input {
    max-width: 400px;
  }
}
.settings__form-submit {
  text-transform: uppercase;
  height: 50px;
  font-size: 16px;
  width: 180px;
}
.settings__avatar {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 20px;
}
.settings__avatar-img {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  background: #DEDEDE;
  overflow: hidden;
}

.settings__avatar-img svg {
  width: 160px;
  height: 160px;
  padding: 40px;
}

@media (min-width: 1025px) {
  .settings__avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
  }
}
.settings__avatar-add {
  display: block;
}
.settings__avatar-add input[type=file] {
  display: none;
}
.settings__avatar-btn {
  height: 50px;
  text-transform: uppercase;
  font-size: 16px;
  background-color: #DEDEDE;
  color: #343434;
  width: auto;
  padding: 0 30px;
  margin-bottom: 10px;
}
.settings__avatar-remove {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
@media (min-width: 1025px) {
  .settings__avatar-remove {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .settings__avatar-remove:hover {
    color: #FF00A5;
  }
}
.settings__avatar-remove svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.single {
  margin-bottom: 20px;
}
.single__video {
  margin: -20px -10px 20px;
  background: #f2f2f2;
}
@media (min-width: 1025px) {
  .single__video {
    margin: 0 0 20px;
    border-radius: 10px;
    overflow: hidden;
  }
}
.single__video-wrap {
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.single__video-wrap img,
.single__video-wrap video,
.single__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single__video-bottom {
  padding: 10px;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
@media (min-width: 411px) {
  .single__video-bottom {
    justify-content: space-between;
    flex-direction: row;
  }
}
.single__video-ctrl {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.single__video-btn {
  color: #343434;
  font-weight: 400;
  background-color: #fff;
}
@media (min-width: 411px) {
  .single__video-btn {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .single__video-btn:hover {
    background-color: #fff;
    color: #FF00A5;
  }
}
.single__video-btn svg {
  width: 16px;
  height: 16px;
}
.single__video-btn span {
  display: none;
}
@media (min-width: 1025px) {
  .single__video-btn span {
    display: inline;
  }
}
.single__video-tip {
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 411px) {
  .single__video-tip {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .single__video-tip {
    width: 195px;
  }
}
.single__video-tip svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1025px) {
  .single__content-holder {
    display: flex;
    align-items: flex-start;
    grid-gap: 30px;
    margin-bottom: 20px;
  }
}
.single__content-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.single__info {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin: 0 0 10px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 1025px) {
  .single__info {
    margin-bottom: 0;
  }
}
.single__info-img {
  flex-shrink: 0;
  flex-grow: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 10px;
}
.single__info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single__info-name {
  font-weight: 600;
  word-break: break-word;
  grid-gap: 5px;
  margin-bottom: 5px;
  max-width: 150px;
}
@media (min-width: 1025px) {
  .single__info-name {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .single__info-name span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.single__info-name svg {
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  top: 1px;
  margin-left: 3px;
  width: 12px;
  height: 12px;
  fill: #FF00A5;
}
.single__info-meta {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  flex-wrap: wrap;
}
.single__info-meta-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #C3B3B3;
}
.single__info-meta-item:not(:first-child):before {
  display: block;
  width: 4px;
  height: 4px;
  content: "";
  background-color: #C3B3B3;
  border-radius: 50%;
}
.single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .single__tags {
    margin-bottom: 0;
  }
}
.single__tags-txt {
  font-weight: 500;
}
.single__tags-btn {
  height: 36px;
  width: auto;
}
.single__description {
  line-height: 1.5;
}

.thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #DEDEDE;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  color: #fff;
}
@media (min-width: 1025px) {
  .thumb:hover {
    color: #FF00A5;
  }
  .thumb:hover .thumb__img {
    transform: scale(1.1);
  }
  .thumb:hover .thumb__btn {
    transform: translateX(0);
  }
}
.thumb.is-follow .thumb__btn {
  transform: translateX(0);
}
.thumb.is-follow .thumb__btn svg {
  fill: #FF00A5;
  stroke: transparent;
}
.thumb__img {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
.thumb__img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

@keyframes thumbSkeleton {
	from {
		background-position: 200% 0;
	}
	to {
		background-position: -200% 0;
	}
}

.thumb__img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #DEDEDE;
	background-size: 200% 100%;
	animation: thumbSkeleton 1.2s infinite linear;
	z-index: 1;
}

.thumb__img.is-loaded::before {
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}


@media (min-width: 410px) {
  .thumb__img {
    padding-bottom: 72%;
  }
}
@media (min-width: 1025px) {
  .thumb__img {
    transition: all 0.2s ease-in-out;
  }
}
.thumb__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}

.thumb__img.is-loaded img {
	opacity: 1;
}

.thumb__img.offline img {
  object-fit: contain;
}
.thumb__btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(52, 52, 52, 0.7);
  backdrop-filter: blur(4.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 1025px) {
  .thumb__btn {
    transition: all 0.2s ease-in-out;
    transform: translateX(-100px);
  }
  .thumb__btn:hover svg {
    stroke: #FF00A5;
  }
}
.thumb__btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-in-out;
  fill: transparent;
  stroke: #fff;
}
.thumb__info {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
}
.thumb__info-name {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.thumb__info-bottom {
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
.thumb__info-status {
  display: flex;
  grid-gap: 5px;
  font-size: 12px;
  font-weight: 500;
  align-items: center;
}
.thumb__info-status:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}
.thumb__info-status.is-online {
  color: #00CD39;
}
.thumb__info-status.is-online:before {
  background-color: #00CD39;
}
.thumb__info-status.is-offline {
  color: #FF0000;
}
.thumb__info-status.is-offline:before {
  background-color: #FF0000;
}
.thumb__info-list {
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
.thumb__info-list-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #C3B3B3;
}
.thumb__info-list-item:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #C3B3B3;
}

.world {
  margin-bottom: 30px;
}
.world__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.world__txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.world__map {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .world__map {
    max-width: 1000px;
    margin: 0 auto 20px;
  }
}
.world__map img {
  width: 100%;
}
.world__form {
  position: relative;
  max-width: 500px;
  margin: 0 auto 30px;
}
.world__form input {
  padding: 0 50px 0 20px;
}
.world__form-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: 20px;
}
.world__form-btn svg {
  width: 100%;
  height: 100%;
  color: currentColor;
}
.world__holder {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin-bottom: 20px;
}
.world__group {
  padding: 20px;
  border-radius: 10px;
  background-color: #F2F2F2;
}
.world__group-head {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}
.world__group-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.world__group-count {
  font-size: 16px;
  line-height: 1.5;
}
.world__group-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (min-width: 540px) {
  .world__group-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .world__group-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
  }
}
.world__group-item {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.world__group-item-img {
  flex-shrink: 0;
  flex-grow: 0;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}
.world__group-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world__group-item-name {
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #000;
  transition: color .3s ease;
}
@media screen and (hover:hover) {
  .world__group-item:hover .world__group-item-name {
    color: #FF00A5;
  }
}
.world__group-item-count {
  font-size: 12px;
  font-weight: 500;
  color: #C3B3B3;
}

.world__filter-list {
  padding: 20px;
  border-radius: 10px;
  background-color: #F2F2F2;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 30px;
}

.fancybox-overlay {
    background: #101010a8 !important;
    backdrop-filter: blur(5px);
}

.fancybox-inner, .fancybox-outer, .fancybox-wrap {
    width: auto !important;
}

.fancybox-wrap {
    height: fit-content !important;
}

.fancybox-wrap .fancybox-skin {
    transition: opacity .3s, visibility .3s, transform .3s;
}

.fancybox-opened .fancybox-skin {
  box-shadow: none !important;
}

.fancybox-inner {
    display: flex;
    flex-direction: column;
    height: fit-content !important;
}

.fancybox-skin {
    background: 0 0 !important;
}

.fancybox-wrap {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    border: 10px solid transparent !important;
}

.popup-holder {
    max-width: 490px;
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    z-index: 102;
    padding: 40px 50px 30px;
    background: #fff;
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .popup-holder {
        max-width: 100%;
        width: 90vw;
        padding: 20px 20px 30px;
    }
}

.fancybox-close {
  opacity: 0 !important;
  visibility: hidden !important;
}

.field-error {
  color: #dd0491;
}

.textarea {
  height: 200px;
  resize: none;
  width: 100%;
  font-family: "Outfit", sans-serif;
  padding: 20px;
}

.settings__form-inputbox {
  margin-bottom: 20px;
}

.dell-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
}

.dell-avatar input[type="checkbox"] {
  display: none;
}

.dell-avatar label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  color: #444;
}

.dell-avatar label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #ffe4ec;
  border: 2px solid #ff7aa2;
  transition: 0.2s ease;
}

.dell-avatar label::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: -4px;
  font-size: 18px;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.2s ease;
}

.dell-avatar input:checked + label::before {
  background: linear-gradient(135deg, #ff7aa2, #ff4f87);
  border-color: #ff4f87;
}

.dell-avatar input:checked + label::after {
  opacity: 1;
  transform: scale(1);
}

.dell-avatar label:hover::before {
  box-shadow: 0 0 0 4px rgba(255, 122, 162, 0.2);
}

.single__video-btn.btn.is-follow {
  background-color: #FF00A5;
  color: #fff;
}