@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  background-color: #151315;
  color: #fff;
}

body.is-hidden {
  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: #3e3e3e;
}

.wrapper {
  display: table;
  overflow: hidden;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.container {
  max-width: 1860px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1025px) {
  .container {
    padding: 0 30px;
  }
}

h1 {
  font-size: 32px;
  margin: 0;
}

a {
  text-decoration: none;
  color: #F71E89;
  transition: all 0.2s ease-in-out;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin: 0;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  color: #fff;
  line-height: 1;
  display: flex;
}

.btn {
  margin: 0;
  outline: none;
  border: none;
  padding: 15px 20px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  background-color: #F71E89;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
}
.btn--border {
  background: none;
  border: 1px solid #F71E89;
  color: #fff;
}
@media (min-width: 1025px) {
  .btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .btn:hover {
    background-color: #d71978;
  }
}

input {
  border: none;
  outline: none;
  width: 100%;
  height: 50px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 0 20px;
  border-radius: 10px;
}
input::-webkit-input-placeholder {
  color: #9C9C9C;
}
input:-moz-placeholder {
  color: #9C9C9C;
  opacity: 1;
}
input::-moz-placeholder {
  color: #9C9C9C;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #9C9C9C;
}
input:focus:-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
input:focus::placeholder {
  color: transparent;
}

textarea {
  border: none;
  outline: none;
  width: 100%;
  height: 100px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 20px;
  border-radius: 10px;
  resize: none;
}
textarea::-webkit-input-placeholder {
  color: #9C9C9C;
}
textarea:-moz-placeholder {
  color: #9C9C9C;
  opacity: 1;
}
textarea::-moz-placeholder {
  color: #9C9C9C;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #9C9C9C;
}
textarea:focus:-moz-placeholder {
  color: transparent;
  opacity: 1;
}
textarea:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
textarea:focus::placeholder {
  color: transparent;
}

.icon {
  fill: currentColor;
}
.icon-search, .icon-close {
  width: 24px;
  height: 24px;
}

.select2-container * {
  outline: none;
}

.select2-container {
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  z-index: 5;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 10px 32px 6px 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  overflow: hidden;
  min-height: 36px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  height: 36px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 14px 20px 10px;
  display: block;
  -webkit-transition: color 0.4s, background 0.4s;
  -o-transition: color 0.4s, background 0.4s;
  transition: color 0.4s, background 0.4s;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  background: #000;
  -webkit-user-select: none;
  font-weight: 500;
}

.select2-results__option span {
  display: flex;
  align-items: center;
}

.select2-results__option img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media screen and (min-width: 1025px) {
  .select2-results__options .select2-results__option:hover {
    background-color: #F71E89 !important;
    color: #fff !important;
  }
}
.select2-results__option--highlighted {
  background-color: #252525;
  color: #fff;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-results__option:not([id]) {
  display: none;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open.select2-container--default .select2-selection--single {
  background-color: #000;
}

.select2-container--open.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}

.select2-container--open .select2-selection--multiple .select2-selection__rendered:after {
  -webkit-transform: rotate(224deg);
  -ms-transform: rotate(224deg);
  transform: rotate(224deg);
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: none;
  padding: 10px;
  background-color: #fff;
}

.select2-search--dropdown .select2-search__field {
  width: 100%;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #A18DA3;
  -webkit-transition: border-color 0.4s;
  -o-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #F71E89;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  outline: none;
  height: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  line-height: 20px;
  color: #9C9C9C;
  font-weight: 500;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  border: 2px solid #F71E89;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered:not([title="Select.."]) {
  border-color: #000;
  background-color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
  display: flex;
  align-items: center;
  line-height: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span img {
  margin-right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 14px;
  font-weight: 500;
}

.select2-container--open .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  border: solid #A18DA3;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
  transform: translate3d(0, -50%, 0) rotate(45deg);
  left: 5px;
  position: absolute;
  -webkit-transition: border-color 0.4s, -webkit-transform 0.4s;
  transition: border-color 0.4s, -webkit-transform 0.4s;
  -o-transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  top: 50%;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #E3DDE3;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-transform: rotate(224deg);
  -ms-transform: rotate(224deg);
  transform: rotate(224deg);
  border-color: #fff;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #A18DA3;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 36px 0 5px;
  position: relative;
  width: 100%;
}

.select2-selection--multiple .select2-selection__rendered:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
  transform: translate3d(0, -50%, 0) rotate(45deg);
  border: solid #A18DA3;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #E3DDE3;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  float: left;
  font-size: 12px;
  margin-right: 5px;
  margin: 3px 3px 3px 0;
  -webkit-transition: color 0.4s, background 0.4s, border-color 0.4s;
  -o-transition: color 0.4s, background 0.4s, border-color 0.4s;
  transition: color 0.4s, background 0.4s, border-color 0.4s;
  padding: 8px 38px 8px 18px;
}

