/** initial setup **/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nano>.nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.nano>.nano-content:focus {
  outline: thin dotted;
}

.nano>.nano-content::-webkit-scrollbar {
  display: none;
}

.has-scrollbar>.nano-content::-webkit-scrollbar {
  display: block;
}

.fancybox-opened .fancybox-skin {
  padding: 0 !important;
  overflow: hidden;
  box-shadow: -7px 10px 21px rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  background-color: #16171b;
}

.fancybox-inner {
  width: 100%;
}

.fancybox-close {
  top: 0 !important;
  right: 0 !important;
  z-index: 10001 !important;
  position: absolute !important;
}

.fancybox-lock .fancybox-overlay {
  z-index: 9999;
}

.fancybox-error {
  padding: 3rem 15px 15px !important;
}

.popup-title {
  display: block;
  font-size: 24px;
  line-height: 26px;
  padding: 26px 30px;
  font-weight: 400;
  color: #ffffff;
}

.popup-holder {
  padding: 3rem;
  min-width: 42rem;
}

.two-sections {
  width: 81rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-container-user .two-sections {
  width: 100%;
}

.section-one,
.section-two {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.section-one {
  padding: 0 25px 0 0;
  margin: 0 0 2rem;
}

.section-two {
  padding: 0 0 0 25px;
}

.main-container-user .section-two {
  -ms-flex: 0 1 320px;
  flex: 0 1 320px;
  color: #fff;
}

@media screen and (min-width: 861px) {
  .two-sections+.bottom {
    width: 50%;
    padding: 0 25px 0 0;
  }
}

.no-thumb {
  background: url(../images/kvs_black.svg) no-repeat center;
}

/* forms */
form .section-title {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 25px;
  display: block;
  font-weight: 400;
}

form .section-title.expand,
form .section-title.collapse {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

form .section-title.expand:hover,
form .section-title.collapse:hover {
  color: #ea1853;
}

form .section-title.collapse:after,
form .section-title.expand:after {
  content: "\e95d";
  display: block;
  position: absolute;
  margin-left: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 1;
  font-size: 6px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

form .section-title.collapse:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

form .row {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 0 2.5rem;
  line-height: 0;
}

.message-form {
  padding: 20px 0 0;
  border-top: 1px solid #232428;
}

.message-form .form-upload {
  max-width: 820px;
}


.message-form form .row {
  width: 100%;
  max-width: 100%;
}

form .row:last-child {
  margin: 0;
}

form label {
  display: block;
  margin: 0 0 7px;
  line-height: 1.2;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

form label.field-label:after {
  content: ":";
}

form label.field-label.required:after {
  content: " (*):";
}

form .bottom label {
  margin: 0 0 8px;
  color: #8b8f96;
  font-size: 12px;
  line-height: 18px;
}

form .bottom label.field-label {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

form .button-group .row {
  margin: 5px 0 0 0;
}

.button-group {
  margin: 0 0 2rem;
}

.two-sections .button-group {
  margin: 0;
}

form .button-group .row:first-child {
  margin: 0;
}

form .button-group .row label {
  margin: 0 0 5px;
  cursor: pointer;
  color: #8b8f96;
  transition: color .3s;
}

form .radio,
form .checkbox {
  display: none;
}

form .radio+label,
form .radio+span,
form .checkbox+label,
form .checkbox+span {
  position: relative;
  padding-left: 29px !important;
  cursor: pointer;
}

form .checkbox+label {
  font-size: 12px;
  line-height: 20px;
}

form .radio+span {
  line-height: 1.2;
}

form .checkbox+label::before,
form .checkbox+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #2e2f35;
  background-color: #2e2f35;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #2e2f35;
  font-size: 11px;
  text-align: center;
  padding: 3px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s, box-shadow .3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s, box-shadow .3s;
}

form .checkbox:checked+label::before,
form .checkbox:checked+span::before {
  content: "\e906";
  background-color: #ea1853;
  border: 1px solid #ea1853;
  color: #fff;
  box-shadow: 0 8px 10px rgba(29, 4, 11, 0.25);
}

form .radio+span::before,
form .radio+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid #8b8f96;
  background-color: #191a1d;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}


form .radio+span::after,
form .radio+label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: transparent;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}

form .radio:checked+span::before,
form .radio:checked+label::before {
  background-color: #ea1853;
  border: 5px solid #0f1014;
}

form .radio:checked+span::after,
form .radio:checked+label::after {
  border-color: #ea1853;
}

form .submit {
  text-align: center;
  padding: 11px 20px;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, box-shadow .3s, border-color .3s;
  transition: background-color 0.3s, color 0.3s, box-shadow .3s, border-color .3s;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  box-shadow: 0 8px 10px rgba(29, 4, 11, 0.25);
  border-radius: 10px;
  background-color: #ea1853;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

@media (min-width: 1025px) {

  .no-touch form .submit:hover {
    color: #fff;
    background-color: #3b3d44;
  }
}

.sidebar form .submit {
  min-width: 154px;
}

.margin-fix .bottom .submit.active,
.margin-fix .bottom .submit.right.active,
form .submit.active {
  background-color: #ea1853;
  box-shadow: 0 8px 10px rgba(29, 4, 11, 0.25);
  border-color: #ea1853;
  color: #fff;
}

.margin-fix .bottom .submit:disabled,
.margin-fix .bottom .submit.right:disabled,
form .submit:disabled {
  pointer-events: none;
  color: rgba(73, 75, 79, 0.95);
}

form .textfield,
form .textarea,
form .selectbox,
form .file {
  padding: 12px 20px;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background-color: #2e2f35;
  color: #8b8f96;
  font-size: 15px;
  font-weight: 400;
  border: none;
}

form .textarea {
  resize: none;
  min-height: 125px;
}

form .selectbox {
  padding: 10px 20px;
}

form .date {
  font-size: 0;
}

form .date .selectbox {
  width: auto;
  margin-right: 10px;
}

form .file {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  cursor: pointer;
  transform: rotate(180deg);
}

form .file[disabled] {
  cursor: default;
}

form .textfield.error,
form .textarea.error,
form .selectbox.error,
form .file.error,
form fieldset.error .textfield,
form fieldset.error .textarea,
form fieldset.error .selectbox,
form fieldset.error .file {
  border: 2px solid #ea1853;
}

form .file-control {
  position: relative;
  width: 100%;
  margin: 0 0 2rem;
}

form .file-control .textfield {
  padding-left: 24px;
}

form .file-control .button {
  position: absolute;
  left: 6px;
  top: 5px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  padding: 15px 10px;
  font-size: 13px;
  color: #fff;
  background-color: #ea1853;
}

form .file-control .button.disabled {
  color: #a2a2a2;
  background: #f1f1f1;
}

form .list-selector-popup {
  position: absolute;
  width: 100%;
  height: 160px;
  left: 0;
  bottom: 52px;
  border-radius: 5px;
  -webkit-box-shadow: -1px 1px 5px rgba(234, 24, 83, 0.3);
  box-shadow: -1px 1px 5px rgba(234, 24, 83, 0.3);
  z-index: 10000;
  background-color: #0f1014;
}

form .list-selector-popup:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #1f2125;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -webkit-box-shadow: -1px 1px 5px rgba(234, 24, 83, 0.3);
  box-shadow: -1px 1px 5px rgba(234, 24, 83, 0.3);
  bottom: -5px;
  z-index: 10000;
}

form .list-selector-popup:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 7px;
  background-color: #1f2125;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  z-index: 10001;
}

form .list-selector-popup .button-group {
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  top: 8px;
  left: 8px;
  bottom: 30px;
  right: 8px;
}

form .list-selector-popup .button-group .group-title {
  margin: 0 5px 10px 0;
  padding: 3px;
  line-height: 1.2;
  background: #c8c8c8;
  font-weight: 800;
}

form .list-selector-popup .button-group .item {
  display: inline-block;
  width: 31%;
  padding: 3px 0 10px;
  vertical-align: top;
}

.fancybox-inner form .list-selector-popup .button-group .item {
  width: 49%;
}

.fancybox-outer,
.fancybox-inner {
  height: auto !important;
  overflow-y: auto !important;
}

@media (max-width: 813px) {

  .fancybox-outer,
  .fancybox-inner {
    height: 330px !important;
    overflow-y: auto !important;
  }

  .fancybox-type-image .fancybox-outer {
    height: auto !important;
  }

  .fancybox-type-image .fancybox-inner {
    height: auto !important;
  }
}

.fancybox-close {
  background: transparent;
  background-image: none !important;
  position: relative;
  color: #fff;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: 36px;
  height: 36px;
  display: block;
}

.fancybox-close::before {
  content: "\e908";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #ea1853;
  opacity: 1;
  transition: .3s;
}

.no-touch .fancybox-close:hover::before {
  opacity: .7;
}

form .list-selector-popup .button-group .item label {
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 25px;
}

form .list-selector-popup .filter {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c8c8c8;
  border: none;
}

form .list-selector-popup .filter input {
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  border: none;
  font-weight: 400;
  line-height: 14px;
  background-color: #2e2f35;
  color: #8b8f96;
}

form .bottom {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
}

form .bottom a {
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #8b8f96;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

form .bottom .links {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0 0 1.5rem;
  position: relative;
  top: -10px;
}

form .bottom .links p:nth-child(2) a:first-child {
  font-weight: bold;
  color: #ea1853;
}

form .bottom .links p:nth-child(2) a:first-child:hover {
  color: #fff;
}

form .bottom .submit.right {
  float: right;
  margin: 0 0 0 10px;
}

.no-touch form .bottom a:hover {
  color: #ea1853;
}

@media (min-wdith: 1025px) {

  .no-touch form .bottom .submit.right:hover {
    background-color: #ea1853;
    color: #fff;
  }
}

form .captcha-control {
  width: 100%;
}

form .captcha-control .image {
  margin: 0 0 2rem;
  overflow: hidden;
}

form .captcha-control .image img {
  display: block;
  width: 165px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid #2e2f35;
  overflow: hidden;
  margin: 0 0 15px;
}

form .captcha-control .image .textfield {
  max-width: 350px;
  width: 100%;
}

form [data-name="code"] {
  margin: 0 0 2rem;
  min-height: 78px;
}

form .success {
  margin: 1rem;
  color: #ea1853;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

@media screen and (max-width: 500px) {
  form .success {
    font-size: 20px;
  }
}

form .success.hidden {
  display: none;
}

form .success:before {
  z-index: 1;
  content: "\e907";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 63px;
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

@media screen and (max-width: 500px) {
  form .success:before {
    width: 100%;
    top: 0;
    margin: 0 0 10px;
  }
}

.fancybox-outer form .success {
  width: auto;
  margin: 3rem;
}

form .generic-error {
  line-height: 20px;
  padding: 16px 10px;
  text-align: center;
  margin: 0 0 30px;
  border-radius: 10px;
  background-color: rgba(243, 14, 41, .1);
  color: #ea1853;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 860px) {
  form .generic-error {
    font-size: 15px;
    line-height: 17px;
    margin: 0 0 20px;
  }
}

form .generic-error:before {
  z-index: 1;
  content: "\e909";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 21px;
  margin: 0 3px 0 0;
  display: inline-block;
  position: relative;
  top: 2px;
}


form .info-message {
  display: inline-block;
  position: relative;
  margin: 0 1rem 1rem 1rem;
  padding: 1rem;
  font-size: 14px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #1f2125;
  color: #fff;
}

form .info-message:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #1f2125;
  left: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -5px;
}

form .info-message .bottom {
  display: block;
  padding: 1rem 0 0;
}

form .info-message .submit {
  min-width: auto;
  margin: 5px 5px 0 0;
  border-radius: 10px;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 16px;
  font-weight: 500;
  box-shadow: none;
  padding: 10px 20px;
  background-color: #000;
  color: #8b8f96;
}

form .info-message .submit:hover {
  box-shadow: 0 8px 10px rgba(29, 4, 11, 0.25);
  background-color: #ea1853;
  color: #ffffff;
}

form .field-error {
  display: none;
  padding: 5px 0 0 0;
  color: #ea1853;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}


form .field-error label {
  margin: 0;
}

form .smileys-support {
  position: relative;
}

form .smileys-support .textarea {
  border-radius: 0 0 10px 10px;
}

.popup-holder form .smileys-support .textarea {
  border-radius: 0 0 20px 20px;
  min-height: 120px;
}

form .smileys-support .smileys-bar {
  background: #000;
  padding: 2px 10px 4px;
  cursor: default;
  font-size: 0;
  border-radius: 10px 10px 0 0;
}

form .smileys-support img {
  cursor: pointer;
  margin-right: 5px;
}

form .smileys-support img:last-child {
  margin: 0;
}

form .progressbar {
  position: absolute;
  z-index: 1200;
  width: 60%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 5.0rem;
  border: 0.2rem solid #ea1853;
  padding: 0.8rem;
  border-radius: 2.4rem;
  background: #1f2125;
}

form .progressbar .text {
  position: absolute;
  width: 100%;
  top: 1rem;
  height: 3rem;
  font-size: 2.2rem;
  line-height: 3rem;
  text-align: center;
  color: #ffffff;
}

form .progressbar.half-done .text {
  color: #ffffff;
}

form .progressbar .progress {
  width: 0;
  height: 3rem;
  background: #ea1853;
  border-radius: 2rem;
}

@media screen and (max-width: 1024px) {

  form [data-name="code"],
  form .row {
    margin: 0 0 1.5rem;
  }
}

@media screen and (max-width: 860px) {
  form .row {
    max-width: 100%;
  }
}

@media (max-width: 813px) {

  .fancybox-outer,
  .fancybox-inner {
    max-height: 50vh;
    height: auto !important;
    overflow-y: auto !important;
  }
}

@media screen and (max-width: 560px) {
  .popup-holder {
    min-width: 380px;
    padding: 10px;
  }
}


@media screen and (max-width: 640px) {

  form [data-name="code"],
  form .row {
    margin: 0 0 1rem;
  }
}


/* NANO  */
.nano>.nano-pane {
  background: #34363C;
  position: absolute;
  z-index: 12;
  width: 4px;
  right: 20px;
  top: 100px;
  bottom: 20px;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 1;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}

.images-active.nano>.nano-pane {
  opacity: 1;
  visibility: visible;
}

.nano>.nano-pane>.nano-slider {
  background: #fff;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.nano:hover>.nano-pane,
.nano-pane.active,
.nano-pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}

.nano .nano-content {
  padding: 10px;
}

.nano .nano-pane {
  background: #888;
}

.nano .nano-slider {
  background: #111;
}


@media screen and (max-width: 1024px) {
  .nano-pane {
    display: none !important;
  }

  .nano .nano-content {
    padding: 0;
  }
}

img {
  /* display: block;
  width: 100%;
  height: auto; */
}

.player-wrap {
  position: relative;
}

#kt_player {
  position: absolute !important;
}

.video-holder,
.album-holder {
  max-width: calc(100% - 500px);
}

.player-holder,
.album-holder {
  height: 100dvh;
  position: relative;
}

.no-player {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.no-player img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(0.5) blur(3px);
}

.no-album::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.no-player .message,
.no-album+.message {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
  font-size: 18px;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  max-width: 550px;
}

.no-player .message a,
.no-album+.message a {
  font-size: inherit;
  color: #EA1853;
}

@media (any-hover: hover) {

  .no-player .message a:hover,
  .no-album+.message a:hover {
    text-decoration: underline;
  }
}

.player-wrap {
  top: 50%;
  translate: 0 -50%;
}

.background_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}

.background_layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: -1;
  backdrop-filter: blur(10px);
}

.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;700&display=swap&amp;subset=cyrillic');

/* NOTE */
/* .place ~ .item:nth-of-type such selection used
in case of banner or sidebar is placed on one line with items */
/* NOTE */
@font-face {
  font-family: "icomoon";
  src: url("../images/fonts/icomoon.eot?nddhpi&v=1");
  src: url("../images/fonts/icomoon.eot?nddhpi#iefix&v=1") format("embedded-opentype"),
    url("../images/fonts/icomoon.ttf?nddhpi&v=1") format("truetype"),
    url("../images/fonts/icomoon.woff?nddhpi&v=1") format("woff"),
    url("../images/fonts/icomoon.svg?nddhpi#icomoon&v=1") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

fieldset,
img {
  border: 0;
}

* {
  outline: none;
  text-decoration: none;
}

img,
object,
embed {
  vertical-align: bottom;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

p.text {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 24px;

}

@media screen and (max-width: 640px) {
  p.text {
    font-size: 16px;
    margin: 0 0 12px;
  }
}

q:before,
q:after {
  content: "";
}

a * {
  cursor: pointer;
}

html {
  height: 100%;
  background-color: #16171b;
  font-size: 62.5%;
}

body {
  font: 400 14px/1.2 'Exo 2', sans-serif;
  min-height: 100%;
  min-width: 320px;
  position: relative;
  color: #212121;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  height: 100%;
}

a {
  color: #212121;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  font: 400 14px/1.2 'Exo 2', sans-serif;
}

@media (min-width:1025px) {

  .no-touch a:hover {
    color: #ea1853;
  }
}

input,
select,
textarea {
  font-size: 13px;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  ;
}

.container {
  margin: 0 auto;
  overflow: hidden;
  position: relative;

  display: table;
  width: 100%;
  height: 100dvh;
  table-layout: fixed;
  overflow: hidden;
}

.hidden {
  display: none;
}

.country {
  margin: 1px 3px 1px 0;
}

.page-error {
  padding: 10px;
  background: transparent;
  color: #e62117;
  border: 1px solid #e62117;
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  margin: 20px 0 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

.icon:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-edit:before {
  content: "\e900";
}

.icon-private:before {
  content: "\e901";
}

.ico-private:before {
  content: "\e901";
}

.icon-videos:before {
  content: "\e902";
}

.icon-pictures:before {
  content: "\e903";
}

.icon-add_friends:before {
  content: "\e904";
}

.icon-send_message:before {
  content: "\e905";
}

.icon-check1:before {
  content: "\e906";
}

.icon-thank_check:before {
  content: "\e907";
}

.icon-close1:before {
  content: "\e908";
}

.icon-error:before {
  content: "\e909";
}

.icon-user:before {
  content: "\e90a";
}

.icon-comment_arrow:before {
  content: "\e90b";
}

.icon-share:before {
  content: "\e90c";
}

.icon-comments:before {
  content: "\e90d";
}

.icon-screenshots:before {
  content: "\e90e";
}

.icon-report:before {
  content: "\e90f";
}

.icon-download1:before {
  content: "\e910";
}

.icon-details:before {
  content: "\e911";
}

.icon-heart1:before {
  content: "\e912";
}

.icon-like:before {
  content: "\e937";
}

.icon-rss:before {
  content: "\e938";
}

.icon-menu:before {
  content: "\e939";
}

.icon-top_models:before {
  content: "\e93a";
}

.icon-top_sites:before {
  content: "\e93b";
}

.icon-drop_arrow:before {
  content: "\e93c";
}

.icon-sort:before {
  content: "\e93d";
}

.icon-views:before {
  content: "\e93e";
}

.icon-calendar1:before {
  content: "\e93f";
}

.icon-clock:before {
  content: "\e940";
}

.icon-later:before {
  content: "\e941";
}

.icon-top_categories:before {
  content: "\e942";
}

.icon-en:before {
  content: "\e943";
}

.icon-add:before {
  content: "\e944";
}

.icon-mail:before {
  content: "\e945";
}

.icon-print:before {
  content: "\e946";
}

.icon-twitter:before {
  content: "\e947";
}

.icon-facebook:before {
  content: "\e948";
}

.icon-upload1:before {
  content: "\e949";
}

.icon-search1:before {
  content: "\e94a";
}

.icon-home1:before {
  content: "\e94b";
}

.icon-edit1:before {
  content: "\e94c";
}

.icon-private1:before {
  content: "\e94d";
}

.icon-videos1:before {
  content: "\e94e";
}

.icon-send_message1:before {
  content: "\e94f";
}

.icon-add_friend:before {
  content: "\e950";
}

.icon-error1:before {
  content: "\e951";
}

.icon-thank_check1:before {
  content: "\e952";
}

.icon-close2:before {
  content: "\e953";
}

.icon-check2:before {
  content: "\e954";
}

.icon-user1:before {
  content: "\e955";
}

.icon-comments_arrow:before {
  content: "\e956";
}

.icon-comments1:before {
  content: "\e957";
}

.icon-share1:before {
  content: "\e958";
}

.icon-screenshots1:before {
  content: "\e959";
}

.icon-report1:before {
  content: "\e95a";
}

.icon-download2:before {
  content: "\e95b";
}

.icon-details1:before {
  content: "\e95c";
}

.icon-drop_arrow1:before {
  content: "\e95d";
}

.icon-favourites:before {
  content: "\e95e";
}

.icon-like1:before {
  content: "\e95f";
}

.icon-rss1:before {
  content: "\e960";
}

.icon-pagination_arrow:before {
  content: "\e961";
}

.icon-arrow1:before {
  content: "\e962";
}

.icon-sort1:before {
  content: "\e963";
}

.icon-search2:before {
  content: "\e964";
}

.icon-top_models1:before {
  content: "\e965";
}

.icon-top_sites1:before {
  content: "\e966";
}

.icon-views1:before {
  content: "\e967";
}

.icon-calendar2:before {
  content: "\e968";
}

.icon-clock1:before {
  content: "\e969";
}

.icon-top_categories1:before {
  content: "\e96a";
}

.icon-later1:before {
  content: "\e96b";
}

.icon-heart2:before {
  content: "\e96c";
}

.icon-add1:before {
  content: "\e96d";
}

.icon-mail1:before {
  content: "\e96e";
}

.icon-print1:before {
  content: "\e96f";
}

.icon-twitter1:before {
  content: "\e970";
}

.icon-facebook1:before {
  content: "\e971";
}

.icon-upload2:before {
  content: "\e972";
}

.icon-home2:before {
  content: "\e973";
}

.icon-album:before {
  content: "\e913";
}

.icon-arrow:before {
  content: "\e914";
}

.icon-calendar:before {
  content: "\e915";
}

.icon-categories:before {
  content: "\e916";
}

.icon-check:before {
  content: "\e917";
}

.icon-comment-rate-down:before {
  content: "\e918";
}

.icon-comment-rate-up:before {
  content: "\e919";
}

.icon-download:before {
  content: "\e91a";
}

.icon-earth:before {
  content: "\e91b";
}

.icon-eye:before {
  content: "\e91c";
}

.icon-flag:before {
  content: "\e91d";
}

.icon-hand:before {
  content: "\e91e";
}

.icon-heart:before {
  content: "\e91f";
}

.icon-home:before {
  content: "\e920";
}

.icon-info:before {
  content: "\e921";
}

.icon-key:before {
  content: "\e922";
}

.icon-uniE923:before {
  content: "\e923";
}

.icon-uniE924:before {
  content: "\e924";
}

.icon-lock:before {
  content: "\e925";
}

.icon-member:before {
  content: "\e926";
}

.icon-message:before {
  content: "\e927";
}

.icon-model:before {
  content: "\e928";
}

.icon-logout:before {
  content: "\e929";
}

.icon-plus-in-circle:before {
  content: "\e92a";
}

.icon-premium:before {
  content: "\e92b";
}

.icon-search:before {
  content: "\e92c";
}

.icon-shape:before {
  content: "\e92d";
}

.icon-upload:before {
  content: "\e92e";
}

.icon-video:before {
  content: "\e92f";
}

.icon-watch:before {
  content: "\e930";
}

.icon-write:before {
  content: "\e931";
}

.icon-uniE932:before {
  content: "\e932";
}

.icon-uniE933:before {
  content: "\e933";
}

.icon-if_sort_1608845:before {
  content: "\e934";
}

.icon-close:before {
  content: "\e935";
}

.icon-if_ic_touch_app_48px_3669192:before {
  content: "\e936";
}


.info_block {
  position: absolute;
  z-index: 11;
  top: 0;
  right: 0;
  height: 100%;
  width: 500px;
  padding: 20px;
  background-color: #16171B;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.info_model {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info_model_wrap {
  display: flex;
  align-items: center;
}

.info_model_img {
  margin-right: 10px;
  height: 50px;
  width: 50px;
  position: relative;
  background-color: #34363C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #8B8F96;
  transition: color .3s;
}

.info_model_img::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .3s;
}

.info_model_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.info_model_name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.info_model .button {
  display: flex;
  height: 40px;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #34363C;
  color: #fff;
  gap: 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  transition: background-color .3s;
}

.info_model .subscribed:not(.done),
.info_model .unsubscribed.done {
  color: #fff;
  background-color: #EA1853;
}

.info_model .button.done {
  pointer-events: none;
}

.info_stats {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 14px;
  color: #8B8F96;
  margin-bottom: 20px;
}

.info_stats .item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info_stats .item .svg-icon {
  font-size: 16px;
}

.info_title {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}

.info_block .sponsor {
  margin-bottom: 20px;
}

.info_block .sponsor a {
  display: block;
}

.info_block .sponsor img {
  display: block;
  width: 100%;
  height: auto;
}

.info_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info_actions .rating-container {
  position: relative;
}

.info_actions .voters {
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  font-size: 11px;
  color: #fff;
}

.info_actions a {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  background-color: #34363C;
  border-radius: 10px;
  padding: 0 15px;
  font-weight: 700;
  font-size: 14px;
  color: #8B8F96;
}

.info_actions a.voted {
  color: #fff;
  background-color: #EA1853;
  pointer-events: none;
}

.info_actions a.disabled {
  pointer-events: none;
}

.info_actions a .svg-icon {
  font-size: 20px;
}

.btn-favourites .hidden {
  display: block;
  pointer-events: none;
}

.btn-favourites .hidden [href='#add_to_fav'],
.btn-favourites [href='#delete'] {
  color: #fff;
  background-color: #EA1853;
}

.btn-favourites .hidden [href='#delete'] {
  background-color: #34363C;
  color: #8B8F96;
}


form.share {
  margin-bottom: 20px;
}

.share .textfield {
  height: 40px;
  padding: 10px 10px 10px 20px;
  gap: 380px;
  border-radius: 10px;
  background: #2E2F35;
  width: 100%;
  color: #8B8F96;
  font-size: 14px;
  border: none;
}

.share .row {
  position: relative;
  display: flex;
  align-items: center;
}

.share .row .copy {
  position: relative;
  height: 40px;
  padding: 0px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 10px 10px 0px;
  background: #EA1853;
  border: none;
  outline: none;
  z-index: 1;
  cursor: pointer;
  transition: background-color .3s;
  max-width: 75px;
  width: 100%;
}

.share .row.active .copy {
  background-color: green;
  pointer-events: none;
}

.share .row .copied,
.share .row.active .text {
  display: none;
}

.share .row.active .copied {
  display: inline;
}

.share .row:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(46, 47, 53, 0.00) 0%, #2E2F35 17.24%);
  display: block;
}

.tabs_menu {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 20px;
}

.tabs_menu .toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 40px;
  flex: 1 0 0;
  padding: 5px 0;
  gap: 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #8B8F96;
  border-radius: 10px;
  background: #34363C;
}

.tabs_menu .toggle-button.active {
  color: #FFF;
  background: #EA1853;
}

.tabs_menu .toggle-button .svg-icon {
  font-size: 24px;
}

.tab-content {
  flex-grow: 1;
  overflow: hidden;
}

.tab-content_head {
  display: none;
}

.tab-content .block-comments {
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}

.tab-content .list-comments {
  height: 100%;
  overflow: auto;
  padding-bottom: 20px;
}

.tab-content .list-comments::-webkit-scrollbar {
  display: none;
}

.tab-content .list-comments {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.list-comments .item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.list-comments .item:last-child {
  margin-bottom: 0;
}

.list-comments .item .image {
  margin-right: 10px;
  flex-shrink: 0;
}

.list-comments .item .image {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  background: #2E2F35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8B8F96;
  border-radius: 50%;
  overflow: hidden;
}

.list-comments .item .image a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #8B8F96;
  width: 100%;
  font-size: inherit;
}

.list-comments .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.list-comments .item .text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: 14px;
  margin-right: 5px;
}

.list-comments .item .username {
  display: inline-block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.28px;
  transition: color .3s;
}

.list-comments .item .comment-text {
  color: #838383;
  line-height: 22px
}

.list-comments .item .comment-options {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-comments .item .comment-like,
.list-comments .item .comment-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #8B8F96;
  gap: 10px 0;
}

.list-comments .item .comment-rating {
  margin-top: 10px;
}

.list-comments .item .comment-like.disabled {
  display: none;
}

.list-comments .item .comment-like.disabled+.comment-rating {
  margin-top: 0;
}

.list-comments .item .comment-options.voted :is(.comment-like, .comment-rating) {
  color: #EA1853;
  pointer-events: none;
}

.list-comments .list-inner .load-more {
  opacity: 0;
  visibility: hidden;
}

.block-comments form {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: 0px -15px 20px 6px #16171B;
}

.block-new-comment .row,
.block-new-comment>div {
  position: relative;
  height: 60px;
}

.block-new-comment .textarea::placeholder {
  color: #8B8F96;
}

.block-new-comment .textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  resize: none;
  border-radius: 10px;
  background: #2E2F35;
  padding: 10px 10px 10px 20px;
  outline: none;
  border: none;
  color: #fff;
  line-height: 40px;
  font-size: 14px;
  color: #8B8F96;
  white-space: nowrap;
  overflow: hidden;
  min-height: auto;
}

.block-new-comment .textarea::placeholder {
  opacity: 1;
  transition: opacity .15s;
}

.block-new-comment .textarea:focus::placeholder {
  opacity: 0;
}

.block-new-comment .submit {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 75px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #EA1853;
  z-index: 1;
  translate: 0 -50%;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color .3s;
}

.block-comments .success {
  position: absolute;
  z-index: 1;
  margin-top: -20px;
}

.field-error {
  position: absolute;
  color: red;
  font-size: 13px;
}

.field-error.static {
  position: static;
}

.block-comments .success,
.field-error {
  backdrop-filter: blur(5px);
}

.field-error.up {
  bottom: 100%;
}

.login_to_post {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  border-radius: 10px;
  padding: 10px 10px 10px 20px;
  background-color: #2E2F35;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: background-color .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.tab-content .block-flagging {
  padding: 10px;
  overflow-y: auto;
  max-height: 100%;
}

@media screen and (max-width: 1024px) {
  .tab-content .block-flagging {
    height: calc(100% - 40px);
  }
}

.tab-content .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-content .block-textarea {
  flex: 1 0 100%;
}

.tab-content input[type='radio'],
.tab-content .row label {
  cursor: pointer;
}

.tab-content input[type='radio'] {
  accent-color: #EA1853;
}

.tab-content .submit-block {
  width: 100%;
}

.tab-content .field-label {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 14px;
}

.tab-content .button-group .row {
  margin-bottom: 5px;
}

.tab-content .button-group .row:last-child {
  margin-bottom: 0px;
}

.tab-content .textarea {
  padding: 10px;
  resize: none;
  border-radius: 10px;
  background: #2E2F35;
  width: 100%;
  color: #8B8F96;
  font-size: 14px;
  border: none;
  min-height: auto;
}


.tab-content .submit-block .submit {
  width: 75px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #EA1853;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color .3s;
}

/* .load-more {
  display: flex;
  justify-content: center;
  margin: 15px 0 5px;
}

.load-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 40px;
  padding: 5px 0;
  gap: 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #8B8F96;
  border-radius: 10px;
  background: #34363C;
  transition: color .3s, background-color .3s;
} */



@media screen and (any-hover: hover) {
  .info_model .button:hover {
    color: #fff;
    background-color: #EA1853;
  }

  .info_model_name:hover,
  .list-comments .item .username:hover {
    color: #EA1853;
  }

  .info_model_img:hover::before {
    border-color: #EA1853;
  }

  .info_actions a:hover,
  .block-comments .login_to_post:hover {
    background-color: #EA1853;
    color: #fff;
  }

  .share .row .copy:hover,
  .block-new-comment .submit:hover,
  .tab-content .submit-block .submit:hover {
    background-color: rgba(234, 34, 83, 0.8);
  }

  .tabs_menu .toggle-button:hover {
    color: #FFF;
    background: #EA1853;
  }
}

.swiper {
  /* width: 600px; */
  height: 100dvh;
  /* display: none !important; */
  background-color: rgba(0, 0, 0, 0.30);
}

.images-active .swiper {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.swiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;

}

.swiper .blur-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.30);
}