@media screen and (min-width: 1025px) {
  .select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
    background-color: #F71E89;
    color: #fff;
  }
  .select2-container--default .select2-selection--multiple .select2-selection__choice:hover .select2-selection__choice__remove {
    color: #fff;
  }
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 18px;
  height: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #A18DA3;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #E3DDE3;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single .select2-selection__rendered,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple .select2-selection__rendered {
  border-color: #000;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 320px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #fff;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #F71E89;
  color: #fff;
  font-weight: 500;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #E3DDE3eee 100%);
  background-image: -o-linear-gradient(top, white 50%, #E3DDE3eee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#E3DDE3eee));
  background-image: linear-gradient(to bottom, white 50%, #E3DDE3eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #E3DDE3eee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #E3DDE3eee 50%, #cccccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #E3DDE3eee), to(#cccccc));
  background-image: linear-gradient(to bottom, #E3DDE3eee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #E3DDE3eee 50%);
  background-image: -o-linear-gradient(top, white 0%, #E3DDE3eee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #E3DDE3eee));
  background-image: linear-gradient(to bottom, white 0%, #E3DDE3eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #E3DDE3eee 50%, white 100%);
  background-image: -o-linear-gradient(top, #E3DDE3eee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #E3DDE3eee), to(white));
  background-image: linear-gradient(to bottom, #E3DDE3eee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--open {
  z-index: 7;
}

.checkbox {
  display: inline-flex;
}
@media (min-width: 1025px) {
  .checkbox {
    cursor: pointer;
  }
}
.checkbox input {
  display: none;
}
.checkbox input:checked + span:before {
  background-color: #F71E89;
}
.checkbox input:checked + span:after {
  opacity: 1;
}
.checkbox span {
  position: relative;
  display: inline-flex;
  padding-left: 30px;
}
.checkbox span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #F71E89;
  border-radius: 5px;
}
.checkbox span:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 9px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.bottom-board {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .bottom-board {
    margin-bottom: 50px;
  }
}
.bottom-board__holder {
  border-radius: 10px;
  background-color: #000;
  padding: 15px 0 50px;
}
.bottom-board__title {
  color: #9C9C9C;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.bottom-board__list {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
}
@media (min-width: 1920px) {
  .bottom-board__list {
    grid-gap: 70px;
  }
}
.bottom-board__item {
  display: none;
  width: 300px;
  flex-shrink: 0;
  flex-grow: 0;
  height: 250px;
  overflow: hidden;
  background-color: #151315;
}
.bottom-board__item:first-child {
  display: flex;
}
@media (min-width: 680px) {
  .bottom-board__item:nth-child(2) {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .bottom-board__item:nth-child(3) {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .bottom-board__item:nth-child(4) {
    display: flex;
  }
}
@media (min-width: 1710px) {
  .bottom-board__item:nth-child(5) {
    display: flex;
  }
}

.breadcrumbs {
  /* Styles for breadcrumbs */
}

.categories {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .categories {
    margin-bottom: 50px;
  }
}
.categories__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 20px;
}
.categories__alphabet {
  margin: 0 -10px 20px;
  padding: 0 10px;
  display: flex;
  grid-gap: 5px;
  overflow: hidden;
  overflow-x: auto;
}
.categories__alphabet-link {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 10px;
  border: 1px solid #F71E89;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 5px 8px;
  color: #fff;
}
@media (min-width: 1025px) {
  .categories__alphabet-link:hover {
    background-color: #F71E89;
  }
}
.categories__group {
  margin-bottom: 25px;
}
.categories__group-title {
  text-transform: uppercase;
  color: #F71E89;
  background-color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}
.categories__group-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
@media (min-width: 375px) {
  .categories__group-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 640px) {
  .categories__group-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .categories__group-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .categories__group-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1550px) {
  .categories__group-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.categories__group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
.categories__group-item-link {
  font-size: 16px;
  color: #fff;
}
@media (min-width: 1025px) {
  .categories__group-item-link:hover {
    color: #F71E89;
  }
}
.categories__group-item-val {
  color: #9C9C9C;
  flex-shrink: 0;
  flex-grow: 0;
}

.footer {
  display: table-row;
  height: 1px;
  background-color: #000;
}
.footer__holder {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .footer__holder {
    display: flex;
    align-items: center;
    grid-gap: 30px;
  }
}
@media (min-width: 1025px) {
  .footer__holder {
    grid-gap: 90px;
    padding: 30px 0;
  }
}
@media (min-width: 1280px) {
  .footer__holder {
    grid-gap: 150px;
  }
}
.footer__left {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__left {
    margin-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .footer__right {
    flex-shrink: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
  }
}
.footer__logo {
  display: inline-flex;
}
.footer__nav {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 20px;
}
@media (min-width: 768px) {
  .footer__nav {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .footer__nav {
    grid-gap: 30px 120px;
  }
}
.footer__nav-link {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .footer__nav-link:hover {
    color: #F71E89;
  }
}
.footer__copy {
  text-align: center;
  display: none;
  font-size: 14px;
  line-height: 1.4;
  color: #9C9C9C;
}
.footer__copy--mobile {
  display: block;
}
@media (min-width: 768px) {
  .footer__copy--mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer__copy--desktop {
    display: block;
  }
}
.footer__rta {
  display: none;
}
@media (min-width: 1025px) {
  .footer__rta {
    max-width: 100px;
    display: block;
  }
}

.grid {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .grid {
    margin-bottom: 50px;
  }
}
.grid__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .grid__headline {
    margin-bottom: 20px;
  }
}
.grid__headline-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 0.8;
  color: #fff;
}
.grid__headline-select {
  max-width: 160px;
  width: 100%;
}
.grid__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
@media (min-width: 375px) {
  .grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 560px) {
  .grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .grid__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1550px) {
  .grid__list {
    grid-template-columns: repeat(7, 1fr);
  }
}
.grid__more {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media (min-width: 1280px) {
  .grid__more {
    margin-top: 30px;
  }
}
.grid__more .btn {
  width: auto;
}
.grid__ctrl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px;
  margin-top: 20px;
}
.grid__ctrl .btn {
  width: auto;
  padding: 12px 20px 8px;
  font-size: 14px;
  font-weight: 400;
  color: #9C9C9C;
  background-color: #000;
}
@media (min-width: 1025px) {
  .grid__ctrl .btn:hover {
    color: #fff;
    background-color: #F71E89;
  }
}

.header {
  position: relative;
  background-color: #000;
  padding: 10px;
  margin-bottom: 20px;
  z-index: 10;
}
@media (min-width: 1280px) {
  .header {
    padding: 25px 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    width: 301px;
  }
  .header__logo img {
    width: 100%;
  }
}
.header__holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  position: relative;
}
.header__toggle {
  flex-shrink: 0;
  flex-grow: 0;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1280px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle .line {
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.header__toggle .line:before, .header__toggle .line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.header__toggle .line:before {
  top: 0;
}
.header__toggle .line:after {
  bottom: 0;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(7.5px);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.header__overlay.is-active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1280px) {
  .header__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
  }
}
@media (min-width: 1365px) {
  .header__box {
    grid-gap: 50px;
  }
}
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background-color: #000;
  padding: 20px 20px 90px;
  z-index: 11;
  transform: translateX(-100%);
  transition: all 0.2s ease-in-out;
}
.header__menu.is-active {
  transform: translateX(0);
}
@media (min-width: 375px) {
  .header__menu {
    width: 320px;
  }
}
@media (min-width: 1280px) {
  .header__menu {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    transform: translateX(0);
    background: none;
    z-index: 0;
    transition: none;
  }
}
.header__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 1280px) {
  .header__menu-head {
    display: none;
  }
}
.header__menu-content {
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  height: 100%;
}
@media (min-width: 1280px) {
  .header__menu-content {
    overflow: visible;
    max-height: none;
  }
}
@media (min-width: 1280px) {
  .header__menu-ctrl {
    display: none;
  }
}
.header__menu-nav {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
@media (min-width: 1280px) {
  .header__menu-nav {
    flex-direction: row;
    grid-gap: 20px;
  }
}
@media (min-width: 1365px) {
  .header__menu-nav {
    grid-gap: 50px;
  }
}
.header__menu-nav-link {
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}
.header__menu-nav-link.active {
  color: #F71E89;
}
@media (min-width: 1025px) {
  .header__menu-nav-link:hover {
    color: #F71E89;
  }
}
.header__search {
  position: absolute;
  top: -200%;
  left: 0;
  transform: translateY(-100%);
  width: calc(100% - 44px);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.header__search.is-active {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transform: translateY(-50%);
}
.header__search input {
  background-color: #151315;
  padding: 0 55px 0 20px;
}
.header__search-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .header__search-btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .header__search-btn:hover {
    color: #F71E89;
  }
}
.header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
}
@media (min-width: 1025px) {
  .header__search-toggle {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .header__search-toggle:hover {
    color: #F71E89;
  }
}
.header__search-toggle.is-active .icon-close {
  transform: scale(1);
}
.header__search-toggle.is-active .icon-search {
  transform: scale(0);
}
.header__search-toggle svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.header__search-toggle .icon-close {
  transform: scale(0);
}
.header__ctrl {
  display: none;
}
@media (min-width: 1280px) {
  .header__ctrl {
    display: block;
  }
}
.header__ctrl.is-clone {
  display: block;
  margin-bottom: 30px;
}
.header__ctrl.is-clone .header__ctrl-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.header__ctrl-box {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  white-space: nowrap;
}
.header__user {
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-gap: 10px;
  position: relative;
}
.header__user.is-active .header__user-btn {
  color: #F71E89;
}
.header__user.is-active .header__user-btn-arrow {
  top: -2px;
  transform: rotate(180deg);
}
.header__user-btn {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  color: #9C9C9C;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .header__user-btn {
    cursor: pointer;
  }
  .header__user-btn:hover {
    color: #F71E89;
  }
}
@media (min-width: 1280px) {
  .header__user-btn {
    max-width: 250px;
  }
}
.header__user-btn-icon {
  flex-shrink: 0;
  flex-grow: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #151315;
  overflow: hidden;
}
.header__user-btn-icon svg {
  width: 25px;
  height: 25px;
}
.header__user-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.header__user-btn-name {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__user-btn-arrow {
  position: relative;
  transition: all 0.2s ease-in-out;
}
.header__user-btn-arrow .icon-arrow-down {
  width: 12px;
  height: 12px;
}
.header__user-drop {
  border-radius: 10px 0 10px 10px;
  background: #151315;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.55);
  display: none;
  flex-direction: column;
  width: 100%;
  grid-gap: 10px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .header__user-drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 5;
  }
}
.header__user-drop-link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 20px;
  line-height: 1;
  color: #9C9C9C;
}
@media (min-width: 1025px) {
  .header__user-drop-link {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .header__user-drop-link:hover {
    background-color: #F71E89;
    color: #fff;
  }
}
.header__user-drop-link svg {
  width: 20px;
  height: 20px;
}

.member {
  margin-bottom: 30px;
}
.member__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  grid-gap: 20px;
  position: relative;
}
.member__avatar {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}
.member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member__info {
  padding-bottom: 50px;
}
@media (min-width: 1025px) {
  .member__info {
    padding: 0;
  }
}
.member__info-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.member__info-meta {
  display: flex;
  grid-gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  color: #9C9C9C;
}
.member__info-meta span:not(:first-child):before {
  content: "•";
  display: inline-block;
  margin-right: 5px;
  color: #F71E89;
}
.member__btn {
  width: auto;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 120px;
  z-index: 9;
}
@media (min-width: 1025px) {
  .member__btn {
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.member__btn svg {
  width: 20px;
  height: 20px;
}
.member__description {
  width: 100%;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .member__description {
    padding-right: 185px;
    margin: -35px 0 0 120px;
    width: auto;
  }
}

.pagination {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination__holder {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
}
.pagination .page a,
.pagination .page-current a,
.pagination .prev a,
.pagination .next a,
.pagination .page-current span {
  display: flex;
  justify-content: center;
  padding: 18px 0 15px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #F71E89;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 1025px) {
  .pagination .page a:hover,
  .pagination .page-current a:hover,
  .pagination .prev a:hover,
  .pagination .next a:hover {
    background-color: #9C9C9C;
    border-color: #9C9C9C;
    color: #fff;
  }
}
.pagination .page-current span {
  background-color: #F71E89;
  color: #fff;
  pointer-events: none;
}
.pagination .page-current + .page {
  display: flex;
}
.pagination .page {
  display: none;
}
@media (min-width: 480px) {
  .pagination .page {
    display: flex;
  }
}
.pagination .next a,
.pagination .prev a {
  padding: 0;
  align-items: center;
}
@media (min-width: 1025px) {
  .pagination .next a,
  .pagination .prev a {
    width: auto;
    padding: 0 30px;
    grid-gap: 10px;
  }
}
.pagination .next svg,
.pagination .prev svg {
  color: #fff;
  width: 12px;
  height: 12px;
}
.pagination .next span,
.pagination .prev span {
  display: none;
}
@media (min-width: 1025px) {
  .pagination .next span,
  .pagination .prev span {
    display: block;
    margin-bottom: -4px;
  }
}
@media (min-width: 1025px) {
  .pagination .prev {
    margin-right: 10px;
  }
}
.pagination .prev svg {
  transform: rotate(90deg);
}
.pagination .prev + .page {
  display: flex;
}
@media (min-width: 1025px) {
  .pagination .next {
    margin-left: 10px;
  }
}
.pagination .next svg {
  transform: rotate(-90deg);
}
.pagination .jump {
  display: none;
}
.pagination .jump span {
  display: flex;
  justify-content: center;
  padding: 18px 0 15px;
  height: 50px;
  width: 30px;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 410px) {
  .pagination .jump {
    display: flex;
  }
  .pagination .jump + .page {
    display: flex;
  }
}

.popup {
  /* display: none; */
  width: 100%;
  background-color: #151315;
  border-radius: 10px !important;
}
.popup .iziModal-content {
  padding: 30px 20px !important;
}
.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: #F71E89;
  }
}
.popup__close svg {
  width: 100%;
  height: 100%;
}
.popup__info-logo {
  margin: 0 auto 30px;
}
.popup__info-logo img {
  margin: 0 auto;
}
.popup__info-img {
  margin: 0 auto 30px;
}
.popup__info-img--age {
  width: 140px;
}
.popup__info-img--blocker {
  max-width: 590px;
  width: 100%;
}
.popup__info-title {
  font-size: 26px;
  font-weight: 700;
  padding: 18px 20px 14px;
  background-color: #000;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0 -20px 30px;
}
@media (min-width: 1025px) {
  .popup__info-title {
    font-size: 30px;
  }
}
.popup__info-text {
  font-size: 16px;
  line-height: normal;
  text-align: center;
  margin-bottom: 30px;
}
.popup__info-ctrl {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  grid-gap: 20px;
}
@media (min-width: 768px) {
  .popup__info-ctrl {
    flex-direction: row;
  }
}
.popup__info-ctrl .btn {
  width: auto;
}
.popup__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}
@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;
  color: #fff;
}
.popup__form-inputbox {
  margin-bottom: 20px;
  position: relative;
}
.popup__form-inputbox textarea {
  height: 125px;
}
.popup__form-date {
  display: flex;
  grid-gap: 10px;
}
.popup__form-box {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  justify-content: space-between;
  padding: 5px 0;
  margin-bottom: 20px;
}
.popup__form-link {
  color: #737373;
}
@media (min-width: 1025px) {
  .popup__form-link:hover {
    color: #F71E89;
  }
}
.popup__form-ctrl {
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #000;
}
.popup__form-txt {
  text-align: center;
  color: #737373;
}
.popup__form-txt--terms {
  margin-top: 30px;
}
.popup__form-txt a {
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .popup__form-txt a:hover {
    color: #F71E89;
  }
}
.popup__form-btn {
  padding: 12px 20px 8px;
}
.popup__form-btn--save {
  width: auto;
  font-size: 14px;
  font-weight: 400;
}
.popup__form-add {
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 10px;
  background: #000;
  padding: 0 100px 0 20px;
  color: #9C9C9C;
  position: relative;
}
.popup__form-add input {
  display: none;
}
.popup__form-add .btn {
  padding: 7px 20px 3px;
  width: auto;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
}
.popup__form-preview {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 30px;
}
.popup__form-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  overflow: hidden;
  color: #9C9C9C;
}
.popup__form-avatar svg {
  width: 80px;
  height: 80px;
}
.popup__form-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#age_verify,
#detect_blocker {
  max-width: 900px !important;
}

#login,
#signup,
#forgot_password {
  max-width: 490px !important;
}

#edit_profile {
  max-width: 950px !important;
}

.iziModal-overlay {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(7.5px);
}

.seo-text {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .seo-text {
    margin-bottom: 50px;
  }
}
.seo-text p {
  font-size: 16px;
  color: #9C9C9C;
  font-weight: 400;
}
.seo-text p:not(:last-child) {
  margin-bottom: 32px;
}

.single {
  margin: -20px 0 40px;
}
@media (min-width: 1025px) {
  .single {
    margin: 0 0 50px;
  }
}
@media (min-width: 1280px) {
  .single__holder {
    display: flex;
    align-items: flex-start;
    grid-gap: 20px;
  }
}
@media (min-width: 1280px) {
  .single__content {
    flex-shrink: 1;
    flex-grow: 1;
    min-width: 0;
  }
}
.single__aside {
  display: none;
}
@media (min-width: 1280px) {
  .single__aside {
    width: 360px;
    flex-shrink: 0;
    flex-grow: 0;
    display: block;
    background-color: #000;
    border-radius: 10px;
    padding: 15px 30px 50px;
  }
  .single__aside-title {
    text-transform: uppercase;
    text-align: center;
    color: #9C9C9C;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3.6px;
    margin-bottom: 10px;
  }
  .single__aside-item {
    display: block;
  }
  .single__aside-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.single__video {
  margin: 0 -10px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 480px) {
  .single__video {
    margin: 0 0 20px;
    border-radius: 10px;
  }
  .single__video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--url) no-repeat center;
    background-size: cover;
    backdrop-filter: blur(27px);
    z-index: -2;
  }
  .single__video:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(27px);
    z-index: -1;
  }
}