.swiper .swiper-slide .blur-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  filter: blur(3px);

  /* background-color: rgba(0, 0, 0, 0.30);
  -webkit-filter: blur(27px);
  filter: blur(27px); */
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: url('#blurFilter');
  z-index: -1;
}

.swiper-slide .main-image {
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  display: block;
  max-height: 100%;
  /* max-width: calc(100% - 60px); */
  max-width: 100%;
}

.swiper-prev,
.swiper-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  left: 20px;
  z-index: 1;
  top: 50%;
  translate: 0 -50%;
  background-color: #34363C;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  cursor: pointer;
  transition: background-color .3s;
}

.swiper-next {
  rotate: 180deg;
  left: auto;
  right: 20px;
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

:is(.swiper-prev, .swiper-next) .svg-icon {
  margin-right: 3px;
}

.images-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  display: none;
}

.images-active .images-wrap {
  opacity: 1;
  visibility: visible;
  display: block;
}

.images.grid {
  margin: 20px 110px 20px 100px;
  /* height: 100%; */
}

.grid-item {
  width: calc(20% - 11px);
  margin-bottom: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 7px;
  overflow: hidden;
  transition: border-color .3s;
}

@media screen and (max-width: 1700px) {
  .grid-item {
    width: calc(25% - 8px);
  }
}