.single__video-btn {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .single__video-btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .single__video-btn:hover {
    color: #F71E89;
  }
}
.single__video img,
.single__video video,
.single__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 480px) {
  .single__video img,
  .single__video video,
  .single__video iframe {
    object-fit: contain;
  }
}
.single__album {
  margin: 0 -10px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: calc(100vh - 200px);
}
@media (min-width: 480px) {
  .single__album {
    margin: 0 0 20px;
    border-radius: 10px;
  }
}
@media (min-width: 1025px) {
  .single__album {
    height: 50vw;
    max-height: 1000px;
  }
}
.single__album .swiper,
.single__album .swiper-slide {
  height: 100%;
}
.single__album-item {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.single__album-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--url) no-repeat center;
  background-size: cover;
  backdrop-filter: blur(27px);
  z-index: -2;
}
.single__album-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(27px);
  z-index: -1;
}
.single__album-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.single__album-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@media (min-width: 1025px) {
  .single__album-btn {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .single__album-btn:hover {
    background-color: #F71E89;
  }
}
.single__album-btn.btn-prev {
  left: 10px;
  transform: rotate(90deg);
}
.single__album-btn.btn-next {
  right: 10px;
  transform: rotate(-90deg);
}
.single__album-btn svg {
  width: 20px;
  height: 20px;
}
.single__album-pagination {
  position: absolute;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.single__album-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1 !important;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  width: 40px;
}
@media (min-width: 1025px) {
  .single__album-pagination .swiper-pagination-bullet {
    cursor: pointer;
  }
}
.single__album-pagination .swiper-pagination-bullet-active {
  background-color: #F71E89;
}
.single__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px;
}
.single__description {
  color: #9C9C9C;
  font-size: 16px;
  margin-bottom: 20px;
}
.single__info {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .single__info {
    margin-bottom: 50px;
  }
}
.single__info-inner {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.single__info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
}
.single__info-label {
  font-size: 16px;
  margin-top: 4px;
}
.single__info-tag, .single__info-model {
  display: inline-flex;
  width: auto;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 20px 5px;
}
@media (min-width: 1025px) {
  .single__info-tag:hover, .single__info-model:hover {
    color: #fff;
    background-color: #F71E89;
  }
}
.single__info-tag {
  background-color: #000;
  color: #9C9C9C;
}
.single__info-add {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #000;
  position: relative;
}
.single__info-add:before, .single__info-add:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: #9C9C9C;
}
.single__info-add:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 1025px) {
  .single__info-add {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .single__info-add:hover {
    background-color: #F71E89;
  }
  .single__info-add:hover:before, .single__info-add:hover:after {
    background-color: #fff;
  }
}
.single__ctrl {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
@media (min-width: 1025px) {
  .single__ctrl {
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
  }
}
.single__ctrl-top {
  width: 100%;
  display: flex;
  align-self: center;
  grid-gap: 20px;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .single__ctrl-top {
    width: auto;
    justify-content: flex-start;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media (min-width: 1025px) {
  .single__ctrl-bottom {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    flex-shrink: 1;
    flex-grow: 1;
    justify-content: space-between;
  }
}
.single__ctrl-voute {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.single__ctrl-voute-box {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.single__ctrl-voute-btn {
  display: block;
  width: 29px;
  height: 29px;
  color: #9C9C9C;
}
@media (min-width: 1025px) {
  .single__ctrl-voute-btn:hover {
    color: #F71E89;
  }
}
.single__ctrl-voute-btn.dislike {
  transform: rotate(180deg);
}
.single__ctrl-voute-btn svg {
  width: 100%;
  height: 100%;
}
.single__ctrl-voute-txt {
  font-size: 16px;
  color: #9C9C9C;
  margin-top: 3px;
}
.single__ctrl-voute-progress {
  width: 100%;
  height: 4px;
  background-color: #9C9C9C;
  border-radius: 4px;
  overflow: hidden;
}
.single__ctrl-voute-progress .line {
  height: 100%;
  background-color: #F71E89;
  border-radius: 4px;
}
.single__ctrl-fav {
  display: inline-flex;
  width: auto;
  padding: 11px 20px 9px;
  color: #9C9C9C;
  background-color: #000;
}
@media (min-width: 1025px) {
  .single__ctrl-fav:hover {
    color: #fff;
    background-color: #F71E89;
  }
}
.single__ctrl-fav svg {
  width: 20px;
  height: 20px;
}
.single__ctrl-meta {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .single__ctrl-meta {
    margin-bottom: 0;
  }
}
.single__ctrl-meta-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  color: #9C9C9C;
}
.single__ctrl-meta-item:not(:first-child):before {
  content: "";
  display: block;
  margin-right: 5px;
  flex-shrink: 0;
  flex-grow: 0;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #F71E89;
}
.single__ctrl-meta-item svg {
  flex-shrink: 0;
  flex-grow: 0;
  width: 16px;
  height: 16px;
}
.single__ctrl-meta-item span {
  margin-top: 3px;
}
.single__ctrl-actions {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .single__ctrl-actions {
    margin-bottom: 0;
  }
}
.single__ctrl-actions-btn {
  color: #9C9C9C;
  background-color: #000;
  padding: 12px 20px;
  white-space: nowrap;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .single__ctrl-actions-btn:hover {
    color: #fff;
    background-color: #F71E89;
  }
}
.single__ctrl-actions-btn svg {
  width: 18px;
  height: 18px;
}
.single__ctrl-actions-btn span {
  display: none;
}
@media (min-width: 1550px) {
  .single__ctrl-actions-btn span {
    transform: translateY(2px);
    display: block;
    font-size: 16px;
  }
}
.single__comment {
  max-width: 1000px;
  margin-bottom: 30px;
}
.single__comment-form {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 30px;
}
.single__comment-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}
.single__comment-btn {
  max-width: 110px;
  font-weight: 400;
  font-size: 14px;
  padding: 12px 20px 8px;
}
.single__comment-list {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.single__comment-item {
  display: flex;
  align-items: flex-start;
  grid-gap: 20px;
}
.single__comment-item-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
  overflow: hidden;
  color: #9C9C9C;
}
.single__comment-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single__comment-item-avatar svg {
  width: 25px;
  height: 25px;
}
.single__comment-item-content {
  flex-shrink: 1;
  flex-grow: 1;
}
.single__comment-item-head {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.single__comment-item-name {
  font-size: 16px;
}
.single__comment-item-date {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 14px;
  color: #9C9C9C;
}
.single__comment-item-date:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #F71E89;
  margin: -3px 5px 0 0;
}
.single__comment-item-text {
  color: #9C9C9C;
}

.static-page {
  padding-bottom: 30px;
}
.static-page__head {
  margin-bottom: 30px;
}
.static-page__head h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .static-page__head h1 {
    font-size: 26px;
  }
}
.static-page__head h2 {
  font-size: 12px;
  color: #9C9C9C;
  font-weight: 400;
}

.static-content h2,
.static-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
.static-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 25px;
}
.static-content ol,
.static-content ul {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 25px;
  counter-reset: item;
}
.static-content ol li,
.static-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.static-content ul li:before {
  content: "";
  counter-increment: item;
  position: absolute;
  top: 9px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
.static-content ol li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  color: #9C9C9C;
}
.static-content a {
  border-bottom: 1px solid transparent;
}
@media (min-width: 1025px) {
  .static-content a {
    transition: all 0.2s ease-in-out;
  }
  .static-content a:hover {
    border-bottom-color: #F71E89;
  }
}
.static-content b,
.static-content strong {
  font-weight: 600;
}

.thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
@media (min-width: 1025px) {
  .thumb:hover {
    color: #F71E89;
  }
  .thumb:hover .thumb__img img {
    transform: scale(1.1);
  }
}
.thumb__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.thumb__checkbox input {
  display: none;
}
.thumb__checkbox input:checked + span:before {
  background-color: #F71E89;
}
.thumb__checkbox input:checked + span:after {
  opacity: 1;
}
.thumb__checkbox span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
}
.thumb__checkbox span:before {
  content: "";
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: block;
}
.thumb__checkbox span:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.thumb__img {
  display: block;
  position: relative;
  padding-bottom: 175%;
  background-color: #000;
}
.thumb__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 1025px) {
  .thumb__img img {
    transition: all 0.2s ease-in-out;
    transform-origin: top center;
  }
}
.thumb__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 10px;
  z-index: 0;
}
.thumb__info:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: -1;
}
.thumb__info-label {
  color: #fff;
  display: inline-flex;
  align-items: flex-start;
  grid-gap: 5px;
  padding: 7px 7px 3px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
}
.thumb__info-label svg {
  margin-top: -1px;
  width: 12px;
  height: 12px;
}
.thumb__info-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 10px;
}
.thumb__info-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 5px;
}
.thumb__info-tag {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 12px;
  line-height: 1;
  color: #9C9C9C;
}
.thumb__info-tag:not(:first-child):before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #F71E89;
}

a {
  cursor: pointer;
}

.popup__form-inputbox .field-error {
  position: absolute;
  bottom: -18px;
  color: red;
  left: 0;
}

.generic-error {
  color: red;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

.popup  {
    padding: 30px 20px !important;
}

.fancybox-skin {
  border-radius: 10px !important;
  background-color: #151315;
}

.fancybox-wrap:not(.fancybox-type-image) .fancybox-close, .form-upload.uploading *, .sort .sort-drop, .tags-row .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.player-wrap {
	position: relative;
}

#kt_player {
	position: absolute !important;
}

.hidden {
  display: none ;
}

.single__ctrl-fav.delete {
    color: #fff;
    background-color: #F71E89;
}

.smileys-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;

}

.member__avatar .icon-user {
  width: 80px;
  height: 80px;
}


.header__user-drop {
    border-radius: 10px 0 10px 10px;
    background: #151315;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.55);
    display: none;
    flex-direction: column;
    width: 100%;
    grid-gap: 10px;
    overflow: hidden;
}

.member__btn .btn {
  padding: 12px 20px 8px;
}

.hidden-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #000000;
  border-radius: 0 0 10px 10px;
  display: none;
  z-index: 99;
  overflow: hidden;
}

.btn-action .icon-arrow-down {
    width: 12px;
    height: 12px;
    transition: all 0.2s ease-in-out;
}