@media screen and (max-width: 1450px) {
  .grid-item {
    width: calc(33.33% - 7px);
  }
}

@media screen and (max-width: 1300px) {
  .images.grid {
    margin: 20px 50px;
  }
}

@media screen and (max-width: 1024px) {
  .images.grid {
    margin: 10px;
  }
}

@media screen and (max-width: 600px) {
  .grid-item {
    width: calc(50% - 5px);
  }
}

.grid-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
  transition: filter .3s;
}


.viewer-btn {
  position: absolute;
  z-index: 999;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #34363C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #8B8F96;
  transition: color .3s, background-color .3s;
  padding: 0;
}

.images-btn {
  left: auto;
  right: 20px;
  width: 60px;
  height: 60px;
  font-size: 30px;
}

.images-active .images-btn {
  background-color: #EA1853;
  color: #fff;
}

@media (any-hover: hover) {

  :is(.swiper-prev, .swiper-next):hover {
    background-color: #EA1853;
  }

  .grid-item:hover {
    border-color: #EA1853;
  }

  .grid-item:hover img {
    filter: brightness(70%);
  }

  .viewer-btn:hover {
    background-color: #EA1853;
    color: #fff;
  }

  .images-active .images-btn:hover {
    background-color: #34363C;
    color: #8B8F96;
  }
}