.hidden-list a {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 20px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

@media (min-width: 1025px) {
    .hidden-list a:hover {
        background-color: #F71E89;
        color: #fff;
    }
}

.drop-box.show .hidden-list {
  display: block;
}

.drop-box.show .btn {
  border-radius: 10px 10px 0 0;
}

.drop-box.show .icon-arrow-down {
    top: -2px;
    transform: rotate(180deg);
}

.grid__headline-select.drop-box {
  position: relative;
}

.grid__headline-select.drop-box .btn {
  background: #000;
  padding: 10px 20px 10px;
  font-size: 14px;
  line-height: 20px;
  justify-content: space-between;
}

.list-sort {
  display: flex;
}

.list-sort .drop-box {
  margin: 0 0 0 10px;
}

.btn-action span {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .grid__headline {
      flex-wrap: wrap;
  }

  .list-sort {
    width: 100%;
    margin: 0 0 0 -10px;
  }

}

.btn-favourites {
  position: relative;
}

.btn-favourites .hidden-list {
  width: fit-content;
}

.btn-favourites .hidden-list span,
.btn-favourites .hidden-list a {
  white-space: nowrap;
}

.btn-favourites .hidden-list span {
    display: flex;
}

.hidden-list a.delete {
  padding: 10px;
}

.btn-favourites .hidden-list {
  border-radius: 0 10px 10px 10px;
  top: calc(100% - 3px);
} 

.edit-item {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.single__content .playlist {
  margin-bottom: 20px;
}

.thumb a {
  color: #fff;
}

@media (min-width: 1025px) {
    .thumb:hover a {
        color: #F71E89;
    }
}

.fancybox-skin {
    color: #fff;
}

@media (max-width: 1025px) {
    .btn-favourites .hidden-list {
      left: auto;
      right: 0;
      border-radius: 10px 0 10px 10px;
    }
} 

.popup.iziModal,
.popup .iziModal-content.add {
  padding: 0!important;
}

@media (max-width: 460px) {
    .popup__form-date {
      flex-direction: column;
    }
} 

#login {
  width: 490px !important;
}

@media (max-width: 560px) {
    #login {
    width: auto !important;
  }
} 


.sponsor {
  margin: 0 0 10px;
}

.sponsor img {
  margin: 0 auto;
}