.album-holder .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.album-holder .loader_wrap {
  position: absolute;
  z-index: 20;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}


@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media screen and (max-width: 1024px) {

  .video-holder,
  .album-holder {
    max-width: 100%;
    height: calc(100dvh - 60px);
  }

  .swiper {
    height: calc(100dvh - 60px);
  }

  .info_block>*,
  .info_model_name,
  .info_actions a span,
  .toggle-button span,
  .info_model .subscribe-btn {
    display: none;
  }

  .info_block {
    left: 0;
    width: 100%;
    height: 60px;
    bottom: 0;
    top: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 1000;
  }

  .info_block .info_model {
    display: block;
    flex: 1 0 auto;
    max-width: 33.33%;
  }

  .info_block .info_actions,
  .info_block .tabs_menu {
    display: flex;
    flex: 1 0 auto;
    justify-content: space-between;
    max-width: 33.33%;
  }

  .info_model_wrap {
    justify-content: center;
  }

  .info_model {
    order: 1;
  }

  .tabs_menu {
    order: 2;
  }

  .info_model_img {
    width: 40px;
    height: 40px;
  }

  .info_model_img,
  .info_model,
  .info_actions,
  .tabs_menu {
    margin: 0;
  }

  .info_actions a .svg-icon {
    flex-shrink: 0;
  }

  .info_actions a,
  .tabs_menu .toggle-button {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }

  .tabs_menu .toggle-button {
    flex: none;
  }

  .tab-content {
    display: block;
    position: fixed;
    height: calc(100dvh - 260px);
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #16171B;
    z-index: 10;
  }

  .tab-content:has(textarea:focus) {
    height: 100dvh;
  }

  .tab-content_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.28px;
  }

  .tab-content .block-comments {
    height: calc(100% - 40px);
  }

  .tab-content_head a {
    color: #8B8F96;
    font-size: 16px;
    margin-left: auto;
  }


  .block-new-comment .textarea {
    border-radius: 0;
  }

  .tab-content.hidden {
    display: none;
  }

  .tab-content .list-comments {
    padding: 20px 10px;
  }

  .swiper-slide .main-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-width: 100%;
  }

  .swiper-prev {
    left: 10px;
  }

  .swiper-next {
    right: 10px;
  }

  .viewer-btn {
    top: 10px;
    left: 10px;
  }

  .images-btn {
    left: auto;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}