@charset "UTF-8";

.checkbox-large {
  position: absolute;
  opacity: 0;
}

.checkbox-large:checked ~ .checkbox-large--mark::after {
  display: block;
}

.checkbox-large--mark {
  position: relative;
  top: 6px;
  left: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid #bdbdbd;
  background-color: #fff;
}

.checkbox-large--mark::after {
  display: none;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border: solid #606060;
  border-width: 0 2px 2px 0;
  content: "";
}

.checkbox-large--mark_remove::after {
  top: 0;
  height: 14px;
  transform: rotate(90deg);
  border: solid #bdbdbd;
  border-width: 0 2px 0 0;
}

.checkbox-large--mark_clean {
  top: 0;
}

.checkbox-medium {
  position: absolute;
  opacity: 0;
}

.checkbox-medium:checked ~ .checkbox-medium--mark::after {
  display: block;
}

.checkbox-medium--mark {
  position: relative;
  top: 1px;
  left: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
}

.checkbox-medium--mark::after {
  display: none;
  position: absolute;
  top: 0;
  left: 5px;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border: solid #606060;
  border-width: 0 2px 2px 0;
  content: "";
}

.checkbox-medium--mark_remove::after {
  top: 0;
  height: 14px;
  transform: rotate(90deg);
  border: solid #bdbdbd;
  border-width: 0 2px 0 0;
}

.checkbox-medium--mark_clean {
  top: 0;
}

b,
strong {
  font-weight: bolder;
}

input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.15;
}

button,
select {
  text-transform: none;
}

[type='reset'],
[type='submit'],
button,
html [type='button'] {
  -webkit-appearance: button;
}

input {
  overflow: visible;
}

input:focus-visible {
  outline: none;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

legend {
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

details {
  display: block;
}

summary {
  display: list-item;
}

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

body {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  background-color: var(--layer-3-color, #fff);
  color: #333;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 64em) {
  body {
    background-color: var(--layer-1-color, #b2b2b2);
  }
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
  overflow: auto;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

select:focus-visible {
  outline: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.5;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
}

a {
  color: #005581;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:focus,
a:hover {
  outline-width: 0;
}

a img {
  border: 0;
}

dl,
ol,
ul {
  margin-bottom: 1rem;
  line-height: 1.5;
  list-style-position: outside;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 0;
  list-style-type: none;
}

ul ol,
ul ul {
  margin-bottom: 0;
  margin-left: 20px;
}

ol {
  margin-left: 0;
}

ol ol,
ol ul {
  margin-bottom: 0;
  margin-left: 20px;
}

figure {
  margin: 0;
}

:root[theme="dark"] {
  --layer-1-color: #1a1a1a;
  --layer-2-color: #212121;
  --layer-2a-color: #252525;
  --layer-3-color: #2a2a2a;
  --layer-4-color: #3a3a3a;
  --layer-5-color: #424242;
  --control-1-bg-color: #424242;
  --control-1-color: #ccc;
  --control-1-border-color: #616161;
  --checkbox-bg-color: #212121;
  --checkbox-color: #ccc;
  --checkbox-border-color: #616161;
  --pal-gt-accent: #91081c;
  --line-0-color: #323232;
  --line-1-color: #424242;
  --line-2-color: #616161;
  --text-1-color: #fff;
  --text-2-color: #e0e0e0;
  --text-3-color: #ccc;
  --text-4-color: #bdbdbd;
  --text-5-color: #9e9e9e;
  --text-6-color: #757575;
  --pal-icon-color1: #9e9e9e;
  --pal-icon-color2: #fefefe;
  --icon-1-filter: invert(.8);
  --icon-2-filter: invert(.85);
  --icon-3-filter: brightness(.5);
  --icon-4-filter: brightness(.57);
  --icon-5-filter: brightness(.85);
  --icon-6-filter: brightness(1.75);
  --header-bg-color: var(--layer-3-color);
  --header-item-color: #ccc;
  --header-stripe-color: #757575;
  --header-menu-color: #fff;
  --slider-bg-color: #2a2a2a;
  --slider-bg-color-alpha: rgba(42, 42, 42, 0);
  --sidebar-clear-border-color: #333;
  --sidebar-mark-read-color: #616161;
  --sidebar-link-color: #909090;
  --promo-avatar-bg-color: #616161;
  --promo-border-color: #757575;
  --breadcrumbs-color: #616161;
  --post-bg-color: #2a2a2a;
  --post-color: #dcdcdc;
  --post-blockquote-bg-color: #333;
  --post-longquote-bg-color-alpha: rgba(51, 51, 51, 0);
  --post-link-color: #dcdcdc;
  --post-rlist-bg-color: #212121;
  --post-rlist-nick-color: #808080;
  --post-header-icon-filter: brightness(2.5);
  --editor-color: #dcdcdc;
  --editor-button-primary-bg-color: #5a5a5a;
  --offer-button-bg-color: #5a5a5a;
  --site-bg-color: #1a1a1a;
  --theme-content-bg-color: #212121;
  --sim-bg-color-alpha: rgba(58, 58, 58, .25);
  --w-layer-1a-color: #22262d;
  --w-layer-2-color: #303641;
  --w-line-1a-color: #303641;
  --w-line-2-color: #4d5159;
  --w-text-1-color: #fff;
  --w-text-7-color: #636568;
}

.hidden {
  display: none !important;
}

.header {
  --x-header-bg-color: var(--header-bg-color, #fff);
  --x-header-slogan-color: var(--header-slogan-color, #4d5159);
  --x-header-menu-color: var(--header-menu-color, #000);
  --x-header-icon-color: var(--header-icon-color, #444);
  --x-header-line-color: var(--header-line-color, #ebedee);
  --x-header-sep-color: var(--header-sep-color, #ebedee);
  --x-header-dropdown-bg-color: var(--header-dropdown-bg-color, #fff);
  --x-header-dropdown-line-color: var(--header-dropdown-line-color, #ebedee);
  --x-header-dropdown-gtp-color: var(--header-dropdown-gtp-color, #33691e);
  --x-header-avatar-bg-color: var(--layer-2a-color, #eef0f5);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 67px;
  margin: 0;
  background-color: var(--x-header-bg-color);
}

[theme='dark'] .header {
  --header-shadow: 0 3px #424242;
  --header-bg-color: #2a2a2a;
  --header-slogan-color: #a8a8a9;
  --header-menu-color: #fff;
  --header-icon-color: #fff;
  --header-line-color: #424242;
  --header-sep-color: #424242;
  --header-dropdown-bg-color: #424242;
  --header-dropdown-line-color: #616161;
  --header-dropdown-gtp-color: #689f38;
}

@media screen and (min-width: 64em) {
  .header {
    min-height: auto;
  }
}

[theme='dark'] .theme-new-year .header {
  --header-sep-color: rgba(255, 255, 255, .35);
}

.theme-new-year .header {
  background-repeat: repeat;
  background-size: 200px;
}

@media screen and (min-width: 64em) {
  .theme-new-year .header {
    background-image: url(/nimg/pattern-ny-transparent.png);
  }
  [theme='dark'] .theme-new-year .header {
    background-image: url(/nimg/pattern-ny-dark.png);
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
  .theme-new-year .header {
    background-size: 100px;
  }
}

.top-header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 67px 0 0;
}

@media screen and (min-width: 48em) {
  .top-header {
    min-height: 80px;
  }
}

@media screen and (min-width: 64em) {
  .top-header {
    flex-direction: row;
    height: 85px;
    margin: 0;
    padding: 5px 0 0;
  }
}

.top-header:has(.top-header--insert) {
  overflow: hidden;
}

@media screen and (min-width: 64em) {
  .top-header:has(.top-header--insert) {
    height: 125px;
    overflow: initial;
  }
}

.top-header--inner {
  display: flex;
  flex: 1;
  align-items: center;
  align-self: center;
  justify-content: center;
  max-width: 750px;
}

@media screen and (min-width: 48em) {
  .top-header--inner {
    height: auto;
  }
}

.top-header--inner:has(.top-header--insert) {
  max-width: initial;
}

.top-header--insert {
  display: flex;
  flex: 1;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .top-header--insert {
    height: auto;
  }
}

.top-header--target {
  flex-shrink: 1;
}

.top-header--target img {
  max-height: 80px;
}

.gritter-notice-wrapper {
  gap: 5px 0;
  display: flex;
  z-index: 1002;
  position: fixed;
  bottom: 20px;
  left: 0;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .gritter-notice-wrapper {
    padding: 0 20px;
  }
}

.header-alert {
  z-index: 1002;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .header-alert {
    width: auto;
  }
}

.header-alert--inner {
  gap: 0 16px;
  display: flex;
  align-items: center;
  padding: 16px 32px 16px 16px;
  background-color: #2a2a2a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
}

@media screen and (min-width: 64em) {
  .header-alert--inner {
    padding: 16px 32px 16px 24px;
    border-radius: 10px;
  }
}

[theme='dark'] .header-alert--inner {
  background-color: #fff;
}

.header-alert--icon {
  flex-shrink: 0;
  font-size: 35px;
  line-height: 1;
}

.header-alert--wrap {
  gap: 2px 0;
  display: flex;
  flex-direction: column;
}

.header-alert--title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

[theme='dark'] .header-alert--title {
  color: #202020;
}

.header-alert--title a {
  color: #fff;
  text-decoration: underline;
}

[theme='dark'] .header-alert--title a {
  color: #000;
}

.header-alert--text {
  color: #fff;
  font-size: 16px;
  line-height: 19px;
}

[theme='dark'] .header-alert--text {
  color: #202020;
}

.header-alert--text a {
  color: #fff;
  text-decoration: underline;
}

[theme='dark'] .header-alert--text a {
  color: #000;
}

.header-alert--close {
  display: block;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 11 10'%3E%3Cpath fill='%23A8A8A9' d='M10.083 1.907 8.176 0 5.083 3.093 1.99 0 .083 1.907 3.176 5 .083 8.093 1.99 10l3.093-3.093L8.176 10l1.907-1.907L6.99 5l3.093-3.093Z' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  cursor: pointer;
}

.middle-header {
  display: none;
  justify-content: center;
  width: 100%;
  padding: 0 30px;
}

@media screen and (min-width: 64em) {
  .middle-header {
    display: flex;
  }
}

.middle-header--inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  height: 104px;
}

.middle-header--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin: 0 auto 0 0;
}

.middle-header--logo svg {
  --i-color1: var(--x-header-icon-color);
  --i-color2: #e51e25;
  flex-shrink: 0;
  width: 128px;
  height: 40px;
  margin: 0 20px 0 0;
}

.theme-new-year .middle-header--logo {
  padding: 0 0 0 10px;
  background-image: url(/nimg/dm-ny-mob.png);
  background-repeat: no-repeat;
  background-size: 45px;
}

.theme-new-year .middle-header--logo svg {
  --i-color2: transparent;
}

.middle-header--slogan {
  flex-shrink: 0;
  color: var(--x-header-slogan-color);
  font-size: 12px;
  line-height: 15px;
}

.submenu-header {
  gap: 0 20px;
  display: flex;
  margin: 0 25px 0 0;
}

.submenu-header--item {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.submenu-header--item svg {
  --i-color1: var(--x-header-icon-color);
  width: inherit;
  height: inherit;
}

.submenu-header--item_active {
  font-weight: 700;
}

.submenu-header--badge {
  display: flex;
  position: absolute;
  top: -8px;
  left: 7px;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #e51e25;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.submenu-header--item_message .submenu-header--badge {
  left: 11px;
}

.submenu-header--unread {
  margin: 0 0 0 8px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: #e51e25;
  color: #eee;
  font-size: 14px;
  line-height: 1;
}

.header-user {
  display: flex;
  position: relative;
  align-items: center;
}

.header-user--avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 8px 0 0;
  border-radius: 10px;
  background-color: var(--x-header-avatar-bg-color);
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.header-user--nick {
  display: flex;
  align-items: center;
  color: var(--x-header-menu-color);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.header-user--nick svg {
  --i-color1: var(--x-header-icon-color);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.header-user--nick.active svg {
  --i-color1: #e51e25;
  transform: rotate(180deg);
}

.header-user--options {
  display: none;
  z-index: 999;
  position: absolute;
  top: 64px;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  background-color: var(--x-header-dropdown-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.header-user--options.show {
  display: flex;
}

.header-user--top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 32px 24px;
}

.header-user--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px 32px;
  border-top: 1px solid var(--x-header-dropdown-line-color);
}

.header-user--link {
  display: flex;
  align-items: center;
  color: var(--x-header-menu-color);
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
}

.header-user--link:not(:last-child) {
  margin: 0 0 24px;
}

.header-user--link svg {
  --i-color1: var(--x-header-icon-color);
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.header-user--gtp {
  margin: 0 0 0 5px;
  color: var(--x-header-dropdown-gtp-color);
}

.middle-header--login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 40px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.modal-login {
  display: flex;
  z-index: 1004;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
  width: 100%;
  max-width: 438px;
  max-height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
}

.modal-login.hidden {
  display: none;
}

.modal-login--close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 10;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background-image: url(/nimg/close-modal-login12.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}

.modal-login--overlay {
  z-index: 1003;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
}

.modal-login--overlay.hidden {
  display: none;
}

.modal-login--inner {
  flex-grow: 1;
  padding: 40px 16px;
}

@media screen and (min-width: 30em) {
  .modal-login--inner {
    padding: 40px;
  }
}

.modal-login--heading {
  margin: 0 0 16px;
  color: var(--text-1-color, #000);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
}

.modal-login--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 0;
}

.modal-login--label {
  margin: 0 0 8px;
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.modal-login--input-login {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 32px;
  padding: 14px 16px;
  border: 1px solid var(--text-6-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-2-color, #212121);
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
}

.modal-login--input-login::-moz-placeholder {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 1;
}

.modal-login--input-login::placeholder {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 1;
}

.modal-login--input-pass {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--text-6-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-2-color, #212121);
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
}

.modal-login--input-pass::-moz-placeholder {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 1;
}

.modal-login--input-pass::placeholder {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 1;
}

.modal-login--remind {
  margin: 7px 0 0;
  color: var(--text-1-color, #000);
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}

.modal-login--submit {
  width: 100%;
  margin: 32px 0 0;
  padding: 18px 24px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  cursor: pointer;
}

.modal-login--reg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-login--subheading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 40px;
}

.modal-login--subheading::after,
.modal-login--subheading::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--text-6-color, #ebedee);
  content: '';
}

.modal-login--subheading span {
  padding: 0 30px;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 24px;
}

.modal-login--reglink {
  gap: 0 10px;
  display: flex;
  align-items: center;
  margin: 0 auto 40px;
  padding: 19px 40px;
  border-radius: 10px;
  background-color: #45ae52;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.modal-login--reglink svg {
  flex-shrink: 0;
  width: 20px;
  height: 13px;
}

.modal-login--note {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

.modal-login--note a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}

.modal-social {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 0 0;
}

.modal-social--heading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 32px;
}

.modal-social--heading::after,
.modal-social--heading::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--text-6-color, #ebedee);
  content: '';
}

.modal-social--heading span {
  padding: 0 30px;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 24px;
}

.modal-social--inner {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 30em) {
  .modal-social--inner {
    gap: 16px 8px;
  }
}

.modal-social--link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid #e51e25;
  border-radius: 10px;
}

.modal-social--link svg {
  width: 24px;
  height: 24px;
}

.age-check-overlay {
  z-index: 103;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}

.age-check-overlay.hidden {
  display: none;
}

.age-check {
  display: flex;
  z-index: 103;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  max-height: 100%;
  padding: 0 8px;
  transform: translate(-50%, -50%);
}

.age-check.hidden {
  display: none;
}

.age-check--inner {
  flex-grow: 1;
  padding: 40px 24px;
  border-radius: 10px;
  background-color: #fff;
}

.age-check--icon {
  margin: 0 0 16px;
  font-size: 45px;
  line-height: 1;
  text-align: center;
}

.age-check--heading {
  margin: 0 0 24px;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.age-check--grid {
  gap: 0 8px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.age-check--button {
  width: 100%;
  max-width: 110px;
  padding: 10px;
  border: 1px solid #9f9f9f;
  border-radius: 10px;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: center;
}

.age-check--button_active {
  border-color: #e51e25;
  background-color: #e51e25;
  color: #fff;
}

.age-check--text {
  color: #000;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.auth-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--layer-2-color, #fff);
}

.auth {
  display: block;
  flex-grow: 1;
  width: 100%;
  max-width: 438px;
  max-height: 100%;
  margin: 10vh auto;
  padding: 40px 16px;
  border-radius: 10px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 30em) {
  .auth {
    padding: 40px;
  }
}

@media (max-width: 438px) {
  .auth {
    margin: 0;
    border-radius: 0;
  }
}

.auth label {
  margin-bottom: 16px;
  color: var(--text-1-color, #000);
  font-size: 14px;
}

.auth label span {
  display: block;
}

.auth__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 380px;
  padding: 16px 0 0;
}

.auth__heading {
  margin: 0 0 16px;
  color: var(--text-1-color, #000);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
}

.auth__subheading {
  text-wrap: balance;
  color: var(--text-2-color, #222);
  text-align: center;
}

@media screen and (min-width: 30em) {
  .auth__subheading {
    margin-bottom: 16px;
  }
}

.auth__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 20px;
  padding: 18px 24px;
  border: 1px solid var(--text-6-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-2-color, #212121);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

.auth__submit {
  width: 100%;
  margin: 32px 0 0;
  padding: 18px 24px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  cursor: pointer;
}

.auth__cancel {
  width: 75%;
  margin: 32px auto 0;
  padding: 18px 24px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  color: var(--text-4-color, #424242);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  cursor: pointer;
}

.auth__cancel:hover {
  background-color: var(--layer-4-color, #efefef);
}

.auth_2fa {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
}

.auth_login {
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 30em) {
  .auth_login {
    margin: 3vh auto;
  }
}

@media screen and (min-width: 64em) {
  .auth_login {
    margin: 5vh auto;
  }
}

.mobile-top {
  --m-item-color: var(--text-1-color, #000);
  --m-icon-color: var(--text-1-color, #000);
  --m-dropdown-bg-color: var(--layer-5-color, #fff);
  --m-dropdown-line-color: var(--line-2-color, #ebedee);
  --m-dropdown-gtp-color: var(--m-gtp-color, #33691e);
  --mtop-bg-color: var(--layer-3-color, #fff);
  --mtop-border-color: var(--line-2-color, #e1e1e1);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  z-index: 1002;
  position: fixed;
  align-items: center;
  width: 100%;
  height: 64px;
  margin: 0 0 3px;
  padding: 0 16px;
  background-color: var(--mtop-bg-color);
  box-shadow: var(--mobile-shadow, 0 3px #eef0f5);
}

[theme='dark'] .mobile-top {
  --m-gtp-color: #689f38;
  --mobile-shadow: 0 3px #424242;
}

@media screen and (min-width: 64em) {
  .mobile-top {
    display: none;
  }
}

.theme-new-year .mobile-top {
  --mtop-sep-bg-color: rgba(255, 255, 255, .85);
  background-image: url(/nimg/pattern-ny-transparent.png);
  background-repeat: repeat;
  background-size: 100px;
}

[theme='dark'] .theme-new-year .mobile-top {
  --mtop-sep-bg-color: rgba(255, 255, 255, .35);
  background-image: url(/nimg/pattern-ny-dark.png);
}

.mobile-top--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.theme-new-year .mobile-top--logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url(/nimg/dm-ny-mob.png);
  background-repeat: no-repeat;
  background-size: 32px;
}

.theme-new-year .mobile-top--logo svg {
  display: none;
}

.mobile-top--inner {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
  margin: 0 21px 0 0;
}

.mobile-top--promo {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 34px;
  margin: 0 12px 0 0;
}

.mobile-top--promo svg {
  --i-color1: #333;
  flex-shrink: 0;
}

[theme='dark'] .mobile-top--promo svg {
  --i-color1: #fff;
  --i-color2: #2a2a2a;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-borderless_mobile .tooltipster-arrow {
  left: -10px !important;
}

.mobile-top--item {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 34px;
  margin: 0 8px;
}

.mobile-top--item strong {
  margin: 0 0 0 6px;
  color: var(--text-2-color, #292929);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.mobile-top--item svg {
  --i-color1: #333;
  flex-shrink: 0;
}

[theme='dark'] .mobile-top--item svg {
  --i-color1: #fff;
  --i-color2: #2a2a2a;
}

.mobile-top--badge {
  display: flex;
  position: absolute;
  top: -5px;
  left: 14px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e51e25;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.mobile-top--item_message .mobile-top--badge {
  left: 18px;
}

.mobile-top--avatar {
  width: 36px;
  height: 36px;
  border: 2px solid var(--mtop-bg-color);
  border-radius: 50%;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px var(--mtop-border-color);
}

.mobile-top--login {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  height: 34px;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.mobile-top--login svg {
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

.mobile-top--button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.mobile-top--button svg {
  --i-color1: #202020;
  flex-shrink: 0;
}

[theme='dark'] .mobile-top--button svg {
  --i-color1: #fff;
}

.mobile-top--button .mobile-i-close {
  display: none;
}

.mobile-top--button.menu-opened .mobile-i-menu {
  display: none;
}

.mobile-top--button.menu-opened .mobile-i-close {
  display: block;
}

.mobile-top--button.submenu .mobile-i-close {
  --i-color1: #e51e25;
}

.lock-scroll {
  overflow: hidden;
}

@media screen and (min-width: 64em) {
  .lock-scroll {
    overflow: initial;
  }
}

.mobile-menu {
  -webkit-tap-highlight-color: transparent;
  display: none;
  z-index: 1001;
  position: absolute;
  top: 67px;
  left: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: calc(100vh - 67px);
  overflow-y: auto;
  background-color: var(--m-bottom-bg-color);
}

.mobile-menu.menu-opened {
  display: flex;
}

@media screen and (min-width: 64em) {
  .mobile-menu.menu-opened {
    display: none;
  }
}

.mobile-menu--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 0 24px;
}

.mobile-user {
  display: flex;
  z-index: 1010;
  position: relative;
  margin: 0 0 0 12px;
}

.mobile-user--avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 16px 0 0;
  border-radius: 10px;
  background-color: var(--m-user-avatar-bg-color);
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.mobile-user--nick {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--m-item-color);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.mobile-user--nick svg {
  --i-color1: var(--m-icon-color);
  width: 22px;
  height: 22px;
  margin: 0 0 0 auto;
}

.mobile-user--nick.active svg {
  --i-color1: #e51e25;
  transform: rotate(180deg);
}

.mobile-user--login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.mobile-user--options {
  display: none;
  position: absolute;
  top: 46px;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  background-color: var(--m-dropdown-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.mobile-user--options.show {
  display: flex;
}

.mobile-user--top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 32px 24px;
}

.mobile-user--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px 32px;
  border-top: 1px solid var(--m-dropdown-line-color);
}

.mobile-user--link {
  display: flex;
  align-items: center;
  color: var(--m-item-color);
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
}

.mobile-user--link:not(:last-child) {
  margin: 0 0 24px;
}

.mobile-user--link svg {
  --i-color1: var(--m-icon-color);
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.mobile-user--gtp {
  margin: 0 0 0 5px;
  color: var(--m-dropdown-gtp-color);
}

.mobile-submenu {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  border-top: 1px solid var(--m-sub-line-color);
  border-bottom: 1px solid var(--m-sub-line-color);
}

.mobile-submenu--top {
  display: flex;
  align-items: center;
}

.mobile-submenu--item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--m-item-color);
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}

.mobile-submenu--item_support svg {
  margin: 0 16px 0 0;
}

.mobile-submenu--item svg {
  --i-color1: var(--m-icon-color);
  width: 16px;
  height: 16px;
}

.mobile-submenu--sep {
  flex-shrink: 0;
  width: 1px;
  height: 16px;
  margin: 0 42px;
  background-color: var(--m-sep-bg-color);
  content: '';
  pointer-events: none;
}

.mobile-submenu_lang .mobile-submenu--sep {
  margin: 0 25px;
}

.mobile-menu .mobile-submenu .theme-icon-sun {
  --i-color1: #000;
  flex-shrink: 0;
  margin: 0;
}

[theme='dark'] .mobile-menu .mobile-submenu .theme-icon-sun {
  --i-color1: #474747;
  display: none;
}

.mobile-menu .mobile-submenu .theme-icon-moon {
  --i-color1: #aaa;
  display: none;
  flex-shrink: 0;
  margin: 0;
}

[theme='dark'] .mobile-menu .mobile-submenu .theme-icon-moon {
  --i-color1: #fff;
  display: block;
}

.mobile-menu .mobile-submenu .theme-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  background-color: transparent;
}

[theme='dark'] .mobile-menu .mobile-submenu .theme-button {
  background-color: transparent;
}

.mobile-menu--inner {
  z-index: 1002;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 20px 0 30px;
}

@supports (-webkit-touch-callout: none) {
  .mobile-menu--inner {
    padding: 20px 0 90px;
  }
}

.mobile-menu--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.mobile-menu--link {
  padding: 16px 0;
  color: var(--m-item-color);
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.mobile-menu--link_active {
  color: #e51e25;
}

.mobile-menu--link_vip {
  color: #e51e25;
}

.promomenu-list {
  --dropmenu-bg-color: var(--layer-4-color, #f4f4f4);
  --dropmenu-icon-bg-color: var(--layer-3-color, #fff);
  --dropmenu-link-color: var(--text-1-color, #000);
  --dropmenu-line-color: var(--line-2-color, #e3e3e3);
  --dropmenu-close-color: var(--line-2-color, #aaa);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 16px 24px;
  background-color: var(--dropmenu-bg-color);
}

.promomenu-list--item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 312px;
  white-space: nowrap;
}

.promomenu-list--item:not(:last-child) {
  border-bottom: 1px solid var(--dropmenu-line-color);
}

.promomenu-list--item a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 16px 0;
  color: var(--dropmenu-link-color);
  font-size: 14px;
  line-height: 24px;
}

.promomenu-list--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 32px 0 0;
  border-radius: 10px;
  background-color: var(--dropmenu-icon-bg-color);
}

[theme='dark'] .promomenu-list--icon_all svg {
  --color1: #fff;
}

.promomenu-list--icon svg {
  width: 18px;
  height: 18px;
}

.allrooms-list {
  --allrooms-bg-color: var(--layer-4-color, #f4f4f4);
  --allrooms-arrow-color: var(--line-2-color, #aaa);
  --allrooms-icon-bg-color: var(--layer-3-color, #fff);
  --allrooms-link-color: var(--text-1-color, #000);
  --allrooms-line-color: var(--line-2-color, #e3e3e3);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 16px 24px;
  background-color: var(--allrooms-bg-color);
}

.allrooms-list--item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 312px;
  white-space: nowrap;
}

.allrooms-list--item:not(:last-child) {
  border-bottom: 1px solid var(--allrooms-line-color);
}

.allrooms-list--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 32px 0 0;
  border-radius: 10px;
  background-color: var(--allrooms-icon-bg-color);
}

.allrooms-list--icon_rate {
  background-color: #44d487;
}

[theme='dark'] .allrooms-list--icon_all svg {
  --i-color1: #fff;
}

.allrooms-list--icon svg {
  width: 16px;
  height: 16px;
}

.allrooms-list--icon_dark {
  display: none;
}

[theme='dark'] .allrooms-list--icon_dark {
  display: flex;
}

[theme='dark'] .allrooms-list--icon_light {
  display: none;
}

.allrooms-list--link {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 16px 0;
  color: var(--allrooms-link-color);
  font-size: 14px;
  line-height: 16px;
}

.allrooms-list--link_active {
  color: #e51e25;
  font-weight: 700;
}

.allrooms-list--arrow {
  --i-color1: var(--allrooms-arrow-color);
  width: 24px;
  height: 24px;
  margin: 0 0 0 auto;
  transform: rotate(90deg);
}

.allrooms-list--link_active .allrooms-list--arrow {
  --i-color1: #e51e25;
  transform: rotate(270deg);
}

.room-submenu {
  --roomsub-icon-color: var(--text-1-color, #000);
  --roomsub-icon-bg-color: var(--layer-3-color, #fff);
  --roomsub-link-color: var(--text-1-color, #000);
  --roomsub-line-color: var(--line-2-color, #e3e3e3);
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.room-submenu--item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.room-submenu--item:not(:last-child) {
  border-bottom: 1px solid var(--roomsub-line-color);
}

.room-submenu--item a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 16px 0;
  color: var(--roomsub-link-color);
  font-size: 14px;
  line-height: 24px;
}

.room-submenu--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 24px 0 0;
  border-radius: 10px;
  background-color: var(--roomsub-icon-bg-color);
}

.room-submenu--icon svg {
  --i-color1: var(--roomsub-icon-color);
  width: 16px;
  height: 16px;
}

.menu-top {
  --mnt-bg-color: var(--layer-3-color, #fff);
  --mnt-icon-color: var(--text-1-color, #000);
  --mnt-submenu-mobile-color: var(--text-3-color, #808080);
  --mnt-submenu-color: var(--text-3-color, #000);
  -webkit-tap-highlight-color: transparent;
  display: none;
  z-index: 1001;
  position: fixed;
  top: 67px;
  left: 0;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 67px);
  padding: 32px 30px 48px;
  overflow-y: auto;
  background-color: var(--mnt-bg-color);
  box-shadow: var(--header-shadow, 0 3px #eef0f5);
}

@media screen and (min-width: 64em) {
  .menu-top {
    display: flex;
    z-index: 101;
    position: relative;
    top: auto;
    height: auto;
    padding: 0 30px;
    overflow-y: initial;
  }
}

.menu-top.menu-opened {
  display: flex;
}

@media screen and (min-width: 64em) {
  .theme-new-year .menu-top {
    background-color: rgba(255, 255, 255, .65);
  }
  [theme='dark'] .theme-new-year .menu-top {
    background-color: rgba(255, 255, 255, .1);
  }
}

.menu-top--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
}

@media screen and (min-width: 64em) {
  .menu-top--inner {
    flex-direction: row;
    align-items: center;
    height: 77px;
    border-top: 1px solid var(--x-header-line-color);
  }
}

.menu-top--inner::after {
  flex-shrink: 0;
  width: 100%;
  height: 48px;
  content: '';
}

@media screen and (min-width: 64em) {
  .menu-top--inner::after {
    display: none;
  }
}

.theme-new-year .menu-top--inner {
  border-top: 1px solid transparent;
}

.menu-top--section {
  display: flex;
  flex-direction: column;
  margin: 0 0 8px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line-1-color, #ebedee);
}

@media screen and (min-width: 64em) {
  .menu-top--section {
    flex-direction: row;
    align-items: center;
    margin: 0 auto 0 0;
    padding: 0;
    border: 0;
  }
}

.menu-top--item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-top--item:not(:last-child) {
  margin: 0 0 16px;
}

@media screen and (min-width: 64em) {
  .menu-top--item {
    flex-direction: row;
  }
  .menu-top--item:not(:last-child) {
    margin: 0 32px 0 0;
  }
}

.menu-top--link {
  display: flex;
  position: relative;
  align-items: center;
  color: var(--x-header-menu-color);
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .menu-top--link {
    font-size: 16px;
    font-weight: 400;
  }
}

.menu-top--link.active {
  color: #e51e25;
}

.menu-top--link span {
  position: absolute;
  top: -4px;
  right: -10px;
  color: #e51e25;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.menu-top--link svg {
  flex-shrink: 0;
  margin: 0 8px 0 0;
}

.menu-top--promo {
  -webkit-tap-highlight-color: transparent;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 18px 0 0;
}

@media screen and (min-width: 64em) {
  .menu-top--promo {
    display: flex;
  }
}

.menu-top--promo svg {
  --i-color1: #333;
  flex-shrink: 0;
}

[theme='dark'] .menu-top--promo svg {
  --i-color1: #fff;
  --i-color2: #2a2a2a;
}

.submenu-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 21px;
}

@media screen and (min-width: 64em) {
  .submenu-top {
    gap: 0 20px;
    flex-direction: row;
    align-items: center;
    margin: 0 24px 0 0;
    padding: 0;
  }
}

.submenu-top--search {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 0 21px;
}

@media screen and (min-width: 64em) {
  .submenu-top--search {
    justify-content: center;
    margin: 0;
  }
}

.submenu-top--search svg {
  --i-color1: var(--text-1-color, #000);
  margin: 0 12px 0 0;
}

@media screen and (min-width: 64em) {
  .submenu-top--search svg {
    margin: 0;
  }
}

.submenu-top--search span {
  color: var(--mnt-submenu-mobile-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .submenu-top--search span {
    display: none;
  }
}

.submenu-top--support {
  display: flex;
  position: relative;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .submenu-top--support {
    justify-content: center;
  }
}

.submenu-top--support svg {
  --i-color1: var(--text-1-color, #000);
  margin: 0 12px 0 0;
}

@media screen and (min-width: 64em) {
  .submenu-top--support svg {
    margin: 0;
  }
}

@media screen and (min-width: 70.625em) {
  .submenu-top--support svg {
    display: none;
  }
}

.submenu-top--support span {
  color: var(--mnt-submenu-mobile-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .submenu-top--support span {
    display: none;
  }
}

@media screen and (min-width: 70.625em) {
  .submenu-top--support span {
    display: block;
    color: var(--mnt-submenu-color);
    font-family: Roboto, Arial, sans-serif;
  }
}

.theme-button-wrap {
  display: flex;
  align-items: center;
  margin: 0 0 21px;
}

@media screen and (min-width: 64em) {
  .theme-button-wrap {
    justify-content: center;
    margin: 0;
  }
}

.theme-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: transparent;
}

[theme='dark'] .theme-button {
  background-color: transparent;
}

.theme-icon-sun {
  display: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 12px 0 0;
}

@media screen and (min-width: 64em) {
  .theme-icon-sun {
    margin: 0;
  }
}

[theme='dark'] .theme-icon-sun {
  --i-color1: #fff;
  display: block;
}

.theme-icon-moon {
  --i-color1: #333;
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 12px 0 0;
}

@media screen and (min-width: 64em) {
  .theme-icon-moon {
    margin: 0;
  }
}

[theme='dark'] .theme-icon-moon {
  display: none;
}

.theme-button--text {
  color: var(--mnt-submenu-mobile-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .theme-button--text {
    display: none;
  }
}

[theme='dark'] .theme-button--text_dark {
  display: none;
}

.theme-button--text_light {
  display: none;
}

[theme='dark'] .theme-button--text_light {
  display: block;
}

@media screen and (min-width: 64em) {
  [theme='dark'] .theme-button--text_light {
    display: none;
  }
}

.lang-flag-wrap {
  gap: 0 16px;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: flex-start;
  min-width: 16px;
  min-height: 16px;
  padding: 0 0 21px;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .lang-flag-wrap {
    gap: 0;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 24px;
    padding: 0;
  }
}

.mobile-submenu .lang-flag-wrap {
  padding: 0 3px 0 0;
}

.lang-flag-wrap svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.flag-options {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 64em) {
  .flag-options {
    z-index: 1003;
    position: absolute;
    top: 32px;
    right: 0;
    left: auto;
  }
}

.flag-options_show {
  display: flex;
  padding: 0 0 32px;
}

@media screen and (min-width: 64em) {
  .flag-options_show {
    padding: 0;
  }
}

.flag-options--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 16px 32px;
  border-radius: 10px;
  background-color: var(--x-header-dropdown-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

@media screen and (min-width: 64em) {
  .flag-options--inner {
    padding: 32px;
  }
}

.flag-options--link {
  display: flex;
  align-items: center;
  color: var(--x-header-menu-color);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.flag-options--link:not(:last-child) {
  margin: 0 0 24px;
}

.flag-options--link svg {
  --i-color1: var(--x-header-icon-color);
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.menu-top--sublink {
  display: flex;
  align-items: flex-start;
  margin: 3px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-1-color, #ebedee);
}

@media screen and (min-width: 64em) {
  .menu-top--sublink {
    display: none;
  }
}

.menu-top--sublink a {
  color: var(--mnt-submenu-mobile-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}

.menu-main {
  display: none;
  justify-content: center;
  width: 100%;
  background-color: #000;
}

@media screen and (min-width: 64em) {
  .menu-main {
    display: flex;
  }
}

.menu-main--inner {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1276px;
  height: 64px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .menu-main--inner {
    display: flex;
  }
}

.menu-main--item {
  display: flex;
  align-items: center;
  height: 28px;
  margin: 0 20px 0 0;
  padding: 2px 0 0;
  border-bottom: 2px solid transparent;
  color: var(--footer-menu-color, #fff);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-main--item:nth-last-child(1) {
  margin: 0;
}

.menu-main--item_room {
  --footer-menu-color: #e50e2c;
}

.menu-main--item.active {
  border-bottom-color: #e51e25;
}

.menu-main--counter {
  margin: 0 0 0 2px;
  padding: 0 4px;
  color: #828282;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.menu-main--vip {
  flex-shrink: 0;
  width: 34px;
  height: 48px;
  margin: 0 20px 0 0;
  background-image: url(/nimg/500plus-logo-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 34px;
}

.menu-main--search {
  margin: 0 0 0 auto;
  padding: 0 0 0 28px;
  background-image: url(/nimg/menu-search.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  color: #606060;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dropmenu {
  --dropmenu-bg-color: var(--layer-4-color, #f4f4f4);
  --dropmenu-icon-bg-color: var(--layer-3-color, #fff);
  --dropmenu-link-color: var(--text-1-color, #000);
  --dropmenu-line-color: var(--line-2-color, #e3e3e3);
  --dropmenu-close-color: var(--line-2-color, #aaa);
  -webkit-tap-highlight-color: transparent;
  display: none;
  width: 100%;
  padding: 16px 0;
}

@media screen and (min-width: 64em) {
  .dropmenu {
    display: block;
  }
}

.dropmenu--close {
  display: flex;
  position: absolute;
  top: 12px;
  right: 24px;
  width: 24px;
  height: 24px;
  padding: 6px;
}

.dropmenu--close svg {
  --i-color1: var(--dropmenu-close-color);
  width: 12px;
  height: 12px;
}

.dropmenu--inner {
  display: flex;
  width: 100%;
  max-width: 1246px;
}

.dropmenu--list {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.dropmenu--item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.dropmenu--item:not(:last-child) {
  border-bottom: 1px solid transparent;
}

.dropmenu--item a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 4px 0;
  color: var(--dropmenu-link-color);
  font-size: 14px;
  line-height: 19px;
}

.dropmenu--item a:hover {
  color: #e51e25;
}

.dropmenu--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 16px 0 0;
  border-radius: 10px;
  background-color: var(--dropmenu-icon-bg-color);
}

[theme='dark'] .dropmenu--icon_all svg {
  --color1: #fff;
}

.dropmenu--icon svg {
  width: 18px;
  height: 18px;
}

.roommenu {
  --roommenu-bg-color: var(--layer-5-color, #e0e0e0);
  --roommenu-icon-color: var(--text-1-color, #000);
  --roommenu-icon-bg-color: var(--layer-3-color, #fff);
  --roommenu-link-color: var(--text-1-color, #000);
  --roommenu-line-color: var(--line-2-color, #e3e3e3);
  --roommenu-close-color: var(--line-2-color, #aaa);
  --roommenu-scroll-bg-color: var(--layer-3-color, #fff);
  --roommenu-scroll-color: var(--line-1-color, #e3e3e3);
  -webkit-tap-highlight-color: transparent;
  display: none;
  z-index: 4;
  position: absolute;
  top: 77px;
  left: 0;
  padding: 0 16px;
  background-color: var(--roommenu-bg-color);
}

@media screen and (min-width: 64em) {
  .roommenu {
    display: block;
  }
}

.roommenu_rakeback {
  left: 106px;
  padding: 0 0 0 16px;
}

.roommenu_offers {
  left: 291px;
}

.roommenu--close {
  display: none;
  position: absolute;
  top: 12px;
  right: 24px;
  width: 24px;
  height: 24px;
  padding: 6px;
}

.roommenu--close svg {
  --i-color1: var(--roommenu-close-color);
  width: 12px;
  height: 12px;
}

.roommenu--inner {
  display: flex;
  width: 100%;
  max-width: 1246px;
}

.roommenu_rakeback .roommenu--inner {
  padding: 0 16px 0 0;
}

.roommenu--list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 270px;
  margin: 0;
}

.roommenu--item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.roommenu--item:not(:last-child) {
  border-bottom: 1px solid transparent;
}

.roommenu--item a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 4px 0;
  color: var(--roommenu-link-color);
  font-size: 14px;
  line-height: 19px;
}

.roommenu--item a:hover {
  color: #e51e25;
}

.roommenu--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 16px 0 0;
  border-radius: 10px;
  background-color: var(--roommenu-icon-bg-color);
}

.roommenu--icon svg {
  --i-color1: var(--roommenu-icon-color);
  width: 16px;
  height: 16px;
}

.roommenu--grid {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 16px 0;
}

.roommain {
  --roommenu-bg-color: var(--layer-4-color, #f4f4f4);
  --roommenu-icon-color: var(--text-1-color, #000);
  --roommenu-icon-bg-color: var(--layer-3-color, #fff);
  --roommenu-link-color: var(--text-1-color, #000);
  --roommenu-line-color: var(--line-2-color, #e3e3e3);
  --roommenu-close-color: var(--line-2-color, #aaa);
  --roommenu-arrow-color: var(--line-2-color, #aaa);
  scrollbar-width: thin;
  scrollbar-color: var(--roommenu-scroll-color) var(--roommenu-scroll-bg-color);
  display: flex;
  width: 100%;
  max-width: 1246px;
  overflow: auto;
}

.roommain--list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.roommain--item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.roommain--item:not(:last-child) {
  border-bottom: 1px solid transparent;
}

.roommain--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 16px 0 0;
  border-radius: 10px;
  background-color: var(--roommenu-icon-bg-color);
}

.roommain--icon_rate {
  background-color: #44d487;
}

.roommain--icon svg {
  width: 16px;
  height: 16px;
}

[theme='dark'] .roommain--icon_all svg {
  --i-color1: #fff;
}

.roommain--icon_dark {
  display: none;
}

[theme='dark'] .roommain--icon_dark {
  display: flex;
}

[theme='dark'] .roommain--icon_light {
  display: none;
}

.roommain::-webkit-scrollbar {
  width: 16px;
}

.roommain::-webkit-scrollbar-track {
  border-radius: 100px;
  background-color: var(--roommenu-scroll-bg-color);
}

.roommain::-webkit-scrollbar-thumb {
  border: 5px solid transparent;
  border-radius: 100px;
  background-clip: content-box;
  background-color: var(--roommenu-scroll-color);
}

.roommain--link {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 4px 0;
  color: var(--roommenu-link-color);
  font-size: 14px;
  line-height: 19px;
}

.roommain--link:hover {
  color: #e51e25;
}

.roommain--link_active {
  color: #e51e25;
  font-weight: 700;
}

.roommain--arrow {
  --i-color1: var(--roommenu-arrow-color);
  width: 24px;
  height: 24px;
  margin: 0 0 0 auto;
}

.roommain--link_active .roommain--arrow {
  --i-color1: #e51e25;
}

.widemenu-open .header {
  z-index: 6;
  position: relative;
}

.widemenu-overlay {
  display: none;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

[theme='dark'] .widemenu-overlay {
  background: rgba(0, 0, 0, .75);
}

@media screen and (min-width: 64em) {
  .widemenu-open .widemenu-overlay {
    display: block;
  }
}

.widemenu {
  --widemenu-bg-color: var(--layer-3-color, #fff);
  --widemenu-heading-color: var(--text-5-color, #000);
  --widemenu-icon-color: var(--text-5-color, #000);
  --widemenu-link-color: var(--text-1-color, #000);
  --widemenu-border-color: var(--line-1-color, #e1e1e1);
  --widemenu-subheading-color: var(--text-5-color, #808080);
  --widemenu-line-color: var(--line-2-color, #ebedee);
  --widemenu-cardhead-color: var(--text-2-color, #000);
  --widemenu-cardsubhead-color: var(--text-4-color, #000);
  --softmenu-link-color: var(--text-1-color, #404040);
  --widemenu-desc-color: var(--text-4-color, #404040);
  -webkit-tap-highlight-color: transparent;
  display: none;
  z-index: 4;
  justify-content: center;
  width: 100%;
  min-height: 386px;
  padding: 24px 0;
  background-color: var(--widemenu-bg-color);
}

@media screen and (min-width: 64em) {
  .widemenu {
    position: absolute;
    top: 78px;
    left: 0;
    padding: 40px 30px 48px;
  }
}

.widemenu.menu-opened {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  padding: 32px 30px;
}

@media screen and (min-width: 64em) {
  .widemenu.menu-opened {
    top: 78px;
    padding: 40px 30px 48px;
  }
}

.widemenu--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px 0 0;
}

@media screen and (min-width: 64em) {
  .widemenu--inner {
    padding: 40px 0 0;
  }
}

.widemenu--grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
}

.widemenu--grid::after {
  flex-shrink: 0;
  height: 100px;
  content: '';
}

@media screen and (min-width: 64em) {
  .widemenu--grid {
    gap: 0 24px;
    grid-template-columns: 240px 1fr;
  }
  .widemenu--grid::after {
    display: none;
  }
}

@media screen and (min-width: 70.625em) {
  .widemenu--grid {
    gap: 0 64px;
  }
}

.widelist {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.widelist--heading {
  margin: 0 0 18px;
  color: var(--widemenu-subheading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
}

@media screen and (min-width: 64em) {
  .widelist--heading {
    margin: 0 0 24px;
    color: var(--widemenu-heading-color);
    font-family: "PT Serif", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
  }
}

.widelist--main {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.widelist--item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.widelist--item:not(:last-child) {
  margin: 0 0 5px;
}

.widelist--link {
  padding: 4px 0;
  color: var(--widemenu-link-color);
  font-size: 18px;
  line-height: 22px;
}

.widelist--link::after {
  display: inline-flex;
  width: 7px;
  height: 8px;
  margin: 0 0 0 4px;
  transform: translateY(-1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23000' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .widelist--link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23fff' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.widelist--link_active {
  color: #e51e25;
  font-weight: 500;
}

.widelist--link_active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23e51e25' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

[theme='dark'] .widelist--link_active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23e51e25' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.widelist--link:hover {
  color: #e51e25;
}

.widelist--link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23e51e25' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.widelist--link_icon {
  display: flex;
  align-items: center;
}

.widelist--link_icon::after {
  transform: translateY(1px);
}

.widelist--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
}

.widelist--icon svg {
  --i-color1: var(--widemenu-icon-color);
  width: 20px;
  height: 22px;
}

.widemenu--subheading {
  margin: 0 0 26px;
  color: var(--widemenu-subheading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .widemenu--subheading {
    margin: 0 0 13px;
  }
}

.widemenu--subgrid {
  width: 100%;
}

.widemenu--subgrid_rooms {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .widemenu--subgrid_rooms {
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}

.widemenu--subgrid_actions {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .widemenu--subgrid_actions {
    gap: 0 32px;
    grid-template-columns: repeat(3, minmax(198px, 1fr));
  }
}

.wroom-link {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  height: 60px;
  padding: 5px 0;
  border-top: 1px solid var(--widemenu-border-color);
}

@media screen and (min-width: 64em) {
  .wroom-link {
    height: 50px;
    padding: 0;
    border: 0;
  }
}

.wroom-link:last-child {
  border-bottom: 1px solid var(--widemenu-border-color);
}

@media screen and (min-width: 64em) {
  .wroom-link:last-child {
    border: 0;
  }
}

.wroom-link--wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .wroom-link--wrap {
    justify-content: center;
  }
}

.wroom-link--wrap_dark {
  display: none;
}

[theme='dark'] .wroom-link--wrap_dark {
  display: flex;
}

[theme='dark'] .wroom-link--wrap_light {
  display: none;
}

.wroom-link--wrap img {
  height: 100%;
}

.wroom-link-more {
  width: 100%;
  max-width: 150px;
  height: 60px;
  padding: 5px 0;
  border-top: 1px solid var(--widemenu-border-color);
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .wroom-link-more {
    height: 50px;
    border: 0;
  }
}

.wroom-link-more::after {
  display: inline-flex;
  width: 7px;
  height: 8px;
  margin: 0 0 0 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23e51e25' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.actions-menucard {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  padding: 0 0 16px;
}

@media screen and (min-width: 64em) {
  .actions-menucard {
    padding: 12px 0 0;
  }
}

.actions-menucard:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--widemenu-line-color);
  content: '';
}

@media screen and (min-width: 64em) {
  .actions-menucard:not(:last-child)::after {
    top: 1px;
    right: -16px;
    bottom: auto;
    left: auto;
    width: 1px;
    height: 100%;
  }
}

.actions-menucard--logo {
  display: flex;
  margin: 0 0 20px;
}

.actions-menucard--img {
  display: flex;
  justify-content: center;
  height: 55px;
}

[theme='dark'] .actions-menucard--img_light {
  display: none;
}

.actions-menucard--img_dark {
  display: none;
}

[theme='dark'] .actions-menucard--img_dark {
  display: flex;
}

.actions-menucard--img img {
  height: 100%;
}

.actions-menucard--img svg {
  width: 55px;
  height: 55px;
}

.actions-menucard--content {
  display: flex;
  flex-direction: column;
}

.actions-menucard--date {
  display: flex;
  align-items: center;
}

.actions-menucard--time {
  margin: 0 0 9px;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}

.actions-menucard--heading {
  margin: 0 0 12px;
  color: var(--widemenu-cardhead-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.actions-menucard--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.actions-menucard--mark {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: auto 0 0;
}

.actions-menucard--tag {
  display: inline-flex;
  margin: 0 5px 4px 0;
  padding: 3px 6px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  color: #8f8f8f;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.soft-menucard {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .soft-menucard {
    padding: 15px 0 0;
  }
}

@media screen and (min-width: 64em) {
  .soft-menucard:not(:last-child)::after {
    position: absolute;
    top: 1px;
    right: -16px;
    width: 1px;
    height: 100%;
    background-color: var(--widemenu-line-color);
    content: '';
  }
}

.soft-menucard--list--main {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.soft-menucard--item {
  display: flex;
  align-items: center;
}

.soft-menucard--item:not(:last-child) {
  margin: 0 0 4px;
}

.soft-menucard--link {
  padding: 4px 0 2px;
  color: var(--softmenu-link-color);
  font-size: 16px;
  line-height: 19px;
}

.soft-menucard--link::after {
  display: inline-flex;
  width: 7px;
  height: 8px;
  margin: 0 0 0 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23000' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .soft-menucard--link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23fff' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.soft-menucard--link:hover {
  color: #e51e25;
}

.soft-menucard--link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23e51e25' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.widelist--headlogo {
  display: flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--widemenu-heading-color);
  font-family: "PT Serif", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 27px;
}

@media screen and (min-width: 64em) {
  .widelist--headlogo {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 31px;
  }
}

.widelist--pluslogo {
  flex-shrink: 0;
  width: 40px;
  height: 38px;
  margin: 0 8px 0 0;
}

@media screen and (min-width: 64em) {
  .widelist--pluslogo {
    width: 62px;
    height: 62px;
    margin: 0 12px 0 0;
  }
}

.gtpl-menucard {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 292px;
  padding: 0 0 16px;
}

@media screen and (min-width: 64em) {
  .gtpl-menucard {
    max-width: initial;
    padding: 0;
  }
}

.gtpl-menucard:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--widemenu-line-color);
  content: '';
}

@media screen and (min-width: 64em) {
  .gtpl-menucard:not(:last-child)::after {
    top: 34px;
    right: -16px;
    bottom: auto;
    left: auto;
    width: 1px;
    height: calc(100% - 34px);
  }
}

.gtpl-menucard--head {
  margin: 0 0 26px;
  color: var(--widemenu-subheading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .gtpl-menucard--head {
    margin: 0 0 13px;
  }
}

.gtpl-menucard--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  margin: 14px 0;
}

@media screen and (min-width: 64em) {
  .gtpl-menucard--logo {
    margin: 24px 0 14px;
  }
}

.gtpl-menucard--logo_room {
  min-height: initial;
  margin: 14px 0;
}

@media screen and (min-width: 64em) {
  .gtpl-menucard--logo_room {
    margin: 32px 0 36px;
  }
}

[theme='dark'] .gtpl-menucard--logo_room svg {
  --i-color2: #e0e0e0;
  --i-color1: #e51e25;
}

[theme='dark'] .gtpl-i-promo {
  --i-color1: #e51e25;
  --i-color2: #424242;
  --i-color3: #e0e0e0;
}

[theme='dark'] .gtpl-i-refs {
  --i-color1: #e0e0e0;
  --i-color2: #e51e25;
  --i-color3: transparent;
}

.gtpl-menucard--img {
  display: flex;
  justify-content: center;
  height: 55px;
}

[theme='dark'] .gtpl-menucard--img_light {
  display: none;
}

.gtpl-menucard--img_dark {
  display: none;
}

[theme='dark'] .gtpl-menucard--img_dark {
  display: flex;
}

.gtpl-menucard--img img {
  height: 100%;
}

.gtpl-menucard--content {
  display: flex;
  flex-direction: column;
}

.gtpl-menucard--content_room {
  align-self: center;
  width: 100%;
  max-width: 220px;
}

.gtpl-menucard--heading {
  margin: 0 0 10px;
  color: var(--widemenu-cardhead-color);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.gtpl-menucard--heading_room {
  margin: 0;
}

.gtpl-menucard--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.gtpl-menucard--subheading {
  margin: 0 0 10px;
  color: var(--widemenu-cardsubhead-color);
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}

.shop-menucard {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  padding: 0 0 16px;
}

@media screen and (min-width: 64em) {
  .shop-menucard {
    padding: 12px 0 0;
  }
}

.shop-menucard:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--widemenu-line-color);
  content: '';
}

@media screen and (min-width: 64em) {
  .shop-menucard:not(:last-child)::after {
    top: 1px;
    right: -16px;
    bottom: auto;
    left: auto;
    width: 1px;
    height: 100%;
  }
}

.shop-menucard--logo {
  display: flex;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.shop-menucard--img {
  display: flex;
  justify-content: center;
  height: 60px;
}

[theme='dark'] .shop-menucard--img_light {
  display: none;
}

.shop-menucard--img_dark {
  display: none;
}

[theme='dark'] .shop-menucard--img_dark {
  display: flex;
}

.shop-menucard--img img {
  height: 100%;
  border-radius: 10px;
}

.shop-menucard--content {
  grid-gap: 0 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  margin: 0 0 16px;
}

.shop-menucard--data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-menucard--heading {
  margin: 0 0 7px;
  color: var(--widemenu-cardhead-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.shop-menucard--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.shop-menucard--price {
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.shop-menucard--bottom {
  display: flex;
}

.shop-menucard--desc {
  color: var(--widemenu-desc-color);
  font-size: 16px;
  line-height: 21px;
}

.modal-500-overlay {
  display: flex;
  z-index: 50;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.modal-500-overlay.hidden {
  display: none;
}

.modal-500 {
  display: flex;
  z-index: 100;
  width: 100%;
  max-width: 670px;
  max-height: 100%;
  padding: 10px 15px;
}

.modal-500.hidden {
  display: none;
}

.modal-500--close {
  z-index: 10;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}

.modal-500--close::after,
.modal-500--close::before {
  position: absolute;
  top: 0;
  left: 11px;
  width: 1px;
  height: 24px;
  background-color: #9e9e9e;
  content: '';
}

.modal-500--close::before {
  transform: rotate(45deg);
}

.modal-500--close::after {
  transform: rotate(-45deg);
}

.modal-500--inner {
  position: relative;
  flex-grow: 1;
  padding: 20px 15px 25px;
  overflow-y: auto;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .modal-500--inner {
    padding: 50px 40px;
  }
}

.modal-500--logo {
  width: 100%;
  height: 65px;
  margin: 0 0 18px;
  background-image: url(/nimg/500plus-logo-black.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75px;
}

@media screen and (min-width: 48em) {
  .modal-500--logo {
    height: 80px;
    background-size: 90px;
  }
}

.modal-500--heading {
  margin: 0 0 15px;
  color: #202020;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .modal-500--heading {
    margin: 0 0 28px;
    font-size: 28px;
  }
}

.modal-500--txt {
  margin: 0 0 10px;
  color: #404040;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .modal-500--txt {
    font-size: 18px;
  }
}

.modal-form500 {
  width: 100%;
  padding: 20px 0 0;
}

.modal-form500--inner {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: 0 auto;
}

.modal-form500--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 15px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background-color: #efefef;
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: #333;
  font-family: inherit;
  font-size: 18px;
  line-height: 38px;
}

@media screen and (min-width: 48em) {
  .modal-form500--select {
    margin: 0 0 20px;
  }
}

.modal-form500--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 15px;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-family: inherit;
  font-size: 18px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .modal-form500--field {
    margin: 0 0 20px;
  }
}

.modal-form500--submit {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background-color: #ff1300;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.footer {
  --f-footer-bg-color: var(--footer-bg-color, #fff);
  --f-footer-menu-color: var(--footer-menu-color, #a8a8a9);
  --f-footer-logo-color: var(--footer-logo-color, #000);
  --f-footer-line-color: var(--footer-line-color, #ebedee);
  --f-footer-icon-color: var(--footer-icon-color, #a8a8a9);
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  background-color: var(--f-footer-bg-color);
  box-shadow: var(--footer-shadow, 0 -3px #eef0f5);
}

[theme='dark'] .footer {
  --footer-shadow: 0 -3px #424242;
  --footer-bg-color: #2b2b2b;
  --footer-menu-color: #636568;
  --footer-logo-color: #fff;
  --footer-line-color: #424242;
  --footer-icon-color: #636568;
}

.footer--grid {
  display: grid;
  grid-template-areas: 'info' 'menu' 'data' 'support' 'rules';
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1306px;
  padding: 0 24px 16px;
}

@media screen and (min-width: 64em) {
  .footer--grid {
    gap: 32px 16px;
    display: grid;
    grid-template-areas: 'menu menu menu menu' 'info rules data support';
    grid-template-columns: auto minmax(auto, 320px) auto auto;
    justify-content: space-between;
    padding: 0 30px 32px;
  }
}

.footer-menu {
  grid-area: menu;
  justify-content: center;
  width: 100%;
}

.footer-menu--inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1246px;
  height: 64px;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 64em) {
  .footer-menu--inner {
    justify-content: flex-start;
    height: 77px;
  }
}

.footer-menu--section {
  display: none;
  align-items: center;
  margin: 0 auto 0 0;
}

@media screen and (min-width: 64em) {
  .footer-menu--section {
    display: flex;
  }
}

.footer-menu--item {
  display: flex;
  align-items: center;
  height: 28px;
  padding: 3px 0 0;
  border-bottom: 2px solid transparent;
  color: var(--f-footer-menu-color);
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
}

.footer-menu--item:not(:last-child) {
  margin: 0 20px 0 0;
}

.footer-menu--item.active {
  border-bottom-color: #e51e25;
}

.footer-menu--item_vip {
  color: #e51e25;
}

.footer-submenu {
  display: flex;
  align-items: center;
}

.footer-submenu--item {
  --i-color1: var(--f-footer-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .footer-submenu--item {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer-submenu--item svg {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.footer-time {
  --i-color1: var(--f-footer-icon-color);
  display: flex;
  align-items: center;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .footer-time {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer-time--first {
  margin: 0 4px 0 0;
}

.footer-time--mid {
  margin: 0 8px;
}

.footer-time--last {
  margin: 0 0 0 4px;
}

.footer-time svg {
  width: 28px;
  height: 28px;
}

.footer-info {
  display: flex;
  grid-area: info;
  flex-direction: column;
}

.footer-info--logo {
  --i-color1: var(--f-footer-logo-color);
  --i-color2: #e51e25;
  display: flex;
  justify-content: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 64em) {
  .footer-info--logo {
    justify-content: flex-start;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
  }
}

.footer-info--logo svg {
  width: 154px;
  height: 32px;
}

@media screen and (min-width: 64em) {
  .footer-info--logo svg {
    width: 192px;
    height: 40px;
  }
}

.footer-info--inner {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 40em) {
  .footer-info--inner {
    flex-direction: row;
  }
}

@media screen and (min-width: 64em) {
  .footer-info--inner {
    flex-direction: column;
    padding: 0;
    border: 0;
  }
}

.footer-info--copyright {
  margin: 0 0 12px;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 40em) {
  .footer-info--copyright {
    margin: 0 auto 0 0;
  }
}

@media screen and (min-width: 64em) {
  .footer-info--copyright {
    margin: 0 0 24px;
  }
}

.footer-info--copyright span {
  margin: 0 0 0 5px;
}

.footer-info--copyright a {
  margin: 0 0 0 3px;
  color: var(--f-footer-menu-color);
}

.footer-info--links {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 40em) {
  .footer-info--links {
    flex-direction: row;
  }
}

@media screen and (min-width: 64em) {
  .footer-info--links {
    flex-direction: column;
  }
}

.footer-info--partners {
  margin: 0 0 12px;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 40em) {
  .footer-info--partners {
    margin: 0 24px 0 0;
  }
}

@media screen and (min-width: 64em) {
  .footer-info--partners {
    margin: 0 0 12px;
  }
}

.footer-info--ads {
  margin: 0 0 12px;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 40em) {
  .footer-info--ads {
    margin: 0 24px 0 0;
  }
}

@media screen and (min-width: 64em) {
  .footer-info--ads {
    margin: 0 0 12px;
  }
}

.footer-info--vacancy {
  color: var(--f-footer-menu-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.footer-rules {
  display: flex;
  grid-area: rules;
  flex-direction: column;
}

.footer-rules--wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 0 20px;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 64em) {
  .footer-rules--wrap {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
  }
}

.footer-rules--item {
  margin: 0 0 12px;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  line-height: 16px;
}

.footer-rules--item a {
  color: var(--f-footer-menu-color);
}

.footer-rules--disc {
  color: var(--f-footer-menu-color);
  font-size: 12px;
  line-height: 20px;
}

.footer-social {
  --i-color1: var(--f-footer-icon-color);
  gap: 8px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 24px);
  align-self: center;
  width: 100%;
  max-width: 312px;
  padding: 24px 0 8px;
}

@media screen and (min-width: 64em) {
  .footer-social {
    align-self: auto;
    padding: 0;
  }
}

.footer-social--item {
  display: flex;
}

.footer-social--item svg {
  width: 24px;
  height: 24px;
}

.footer-data {
  grid-area: data;
  padding: 27px 0 20px;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 64em) {
  .footer-data {
    padding: 0;
    border: 0;
  }
}

.footer-data--list {
  margin: 0;
}

.footer-data--list li {
  display: flex;
  align-items: flex-start;
}

.footer-data--list li:not(:last-child) {
  margin: 0 0 16px;
}

.footer-data--list a {
  color: var(--f-footer-menu-color);
  font-size: 14px;
  line-height: 16px;
}

.footer-support {
  display: flex;
  grid-area: support;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--f-footer-line-color);
}

@media screen and (min-width: 64em) {
  .footer-support {
    padding: 0;
    border: 0;
  }
}

.footer-support--item {
  --i-color1: var(--f-footer-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--f-footer-menu-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.footer-support--item:not(:last-child) {
  margin: 0 0 24px;
}

.footer-support--item svg {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.post {
  --x-post-shadow-color: var(--line-0-color, #ddd);
  --x-post-bg-color: var(--post-bg-color, #fff);
  --x-post-bg-dim-color: var(--layer-4-color, #f1f1f1);
  --x-post-bg-unread-color: var(--layer-5-color, #ececec);
  --x-post-border-color: var(--line-1-color, #e0e0e0);
  --x-post-color: var(--post-color, #333);
  --x-post-link-color: var(--post-link-color, #202020);
  --x-post-blockquote-bg-color: var(--post-blockquote-bg-color, #f4f4f4);
  --x-post-blockquote-bg-unread-color: var(--post-blockquote-bg-color, #f9f9f9);
  --x-post-blockquote-border-color: var(--line-1-color, #ccc);
  --x-post-blockquote-color: var(--text-4-color, #606060);
  --x-post-blockquote-icon-filter: var(--icon-4-filter, none);
  --x-post-longquote-button-bg-color: var(--layer-3-color, #fff);
  --x-post-longquote-bg-color-alpha: var(--post-longquote-bg-color-alpha, rgba(241, 241, 241, 0));
  --x-post-control-border-color: var(--line-1-color, #efefef);
  --x-post-spoiler-bg-color: var(--layer-5-color, transparent);
  --x-post-spoiler-color: var(--text-3-color, #606060);
  --x-post-spoiler-border-color: var(--line-2-color, #ccc);
  --x-post-rlist-bg-color: var(--post-rlist-bg-color, #f9f9f9);
  --x-post-author-data-color: var(--text-6-color, #909090);
  --x-post-author-icon-filter: var(--icon-5-filter, none);
  --x-post-author-menu-hover-color: var(--text-1-color, #000);
  --x-post-author-menu-bg-color: var(--control-1-bg-color, #efefef);
  --x-post-author-menu-border-color: var(--control-1-border-color, #cbcbcb);
  --x-post-reply-link-color: var(--text-4-color, #404040);
  --x-post-nav-icon-filter: var(--icon-6-filter, none);
  --x-post-header-bg-color: var(--layer-4-color, #f5f5f5);
  --x-post-header-color: var(--text-4-color, #404040);
  --x-post-header-link-color: var(--text-3-color, #404040);
  --x-post-header-icon-filter: var(--post-header-icon-filter, none);
  --x-post-link-icon-filter: var(--icon-4-filter, none);
  --x-post-link-tooltip-bg-color: var(--layer-1-color, #616161);
  --x-post-link-tooltip-color: var(--text-4-color, #fff);
  --xl-spoiler-color-bg: var(--post-blockquote-bg-color, #fbfbfb);
  --xl-spoiler-border-color: var(--line-1-color, #eee);
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 8px;
  background-color: var(--x-post-bg-color);
  box-shadow: 0 0 0 1px var(--x-post-shadow-color);
}

@container post-list (min-width: 723px) {
  .post {
    margin: 0 0 15px;
  }
}

.post_widget {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.post--list {
  container-type: inline-size;
  container-name: post-list;
  width: 100%;
  margin: 0;
}

.post--list_site {
  max-width: 1000px;
  margin: 0 auto;
}

.post--inner {
  display: flex;
  flex-direction: column;
}

.post_search {
  padding: 0;
}

.post_dim {
  background-color: var(--x-post-bg-dim-color);
}

.post_unread {
  background-color: var(--x-post-bg-unread-color);
}

.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 16px;
  background-color: var(--layer-2a-color, #f4f4f4);
}

@container post-list (min-width: 723px) {
  .post-header {
    padding: 0 24px;
  }
}

.post-header--inner {
  display: flex;
  align-items: center;
  padding: 12px 0;
  line-height: 17px;
}

.post-header--link {
  display: flex;
  align-items: center;
  color: var(--x-post-header-link-color);
  font-size: 11px;
  text-transform: uppercase;
}

.post-header--link::after {
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  margin: 0 0 0 6px;
  background-image: url(/nimg/arrow-right-author.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
  filter: var(--x-post-header-icon-filter);
}

.post-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 10px 0 0;
  padding: 12px 0;
  line-height: 18px;
}

.post-breadcrumbs a {
  color: var(--x-post-header-color);
  font-size: 12px;
}

.post-breadcrumbs strong {
  display: flex;
}

.post-breadcrumbs--arrow {
  width: 30px;
  height: 18px;
  background-image: url(/nimg/br-arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.post-author {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 16px;
  background-color: var(--layer-2a-color, #f4f4f4);
}

@container post-list (min-width: 723px) {
  .post-author {
    padding: 16px 24px;
  }
}

.post-author--swap {
  display: flex;
  align-items: flex-start;
  align-self: end;
  justify-content: space-between;
}

.post-author--topnav {
  gap: 0 18px;
  display: none;
  align-items: center;
  margin: -2px 0;
}

@container post-list (min-width: 723px) {
  .post-author--topnav {
    display: flex;
  }
}

.post-author--nick {
  gap: 4px 12px;
  display: flex;
  align-items: center;
}

.status-swap .post-author--nick {
  gap: 12px;
  flex-wrap: wrap;
}

.post-author--badge {
  display: none;
  padding: 5px 8px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #606060);
  color: #eee;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@container post-list (min-width: 723px) {
  .post-author--badge {
    display: block;
  }
}

.post-author--badge_mobile {
  display: block;
  position: absolute;
  top: 0;
  right: 16px;
  padding: 3px 5px;
  border-radius: 0 0 2px 2px;
  font-size: 10px;
}

@container post-list (min-width: 723px) {
  .post-author--badge_mobile {
    display: none;
  }
}

.post-author--link {
  gap: 0 8px;
  display: flex;
  align-items: center;
  color: var(--text-2-color, #333);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@container post-list (min-width: 723px) {
  .post-author--link {
    font-size: 18px;
    white-space: nowrap;
  }
}

.post-author--link::before {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-6-color, #ababad);
  content: '';
}

.post-author--link.online::before {
  background-color: #86d97d;
}

.post-author--link_site {
  padding: 0;
}

.post-author--link_site::before {
  display: none;
}

.post-author--inner {
  gap: 10px 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
}

.post-author--section {
  display: flex;
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  flex-direction: column;
  align-self: center;
}

.post-author--avatar {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.post-author--avatar img {
  object-fit: scale-down;
}

.post-author--data {
  gap: 6px 8px;
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  align-items: center;
  transform: translateY(1px);
}

@container post-list (min-width: 723px) {
  .post-author--data {
    gap: 6px 16px;
    grid-column: 2;
  }
}

.post-author--title {
  display: flex;
  color: var(--text-3-color, #909090);
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.post-author--title strong {
  padding: 0 4px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #b4b4b4);
  color: var(--text-4-color, #fff);
  font-weight: 700;
}

.post-author--member {
  display: flex;
  color: #e51e25;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

[theme='dark'] .post-author--member {
  color: #bb001c;
}

.post-author--member span {
  padding: 0 4px;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
}

[theme='dark'] .post-author--member span {
  color: #fff;
}

.post-author--member a {
  padding: 0 4px;
  border-radius: 2px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}

.post-author--member .colorDefault,
.post-author--member .colorDefault a,
.post-author--member a.colorDefault {
  color: #606060;
}

[theme='dark'] .post-author--member .colorDefault,
[theme='dark']
.post-author--member .colorDefault a,
[theme='dark']
.post-author--member a.colorDefault {
  color: #9e9e9e;
}

.post-author--member .colorGrn,
.post-author--member .colorGrn a,
.post-author--member a.colorGrn {
  background-color: #649213;
}

[theme='dark'] .post-author--member .colorGrn,
[theme='dark']
.post-author--member .colorGrn a,
[theme='dark']
.post-author--member a.colorGrn {
  background-color: #3d6f0b;
}

.post-author--member .colorRed,
.post-author--member .colorRed a,
.post-author--member a.colorRed {
  background-color: #c30300;
}

.post-author--member .colorRb,
.post-author--member .colorRb a,
.post-author--member a.colorRb {
  background-color: #090;
}

.post-author--member .colorSc,
.post-author--member .colorSc a,
.post-author--member a.colorSc {
  background-color: #ff8000;
}

.post-author--member .colorLb,
.post-author--member .colorLb a,
.post-author--member a.colorLb {
  background-color: #00bfff;
}

.post-author--member .colorFf,
.post-author--member .colorFf a,
.post-author--member a.colorFf {
  background-color: #6d11bb;
}

.post-author--slogan {
  display: flex;
  color: var(--text-3-color, #909090);
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.post-author--stacking {
  margin: -1px 0 0;
  color: var(--text-5-color, #606060);
  font-size: 12px;
  line-height: 1;
}

.post-author--arbitrage {
  padding: 3px 4px;
  border-radius: 2px;
  background-color: #a72e1c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.post-author--score {
  margin: 0 0 0 4px;
  color: #909090;
  white-space: nowrap;
}

@container post-list (min-width: 723px) {
  .post-author--score:hover {
    text-decoration: underline;
  }
}

.post-author--score .positive {
  color: #529410;
}

.post-author--score .negative {
  color: #e51e25;
}

.post-author--row {
  gap: 4px 8px;
  display: flex;
  flex-wrap: wrap;
}

@container post-list (min-width: 723px) {
  .post-author--row {
    gap: 4px 16px;
  }
}

.post-author--rating {
  gap: 0 4px;
  display: flex;
  align-items: center;
  margin: -1px 0 0;
  color: var(--text-5-color, #ababad);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.post-author--rating.positive {
  --i-color1: #529410;
  color: #529410;
}

[theme='dark'] .post-author--rating.positive {
  --i-color1: #468d00;
  color: #468d00;
}

.post-author--rating.negative {
  --i-color1: #e50c2c;
  color: #e50c2c;
}

[theme='dark'] .post-author--rating.negative {
  --i-color1: #bb001c;
  color: #bb001c;
}

.post-author--messages {
  gap: 0 4px;
  display: flex;
  align-items: center;
  margin: -1px 0 0;
  color: var(--text-5-color, #606060);
  font-size: 12px;
  line-height: 1;
}

.post-author--regdata {
  gap: 0 4px;
  display: flex;
  align-items: center;
  margin: -1px 0 0;
  color: var(--text-5-color, #606060);
  font-size: 12px;
  line-height: 1;
}

.post-author--icon {
  width: 16px;
  height: 16px;
  filter: var(--x-post-author-icon-filter);
}

.post-author--icon.icon-messages {
  background-image: url(/nimg/theme-reader-icon.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.post-author--icon.icon-rating {
  background-image: url(/nimg/theme-rate-icon.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 13px;
}

.post-author--contacts {
  display: flex;
  padding: 4px 0;
}

.post-author--resize {
  display: flex;
  align-items: flex-start;
}

.status-swap .post-author--resize {
  order: 3;
  width: 100%;
}

.post-author--status {
  position: relative;
  justify-self: start;
  margin: -3px 0;
  padding: 3px 8px;
  border: solid 1px var(--line-2-color, #dbdbdb);
  border-radius: 3px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-5-color, #606060);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

@container post-list (min-width: 979px) {
  .post-author--status {
    margin: -2px 0;
  }
}

.post-author--status::before {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 8px;
  height: 7px;
  transform: rotate(0deg) translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 7'%3E%3Cpath fill='%23fff' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round' d='m1 3.5 5.318-3v6L1 3.5Z'/%3E%3Cpath fill='%23fff' d='M2.182 3.5 7.5.5v6l-5.318-3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.status-swap .post-author--status::before {
  top: -6px;
  left: 15px;
  width: 6px;
  height: 6px;
  transform: rotate(90deg);
}

[theme='dark'] .post-author--status::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 7'%3E%3Cpath fill='%232a2a2a' stroke='%23616161' stroke-linecap='round' stroke-linejoin='round' d='m1 3.5 5.318-3v6L1 3.5Z'/%3E%3Cpath fill='%232a2a2a' d='M2.182 3.5 7.5.5v6l-5.318-3Z'/%3E%3C/svg%3E");
}

.author-tops-wrap {
  display: flex;
}

.user-main .author-tops-wrap {
  margin: -10px 0 0;
}

@media screen and (min-width: 64em) {
  .user-main .author-tops-wrap {
    margin: -12px 0 0;
  }
}

.author-tops {
  gap: 0 4px;
  display: flex;
  height: 24px;
  margin: -4px 0;
}

@container post-list (min-width: 979px) {
  .author-tops {
    gap: 0 8px;
    height: 28px;
    margin: -5px 0;
  }
}

.user-main .author-tops {
  gap: 0;
  height: 20px;
  margin: 0;
}

@media screen and (min-width: 64em) {
  .user-main .author-tops {
    height: 24px;
  }
}

.author-tops--icon {
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  filter: var(--x-post-author-icon-filter);
}

@container post-list (min-width: 979px) {
  .author-tops--icon {
    width: 28px;
    height: 28px;
    background-size: 28px;
  }
}

.user-main .author-tops--icon {
  width: 20px;
  height: 20px;
  background-size: 20px;
}

@media screen and (min-width: 64em) {
  .user-main .author-tops--icon {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}

.user-main .author-tops--icon:not(:first-child) {
  margin: 0 0 0 -4px;
}

.author-tops--icon_author1 {
  border-radius: 50%;
  background-image: url(/nimg/top-author-day-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_author7 {
  border-radius: 50%;
  background-image: url(/nimg/top-author-week-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_author31 {
  border-radius: 50%;
  background-image: url(/nimg/top-author-month-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_blog1 {
  border-radius: 50%;
  background-image: url(/nimg/blog-day-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_blog7 {
  border-radius: 50%;
  background-image: url(/nimg/blog-week-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_blog31 {
  border-radius: 50%;
  background-image: url(/nimg/blog-month-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_stream {
  border-radius: 50%;
  background-image: url(/nimg/top-stream.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_bronze {
  border-radius: 50%;
  background-image: url(/nimg/top-bronze-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_silver {
  border-radius: 50%;
  background-image: url(/nimg/top-silver-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_gold {
  border-radius: 50%;
  background-image: url(/nimg/top-gold-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_new {
  border-radius: 50%;
  background-image: url(/nimg/top-newblog-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_greenline {
  border-radius: 50%;
  background-image: url(/nimg/top-greenline.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_newbie {
  border-radius: 50%;
  background-image: url(/nimg/bb-newbie-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_regs {
  border-radius: 50%;
  background-image: url(/nimg/bb-regs-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_locals {
  border-radius: 50%;
  background-image: url(/nimg/bb-locals-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_hero {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-hero-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_theory {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-theory-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_world {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-world-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_memes {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-memes-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_invest {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-invest-v4.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_motivation {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-motivation-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_offline {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-offline-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_bets {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-bets.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_joker {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-joker-red-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-tops--icon_blackjoker {
  border-radius: 50%;
  background-image: url(/nimg/bbpost-joker-black-v3.svg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
}

.author-menu {
  gap: 24px 0;
  display: none;
  z-index: 1001;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  padding: 24px;
  background-color: var(--layer-4-color, #fff);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1);
}

@container post-list (min-width: 723px) {
  .author-menu {
    gap: 16px 0;
    padding: 16px;
  }
}

[theme='dark'] .author-menu {
  box-shadow: inset 0 0 0 1px #616161;
}

.author-menu.open {
  display: flex;
}

.author-menu--item {
  gap: 0 8px;
  display: flex;
  color: var(--text-3-color, #333);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

@container post-list (min-width: 723px) {
  .author-menu--item {
    font-size: 12px;
  }
}

.author-menu--item_sep {
  position: relative;
  margin: 24px 0 0;
}

@container post-list (min-width: 723px) {
  .author-menu--item_sep {
    margin: 16px 0 0;
  }
}

.author-menu--item_sep::before {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--line-2-color, #e7e8eb);
  content: '';
}

@container post-list (min-width: 723px) {
  .author-menu--item_sep::before {
    top: -16px;
  }
}

.author-menu--item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

[theme='dark'] .author-menu--item svg {
  --i-color1: #9e9e9e;
}

.post--controls {
  --button-hover-color: var(--line-2-color, #d9d9d9);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 16px 8px;
}

@container post-list (min-width: 723px) {
  .post--controls {
    gap: 0 16px;
    padding: 0 24px 20px;
  }
}

.post-nav {
  display: flex;
  align-items: center;
  height: 22px;
  margin: 0 6px 0 0;
}

@container post-list (min-width: 723px) {
  .post-nav {
    height: 32px;
  }
}

.post-nav + .post-respond--sep_nav {
  display: block;
}

.post-nav--prev {
  width: 16px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='15' viewBox='0 0 8 15' fill='none'%3E%3Cpath d='M7.5 1L1 7.5L7.5 14' stroke='%23808080' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 7px;
}

.post-nav--next {
  width: 16px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='15' viewBox='0 0 8 15' fill='none'%3E%3Cpath d='M0.5 1L7 7.5L0.5 14' stroke='%23808080' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 7px;
}

.post-nav--number {
  color: #aaa;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

[theme='dark'] .post-nav--number {
  color: #555;
}

.post-nav--count {
  color: var(--text-6-color, #808080);
}

.post-date {
  display: none;
  align-items: center;
  line-height: 22px;
}

@container post-list (min-width: 723px) {
  .post-date {
    display: flex;
    margin: 0;
  }
}

.post-date_mobile {
  display: flex;
  margin: 0 0 0 auto;
  line-height: 32px;
}

@container post-list (min-width: 723px) {
  .post-date_mobile {
    display: none;
  }
}

.post-date--item {
  color: var(--text-6-color, #ababad);
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

.post-date--num {
  min-width: 32px;
  margin: 0 10px 0 0;
  color: var(--text-6-color, #909090);
  font-size: 13px;
}

.post-date--link {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.post-date--link svg {
  width: 15px;
  height: 16px;
}

[theme='dark'] .post-date--link svg {
  --i-color1: #9e9e9e;
}

@container post-list (min-width: 723px) {
  .post-date--link:active {
    top: 1px;
  }
}

.post-date--link span {
  display: none;
  z-index: 1;
  position: absolute;
  top: -29px;
  left: -4px;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--x-post-link-tooltip-bg-color);
  color: var(--x-post-link-tooltip-color);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.post-date--link span::after {
  position: absolute;
  bottom: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-width: 7px 6px 0 6px;
  border-style: solid;
  border-color: var(--x-post-link-tooltip-bg-color) transparent transparent transparent;
  content: '';
}

.post-reply {
  gap: 0 4px;
  display: flex;
  align-items: center;
}

@container post-list (min-width: 723px) {
  .post-reply {
    gap: 0 8px;
  }
}

.post-reply--respond {
  flex-shrink: 0;
  padding: 13px 15px;
  border: 1px solid var(--line-1-color, #e9e9e9);
  border-radius: 4px;
  color: var(--text-2-color, #333);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@container post-list (min-width: 723px) {
  .post-reply--respond {
    padding: 9px 15px;
  }
}

.post-reply--respond:hover {
  border-color: var(--button-hover-color);
}

.post_unread .post-reply--respond {
  border-color: var(--button-hover-color);
}

.post-reply--cite {
  flex-shrink: 0;
  padding: 13px 15px;
  border: 1px solid var(--line-1-color, #e9e9e9);
  border-radius: 4px;
  color: var(--text-2-color, #333);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@container post-list (min-width: 723px) {
  .post-reply--cite {
    padding: 9px 15px;
  }
}

.post-reply--cite:hover {
  border-color: var(--button-hover-color);
}

.post-reply--cite span {
  display: none;
}

@container post-list (min-width: 723px) {
  .post-reply--cite span {
    display: block;
  }
}

.post-reply--cite svg {
  display: block;
}

[theme='dark'] .post-reply--cite svg {
  --i-color1: #e0e0e0;
}

@container post-list (min-width: 723px) {
  .post-reply--cite svg {
    display: none;
  }
}

.post_unread .post-reply--cite {
  border-color: var(--button-hover-color);
}

.post-reply--edit {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 40px;
  border: 1px solid var(--line-1-color, #e9e9e9);
  border-radius: 4px;
}

@container post-list (min-width: 723px) {
  .post-reply--edit {
    width: 32px;
    height: 32px;
  }
}

.post-reply--edit:hover {
  border-color: var(--button-hover-color);
}

.post-reply--edit svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.post-reply--delete {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 40px;
  border: 1px solid var(--line-1-color, #e9e9e9);
  border-radius: 4px;
}

@container post-list (min-width: 723px) {
  .post-reply--delete {
    width: 32px;
    height: 32px;
  }
}

.post-reply--delete:hover {
  border-color: var(--button-hover-color);
}

.post-reply--delete svg {
  --i-color1: #e50c2c;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
}

.post-respond {
  gap: 0 12px;
  display: flex;
  align-items: center;
  order: 2;
  width: 100%;
  margin: 10px 0 0;
}

@container post-list (min-width: 723px) {
  .post-respond {
    order: 0;
    width: auto;
    margin: 0;
  }
}

.post-respond--sep {
  flex-shrink: 0;
  width: 1px;
  height: 16px;
  background-color: var(--line-1-color, #e9e9e9);
}

.post-respond--sep_nav {
  display: none;
}

.post-respond--report {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.post-respond--report svg {
  flex-shrink: 0;
  width: 16px;
  height: 17px;
}

[theme='dark'] .post-respond--report svg {
  --i-color1: #9e9e9e;
}

.post-respond--vote {
  display: flex;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
}

.post-reply--item {
  position: relative;
  flex-shrink: 0;
  padding: 13px 15px;
  border: 1px solid var(--line-1-color, #e9e9e9);
  border-radius: 4px;
  color: var(--text-2-color, #333);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@container post-list (min-width: 723px) {
  .post-reply--item {
    padding: 9px 15px;
  }
}

.post-reply--item:hover {
  color: #e50c2c;
}

.post-reply--item_closed {
  color: #e91826;
}

.post-reply--droplink {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.post-reply--droplink.active::after {
  z-index: 10;
  position: absolute;
  top: 29px;
  left: 9px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: solid var(--x-post-author-menu-border-color);
  border-width: 1px 0 0 1px;
  background-color: var(--x-post-author-menu-bg-color);
  content: '';
}

@container post-list (min-width: 723px) {
  .post-reply--droplink.active::after {
    top: 27px;
  }
}

.post-reply--droplink.active + .vote-dropmenu {
  display: flex;
}

.post-reply--droplink svg {
  --i-color1: #9e9e9e;
  --i-color2: #fff;
}

[theme='dark'] .post-reply--droplink svg {
  --i-color1: #2a2a2a;
  --i-color2: #9e9e9e;
}

.vote-dropmenu {
  gap: 4px 0;
  display: none;
  z-index: 9;
  position: absolute;
  top: 32px;
  left: -32px;
  flex-direction: column;
  padding: 10px 12px;
  border: 1px solid var(--x-post-author-menu-border-color);
  background-color: var(--x-post-author-menu-bg-color);
}

@container post-list (min-width: 723px) {
  .vote-dropmenu {
    top: 30px;
  }
}

.vote-dropmenu--item {
  color: var(--control-1-color, #606060);
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
}

.vote-dropmenu--item:hover {
  color: var(--x-post-author-menu-hover-color);
}

.post-vote {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}

.post-vote--rating {
  position: relative;
  min-width: 18px;
  margin: 0 8px;
  color: #909090;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
}

@container post-list (min-width: 723px) {
  .post-vote--rating {
    min-width: 28px;
    margin: 0 16px;
    font-size: 16px;
    line-height: 32px;
  }
}

.post-vote--rating.positive {
  color: #529410;
  font-weight: 700;
}

[theme='dark'] .post-vote--rating.positive {
  color: #468d00;
}

.post-vote--rating.negative {
  color: #e51e25;
  font-weight: 700;
}

[theme='dark'] .post-vote--rating.negative {
  color: #bb001c;
}

.post-vote--rating.neutral {
  color: var(--text-3-color, #212121);
  font-weight: 700;
}

.post-vote--rating.active::after {
  position: absolute;
  top: 46px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid var(--line-1-color, #e9e9e9);
  border-left: 1px solid var(--line-1-color, #e9e9e9);
  background-color: var(--layer-2a-color, #f9f9f9);
  content: '';
}

@container post-list (min-width: 723px) {
  .post-vote--rating.active::after {
    top: 42px;
  }
}

.post-vote--plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--x-post-control-border-color);
  border-radius: 4px;
  color: #808080;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@container post-list (min-width: 723px) {
  .post-vote--plus {
    width: 32px;
    height: 32px;
  }
}

.post-vote--plus:hover {
  border-color: var(--button-hover-color);
  color: #529410;
}

.post-vote--minus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--x-post-control-border-color);
  border-radius: 4px;
  color: #808080;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@container post-list (min-width: 723px) {
  .post-vote--minus {
    width: 32px;
    height: 32px;
  }
}

.post-vote--minus:hover {
  border-color: var(--button-hover-color);
  color: #e51e25;
}

.post-vote--cancel {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--x-post-control-border-color);
  border-radius: 4px;
  background-image: url(/nimg/rating-cancel.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
}

@container post-list (min-width: 723px) {
  .post-vote--cancel {
    width: 32px;
    height: 32px;
  }
}

.post-dialog {
  gap: 0 12px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  margin: 0 0 0 12px;
}

@container post-list (min-width: 723px) {
  .post-dialog {
    margin: 0;
  }
}

.post-dialog--date {
  gap: 0 12px;
  display: flex;
  align-items: center;
  line-height: 22px;
}

.post-dialog--num {
  color: var(--text-6-color, #909090);
  font-size: 12px;
}

.post-dialog--item {
  color: var(--text-6-color, #ababad);
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

.post-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
}

.post-mark svg {
  --i-color1: #ababad;
  width: 24px;
  height: 24px;
}

.visited .post-mark svg {
  --i-color1: #529410;
}

.rating-list {
  gap: 16px 0;
  display: none;
  flex-direction: column;
  width: 100%;
  margin: 12px 0 0;
  padding: 16px;
  border-top: 1px solid var(--line-1-color, #e9e9e9);
  background-color: var(--layer-2a-color, #f9f9f9);
}

@container post-list (min-width: 723px) {
  .rating-list {
    margin: 16px 0 0;
  }
}

.rating-list.show {
  display: flex;
}

.rating-list--positive {
  gap: 0 8px;
  display: flex;
}

.rating-list--negative {
  gap: 0 8px;
  display: flex;
}

.rating-list--empty {
  color: #808080;
  font-size: 13px;
  line-height: 18px;
}

.rating-list--inner {
  display: flex;
  flex-wrap: wrap;
}

.rating-list--nick {
  margin: 0 4px 0 0;
  color: var(--text-3-color, #333);
  font-size: 13px;
  line-height: 18px;
}

.rating-list--nick::after {
  content: ',';
}

.rating-list--nick:last-child::after {
  content: '';
}

.rating-list--wrap {
  display: flex;
  flex-shrink: 0;
  width: 11px;
}

.rating-list--button {
  display: block;
  width: 11px;
  height: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.rating-list--button_positive {
  color: #529410;
}

.rating-list--button_negative {
  color: #e51e25;
}

.playcard-svg {
  display: inline-block;
  width: 25px;
  height: 16px;
  margin: 0 2px;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
}

.post-content {
  flex-grow: 1;
  min-width: 0;
  padding: 16px;
  color: var(--x-post-color);
  font-size: 16px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

@container post-list (min-width: 723px) {
  .post-content {
    padding: 20px 24px;
  }
}

.post .post-content.selection-tip ::-moz-selection {
  background-color: #fef1cc;
  color: #333;
}

.post .post-content.selection-tip ::selection {
  background-color: #fef1cc;
  color: #333;
}

.post-content blockquote {
  position: relative;
  margin: 12px 0;
  padding: 16px;
  border-radius: 2px;
  background-color: var(--x-post-blockquote-bg-color);
  color: var(--x-post-blockquote-color);
}

@container post-list (min-width: 723px) {
  .post-content blockquote {
    padding: 16px 24px;
  }
}

.post_unread .post-content blockquote {
  background-color: var(--x-post-blockquote-bg-unread-color);
}

.post-content blockquote.longquote:has(.longquote-btn) {
  border: 0;
}

.post-content blockquote:has(.longquote-btn) {
  border-bottom: 1px solid var(--x-post-blockquote-border-color);
  border-radius: 2px 2px 4px 4px;
}

.post-content blockquote em {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 0 3px;
}

.post-content blockquote em a {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 0 0 auto;
  border-radius: 50%;
  background-color: var(--layer-5-color, #fff);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3E%3Cpath d='M11.8334 3.87675L10.8934 4.82342L8.83342 2.76342V6.54342C8.83342 8.93675 6.89341 10.8767 4.50008 10.8767H0.166748V9.54342H4.50008C6.16675 9.54342 7.50008 8.21008 7.50008 6.54342V2.76342L5.44008 4.81675L4.50008 3.87675L8.16675 0.210083L11.8334 3.87675Z' fill='%23ababad'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  color: transparent;
}

[theme='dark'] .post-content blockquote em a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3E%3Cpath d='M11.8334 3.87675L10.8934 4.82342L8.83342 2.76342V6.54342C8.83342 8.93675 6.89341 10.8767 4.50008 10.8767H0.166748V9.54342H4.50008C6.16675 9.54342 7.50008 8.21008 7.50008 6.54342V2.76342L5.44008 4.81675L4.50008 3.87675L8.16675 0.210083L11.8334 3.87675Z' fill='%23757575'/%3E%3C/svg%3E");
}

.post-content blockquote .title {
  color: #9e9e9e;
  font-style: italic;
}

.post-content blockquote .origin {
  color: #9e9e9e;
}

.post-content p {
  margin: 0;
  color: var(--x-post-color);
  font-size: 16px;
  line-height: 1.4;
}

.post-content a {
  color: var(--x-post-link-color);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.post-content .widget-iframe-width {
  margin: 12px 0;
}

.post-content .instagram-media {
  margin: 12px 0 !important;
}

.reply-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 4px 0 0;
  transform: translateY(2px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M1.185 16c0 8.148 6.667 14.815 14.815 14.815s14.815-6.667 14.815-14.815c0-8.148-6.667-14.815-14.815-14.815s-14.815 6.667-14.815 14.815zM5.63 14.518l7.407-7.407v4.444c7.496 1.082 10.785 6.415 11.852 11.852-2.682-3.807-6.504-5.926-11.852-5.926v4.444l-7.407-7.407z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px;
}

[theme='dark'] .reply-circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23dcdcdc' d='M1.185 16c0 8.148 6.667 14.815 14.815 14.815s14.815-6.667 14.815-14.815c0-8.148-6.667-14.815-14.815-14.815s-14.815 6.667-14.815 14.815zM5.63 14.518l7.407-7.407v4.444c7.496 1.082 10.785 6.415 11.852 11.852-2.682-3.807-6.504-5.926-11.852-5.926v4.444l-7.407-7.407z'%3E%3C/path%3E%3C/svg%3E");
}

.post-content .reply-circle {
  text-decoration: none;
}

.comment_text > :first-child > blockquote:first-child {
  margin-top: 0;
}

.em-cite {
  gap: 0 4px;
  display: flex;
  align-items: center;
  color: var(--text-4-color, #aaa);
  font-size: 12px;
  font-style: normal;
  line-height: 14px;
}

.em-cite::before {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' viewBox='0 0 18 19' fill='none'%3E%3Cpath d='M14.09 4.54346L12.27 8.4006H15V13.5435H9.8V8.14346L11.49 4.54346H14.09ZM6.29 4.54346L4.47 8.4006H7.2V13.5435H2V8.14346L3.69 4.54346H6.29Z' fill='%23909090'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  content: '';
}

.spoilerWrapper {
  margin: 12px 0;
  padding: 8px;
  background-color: var(--post-blockquote-bg-color, #f4f4f4);
}

blockquote .spoilerWrapper {
  background-color: var(--layer-3-color, #eee);
}

.post-spoiler {
  display: flex;
  align-items: center;
}

.post-spoiler--text {
  color: var(--text-2-color, #606060);
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.post-spoiler--button {
  gap: 0 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 24px;
  border-radius: 2px;
}

@container post-list (min-width: 723px) {
  .post-spoiler--button {
    gap: 0 16px;
    height: 32px;
  }
}

.post-spoiler--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #fff);
}

@container post-list (min-width: 723px) {
  .post-spoiler--icon {
    width: 32px;
    height: 32px;
  }
}

.post-spoiler--icon svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

[theme='dark'] .post-spoiler--icon svg {
  --i-color1: #bb001c;
}

.show .post-spoiler--toggle {
  display: none;
}

.post-spoiler .post-spoiler--button {
  color: var(--text-2-color, #606060);
  font-weight: 400;
  text-decoration: none;
}

.post-spoiler > strong {
  color: var(--text-2-color, #202020);
}

.spoilerContainer .filled {
  margin: 10px 0 0;
}

.spoiler-inner {
  margin: 10px 0 0;
  padding: 0 8px;
}

.resized-linked-image {
  width: auto !important;
  max-width: 700px;
  padding: 10px 0 !important;
}

.resized-linked-image a img {
  width: auto !important;
  height: auto !important;
}

.post--attach-image {
  margin: 12px 0;
}

.instagram-media {
  min-width: 260px !important;
}

.longquote {
  position: relative;
  max-height: 140px;
  overflow: hidden;
  cursor: pointer;
}

.longquote::before {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  border-bottom: 1px solid var(--x-post-blockquote-border-color);
  border-radius: 2px 2px 4px 4px;
  background-image: linear-gradient(0deg, var(--x-post-blockquote-bg-color) 0%, var(--x-post-longquote-bg-color-alpha) 100%);
  content: '';
}

.longquote::after {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 79px;
  height: 13px;
  transform: translateX(-50%);
  border: 1px solid var(--x-post-blockquote-border-color);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background-color: var(--x-post-bg-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ababad' stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: 50% 4px;
  background-repeat: no-repeat;
}

[theme='dark'] .longquote::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23616161' stroke-width='1.5'/%3E%3C/svg%3E");
}

.longquote-btn {
  display: flex;
  z-index: 2;
  position: absolute;
  bottom: -1px;
  left: 50%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 79px;
  height: 13px;
  transform: translateX(-50%);
  border: 1px solid var(--x-post-blockquote-border-color);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background-color: var(--x-post-bg-color);
  cursor: pointer;
}

.longquote-btn::after {
  z-index: 1;
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ababad' stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: 50% 1px;
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .longquote-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23616161' stroke-width='1.5'/%3E%3C/svg%3E");
}

.longquote .longquote-btn {
  bottom: 0;
}

.longquote .longquote-btn::after {
  transform: rotate(0deg);
  background-position: 50% 4px;
}

.widget-iframe-width {
  width: 100%;
  max-width: 560px !important;
}

.widget-iframe-ratio {
  position: relative !important;
  padding-bottom: 56.25% !important;
}

.widget-iframe-ratio iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.iframe-width {
  width: 100%;
  max-width: 560px;
  margin: 10px 0 0;
}

.iframe-ratio {
  position: relative;
  padding-bottom: 56.25%;
}

.iframe-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post .card {
  display: inline-block;
  width: 25px;
  height: 16px;
  margin: 0 4px 2px 0;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.post .card_color {
  background-image: url(/nimg/cards-16-color-fixed.svg);
}

.post .c_D {
  background-position: 0 0;
}

.post .c_2D {
  background-position: -36px 0;
}

.post .c_3D {
  background-position: -72px 0;
}

.post .c_4D {
  background-position: 0 -18px;
}

.post .c_5D {
  background-position: -36px -18px;
}

.post .c_6D {
  background-position: -72px -18px;
}

.post .c_7D {
  background-position: 0 -36px;
}

.post .c_8D {
  background-position: -36px -36px;
}

.post .c_9D {
  background-position: -72px -36px;
}

.post .c_10D {
  background-position: 0 -54px;
}

.post .c_TD {
  background-position: 0 -54px;
}

.post .c_JD {
  background-position: -36px -54px;
}

.post .c_QD {
  background-position: -72px -54px;
}

.post .c_KD {
  background-position: 0 -72px;
}

.post .c_AD {
  background-position: -36px -72px;
}

.post .c_S {
  background-position: -72px -72px;
}

.post .c_2S {
  background-position: 0 -90px;
}

.post .c_3S {
  background-position: -36px -90px;
}

.post .c_4S {
  background-position: -72px -90px;
}

.post .c_5S {
  background-position: 0 -108px;
}

.post .c_6S {
  background-position: -36px -108px;
}

.post .c_7S {
  background-position: -72px -108px;
}

.post .c_8S {
  background-position: 0 -126px;
}

.post .c_9S {
  background-position: -36px -126px;
}

.post .c_10S {
  background-position: -72px -126px;
}

.post .c_TS {
  background-position: -72px -126px;
}

.post .c_JS {
  background-position: 0 -144px;
}

.post .c_QS {
  background-position: -36px -144px;
}

.post .c_KS {
  background-position: -72px -144px;
}

.post .c_AS {
  background-position: 0 -162px;
}

.post .c_H {
  background-position: -36px -162px;
}

.post .c_2H {
  background-position: -72px -162px;
}

.post .c_3H {
  background-position: 0 -180px;
}

.post .c_4H {
  background-position: -36px -180px;
}

.post .c_5H {
  background-position: -72px -180px;
}

.post .c_6H {
  background-position: 0 -198px;
}

.post .c_7H {
  background-position: -36px -198px;
}

.post .c_8H {
  background-position: -72px -198px;
}

.post .c_9H {
  background-position: 0 -216px;
}

.post .c_10H {
  background-position: -36px -216px;
}

.post .c_TH {
  background-position: -36px -216px;
}

.post .c_JH {
  background-position: -72px -216px;
}

.post .c_QH {
  background-position: 0 -234px;
}

.post .c_KH {
  background-position: -36px -234px;
}

.post .c_AH {
  background-position: -72px -234px;
}

.post .c_C {
  background-position: 0 -252px;
}

.post .c_2C {
  background-position: -36px -252px;
}

.post .c_3C {
  background-position: -72px -252px;
}

.post .c_4C {
  background-position: 0 -270px;
}

.post .c_5C {
  background-position: -36px -270px;
}

.post .c_6C {
  background-position: -72px -270px;
}

.post .c_7C {
  background-position: 0 -288px;
}

.post .c_8C {
  background-position: -36px -288px;
}

.post .c_9C {
  background-position: -72px -288px;
}

.post .c_10C {
  background-position: 0 -306px;
}

.post .c_TC {
  background-position: 0 -306px;
}

.post .c_JC {
  background-position: -36px -306px;
}

.post .c_QC {
  background-position: -72px -306px;
}

.post .c_KC {
  background-position: 0 -324px;
}

.post .c_AC {
  background-position: -36px -324px;
}

.post .c_X {
  background-position: -72px -324px;
}

.post .c_2X {
  background-position: 0 -342px;
}

.post .c_3X {
  background-position: -36px -342px;
}

.post .c_4X {
  background-position: -72px -342px;
}

.post .c_5X {
  background-position: 0 -360px;
}

.post .c_6X {
  background-position: -36px -360px;
}

.post .c_7X {
  background-position: -72px -360px;
}

.post .c_8X {
  background-position: 0 -378px;
}

.post .c_9X {
  background-position: -36px -378px;
}

.post .c_10X {
  background-position: -72px -378px;
}

.post .c_TX {
  background-position: -72px -378px;
}

.post .c_JX {
  background-position: 0 -396px;
}

.post .c_QX {
  background-position: -36px -396px;
}

.post .c_KX {
  background-position: -72px -396px;
}

.post .c_AX {
  background-position: 0 -414px;
}

.ck.ck-reset.ck-editor.ck-rounded-corners {
  --editor-shadow-color: var(--line-1-color, #ddd);
  box-shadow: 0 0 0 1px var(--editor-shadow-color);
}

.editor {
  --x-editor-bg-color: var(--layer-3-color, #fff);
  --x-editor-border-color: var(--line-2-color, #ccc);
  --x-editor-menu-color: var(--layer-4-color, #fff);
  --x-editor-submenu-bg-color: var(--layer-3-color, #f8f8f8);
  --x-editor-button-filter: var(--icon-6-filter, none);
  --x-editor-color: var(--editor-color, #333);
  --x-editor-button-border-color: var(--line-2-color, #e5e5e5);
  --x-editor-button-primary-bg-color: var(--editor-button-primary-bg-color, #000);
  --x-editor-button-secondary-color: var(--control-1-color, #404040);
  --x-editor-button-secondary-border-color: var(--line-2-color, #ccc);
  --x-editor-preview-border-color: var(--line-1-color, #e0e0e0);
  --x-editor-preview-bg-color: var(--post-bg-color, #fff);
  --x-editor-field-border-color: var(--control-1-border-color, #cfcfcf);
  --x-editor-field-bg-color: var(--layer-1-color, #fff);
  --x-editor-field-color: var(--control-1-color, #333);
  --x-editor-button-file-color: var(--text-6-color, #404040);
  --x-editor-upload-color: var(--text-3-color, #202020);
  --x-editor-upload-bg-color: var(--layer-2-color, #f5f5f5);
  --x-editor-upload-border-color: var(--line-1-color, #e6e6e6);
  --x-editor-button-insert-bg-color: var(--control-1-bg-color, #fff);
  --x-editor-button-insert-color: var(--control-1-color, #202020);
  --x-editor-button-insert-border-color: var(--control-1-border-color, #ccc);
  --editor-alert-bg-color: var(--layer-4-color, #fff);
  --editor-alert-border-color: var(--line-2-color, #ccc);
  --editor-alert-color: var(--text-4-color, #424242);
  --editor-alert-link-color: var(--text-2-color, #212121);
  --editor-alert-button-color: var(--text-5-color, #1a1d34);
}

.editor_theme {
  padding: 30px 15px 0;
}

@media screen and (min-width: 48em) {
  .editor_theme {
    padding: 30px 0 0;
  }
}

.editor_site {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.editor--menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 43px;
  padding: 6px 0 6px 5px;
  border-bottom: 1px solid var(--x-editor-border-color);
  border-radius: 3px 3px 0 0;
  background-color: var(--x-editor-menu-color);
}

.editor--submenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 43px;
  background-color: var(--x-editor-menu-color);
}

.editor textarea {
  width: 100%;
  height: 148px;
  min-height: 186px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 0;
  background-color: var(--x-editor-bg-color);
  box-shadow: none;
  color: var(--x-editor-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 23px;
  vertical-align: bottom;
  overflow-wrap: break-word;
  resize: none;
}

.editor textarea:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}

.editor_large textarea {
  height: 250px;
  min-height: 250px;
}

.editor_reportage {
  width: 100%;
}

.editor_reportage textarea {
  overflow: auto;
  border-bottom: 1px solid #efefef;
}

.editor--inner {
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 3px;
}

.editor--main {
  width: 100%;
}

.editor--button {
  width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.editor--menu .editor--button {
  filter: var(--x-editor-button-filter);
}

.editor--button_bold {
  background-image: url(/nimg/i-bold.svg);
}

.editor--button_italic {
  background-image: url(/nimg/i-italic.svg);
}

.editor--button_strike {
  background-image: url(/nimg/i-strike.svg);
}

.editor--button_big {
  position: relative;
  background-image: url(/nimg/i-big.svg);
}

.editor--button_big.active::after {
  z-index: 10;
  position: absolute;
  bottom: -17px;
  left: 18px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translateX(-50%) translateX(-6px);
  border: solid #ccc;
  border-width: 1px 0 0 1px;
  background-color: #fff;
  content: '';
}

.editor--button_color {
  position: relative;
  background-image: url(/nimg/i-color.svg);
}

.editor--button_color::before {
  position: absolute;
  bottom: 3px;
  left: 7px;
  width: 16px;
  height: 3px;
  background-color: #fe0707;
  content: '';
}

.editor--button_color.active::after {
  z-index: 10;
  position: absolute;
  bottom: -17px;
  left: 18px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translateX(-50%) translateX(-6px);
  border: solid #ccc;
  border-width: 1px 0 0 1px;
  background-color: #fff;
  content: '';
}

.editor--button_link {
  background-image: url(/nimg/i-link.svg);
}

.editor--button_spoiler {
  background-image: url(/nimg/i-spoiler.svg);
}

.editor--button_blockquote {
  background-image: url(/nimg/i-blockquote.svg);
}

.editor--button_image {
  background-image: url(/nimg/i-image.svg);
}

.editor--button_video {
  background-image: url(/nimg/i-video.svg);
}

.editor--button_audio {
  background-image: url(/nimg/i-audio.svg);
}

.editor--button_smile {
  position: relative;
  background-image: url(/nimg/i-smile.svg);
}

.editor--button_smile::after {
  position: absolute;
  top: 7px;
  right: -3px;
  width: 1px;
  height: 16px;
  background-color: var(--x-editor-button-border-color);
  content: '';
}

.editor--button_card {
  background-image: url(/nimg/i-card.svg);
}

.editor--button_heading {
  background-image: url(/nimg/i-heading.svg);
  background-size: 18px;
}

.editor--button_center {
  background-image: url(/nimg/i-center.svg);
  background-size: 16px;
}

.editor--button_html {
  margin: 0;
  background-image: url(/nimg/i-html.svg);
  background-size: 22px;
}

.editor--dropdown {
  display: none;
  z-index: 3;
  position: absolute;
  top: 36px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 6px 10px 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  white-space: nowrap;
}

.editor--dropdown.show {
  display: flex;
}

.editor--dropdown_text_size {
  right: -30px;
}

.editor--dropdown_text_size a {
  margin: 0 0 4px;
  color: #606060;
  font-size: 16px;
  line-height: 20px;
}

.editor--dropdown_text_size a:nth-child(2) {
  font-size: 18px;
}

.editor--dropdown_text_size a:hover {
  color: #202020;
}

.editor--dropdown_text_color {
  right: -72px;
  width: 174px;
  min-height: 117px;
  padding: 5px 2px;
}

.editor-colors {
  display: flex;
  flex-wrap: wrap;
}

.editor-colors--cell {
  width: 15px;
  height: 15px;
  margin: 3px;
  border: 1px solid #e6e6e6;
}

.editor--smiles {
  display: none;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 10px;
  background-color: var(--x-editor-submenu-bg-color);
}

.editor--smiles.show {
  display: flex;
}

.editor--smiles a {
  margin: 0 5px 2px 0;
}

.postedit--title {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 20px;
}

.postedit--label {
  color: #909090;
  font-size: 15px;
  line-height: 22px;
}

.postedit--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 610px;
  padding: 5px 10px;
  border: 1px solid var(--x-editor-field-border-color);
  border-radius: 2px;
  background-color: var(--x-editor-field-bg-color);
  color: var(--x-editor-field-color);
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
}

.editor--footer {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0 20px;
}

@media screen and (min-width: 48em) {
  .editor--footer {
    padding: 24px 0 20px;
  }
}

.editor--footer .editor--button-cancel,
.editor--footer .editor--button-preview {
  text-decoration: none;
}

.editor--button-send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  gap: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  width: 100%;
  margin: 0 0 15px;
  padding: 12px 18px;
  border: 0;
  border-radius: 2px;
  background-color: #e50c2c;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .editor--button-send {
    order: 1;
    width: auto;
    margin: 0 10px 0 0;
  }
}

.editor--button-send:focus {
  outline: 0;
}

.editor--button-send svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.editor-reportage--send {
  height: 32px;
  margin: 0 10px 0 0;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.editor-reportage--send:active {
  line-height: 32px;
}

.editor-reportage--send:focus {
  outline: 0;
}

.editor-reportage--cancel {
  height: 32px;
  padding: 0 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #404040;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.editor--footer .editor-reportage--cancel {
  text-decoration: none;
}

.editor--button-save {
  order: 3;
  width: 100%;
  height: 32px;
  margin: 0 0 15px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: var(--x-editor-button-primary-bg-color);
  color: #fff;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .editor--button-save {
    order: 1;
    width: auto;
    margin: 0 10px 0 0;
  }
}

.editor--button-save:active {
  line-height: 32px;
}

.editor--button-save:focus {
  outline: 0;
}

.editor--button-save_light {
  background-color: #808080;
}

.editor--button-cancel {
  position: relative;
  order: 4;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid var(--x-editor-button-secondary-border-color);
  border-radius: 2px;
  color: var(--x-editor-button-secondary-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .editor--button-cancel {
    order: 2;
    width: auto;
  }
}

.editor--button-preview {
  position: relative;
  order: 4;
  width: 100%;
  height: 32px;
  padding: 0 20px;
  border: 1px solid var(--x-editor-button-secondary-border-color);
  border-radius: 3px;
  background-color: transparent;
  color: var(--x-editor-button-secondary-color);
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .editor--button-preview {
    order: 2;
    width: auto;
  }
}

.editor--button-preview.active::after {
  z-index: 10;
  position: absolute;
  top: 55px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: rotate(45deg) translateX(-50%) translateX(-8px);
  border: solid var(--x-editor-preview-border-color);
  border-width: 1px 0 0 1px;
  background-color: var(--x-editor-preview-bg-color);
  content: '';
}

.editor--button-preview_quick_edit {
  margin: 10px 0 0;
}

@media screen and (min-width: 48em) {
  .editor--button-preview_quick_edit {
    margin: 0 0 0 10px;
  }
}

.editor--preview {
  display: none;
}

.editor--preview.show {
  display: block;
}

.editor--wrap-buttons {
  display: flex;
  order: 1;
  margin: 0 0 10px;
}

@media screen and (min-width: 48em) {
  .editor--wrap-buttons {
    order: 3;
    margin: 0 0 0 auto;
  }
}

.editor--button-poll {
  height: 32px;
  margin: 0 10px 0 0;
  padding: 0 0 0 20px;
  background-image: url(/nimg/icon-poll.svg);
  background-position: 0 10px;
  background-repeat: no-repeat;
  background-size: 14px;
  color: #909090;
  font-size: 15px;
  line-height: 32px;
  white-space: nowrap;
}

.uploads-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.uploads-list--item {
  display: flex;
  width: 100%;
  max-width: 610px;
  margin: 0 0 5px;
  padding: 10px 10px 10px 5px;
  border: 1px solid var(--x-editor-upload-border-color);
  border-radius: 3px;
  background-color: var(--x-editor-upload-bg-color);
}

.uploads-list--item:last-child {
  margin: 0 0 25px;
}

.uploads-list--file {
  margin: 0 5px 0 0;
  padding: 4px 0 0;
  color: var(--x-editor-upload-color);
  font-size: 14px;
  line-height: 17px;
  word-break: break-all;
}

.uploads-list--remove {
  flex-shrink: 0;
  width: 20px;
  height: 25px;
  margin: 0 5px 0 0;
  background-color: transparent;
  background-image: url(/nimg/icon-poll-delete.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  line-height: 25px;
  cursor: pointer;
}

.uploads-list--insert {
  height: 25px;
  margin: 0 0 0 auto;
  padding: 0 5px;
  border: 1px solid var(--x-editor-button-insert-border-color);
  border-radius: 3px;
  background-color: var(--x-editor-button-insert-bg-color);
  color: var(--x-editor-button-insert-color);
  font-size: 11px;
  line-height: 23px;
  text-transform: uppercase;
  white-space: nowrap;
}

[theme='dark'] .uploads-list .qtip-light {
  background-color: var(--layer-2-color, #212121);
}

.editor--button-file {
  height: 32px;
  padding: 0 0 0 20px;
  background-image: url(/nimg/icon-attach.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  color: var(--x-editor-button-file-color);
  font-size: 15px;
  line-height: 32px;
  white-space: nowrap;
}

.editor--cards {
  display: none;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 12px 0 0 10px;
  background-color: var(--x-editor-submenu-bg-color);
}

.editor--cards.show {
  display: flex;
}

.editor--cards ul {
  display: flex;
  flex-wrap: wrap;
  width: 220px;
  margin: 0 0 7px;
}

.editor--cards .card {
  display: block;
  width: 25px;
  height: 16px;
  margin: 0 4px 2px 0;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.editor--cards .card_color {
  background-image: url(/nimg/cards-16-color-fixed.svg);
}

.modal-poll {
  --x-poll-bg-color: var(--layer-3-color, #fff);
  --x-poll-field-bg-color: var(--layer-2-color, #fff);
  --x-poll-field-color: var(--control-1-color, #212121);
  --x-poll-field-border-color: var(--control-1-border-color, #ccc);
  --x-poll-button-bg-color: var(--control-1-bg-color, #fff);
  --x-poll-button-color: var(--control-1-color, #606060);
  --x-poll-button-border-color: var(--control-1-border-color, #ccc);
  --x-poll-main-bg-color: var(--layer-1-color, #fefefe);
  --x-poll-head-color: var(--text-4-color, #909090);
  --x-poll-label-color: var(--text-5-color, #606060);
  --x-poll-border-color: var(--line-1-color, #ccc);
  display: flex;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  max-height: 100%;
  transform: translate(-50%, -50%);
  background-color: var(--x-poll-bg-color);
}

.modal-poll.hidden {
  display: none;
}

.modal-poll--close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 10;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}

.modal-poll--close:hover::after,
.modal-poll--close:hover::before {
  background-color: #e50e2c;
}

.modal-poll--close::after,
.modal-poll--close::before {
  position: absolute;
  top: 2px;
  left: 9px;
  width: 1px;
  height: 16px;
  background-color: #9e9e9e;
  content: '';
}

.modal-poll--close::before {
  transform: rotate(45deg);
}

.modal-poll--close::after {
  transform: rotate(-45deg);
}

.modal-poll--overlay {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}

.modal-poll--overlay.hidden {
  display: none;
}

.modal-poll--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-poll--header {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 22px 25px 18px;
  background-color: var(--x-poll-bg-color);
}

.modal-poll--heading {
  color: var(--x-poll-head-color);
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}

.modal-poll--theme {
  display: flex;
  flex-direction: column;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--x-poll-border-color);
}

.modal-poll--item {
  display: flex;
  margin: 0 0 10px;
}

.modal-poll--scroll {
  width: 100%;
  height: 228px;
  padding: 16px 25px;
  overflow-y: auto;
  background-color: var(--x-poll-main-bg-color);
}

.modal-poll--list {
  display: flex;
  align-items: flex-start;
}

.modal-poll--add {
  color: #2d9cdb;
  font-size: 14px;
  line-height: 24px;
}

.modal-poll--label {
  display: flex;
  position: relative;
  color: var(--x-poll-label-color);
  font-size: 12px;
  line-height: 14px;
}

.modal-poll--input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 8px;
  padding: 5px 8px;
  border: 1px solid var(--x-poll-field-border-color);
  border-radius: 2px;
  background-color: var(--x-poll-field-bg-color);
  color: var(--x-poll-field-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
}

.modal-poll--input::-moz-placeholder {
  color: #bdbdbd;
}

.modal-poll--input::placeholder {
  color: #bdbdbd;
}

.modal-poll--answer {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 5px 0 0;
  padding: 5px 8px;
  border: 1px solid var(--x-poll-field-border-color);
  border-radius: 2px;
  background-color: var(--x-poll-field-bg-color);
  color: var(--x-poll-field-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
}

.modal-poll--delete {
  width: 20px;
  height: 28px;
  border: 0;
  background-color: transparent;
  background-image: url(/nimg/icon-poll-delete.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  line-height: 26px;
  cursor: pointer;
}

.modal-poll--bottom {
  display: flex;
  width: 100%;
  padding: 8px 25px 24px;
}

.modal-poll--submit {
  height: 28px;
  margin: 0 10px 0 0;
  padding: 0 10px;
  border: 1px solid var(--x-poll-button-border-color);
  border-radius: 2px;
  background-color: var(--x-poll-button-bg-color);
  color: var(--x-poll-button-color);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  cursor: pointer;
}

.editor-alert {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto 8px;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--editor-alert-border-color);
  border-left: 4px solid #e51e25;
  background-color: var(--editor-alert-bg-color);
}

.editor-alert--message {
  color: var(--editor-alert-color);
  font-size: 14px;
  line-height: 18px;
}

.editor-alert--message a {
  color: var(--editor-alert-link-color);
  font-size: 14px;
  text-decoration: underline;
}

.editor-alert--message a::after {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin: 0 0 0 8px;
  transform: translateY(1px);
  background-image: url(/nimg/note-link.svg);
  background-repeat: no-repeat;
  content: '';
}

.editor-alert--remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  position: absolute;
  top: 8px;
  right: 8px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.editor-alert--remove:hover::after,
.editor-alert--remove:hover::before {
  background-color: #e51e25;
}

.editor-alert--remove::after,
.editor-alert--remove::before {
  position: absolute;
  top: 2px;
  left: 9px;
  width: 1px;
  height: 13px;
  background-color: var(--editor-alert-button-color);
  content: '';
}

.editor-alert--remove::before {
  transform: rotate(45deg);
}

.editor-alert--remove::after {
  transform: rotate(-45deg);
}

.editor-review {
  --rvw-color: var(--text-4-color, #606060);
  --rvw-bg-color: var(--layer-1-color, #fafafa);
  --rvw-tick-color: var(--text-4-color, #606060);
  --rvw-line-color: var(--line-2-color, #bdbdbd);
  --rvw-border-color: var(--line-2-color, #808080);
  gap: 30px 0;
  display: flex;
  flex-wrap: wrap;
  order: 2;
  width: 100%;
  margin: 0 0 28px;
}

@media screen and (min-width: 30em) {
  .editor-review {
    gap: 12px;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 48em) {
  .editor-review {
    width: initial;
    margin: 0;
    padding: 0 0 0 10px;
  }
}

.editor-review--wrap {
  display: flex;
  align-items: center;
}

.editor-review--label {
  display: flex;
  align-items: center;
  color: var(--rvw-color);
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
}

.editor-review--input {
  position: absolute;
  opacity: 0;
}

.editor-review--input:checked + .editor-review--square::after {
  display: block;
}

.editor-review--square {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid var(--rvw-line-color);
  background-color: var(--rvw-bg-color);
}

.editor-review--square::after {
  display: none;
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border: solid var(--rvw-tick-color);
  border-width: 0 2px 2px 0;
  content: '';
}

.editor-review--inner {
  gap: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 30em) {
  .editor-review--inner {
    gap: 0 8px;
    width: initial;
  }
}

.editor-review--rate {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.editor-review--radio {
  position: absolute;
  opacity: 0;
}

.editor-review--radio:checked + .editor-review--icon_positive {
  --i-color2: #338252;
  border-color: #728379;
  background-color: #e9f0ec;
}

[theme='dark'] .editor-review--radio:checked + .editor-review--icon_positive {
  --i-color2: #51c77f;
  border-color: #5b7767;
  background-color: #32453a;
}

.editor-review--radio:checked + .editor-review--icon_negative {
  --i-color2: #e34147;
  border-color: #a78587;
  background-color: #f8e4e5;
}

[theme='dark'] .editor-review--radio:checked + .editor-review--icon_negative {
  --i-color2: #e6484e;
  border-color: #9b6365;
  background-color: #563738;
}

.editor-review--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 46px;
  border: 1px solid var(--rvw-border-color);
  border-radius: 84px;
  background-color: var(--rvw-bg-color);
}

@media screen and (min-width: 30em) {
  .editor-review--icon {
    width: 44px;
    height: 32px;
    border-radius: 57px;
  }
}

[theme='dark'] .editor-review--icon {
  --i-color1: transparent;
}

.editor-review--icon svg {
  width: 24px;
  height: 22px;
}

@media screen and (min-width: 30em) {
  .editor-review--icon svg {
    width: 18px;
    height: 16px;
  }
}

.ck.ck-sticky-panel {
  box-shadow: none;
}

.ck.ck-editor__top .ck-sticky-panel__content > .ck-toolbar {
  padding: 0;
  border: 0;
}

.ck.ck-editor__top .ck-sticky-panel__content > .ck-toolbar .ck-toolbar__items {
  gap: 12px 18px;
  padding: 13px;
  background-color: var(--layer-4-color, #f4f4f4);
}

@media screen and (min-width: 48em) {
  .ck.ck-editor__top .ck-sticky-panel__content > .ck-toolbar .ck-toolbar__items {
    gap: 0 12px;
  }
}

.ck.ck-toolbar .ck.ck-toolbar__items .toolbar-group {
  gap: 0 18px;
  display: flex;
  margin: 0;
}

@media screen and (min-width: 48em) {
  .ck.ck-toolbar .ck.ck-toolbar__items .toolbar-group {
    gap: 0 12px;
  }
}

.ck.ck-toolbar .ck.ck-toolbar__items .toolbar-group_4 {
  margin: 0 0 0 auto;
}

@media screen and (min-width: 48em) {
  .ck.ck-toolbar .ck.ck-toolbar__items .toolbar-group_4 {
    margin: 0;
  }
}

.ck.ck-toolbar .ck.ck-toolbar__items .editor-toolbar-sep {
  display: none;
  width: 1px;
  height: 18px;
  margin: 0;
  background-color: var(--line-2-color, #ccc);
}

@media screen and (min-width: 48em) {
  .ck.ck-toolbar .ck.ck-toolbar__items .editor-toolbar-sep {
    display: block;
  }
}

.ck.ck-toolbar .ck.ck-toolbar__items :nth-last-child(2 of .editor-toolbar-sep) {
  display: block;
  width: 100%;
  height: 1px;
}

@media screen and (min-width: 48em) {
  .ck.ck-toolbar .ck.ck-toolbar__items :nth-last-child(2 of .editor-toolbar-sep) {
    width: 1px;
    height: 18px;
  }
}

.toolbar-group .ck.ck-button {
  flex-shrink: 0;
  width: 24px;
  min-width: initial;
  height: 24px;
  min-height: initial;
  padding: 0;
  border: 0;
}

.toolbar-group .ck.ck-button:not(.ck-disabled):active {
  --i-color1: #e51e25;
  border: 0;
  box-shadow: none;
}

.toolbar-group .ck.ck-button:not(.ck-disabled):focus {
  border: 0;
  box-shadow: none;
}

.toolbar-group .ck.ck-button.ck-on,
.toolbar-group a.ck.ck-button.ck-on {
  --i-color1: #e51e25;
}

[theme='dark'] .toolbar-group .ck.ck-button.ck-on,
[theme='dark'] .toolbar-group a.ck.ck-button.ck-on {
  --i-color1: #e51e25;
}

.toolbar-group .ck.ck-dropdown .ck-button.ck-dropdown__button {
  width: 24px;
}

.ck.ck-icon.ck-button__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

[theme='dark'] .ck.ck-icon.ck-button__icon {
  --i-color1: #ccc;
}

.ck-on .ck.ck-icon.ck-button__icon {
  --i-color1: #e51e25;
}

.ck-button .ck.ck-tooltip {
  left: initial;
}

.ck-button .ck.ck-tooltip .ck-tooltip__text {
  left: initial;
}

[dir='ltr'] .ck-reset_all .ck.ck-dropdown .ck-button.ck-dropdown__button:not(.ck-button_with-text) {
  padding-left: 0;
}

.ck.ck-dropdown.ck-color-ui-dropdown {
  display: flex;
  width: 24px;
  height: 24px;
}

.ck.ck-reset_all .ck-file-dialog-button {
  display: flex;
  width: 24px;
  height: 24px;
}

.ck.ck-reset_all .ck.ck-dropdown {
  width: 24px;
  height: 24px;
}

.ck.ck-dropdown.ck-toolbar-dropdown {
  display: flex;
  width: 24px;
  height: 24px;
}

.article .quiz--wrap .card {
  display: inline-block;
  width: 29px;
  height: 18px;
  background-image: url(/nimg/cards-18-fixed.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.quiz--wrap .c_D {
  background-position: 0 0;
}

.quiz--wrap .c_2D {
  background-position: 0 -28px;
}

.quiz--wrap .c_3D {
  background-position: 0 -56px;
}

.quiz--wrap .c_4D {
  background-position: 0 -84px;
}

.quiz--wrap .c_5D {
  background-position: 0 -112px;
}

.quiz--wrap .c_6D {
  background-position: 0 -140px;
}

.quiz--wrap .c_7D {
  background-position: 0 -168px;
}

.quiz--wrap .c_8D {
  background-position: 0 -196px;
}

.quiz--wrap .c_9D {
  background-position: 0 -224px;
}

.quiz--wrap .c_10D {
  background-position: 0 -252px;
}

.quiz--wrap .c_TD {
  background-position: 0 -252px;
}

.quiz--wrap .c_JD {
  background-position: 0 -280px;
}

.quiz--wrap .c_QD {
  background-position: 0 -308px;
}

.quiz--wrap .c_KD {
  background-position: 0 -336px;
}

.quiz--wrap .c_AD {
  background-position: 0 -364px;
}

.quiz--wrap .c_S {
  background-position: 0 -392px;
}

.quiz--wrap .c_2S {
  background-position: 0 -420px;
}

.quiz--wrap .c_3S {
  background-position: 0 -448px;
}

.quiz--wrap .c_4S {
  background-position: 0 -476px;
}

.quiz--wrap .c_5S {
  background-position: 0 -504px;
}

.quiz--wrap .c_6S {
  background-position: 0 -532px;
}

.quiz--wrap .c_7S {
  background-position: 0 -560px;
}

.quiz--wrap .c_8S {
  background-position: 0 -588px;
}

.quiz--wrap .c_9S {
  background-position: 0 -616px;
}

.quiz--wrap .c_10S {
  background-position: 0 -644px;
}

.quiz--wrap .c_TS {
  background-position: 0 -644px;
}

.quiz--wrap .c_JS {
  background-position: 0 -672px;
}

.quiz--wrap .c_QS {
  background-position: 0 -700px;
}

.quiz--wrap .c_KS {
  background-position: 0 -728px;
}

.quiz--wrap .c_AS {
  background-position: 0 -756px;
}

.quiz--wrap .c_H {
  background-position: 0 -784px;
}

.quiz--wrap .c_2H {
  background-position: 0 -812px;
}

.quiz--wrap .c_3H {
  background-position: 0 -840px;
}

.quiz--wrap .c_4H {
  background-position: 0 -868px;
}

.quiz--wrap .c_5H {
  background-position: 0 -896px;
}

.quiz--wrap .c_6H {
  background-position: 0 -924px;
}

.quiz--wrap .c_7H {
  background-position: 0 -952px;
}

.quiz--wrap .c_8H {
  background-position: 0 -980px;
}

.quiz--wrap .c_9H {
  background-position: 0 -1008px;
}

.quiz--wrap .c_10H {
  background-position: 0 -1036px;
}

.quiz--wrap .c_TH {
  background-position: 0 -1036px;
}

.quiz--wrap .c_JH {
  background-position: 0 -1064px;
}

.quiz--wrap .c_QH {
  background-position: 0 -1092px;
}

.quiz--wrap .c_KH {
  background-position: 0 -1120px;
}

.quiz--wrap .c_AH {
  background-position: 0 -1148px;
}

.quiz--wrap .c_C {
  background-position: 0 -1176px;
}

.quiz--wrap .c_2C {
  background-position: 0 -1204px;
}

.quiz--wrap .c_3C {
  background-position: 0 -1232px;
}

.quiz--wrap .c_4C {
  background-position: 0 -1260px;
}

.quiz--wrap .c_5C {
  background-position: 0 -1288px;
}

.quiz--wrap .c_6C {
  background-position: 0 -1316px;
}

.quiz--wrap .c_7C {
  background-position: 0 -1344px;
}

.quiz--wrap .c_8C {
  background-position: 0 -1372px;
}

.quiz--wrap .c_9C {
  background-position: 0 -1400px;
}

.quiz--wrap .c_10C {
  background-position: 0 -1428px;
}

.quiz--wrap .c_TC {
  background-position: 0 -1428px;
}

.quiz--wrap .c_JC {
  background-position: 0 -1456px;
}

.quiz--wrap .c_QC {
  background-position: 0 -1484px;
}

.quiz--wrap .c_KC {
  background-position: 0 -1512px;
}

.quiz--wrap .c_AC {
  background-position: 0 -1540px;
}

.quiz--wrap .c_X {
  background-position: 0 -1568px;
}

.quiz--wrap .c_2X {
  background-position: 0 -1596px;
}

.quiz--wrap .c_3X {
  background-position: 0 -1624px;
}

.quiz--wrap .c_4X {
  background-position: 0 -1652px;
}

.quiz--wrap .c_5X {
  background-position: 0 -1680px;
}

.quiz--wrap .c_6X {
  background-position: 0 -1708px;
}

.quiz--wrap .c_7X {
  background-position: 0 -1736px;
}

.quiz--wrap .c_8X {
  background-position: 0 -1764px;
}

.quiz--wrap .c_9X {
  background-position: 0 -1792px;
}

.quiz--wrap .c_10X {
  background-position: 0 -1820px;
}

.quiz--wrap .c_TX {
  background-position: 0 -1820px;
}

.quiz--wrap .c_JX {
  background-position: 0 -1848px;
}

.quiz--wrap .c_QX {
  background-position: 0 -1876px;
}

.quiz--wrap .c_KX {
  background-position: 0 -1904px;
}

.quiz--wrap .c_AX {
  background-position: 0 -1932px;
}

.custom-promo {
  --custom-promo-bg-color: var(--layer-4-color, #fff);
  --custom-promo-avatar-border-color: var(--line-2-color, #fff);
  --custom-promo-avatar-bg-color: var(--promo-avatar-bg-color, #e0e0e0);
  --custom-promo-text-color: var(--text-4-color, #333);
  --custom-promo-border-color: var(--promo-border-color, #ccc);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 615px;
  margin: 0 auto 10px;
}

@media screen and (min-width: 48em) {
  .custom-promo {
    max-width: 645px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 64em) {
  .custom-promo {
    max-width: 1276px;
    margin: 10px auto;
  }
}

.app-forum .custom-promo {
  max-width: initial;
}

@media screen and (min-width: 48em) {
  .app-forum .custom-promo {
    max-width: 1276px;
  }
}

.custom-promo--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

@media screen and (min-width: 48em) {
  .custom-promo--top {
    padding: 0 30px;
  }
}

.custom-promo--avatar {
  width: 44px;
  height: 44px;
  transform: translateY(10px);
  border: 3px solid var(--custom-promo-avatar-border-color);
  border-radius: 50%;
  background-color: var(--custom-promo-avatar-bg-color);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.custom-promo--head {
  width: 100%;
  padding: 15px 30px;
  background-color: #66bb6a;
}

.custom-promo--heading {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.custom-promo--inner {
  width: 100%;
  padding: 0 20px;
  background-color: var(--custom-promo-bg-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

@media screen and (min-width: 48em) {
  .custom-promo--inner {
    padding: 0 30px;
  }
}

.pr-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
}

@media screen and (min-width: 64em) {
  .pr-item {
    grid-gap: 0 10px;
    grid-template-columns: 110px 1fr 130px;
  }
}

.pr-item:not(:last-child) {
  border-color: var(--custom-promo-border-color);
}

.pr-item--logo {
  display: flex;
  align-items: flex-start;
  width: 90px;
  min-height: 35px;
}

.pr-item--slogan {
  margin: 0 0 13px;
  color: var(--custom-promo-text-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .pr-item--slogan {
    margin: 0;
  }
}

.pr-item--date {
  display: flex;
  position: relative;
  align-items: center;
  color: var(--custom-promo-text-color);
  font-size: 14px;
  line-height: 20px;
}

.pr-item--date::before {
  width: 13px;
  height: 13px;
  margin: 0 14px 0 0;
  background-image: url(/nimg/icon-calendar.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

.special-promo {
  --prs-bg-color: var(--layer-3-color, #fff);
  --prs-color: var(--text-1-color, #212121);
  --prs-sub-color: var(--text-4-color, #757575);
  --prs-rules-color: var(--text-3-color, #616161);
  --prs-border-color: var(--line-1-color, #dcdcdc);
  --prs-line-color: var(--line-1-color, #ccc);
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto 10px;
}

@media screen and (min-width: 48em) {
  .special-promo_actions {
    padding: 24px 15px 0;
  }
}

.special-promo--top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-promo--avatar {
  width: 56px;
  height: 48px;
  transform: translateY(24px);
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='48' viewBox='0 0 56 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='28' cy='24' rx='28' ry='24' fill='%23E61D27'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
}

.special-promo--head {
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 24px 0 0;
  background-image: url("data:image/svg+xml,%3Csvg width='607' height='115' viewBox='0 0 607 115' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.271683 101.069C-0.918976 108.371 4.71702 115 12.1153 115H594.885C602.283 115 607.919 108.371 606.728 101.069L595.751 33.7512C594.903 28.5499 590.691 24.4998 585.469 23.7912C366.706 -5.89381 240.167 -9.61396 21.3548 23.668C16.2199 24.4491 12.1101 28.4688 11.2742 33.5951L0.271683 101.069Z' fill='%23dcdcdc' /%3E%3C/svg%3E");
  background-position: 50% 0;
  background-repeat: no-repeat;
}

[theme='dark'] .special-promo--head {
  background-image: url("data:image/svg+xml,%3Csvg width='607' height='115' viewBox='0 0 607 115' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.271683 101.069C-0.918976 108.371 4.71702 115 12.1153 115H594.885C602.283 115 607.919 108.371 606.728 101.069L595.751 33.7512C594.903 28.5499 590.691 24.4998 585.469 23.7912C366.706 -5.89381 240.167 -9.61396 21.3548 23.668C16.2199 24.4491 12.1101 28.4688 11.2742 33.5951L0.271683 101.069Z' fill='%23424242' /%3E%3C/svg%3E");
}

.special-promo--head::before {
  position: absolute;
  top: -32px;
  left: calc(50% - 25px);
  width: 50px;
  height: 55px;
  background-image: url(/nimg/action-icon-fr.svg);
  background-repeat: no-repeat;
  content: '';
}

.special-promo--heading {
  color: var(--prs-color);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.special-promo--subheading {
  color: var(--prs-sub-color);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .special-promo--subheading {
    font-size: 15px;
  }
}

.special-promo--inner {
  position: relative;
  width: 100%;
  padding: 0 20px;
  border: solid 6px var(--prs-border-color);
  background-color: var(--prs-bg-color);
}

@media screen and (min-width: 48em) {
  .special-promo--inner {
    padding: 0 30px;
  }
}

.special-promo--bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

@media screen and (min-width: 48em) {
  .special-promo--bottom {
    padding: 0 30px;
  }
}

.special-promo--bottom a {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  color: #f85e5e;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.sp-item {
  border-bottom: 1px solid transparent;
}

.sp-item:not(:last-child) {
  border-color: var(--prs-line-color);
}

.sp-item--inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  width: 100%;
  padding: 14px 0;
}

@media screen and (min-width: 64em) {
  .sp-item--inner {
    grid-gap: 0 10px;
    grid-template-columns: 110px 1fr 130px;
  }
}

@media screen and (min-width: 64em) {
  .special-promo_active .sp-item--inner {
    grid-gap: 0 10px;
    grid-template-columns: 110px 1fr 250px;
  }
}

.sp-item--logo {
  display: flex;
  align-items: flex-start;
  width: 90px;
  min-height: 35px;
  margin: 0 0 10px;
}

@media screen and (min-width: 64em) {
  .sp-item--logo {
    margin: 0;
  }
}

.sp-item--slogan {
  margin: 0 0 13px;
  color: var(--prs-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .sp-item--slogan {
    margin: 0;
  }
}

.sp-item--slogan::after {
  display: inline-flex;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin: 0 0 0 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.46143 1.5L5.54823 5.58679L9.63503 1.5' stroke='%23000' stroke-width='2' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .sp-item--slogan::after {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.46143 1.5L5.54823 5.58679L9.63503 1.5' stroke='%23fff' stroke-width='2' /%3E%3C/svg%3E");
}

.sp-item--slogan.active::after {
  transform: rotate(180deg);
}

.sp-item_confirmed .sp-item--slogan::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 4px 0 0;
  background-image: url(/nimg/round-check.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: '';
}

.sp-item--date {
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .sp-item--date {
    justify-self: end;
  }
}

.sp-item--button {
  position: relative;
  height: 36px;
  margin: 15px 0 0;
  padding: 0 27px 0 10px;
  border-radius: 3px;
  background-color: #f85e5e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .sp-item--button {
    margin: 0;
  }
}

.sp-item--button::after {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 1px 1px 0;
  content: '';
}

.sp-item--button.active::after {
  top: 16px;
  transform: rotate(225deg);
}

.sp-item--offer {
  display: none;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--prs-line-color);
}

@media screen and (min-width: 64em) {
  .sp-item--offer {
    padding: 0 270px 0 120px;
  }
}

.sp-item--offer.show {
  display: flex;
}

.sp-item--rules {
  padding: 15px 0 20px;
}

.sp-item--rules p {
  margin: 0 0 5px;
  color: var(--prs-rules-color);
  font-size: 16px;
  line-height: 22px;
}

.sp-item--action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 25px;
}

@media screen and (min-width: 64em) {
  .sp-item--action {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
  }
}

.sp-item--note {
  color: var(--prs-sub-color);
  font-size: 14px;
  line-height: 16px;
}

.sp-item--reg {
  position: relative;
  height: 34px;
  margin: 15px 0 0;
  padding: 0 16px 0 34px;
  background-color: #e51e25;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
}

@media screen and (min-width: 64em) {
  .sp-item--reg {
    margin: 0 20px 0 0;
  }
}

.sp-item--reg::before {
  position: absolute;
  top: 9px;
  left: 17px;
  width: 7px;
  height: 12px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: '';
}

.wgt-gtplus {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.profile .wgt-gtplus {
  margin: 0 0 10px;
}

.sidebar-medium .wgt-gtplus {
  margin: 0 0 10px;
}

.wgt-gtplus--link {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  min-height: 60px;
  padding: 5px 8px;
  border: 1px solid #43d387;
  border-radius: 5px;
  background-color: #2f2f2f;
}

.sidebar-medium .wgt-gtplus--link {
  font-size: 16px;
}

.wgt-gtplus--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3px 4px;
}

.wgt-gtplus--top {
  display: flex;
  position: relative;
  width: 126px;
  height: 22px;
  margin: 0 0 6px;
}

.wgt-gtplus--top::before {
  position: absolute;
  top: 7px;
  left: -17px;
  width: 14px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2343d387' d='M7.7 15H7v-2.14h-.7V10h-.71v-.72H2.1v-.71H0V7.14h2.1v-.72h2.11v-.71h1.4V2.86h.69V0H7v2.86h.7V5h.71v.71h2.78v.71H14v.71h-2.1v1.44H9.79v.72h-1.4v1.42H7.7z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wgt-gtplus--top::after {
  position: absolute;
  top: -1px;
  right: -17px;
  width: 14px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2343d387' d='M7.7 15H7v-2.14h-.7V10h-.71v-.72H2.1v-.71H0V7.14h2.1v-.72h2.11v-.71h1.4V2.86h.69V0H7v2.86h.7V5h.71v.71h2.78v.71H14v.71h-2.1v1.44H9.79v.72h-1.4v1.42H7.7z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wgt-gtplus--flag {
  position: relative;
  left: 6px;
  width: 114px;
  height: 22px;
  background-color: #f00;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
}

.wgt-gtplus--flag::before {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-top: 11px solid #f00;
  border-bottom: 11px solid #f00;
  border-left: 6px solid transparent;
  content: '';
}

.wgt-gtplus--flag::after {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 11px solid #f00;
  border-right: 6px solid transparent;
  border-bottom: 11px solid #f00;
  content: '';
}

.wgt-gtplus--lead {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.sidebar-medium .wgt-gtplus--lead {
  font-size: 16px;
}

.wgt-gtplus--button {
  height: 36px;
  margin: 3px 4px;
  padding: 0 20px;
  border-radius: 18px;
  background-color: #43d387;
  color: #212121;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.profile-button {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 0 2px;
}

.sidebar-medium .profile-button {
  max-width: 230px;
}

.profile-button--inner {
  gap: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 24px 20px;
  border-radius: 5px;
  background-image: linear-gradient(0deg, #daa513, #f7e3ab);
  box-shadow: 0 2px 0 #9e7810;
}

@media screen and (min-width: 40em) {
  .profile-button--inner {
    flex-direction: row;
  }
  .sidebar-medium .profile-button--inner {
    gap: 10px 16px;
    flex-direction: column;
    padding: 12px 15px;
  }
}

.profile-button--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 62px;
}

.sidebar-medium .profile-button--logo {
  display: none;
}

.profile-button--logo svg {
  width: 64px;
  height: 62px;
}

.profile-button--heading {
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.sidebar-medium .profile-button--heading {
  display: none;
}

.profile-button--heading_bookmarks {
  display: none;
}

.sidebar-medium .profile-button--heading_bookmarks {
  display: initial;
  font-size: 14px;
  line-height: 16px;
}

.profile-button--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.profile-button--cta {
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 28px;
  padding: 0 20px;
}

.profile-button--cta::before {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.profile-button--cta::after {
  position: absolute;
  top: 7px;
  right: 5px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.profile-button--stars {
  position: relative;
  width: 100%;
}

.profile-button--stars::before {
  position: absolute;
  top: 1px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.profile-button--stars::after {
  position: absolute;
  top: 1px;
  right: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.profile-button--flag {
  --cta-color: #f00;
  position: relative;
  left: 8px;
  width: 144px;
  height: 28px;
  background-color: var(--cta-color);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.sidebar-medium .profile-button--flag {
  font-size: 14px;
}

.profile-button--flag::before {
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 14px solid var(--cta-color);
  border-bottom: 14px solid var(--cta-color);
  border-left: 8px solid transparent;
  content: '';
}

.profile-button--flag::after {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 14px solid var(--cta-color);
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--cta-color);
  content: '';
}

.profile-button--flag span::before {
  display: inline-flex;
  flex-shrink: 0;
  width: 9px;
  height: 14px;
  margin: 0 6px 0 0;
  transform: translateY(1px);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='14' viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.800781 14V0L8.80078 7L0.800781 14Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.sidebar-medium .profile-button--text {
  display: none;
}

.profile-button--text_bookmarks {
  display: none;
}

.sidebar-medium .profile-button--text_bookmarks {
  display: initial;
}

.profile-cta {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
}

.sidebar-medium .profile-cta {
  max-width: 230px;
}

.sidebar-medium .profile-cta--main {
  display: none;
}

.profile-cta--mobile {
  max-width: 594px;
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  .profile-cta--mobile {
    display: none;
  }
}

.profile-cta--desktop {
  display: none;
}

@media screen and (min-width: 64em) {
  .profile-cta--desktop {
    display: block;
  }
}

.profile-cta--bookmarks {
  display: none;
}

.sidebar-medium .profile-cta--bookmarks {
  display: block;
}

.profile-cta--bookmarks img {
  max-width: 230px;
}

.settings-wrap {
  --x-sets-bg-color: var(--layer-2a-color, #fff);
  --x-sets-tab-bg-color: var(--layer-1-color, #eef0f5);
  --x-sets-tab-color: var(--text-5-color, #000);
  --x-sets-heading-color: var(--text-2-color, #000);
  --x-sets-line-color: var(--line-2-color, #dfe1e4);
  --x-sets-border-color: var(--line-1-color, #ebedee);
  --x-sets-scroll-bg-color: var(--layer-1-color, #eef0f5);
  --x-sets-check-color: var(--text-4-color, #000);
  --x-sets-main-label-color: var(--text-3-color, #000);
  --x-sets-blacklist-nick-color: var(--text-2-color, #000);
  --x-sets-theme-color: var(--text-2-color, #000);
  --x-sets-link-tg-color: var(--text-4-color, #000);
  --x-sets-control-border-color: var(--control-1-border-color, #dfe1e4);
  --x-sets-control-color: var(--control-1-color, #000);
  --x-sets-control-bg-color: var(--layer-2-color, #fff);
  --x-sets-control-default-color: var(--text-6-color, #a8a8a9);
  --x-sets-control-active-color: var(--text-2-color, #000);
  --x-sets-control-icon: url(/nimg/select-arrow-24.svg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 0 16px 80px;
  background-color: var(--x-sets-bg-color);
}

[theme='dark'] .settings-wrap {
  --x-sets-control-icon: url(/nimg/select-arrow-light-24.svg);
}

@media screen and (min-width: 64em) {
  .settings-wrap {
    padding: 0 30px 80px;
  }
}

.settings-wrap--top {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto 60px;
  padding: 80px 0 24px;
  border-bottom: 1px solid var(--x-sets-line-color);
}

@media screen and (min-width: 48em) {
  .settings-wrap--top {
    grid-template-columns: 1fr 266px 1fr;
  }
}

.settings-heading {
  display: flex;
}

.settings-heading h1 {
  margin: 0;
  color: var(--x-sets-heading-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.settings-toggle {
  display: flex;
  border-radius: 10px;
  background-color: var(--x-sets-tab-bg-color);
}

.settings-toggle--button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 133px;
  height: 40px;
  border-radius: 10px;
  color: var(--x-sets-tab-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.settings-toggle--button.tab-active {
  background-color: #e51e25;
  color: #fff;
}

.settings-head {
  display: flex;
  justify-content: center;
  padding: 75px 0 57px;
}

.settings-head h1 {
  margin: 0;
  color: var(--x-sets-heading-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.settings-list {
  display: none;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
}

.settings-list.tab-active {
  display: block;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .settings-grid {
    gap: 0 24px;
    grid-template-columns: 1fr 1px 1fr;
  }
}

.settings-grid_forum {
  gap: 32px 24px;
  padding: 0 0 54px;
}

@media screen and (min-width: 64em) {
  .settings-grid_forum {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
  }
}

.settings-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}

@media screen and (min-width: 64em) {
  .settings-inner {
    min-height: 300px;
  }
}

@media screen and (min-width: 64em) {
  .settings-inner_left {
    margin: 0 0 0 auto;
  }
}

.settings-sep {
  display: none;
  width: 1px;
  height: 100%;
  background-color: var(--x-sets-line-color);
}

@media screen and (min-width: 64em) {
  .settings-sep {
    display: flex;
  }
}

.set-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 24px;
}

.set-group_mid {
  width: 100%;
  margin: 0 0 32px;
}

.set-group_small {
  margin: 0 0 16px;
}

.set-group--wrap {
  display: flex;
  width: 100%;
}

.set-grid .set-group {
  margin: 0;
}

.set-group_border {
  padding: 0 0 54px;
  border-bottom: 1px solid var(--x-sets-line-color);
}

.set-group_border_short {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--x-sets-line-color);
}

.set-group--heading {
  margin: 0 0 32px;
  color: var(--x-sets-heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.set-group--heading_tg {
  display: flex;
}

.set-group--heading_tg svg {
  --i-color1: #3aa1de;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.status-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.status-heading {
  gap: 0 8px;
  display: flex;
  align-items: center;
  margin: 0 0 32px;
  color: var(--x-sets-heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.status-heading svg {
  --color1: var(--pal-icon-color1, #000);
  --color2: var(--pal-icon-color2, #fefefe);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.status-heading--label {
  position: relative;
  margin: 0 0 0 6px;
  padding: 2px 8px 4px;
  border: solid 1px var(--line-2-color, #dbdbdb);
  border-radius: 2px;
  background-color: var(--layer-5-color, #fff);
  color: var(--text-5-color, #606060);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .status-heading--label {
    white-space: initial;
  }
}

.status-heading--label::before {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 8px;
  height: 7px;
  transform: rotate(0deg) translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 7'%3E%3Cpath fill='%23fff' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round' d='m1 3.5 5.318-3v6L1 3.5Z'/%3E%3Cpath fill='%23fff' d='M2.182 3.5 7.5.5v6l-5.318-3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

[theme='dark'] .status-heading--label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 7'%3E%3Cpath fill='%23424242' stroke='%23616161' stroke-linecap='round' stroke-linejoin='round' d='m1 3.5 5.318-3v6L1 3.5Z'/%3E%3Cpath fill='%23424242' d='M2.182 3.5 7.5.5v6l-5.318-3Z'/%3E%3C/svg%3E");
}

.status-state {
  margin: 8px 0 0;
  padding: 4px 10px;
  border-radius: 2px;
  background-color: #e8f5e9;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 16px;
}

[theme='dark'] .status-state {
  background-color: #435444;
}

.status-state_moderation {
  background-color: #fff3e0;
  color: #de8b10;
}

[theme='dark'] .status-state_moderation {
  background-color: #786951;
}

.status-state_rejected {
  background-color: #ffe7e2;
  color: #e2222e;
}

[theme='dark'] .status-state_rejected {
  background-color: #68524e;
}

.set-label {
  margin: 0 0 13px;
  color: var(--x-sets-main-label-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.set-label span {
  color: #e51e25;
}

.set-error {
  margin: 6px 0 0;
  color: #e51e25;
  font-size: 14px;
  line-height: 16px;
}

.set-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 500px;
  padding: 17px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: var(--x-sets-control-bg-color);
  color: var(--x-sets-control-color);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

.set-field_mid {
  margin: 0 24px 0 0;
  padding: 7px 24px;
  font-size: 14px;
  line-height: 24px;
}

.set-field::-moz-placeholder {
  color: #a8a8a9;
}

.set-field::placeholder {
  color: #a8a8a9;
}

.regpage--grid .set-field {
  max-width: initial;
}

.regpage-single .set-field {
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

@media screen and (min-width: 48em) {
  .regpage-tg .set-field {
    max-width: 460px;
    padding: 17px 17px 17px 45px;
  }
}

.regpage-contact--field .set-field {
  padding: 17px 17px 17px 45px;
  border-color: #3ba0dd;
}

.set-field-icon {
  position: relative;
}

@media screen and (min-width: 48em) {
  .set-field-icon {
    max-width: 460px;
  }
  .set-field-icon::before {
    position: absolute;
    top: 17px;
    left: 17px;
    width: 20px;
    height: 20px;
    background-image: url(/nimg/reg-tg-bg.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    content: '';
  }
}

.set-user {
  display: flex;
}

.set-user--avatar {
  position: relative;
  margin: 0 30px 0 0;
}

.set-user--image {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background-image: url(/nimg/imguser-a.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.set-user--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.set-user--nickname {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 15px;
}

.set-user--nick {
  color: var(--x-sets-heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.set-user--file {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 183px;
  height: 40px;
  border: 1px dashed #e51e25;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.set-user--file svg {
  flex-shrink: 0;
  width: 19px;
  height: 18px;
  margin: 0 16px 0 0;
}

.set-user--input {
  position: absolute;
  top: 0;
  left: 0;
  width: 183px;
  height: 40px;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0;
}

.set-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 500px;
  padding: 17px 37px 17px 17px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: var(--x-sets-control-bg-color);
  background-image: var(--x-sets-control-icon);
  background-origin: content-box;
  background-position: right -24px center;
  background-repeat: no-repeat;
  background-size: 24px;
  color: var(--x-sets-control-color);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

.set-select_space {
  margin: 0 0 24px;
}

.regpage--grid .set-select {
  max-width: initial;
}

.regpage-single .set-select {
  max-width: 340px;
  border-radius: 10px 0 0 10px;
}

.set-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 136px;
  padding: 10px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: var(--x-sets-control-bg-color);
  color: var(--x-sets-control-color);
  font-size: 16px;
  line-height: 19px;
  resize: vertical;
}

.set-social {
  gap: 16px 13px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.set-social--item {
  display: flex;
  align-items: center;
  width: 158px;
  height: 40px;
  padding: 8px 16px 8px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: transparent;
  color: #ccc;
  font-size: 16px;
  line-height: 24px;
}

[theme='dark'] .set-social--item {
  background-color: #f5f5f5;
}

.set-social--item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
}

.set-social--item_google {
  border-color: #4285f4;
  color: #4285f4;
}

.set-social--item_facebook {
  border-color: #3b5998;
  color: #3b5998;
}

.set-social--item_twitter {
  border-color: #00acee;
  color: #00acee;
}

.set-social--item_apple {
  border-color: #000;
  color: #000;
}

.set-social--item_tiktok {
  border-color: #000;
  color: #000;
}

.set-social--item_mailru {
  border-color: #005ff9;
  color: #005ff9;
}

.set-social--item_vk {
  border-color: #07f;
  color: #07f;
}

.set-social--item_yandex {
  border-color: #fc3f1d;
  color: #525252;
}

.set-social--button {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.set-social--button::after,
.set-social--button::before {
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: 12px;
  background-color: #a8a8a9;
  content: '';
}

.set-social--button::before {
  transform: rotate(45deg);
}

.set-social--button::after {
  transform: rotate(-45deg);
}

.set-ui-bottom {
  display: flex;
  justify-content: center;
}

.set-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 300px;
  padding: 23px 64px 22px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.set-grid {
  gap: 35px 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 0 35px;
}

@media screen and (min-width: 64em) {
  .set-grid {
    gap: 0 32px;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

.set-ui-label {
  position: relative;
  padding: 0 0 0 40px;
  color: var(--x-sets-check-color);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.set-ui-label:not(:last-child) {
  margin: 0 0 24px;
}

.regpage .set-ui-label:not(:last-child) {
  margin: 0 0 16px;
}

.set-ui-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: transparent;
}

.set-ui-circle::after {
  display: none;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border: 3px solid #e51e25;
  border-top: 0;
  border-left: 0;
  content: '';
}

.set-ui-input {
  position: absolute;
  opacity: 0;
}

.set-ui-input:checked + .set-ui-circle {
  border-color: #e51e25;
}

.set-ui-input:checked + .set-ui-circle::after {
  display: block;
}

.set-ui-input:checked + .set-ui-circle_tg {
  border-color: #75c1f1;
}

.set-ui-input:checked + .set-ui-circle_tg::after {
  display: block;
  border-color: #75c1f1;
}

.set-ui-link {
  display: flex;
  color: var(--x-sets-check-color);
  font-size: 16px;
  line-height: 24px;
}

.set-ui-link:not(:last-child) {
  margin: 0 0 24px;
}

.set-ui-link svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.set-ui-link span {
  margin: 0 0 0 4px;
}

.set-ui-shield {
  display: none;
}

.set-ui-link_active .set-ui-shield {
  display: flex;
}

.set-ui-shield_off {
  display: flex;
}

.set-ui-link_active .set-ui-shield_off {
  display: none;
}

.set-ui-tg {
  margin: 0 0 24px;
  color: var(--x-sets-link-tg-color);
  font-size: 16px;
  line-height: 24px;
}

.set-tg-group {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.set-tg-link {
  height: 40px;
  padding: 12px 24px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.set-telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  background-color: #3aa1de;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.set-telegram-link svg {
  --i-color1: #fff;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.set-mid-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 160px;
  padding: 12px 0;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.set-small-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 120px;
  padding: 12px 0;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.set-group--note {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 24px;
}

.set-del-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 160px;
  padding: 11px 0;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: transparent;
  color: #a8a8a9;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.set-del-submit.active {
  border-color: var(--x-sets-control-border-active-color);
  color: var(--x-sets-control-border-active-color);
}

.set-blacklist {
  --thumb-bg-color: #dfe1e4;
  width: 100%;
  max-height: 228px;
  margin: 0;
  overflow-y: scroll;
}

.set-blacklist::-webkit-scrollbar {
  width: 16px;
}

.set-blacklist::-webkit-scrollbar-thumb {
  border: 5px solid var(--x-sets-scroll-bg-color);
  border-radius: 10px;
  background-color: var(--thumb-bg-color);
}

.set-blacklist::-webkit-scrollbar-track {
  background: var(--x-sets-scroll-bg-color);
}

.set-blacklist_high {
  padding: 0 24px 0 0;
}

.set-blacklist.active {
  --thumb-bg-color: #e51e25;
}

.set-blacklist--item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 57px;
  border-top: 1px solid var(--x-sets-border-color);
}

.set-blacklist--icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
}

.set-blacklist--label {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0 0 0 48px;
  color: var(--x-sets-blacklist-nick-color);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.set-blacklist--circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: transparent;
}

.set-blacklist--circle::after {
  display: none;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border: 3px solid #e51e25;
  border-top: 0;
  border-left: 0;
  content: '';
}

.set-blacklist--input {
  position: absolute;
  opacity: 0;
}

.set-blacklist--input:checked + .set-blacklist--circle {
  border-color: #e51e25;
}

.set-blacklist--input:checked + .set-blacklist--circle::after {
  display: block;
}

.set-blacklist--input:checked ~ .set-blacklist--icon {
  --i-color1: #e51e25;
}

.set-blacklist--input:checked ~ .set-blacklist--nick {
  color: #e51e25;
}

.set-blacklist--mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 0 0 auto;
}

.subs-ui {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 54px 0 0;
  border-top: 1px solid var(--x-sets-line-color);
}

.subs-ui--heading {
  margin: 0 0 32px;
  color: var(--x-sets-heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.subs-ui--alert {
  color: #a8a8a9;
  font-size: 16px;
  line-height: 19px;
}

.subs-ui--item {
  display: flex;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid var(--x-sets-border-color);
}

.subs-ui--icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
}

.subs-ui--label {
  display: flex;
  position: relative;
  padding: 0 8px 0 48px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.subs-ui--circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: transparent;
}

.subs-ui--circle::after {
  display: none;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border: 3px solid #e51e25;
  border-top: 0;
  border-left: 0;
  content: '';
}

.subs-ui--nick {
  color: var(--x-sets-theme-color);
}

.subs-ui--input {
  position: absolute;
  opacity: 0;
}

.subs-ui--input:checked + .subs-ui--circle {
  border-color: #e51e25;
}

.subs-ui--input:checked + .subs-ui--circle::after {
  display: block;
}

.subs-ui--input:checked ~ .subs-ui--icon {
  --i-color1: #e51e25;
}

.subs-ui--input:checked ~ .subs-ui--nick {
  color: #e51e25;
}

.subs-ui--mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 0 0 auto;
}

.subs-ui--header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 24px;
}

.subs-select {
  --x-setup-subs-button-bg-color: var(--control-1-bg-color, #fff);
  --x-setup-subs-button-color: var(--control-1-color, #333);
  --x-setup-subs-button-border-color: var(--control-1-border-color, #ccc);
  --x-setup-subs-select-bg-color: var(--control-1-bg-color, #fff);
  --x-setup-subs-select-color: var(--control-1-color, #a8a8a9);
  --x-setup-subs-select-border-color: var(--control-1-border-color, #cfcfcf);
  --x-setup-subs-label-color: var(--text-4-color, #a8a8a9);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.subs-select--inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
}

@media screen and (min-width: 48em) {
  .subs-select--inner {
    width: auto;
    margin: 0 30px 0 0;
  }
}

.subs-select--label {
  padding: 7px 24px;
  border: 1px solid var(--x-sets-control-border-color);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  color: var(--x-sets-control-default-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.subs-ui_active .subs-select--label {
  color: var(--x-sets-control-active-color);
}

.subs-select--selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 244px;
  padding: 7px 48px 7px 24px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 0 10px 10px 0;
  background-color: transparent;
  background-image: var(--x-sets-control-icon);
  background-origin: content-box;
  background-position: right -24px center;
  background-repeat: no-repeat;
  background-size: 24px;
  color: var(--x-sets-control-default-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
}

.subs-ui_active .subs-select--selector {
  color: var(--x-sets-control-active-color);
}

.subs-select--button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 160px;
  padding: 12px 0;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.userset-group-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.userset-group-heading {
  margin: 0 0 32px;
  color: var(--x-sets-heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.userset-group-subheading {
  margin: 0 0 16px;
  color: var(--x-sets-heading-color);
  font-size: 18px;
  line-height: 23px;
}

.userset-row {
  display: flex;
  align-items: flex-start;
  margin: 0 0 24px;
}

.userset-row--button {
  border-bottom: 3px solid #1e88e5;
  color: var(--x-sets-heading-color);
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}

.userset-row--button:not(:last-child) {
  margin: 0 16px 0 0;
}

.userset-subnote {
  margin: 0 0 24px;
  border-bottom: 1px solid #1e88e5;
  color: var(--x-sets-heading-color);
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
}

.userset-code {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
}

.userset-step {
  margin: 0 0 32px;
  padding: 3px 0 0;
}

.userset-step--list {
  margin: 0 0 20px;
  list-style-position: inside;
}

.userset-step--list li {
  margin: 0 0 10px;
  color: var(--x-sets-heading-color);
  font-size: 16px;
  line-height: 1.25;
}

.userset-step--key {
  color: var(--x-sets-heading-color);
  font-size: 18px;
  line-height: 24px;
}

.userset-sublink {
  margin: 24px 0 0;
  color: var(--x-sets-heading-color);
  font-size: 16px;
  line-height: 23px;
  text-decoration: underline;
}

.userset-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 35px;
}

.userset-label {
  margin: 0 0 13px;
  color: var(--x-sets-main-label-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.userset-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 500px;
  padding: 22px 32px 21px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: var(--x-sets-control-bg-color);
  color: var(--x-sets-control-color);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

.userset-note {
  margin: 8px 0 0;
  color: #e51e25;
  font-size: 14px;
  line-height: 16px;
}

.userset-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 300px;
  padding: 23px 16px 22px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.userset-submit_up {
  margin: 5px 0 0;
}

.userset-submit_cancel {
  background-color: #dfe1e4;
  color: #202020;
}

.userset-grid {
  gap: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 500px;
}

.userset-image-wrap {
  height: 210px;
  margin: 0 0 20px;
  padding: 10px 0 0;
}

.ui-widget.ui-widget-content.ui-autocomplete {
  border-radius: 5px;
}

.ui-widget.ui-widget-content.ui-autocomplete .ui-menu-item {
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
}

.ui-widget.ui-widget-content.ui-autocomplete .ui-menu-item .ui-menu-item-wrapper:hover {
  border-radius: 5px;
}

.regpage {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 1000px;
  padding: 56px 0 0;
}

.regpage h1 {
  margin: 0 0 32px;
  color: var(--x-sets-heading-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .regpage h1 {
    margin: 0 0 16px;
  }
}

.regpage--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.regpage--grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .regpage--grid {
    gap: 0 32px;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

.regpage-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 35px;
}

.regpage-radio--label {
  margin: 0 0 13px;
  color: var(--x-sets-main-label-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.regpage-radio--wrap {
  gap: 16px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}

.regpage-radio--item {
  position: relative;
  padding: 0 0 0 40px;
  color: var(--x-sets-check-color);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.regpage-radio--circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--x-sets-control-border-color);
  border-radius: 10px;
  background-color: transparent;
}

.regpage-radio--circle::after {
  display: none;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e51e25;
  content: '';
}

.regpage-radio--input {
  position: absolute;
  opacity: 0;
}

.regpage-radio--input:checked + .regpage-radio--circle {
  border-color: #e51e25;
}

.regpage-radio--input:checked + .regpage-radio--circle::after {
  display: block;
}

.regpage--note {
  align-self: center;
  max-width: 506px;
  padding: 13px 0 0;
  color: var(--x-sets-control-default-color);
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.regpage--note a {
  color: var(--x-sets-control-default-color);
  text-decoration: underline;
}

.regpage-single {
  display: flex;
  width: 100%;
  max-width: 500px;
}

@media screen and (min-width: 48em) {
  .regpage-single {
    max-width: initial;
  }
}

.regpage-subheading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 30px;
}

.regpage-subheading::after,
.regpage-subheading::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #ebedee);
  content: '';
}

.regpage-subheading span {
  padding: 0 20px;
  color: var(--x-sets-control-default-color);
  font-size: 14px;
  line-height: 24px;
}

.regpage-insert {
  display: flex;
  flex-direction: column;
  margin: 0 0 32px;
}

.regpage-insert--note {
  padding: 16px 0 0;
  color: #4eb27c;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.regpage-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line-1-color, #ebedee);
  background-color: var(--layer-4-color, #f5f5f5);
}

.regpage-preview--inner {
  gap: 0 10px;
  display: flex;
  align-items: center;
}

.regpage-preview--avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-image: url(/nimg/imguser-a.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.regpage-preview--wrap {
  gap: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.regpage-preview--nick {
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 19px;
}

.regpage-preview--cancel {
  color: var(--text-5-color, #6e727a);
  font-size: 14px;
  line-height: 16px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.regpage-preview--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line-1-color, #ebedee);
  border-radius: 10px;
  background-color: #fff;
}

.regpage-preview--icon svg {
  width: 24px;
  height: 24px;
}

.regpage-social {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 32px;
}

.regpage-social--inner {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 30em) {
  .regpage-social--inner {
    gap: 16px;
  }
}

.regpage-social--link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid #e51e25;
  border-radius: 10px;
}

.regpage-social--link svg {
  width: 24px;
  height: 24px;
}

.regpage-row {
  width: 100%;
  margin: 0 0 32px;
}

.regpage-tg {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 8px 0 32px;
  padding: 24px 16px;
  border-radius: 10px;
  background-color: #f4faff;
  box-shadow: inset 0 0 0 1px #bddff5;
}

@media screen and (min-width: 48em) {
  .regpage-tg {
    max-width: initial;
    margin: 0 0 24px;
    padding: 24px;
  }
}

[theme='dark'] .regpage-tg {
  background-color: #26394a;
  box-shadow: inset 0 0 0 1px #6e8492;
}

.regpage-tg--label {
  margin: 0 0 13px;
  color: var(--text-3-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.regpage-tg--grid {
  gap: 16px 32px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

@media screen and (min-width: 48em) {
  .regpage-tg--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.tg-note-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .tg-note-wrap {
    min-height: 55px;
  }
}

.tg-note-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .tg-note-inner {
    min-height: 55px;
  }
}

.tg-note {
  gap: 0 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.tg-note--link {
  display: flex;
}

.tg-note--link svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.tg-note--text {
  color: #3ba0dd;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

.tg-note--arrow {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 0 0 -6px;
}

@media screen and (min-width: 48em) {
  .tg-note--arrow {
    display: none;
  }
}

.active .tg-note--arrow {
  transform: rotate(180deg);
}

.reg-tg-tip {
  width: 100%;
  padding: 22px;
}

.tg-tip-list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style-type: disc;
}

.tg-tip-list li {
  margin: 0;
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 18px;
}

.tg-tip-list li:not(:last-child) {
  margin: 0 0 16px;
}

.tg-spoiler {
  display: none;
  margin: 10px 0 0;
}

@media screen and (min-width: 48em) {
  .tg-spoiler {
    margin: 0;
  }
}

.tg-spoiler.show {
  display: block;
}

@media screen and (min-width: 48em) {
  .tg-spoiler.show {
    display: none;
  }
}

.tg-spoiler--text {
  color: #3ba0dd;
  font-size: 13px;
  line-height: 17px;
}

.tg-spoiler--text_mg {
  margin: 0 0 14px;
}

.tg-spoiler--list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style-type: disc;
}

.tg-spoiler--list li {
  margin: 0;
  color: #3ba0dd;
  font-size: 13px;
  line-height: 17px;
}

.tg-spoiler--list li:not(:last-child) {
  margin: 0 0 14px;
}

.regpage-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .regpage-role {
    margin: 0 0 24px;
  }
}

.regpage-role--head {
  width: 100%;
  margin: 0 0 24px;
}

.regpage-role--heading {
  margin: 0 0 4px;
  color: var(--text-3-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}

.regpage-role--subheading {
  color: var(--text-3-color, #000);
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.role-slider {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 18px;
}

@media screen and (min-width: 48em) {
  .role-slider {
    padding: 0;
  }
}

.role-slider--main {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.role-slider--wrap {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 24px;
}

.role-item {
  gap: 24px 0;
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  padding: 32px;
  border: 1px solid var(--control-1-border-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .02);
  transition-property: transform;
}

@media screen and (min-width: 48em) {
  .role-item {
    gap: 20px 0;
  }
}

.role-item--image {
  display: flex;
  width: 100%;
  max-width: 170px;
}

@media screen and (min-width: 48em) {
  .role-item--image {
    max-width: 120px;
  }
}

[theme='dark'] .role-item--image img {
  border-radius: 10px;
}

.role-item--button {
  width: 100%;
  max-width: 160px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.role-item--list {
  width: 100%;
  max-width: 164px;
  margin: 0;
  padding: 0;
}

.role-item--list li {
  gap: 0 6px;
  display: flex;
  margin: 0;
  color: var(--text-3-color, #000);
  font-size: 13px;
  line-height: 15px;
}

.role-item--list li:not(:last-child) {
  margin: 0 0 8px;
}

.role-item--list li::before {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  transform: translateY(5px);
  border-radius: 50%;
  background-color: #e51e25;
  content: '';
}

.role-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-pagination {
  gap: 0 5px;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.role-pagination_lock {
  display: none;
}

.role-pagination--bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--layer-5-color, #cbcbcb);
}

.role-pagination--bullet_active {
  background-color: #a8a8a9;
}

.role-slide-button {
  display: flex;
  z-index: 5;
  position: absolute;
  top: 198px;
  right: auto;
  left: 2px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2-color, #ededed);
  border-radius: 50%;
  outline: none;
  background-color: var(--layer-5-color, #fff);
  box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
  cursor: pointer;
}

.role-slide-button_next {
  right: 2px;
  left: auto;
}

.role-slide-button svg {
  --i-color1: var(--text-1-color, #292929);
  width: 21px;
  height: 18px;
}

.role-slide-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.role-slide-button_disabled svg {
  --i-color1: #bcbcbc;
  opacity: .35;
}

[theme='dark'] .role-slide-button_disabled svg {
  --i-color1: #9e9e9e;
}

.role-slide-button_lock {
  display: none;
}

.regpage-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% + 32px);
  padding: 20px;
  background-color: #f4faff;
}

@media screen and (min-width: 48em) {
  .regpage-contact {
    width: 100%;
    padding: 22px 32px 32px;
    border-radius: 10px;
  }
}

[theme='dark'] .regpage-contact {
  background-color: #263541;
}

.regpage-contact--back {
  gap: 0 8px;
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 18px;
}

.regpage-contact--back svg {
  flex-shrink: 0;
  width: 8px;
  height: 14px;
}

.regpage-contact--grid {
  gap: 16px 24px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media screen and (min-width: 48em) {
  .regpage-contact--grid {
    grid-template-columns: 212px 1fr;
    justify-items: initial;
  }
}

.regpage-contact--image {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 192px;
  padding: 10px;
  border: 1px solid var(--control-1-border-color, #dfe1e4);
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .regpage-contact--image {
    width: 212px;
    padding: 32px 0;
  }
}

.regpage-contact--image img {
  max-width: 170px;
}

@media screen and (min-width: 48em) {
  .regpage-contact--image img {
    max-width: 150px;
  }
}

.regpage-contact--main {
  gap: 20px 0;
  display: flex;
  flex-direction: column;
}

.regpage-contact--head {
  display: flex;
  flex-direction: column;
}

.regpage-contact--heading {
  margin: 0 0 10px;
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .regpage-contact--heading {
    text-align: initial;
  }
}

.regpage-contact--text {
  max-width: 630px;
  color: var(--text-1-color, #000);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .regpage-contact--text {
    font-size: 16px;
    text-align: initial;
  }
}

.regpage-contact--form {
  display: flex;
  flex-direction: column;
}

.regpage-contact--label {
  margin: 0 0 10px;
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .regpage-contact--label {
    text-align: initial;
  }
}

.regpage-contact--field {
  position: relative;
  width: 100%;
  max-width: 488px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .regpage-contact--field {
    margin: 0;
  }
}

.regpage-contact--field::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 20px;
  height: 20px;
  background-image: url(/nimg/reg-tg-blue.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: '';
}

.reg-reminder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 712px;
  margin: 0 auto;
  padding: 40px 0;
}

.reg-reminder--image {
  display: flex;
  width: 100%;
  max-width: 160px;
  margin: 0 0 24px;
}

[theme='dark'] .reg-reminder--image img {
  border-radius: 10px;
}

.reg-reminder--heading {
  margin: 0 0 16px;
  color: var(--text-1-color, #000);
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .reg-reminder--heading {
    line-height: 35px;
  }
}

.reg-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 32px;
}

.reg-confirm--text {
  color: var(--text-1-color, #000);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .reg-confirm--text {
    font-size: 14px;
  }
}

.reg-confirm--note {
  margin: 16px 0 0;
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.reg-confirm--note strong {
  color: #f12b27;
}

.reg-support {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  min-height: 108px;
  padding: 24px;
  border-radius: 10px;
  background-color: #f4faff;
}

@media screen and (min-width: 48em) {
  .reg-support {
    grid-template-columns: 3fr 1fr;
    align-items: center;
    justify-items: initial;
  }
}

[theme='dark'] .reg-support {
  background-color: #263541;
}

.reg-support--tg {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media screen and (min-width: 48em) {
  .reg-support--tg {
    grid-template-columns: 47px 1fr;
    align-items: center;
    justify-items: initial;
  }
}

.reg-support--text {
  color: var(--text-1-color, #000);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .reg-support--text {
    text-align: initial;
  }
}

.reg-support--text strong {
  color: #27a7e7;
  font-weight: 400;
}

.reg-support--chat {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 16px 0 0;
  border-top: 1px dashed #27a7e7;
}

@media screen and (min-width: 48em) {
  .reg-support--chat {
    flex-direction: row;
    height: 100%;
    padding: 0 0 0 24px;
    border-top: 0;
    border-left: 1px dashed #27a7e7;
  }
}

.reg-support--gt {
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #d9b61a;
  border-radius: 50%;
  background-color: #f1c259;
}

.reg-support--gt::before {
  position: absolute;
  right: 2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #45ae52;
  content: '';
}

.reg-support--gt svg {
  margin: auto;
}

.reg-support--person {
  display: flex;
  flex-direction: column;
}

.reg-support--name {
  color: var(--text-1-color, #000);
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .reg-support--name {
    text-align: initial;
  }
}

.reg-support--post {
  color: var(--text-3-color, #5b5e63);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .reg-support--post {
    text-align: initial;
  }
}

.pagination {
  --x-pagination-bg-color: var(--layer-1-color, #f5f5f5);
  --x-pagination-color: var(--w-text-7-color, #a8a8a9);
  --x-pagination-line-color: var(--w-line-1a-color, #dfe1e4);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 8px;
  border-radius: 10px;
  background-color: var(--x-pagination-bg-color);
}

:root[theme='dark'] .app-forum .pagination {
  --w-text-7-color: #636568;
  --w-line-1a-color: #303641;
}

@media screen and (min-width: 48em) {
  .pagination {
    padding: 16px;
  }
}

.pagination--item {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border-radius: 5px;
  color: var(--x-pagination-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .pagination--item {
    width: 57px;
    height: 40px;
    border-radius: 10px;
  }
}

.pagination--item::after {
  position: absolute;
  top: 7px;
  right: -1px;
  width: 1px;
  height: 16px;
  background-color: var(--x-pagination-line-color);
  content: '';
  pointer-events: none;
}

@media screen and (min-width: 48em) {
  .pagination--item::after {
    top: 12px;
  }
}

.pagination--item:last-of-type::after {
  display: none;
}

.pagination--item_active {
  background-color: #e51e25;
  color: #fff;
}

.pagination--item_active::after {
  background-color: transparent;
}

@media screen and (min-width: 48em) {
  .feed-bottom {
    max-width: 822px;
    margin: 45px 0 0;
  }
}

.post .smiley {
  display: inline-block;
  margin: 0 2px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.post .s_blush {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/blush.gif);
}

.post .s_blink {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/blink.gif);
}

.post .s_huh {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/huh.gif);
}

.post .s_sad {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/sad.gif);
}

.post .s_ph34r {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/ph34r.gif);
}

.post .s_laugh {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/laugh.gif);
}

.post .s_ohmy {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/ohmy.gif);
}

.post .s_unsure {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/unsure.gif);
}

.post .s_sleep {
  width: 21px;
  height: 20px;
  background-image: url(/nimg/emoticons/sleep.gif);
}

.post .s_mellow {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/mellow.gif);
}

.post .s_wacko {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/wacko.gif);
}

.post .s_smile {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/smile.gif);
}

.post .s_biggrin {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/biggrin.gif);
}

.post .s_rolleyes {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/rolleyes.gif);
}

.post .s_wink {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/wink.gif);
}

.post .s_angry {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/angry.gif);
}

.post .s_tongue {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/tongue.gif);
}

.post .s_dry {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/dry.gif);
}

.post .s_happy {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/happy.gif);
}

.post .s_cool {
  width: 20px;
  height: 20px;
  background-image: url(/nimg/emoticons/cool.gif);
}

.post .s_smirk {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/smirk.gif);
}

.post .s_bwahaha {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/bwahaha.gif);
}

.post .s_redface {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/redface.gif);
}

.post .s_table {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/table.gif);
}

.post .s_dull {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/dull.gif);
}

.post .s_capt {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/capt.gif);
}

.post .s_angrymonkey {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/angrymonkey.gif);
}

.post .s_happymonkey {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/happymonkey.gif);
}

.post .s_plus1 {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/plus1.gif);
}

.post .s_wall {
  width: 26px;
  height: 24px;
  background-image: url(/nimg/emoticons/wall.gif);
}

.post .s_pioneer {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/pioneer.gif);
}

.post .s_italy {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/italy.gif);
}

.post .s_winking {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/winking.gif);
}

.post .s_hehe {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/hehe.gif);
}

.post .s_lick {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/lick.gif);
}

.post .s_doctor {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/doctor.gif);
}

.post .s_fish {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/fish.gif);
}

.post .s_olen {
  width: 26px;
  height: 24px;
  background-image: url(/nimg/emoticons/olen.gif);
}

.post .s_happyspade {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/happyspade.gif);
}

.post .s_happyheart {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/happyheart.gif);
}

.post .s_happyclub {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/happyclub.gif);
}

.post .s_happydiamond {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/happydiamond.gif);
}

.post .s_ivey {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/ivey.gif);
}

.post .s_destroy {
  width: 28px;
  height: 24px;
  background-image: url(/nimg/emoticons/destroy.gif);
}

.post .s_dance {
  width: 28px;
  height: 24px;
  background-image: url(/nimg/emoticons/dance.gif);
}

.post .s_dontknow {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/dontknow.gif);
}

.post .s_facepalm {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/facepalm.gif);
}

.post .s_cry {
  width: 30px;
  height: 24px;
  background-image: url(/nimg/emoticons/cry.gif);
}

.post .s_popcorn {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/popcorn.gif);
}

.post .s_smoke {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/smoke.gif);
}

.post .s_vomit {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/vomit.gif);
}

.post .s_wife {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/wife.gif);
}

.post .s_rigged {
  width: 52px;
  height: 24px;
  background-image: url(/nimg/emoticons/rigged.gif);
}

.post .s_beer {
  width: 30px;
  height: 24px;
  background-image: url(/nimg/emoticons/beer.gif);
}

.post .s_clap {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/clap.gif);
}

.post .s_bayan {
  width: 30px;
  height: 24px;
  background-image: url(/nimg/emoticons/bayan.gif);
}

.post .s_fuuuu {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/fuuuu.gif);
}

.post .s_lolu {
  width: 28px;
  height: 24px;
  background-image: url(/nimg/emoticons/lolu.gif);
}

.post .s_noway {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/noway.gif);
}

.post .s_shark {
  width: 30px;
  height: 24px;
  background-image: url(/nimg/emoticons/shark.gif);
}

.post .s_respect {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/respect.gif);
}

.post .s_puzzled {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/puzzled.gif);
}

.post .s_telefon {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/telefon.gif);
}

.post .s_troll {
  width: 24px;
  height: 24px;
  background-image: url(/nimg/emoticons/troll.gif);
}

.tooltipster-base.tooltipster-borderless {
  --arrow-size: 10px;
  pointer-events: initial;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-box {
  border: none;
  background: transparent;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-content {
  padding: 0 10px;
  color: initial;
  line-height: initial;
}

@media screen and (min-width: 64em) {
  .tooltipster-sidetip.tooltipster-borderless .tooltipster-content {
    padding: 0;
  }
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-box {
  margin-top: var(--arrow-size, 16px);
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow {
  left: 0 !important;
  width: calc(100% - 20px) !important;
  height: var(--arrow-size, 16px);
  margin: 0 0 0 10px !important;
  background-image: linear-gradient(90deg, var(--gradient-start-color, #424242) 66%, var(--gradient-end-color, #616161) 100%);
  clip-path: polygon(calc(var(--arrow-position) + var(--arrow-size, 16px)) var(--arrow-size, 16px), 100% var(--arrow-size, 16px), 100% 100%, 0% 100%, 0 var(--arrow-size, 16px), calc(var(--arrow-position) - var(--arrow-size, 16px)) var(--arrow-size, 16px), var(--arrow-position) 0);
}

@media screen and (min-width: 64em) {
  .tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow {
    width: 100% !important;
    margin: 0 !important;
  }
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow {
  height: var(--arrow-size, 16px);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-uncropped {
  display: none;
}

.loco-placeholder {
  display: flex;
  width: 100%;
  margin: 0 auto 0 0;
  overflow: hidden;
}

.top-header .loco-placeholder {
  display: flex;
}

@media screen and (min-width: 64em) {
  .top-header .loco-placeholder {
    display: none;
  }
}

.middle-header .loco-placeholder {
  display: none;
}

@media screen and (min-width: 64em) {
  .middle-header .loco-placeholder {
    display: flex;
  }
}


/* stylelint-disable -- color-named */

.loco-prescroll {
  container-type: inline-size;
  container-name: loco-wrap;
  display: flex;
  position: relative;
  width: 100%;
  padding: 0 36px;
  overflow: hidden;
}

@media screen and (min-width: 64em) {
  .loco-prescroll {
    max-width: 738px;
    margin: 0 auto 0 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .loco-placeholder .loco-prescroll {
    margin: 0 auto;
  }
}

.top-header .loco-prescroll {
  display: flex;
}

@media screen and (min-width: 64em) {
  .top-header .loco-prescroll {
    display: none;
  }
}

.middle-header .loco-prescroll {
  display: none;
}

@media screen and (min-width: 64em) {
  .middle-header .loco-prescroll {
    display: flex;
  }
}


/* stylelint-enable */

.loco-scroll {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 64em) {
  .loco-scroll {
    height: 60px;
  }
}

.widget-loco {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.top-header .widget-loco {
  padding: 5px 0 8px;
}

.widget-loco--grid {
  gap: 0 12px;
  display: flex;
  justify-content: center;
  padding: 0 7px;
}

.widget-loco--grid_single {
  display: flex;
}

@container loco-wrap (min-width: 430px) {
  .widget-loco--grid_single {
    display: none;
  }
}

.widget-loco--grid_double {
  display: none;
}

@container loco-wrap (min-width: 430px) {
  .widget-loco--grid_double {
    display: flex;
  }
}

@container loco-wrap (min-width: 645px) {
  .widget-loco--grid_double {
    display: none;
  }
}

.widget-loco--grid_triple {
  display: none;
}

@container loco-wrap (min-width: 645px) {
  .widget-loco--grid_triple {
    display: flex;
  }
}

.loco-item {
  display: grid;
  position: relative;
  flex-grow: 1;
  align-items: center;
  min-height: 33px;
  padding: 0 4px 0 10px;
  transform: skew(344deg);
  background-image: linear-gradient(90deg, var(--gradient-start-color, #424242) 66%, var(--gradient-end-color, #616161) 100%);
  box-shadow: inset -1px 0 0 var(--gradient-end-color);
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .loco-item::before {
    position: absolute;
    top: -12px;
    left: -17px;
    width: 59px;
    height: 61px;
    transform: skew(34deg);
    background-image: url(/nimg/tail-shadow.png);
    background-size: 100%;
    content: '';
    pointer-events: none;
  }
  [theme='dark'] .loco-item::before {
    display: none;
  }
}

.loco-item svg {
  flex-shrink: 0;
}


/* stylelint-disable -- color-named */

.loco-item--inner {
  gap: 0 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  transform: skew(16deg);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, black 0, black calc(100% - 8px), rgba(0, 0, 0, 0) calc(100% - 4px));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, black 0, black calc(100% - 8px), rgba(0, 0, 0, 0) calc(100% - 4px));
}

.widget-loco_mobile .loco-item--inner {
  transform: none;
}


/* stylelint-enable */

.loco-item--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 24px;
  height: 24px;
}

.loco-item--icon svg {
  width: 24px;
}

.loco-item--name {
  margin: 0 6px 0 0;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.widget-loco_mobile .loco-item--name {
  font-size: 14px;
}

.widget-loco--arrow {
  display: flex;
  position: absolute;
  top: 0;
  right: 15px;
  flex-shrink: 0;
  align-items: center;
  height: 60px;
  cursor: pointer;
}

.top-header .widget-loco--arrow {
  height: 46px;
}

.widget-loco--arrow_prev {
  right: auto;
  left: 15px;
  transform: rotate(180deg);
}

.widget-loco--arrow_disabled {
  opacity: .25;
}

.widget-loco--arrow svg {
  width: 16px;
  height: 8px;
}

[theme='dark'] .widget-loco--arrow svg {
  --i-color1: #e0e0e0;
}

.unitip-wrap {
  display: none;
}

.unitip-info {
  max-width: 538px;
  padding: 16px 20px;
  border-radius: 5px;
  background-image: linear-gradient(90deg, var(--gradient-start-color, #424242) 66%, var(--gradient-end-color, #616161) 100%);
}

@media screen and (min-width: 64em) {
  .unitip-info {
    padding: 32px 36px;
    border-radius: 10px;
  }
}

.unitip-popup {
  gap: 0 16px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .unitip-popup {
    gap: 0 24px;
  }
}

.unitip-popup--image {
  display: flex;
  flex-shrink: 0;
  width: 50px;
}

@media screen and (min-width: 64em) {
  .unitip-popup--image {
    width: 100px;
  }
}

.unitip-popup--image svg {
  max-height: 50px;
}

@media screen and (min-width: 64em) {
  .unitip-popup--image svg {
    max-height: initial;
  }
}

.unitip-popup--image img {
  max-height: 50px;
}

@media screen and (min-width: 64em) {
  .unitip-popup--image img {
    max-height: initial;
  }
}

.unitip-popup--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.unitip-popup--head {
  display: flex;
  flex-direction: column;
}

.unitip-popup--heading {
  margin: 0 0 4px;
  color: #fff;
  font-family: 'PT Serif', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 64em) {
  .unitip-popup--heading {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 28px;
  }
}

.unitip-popup--subheading {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
}

@media screen and (min-width: 64em) {
  .unitip-popup--subheading {
    font-size: 18px;
    line-height: 21px;
  }
}

.unitip-popup--button {
  gap: 0 10px;
  display: flex;
  align-items: center;
  margin: 16px 0 0;
  padding: 10px 16px;
  border-radius: 5px;
  background-color: var(--button-color, #000);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 64em) {
  .unitip-popup--button {
    margin: 24px 0 0;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 18px;
  }
}

.unitip-popup--button svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 15px;
  height: 16px;
}

.widget-offer-wrap {
  width: 100%;
  max-width: 1060px;
  padding: 16px 0 0;
}

@media screen and (min-width: 48em) {
  .widget-offer-wrap {
    padding: 16px 15px 0;
  }
}

@media screen and (min-width: 64em) {
  .widget-offer-wrap {
    padding: 16px 30px 0;
  }
}

.widget-offer {
  container-type: inline-size;
  container-name: w-link;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-1-color, #efe4e6);
  background-color: var(--layer-3-color, #fff);
}

.article--inner .widget-offer {
  margin: 0 0 24px;
}

@media screen and (min-width: 64em) {
  .article--inner .widget-offer {
    margin: 0 0 40px;
  }
}

.widget-offer--heart {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 28px;
  width: 220px;
  height: 116px;
  background-image: url(/nimg/chip-heart.svg);
  background-repeat: no-repeat;
  background-size: 220px;
}

[theme='dark'] .widget-offer--heart {
  background-image: url(/nimg/chip-heart-dark.svg);
}

.widget-offer--chip {
  z-index: 1;
  position: absolute;
  right: 240px;
  bottom: 0;
  width: 338px;
  height: 143px;
}

.widget-offer--chip svg {
  width: 338px;
  height: 143px;
}

[theme='dark'] .widget-offer--chip svg {
  --i-color2: #303030;
  --i-color3: #272727;
}

.widget-offer--mid {
  gap: 0 16px;
  display: flex;
  z-index: 2;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  padding: 26px 16px 22px;
}

@container w-link (min-width: 600px) {
  .widget-offer--mid {
    padding: 26px 32px 22px;
  }
}

@container w-link (min-width: 760px) {
  .widget-offer--mid {
    align-items: flex-end;
  }
}

.widget-offer--top {
  gap: 18px 0;
  display: flex;
  flex-direction: column;
}

.widget-offer--logo {
  z-index: 1;
  flex-shrink: 0;
}

[theme='dark'] .widget-offer--image_light {
  display: none;
}

.widget-offer--image_dark {
  display: none;
}

[theme='dark'] .widget-offer--image_dark {
  display: block;
}

.widget-offer--image img {
  max-height: 36px;
}

@container w-link (min-width: 600px) {
  .widget-offer--image img {
    max-height: 62px;
  }
}

.widget-offer--grid {
  gap: 8px;
  display: flex;
  z-index: 1;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}

@container w-link (min-width: 600px) {
  .widget-offer--grid {
    flex-direction: row;
  }
}

.widget-offer--button {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 8px;
  background-color: var(--layer-5-color, #f1f1f1);
  color: var(--text-5-color, #333);
  font-size: 15px;
  line-height: 23px;
  text-align: center;
}

.widget-offer--button svg {
  --i-color1: #333;
  width: 16px;
  height: 16px;
}

[theme='dark'] .widget-offer--button svg {
  --i-color1: #bdbdbd;
}

.widget-offer--inner {
  gap: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.widget-offer--main {
  gap: 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@container w-link (min-width: 760px) {
  .widget-offer--main {
    flex-direction: row;
  }
}

.widget-offer--reg {
  gap: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #43a047;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}

@container w-link (min-width: 760px) {
  .widget-offer--reg {
    width: initial;
  }
}

.widget-offer--reg svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.widget-offer--cta {
  gap: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #29a9e8;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
}

@container w-link (min-width: 760px) {
  .widget-offer--cta {
    width: initial;
  }
}

.widget-offer--cta svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.widget-offer--text {
  display: none;
}

@media screen and (min-width: 48em) {
  .widget-offer--text {
    display: block;
  }
}

.widget-offer--text_mobile {
  display: block;
}

@media screen and (min-width: 48em) {
  .widget-offer--text_mobile {
    display: none;
  }
}

.widget-offer--note {
  max-width: 356px;
  color: var(--text-2-color, #333);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
}

.widget-offer--note strong {
  color: #29a9e8;
}

.media-top {
  --x-main-bg-color: var(--layer-3-color, #fff);
  --x-main-heading-color: var(--text-2-color, #000);
  --x-main-lead-color: var(--text-5-color, #666);
  --x-main-mobile-heading-color: var(--text-2-color, #000);
  --x-meta-color: var(--text-4-color, #808080);
  --x-meta-link-color: var(--text-1-color, #000);
  width: 100%;
  max-width: 645px;
  margin: 0 auto;
  padding: 10px 0 0;
}

@media screen and (min-width: 48em) {
  .media-top {
    padding: 10px 15px 0;
  }
}

@media screen and (min-width: 64em) {
  .media-top {
    max-width: 1276px;
    padding: 20px 15px 0;
  }
}

@media screen and (min-width: 64em) {
  .media-top ~ .media-top {
    padding: 12px 15px 0;
  }
}

.media-top .media-large .media-meta,
.media-top .media-small .media-meta {
  position: relative;
  margin: auto 0 0;
  padding: 0 5px 15px 0;
  color: var(--x-meta-color);
  font-size: 12px;
}

@media screen and (min-width: 48em) {
  .media-top .media-large .media-meta,
.media-top .media-small .media-meta {
    color: var(--x-meta-color);
  }
}

.media-top .media-large .media-meta--comment span,
.media-top .media-small .media-meta--comment span {
  color: var(--x-meta-link-color);
}

.media-top--grid {
  grid-gap: 10px 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 615px;
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  .media-top--grid {
    grid-gap: 11px 16px;
    grid-auto-rows: minmax(170px, auto);
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    max-width: initial;
  }
}

.media-large {
  display: flex;
  position: relative;
  grid-row-end: span 3;
  flex-direction: column;
  max-width: 615px;
  background-color: var(--x-main-bg-color);
}

.media-large.media-pinned {
  box-shadow: inset 0 0 0 2px #e51e25;
}

.media-large.media-pinned::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 0 48px 48px 0;
  border-style: solid;
  border-color: transparent #e51e25 transparent transparent;
  content: '';
}

.media-large.media-pinned::after {
  z-index: 1;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background-image: url(/nimg/media-pinned-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.media-large--inner {
  padding: 18px 18px 0;
}

.media-large--image {
  position: relative;
  width: 100%;
}

.media-large--image::before {
  display: table;
  padding: 0 0 53.023%;
  content: '';
}

.media-large--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-large--head {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  padding: 18px 18px 0;
}

.media-large--label {
  display: flex;
  margin: 0 0 7px;
  color: #e51e25;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}

.media-large--heading {
  margin: 0 0 6px;
  color: var(--x-main-mobile-heading-color);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .media-large--heading {
    font-size: 24px;
    line-height: 32px;
  }
}

.media-large--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-large--summary {
  margin: 0 0 12px;
  color: var(--x-main-lead-color);
  font-size: 14px;
  line-height: 20px;
}

.media-small {
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  background-color: var(--x-main-bg-color);
}

@media screen and (min-width: 48em) {
  .media-small {
    flex-direction: row;
  }
}

.media-small.media-pinned {
  box-shadow: inset 0 0 0 2px #e51e25;
}

.media-small.media-pinned::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 0 48px 48px 0;
  border-style: solid;
  border-color: transparent #e51e25 transparent transparent;
  content: '';
}

.media-small.media-pinned::after {
  z-index: 1;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background-image: url(/nimg/media-pinned-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.media-small--head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 18px 18px 0;
}

@media screen and (min-width: 64em) {
  .media-small--head {
    flex: 1 1 397px;
    padding: 18px 11px 0 18px;
  }
}

.media-small--label {
  display: flex;
  margin: 0 0 9px;
  color: #e51e25;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}

.media-small--heading {
  padding: 0 0 12px;
  color: var(--x-main-heading-color);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.media-small--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-small--image {
  display: none;
  position: relative;
  flex: 1 1 218px;
  width: 100%;
  padding: 11px 11px 11px 0;
}

@media screen and (min-width: 64em) {
  .media-small--image {
    display: flex;
  }
}

.media-small--image img {
  height: 100%;
  object-fit: cover;
}

.rec-widget {
  --rec-stream-header-color: var(--text-5-color, #333);
  --rec-item-bg-color: var(--layer-3-color, #fff);
  --rec-heading-color: var(--text-4-color, #000);
  --rec-subheading-color: var(--text-5-color, #666);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 645px;
  margin: 0 auto 10px;
  padding: 20px 15px 0 5px;
}

@media screen and (min-width: 64em) {
  .rec-widget {
    max-width: 1276px;
    margin: 0 auto 37px;
    padding: 32px 15px 0 5px;
  }
}

.rec-widget--head {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 0 0 10px;
}

@media screen and (min-width: 48em) {
  .rec-widget--head {
    margin: 0 0 20px;
  }
}

.rec-widget--icon {
  --color1: var(--pal-icon-color1, #000);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: 0 10px 0 0;
}

.rec-widget--heading {
  color: var(--rec-stream-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .rec-widget--heading {
    font-size: 18px;
  }
}

.rec-control {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 64px;
  height: 28px;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 64em) {
  .rec-control {
    display: flex;
  }
}

.rec-control--button {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.rec-control--button svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

[theme='dark'] .rec-control--button svg {
  --i-color1: #606060;
  --i-color2: #fff;
}

.rec-control--button_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.recommend--container {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1256px;
  height: 100%;
  margin: 0;
  padding: 0 0 0 10px;
  overflow: hidden;
}

.recommend--row {
  grid-gap: 10px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .recommend--row {
    grid-gap: 0;
    box-sizing: content-box;
    display: flex;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
  }
}

.recommend-item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  padding: 32px 20px 20px;
  background-color: var(--rec-item-bg-color);
}

.recommend--row_more .recommend-item:nth-child(n+4) {
  display: none;
}

@media screen and (min-width: 64em) {
  .recommend--row_more .recommend-item:nth-child(n+4) {
    display: flex;
  }
}

.recommend-item--flag {
  --flag-color1: #43a047;
  --flag-color2: #247928;
  display: none;
  position: absolute;
  top: 5px;
  left: -10px;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 9px;
  background-color: var(--flag-color1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.recommend-item--flag::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 5px solid var(--flag-color2);
  border-left: 9px solid transparent;
  content: '';
}

.recommend-item--flag::after {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 11px solid var(--flag-color1);
  border-right: 6px solid transparent;
  border-bottom: 11px solid var(--flag-color1);
  content: '';
}

.recommend-item_cash .recommend-item--flag_cash {
  display: flex;
}

.recommend-item_mtt .recommend-item--flag_mtt {
  --flag-color1: #ff9800;
  --flag-color2: #d37e00;
  display: flex;
}

.recommend-item--flag_cash_mtt {
  --flag-color1: #a0588e;
  --flag-color2: #77556e;
}

.recommend-item_cash_mtt .recommend-item--flag_cash_mtt {
  display: flex;
}

.recommend-item--grid {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 1fr 70px;
  width: 100%;
}

.recommend-item--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recommend-item--logo {
  display: flex;
  align-items: center;
  width: 70px;
  height: 70px;
}

.recommend-item--logo svg {
  max-height: 70px;
}

.recommend-pocarr-icon {
  --logo-color-1: #242021;
  display: flex;
  align-items: flex-start;
  width: 100px;
  max-height: 70px;
}

[theme='dark'] .recommend-pocarr-icon {
  --logo-color-1: #e0e0e0;
}

.recommend-mvp-icon {
  --logo-color-1: #206fe4;
  --logo-color-2: #1e4e9f;
  display: flex;
  align-items: flex-start;
  width: 100px;
  max-height: 70px;
}

.recommend-sv-icon {
  --logo-color1: #181a20;
  --logo-color2: #ecd632;
}

.fund-card--logo .recommend-svpoker-icon {
  max-width: 66px;
}

@media screen and (min-width: 48em) {
  .fund-card--logo .recommend-svpoker-icon {
    max-width: 76px;
  }
}

[theme='dark'] .recommend-svpoker-icon {
  --logo-color1: #fff;
}

.recommend-moon-icon {
  --logo-moon1: #000;
}

[theme='dark'] .recommend-moon-icon {
  --logo-moon1: #fff;
}

.recommend-mountainteam-icon {
  --logo-color-1: #282828;
  max-width: 200px;
  max-height: 56px;
}

[theme='dark'] .recommend-mountainteam-icon {
  --logo-color-1: #e0e0e0;
}

.recommend-greenline-icon {
  --logo-color-1: #282828;
  --logo-color-2: #149842;
  max-width: 200px;
  max-height: 60px;
}

[theme='dark'] .recommend-greenline-icon {
  --logo-color-1: #e0e0e0;
  --logo-color-2: #4abc00;
}

.recommend-greenline-jr {
  max-width: 200px;
  max-height: 60px;
}

[theme='dark'] .recommend-greenline-jr {
  --logo-color-1: #e0e0e0;
}

.fund-card--logo .recommend-pm-icon {
  max-width: 72px;
}

@media screen and (min-width: 48em) {
  .fund-card--logo .recommend-pm-icon {
    max-width: 84px;
  }
}

.recommend-kot-icon {
  --logo-color-1: #616161;
  --logo-color-2: #ffc800;
  max-width: 200px;
  max-height: 64px;
}

[theme='dark'] .recommend-kot-icon {
  --logo-color-1: #fff;
}

.fund-card--logo .recommend-kot-icon {
  max-width: 74px;
  height: 74px;
  max-height: initial;
}

@media screen and (min-width: 48em) {
  .fund-card--logo .recommend-kot-icon {
    max-width: 84px;
    height: 84px;
  }
}

.recommend-teama-icon {
  max-width: 200px;
  max-height: 70px;
}

.recommend-itc-icon {
  max-width: 200px;
  max-height: 70px;
}

.recommend-fiatlab-icon {
  max-width: 200px;
  max-height: 64px;
}

.recommend-newage-icon {
  --logo-color: #212121;
  max-width: 70px;
  max-height: 70px;
}

[theme='dark'] .recommend-newage-icon {
  --logo-color: #fff;
}

.recommend-dreamteam-icon {
  max-width: 70px;
  max-height: 70px;
}

[theme='dark'] .recommend-dreamteam-icon {
  --logo-color-1: #9e9e9e;
}

.recommend-item--heading {
  margin: 0 0 8px;
  color: var(--rec-heading-color);
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
}

.recommend-item--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.recommend-item--subheading {
  color: var(--rec-subheading-color);
  font-size: 16px;
  line-height: 23px;
}

.recommend-more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 15px auto 0;
}

@media screen and (min-width: 64em) {
  .recommend-more {
    display: none;
  }
}

.recommend-more::after,
.recommend-more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #d3d3d3);
  content: '';
}

.recommend-more--show {
  padding: 0 20px;
  color: var(--text-2-color, #202020);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.adv-widget {
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  padding: 20px 0;
}

@media screen and (min-width: 64em) {
  .adv-widget {
    max-width: 1276px;
    padding: 20px 15px;
  }
}

.adv-widget--wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  margin: 0 0 12px;
}

.adv-widget--wrap_slider::after {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #efefef;
  content: '';
}

.adv-widget--wrap_room {
  flex-grow: 1;
  justify-content: center;
  margin: 0;
}

.adv-widget--wrap_action {
  flex-grow: 1;
  justify-content: center;
}

@media screen and (min-width: 64em) {
  .adv-widget--inner {
    padding: 20px 0;
  }
}

@media screen and (min-width: 64em) {
  .adv-widget_language {
    max-width: 615px;
  }
}

.adv-widget--grid {
  grid-gap: 20px 0;
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
  max-width: 1246px;
}

@media screen and (min-width: 64em) {
  .adv-widget--grid {
    grid-gap: 0 20px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
  }
}

@media screen and (min-width: 64em) {
  .adv-widget_language .adv-widget--grid {
    grid-template-columns: 1fr;
  }
}

.adv-widget--item {
  --w-promo-bg-color: #fff;
  --w-promo-border-color: #dfd6d4;
  --w-promo-link-color: #4f4f4f;
  --w-promo-banner-bg-color: #fff;
  display: flex;
  position: relative;
  flex-direction: column;
}

.content_theme .adv-widget--item {
  --w-promo-bg-color: var(--layer-3-color, #fff);
  --w-promo-border-color: var(--line-1-color, #dfd6d4);
  --w-promo-link-color: var(--text-2-color, #4f4f4f);
  --w-promo-banner-bg-color: var(--layer-3-color, #fff);
}

.adv-widget--head {
  display: flex;
  align-items: center;
  min-height: 41px;
  margin: 0 0 8px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .adv-widget--head {
    padding: 0;
  }
}

.adv-widget--icon {
  width: 29px;
  height: 33px;
  margin: 0 10px 0 0;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 29px;
}

.adv-widget--icon_forum_slider {
  background-image: url(/nimg/forum-slider.svg);
}

.adv-widget--icon_play_online {
  transform: translateY(-1px);
  background-image: url(/nimg/play-online.svg);
}

.adv-widget--icon_promo_action {
  width: 33px;
  margin: 0 8px 0 0;
  transform: translateY(-3px);
  background-image: url(/nimg/promo-action.svg);
  background-size: 33px;
}

.adv-widget--heading {
  position: relative;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.adv-widget--heading::after {
  position: absolute;
  top: 4px;
  right: -16px;
  width: 10px;
  height: 14px;
  background-image: url(/nimg/arrow-right-short.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
}

.widget-promo--heading {
  display: flex;
  align-items: center;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-promo--card {
  flex-shrink: 0;
  margin: 0 8px 0 0;
}

.widget-promo--arrow {
  flex-shrink: 0;
  margin: 0 0 0 8px;
}

.adv-link {
  display: flex;
  position: relative;
  min-height: 123px;
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid var(--w-promo-border-color);
  border-radius: 4px;
  background-color: var(--w-promo-bg-color);
}

@media screen and (min-width: 64em) {
  .adv-link {
    flex-basis: 33%;
    flex-grow: 1;
  }
}

.adv-link--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 159px;
  margin: 0 10px 0 0;
  padding: 0 0 0 30px;
  background-color: #f7f7f7;
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
}

.adv-link--logo_image {
  position: relative;
}

.adv-link--logo_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-link--content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
}

.adv-link--heading {
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.adv-link--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.adv-link--subheading {
  color: var(--w-promo-link-color);
  font-size: 16px;
  line-height: 19px;
}

.adv-link--arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
}

@media screen and (min-width: 30em) {
  .adv-link--arrow {
    width: 64px;
  }
}

@media screen and (min-width: 64em) {
  .adv-link--arrow {
    width: 48px;
  }
}

.widget-promo--hl {
  flex-shrink: 0;
}

.adv-link:hover .widget-promo--hl {
  --i-color1: #e51e25;
}

.adv-link--inner {
  display: flex;
}

.adv-link--icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background-image: url(/nimg/500plus-logo-black.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 54px;
}

.adv-link--text {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 16px;
}

.adv-link--lead {
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.adv-link--sublead {
  color: #f00;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.adv-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--w-promo-banner-bg-color);
}

.adv-image img {
  max-height: 140px;
}

.widget-onplay-wrap {
  --op-heading-color: var(--text-5-color, #333);
  --op-card-bg-color: var(--layer-3-color, #fff);
  --op-card-heading-color: var(--text-3-color, #000);
  --op-control-color: var(--line-2-color, #d3d3d3);
  --op-more-color: var(--text-2-color, #202020);
  z-index: 1;
  width: 100%;
  max-width: 645px;
  margin: 0 auto 32px;
  padding: 24px 15px 0;
}

@media screen and (min-width: 64em) {
  .widget-onplay-wrap {
    max-width: 1276px;
  }
}

.widget-onplay {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.widget-onplay--head {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .widget-onplay--head {
    margin: 0 0 20px;
  }
}

.widget-onplay--head svg {
  --i-color1: #000;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  margin: 0 6px 0 0;
}

[theme='dark'] .widget-onplay--head svg {
  --i-color1: #9e9e9e;
}

.widget-onplay--heading {
  color: var(--op-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .widget-onplay--heading {
    font-size: 18px;
  }
}

.onplay-slide-wrap {
  position: relative;
}

.onplay-slide {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.onplay-slide--inner {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.onplay-slide--item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  max-width: 298px;
  padding: 32px 20px 20px;
  background-color: var(--op-card-bg-color);
}

@media screen and (min-width: 64em) {
  .onplay-slide--item {
    max-width: 296px;
  }
}

.onplay-slide--item_plain {
  padding: 0 2px 2px 0;
  background-color: transparent;
}

.onplay-slide--item_image {
  background-position: 50% 0;
  background-size: cover;
}

.onplay-slide--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin: 0 0 20px;
}

.onplay-slide--img {
  display: flex;
  justify-content: center;
  height: 52px;
}

[theme='dark'] .onplay-slide--img_light {
  display: none;
}

.onplay-slide--img_dark {
  display: none;
}

[theme='dark'] .onplay-slide--img_dark {
  display: flex;
}

.onplay-slide--img img {
  height: 100%;
}

.onplay-slide--img svg {
  width: 52px;
}

.onplay-slide--heading {
  padding: 0 0 27px;
  color: var(--op-card-heading-color);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.onplay-slide--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.onplay-slide--picture {
  display: flex;
  width: 100%;
  max-width: 352px;
  margin: auto 0 0;
}

.onplay-slide-button {
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

[theme='dark'] .onplay-slide-button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .onplay-slide-button svg {
  --i-color1: #fff;
}

.onplay-slide-button_prev {
  left: -14px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.onplay-slide-button_prev svg {
  transform: rotate(180deg);
}

.onplay-slide-button_next {
  right: -14px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.onplay-slide-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.onplay-slide-button_disabled svg {
  opacity: .35;
}

.onplay-slide-button svg {
  width: 16px;
  height: 12px;
}

.widget-plus {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  padding: 37px 20px 40px;
  background-image: linear-gradient(209deg, #fef8c1 7%, #fbe986 95%);
  box-shadow: 2px 2px 0 #f1c259;
}

.widget-plus--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 86px;
  margin: 0 0 30px;
}

.widget-plus--logo svg {
  width: 90px;
  height: 86px;
  filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, .25));
}

.widget-plus--heading {
  margin: 0 0 12px;
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.widget-plus--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.widget-plus--list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 28px;
  padding: 0;
}

.widget-plus--list li {
  display: flex;
  margin: 0 0 2px;
  color: #e51e25;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}

.widget-plus--list li::before {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin: 0 4px 0 0;
  transform: translateY(6px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--button {
  display: flex;
  position: relative;
  width: 192px;
  height: 34px;
  margin: auto 0 0;
}

.widget-plus--button::before {
  position: absolute;
  top: 7px;
  left: -15px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--button::after {
  position: absolute;
  top: 7px;
  right: -15px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--stars {
  position: relative;
  width: 100%;
}

.widget-plus--stars::before {
  position: absolute;
  top: 1px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--stars::after {
  position: absolute;
  top: 1px;
  right: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--flag {
  position: relative;
  left: 8px;
  width: 176px;
  height: 34px;
  background-color: #f00;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.widget-plus--flag span::before {
  display: inline-flex;
  flex-shrink: 0;
  width: 9px;
  height: 14px;
  margin: 0 6px 0 0;
  transform: translateY(1px);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='14' viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.800781 14V0L8.80078 7L0.800781 14Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.widget-plus--flag::before {
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 17px solid #f00;
  border-bottom: 17px solid #f00;
  border-left: 8px solid transparent;
  content: '';
}

.widget-plus--flag::after {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 17px solid #f00;
  border-right: 8px solid transparent;
  border-bottom: 17px solid #f00;
  content: '';
}

.onplay-more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 17px auto 0;
}

@media screen and (min-width: 64em) {
  .onplay-more {
    max-width: 100%;
  }
}

.onplay-more::after,
.onplay-more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--op-control-color);
  content: '';
}

.onplay-more--link {
  padding: 0 20px;
  color: var(--op-more-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.widget-plus_greenline {
  background-image: linear-gradient(209deg, #e1f5e1 7%, #b9ebbc 95%);
  box-shadow: 2px 2px 0 #91bd93;
}

.widget-plus_greenline .widget-plus--logo {
  width: auto;
}

.widget-plus_greenline .widget-plus--logo svg {
  width: 100px;
  height: 84px;
  filter: none;
}

.widget-plus_greenline .widget-plus--list li {
  color: #094a21;
}

.widget-plus--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 28px;
}

.widget-plus--text p {
  margin: 0 0 2px;
  color: #e51e25;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}

.widget-plus--accent {
  margin: 0 4px;
  padding: 3px 6px;
  border-radius: 3px;
  background-color: #f00;
  color: #fff;
  font-weight: 700;
}

.widget-plus_july {
  background-image: linear-gradient(209deg, #d1feff 7%, #acfefe 95%);
  box-shadow: 2px 2px 0 #5dc8c7;
}

.widget-plus_july .widget-plus--logo {
  width: auto;
}

.widget-plus_july .widget-plus--logo svg {
  filter: none;
}

.widget-plus_july .widget-plus--list li {
  color: #333;
}

.widget-plus_july .widget-plus--button {
  width: 212px;
}

.widget-plus_july .widget-plus--flag {
  width: 196px;
}

.widget-plus_october .widget-plus--list li {
  color: #333;
}

.widget-plus_november {
  background-image: linear-gradient(125deg, #e1f5fe 0%, #7fd5fa 100%);
  box-shadow: 2px 2px 0 #63b6f6;
}

.widget-plus_november .widget-plus--heading {
  color: #253c4f;
}

.widget-plus_november .widget-plus--text p {
  color: #f00;
}

.widget-plus_november .widget-plus--text span {
  color: #253c4f;
}

.widget-plus_november .widget-plus--flag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-plus_november .widget-plus--flag span::before {
  display: none;
}

.widget-plus--subheading {
  margin: 0 0 19px;
  color: #253c4f;
  font-family: "PT Serif", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.widget-plus--telegram {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
}

.widget-plus_december {
  background-image: linear-gradient(125deg, #e8fee1 0%, #71d978 100%);
  box-shadow: 2px 2px 0 #06a619;
}

.widget-plus_december .widget-plus--logo {
  width: 130px;
  height: 100px;
  margin: 0 0 16px;
}

.widget-plus_december .widget-plus--heading {
  color: #253c4f;
}

.widget-plus_december .widget-plus--text p {
  color: #f00;
}

.widget-plus_january {
  background-image: linear-gradient(125deg, #e1feea, #71d9b3);
  box-shadow: 2px 2px 0 #06a673;
}

.widget-plus_january .widget-plus--heading {
  color: #253c4f;
}

.widget-plus_january .widget-plus--logo {
  width: 130px;
  height: 100px;
  margin: 0 0 16px;
}

.widget-plus_january .widget-plus--text p {
  color: #254f4b;
}

.widget-plus_january .widget-plus--button {
  width: 212px;
}

.widget-plus_january .widget-plus--flag {
  width: 196px;
}

.widget-plus_march {
  background-image: linear-gradient(125deg, #e1f5fe, #89dad3);
  box-shadow: 2px 2px 0 #27b3a6;
}

.widget-plus_march .widget-plus--heading {
  color: #253c4f;
}

.widget-plus_march .widget-plus--logo {
  width: 100px;
  height: 99px;
  margin: 0 0 16px;
}

.widget-plus_march .widget-plus--text p {
  color: #f00;
}

.bestroom-widget {
  width: 100%;
  max-width: 615px;
  margin: 0 auto 40px;
  padding: 20px 0;
}

@media screen and (min-width: 64em) {
  .bestroom-widget {
    max-width: 1276px;
    padding: 20px 15px;
  }
}

.bestroom-widget--grid {
  gap: 20px 0;
  display: grid;
  grid-auto-rows: minmax(116px, auto);
}

@media screen and (min-width: 64em) {
  .bestroom-widget--grid {
    gap: 0 20px;
    grid-template-columns: minmax(290px, 1fr) minmax(290px, 1fr) minmax(290px, 1fr);
  }
}

.bestroom-widget--item {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
}

.bestroom-cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 20px;
}

.bestroom-cta--image {
  display: none;
}

@media screen and (min-width: 64em) {
  .bestroom-cta--image {
    display: flex;
  }
}

.bestroom-cta--image_mobile {
  display: flex;
}

@media screen and (min-width: 64em) {
  .bestroom-cta--image_mobile {
    display: none;
  }
}

.bestroom-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--layer-3-color, #fff);
}

.bestroom-image img {
  max-height: 140px;
}

.bestroom-content {
  --br-heading-color: var(--text-5-color, #333);
  --br-control-color: var(--line-2-color, #d3d3d3);
  --br-more-color: var(--text-2-color, #202020);
  --br-card-bg-color: var(--layer-3-color, #fff);
  --br-card-color: var(--text-3-color, #212121);
  --br-card-name-color: var(--text-2-color, #000);
  --br-card-border-color: var(--line-1-color, #ebedee);
  --br-tooltip-bg-color: var(--layer-5-color, #616161);
  --br-tooltip-color: var(--text-4-color, #fff);
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

@media screen and (min-width: 40em) {
  .bestroom-content {
    padding: 0;
  }
}

@media screen and (min-width: 64em) {
  .bestroom-content {
    grid-column: span 2;
  }
}

.bestroom-content--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 19px;
}

.bestroom-content--header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .bestroom-content--header svg {
  --i-color1: #9e9e9e;
}

.bestroom-content--heading {
  color: var(--br-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.bestroom-inner {
  gap: 10px 0;
  display: grid;
  grid-template-columns: 1fr;
}

.bestroom-card {
  gap: 23px 0;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  padding: 22px 20px 20px;
  border: 1px solid var(--br-card-bg-color);
  background-color: var(--br-card-bg-color);
}

@media screen and (min-width: 48em) {
  .bestroom-card {
    gap: 0 20px;
    grid-template-columns: 180px 1fr 174px;
    padding: 22px 22px 22px 16px;
  }
}

@media screen and (min-width: 64em) {
  .bestroom-card {
    min-height: 125px;
  }
}

.bestroom-card_new {
  padding: 36px 20px 20px;
}

@media screen and (min-width: 48em) {
  .bestroom-card_new {
    padding: 36px 22px 22px 16px;
  }
}

[theme='dark'] .bestroom-card_new {
  border-color: #1eac34;
}

.bestroom-card_new::after {
  display: flex;
  position: absolute;
  top: 28px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 5px solid #12661f;
  border-left: 9px solid transparent;
  content: '';
}

.bestroom-card--flag {
  display: none;
  position: absolute;
  top: 6px;
  left: -10px;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px 0 22px;
  background-color: #1eac34;
  background-image: url(/nimg/i-smallfire.svg);
  background-position: 8px 5px;
  background-repeat: no-repeat;
  background-size: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.bestroom-card_new .bestroom-card--flag {
  display: flex;
}

.bestroom-card--logo {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--br-card-border-color);
}

@media screen and (min-width: 48em) {
  .bestroom-card--logo {
    grid-template-columns: 64px 1fr;
    padding: 0;
    border: 0;
  }
}

.bestroom-card--img {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 64px;
  height: 64px;
}

@media screen and (min-width: 48em) {
  .bestroom-card--img {
    justify-self: start;
  }
}

[theme='dark'] .bestroom-card--img_light {
  display: none;
}

.bestroom-card--img_dark {
  display: none;
}

[theme='dark'] .bestroom-card--img_dark {
  display: flex;
}

.bestroom-card--img img {
  height: 100%;
}

.bestroom-card--wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bestroom-card--name {
  margin: 0 0 8px;
  color: var(--br-card-name-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.bestroom-card--score {
  display: flex;
}

.bestroom-card--score svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}

.bestroom-card--result {
  color: #e51e25;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.bestroom-card--content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .bestroom-card--content {
    align-items: flex-start;
  }
}

.bestroom-card--list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em) {
  .bestroom-card--list {
    align-items: flex-start;
  }
}

.bestroom-card--list li {
  margin: 0;
  color: var(--br-card-color);
  font-size: 15px;
  line-height: 21px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .bestroom-card--list li {
    text-align: left;
  }
}

.bestroom-card--list li:not(:last-child) {
  margin: 0 0 8px;
}

.bestroom-card--list li a {
  color: var(--br-card-color);
  font-size: 15px;
  line-height: 21px;
}

.bestroom-card--link {
  display: none;
  align-items: center;
  color: var(--br-card-color);
  font-size: 15px;
  line-height: 21px;
  white-space: nowrap;
}

.bestroom-card_code .bestroom-card--link {
  display: flex;
  margin: 8px 0 0;
}

.bestroom-card--link svg {
  flex-shrink: 0;
  width: 12px;
  height: 10px;
  margin: 0 6px 0 0;
}

:root[theme='dark'] .bestroom-card--link svg {
  --i-color1: #fff;
}

.bestroom-card--action {
  gap: 13px 0;
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media screen and (min-width: 48em) {
  .bestroom-card--action {
    max-width: 174px;
  }
}

.bestroom-card--action:not(:has(.bestroom-card--reggrid)) {
  align-self: center;
}

.bestroom-card--reg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .bestroom-card--reg {
    max-width: 174px;
  }
}

.bestroom-card--review {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--br-card-color);
  font-size: 15px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .bestroom-card--review {
    max-width: 174px;
  }
}

.bestroom-card_code .bestroom-card--review {
  display: none;
}

.bestroom-card--review svg {
  flex-shrink: 0;
  width: 12px;
  height: 10px;
  margin: 0 6px 0 0;
}

:root[theme='dark'] .bestroom-card--review svg {
  --i-color1: #fff;
}

.bestroom-card--copy {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--br-card-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.bestroom-card--copy:active {
  top: 1px;
}

.bestroom-card_code .bestroom-card--copy {
  display: flex;
}

.bestroom-card--copy svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
}

:root[theme='dark'] .bestroom-card--copy svg {
  --i-color1: #fff;
}

.bestroom-card--copy strong {
  margin: 0 0 0 4px;
  color: #e51e25;
  font-weight: 500;
  white-space: nowrap;
}

.bestroom-card--copy span {
  z-index: 1;
  position: absolute;
  top: -30px;
  left: -54px;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--br-tooltip-bg-color);
  color: var(--br-tooltip-color);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.bestroom-card--copy span::after {
  position: absolute;
  bottom: -6px;
  left: 55px;
  width: 0;
  height: 0;
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--br-tooltip-bg-color) transparent transparent transparent;
  content: '';
}

.bestroom-card--regcopy {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #eee;
  font-size: 15px;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .bestroom-card--regcopy {
    max-width: 174px;
  }
}

.bestroom-card--regcopy:active {
  top: 1px;
}

.bestroom-card_code .bestroom-card--regcopy {
  display: inline-flex;
}

.bestroom-card--regcopy svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
}

[theme='dark'] .bestroom-card--regcopy svg {
  --i-color1: #fff;
}

.bestroom-card--regcopy strong {
  margin: 0 0 0 4px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.bestroom-card--reggrid {
  gap: unset;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
}

.bestroom-card--reggrid a {
  flex: 1;
}

@container (max-width: 200px) {
  .bestroom-card--reggrid {
    gap: 8px;
    display: grid;
    grid-template-areas: "info copy" "reg reg";
    grid-template-columns: min-content 1fr;
    justify-content: normal;
    width: 100%;
    margin: 0;
  }
  .bestroom-card--reggrid a {
    border-radius: 4px;
  }
  .bestroom-card--reggrid a:first-of-type {
    border-right: 1px dashed #d2d2d2;
  }
  .bestroom-card--reggrid .regref,
.bestroom-card--reggrid .regref-copy,
  .bestroom-card--reggrid .regref-copy--link {
    gap: 0;
    width: 100%;
  }
}

.bestroom-card--bonus {
  border-bottom: 1px dashed #757575;
  color: var(--text-3-color, #212121);
  font-size: 15px;
  line-height: 21px;
  white-space: nowrap;
  cursor: pointer;
}

.refcode-tooltip {
  width: 100%;
  max-width: 360px;
  padding-bottom: 24px;
  background-color: var(--layer-4-color, #f9f7f0);
}

.refcode-tooltip > :last-child {
  padding: 0 20px;
}

.refcode-tooltip--title {
  padding: 20px 20px 17px 24px;
  background-color: #45ae52;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.refcode-tooltip--title strong {
  color: #fff;
}

.refcode-tooltip--text {
  padding: 20px 20px 17px 24px;
  background-color: #45ae52;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.bestroom-widget--form {
  --br-form-bg-color: var(--layer-3-color, #fdfbf2);
  --br-form-color: var(--text-2-color, #212121);
  --br-form-subhead-color: var(--text-5-color, #8e8e8e);
  --br-form-button-bg-color: var(--control-1-border-color, #202020);
  position: relative;
  margin: 0 0 20px;
  padding: 50px 16px 40px;
  border: 1px solid #f1c259;
  background-color: var(--br-form-bg-color);
  box-shadow: 2px 2px 0 rgba(241, 194, 89, .2);
}

@media screen and (min-width: 40em) {
  .bestroom-widget--form {
    padding: 50px 28px 40px 34px;
  }
}

.bestroom-form-icon {
  position: absolute;
  top: -40px;
  left: calc(50% - 26px);
  width: 52px;
  height: 60px;
}

.bestroom-form-icon svg {
  width: 52px;
  height: 60px;
}

:root[theme='dark'] .bestroom-form-icon svg {
  --i-color1: #1a1a1a;
  --i-color2: #9e9e9e;
}

.bestroom-form-content {
  width: 100%;
}

.bestroom-form-heading {
  margin: 0 0 8px;
  color: var(--br-form-color);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
}

.bestroom-form-subheading {
  color: var(--br-form-subhead-color);
  font-size: 15px;
  line-height: 21px;
}

.bestroom-form {
  width: 100%;
  padding: 22px 0 0;
}

.bestroom-form--grid {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 390px;
  margin: 0 0 20px;
}

.bestroom-form--group {
  display: flex;
  flex-direction: column;
}

.bestroom-form--label {
  margin: 0 0 5px;
  color: var(--br-form-color);
  font-size: 15px;
  line-height: 21px;
}

.bestroom-form--wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 260px;
  height: 34px;
  margin: 8px 0 0;
}

.bestroom-form--note {
  color: #a9a9a9;
  font-size: 13px;
  line-height: 17px;
}

.bestroom-form--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 13px 20px 12px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  background-image: url(/nimg/select-arrow-24.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #212121;
  font-family: inherit;
  font-size: 15px;
  line-height: 21px;
}

.bestroom-form--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 13px 20px 12px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  color: #212121;
  font-family: inherit;
  font-size: 15px;
  line-height: 21px;
}

.bestroom-form--field::-moz-placeholder {
  color: #a8a8a8;
}

.bestroom-form--field::placeholder {
  color: #a8a8a8;
}

.bestroom-form--submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 82px 8px;
  border: 0;
  background-color: var(--br-form-button-bg-color);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.bestroom-more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 17px auto 0;
}

@media screen and (min-width: 64em) {
  .bestroom-more {
    max-width: 100%;
  }
}

.bestroom-more::after,
.bestroom-more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--br-control-color);
  content: '';
}

.bestroom-more--link {
  padding: 0 20px;
  color: var(--br-more-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.article-body .bestroom-novice {
  margin: 40px 0;
  font-family: Roboto, Arial, sans-serif;
}

.article-body .bestroom-novice a {
  text-decoration: none;
}

.article-body .bestroom-novice--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

@media screen and (min-width: 40em) {
  .article-body .bestroom-novice--header {
    position: relative;
    justify-content: center;
    margin-bottom: 12px;
    border-bottom: none;
  }
  .article-body .bestroom-novice--header::before {
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-5-color, #333);
    content: '';
  }
}

.article-body .bestroom-novice--header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .article-body .bestroom-novice--header svg {
  --i-color1: #9e9e9e;
}

.article-body .bestroom-novice--title {
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.article-body .bestroom-novice--title-wrapper {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 40em) {
  .article-body .bestroom-novice--title-wrapper {
    position: relative;
    padding: 0 24px;
    background-color: var(--layer-2a-color, #fff);
  }
}

.article-body .bestroom-novice--inner {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 48em) {
  .article-body .bestroom-novice--inner {
    gap: 12px;
    align-items: stretch;
    justify-content: center;
  }
}

.article-body .bestroom-novice-card--wrap {
  gap: 24px;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .article-body .bestroom-novice-card--wrap {
    height: 100%;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-1-color, #f2f2f2);
  }
}

.article-body .bestroom-novice-card {
  gap: 12px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

@media screen and (min-width: 48em) {
  .article-body .bestroom-novice-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 313px;
    padding: 19px 24px 18px;
    border: 1px solid var(--line-1-color, #f2f2f2);
    border-radius: 12px;
  }
}

@media screen and (min-width: 48em) and (max-width: 1301px) {
  .article-body .bestroom-novice-card:nth-child(n+3) {
    display: none;
  }
}

.article-body .bestroom-novice-card--logo {
  flex-basis: 40px;
}

.article-body .bestroom-novice-card--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}

.article-body .bestroom-novice-card--img {
  width: 40px;
  height: 40px;
}

[theme='dark'] .article-body .bestroom-novice-card--img_light {
  display: none;
}

.article-body .bestroom-novice-card--img_dark {
  display: none;
}

[theme='dark'] .article-body .bestroom-novice-card--img_dark {
  display: flex;
}

.article-body .bestroom-novice-card--heading {
  display: flex;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
}

.article-body .bestroom-novice-card--title {
  margin: 0 6px 0 0;
  color: var(--text-1-color, #000);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.article-body .bestroom-novice-card--score {
  display: flex;
  color: var(--text-1-color, #000);
}

.article-body .bestroom-novice-card--score svg {
  --i-color1: var(--text-1-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.article-body .bestroom-novice-card--result {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  white-space: nowrap;
}

.article-body .bestroom-novice-card--description {
  display: inline-block;
  margin: 0;
  color: var(--text-4-color, #828282);
  font-family: Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.article-body .bestroom-novice-card--links {
  gap: 16px;
  display: none;
  margin-top: 17px;
}

@media screen and (min-width: 40em) {
  .article-body .bestroom-novice-card--links {
    display: flex;
  }
}

.article-body .bestroom-novice-card--link-item {
  gap: 4px;
  display: flex;
  align-items: center;
  color: var(--text-2-color, #333);
  font-size: 12px;
  white-space: nowrap;
}

.article-body .bestroom-novice-card--link-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 18px;
}

:root[theme='dark'] .article-body .bestroom-novice-card--link-item svg {
  --i-color1: var(--text-2-color);
}

.article-body .bestroom-novice-card--link-item span {
  line-height: 1;
  white-space: break-spaces;
}

.article-body .bestroom-novice-card--action {
  display: flex;
  justify-content: flex-end;
}

.article-body .referral-novice--reg {
  display: inline-block;
  position: relative;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.article-body .referral-novice {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.article-body .referral-novice span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.article-body .referral-novice span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.article-body .referral-novice--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.article-body .referral-novice--info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.article-body .referral-novice--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.article-body .referral-novice--info-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

:root[theme='dark'] .article-body .referral-novice--info-icon {
  --i-color1: var(--text-5-color);
  --i-color2: #000;
}

.article-body .referral-novice-tooltip {
  display: flex;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

@media screen and (min-width: 40em) {
  .article-body .referral-novice-tooltip {
    padding: 26px 31px 29px 26px;
  }
}

.article-body .referral-novice-tooltip--content {
  font-size: inherit;
}

.article-body .referral-novice-tooltip--list-title {
  margin-bottom: 16px;
  color: var(--text-2-color, #202020);
  font-size: inherit;
  font-weight: 700;
  line-height: 20px;
}

.article-body .referral-novice-tooltip--list {
  margin: 0;
}

.article-body .referral-novice-tooltip--list ul {
  padding-left: 12px;
}

.article-body .referral-novice-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.article-body .referral-novice-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.article-body .referral-novice--tooltip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.article-body .referral-novice--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.article-body .referral-novice--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-width: 105px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #6d6d6d);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.article-body .referral-novice--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.article-body .referral-novice--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.article-body .referral-novice--copy + .referral-novice--reg {
  border-radius: 0 4px 4px 0;
}

.article-body .referral-novice--copy-icon {
  width: 12px;
  height: 12px;
}

:root[theme='dark'] .article-body .referral-novice--copy-icon {
  --i-color1: var(--text-2-color);
}

.article-body .referral-novice--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.article-body .referral-novice--notify.animate {
  display: flex;
  animation-name: slide;
}

.article-body .referral-novice--notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .article-body .referral-novice--notify-icon {
  --i-color1: #00ff92;
}

.article-body .referral-novice--notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .article-body .referral-novice--notify-text {
  color: #00ff92;
}

.article-body .referral-novice--bonus {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

.article-body .bestroom-novice-support {
  display: none;
  justify-content: space-between;
  padding: 23px 23px 23px 18px;
  background-image: url("/nimg/s-bestroom-support-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
}

@media screen and (min-width: 40em) {
  .article-body .bestroom-novice-support {
    display: flex;
  }
}

:root[theme='dark'] .article-body .bestroom-novice-support {
  filter: invert(1) brightness(2) grayscale(1);
}

.article-body .bestroom-novice-support--title {
  margin-bottom: 9px;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.article-body .bestroom-novice-support--subtitle {
  margin-bottom: 11px;
  font-size: 13px;
  line-height: 1;
}

.article-body .bestroom-novice-support--bottom-line {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 13px;
}

.article-body .bestroom-novice-support--bottom-line svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.article-body .bestroom-novice-support--icons {
  gap: 8px;
  display: flex;
}

.article-body .bestroom-novice-support--icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
}

.article-body .bestroom-novice-support--icon-item svg {
  aspect-ratio: 1 / 1;
  width: 14px;
}

.bestroom-novice {
  margin: 40px 0;
  font-family: Roboto, Arial, sans-serif;
}

.bestroom-novice a {
  text-decoration: none;
}

.bestroom-novice--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

@media screen and (min-width: 40em) {
  .bestroom-novice--header {
    position: relative;
    justify-content: center;
    margin-bottom: 12px;
    border-bottom: none;
  }
  .bestroom-novice--header::before {
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-5-color, #333);
    content: '';
  }
}

.bestroom-novice--header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .bestroom-novice--header svg {
  --i-color1: #9e9e9e;
}

.bestroom-novice--title {
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.bestroom-novice--title-wrapper {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 40em) {
  .bestroom-novice--title-wrapper {
    position: relative;
    padding: 0 24px;
    background-color: var(--layer-2a-color, #fff);
  }
}

.bestroom-novice--inner {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 48em) {
  .bestroom-novice--inner {
    gap: 12px;
    align-items: stretch;
    justify-content: center;
  }
}

.bestroom-novice-card--wrap {
  gap: 24px;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .bestroom-novice-card--wrap {
    height: 100%;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-1-color, #f2f2f2);
  }
}

.bestroom-novice-card {
  gap: 12px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

@media screen and (min-width: 48em) {
  .bestroom-novice-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 313px;
    padding: 19px 24px 18px;
    border: 1px solid var(--line-1-color, #f2f2f2);
    border-radius: 12px;
  }
}

@media screen and (min-width: 48em) and (max-width: 1301px) {
  .bestroom-novice-card:nth-child(n+3) {
    display: none;
  }
}

.bestroom-novice-card--logo {
  flex-basis: 40px;
}

.bestroom-novice-card--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bestroom-novice-card--img {
  width: 40px;
  height: 40px;
}

[theme='dark'] .bestroom-novice-card--img_light {
  display: none;
}

.bestroom-novice-card--img_dark {
  display: none;
}

[theme='dark'] .bestroom-novice-card--img_dark {
  display: flex;
}

.bestroom-novice-card--heading {
  display: flex;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-decoration: none;
}

.bestroom-novice-card--title {
  margin: 0 6px 0 0;
  color: var(--text-1-color, #000);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.bestroom-novice-card--score {
  display: flex;
  color: var(--text-1-color, #000);
}

.bestroom-novice-card--score svg {
  --i-color1: var(--text-1-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.bestroom-novice-card--result {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  white-space: nowrap;
}

.bestroom-novice-card--description {
  margin: 0;
  color: var(--text-4-color, #828282);
  font-family: Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.bestroom-novice-card--links {
  gap: 16px;
  display: none;
  margin-top: 17px;
}

@media screen and (min-width: 40em) {
  .bestroom-novice-card--links {
    display: flex;
  }
}

.bestroom-novice-card--link-item {
  gap: 4px;
  display: flex;
  align-items: center;
  color: var(--text-2-color, #333);
  font-size: 12px;
  white-space: nowrap;
}

.bestroom-novice-card--link-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 18px;
}

:root[theme='dark'] .bestroom-novice-card--link-item svg {
  --i-color1: var(--text-2-color);
}

.bestroom-novice-card--link-item span {
  line-height: 1;
  white-space: break-spaces;
}

.bestroom-novice-card--action {
  display: flex;
  justify-content: flex-end;
}

.referral-novice--reg {
  display: inline-block;
  position: relative;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.referral-novice {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.referral-novice span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.referral-novice span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.referral-novice--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.referral-novice--info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.referral-novice--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.referral-novice--info-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

:root[theme='dark'] .referral-novice--info-icon {
  --i-color1: var(--text-5-color);
  --i-color2: #000;
}

.referral-novice-tooltip {
  display: flex;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

@media screen and (min-width: 40em) {
  .referral-novice-tooltip {
    padding: 26px 31px 29px 26px;
  }
}

.referral-novice-tooltip--content {
  font-size: inherit;
}

.referral-novice-tooltip--list-title {
  margin-bottom: 16px;
  color: var(--text-2-color, #202020);
  font-size: inherit;
  font-weight: 700;
  line-height: 20px;
}

.referral-novice-tooltip--list {
  margin: 0;
}

.referral-novice-tooltip--list ul {
  padding-left: 12px;
}

.referral-novice-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.referral-novice-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.referral-novice--tooltip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.referral-novice--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.referral-novice--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-width: 105px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #6d6d6d);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.referral-novice--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.referral-novice--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.referral-novice--copy + .referral-novice--reg {
  border-radius: 0 4px 4px 0;
}

.referral-novice--copy-icon {
  width: 12px;
  height: 12px;
}

:root[theme='dark'] .referral-novice--copy-icon {
  --i-color1: var(--text-2-color);
}

.referral-novice--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.referral-novice--notify.animate {
  display: flex;
  animation-name: slide;
}

.referral-novice--notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .referral-novice--notify-icon {
  --i-color1: #00ff92;
}

.referral-novice--notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .referral-novice--notify-text {
  color: #00ff92;
}

.referral-novice--bonus {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

.bestroom-novice-support {
  display: none;
  justify-content: space-between;
  padding: 23px 23px 23px 18px;
  background-image: url("/nimg/s-bestroom-support-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
}

@media screen and (min-width: 40em) {
  .bestroom-novice-support {
    display: flex;
  }
}

:root[theme='dark'] .bestroom-novice-support {
  filter: invert(1) brightness(2) grayscale(1);
}

.bestroom-novice-support--title {
  margin-bottom: 9px;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.bestroom-novice-support--subtitle {
  margin-bottom: 11px;
  font-size: 13px;
  line-height: 1;
}

.bestroom-novice-support--bottom-line {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 13px;
}

.bestroom-novice-support--bottom-line svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.bestroom-novice-support--icons {
  gap: 8px;
  display: flex;
}

.bestroom-novice-support--icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
}

.bestroom-novice-support--icon-item svg {
  aspect-ratio: 1 / 1;
  width: 14px;
}

.bestroom2-widget {
  width: 100%;
  height: 100%;
  background-color: var(--layer-3-color, #fff);
}

.bestroom2-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bestroom2-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bestroom2-content--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

.bestroom2-content--header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .bestroom2-content--header svg {
  --i-color1: #9e9e9e;
}

.bestroom2-content--heading {
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.bestroom2-card {
  gap: 12px;
  display: flex;
  flex-grow: 1;
  width: 100%;
  padding: 19px 24px 22px;
  border-bottom: 1px solid var(--line-1-color, #f2f2f2);
}

@media screen and (min-width: 40em) {
  .bestroom2-card {
    padding: 19px 24px 18px;
  }
}

.bestroom2-card--wrap {
  width: 100%;
}

@media screen and (min-width: 0) {
  .bestroom2-card--wrap {
    gap: 12px 0;
    display: grid;
    grid-template-areas: 'content content' 'links action';
  }
}

@media screen and (min-width: 79.375em) {
  .bestroom2-card--wrap {
    gap: 12px 36px;
    grid-template-areas: 'content action' 'links action';
  }
}

.bestroom2-card--logo {
  flex-basis: 40px;
}

@media screen and (min-width: 79.375em) {
  .bestroom2-card--logo {
    display: flex;
    flex-basis: 68px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    border: 1px solid var(--line-1-color, #e8e8e8);
    border-radius: 50%;
  }
}

.bestroom2-card--content {
  display: flex;
  grid-area: content;
  flex-direction: column;
  justify-content: space-between;
}

.bestroom2-card--img {
  max-width: 40px;
  max-height: 40px;
}

[theme='dark'] .bestroom2-card--img_light {
  display: none;
}

.bestroom2-card--img_dark {
  display: none;
}

[theme='dark'] .bestroom2-card--img_dark {
  display: flex;
}

.bestroom2-card--heading {
  display: flex;
  margin: 0 0 6px;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.bestroom2-card--title {
  margin: 0 6px 0 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.bestroom2-card--score {
  display: flex;
}

.bestroom2-card--score svg {
  --i-color1: var(--text-1-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.bestroom2-card--result {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

.bestroom2-card--description {
  margin: 0;
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

.bestroom2-card--links {
  display: none;
  grid-area: links;
}

@media screen and (min-width: 40em) {
  .bestroom2-card--links {
    gap: 16px;
    display: flex;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .bestroom2-card--links {
    gap: 8px 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.bestroom2-card--link-item {
  gap: 4px;
  display: flex;
  align-items: center;
  color: var(--text-2-color, #333);
  font-size: 12px;
  white-space: nowrap;
}

.bestroom2-card--link-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 18px;
}

:root[theme='dark'] .bestroom2-card--link-item svg {
  --i-color1: var(--text-2-color);
}

.bestroom2-card--action {
  display: flex;
  grid-area: action;
  justify-content: flex-end;
}

.bestroom2-card--action_nocode {
  justify-content: flex-start;
}

@media screen and (min-width: 40em) {
  .bestroom2-card--action_nocode {
    justify-content: space-between;
  }
}

.bestroom2-card--action_nocode .referral-code--copy,
.bestroom2-card--action_nocode .referral-code--info {
  display: none;
}

.referral-code--reg {
  display: inline-block;
  position: relative;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.referral-code--reg_code {
  border-radius: 0 4px 4px 0;
}

.referral-code {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.referral-code span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.referral-code span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.referral-code--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.referral-code--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.referral-code--text {
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-5-color, #6d6d6d);
  font-size: 13px;
}

.referral-code--info-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

:root[theme='dark'] .referral-code--info-icon {
  --i-color1: var(--text-5-color);
  --i-color2: #000;
}

.referral-code-tooltip {
  display: flex;
  width: 100%;
  max-width: 450px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

.referral-code-tooltip--content {
  font-size: inherit;
}

.referral-code-tooltip--list-title {
  margin-bottom: 16px;
  color: var(--text-2-color, #202020);
  font-size: inherit;
  font-weight: 700;
  line-height: 20px;
}

.referral-code-tooltip--list {
  margin-bottom: 12px;
  padding: 20px 20px 17px 24px;
  background-color: #45ae52;
  color: #fff;
  font-size: inherit;
  line-height: 20px;
}

.referral-code-tooltip--list ul {
  padding-left: 12px;
}

.referral-code-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.referral-code-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.referral-code--tooltip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.referral-code--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.referral-code--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #6d6d6d);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.referral-code--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.referral-code--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.referral-code--bonus {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

.referral-code--copy-icon {
  width: 12px;
  height: 12px;
}

:root[theme='dark'] .referral-code--copy-icon {
  --i-color1: var(--text-2-color);
}

.referral-code--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.referral-code--notify.animate {
  display: flex;
  animation-name: slide;
}

.referral-code--notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .referral-code--notify-icon {
  --i-color1: #00ff92;
}

.referral-code--notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .referral-code--notify-text {
  color: #00ff92;
}

.bestroom2-support {
  display: none;
  justify-content: space-between;
  padding: 23px 23px 23px 18px;
  background-image: url("/nimg/s-bestroom-support-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
}

@media screen and (min-width: 40em) {
  .bestroom2-support {
    display: flex;
  }
}

:root[theme='dark'] .bestroom2-support {
  filter: invert(1) brightness(2) grayscale(1);
}

.bestroom2-support--title {
  margin-bottom: 9px;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.bestroom2-support--subtitle {
  margin-bottom: 11px;
  font-size: 13px;
  line-height: 1;
}

.bestroom2-support--bottom-line {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 13px;
}

.bestroom2-support--bottom-line svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.bestroom2-support--icons {
  gap: 8px;
  display: flex;
}

.bestroom2-support--icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
}

.bestroom2-support--icon-item svg {
  aspect-ratio: 1 / 1;
  width: 14px;
}

.article-body .stripe-bestroom {
  gap: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
}

@media screen and (min-width: 79.375em) {
  .article-body .stripe-bestroom {
    flex-wrap: nowrap;
  }
}

.article-body .stripe-bestroom--card {
  width: 313px;
  padding: 24px;
  border-radius: 12px;
  background-color: #0f0f0f;
}

@media screen and (min-width: 40em) and (max-width: 1270px) {
  .article-body .stripe-bestroom--card:nth-child(n+3) {
    display: none;
  }
}

@media screen and (min-width: 79.375em) {
  .article-body .stripe-bestroom--card {
    flex: 1;
    width: unset;
  }
}

.article-body .stripe-bestroom--top {
  gap: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}

.article-body .stripe-bestroom--logo {
  width: 32px;
  height: 32px;
}

.article-body .stripe-bestroom--heading {
  display: flex;
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.article-body .stripe-bestroom--title {
  margin: 0 6px 0 0;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.article-body .stripe-bestroom--score {
  display: flex;
}

.article-body .stripe-bestroom--score svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.article-body .stripe-bestroom--result {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

.article-body .stripe-bestroom--action {
  display: flex;
  justify-content: flex-end;
}

.article-body .stripe-bestroom--reg {
  display: inline-block;
  padding: 9px 17px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.article-body .stripe-bestroom--reg_code {
  border-radius: 0 4px 4px 0;
}

.article-body .stripe-bestroom--reg-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media screen and (min-width: 79.375em) {
  .article-body .stripe-bestroom--reg-wrap {
    justify-content: space-between;
  }
}

.article-body .stripe-bestroom--reg-wrap span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.article-body .stripe-bestroom--reg-wrap span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.article-body .stripe-bestroom--info {
  gap: 5px;
  display: flex;
  position: relative;
  align-items: center;
  margin-right: 11px;
  cursor: pointer;
}

.article-body .stripe-bestroom--info p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
}

.article-body .stripe-bestroom--info svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.article-body .stripe-bestroom--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.article-body .stripe-bestroom--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.article-body .stripe-bestroom--copy {
  gap: 5px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
  padding: 0 8px;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: #f8f5ec;
  color: #6d6d6d;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
}

.article-body .stripe-bestroom--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.article-body .stripe-bestroom--copy:active {
  top: 1px;
}

.article-body .stripe-bestroom--copy svg {
  --i-color1: #6d6d6d;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.article-body .stripe-bestroom--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.article-body .stripe-bestroom .stripe-referral--reg {
  display: inline-block;
  position: relative;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.article-body .stripe-bestroom .stripe-referral {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 79.375em) {
  .article-body .stripe-bestroom .stripe-referral {
    justify-content: space-between;
  }
}

.article-body .stripe-bestroom .stripe-referral span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.article-body .stripe-bestroom .stripe-referral span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.article-body .stripe-bestroom .stripe-referral a {
  text-decoration: none;
}

.article-body .stripe-bestroom .stripe-referral--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.article-body .stripe-bestroom .stripe-referral--info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.article-body .stripe-bestroom .stripe-referral--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.article-body .stripe-bestroom .stripe-referral--bonus {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed #fff;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.article-body .stripe-bestroom .stripe-referral--code {
  -webkit-tap-highlight-color: transparent;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  pointer-events: none;
}

.article-body .stripe-bestroom .stripe-referral--info-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

:root[theme='dark'] .article-body .stripe-bestroom .stripe-referral--info-icon {
  --i-color1: var(--text-5-color);
  --i-color2: #000;
}

.article-body .stripe-bestroom .stripe-referral-tooltip {
  display: flex;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

@media screen and (min-width: 40em) {
  .article-body .stripe-bestroom .stripe-referral-tooltip {
    padding: 26px 31px 29px 26px;
  }
}

.article-body .stripe-bestroom .stripe-referral-tooltip--content {
  font-size: inherit;
}

.article-body .stripe-bestroom .stripe-referral-tooltip--list-title {
  margin-bottom: 16px;
  color: var(--text-2-color, #202020);
  font-size: inherit;
  font-weight: 700;
  line-height: 20px;
}

.article-body .stripe-bestroom .stripe-referral-tooltip--list {
  margin: 0;
}

.article-body .stripe-bestroom .stripe-referral-tooltip--list ul {
  padding-left: 12px;
}

.article-body .stripe-bestroom .stripe-referral-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.article-body .stripe-bestroom .stripe-referral-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.article-body .stripe-bestroom .stripe-referral--tooltip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.article-body .stripe-bestroom .stripe-referral--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.article-body .stripe-bestroom .stripe-referral--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-width: 100px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: #f8f5ec;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.article-body .stripe-bestroom .stripe-referral--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.article-body .stripe-bestroom .stripe-referral--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.article-body .stripe-bestroom .stripe-referral--copy + .stripe-referral--reg {
  border-radius: 0 4px 4px 0;
}

.article-body .stripe-bestroom .stripe-referral--copy-icon {
  --i-color1: #6d6d6d;
  width: 12px;
  height: 12px;
}

.article-body .stripe-bestroom .stripe-referral--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: #f8f5ec;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.article-body .stripe-bestroom .stripe-referral--notify.animate {
  display: flex;
  animation-name: slide-stripe;
}

@keyframes slide-stripe {
  0% {
    display: flex;
    transform: translateX(105%);
  }
  30% {
    transform: translateX(0%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    display: none;
    transform: translateX(-105%);
  }
}

.article-body .stripe-bestroom .stripe-referral--notify-icon {
  --i-color1: #13a516;
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

.article-body .stripe-bestroom .stripe-referral--notify-text {
  color: #13a516;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.takeover-bestroom {
  margin-bottom: 35px;
}

@media screen and (min-width: 64em) {
  .takeover-bestroom {
    display: none;
    margin-bottom: 40px;
  }
}

.app-takeover .takeover-bestroom {
  display: block;
}

.takeover-bestroom__header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.takeover-bestroom__header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .takeover-bestroom__header svg {
  --i-color1: #ccc;
}

.takeover-bestroom__title {
  color: var(--text-3-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.takeover-bestroom__card-wrapper {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .takeover-bestroom__card-wrapper {
    flex-direction: row;
  }
}

.takeover-bestroom__card {
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
}

@media screen and (min-width: 48em) {
  .takeover-bestroom__card {
    flex: 1;
  }
}

@media screen and (min-width: 64em) {
  .takeover-bestroom__card {
    padding: 24px;
  }
}

.takeover-bestroom__card:nth-child(1) {
  background-color: #000;
}

.takeover-bestroom__card:nth-child(1) .takeover-gradient {
  background-image: linear-gradient(90deg, #6e40aa, #963db3, #bf3caf, #e3419e, #fe4b83, #ff5e64, #ff7747, #fb9633, #e2b72f, #c7d63c, #c7d63c);
}

.takeover-bestroom__card:nth-child(2) {
  background-color: #d4444a;
}

.takeover-bestroom__card:nth-child(2) .takeover-gradient {
  background-image: linear-gradient(90deg, #00ffab, #ff0);
}

.takeover-bestroom__card:nth-child(3) {
  background-color: #5fb7f6;
}

.takeover-bestroom__card:nth-child(3) .takeover-gradient {
  background-image: linear-gradient(90deg, #ff0, #ffdb50);
}

.takeover-bestroom__card-top {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.takeover-bestroom__card-head {
  gap: 8px;
  display: flex;
  align-items: center;
  color: #fff;
}

.takeover-bestroom__card-title {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 64em) {
  .takeover-bestroom__card-title {
    font-size: 22px;
  }
}

.takeover-bestroom__description {
  color: #fff;
  line-height: normal;
}

@media screen and (min-width: 48em) {
  .takeover-bestroom__description {
    font-size: 18px;
  }
}

.takeover-bestroom__score {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.takeover-bestroom__score svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}

.takeover-bestroom__logo {
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 48em) {
  .takeover-bestroom__logo {
    width: 32px;
    height: 32px;
  }
}

.takeover-bestroom__result {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: inherit;
}

@media screen and (min-width: 64em) {
  .takeover-bestroom__result {
    font-size: 22px;
  }
}

.takeover-bestroom__reg {
  gap: 8px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .takeover-bestroom__reg {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__reg {
    gap: 10px;
    flex-wrap: nowrap;
  }
}

.takeover-bestroom__info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__info {
    font-size: 16px;
    line-height: 22;
  }
}

.takeover-bestroom__info p {
  margin: 0;
  padding: 0;
  color: #fff;
}

.takeover-bestroom__info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.takeover-bestroom__button-wrapper {
  display: flex;
  flex-grow: 1;
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__copy-icon {
    width: 16px;
    height: 16px;
  }
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__notify-icon {
    width: 20px;
    height: 12px;
  }
}

.takeover-bestroom__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__notify-text {
    font-size: 16px;
  }
}

.takeover-bestroom__code {
  color: #222;
  font-size: 13px;
  font-weight: 400;
}

.takeover-bestroom__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85px;
  min-height: 30px;
  margin-left: auto;
  padding: 0 12px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.takeover-bestroom__copy + .takeover-bestroom__button {
  border-radius: 0 4px 4px 0;
}

@media screen and (min-width: 79.375em) {
  .takeover-bestroom__copy + .takeover-bestroom__button {
    border-radius: 0 5px 5px 0;
  }
}

.takeover-bestroom__info-icon {
  --i-color1: rgba(255, 255, 255, .65);
  --i-color2: transparent;
  flex-shrink: 0;
  width: 19px;
  height: 20px;
}

.takeover-tooltip {
  display: flex;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

.takeover-tooltip--content {
  font-size: inherit;
}

.takeover-tooltip--list-title {
  margin-bottom: 16px;
  color: var(--text-2-color, #202020);
  font-size: inherit;
  font-weight: 700;
  line-height: 20px;
}

.takeover-tooltip--text {
  color: var(--text-2-color, #202020);
  font-size: inherit;
  line-height: 20px;
}

.takeover-tooltip--list {
  margin: 0;
}

.takeover-tooltip--list ul {
  padding-left: 12px;
}

.takeover-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.takeover-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.takeover-bestroom__tooltip {
  display: flex;
  align-items: center;
}

.takeover-bestroom__copy-wrap {
  display: flex;
  justify-content: space-between;
}

.takeover-bestroom__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: copy;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 30px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: #f8f5ec;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.takeover-bestroom__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.takeover-bestroom__copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.takeover-bestroom__copy-icon {
  width: 12px;
  height: 12px;
}

.takeover-bestroom__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: #fff;
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.takeover-bestroom__notify.animate {
  display: flex;
  animation-name: slide;
}

.takeover-bestroom__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

.takeover-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  background-position: 100% 0;
  background-size: 500% 100%;
  color: #c7d63c;
  transition: background-position 1s linear;
}

.animated {
  animation: textGradient 2.5s linear 0s infinite alternate both running;
}

.transitioned:hover {
  background-position: 0 0;
}

@keyframes textGradient {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}

.article-body .aside-bestroom-widget a {
  text-decoration: none;
}

.article-body .aside-bestroom-widget p {
  margin-bottom: 0;
  font-family: Roboto, Arial, sans-serif;
}

.article-body .aside-bestroom--title {
  color: var(--text-3-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.article-body .aside-bestroom-card--title {
  margin: 0 6px 0 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.article-body .aside-bestroom-card--title a {
  color: var(--text-1-color, #000);
}

.article-body .aside-bestroom-card--description {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

@media screen and (min-width: 64em) {
  .article-body .aside-bestroom-card--description {
    display: none;
  }
}

.article-body .aside-bestroom-card--link {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width: 64em) {
  .article-body .aside-bestroom-card--link {
    display: inline-block;
  }
}

.article-body .aside-bestroom-card--link_mobile {
  display: inline-block;
}

@media screen and (min-width: 64em) {
  .article-body .aside-bestroom-card--link_mobile {
    display: none;
  }
}

.article-body .bestroom--info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.article-body .bestroom--reg {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.aside-bestroom--regcopy {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.aside-bestroom--regcopy svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.aside-bestroom-widget {
  width: 100%;
  font-family: Roboto, Arial, sans-serif;
}

.aside-bestroom-widget_mobile {
  margin: 0 0 40px;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-widget_mobile {
    display: none;
  }
}

.aside-bestroom-widget_desktop {
  display: none;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-widget_desktop {
    display: initial;
  }
}

.aside-bestroom--header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
}

@media screen and (min-width: 64em) {
  .aside-bestroom--header {
    padding: 16px 0;
  }
}

.aside-bestroom--header svg {
  width: 19px;
  height: 20px;
  margin: 0 9px 0 0;
}

:root[theme='dark'] .aside-bestroom--header svg {
  --i-color1: #ccc;
}

.aside-bestroom--header::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100vw - 30px);
  height: 1px;
  transform: translateX(-50%);
  background-color: var(--line-1-color, #f2f2f2);
  content: '';
}

@media screen and (min-width: 64em) {
  .aside-bestroom--header::after {
    display: none;
  }
}

.aside-bestroom--title {
  color: var(--text-3-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.aside-bestroom-card {
  gap: 12px;
  position: relative;
  width: 100%;
  padding: 19px 8px 23px 4px;
}

@media screen and (min-width: 40em) {
  .aside-bestroom-card {
    padding: 19px 15px 23px 19px;
  }
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card {
    padding: 24px 10px;
    border: 1px solid var(--line-1-color, #f2f2f2);
  }
  .aside-bestroom-card:not(:first-child) {
    margin-top: -1px;
  }
}

.aside-bestroom-card::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100vw - 30px);
  height: 1px;
  transform: translateX(-50%);
  background-color: var(--line-1-color, #f2f2f2);
  content: '';
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card::after {
    display: none;
  }
}

.aside-bestroom-card--wrap {
  width: 100%;
}

.aside-bestroom-card--logo {
  aspect-ratio: 1 / 1;
  width: 40px;
  margin-right: 12px;
  float: left;
}

.aside-bestroom-card--content {
  gap: 4px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.aside-bestroom-card--img {
  width: 40px;
  height: 40px;
}

[theme='dark'] .aside-bestroom-card--img_light {
  display: none;
}

.aside-bestroom-card--img_dark {
  display: none;
}

[theme='dark'] .aside-bestroom-card--img_dark {
  display: flex;
}

.aside-bestroom-card--heading {
  display: flex;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--heading {
    justify-content: space-between;
  }
}

.aside-bestroom-card--title {
  margin: 0 6px 0 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.aside-bestroom-card--score {
  display: flex;
}

.aside-bestroom-card--score svg {
  --i-color1: var(--text-1-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--score svg {
    margin: 0 5px 0 0;
  }
}

.aside-bestroom-card--result {
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--result {
    color: var(--text-3-color, #6d6d6d);
  }
}

.aside-bestroom-card--description {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--description {
    display: none;
  }
}

.aside-bestroom-card--link {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--link {
    display: inline-block;
  }
}

.aside-bestroom-card--link_mobile {
  display: inline-block;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-card--link_mobile {
    display: none;
  }
}

.aside-bestroom-card--links {
  display: none;
}

@media screen and (min-width: 40em) {
  .aside-bestroom-card--links {
    gap: 16px;
    display: flex;
  }
}

.aside-bestroom-card--link-item {
  gap: 4px;
  display: flex;
  align-items: center;
  color: var(--text-2-color, #333);
  font-size: 12px;
  white-space: nowrap;
}

.aside-bestroom-card--link-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 18px;
}

:root[theme='dark'] .aside-bestroom-card--link-item svg {
  --i-color1: var(--text-2-color);
}

.bestroom--reg {
  display: inline-block;
  grid-area: reg;
  width: 100%;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.bestroom--reg_code {
  border-radius: 0 4px 4px 0;
}

@media screen and (min-width: 64em) {
  .bestroom--reg_code {
    border-radius: 4px;
  }
}

.bestroom--reg-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .bestroom--reg-wrap {
    justify-content: flex-end;
  }
}

.bestroom--reg-wrap span {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #616161);
  color: var(--text-4-color, #fff);
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
}

.bestroom--reg-wrap span::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--layer-5-color, #616161) transparent transparent transparent;
  content: '';
}

.bestroom--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  margin-right: 8px;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .bestroom--info {
    margin: 0;
  }
}

.bestroom--info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.bestroom--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.aside-bestroom-card--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.aside-bestroom-support {
  display: none;
  justify-content: space-between;
  padding: 21px 23px 21px 18px;
  background-image: url("/nimg/aside-bestroom-support-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
}

@media screen and (min-width: 40em) {
  .aside-bestroom-support {
    display: flex;
  }
}

:root[theme='dark'] .aside-bestroom-support {
  filter: invert(1) brightness(2) grayscale(1);
}

.aside-bestroom-support--title {
  margin-bottom: 9px;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.aside-bestroom-support--subtitle {
  margin-bottom: 11px;
  font-size: 13px;
  line-height: 1;
}

.aside-bestroom-support--bottom-line {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 13px;
}

.aside-bestroom-support--bottom-line svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.aside-bestroom-support--icons {
  gap: 8px;
  display: flex;
}

.aside-bestroom-support--icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
}

.aside-bestroom-support--icon-item svg {
  aspect-ratio: 1 / 1;
  width: 14px;
}

.aside-bestroom--grid {
  gap: unset;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

@media screen and (min-width: 64em) {
  .aside-bestroom--grid {
    width: 100%;
    margin: 0;
  }
  .aside-bestroom--grid:has(> .bestroom--info) {
    gap: 8px;
    display: grid;
    grid-template-areas: "info copy" "reg reg";
    grid-template-columns: min-content 1fr;
    justify-content: normal;
  }
  .aside-bestroom--grid .regref,
.aside-bestroom--grid .regref-copy,
  .aside-bestroom--grid .regref-copy--link {
    gap: 0;
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .aside-bestroom--grid.nocode {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .aside-bestroom--grid.nocode .bestroom--info {
    display: none;
  }
  .aside-bestroom--grid.nocode .bestroom--reg {
    width: 100%;
  }
}

.bestroom--info-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

:root[theme='dark'] .bestroom--info-icon {
  --i-color1: var(--text-5-color);
  --i-color2: #000;
}

.bestroom-tooltip {
  display: flex;
  width: 100%;
  max-width: 360px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #879295);
  font-size: 14px;
}

.bestroom-tooltip--content {
  font-size: inherit;
}

.bestroom-tooltip--list-title {
  margin-bottom: 12px;
  padding: 20px 20px 17px 24px;
  background-color: #45ae52;
  color: #fff;
  font-size: inherit;
  line-height: 20px;
}

.bestroom-tooltip--text {
  margin-bottom: 12px;
  padding: 20px 20px 17px 24px;
  background-color: #45ae52;
  color: #fff;
  font-size: inherit;
  line-height: 20px;
}

.bestroom-tooltip--list {
  margin: 0;
  padding: 0 20px 20px 20px;
}

.bestroom-tooltip--list ul {
  padding-left: 12px;
}

.bestroom-tooltip--list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
}

.bestroom-tooltip--list li:before {
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 2em;
  line-height: 0;
  content: '.';
}

.bestroom--tooltip {
  display: flex;
  align-items: center;
}

.bestroom--copy-wrap {
  display: flex;
  justify-content: space-between;
}

.bestroom--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: copy;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  height: 30px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

@media screen and (min-width: 64em) {
  .bestroom--copy {
    border: 1px dashed #d2d2d2;
    border-radius: 4px;
  }
}

.bestroom--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.bestroom--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.bestroom--copy-icon {
  width: 12px;
  height: 12px;
}

:root[theme='dark'] .bestroom--copy-icon {
  --i-color1: var(--text-2-color);
}

.bestroom--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.bestroom--notify.animate {
  display: flex;
  animation-name: slide;
}

@keyframes slide {
  0% {
    display: flex;
    transform: translateX(105%);
  }
  30% {
    transform: translateX(0%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    display: none;
    transform: translateX(-105%);
  }
}

.bestroom--notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .bestroom--notify-icon {
  --i-color1: #00ff92;
}

.bestroom--notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .bestroom--notify-text {
  color: #00ff92;
}

.aside-bestroom-widget2 {
  position: sticky;
  top: 0;
  width: 100%;
  font-family: Roboto, Arial, sans-serif;
}

.aside-bestroom-cards2 {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.aside-bestroom-card2 {
  gap: 16px;
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
}

.aside-bestroom-card2:nth-child(1) {
  background-color: #000;
}

.aside-bestroom-card2:nth-child(2) {
  background-color: #d4444a;
}

.aside-bestroom-card2:nth-child(3) {
  background-color: #5fb7f6;
}

.aside-bestroom-card2--content {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.aside-bestroom-card2--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.aside-bestroom-card2--logo {
  aspect-ratio: 1 / 1;
  width: 24px;
  margin-right: 12px;
  float: left;
}

.aside-bestroom-card2--img {
  width: 24px;
  height: 24px;
}

[theme='dark'] .aside-bestroom-card2--img_light {
  display: none;
}

.aside-bestroom-card2--img_dark {
  display: none;
}

[theme='dark'] .aside-bestroom-card2--img_dark {
  display: flex;
}

.aside-bestroom-card2--title-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.aside-bestroom-card2--title {
  color: #fff;
}

.aside-bestroom-card2--score {
  gap: 4px;
  display: flex;
  font-size: 14px;
}

.aside-bestroom-card2--score svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 19px;
}

.aside-bestroom-card2--result {
  color: #fff;
}

.aside-bestroom-card2--description {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.aside-bestroom2--tooltip {
  display: flex;
  align-items: center;
}

.aside-bestroom2--copy-wrap {
  gap: 12px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aside-bestroom2--copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  height: 28px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

@media screen and (min-width: 64em) {
  .aside-bestroom2--copy {
    border: 1px dashed #d2d2d2;
    border-radius: 4px;
  }
}

.aside-bestroom2--copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.aside-bestroom2--copy strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.aside-bestroom2--copy-icon {
  width: 12px;
  height: 12px;
}

:root[theme='dark'] .aside-bestroom2--copy-icon {
  --i-color1: var(--text-2-color);
}

.aside-bestroom2--info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  align-items: center;
  margin-right: 8px;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .aside-bestroom2--info {
    margin: 0;
  }
}

.aside-bestroom2--info p {
  margin: 0;
  padding: 0;
  color: #fff;
}

.aside-bestroom2--info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.aside-bestroom2--info-icon {
  --i-color1: rgba(255, 255, 255, .6);
  --i-color2: transparent;
  flex-shrink: 0;
  width: 19px;
  height: 20px;
}

.aside-bestroom2--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.aside-bestroom2--notify.animate {
  display: flex;
  animation-name: slide;
}

.aside-bestroom2--notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .aside-bestroom2--notify-icon {
  --i-color1: #00ff92;
}

.aside-bestroom2--notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .aside-bestroom2--notify-text {
  color: #00ff92;
}

.aside-bestroom2--reg {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.aside-bestroom2--reg svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.aside-bestroom2--link {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 4px;
}

.aside-bestroom2--link-icon {
  width: 14px;
  height: 12px;
}

.aside-bestroom2--link-text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.aside-actions-widget {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 64em) {
  .aside-actions-widget {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 64em) and (max-height: 670px) {
  .aside-actions {
    display: none;
  }
}

.aside-actions--heading {
  margin-bottom: 16px;
  color: var(--text-3-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .aside-actions--heading {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-1-color, #f2f2f2);
  }
}

.aside-actions--wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

@media screen and (min-width: 64em) {
  .aside-actions--wrap {
    gap: 24px;
    margin-bottom: 22px;
    padding: 0;
  }
}

.aside-actions--card {
  gap: 16px;
  display: flex;
  flex-direction: column;
  width: 250px;
  padding: 16px 0;
}

@media screen and (min-width: 64em) {
  .aside-actions--card {
    gap: 8px;
    position: relative;
    padding: 0 10px 8px;
  }
  .aside-actions--card:not(:last-child)::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' viewBox='0 0 83.04 3.65'%3E%3Cpath d='M83.04 0c0 2.02-1.64 3.65-3.65 3.65H3.65C1.64 3.65 0 2.02 0 0c0 1.65 1.49 2.99 3.32 2.99h76.4c1.83 0 3.32-1.34 3.32-2.99z' fill='%23f2f2f2'/%3E%3C/svg%3E%0A");
    content: '';
  }
  [theme='dark'] .aside-actions--card:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' viewBox='0 0 83.04 3.65'%3E%3Cpath d='M83.04 0c0 2.02-1.64 3.65-3.65 3.65H3.65C1.64 3.65 0 2.02 0 0c0 1.65 1.49 2.99 3.32 2.99h76.4c1.83 0 3.32-1.34 3.32-2.99z' fill='%23424242'/%3E%3C/svg%3E%0A");
  }
}

.aside-actions--img-wrap {
  gap: 16px;
  display: flex;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.aside-actions--img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
}

.aside-actions--icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 50%;
  background-color: var(--layer-2a-color, #fff);
}

.aside-actions--icon {
  aspect-ratio: 1 / 1;
  max-width: 40px;
}

.aside-actions--title {
  margin-bottom: 20px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.aside-actions--more {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #dfe1e4;
  border-radius: 6px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 19px;
  cursor: pointer;
}

.widget-remind {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  padding: 10px 0 0;
}

@media screen and (min-width: 64em) {
  .widget-remind {
    max-width: 1276px;
    margin: 0 auto 8px;
    padding: 20px 15px 0;
  }
}

.widget-remind--grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 4px solid #e51e25;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 64em) {
  .widget-remind--grid {
    padding: 28px;
  }
}

.widget-remind_icon .widget-remind--grid {
  gap: 0 20px;
  grid-template-columns: 48px 1fr;
  padding: 18px;
  border: 2px solid #e51e25;
}

.widget-remind--content {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
}

.widget-remind--tag {
  color: #e51e25;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}

.widget-remind_icon .widget-remind--tag {
  text-align: left;
}

.widget-remind--heading {
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .widget-remind--heading {
    font-size: 28px;
  }
}

.widget-remind--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.widget-remind_icon .widget-remind--heading {
  text-align: left;
}

@media screen and (min-width: 64em) {
  .widget-remind_icon .widget-remind--heading {
    font-size: 20px;
  }
}

.widget-remind--icon {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e51e25;
}

.widget-remind--icon svg {
  width: 32px;
  height: 32px;
}

.widget-remind_icon .widget-remind--icon {
  display: flex;
}

.widget-activity {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 0 auto 32px;
  padding: 15px 0 0;
}

@media screen and (min-width: 64em) {
  .widget-activity {
    max-width: 1276px;
    padding: 15px 15px 0;
  }
  .widget-activity:has(.widget-bb--flag) {
    padding: 15px 3px 0 15px;
  }
}

@media screen and (min-width: 64em) {
  .widget-activity--inner_slider {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.widget-activity--grid {
  grid-gap: 20px 0;
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
  width: 100%;
  max-width: 824px;
}

@media screen and (min-width: 64em) {
  .widget-activity--grid {
    gap: 0 20px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1276px;
  }
}

@media screen and (min-width: 64em) {
  .widget-activity--grid_slider {
    gap: initial;
    box-sizing: content-box;
    display: flex;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    transition-property: transform;
  }
}

@media screen and (min-width: 64em) {
  .widget-activity_slider .widget-activity-slide {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 402px;
  }
}

.widget-activity-button {
  display: none;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

@media screen and (min-width: 64em) {
  .widget-activity_slider .widget-activity-button {
    display: flex;
  }
}

[theme='dark'] .widget-activity-button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .widget-activity-button svg {
  --i-color1: #fff;
}

.widget-activity-button_prev {
  left: 0;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.widget-activity-button_prev svg {
  transform: rotate(180deg);
}

.widget-activity-button_next {
  right: 0;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.widget-activity_slider .widget-activity-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.widget-activity_slider .widget-activity-button_disabled svg {
  opacity: .35;
}

.widget-activity-button svg {
  width: 16px;
  height: 12px;
}

.widget-desc {
  --dsc-line-color: var(--line-1-color, #f1f1f1);
  --dsc-heading-color: var(--line-2-color, #808080);
  --dsc-text-color: var(--line-2-color, #9e9e9e);
  width: 100%;
  margin: 0 auto;
  padding: 30px 24px 36px;
  border-top: 3px solid var(--dsc-line-color);
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .widget-desc {
    padding: 62px 30px 68px;
  }
}

[theme='dark'] .widget-desc {
  background-color: #2b2b2b;
}

.widget-desc p {
  margin: 0 0 5px;
  color: var(--dsc-text-color);
  font-size: 15px;
  line-height: 19px;
}

.widget-desc--inner {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
}

.widget-desc--heading {
  margin: 0 0 12px;
  color: var(--dsc-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.bst-slider {
  --w-bst-header-color: var(--text-5-color, #333);
  --w-bst-bg-color: var(--layer-3-color, #fff);
  --w-bst-border-color: var(--line-1-color, #ededed);
  --w-bst-link-color: var(--text-2-color, #000);
  --w-bst-control-color: var(--line-1-color, #d3d3d3);
  --w-bst-bullet-color: var(--layer-5-color, #bcbcbc);
  display: flex;
  flex-direction: column;
}

.bst-slider--head {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .bst-slider--head {
    padding: 0;
  }
}

.bst-slider--head svg {
  flex-shrink: 0;
  width: 28px;
  height: 29px;
  margin: 0 10px 0 0;
}

[theme='dark'] .bst-slider--head svg {
  --color1: #9e9e9e;
}

.bst-slider--heading {
  position: relative;
  color: var(--w-bst-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.bst-slider--main {
  z-index: 1;
  position: relative;
  overflow: hidden;
  list-style: none;
}

.bst-slider--wrap {
  display: flex;
  position: relative;
}

.bst-slider--list {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 4px 24px 8px;
  background-color: var(--w-bst-bg-color);
  transition-property: transform;
}

@media screen and (min-width: 64em) {
  .bst-slider--list {
    margin: 0;
  }
}

.bst-link {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  padding: 9px 0;
}

.bst-link:not(:last-child) {
  border-bottom: 1px solid var(--w-bst-border-color);
}

.bst-link--top {
  gap: 0 8px;
  display: flex;
  align-items: center;
  margin: 0 0 4px;
}

.bst-link--action {
  display: flex;
  align-items: center;
  height: 19px;
  padding: 0 5px;
  border: 1px solid #757575;
  border-radius: 2px;
  color: #757575;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.bst-link--action.slider-hot--action_rise {
  border-color: #43a047;
  color: #43a047;
}

.bst-link--action.slider-hot--action_top {
  color: #757575;
}

.bst-link--action.slider-hot--action_contro {
  border-color: #3075ab;
  color: #3075ab;
}

.bst-link--action.slider-hot--action_custom {
  position: relative;
  padding: 0 14px 0 5px;
  overflow: hidden;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  border-color: #a73895;
  color: #a73895;
}

.bst-link--action.slider-hot--action_custom:after {
  display: inline-block;
  position: absolute;
  top: -50%;
  right: 10px;
  bottom: 50%;
  left: 0;
  transform: rotate(135deg);
  transform-origin: 100% 100%;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-style: solid;
  content: '';
}

.bst-link--action.slider-hot--action_orange {
  position: relative;
  padding: 0 14px 0 5px;
  overflow: hidden;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  border-color: #e88603;
  color: #e88603;
}

.bst-link--action.slider-hot--action_orange:after {
  display: inline-block;
  position: absolute;
  top: -50%;
  right: 10px;
  bottom: 50%;
  left: 0;
  transform: rotate(135deg);
  transform-origin: 100% 100%;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-style: solid;
  content: '';
}

.bst-link--action.slider-hot--action_red {
  position: relative;
  padding: 0 14px 0 5px;
  overflow: hidden;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  border-color: #eb0000;
  color: #eb0000;
}

.bst-link--action.slider-hot--action_red:after {
  display: inline-block;
  position: absolute;
  top: -50%;
  right: 10px;
  bottom: 50%;
  left: 0;
  transform: rotate(135deg);
  transform-origin: 100% 100%;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-style: solid;
  content: '';
}

.bst-link--nick {
  color: var(--text-6-color, #292929);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 19px;
}

.bst-link--title {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 60px;
  overflow: hidden;
  color: var(--w-bst-link-color);
  font-family: "PT Serif", serif;
  font-size: 17px;
  line-height: 20px;
  overflow-wrap: break-word;
}

.bst-link--title::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.bst-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
}

.bst-pagination {
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.bst-pagination--bullet {
  width: 7px;
  height: 7px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: var(--w-bst-bullet-color);
}

.bst-pagination--bullet_active {
  background-color: #666;
}

.bst-slide-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 11px;
}

.bst-slide-button svg {
  --i-color1: #666;
  width: 15px;
  height: 11px;
}

[theme='dark'] .bst-slide-button svg {
  --i-color1: #fff;
}

.bst-slide-button_disabled svg {
  --i-color1: #bcbcbc;
}

[theme='dark'] .bst-slide-button_disabled svg {
  --i-color1: #9e9e9e;
}

.pop-slider {
  --w-pop-header-color: var(--text-5-color, #333);
  --w-pop-bg-color: var(--layer-3-color, #fff);
  --w-pop-border-color: var(--line-1-color, #ededed);
  --w-pop-link-color: var(--text-2-color, #000);
  --w-pop-control-color: var(--line-1-color, #d3d3d3);
  --w-pop-bullet-color: var(--layer-5-color, #bcbcbc);
  --w-pop-nick-color: var(--text-5-color, #666);
  --w-pop-date-color: var(--text-5-color, #666);
  display: flex;
  flex-direction: column;
}

.pop-slider--head {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .pop-slider--head {
    padding: 0;
  }
}

.pop-slider--head svg {
  flex-shrink: 0;
  width: 24px;
  height: 29px;
  margin: 0 8px 0 0;
}

[theme='dark'] .pop-slider--head svg {
  --i-color1: #9e9e9e;
}

.pop-slider--heading {
  position: relative;
  color: var(--w-pop-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.pop-slider--main {
  z-index: 1;
  position: relative;
  overflow: hidden;
  list-style: none;
}

.pop-slider--wrap {
  display: flex;
  position: relative;
}

.pop-slider--list {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 6px 24px 8px 14px;
  background-color: var(--w-pop-bg-color);
  transition-property: transform;
}

@media screen and (min-width: 64em) {
  .pop-slider--list {
    margin: 0;
  }
}

.pop-link {
  grid-gap: 0 17px;
  display: grid;
  position: relative;
  grid-template-columns: 15px 1fr;
  width: 100%;
  padding: 9px 0 0;
}

.pop-link:not(:last-child) .pop-link--inner {
  border-bottom: 1px solid var(--w-pop-border-color);
}

.pop-link--num {
  color: #a5a5a5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  line-height: 22px;
  text-align: right;
}

.pop-link--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 8px;
}

.pop-link--title {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 21px;
  margin: 0 0 1px;
  overflow: hidden;
  color: var(--w-pop-link-color);
  font-family: "PT Serif", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  overflow-wrap: break-word;
}

.pop-link--title::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.pop-link--info {
  display: flex;
}

.pop-link--nick {
  display: flex;
  color: var(--w-pop-nick-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 21px;
}

.pop-link--nick::after {
  flex-shrink: 0;
  width: 4px;
  margin: 0 3px;
  font-size: 16px;
  font-weight: 700;
  content: '·';
}

.pop-link--date {
  color: var(--w-pop-date-color);
  font-size: 13px;
  line-height: 21px;
}

.pop-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
}

.pop-pagination {
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.pop-pagination--bullet {
  width: 7px;
  height: 7px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: var(--w-pop-bullet-color);
}

.pop-pagination--bullet_active {
  background-color: #666;
}

.pop-slide-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 11px;
}

.pop-slide-button svg {
  --i-color1: #666;
  width: 15px;
  height: 11px;
}

[theme='dark'] .pop-slide-button svg {
  --i-color1: #fff;
}

.pop-slide-button_disabled svg {
  --i-color1: #bcbcbc;
}

[theme='dark'] .pop-slide-button_disabled svg {
  --i-color1: #9e9e9e;
}

.widget-hero {
  --w-heroes-link-color: var(--text-5-color, #333);
  --w-heroes-bg-color: var(--layer-3-color, #fff);
  --w-heroes-heading-color: var(--text-2-color, #000);
  --w-heroes-border-color: var(--line-2-color, #dbdbdb);
  --w-heroes-line-color: var(--line-1-color, #dbdbdb);
  --w-heroes-player-color: var(--text-2-color, #000);
  --w-heroes-blog-color: var(--text-5-color, #666);
  --w-heroes-subhead-color: var(--text-4-color, #666);
  --w-heroes-num-color: var(--text-5-color, #909090);
  --w-heroes-icon: var(--icon-5-filter, none);
  width: 100%;
}

.widget-hero--grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 24px;
  background-color: var(--w-heroes-bg-color);
}

.widget-hero--header {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .widget-hero--header {
    padding: 0;
  }
}

.widget-hero--header svg {
  --color1: var(--pal-icon-color1, #000);
  flex-shrink: 0;
  width: 28px;
  height: 29px;
  margin: 0 10px 0 0;
}

.widget-hero--link {
  color: var(--w-heroes-link-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.widget-hero--item {
  padding: 0 0 21px;
  border-bottom: 1px solid var(--w-heroes-border-color);
}

.widget-hero--item_clear {
  border: 0;
}

.widget-hero--head {
  display: flex;
  align-items: center;
  padding: 28px 0 10px;
}

.widget-hero--icon {
  width: 30px;
  height: 30px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  filter: var(--w-heroes-icon);
}

.widget-hero--icon_author {
  background-image: url(/nimg/top-author.svg);
}

.widget-hero--icon_blog {
  background-image: url(/nimg/top-blog.svg);
}

.widget-hero--icon_stream {
  background-image: url(/nimg/top-stream.svg);
}

.widget-hero--heading {
  color: var(--w-heroes-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}

.grid-hero {
  grid-gap: 0 10px;
  display: grid;
  position: relative;
  grid-template-columns: 90px 1fr;
  padding: 6px 0;
}

.grid-hero_stream {
  grid-template-columns: 90px 1fr;
}

.grid-hero--subhead {
  color: var(--w-heroes-subhead-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  line-height: 21px;
  text-transform: uppercase;
}

.grid-hero--num {
  color: var(--w-heroes-num-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  line-height: 21px;
  text-transform: uppercase;
}

.grid-hero--icon {
  display: flex;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  filter: var(--w-heroes-icon);
}

.grid-hero--icon_author {
  background-image: url(/nimg/top-author.svg);
}

.grid-hero--icon_blog {
  background-image: url(/nimg/top-blog.svg);
}

.grid-hero--icon_stream {
  background-image: url(/nimg/top-stream.svg);
}

.grid-hero--inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.grid-hero--player {
  overflow: hidden;
  color: var(--w-heroes-player-color);
  font-family: "PT Serif", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}

.grid-hero--player::before {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.grid-hero--blog {
  max-width: 720px;
  overflow: hidden;
  color: var(--w-heroes-blog-color);
  font-size: 13px;
  line-height: 21px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget-frs-wrap {
  z-index: 1;
  width: 100%;
  max-width: 645px;
  margin: 0 auto 64px;
  padding: 24px 15px 0;
}

@media screen and (min-width: 64em) {
  .widget-frs-wrap {
    max-width: 1276px;
  }
}

.article .widget-frs-wrap {
  max-width: initial;
  margin: 40px 0;
  padding: 0;
}

.article .widget-frs-wrap a {
  text-decoration: none;
}

.widget-frs {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.widget-frs--head {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 8px;
}

@media screen and (min-width: 48em) {
  .widget-frs--head {
    margin: 0 0 10px;
  }
}

.widget-frs--subhead {
  gap: 2px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .widget-frs--subhead {
    margin: 0 0 20px;
  }
}

.widget-frs--heading {
  display: flex;
  align-items: center;
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .widget-frs--heading {
    font-size: 18px;
  }
}

.widget-frs--heading svg {
  --i-color1: #333;
  flex-shrink: 0;
  width: 34px;
  height: 20px;
  margin: 0 9px 0 0;
}

[theme='dark'] .widget-frs--heading svg {
  --i-color1: #9e9e9e;
}

.article .widget-frs--heading {
  color: var(--text-5-color, #333);
}

.widget-frs--subheading {
  display: flex;
  align-items: center;
  color: var(--text-5-color, #4d5159);
  font-size: 16px;
  line-height: 22px;
}

.article .widget-frs--subheading {
  color: var(--text-5-color, #4d5159);
}

.widget-frs--link {
  display: flex;
  align-items: center;
  color: var(--text-5-color, #202020);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  white-space: nowrap;
}

.widget-frs--link svg {
  --i-color1: #202020;
  flex-shrink: 0;
  width: 16px;
  height: 12px;
  margin: 0 0 0 10px;
}

[theme='dark'] .widget-frs--link svg {
  --i-color1: #9e9e9e;
}

.article .widget-frs--link {
  color: var(--text-5-color, #202020);
}

.frs-slide-wrap {
  position: relative;
}

.frs-slide {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.frs-slide--inner {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.frs-slide--item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  max-width: 298px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 64em) {
  .frs-slide--item {
    max-width: 296px;
  }
}

.article .frs-slide--item {
  background-color: var(--layer-3-color, #fafafa);
}

@media screen and (min-width: 64em) {
  .article .frs-slide--item {
    max-width: 318px;
  }
}

@media screen and (min-width: 64em) {
  .article_aside .frs-slide--item {
    max-width: 308px;
  }
}

.frs-slide--head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #f1c259;
  background-image: linear-gradient(209.14deg, #fef8c1 7.32%, #fbe986 94.85%);
}

.frs-slide--head svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin: 0 6px 0 0;
  transform: translateY(-1px);
}

.frs-slide--date {
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.frs-slide--main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 20px 16px 16px;
}

.frs-slide--top {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

.frs-slide--logo {
  display: flex;
  height: 38px;
}

.frs-slide--price {
  gap: 0 4px;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  padding: 5px 12px;
  border: 1px solid #f1c259;
  border-radius: 50px;
  background-color: #fdf6bc;
  color: #000;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.frs-slide--price a {
  display: flex;
}

.frs-slide--price svg {
  flex-shrink: 0;
  width: 19px;
  height: 18px;
}

.frs-slide--img {
  display: flex;
  justify-content: center;
  height: 38px;
}

[theme='dark'] .frs-slide--img_light {
  display: none;
}

.frs-slide--img_dark {
  display: none;
}

[theme='dark'] .frs-slide--img_dark {
  display: flex;
}

.frs-slide--img img {
  height: 100%;
}

.frs-slide--heading {
  min-height: 60px;
  padding: 0 0 16px;
  color: var(--text-3-color, #000);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
}

.frs-slide--bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  padding: 17px 0 0;
  border-top: 1px solid var(--line-1-color, #ededed);
}

.frs-slide--rules {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
}

.frs-slide--rules li {
  color: var(--text-2-color, #333);
  font-size: 14px;
  line-height: 16px;
}

.frs-slide--rules a {
  color: var(--text-2-color, #333);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.article .frs-slide--rules {
  margin: 0 0 24px;
  list-style-type: none;
}

.article .frs-slide--rules li {
  margin: 0;
  color: var(--text-2-color, #333);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.article .frs-slide--rules a {
  color: var(--text-2-color, #333);
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
}

.frs-slide--title {
  display: inline-flex;
  margin: 0 0 0 4px;
  transform: translateY(3px);
}

.frs-slide--title svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.frs-slide--cta {
  gap: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0 0;
  padding: 7px 30px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.frs-slide--cta svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.article .frs-slide--cta {
  color: #fff;
}

.frs-slide--regref {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: auto 0 0;
}

.frs-slide-button {
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

[theme='dark'] .frs-slide-button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .frs-slide-button svg {
  --i-color1: #fff;
}

.frs-slide-button_prev {
  left: -14px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.frs-slide-button_prev svg {
  transform: rotate(180deg);
}

.frs-slide-button_next {
  right: -14px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.frs-slide-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.frs-slide-button_disabled svg {
  opacity: .35;
}

.frs-slide-button svg {
  width: 16px;
  height: 12px;
}

.widget-sunday-wrap {
  --sk-bg-color: var(--layer-3-color, #fff);
  --sk-heading-color: var(--text-5-color, #333);
  --sk-subhead-color: var(--text-5-color, #000);
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 645px;
  margin: 0 auto 40px;
}

@media screen and (min-width: 64em) {
  .widget-sunday-wrap {
    max-width: 1276px;
    margin: 0 auto 54px;
    padding: 0 15px;
  }
}

.widget-sunday {
  width: 100%;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .widget-sunday {
    padding: 0;
  }
}

.widget-sunday--head {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .widget-sunday--head {
    margin: 0 0 20px;
  }
}

.widget-sunday--heading {
  display: flex;
  align-items: center;
  color: var(--sk-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .widget-sunday--heading {
    font-size: 18px;
  }
}

.widget-sunday--heading svg {
  --i-color1: #333;
  flex-shrink: 0;
  width: 23px;
  height: 20px;
  margin: 0 12px 0 0;
}

[theme='dark'] .widget-sunday--heading svg {
  --i-color1: #9e9e9e;
}

.widget-sunday--grid {
  grid-gap: 11px 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 824px;
}

@media screen and (min-width: 64em) {
  .widget-sunday--grid {
    grid-gap: 0 16px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1246px;
  }
}

.widget-sunday--item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 34px 16px 24px;
  background-color: var(--sk-bg-color);
}

.widget-sunday--subhead {
  margin: 0 0 10px;
  color: var(--sk-subhead-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}

.widget-sunday--list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.widget-sunday--gradient {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}

.widget-sunday--gradient:not(:last-child) {
  margin: 0 0 7px;
}

.widget-sunday--gradient:nth-of-type(1) {
  background-image: linear-gradient(90deg, #fff8d8 0%, rgba(255, 248, 216, 0) 100%);
}

.widget-sunday--gradient:nth-of-type(1) .widget-sunday--crown {
  background-image: url(/nimg/top-gold.svg);
}

.widget-sunday--gradient:nth-of-type(2) {
  background-image: linear-gradient(90deg, #f3f3f3 0%, rgba(243, 243, 243, 0) 100%);
}

.widget-sunday--gradient:nth-of-type(2) .widget-sunday--crown {
  background-image: url(/nimg/top-silver.svg);
}

.widget-sunday--gradient:nth-of-type(3) {
  background-image: linear-gradient(90deg, #ffeade 0%, rgba(255, 234, 222, 0) 100%);
}

.widget-sunday--gradient:nth-of-type(3) .widget-sunday--crown {
  background-image: url(/nimg/top-bronze.svg);
}

.widget-sunday--icon {
  display: flex;
  flex-shrink: 0;
  padding: 0 1px 0 0;
  border-radius: 0 13px 13px 0;
  background-color: var(--sk-bg-color);
}

.widget-sunday--crown {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 26px;
  box-shadow: 0 0 0 1px var(--sk-bg-color);
}

.widget-sunday--name {
  margin: 0 0 0 10px;
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.slider-news {
  --sl-bg-color: #eef0f5;
  --sl-title-color: #000;
  --sl-line-color: #e3e3e3;
  --sl-sep-color: #dfe1e4;
  --sl-meta-color: #a8a8a9;
  --sl-meta-icon-color: #a8a8a9;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
}

[theme='dark'] .slider-news {
  --sl-bg-color: #282828;
  --sl-title-color: #fff;
  --sl-line-color: #313131;
  --sl-sep-color: #313131;
  --sl-meta-color: #636568;
  --sl-meta-icon-color: #636568;
}

.slider-news--head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 19px;
}

@media screen and (min-width: 48em) {
  .slider-news--head {
    margin: 0 0 25px;
  }
}

.slider-news--heading {
  color: var(--sl-title-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .slider-news--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.slider-news--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-news--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.slider-news--item {
  gap: 0 16px;
  box-sizing: border-box;
  display: grid;
  position: relative;
  grid-template-areas: 'image main' 'meta meta';
  grid-template-columns: 72px 1fr;
  flex-shrink: 0;
  width: 100%;
  max-width: 312px;
  padding: 16px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--sl-bg-color);
  transition-property: transform;
}

@media screen and (min-width: 48em) {
  .slider-news--item {
    gap: 0 32px;
    grid-template-areas: 'image main' 'image meta';
    grid-template-columns: 176px 1fr;
    max-width: 611px;
    padding: 16px 32px 16px 16px;
  }
}

.slider-news--item a {
  -webkit-tap-highlight-color: transparent;
}

.slider-news--image {
  display: flex;
  grid-area: image;
  flex-shrink: 0;
  width: 72px;
  height: 66px;
}

@media screen and (min-width: 48em) {
  .slider-news--image {
    width: 176px;
    height: 166px;
  }
}

.slider-news--image img {
  object-fit: cover;
  border-radius: 10px;
}

.slider-news--main {
  display: flex;
  grid-area: main;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .slider-news--main {
    padding: 8px 0 0;
  }
}

.slider-news--label {
  color: #e51e25;
  font-size: 12px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .slider-news--label {
    margin: 0 0 8px;
    font-size: 14px;
  }
}

.slider-news--title {
  margin: 0 0 8px;
  color: var(--sl-title-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .slider-news--title {
    margin: 0 0 16px;
    font-size: 18px;
  }
}

.slider-news--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.slider-news--meta {
  display: flex;
  grid-area: meta;
  width: 100%;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--sl-line-color);
}

@media screen and (min-width: 48em) {
  .slider-news--meta {
    padding: 16px 0;
  }
}

.slider-news--meta svg {
  --i-color1: var(--sl-meta-icon-color);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

.slider-news--date {
  display: flex;
  align-items: center;
  color: var(--sl-meta-color);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.slider-news--date::after {
  width: 1px;
  height: 8px;
  margin: 0 16px;
  background-color: var(--sl-sep-color);
  content: '';
}

.slider-news--view {
  display: flex;
  align-items: center;
  color: var(--sl-meta-color);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.slider-news--view::after {
  width: 1px;
  height: 8px;
  margin: 0 16px;
  background-color: var(--sl-sep-color);
  content: '';
}

.slider-news--comment {
  display: flex;
  align-items: center;
  color: var(--sl-meta-color);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.slider-news--wrap {
  display: flex;
  position: relative;
  width: 100%;
}

.slider-news--button {
  --i-color1: #606060;
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 18px);
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

[theme='dark'] .slider-news--button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .slider-news--button svg {
  --i-color1: #fff;
}

.slider-news--button_prev {
  left: -18px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.slider-news--button_prev svg {
  transform: rotate(180deg);
}

.slider-news--button_next {
  right: -18px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.slider-news--button_disabled {
  border-color: #e0e0e0;
  cursor: auto;
  pointer-events: none;
}

[theme='dark'] .slider-news--button_disabled {
  border-color: #424242;
}

.slider-news--button_disabled svg {
  opacity: .35;
}

.slider-news--button svg {
  width: 16px;
  height: 12px;
}

.slider-relink {
  --slr-bg-color: #eef0f5;
  --slr-title-color: #000;
  --slr-line-color: #e3e3e3;
  --slr-meta-color: #a8a8a9;
  --slr-meta-icon-color: #a8a8a9;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 32px 0;
}

:root[theme='dark'] .content_theme .slider-relink {
  --slr-bg-color: #282828;
  --slr-title-color: #fff;
  --slr-line-color: #313131;
  --slr-meta-color: #636568;
  --slr-meta-icon-color: #636568;
}

.slider-relink--head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 19px;
}

@media screen and (min-width: 48em) {
  .slider-relink--head {
    margin: 0 0 25px;
  }
}

.slider-relink--heading {
  color: var(--slr-title-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .slider-relink--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.slider-relink--wrap {
  display: flex;
}

.slider-relink--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.slider-relink--button:hover {
  --i-color1: #e51e25;
}

.slider-relink--button_disabled {
  --i-color1: #a6a6a6;
  pointer-events: none;
}

.slider-relink--button_prev {
  margin: 0 42px 0 0;
}

@media screen and (min-width: 48em) {
  .slider-relink--button_prev {
    margin: 0 30px 0 0;
  }
}

.slider-relink--button svg {
  width: 24px;
  height: 24px;
}

.slider-relink--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-relink--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.slider-relink--item {
  gap: 0 16px;
  box-sizing: border-box;
  display: grid;
  position: relative;
  grid-template-areas: 'image main' 'meta meta';
  grid-template-columns: 72px 1fr;
  flex-shrink: 0;
  width: 100%;
  max-width: 312px;
  padding: 16px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--slr-bg-color);
  transition-property: transform;
}

@media screen and (min-width: 48em) {
  .slider-relink--item {
    gap: 0 32px;
    grid-template-areas: 'image main' 'image meta';
    grid-template-columns: 176px 1fr;
    max-width: 608px;
    padding: 16px 32px 16px 16px;
  }
}

.slider-relink--item a {
  -webkit-tap-highlight-color: transparent;
}

.slider-relink--image {
  display: flex;
  grid-area: image;
  flex-shrink: 0;
  width: 72px;
  height: 66px;
}

@media screen and (min-width: 48em) {
  .slider-relink--image {
    width: 176px;
    height: 166px;
  }
}

.slider-relink--image img {
  object-fit: cover;
  border-radius: 10px;
}

.slider-relink--main {
  display: flex;
  grid-area: main;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .slider-relink--main {
    padding: 8px 0 0;
  }
}

.slider-relink--label {
  margin: 0 0 4px;
  color: #e51e25;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .slider-relink--label {
    margin: 0 0 9px;
  }
}

.slider-relink--title {
  margin: 0 0 8px;
  color: var(--slr-title-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .slider-relink--title {
    margin: 0 0 14px;
    font-size: 19px;
  }
}

.slider-relink--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.slider-relink--meta {
  display: flex;
  grid-area: meta;
  width: 100%;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--slr-line-color);
}

@media screen and (min-width: 48em) {
  .slider-relink--meta {
    padding: 16px 0 10px;
  }
}

.slider-relink--meta svg {
  --i-color1: var(--slr-meta-icon-color);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

.slider-relink--date {
  display: flex;
  align-items: center;
  color: var(--slr-meta-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.widget-fs {
  --wfs-header-color: var(--text-5-color, #333);
  --wfs-bg-color: var(--layer-3-color, #fff);
  --wfs-color: var(--text-2-color, #000);
  --wfs-subhead-color: var(--text-5-color, #909090);
  --wfs-num-color: var(--text-5-color, #909090);
  --wfs-line-color: var(--line-1-color, #ededed);
  --wfs-border-color: var(--line-1-color, #ededed);
  width: 100%;
  max-width: 615px;
}

@media screen and (min-width: 64em) {
  .widget-fs {
    max-width: 1276px;
  }
}

.widget-fs--head {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .widget-fs--head {
    padding: 0;
  }
}

.widget-fs--head svg {
  --i-color1: transparent;
  --i-color2: #333;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  margin: 0 8px 0 0;
}

[theme='dark'] .widget-fs--head svg {
  --i-color1: #9e9e9e;
}

.widget-fs--heading {
  position: relative;
  color: var(--wfs-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.widget-fs--heading span {
  color: #e51e25;
}

.widget-fs--wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 34px 24px 24px;
  background-color: var(--wfs-bg-color);
}

.widget-fs--list {
  display: flex;
  flex-direction: column;
  margin: 0 0 18px;
  padding: 0;
}

.widget-fs--subheader {
  margin: 0 0 4px;
  padding: 10px 0 2px;
  border-bottom: 1px solid var(--wfs-line-color);
}

.widget-fs--subhead {
  color: var(--wfs-subhead-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.widget-fs--item {
  padding: 14px 0;
}

.widget-fs--item:not(:last-child) {
  border-bottom: 1px solid var(--wfs-border-color);
}

.grid-fs {
  grid-gap: 0 8px;
  display: grid;
  grid-template-columns: 30px 1fr 80px;
  line-height: 20px;
}

.grid-fs--num {
  grid-column: 1;
  color: var(--wfs-num-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.grid-fs--nick {
  grid-column: 2;
  color: var(--wfs-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.grid-fs--score {
  grid-column: 3;
  color: var(--wfs-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.widget-fs--bottom {
  display: flex;
}

.widget-fs--link {
  color: #e51e25;
  font-size: 13px;
  line-height: 21px;
  text-transform: uppercase;
  white-space: nowrap;
}

.widget-fa {
  display: flex;
  position: relative;
  flex-direction: column;
}

@media screen and (min-width: 64em) {
  .widget-fa {
    padding: 0 0 20px;
    background-image: linear-gradient(180deg, #efefef 49px, #fff 49px);
  }
}

.widget-fa--header {
  display: flex;
  align-items: center;
  min-height: 41px;
  margin: 0 0 8px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .widget-fa--header {
    padding: 0;
  }
}

.widget-fa--icon {
  width: 29px;
  height: 33px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/forum-slider.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 29px;
}

.widget-fa--heading {
  position: relative;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-fa--heading::after {
  position: absolute;
  top: 4px;
  right: -16px;
  width: 10px;
  height: 14px;
  background-image: url(/nimg/arrow-right-short.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
}

.fa-list {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  margin: 0 0 10px;
  transition-property: transform;
}

@media screen and (min-width: 64em) {
  .fa-list {
    margin: 0;
  }
}

.fa-list::after {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  content: '';
}

.fa-item {
  position: relative;
  padding: 17px 25px 16px 15px;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .fa-item:nth-of-type(5n) {
    padding-bottom: 5px;
  }
}

.fa-item::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: #cfcfcf;
  content: '';
}

.fa-item--info {
  margin: 0 0 0 26px;
  color: #999;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
}

.fa-item--nick {
  margin: 0 4px 0 0;
  color: #606060;
  font-size: 12px;
  font-weight: 700;
  text-transform: initial;
}

.fa-item--date {
  margin: 0 4px 0 0;
}

.fa-item--link {
  max-width: 720px;
  margin: 0 0 2px;
  overflow: hidden;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fa-item--link a {
  -webkit-tap-highlight-color: transparent;
  color: #202020;
  font-family: "PT Serif", serif;
  font-size: 16px;
}

.fa-item--link a::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.fa-control {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin: auto 0 0;
}

@media screen and (min-width: 64em) {
  .fa-control {
    padding: 0 15px;
  }
}

.fa-control::after,
.fa-control::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: #d3d3d3;
  content: '';
}

.fa-control--prev {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 5px 0 10px;
  background-image: url(/nimg/slider-hot-prev.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.fa-control--prev.disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.fa-control--next {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 5px;
  background-image: url(/nimg/slider-hot-next.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.fa-control--next.disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.activity-slider {
  z-index: 1;
  position: relative;
  padding: 14px 0 0;
  overflow: hidden;
  list-style: none;
}

@media screen and (min-width: 64em) {
  .activity-slider::before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0));
    content: '';
  }
  .activity-slider::after {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff);
    content: '';
  }
}

.activity-slider--wrap {
  display: flex;
}

.fa-num {
  display: inline-flex;
  position: relative;
  justify-content: flex-end;
  width: 20px;
}

.fa-num span {
  color: #909090;
  font-family: "PT Serif", serif;
  font-size: 14px;
  font-weight: 700;
}

.widget-fa2 {
  --w-fa-header-color: #333;
  --w-fa-bg-color: #fff;
  --w-fa-num-color: #888;
  --w-fa-nick-color: #a5a5a5;
  --w-fa-date-color: #a5a5a5;
  --w-fa-line-color: #909090;
  --w-fa-border-color: #efefef;
  --w-fa-link-color: #202020;
  --w-fa-control-color: #d3d3d3;
  --w-fa-more-color: #202020;
  --w-arrow-icon: none;
}

.content_theme .widget-fa2 {
  --w-fa-header-color: var(--text-5-color, #333);
  --w-fa-bg-color: var(--layer-3-color, #fff);
  --w-fa-num-color: var(--text-6-color, #888);
  --w-fa-nick-color: var(--text-5-color, #a5a5a5);
  --w-fa-date-color: var(--text-5-color, #a5a5a5);
  --w-fa-line-color: var(--line-1-color, #909090);
  --w-fa-border-color: var(--line-1-color, #efefef);
  --w-fa-link-color: var(--text-2-color, #202020);
  --w-fa-control-color: var(--line-2-color, #d3d3d3);
  --w-fa-more-color: var(--text-2-color, #202020);
  --w-arrow-icon: var(--icon-1-filter, none);
}

@media screen and (min-width: 64em) {
  .widget-fa2 {
    grid-column: span 2;
    grid-row: span 2;
    background-image: linear-gradient(180deg, transparent 49px, var(--w-fa-bg-color) 49px);
  }
}

.widget-fa2--header {
  display: flex;
  align-items: center;
  min-height: 41px;
  margin: 0 0 8px;
  padding: 0 0 0 16px;
}

@media screen and (min-width: 40em) {
  .widget-fa2--header {
    padding: 0;
  }
}

.widget-fa2--icon {
  --color1: var(--pal-icon-color1, #333);
  --color2: var(--pal-icon-color2, #202020);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}

.widget-fa2--heading {
  display: flex;
  position: relative;
  color: var(--w-fa-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-fa2--heading::after {
  position: absolute;
  top: 4px;
  right: -16px;
  width: 10px;
  height: 14px;
  background-image: url(/nimg/arrow-right-short.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
  filter: var(--w-arrow-icon);
}

.widget-fa2--heading span {
  display: none;
  margin: 0 0 0 5px;
}

@media screen and (min-width: 30em) {
  .widget-fa2--heading span {
    display: block;
  }
}

.fa2-list {
  display: grid;
  position: relative;
  grid-template-columns: minmax(290px, 1fr);
  margin: 0;
}

@media screen and (min-width: 64em) {
  .fa2-list {
    grid-template-columns: repeat(2, minmax(290px, 1fr));
    padding: 18px 0;
  }
}

.fa2-list::after {
  display: none;
  z-index: 2;
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--w-fa-bg-color);
  content: '';
}

@media screen and (min-width: 64em) {
  .fa2-list::after {
    display: block;
  }
}

.fa2-item {
  position: relative;
  margin: 0;
  padding: 8px 15px;
  border-bottom: 1px solid var(--w-fa-border-color);
  background-color: var(--w-fa-bg-color);
}

@media screen and (min-width: 64em) {
  .fa2-item {
    margin: 0 20px;
    padding: 10px 0;
    border-bottom: 2px solid var(--w-fa-border-color);
  }
}

.fa2-item_hidden {
  display: none;
}

@media screen and (min-width: 64em) {
  .fa2-item_hidden {
    display: block;
  }
}

.fa2-item--wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

@media screen and (min-width: 64em) {
  .fa2-item--wrap {
    display: none;
  }
}

.fa2-item--button {
  width: 100%;
  max-width: 290px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #202020;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
}

.fa2-item--info {
  display: flex;
  align-items: baseline;
}

.fa2-item--nick {
  color: var(--w-fa-nick-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.fa2-item--nick::after {
  width: 4px;
  height: 18px;
  margin: 0 5px;
  content: '·';
}

.fa2-item--date {
  color: var(--w-fa-date-color);
  font-size: 11px;
  text-transform: uppercase;
}

.fa2-item--link {
  max-width: 720px;
  padding: 0 0 0 25px;
  overflow: hidden;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fa2-item--link a {
  -webkit-tap-highlight-color: transparent;
  color: var(--w-fa-link-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.fa2-item--link a::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.fa2-num {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  width: 20px;
  margin: 0 5px 0 0;
}

.fa2-num span {
  outline: none;
  color: var(--w-fa-num-color);
  font-size: 11px;
  font-weight: 500;
}

.fa2-more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 25px auto 0;
}

@media screen and (min-width: 64em) {
  .fa2-more {
    display: none;
  }
}

.fa2-more::after,
.fa2-more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--w-fa-control-color);
  content: '';
}

.fa2-more--button {
  padding: 0 20px;
  color: var(--w-fa-more-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .widget-mb {
    max-width: 1276px;
  }
}

.widget-mb--header {
  margin: 0 0 18px;
  padding: 5px 0 0 16px;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 40em) {
  .widget-mb--header {
    padding: 5px 0 0;
  }
}

.widget-mb--heading {
  position: relative;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-mb--heading::after {
  position: absolute;
  top: 6px;
  right: -16px;
  width: 10px;
  height: 14px;
  background-image: url(/nimg/arrow-right-short.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
}

.widget-mb--inner {
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
}

.widget-mb--item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  justify-self: center;
  max-width: 402px;
}

.widget-mb--link {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.media-sim {
  --sim-bg-color: var(--layer-4-color, #fff);
  --x-sim-bg-color-alpha: var(--sim-bg-color-alpha, rgba(255, 255, 255, .25));
  width: 100%;
  max-width: 645px;
  margin: 0 auto;
  padding: 25px 15px 20px;
}

@media screen and (min-width: 64em) {
  .media-sim {
    padding: 55px 15px 30px;
  }
}

@media screen and (min-width: 64em) {
  .media-sim {
    max-width: 1276px;
  }
}

.media-sim--header {
  margin: 0 0 11px;
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .media-sim--header {
    margin: 0 0 18px;
    font-size: 23px;
  }
}

.media-sim--grid {
  grid-gap: 10px 0;
  display: grid;
  width: 100%;
  max-width: 824px;
}

@media screen and (min-width: 64em) {
  .media-sim--grid {
    grid-gap: 11px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1276px;
  }
}

.sim {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 12px 12px 0;
  background-color: var(--sim-bg-color);
}

@media screen and (min-width: 64em) {
  .sim {
    gap: 0 12px;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 10px 12px 12px;
  }
}

@media screen and (min-width: 70.625em) {
  .sim {
    gap: 0 20px;
    padding: 12px;
  }
}

.sim--image {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .sim--image {
    display: block;
    width: 130px;
  }
}

@media screen and (min-width: 70.625em) {
  .sim--image {
    width: 140px;
  }
}

.sim--image::before {
  display: table;
  content: '';
}

@media screen and (min-width: 64em) {
  .sim--image::before {
    padding-bottom: 100%;
  }
}

.sim--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sim--head {
  display: flex;
  flex-direction: column;
  padding: 0 0 15px;
}

@media screen and (min-width: 64em) {
  .sim--head {
    padding: 0;
  }
  .sim--head .media-meta {
    font-size: 10px;
    line-height: 16px;
  }
  .sim--head .media-meta--view {
    margin: 0 8px 0 0;
  }
  .sim--head .media-meta--comment::before {
    top: 0;
    width: 11px;
    background-size: 11px;
  }
}

@media screen and (min-width: 70.625em) {
  .sim--head .media-meta {
    font-size: 11px;
    line-height: 20px;
  }
  .sim--head .media-meta--view {
    margin: 0 12px 0 0;
  }
  .sim--head .media-meta--comment::before {
    top: 3px;
    width: 13px;
    background-size: 13px;
  }
}

.sim--heading {
  margin: 0 0 6px;
  color: var(--text-4-color, #000);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 64em) {
  .sim--heading {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    width: 100%;
    height: 94px;
    margin: 0 0 auto;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    word-break: break-word;
  }
  .sim--heading.clipped {
    -webkit-line-clamp: 6;
  }
  .sim--heading + .media-meta {
    margin: 4px 0 0;
  }
}

@media screen and (min-width: 70.625em) {
  .sim--heading + .media-meta {
    margin: 6px 0 0;
  }
}

.sim--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.sim-text {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 12px 12px 15px;
  background-color: var(--sim-bg-color);
}

@media screen and (min-width: 64em) {
  .sim-text {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
  }
}

.sim-text--head {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 64em) {
  .sim-text--head {
    flex: 1 1 244px;
    align-self: stretch;
    padding: 0 0 0 12px;
  }
}

.sim-text--heading {
  margin: 0 0 12px;
  color: var(--text-4-color, #000);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 64em) {
  .sim-text--heading {
    margin: 0 0 6px;
  }
}

.sim-text--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.sim-text--summary {
  position: relative;
  margin: 0 0 12px;
  color: var(--text-5-color, #404040);
  font-size: 15px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .sim-text--summary {
    height: 60px;
    margin: 0 0 auto;
    overflow: hidden;
  }
}

.sim-text--summary::after {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: linear-gradient(180deg, var(--x-sim-bg-color-alpha) 0%, var(--sim-bg-color) 100%);
  content: '';
}

@media screen and (min-width: 64em) {
  .sim-text--summary::after {
    display: block;
  }
}

.media-best {
  --media-best-bg-color: var(--layer-3-color, #f7f7f7);
  --media-best-card-color: var(--layer-4-color, #fff);
  --media-best-head-bg-color: var(--layer-3-color, #f7f7f7);
  --media-best-head-color: var(--text-5-color, #333);
  --media-best-line-color: var(--line-1-color, #c4c4c4);
  --media-best-border-color: var(--line-2-color, #a2a2a2);
  --media-best-heading-color: var(--text-2-color, #000);
  --media-best-summary-color: var(--text-6-color, #000);
  width: 100%;
  margin: 32px auto 0;
  padding: 0 0 20px;
  border-top: 1px solid var(--media-best-line-color);
  background-color: var(--media-best-bg-color);
}

@media screen and (min-width: 48em) {
  .media-best {
    padding: 0 15px 36px;
  }
}

.media-best_main {
  max-width: 615px;
}

@media screen and (min-width: 64em) {
  .media-best_main {
    max-width: 100%;
  }
}

.media-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  height: 64px;
  margin: 0 auto;
  transform: translateY(-50%);
  border-top: 2px solid var(--media-best-border-color);
  border-bottom: 2px solid var(--media-best-border-color);
  background-color: var(--media-best-head-bg-color);
}

@media screen and (min-width: 40em) {
  .media-head {
    max-width: 330px;
  }
}

.media-head--icon {
  width: 23px;
  height: 32px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/media-best.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 23px;
}

.media-head--text {
  color: var(--media-best-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

@media screen and (min-width: 40em) {
  .media-head--text {
    font-size: 23px;
  }
}

.media-best--grid {
  grid-gap: 10px 53px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  max-width: 380px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .media-best--grid {
    max-width: 813px;
  }
}

@media screen and (min-width: 64em) {
  .media-best--grid {
    grid-gap: 20px 53px;
    max-width: 1246px;
  }
}

.media-best--grid_main {
  grid-gap: 20px 10px;
}

@media screen and (min-width: 40em) {
  .media-best--grid_main {
    max-width: 615px;
  }
}

@media screen and (min-width: 64em) {
  .media-best--grid_main {
    grid-gap: 20px 20px;
    max-width: 1246px;
  }
}

.media-best--item {
  background-color: #e0e0e0;
}

.media-text {
  display: flex;
  position: relative;
  background-color: var(--media-best-card-color);
}

@media screen and (min-width: 64em) {
  .media-text {
    background-color: transparent;
  }
}

.media-text--head {
  display: flex;
  flex-direction: column;
  padding: 20px 15px 15px;
}

@media screen and (min-width: 64em) {
  .media-text--head {
    padding: 20px 0 15px;
  }
}

.media-text--head .media-meta {
  display: flex;
  justify-content: center;
}

.media-text--label {
  margin: 0 0 10px;
  color: #e51e25;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.media-text--heading {
  margin: 0 0 17px;
  color: var(--media-best-heading-color);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.media-text--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-text--summary {
  margin: 0 0 12px;
  color: var(--media-best-summary-color);
  font-size: 15px;
  line-height: 21px;
  text-align: center;
}

.media-news {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: var(--media-best-card-color);
}

@media screen and (min-width: 64em) {
  .media-news {
    background-color: transparent;
  }
}

.media-news--image {
  width: 100%;
  padding: 0 0 53.023%;
  background-image: url(/nimg/509x252.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.media-news--head {
  display: flex;
  flex-direction: column;
  padding: 19px 15px 15px;
}

@media screen and (min-width: 64em) {
  .media-news--head {
    padding: 19px 0 15px;
  }
}

.media-news--head .media-meta {
  display: flex;
  justify-content: center;
}

.media-news--label {
  margin: 0 0 8px;
  color: #e51e25;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.media-news--heading {
  margin: 0 0 8px;
  color: var(--media-best-heading-color);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.media-news--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-video {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: var(--media-best-card-color);
}

@media screen and (min-width: 64em) {
  .media-video {
    background-color: transparent;
  }
}

.media-video--image {
  position: relative;
  width: 100%;
  padding: 0 0 53.023%;
  background-image: url(/nimg/479x267.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.media-video--image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  background-image: url(/nimg/stream-play.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 46px;
  content: '';
}

.media-video--head {
  display: flex;
  flex-direction: column;
  padding: 19px 15px 15px;
}

@media screen and (min-width: 64em) {
  .media-video--head {
    padding: 19px 0 15px;
  }
}

.media-video--head .media-meta {
  display: flex;
  justify-content: center;
}

.media-video--label {
  margin: 0 0 8px;
  color: #e51e25;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.media-video--heading {
  margin: 0 0 8px;
  color: var(--media-best-heading-color);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.media-video--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.search-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  background-color: var(--layer-2a-color, #fafafa);
}

.widget-search {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 0 15px 30px;
}

.search-form {
  --s-form-field-bg-color: var(--layer-2-color, #fff);
  --s-form-field-color: var(--text-2-color, #000);
  --s-form-field-border-color: var(--line-1-color, #e0e0e0);
  --s-form-button-bg-color: var(--layer-4-color, #4f4f4f);
  width: 100%;
  margin: 0 0 20px;
}

.search-form_medium {
  max-width: 960px;
}

.search-form_small {
  margin: 20px 0 0;
}

.search-form_nick {
  margin: 24px 0 0;
}

.search-field {
  display: flex;
}

.search-field--input {
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--s-form-field-border-color);
  border-radius: 3px 0 0 3px;
  background-color: var(--s-form-field-bg-color);
  color: var(--s-form-field-color);
}

.search-form_small .search-field--input {
  padding: 3px 12px;
}

.search-form_nick .search-field--input {
  padding: 3px 12px;
}

.search-field--button {
  height: 42px;
  padding: 0 20px 0 21px;
  border: 1px solid var(--s-form-field-border-color);
  border-left: 0;
  border-radius: 0 3px 3px 0;
  background-color: var(--s-form-button-bg-color);
  background-image: url(/nimg/search-input-button.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .search-field--button {
    padding: 0 40px 0 55px;
    background-position: 30px 50%;
  }
}

.search-form_small .search-field--button {
  height: 32px;
  background-size: 15px;
  font-size: 14px;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .search-form_small .search-field--button {
    padding: 0 20px 0 35px;
    background-position: 15px 50%;
  }
}

.search-form_nick .search-field--button {
  height: 32px;
  background-size: 15px;
  font-size: 14px;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .search-form_nick .search-field--button {
    padding: 0 20px 0 35px;
    background-position: 15px 50%;
  }
}

.search-field--txt {
  display: none;
}

@media screen and (min-width: 48em) {
  .search-field--txt {
    display: inline;
  }
}

.search-note {
  color: #202020;
  font-size: 16px;
  line-height: 20px;
}

.search-filter {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
}

.search-filter--button {
  height: 22px;
  padding: 0 8px;
  border-radius: 3px;
  color: #202020;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}

.search-filter--button:not(:last-child) {
  margin: 0 5px 0 0;
}

.search-filter--button.active {
  background-color: #e51e25;
  color: #fff;
}

.search-pager {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 10px;
}

.s-pager {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  margin: 0;
  list-style-type: none;
}

.s-pager li {
  margin: 0;
}

.s-pager--link {
  display: flex;
  margin: 0 0 5px;
  padding: 6px 8px;
  color: #202020;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.active .s-pager--link {
  background-color: #efefef;
}

.s-pager--link span {
  margin: 0 0 0 5px;
  color: #909090;
}

.article {
  --article-bg-color: #fff;
  --article-color: #202020;
  --article-heading-color: #202020;
  --article-lead-color: #000;
  --article-lead-image-border-color: #eee;
  --article-fig-color: #757575;
  --article-blockquote-bg-color: #fbfbfb;
  --article-blockquote-color: #000;
  --article-blockquote-border-color: #ccc;
  --article-line-color: #ccc;
  --article-social-heading-color: #909090;
  --article-tag-heading-color: #909090;
  --article-tag-color: #404040;
  --article-sm-color: #909090;
  --article-sm-link-color: #404040;
  --article-table-bg-color: #eee;
  --article-table-color: #424242;
  --article-table-hover-color: #f5f5f5;
  --article-table-border-color: #e0e0e0;
  --quiz-lead-color: var(--text-3-color, #000);
  --crs-tag-color: var(--text-5-color, #aaa);
  --crs-line-color: var(--line-2-color, #f0f0f0);
  --prl-header-color: var(--text-3-color, #000);
  --prl-tag-color: var(--text-5-color, #aaa);
  --prl-link-color: var(--text-2-color, #000);
  --prl-line-color: var(--line-2-color, #f0f0f0);
  --prl-icon-bg-color: var(--layer-4-color, #fdeaed);
  --prl-image-bg-color: var(--layer-4-color, #f4f4f4);
  --prl-border-color: var(--line-1-color, #f0f0f0);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 15px;
  border-bottom: 1px solid var(--article-line-color);
  background-color: var(--article-bg-color);
}

.content_theme .article {
  --article-bg-color: var(--layer-2a-color, #fff);
  --article-color: var(--post-color, #202020);
  --article-heading-color: var(--text-2-color, #202020);
  --article-lead-color: var(--text-2-color, #000);
  --article-lead-image-border-color: var(--line-1-color, #eee);
  --article-fig-color: var(--text-6-color, #757575);
  --article-blockquote-bg-color: var(--layer-3-color, #fbfbfb);
  --article-blockquote-color: var(--text-4-color, #000);
  --article-blockquote-border-color: var(--line-1-color, #ccc);
  --article-line-color: var(--line-1-color, #ccc);
  --article-social-heading-color: var(--text-6-color, #909090);
  --article-tag-heading-color: var(--text-6-color, #909090);
  --article-tag-color: var(--text-5-color, #404040);
  --article-sm-color: var(--text-6-color, #909090);
  --article-sm-link-color: var(--text-5-color, #404040);
  --article-table-bg-color: var(--layer-4-color, #eee);
  --article-table-color: var(--text-2-color, #424242);
  --article-table-hover-color: var(--layer-2-color, #f5f5f5);
  --article-table-border-color: var(--line-2-color, #e0e0e0);
}

@media screen and (min-width: 64em) {
  .article {
    padding: 55px 15px 40px;
  }
}

.article--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 994px;
}

.article--inner.article-quiz--inner {
  background-color: var(--article-bg-color);
}

.article--inner .article--lead {
  color: var(--quiz-lead-color);
}

.article--inner .article--lead a {
  color: var(--quiz-lead-color);
  text-decoration: underline;
}

.article--inner .article--lead_center p {
  color: var(--quiz-lead-color);
}

.article--meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 25px;
  margin: 0 0 18px;
}

@media screen and (min-width: 64em) {
  .article--meta {
    margin: 0 0 28px;
  }
}

.article--meta_center {
  justify-content: center;
}

.article--label {
  margin: 0 0 7px;
  color: #e51e25;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .article--label {
    margin: 0 0 12px;
  }
}

.article-quiz .article--label {
  margin: 0 auto 7px;
}

@media screen and (min-width: 64em) {
  .article-quiz .article--label {
    margin: 0 auto 12px;
  }
}

.article--heading {
  margin: 0 0 10px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 64em) {
  .article--heading {
    margin: 0 0 13px;
    font-size: 36px;
    line-height: 44px;
  }
}

.article--heading_center {
  margin-right: auto;
  margin-left: auto;
}

.article-quiz--inner .article--heading {
  text-align: center;
}

.article--lead {
  margin: 0 0 20px;
  color: #000;
  font-size: 17px;
  line-height: 25px;
}

.article--lead_center {
  text-align: center;
}

@media screen and (min-width: 48em) {
  .article--lead_center {
    padding: 0 15px;
  }
}

.article--lead_center p {
  margin: 0;
  color: #000;
  font-size: 17px;
  line-height: 25px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .article--lead_center p {
    font-size: 19px;
    line-height: 28px;
  }
}

.article--separator {
  height: 18px;
  margin: 20px 0 25px;
  background-image: url(/nimg/article-separator.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

@media screen and (min-width: 64em) {
  .article--separator {
    margin: 30px 0 35px;
  }
}

.article--photo {
  display: table;
  margin: 15px 0 20px;
}

@media screen and (min-width: 64em) {
  .article--photo {
    margin: 35px 0 40px;
  }
}

.article--photo_center {
  margin: 15px auto 20px;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .article--photo_center {
    margin: 35px auto 40px;
  }
}

.article--photo_right {
  margin: 15px auto 20px;
}

@media screen and (min-width: 64em) {
  .article--photo_right {
    margin: 35px auto 40px;
  }
}

.article .nowrap {
  white-space: nowrap;
}

.article .card {
  display: inline-block;
  width: 25px;
  height: 16px;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.article figcaption {
  padding: 15px 15px 0;
  color: var(--article-fig-color);
  font-size: 15px;
  font-style: italic;
  line-height: 20px;
  text-align: center;
}

.article .align-center {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.article .f14 {
  margin: 0 0 14px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .article .f14 {
    font-size: 28px;
    line-height: 28px;
  }
}

.article .f16 {
  margin: 0 0 14px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .article .f16 {
    font-size: 22px;
    line-height: 28px;
  }
}

.article.article_aside {
  max-width: 1306px;
  margin: 0 auto;
}

.article.article_aside .article--inner {
  max-width: 964px;
}

@media screen and (min-width: 64em) {
  .article.article_aside {
    gap: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: start;
    padding: 45px 30px 40px 30px;
  }
}

@media screen and (min-width: 64em) {
  .article--aside {
    gap: 60px;
    display: flex;
    flex-basis: 250px;
    flex-direction: column;
    flex-shrink: 0;
    height: 100%;
  }
}

.article-lead {
  grid-gap: 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin: 0 0 15px;
}

@media screen and (min-width: 48em) {
  .article-lead {
    grid-gap: 0 25px;
    grid-template-columns: fit-content(350px) 1fr;
  }
}

@media screen and (min-width: 64em) {
  .article-lead {
    margin: 0 0 30px;
  }
}

@media screen and (min-width: 48em) {
  .promo-page .article-lead {
    grid-template-columns: 350px 1fr;
  }
}

.article-lead--picture {
  position: relative;
  width: 100%;
  max-width: 350px;
}

@media screen and (min-width: 48em) {
  .article-lead--picture {
    width: 350px;
  }
}

.article-lead--picture::before {
  display: table;
  padding: 0 0 53.023%;
  content: '';
}

.article-lead--picture_accent {
  background-color: #eee;
}

.article-lead--picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-lead--picture_logo {
  display: flex;
  justify-content: center;
  height: 120px;
  padding: 16px 30px;
  box-shadow: inset 0 0 0 1px var(--article-lead-image-border-color);
}

.article-lead--picture_logo img {
  position: initial;
  object-fit: contain;
}

.promo-page .article-lead--picture {
  display: flex;
  justify-content: center;
  height: 120px;
  padding: 16px 0;
  box-shadow: inset 0 0 0 1px var(--article-lead-image-border-color);
}

.promo-page .article-lead img {
  position: initial;
  width: auto;
}

.article-lead--text_wide {
  grid-column: 1/3;
}

.article-lead--text p {
  margin: 0;
  color: var(--article-lead-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .article-lead--text p {
    font-size: 19px;
    line-height: 28px;
  }
}

.article-lead--text a {
  color: var(--article-lead-color);
  text-decoration: underline;
}

.article-lead a {
  color: var(--article-lead-color);
  text-decoration: underline;
}

.article-lead--dark {
  display: none;
}

[theme='dark'] .article-lead--dark {
  display: block;
}

[theme='dark'] .article-lead--light {
  display: none;
}


/* stylelint-disable -- selector-no-qualifying-type */

.article-body {
  padding: 0 0 40px;
}

.article-body h2 {
  margin: 35px 0 25px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .article-body h2 {
    margin: 42px 0 28px;
    font-size: 28px;
    line-height: 28px;
  }
}

.article-body h3 {
  margin: 15px 0 10px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .article-body h3 {
    margin: 28px 0 14px;
    font-size: 22px;
    line-height: 28px;
  }
}

.article-body a {
  color: var(--article-color);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-body a.ck-anchor {
  font-weight: inherit;
  text-decoration: inherit;
  cursor: inherit;
}

.article-body a.a-hall::before {
  display: inline-block;
  flex-shrink: 0;
  width: 21px;
  height: 23px;
  margin: 0 4px 0 4px;
  background-image: url(/nimg/hof-crown-article.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 21px;
  vertical-align: middle;
  content: '';
}

.article-body ul {
  margin: 28px 0;
  list-style-type: disc;
}

.article-body ol {
  margin: 28px 0;
}

.article-body li {
  margin: 0 0 7px 2em;
  color: var(--article-color);
  font-family: "Noto Serif", serif;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .article-body li {
    font-size: 17px;
    line-height: 28px;
  }
}

.article-body p {
  margin: 0 0 14px;
  color: var(--article-color);
  font-family: "Noto Serif", serif;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .article-body p {
    font-size: 17px;
    line-height: 28px;
  }
}

.article-body blockquote {
  margin: 30px 0;
  padding: 18px 15px 2px;
  border-top: 1px solid var(--article-blockquote-border-color);
  border-bottom: 1px solid var(--article-blockquote-border-color);
  background-color: var(--article-blockquote-bg-color);
}

@media screen and (min-width: 64em) {
  .article-body blockquote {
    padding: 38px 40px 23px;
  }
}

.article-body blockquote p {
  color: var(--article-blockquote-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .article-body blockquote p {
    font-size: 19px;
    line-height: 28px;
  }
}

.article-body blockquote li {
  color: var(--article-blockquote-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .article-body blockquote li {
    font-size: 19px;
    line-height: 28px;
  }
}


/* stylelint-enable */

.article-video {
  width: 100%;
  max-width: 854px;
  margin: 15px 0;
}

@media screen and (min-width: 64em) {
  .article-video {
    margin: 30px 0;
  }
}

.comments-best .article-video {
  max-width: 427px;
}

.comments-list .article-video {
  max-width: 427px;
}

.align-center .article-video {
  margin: 15px auto;
}

@media screen and (min-width: 64em) {
  .align-center .article-video {
    margin: 30px auto;
  }
}

.article-video_center {
  margin: 15px auto;
}

@media screen and (min-width: 64em) {
  .article-video_center {
    margin: 30px auto;
  }
}

.article-video_live {
  max-width: 736px;
  margin: 0 0 25px;
}

@media screen and (min-width: 64em) {
  .article-video_live {
    margin: 0 0 55px;
  }
}

.article-video--ratio {
  position: relative;
  padding-bottom: 56.25%;
}

.article-video--ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-spoiler--button {
  width: 76px;
  margin: 2px 0 0 4px;
  padding: 2px 9px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #606060;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
}

.spoiler .content-spoiler--button {
  color: #606060;
  font-weight: 700;
  text-decoration: none;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px 0 0;
  border-top: 1px solid var(--article-line-color);
}

.article-tag {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.article-tag_medium {
  margin: 0 0 20px;
}

@media screen and (min-width: 64em) {
  .article-tag_medium {
    width: 60%;
    margin: 0;
  }
}

.article-tag--heading {
  margin: 0 5px 0 0;
  color: var(--article-tag-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.article-tag--item {
  position: relative;
  color: var(--article-tag-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.article-tag--item:not(:last-child) {
  margin: 0 5px 0 0;
}

.article-tag--item:not(:last-child)::after {
  position: relative;
  top: 0;
  left: 0;
  content: ',';
}

.article-social {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .article-social_small {
    justify-content: flex-end;
    width: 40%;
  }
}

.article-social--heading {
  width: 100%;
  margin: 0 0 8px;
  color: var(--article-social-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .article-social--heading {
    width: auto;
    margin: 0 10px 0 0;
  }
}

.article-social--inner {
  display: flex;
  align-items: flex-start;
}

.article-social--item {
  display: flex;
  position: relative;
  color: #909090;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  line-height: 21px;
}

.article-social--item::before {
  position: relative;
  top: 0;
  left: 0;
  height: 20px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  content: '';
}

.article-social--item_vk::before {
  width: 26px;
  background-image: url(/nimg/social-item-vk.svg);
  background-size: 26px;
}

.article-social--item_fb::before {
  width: 18px;
  background-image: url(/nimg/social-item-fb.svg);
  background-size: 18px;
}

.article-social--item_tw::before {
  width: 23px;
  background-image: url(/nimg/social-item-tw.svg);
  background-size: 23px;
}

.article-social--item:not(:last-child) {
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

.article-social--item:not(:last-child)::after {
  position: relative;
  top: 0;
  left: 10px;
  border-right: 1px solid var(--article-line-color);
  content: '';
}

.article-sm {
  display: flex;
  width: 100%;
  margin: 0 0 25px;
}

.article-sm--link {
  color: var(--article-sm-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.article-sm--link a {
  color: var(--article-sm-link-color);
  text-decoration: none;
}

.promo-page-sm {
  display: flex;
  width: 100%;
  margin: 0 0 25px;
}

.promo-page-sm--link {
  color: var(--article-sm-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.promo-page-sm--link a {
  color: var(--article-sm-link-color);
  text-decoration: none;
}


/* stylelint-disable -- selector-no-qualifying-type */

.article--inner .article-table {
  margin: 15px 0 20px;
  overflow-x: auto;
}

@media screen and (min-width: 64em) {
  .article--inner .article-table {
    margin: 35px 0 40px;
  }
}

.article--inner .article-table table {
  width: auto;
  margin: 0 auto;
  border: 0;
  border-collapse: collapse;
  background-color: transparent;
  box-shadow: none;
}

.article--inner .article-table table tr:hover td {
  background-color: var(--article-table-hover-color);
}

.article--inner .article-table table th {
  padding: 10px;
  border: 1px solid var(--article-table-border-color);
  background-color: var(--article-table-bg-color);
  color: var(--article-table-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.article--inner .article-table table th p {
  margin: 0;
  color: var(--article-table-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 64em) {
  .article--inner .article-table table th p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.article--inner .article-table table td {
  padding: 10px;
  border: 1px solid var(--article-table-border-color);
  color: var(--article-table-color);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .article--inner .article-table table td {
    font-size: 14px;
  }
}

.article--inner .article-table table td p {
  margin: 0;
  color: var(--article-table-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

@media screen and (min-width: 64em) {
  .article--inner .article-table table td p {
    font-size: 14px;
    line-height: 1.4;
  }
}


/* stylelint-enable */

.article--inner .article-table tr:nth-child(even) td,
.article--inner .article-table tr:nth-child(even) th {
  background-color: transparent;
}

.live-breadcrumbs {
  --live-breadcrumbs-bg-color: var(--layer-2a-color, #fff);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0 0;
  background-color: var(--live-breadcrumbs-bg-color);
}

.live-breadcrumbs--link {
  --live-link-color: var(--text-5-color, #606060);
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: var(--live-link-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.live-breadcrumbs--link:not(:last-child) {
  margin: 0 16px 0 0;
}

.article-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 32px 15px 40px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 64em) {
  .article-bottom {
    padding: 32px 30px 40px;
  }
}

.promo-reg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 0 15px 64px;
  border-bottom: 1px solid var(--line-1-color, #ccc);
}

@media screen and (min-width: 64em) {
  .promo-reg-content {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 0 30px 64px;
  }
}

.promo-reveiw-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  padding: 0 0 32px;
}

.article-course {
  margin-bottom: 20px;
}

.article .twitter-tweet {
  margin: 25px auto !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 48em) {
  .article .twitter-tweet {
    margin: 28px auto !important;
  }
}

.article div[data-oembed-url*='reddit.com/'] {
  margin: 25px auto !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 48em) {
  .article div[data-oembed-url*='reddit.com/'] {
    margin: 28px auto !important;
  }
}

.article .instagram-media {
  margin: 25px auto !important;
}

@media screen and (min-width: 48em) {
  .article .instagram-media {
    margin: 28px auto !important;
  }
}

.article div[data-oembed-url*='/t.me/'] {
  margin: 25px auto !important;
}

@media screen and (min-width: 48em) {
  .article div[data-oembed-url*='/t.me/'] {
    margin: 28px auto !important;
  }
}

.article .article-video--ratio .jwplayer {
  position: relative;
  width: initial !important;
  height: initial !important;
  padding-bottom: 56.25%;
}

.article .article-video--ratio .jwplayer video {
  width: inherit !important;
  height: inherit !important;
  transform: none !important;
}

.article .article-video--ratio .videobg {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

.article .article-video--ratio .videobg video {
  width: 100% !important;
  height: 100% !important;
}

.comments-best {
  --comments-heading-color: var(--text-5-color, #333);
  --comments-arrow-bg-color: var(--layer-3-color, #fff);
  --comments-arrow-border-color: var(--line-0-color, #ddd);
  --comments-top-bg-color: var(--layer-5-color, #fff);
  padding: 20px 0 0;
}

@media screen and (min-width: 48em) {
  .comments-best {
    padding: 40px 15px 0;
  }
}

.comments-best--inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 15px;
  padding: 0 0 0 15px;
}

@media screen and (min-width: 48em) {
  .comments-best--inner {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}

.comments-best-heading {
  margin: 0 0 9px;
  color: var(--comments-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .comments-best-heading {
    margin: 0;
    font-size: 23px;
  }
}

.comments-top {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .comments-top {
    margin: 0 0 0 25px;
  }
}

.comments-top--item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 6px 0 0;
  background-color: var(--comments-top-bg-color);
  cursor: pointer;
}

.comments-top--item_active {
  box-shadow: inset 0 0 0 2px #e51e25;
}

.comments-top--item_active::after {
  z-index: 2;
  position: absolute;
  top: 50px;
  left: 12px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border: solid var(--comments-arrow-border-color);
  border-width: 1px 0 0 1px;
  background-color: var(--layer-2a-color, #f4f4f4);
  content: '';
}

.comments-top--avatar {
  width: 32px;
  height: 32px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.comments-top--button-next,
.comments-top--button-prev {
  display: none;
  z-index: 2;
  width: 28px;
  height: 42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .comments-top--button-next,
.comments-top--button-prev {
    display: block;
  }
}

.comments-top--button-next_disabled,
.comments-top--button-prev_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.comments-top--button-prev {
  margin: 0 15px 0 0;
  background-image: url(/nimg/slider-hot-prev.svg);
}

.comments-top--button-next {
  margin: 0 0 0 9px;
  background-image: url(/nimg/slider-hot-next.svg);
}

.comments-list {
  padding: 20px 0 0;
}

@media screen and (min-width: 48em) {
  .comments-list {
    padding: 40px 15px 0;
  }
}

.comments-list--pager {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5px 15px;
}

@media screen and (min-width: 48em) {
  .comments-list--pager {
    padding: 5px 0;
  }
}

.comments-list-heading {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 11px;
  padding: 0 0 0 15px;
  color: var(--text-5-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .comments-list-heading {
    margin: 0 auto 18px;
    padding: 0;
    font-size: 23px;
  }
}

.comments-editor {
  padding: 30px 15px;
  overflow: hidden;
}

.admin-post {
  --x-post-checkbox-filter: var(--icon-1-filter, none);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 8px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .admin-post {
    padding: 0 35px;
  }
}

.admin-post--editor {
  width: 100%;
  color: #909090;
  font-size: 12px;
  line-height: 18px;
}

.admin-post--button {
  color: #909090;
  font-size: 12px;
  line-height: 24px;
  white-space: nowrap;
}

.admin-post--button_ip {
  margin: 0 auto 0 0;
  line-height: 26px;
}

.admin-post--button_edit {
  margin: 0 0 0 auto;
  padding: 0 5px;
  line-height: 24px;
}

.admin-post--button_edit_admin {
  margin: 0 0 0 auto;
  padding: 0 5px;
  line-height: 24px;
}

.admin-post--button_delete {
  padding: 0 5px;
  color: #e57373;
  line-height: 24px;
}

.admin-post--button_delete_admin {
  padding: 0 5px;
  color: #e57373;
  line-height: 24px;
}

.admin-post--check {
  flex-shrink: 0;
  margin: 0 0 0 10px;
  filter: var(--x-post-checkbox-filter);
}

#chatContainer iframe {
  width: 100%;
  height: 497px;
  margin: 0 0 40px;
}

@media screen and (min-width: 50.8125em) {
  #chatContainer iframe {
    height: 410px;
  }
}

.live-chat {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 40px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

.live-chat_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  border: 0;
}

.live-chat--inner {
  display: flex;
  flex-grow: 1;
  height: 318px;
}

.live-chat_modal .live-chat--inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 145px;
  left: 0;
  height: initial;
}

@media screen and (min-width: 48em) {
  .live-chat_modal .live-chat--inner {
    bottom: 89px;
  }
}

.frame-message {
  width: 100%;
  margin: 0;
  padding: 15px 15px 10px;
  overflow-y: auto;
  list-style-type: none;
}

@media screen and (min-width: 48em) {
  .frame-message {
    padding: 15px 15px 10px 30px;
  }
}

.frame-message--item {
  color: #000;
  font-size: 13px;
  line-height: 20px;
}

.msg-time {
  color: #a1a1a1;
  font-size: 13px;
}

.msg-nick {
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

.msg-std {
  word-wrap: break-word;
  color: #000;
  font-size: 13px;
  overflow-wrap: break-word;
}

.frame-user {
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-start;
  width: 250px;
  padding: 15px 10px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  border-left: 1px solid #ededed;
}

@media screen and (min-width: 48em) {
  .frame-user {
    display: flex;
  }
}

.frame-user--quant {
  color: #a1a1a1;
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
}

.frame-user--nick {
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.chat-send {
  padding: 15px 15px 10px;
  background-color: #efefef;
}

@media screen and (min-width: 48em) {
  .chat-send {
    padding: 15px 30px 20px;
  }
}

.live-chat_modal .chat-send {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.chat-send--form {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 48em) {
  .chat-send--form {
    flex-wrap: nowrap;
  }
}

.live-chat_modal .chat-send--form {
  flex-wrap: wrap;
}

.chat-send--wrap {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}

@media screen and (min-width: 48em) {
  .chat-send--wrap {
    flex-wrap: nowrap;
  }
}

.chat-send--field {
  width: 100%;
  margin: 0 0 10px;
  padding: 6px 5px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
}

@media screen and (min-width: 48em) {
  .chat-send--field {
    margin: 0 10px 0 0;
  }
}

.chat-send--button {
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  outline: none;
  background-color: #000;
  color: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 32px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .chat-send--button {
    width: auto;
    margin: 0;
  }
}

.chat-send--new {
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #606060;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .chat-send--new {
    width: auto;
    margin: 0 0 0 20px;
  }
}

.chat-send--note {
  width: 100%;
  padding: 6px 0 2px;
  color: #999;
  font-size: 12px;
  line-height: 14px;
}

@media screen and (min-width: 48em) {
  .chat-send--note br {
    display: none;
  }
}

.chat-send.new-messages {
  background-image: url(/nimg/chat-dots.svg);
  background-position: 58px -3px;
  background-repeat: no-repeat;
  background-size: 22px;
}

@media screen and (min-width: 48em) {
  .chat-send.new-messages {
    background-position: 73px -3px;
  }
}

.reg-note {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.reg-note_register {
  margin: 20px auto 0;
}

.reg-note--wrap {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin: 0 0 10px;
  padding: 0 0 15px;
  border-bottom: 1px solid #e5e5e5;
}

.reg-note--wrap::before {
  position: absolute;
  bottom: -5px;
  left: 160px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: solid #e5e5e5;
  border-width: 1px 0 0 1px;
  background-color: #fffdee;
  content: '';
}

.reg-note--heading {
  color: #909090;
  font-size: 18px;
}

.reg-note--heading a {
  color: #616161;
  font-weight: 700;
  text-decoration: underline;
}

.reg-note--subheading {
  margin: 0 0 10px;
  color: #000;
  font-size: 18px;
}

.reg-note--inner {
  max-width: 1246px;
  padding: 20px 15px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
}

@media screen and (min-width: 48em) {
  .reg-note--inner {
    padding: 20px 30px;
  }
}

.reg-note--list {
  margin: 0;
  list-style: disc;
  list-style-position: inside;
}

.reg-note--item {
  margin: 0 0 5px;
  color: #616161;
  font-size: 14px;
}

.reportage-header {
  --rptg-header-bg-color: var(--layer-2-color, #fafafa);
  --rptg-header-color: var(--text-2-color, #202020);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 15px;
  background-color: var(--rptg-header-bg-color);
}

@media screen and (min-width: 64em) {
  .reportage-header {
    padding: 45px 15px 10px;
  }
}

.reportage-header--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 990px;
}

.reportage-header--meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 35px;
  margin: 0 0 7px;
}

.reportage-header--sponsor {
  display: none;
  align-items: center;
  margin: 0 0 0 auto;
  color: #a1a1a1;
  font-size: 11px;
  line-height: 28px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .reportage-header--sponsor {
    display: flex;
  }
}

.reportage-header--sponsor span {
  margin: 0 10px 0 0;
}

.reportage-header--heading {
  margin: 0;
  color: var(--rptg-header-color);
  font-family: "Noto Serif", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 64em) {
  .reportage-header--heading {
    font-size: 30px;
    line-height: 44px;
  }
}

.reportage-order {
  display: flex;
  width: 100%;
  max-width: 990px;
  margin: 0 0 8px;
  padding: 0 15px;
}

@media screen and (min-width: 48em) {
  .reportage-order {
    margin: 0;
    padding: 0;
  }
}

.reportage-order--button {
  display: flex;
  align-items: center;
  color: #404040;
  font-size: 13px;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .reportage-order--button {
    margin: 0 0 0 auto;
  }
}

.reportage-order--button::before {
  width: 20px;
  height: 26px;
  margin: 0 5px 0 0;
  background-image: url(/nimg/toggle-order.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 29px;
  content: '';
}

.reportage-pager {
  --rptg-pager-bg-color: var(--layer-2-color, #fafafa);
  --rptg-pager-border-color: var(--line-2-color, #dcdcdc);
  --rptg-pager-active-bg-color: var(--layer-2a-color, #fff);
  --rptg-pager-link-bg-color: var(--layer-1-color, #fefefe);
  --rptg-pager-link-mob-bg-color: var(--layer-1-color, #fafafa);
  --rptg-pager-line-color: var(--layer-2a-color, #fff);
  --rptg-pager-color: var(--text-5-color, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--rptg-pager-border-color);
  background-color: var(--rptg-pager-bg-color);
}

@media screen and (min-width: 48em) {
  .reportage-pager {
    padding: 0 15px;
  }
}

.event-pager {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 990px;
  margin: 0;
  list-style-type: none;
}

@media screen and (min-width: 48em) {
  .event-pager {
    flex-direction: row;
    align-items: center;
    transform: translateY(1px);
  }
}

.event-pager li {
  margin: 0;
}

.event-pager--link {
  display: flex;
  padding: 4px 15px;
  background-color: var(--rptg-pager-link-mob-bg-color);
  color: var(--rptg-pager-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .event-pager--link {
    flex-direction: column;
    min-height: 60px;
    padding: 14px 28px 2px;
    border: 1px solid var(--rptg-pager-border-color);
    border-radius: 5px 5px 0 0;
    background-color: var(--rptg-pager-link-bg-color);
    font-size: 23px;
    line-height: 30px;
  }
}

.active .event-pager--link {
  border-bottom-color: var(--rptg-pager-line-color);
  background-color: var(--rptg-pager-active-bg-color);
  color: #e51e25;
  font-weight: 700;
}

.event-pager--inner {
  display: flex;
}

.event-pager--prefix {
  margin: 0 5px 0 0;
}

@media screen and (min-width: 48em) {
  .event-pager--prefix {
    display: none;
  }
  .active .event-pager--prefix {
    display: block;
  }
}

.event-pager--date {
  display: block;
  margin: 0 0 0 10px;
  padding: 10px 0 0;
  color: #a1a1a1;
  font-family: Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
}

@media screen and (min-width: 48em) {
  .event-pager--date {
    display: none;
    margin: 0;
    padding: 0;
  }
  .active .event-pager--date {
    display: block;
  }
}

.reportage-reload {
  --rptg-reload-bg-color: var(--layer-2a-color, #fff);
  display: none;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: var(--rptg-reload-bg-color);
}

.reportage-reload.active {
  display: flex;
}

.reportage-reload--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 990px;
  background-color: #393;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .reportage-reload--button {
    font-size: 16px;
  }
}

.reportage-reload--button::after {
  width: 22px;
  height: 22px;
  margin: 0 0 0 20px;
  background-image: url(/nimg/reloading.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 22px;
  content: '';
}

.reportage-day {
  --rptg-day-bg-color: var(--layer-2a-color, #fff);
  --rptg-day-color: var(--post-color, #202020);
  --rptg-day-line-color: var(--line-2-color, #e5e5e5);
  --rptg-day-border-color: var(--line-2-color, #dcdcdc);
  --rptg-day-dashed-color: var(--line-1-color, #e5e5e5);
  --rptg-day-time-color: var(--text-2-color, #404040);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px 20px;
  border-bottom: 1px solid var(--rptg-day-border-color);
  background-color: var(--rptg-day-bg-color);
}

@media screen and (min-width: 48em) {
  .reportage-day {
    padding: 0 15px;
  }
}

.reportage-day_top {
  border: 0;
}

.reportage-day-pager {
  display: flex;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 15px 15px 0;
}

.reportage-pager-top .reportage-day-pager {
  max-width: 1020px;
  padding: 15px;
}

.reportage-pager-top {
  --rptg-day-bg-color: var(--layer-2a-color, #fff);
  background-color: var(--rptg-day-bg-color);
}

.reportage-post {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 990px;
  overflow: hidden;
}

@media screen and (min-width: 48em) {
  .reportage-post {
    flex-direction: row;
  }
}

.reportage-post:nth-of-type(1) .reportage-nickname::before {
  display: none;
}

@media screen and (min-width: 48em) {
  .reportage-post:nth-last-of-type(1) .reportage-nickname::after {
    display: none;
  }
}

.reportage-post:nth-last-of-type(1) .reportage-post--inner {
  border-bottom-color: transparent;
}

.reportage-post--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 4px;
}

@media screen and (min-width: 48em) {
  .reportage-post--inner {
    padding: 0 0 24px;
    border-bottom: 1px solid var(--rptg-day-line-color);
  }
}

.reportage-nickname {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
}

@media screen and (min-width: 48em) {
  .reportage-nickname {
    flex-shrink: 0;
    max-width: 150px;
    padding: 20px 0 0;
  }
}

.reportage-nickname::before {
  display: none;
  position: absolute;
  top: 0;
  left: 40px;
  width: 0;
  height: 25px;
  border-right: 1px dashed var(--rptg-day-dashed-color);
  content: '';
}

@media screen and (min-width: 48em) {
  .reportage-nickname::before {
    display: block;
  }
}

.reportage-nickname::after {
  display: none;
  position: absolute;
  top: 57px;
  left: 40px;
  width: 0;
  height: 100%;
  border-right: 1px dashed var(--rptg-day-dashed-color);
  content: '';
}

@media screen and (min-width: 48em) {
  .reportage-nickname::after {
    display: block;
  }
}

.reportage-author {
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  width: 115px;
  height: 36px;
  border: 1px solid var(--rptg-day-line-color);
  border-bottom: 0;
}

.reportage-author--avatar {
  width: 25px;
  height: 25px;
  margin: 0 7px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.reportage-author--nick {
  color: #808080;
  font-size: 12px;
  font-weight: 700;
  line-height: 35px;
}

.reportage-date {
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  height: 36px;
  border: 1px solid var(--rptg-day-line-color);
}

.reportage-date::after {
  position: absolute;
  top: -1px;
  left: 115px;
  width: 100vw;
  height: 0;
  border-top: 1px dashed var(--rptg-day-dashed-color);
  content: '';
}

@media screen and (min-width: 48em) {
  .reportage-date::after {
    display: none;
  }
}

.reportage-date--num {
  position: relative;
  width: 40px;
  height: 34px;
  border-right: 1px solid var(--rptg-day-line-color);
}

.reportage-date--num::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 34px;
  background-image: url(/nimg/link-copy-icon.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: '';
  pointer-events: none;
}

.reportage-date--num span {
  display: none;
  z-index: 1;
  position: absolute;
  top: -21px;
  left: 0;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: #616161;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.reportage-date--num span::after {
  position: absolute;
  bottom: -4px;
  left: 18px;
  width: 0;
  height: 0;
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: #616161 transparent transparent transparent;
  content: '';
}

.reportage-date--time {
  width: 73px;
  color: var(--rptg-day-time-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.reportage-content {
  width: 100%;
  color: var(--rptg-day-color);
}

@media screen and (min-width: 48em) {
  .reportage-content {
    padding: 20px 0 0;
  }
}

.reportage-content h2 {
  margin: 20px 0 10px;
  color: var(--rptg-day-color);
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .reportage-content h2 {
    font-size: 25px;
    line-height: 26px;
  }
}

.reportage-content h3 {
  margin: 10px 0;
  color: var(--rptg-day-color);
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .reportage-content h3 {
    font-size: 21px;
    line-height: 26px;
  }
}

.reportage-content a {
  color: var(--rptg-day-color);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.reportage-content p {
  margin: 0 0 10px;
  color: var(--rptg-day-color);
  font-size: 17px;
  line-height: 25px;
}

@media screen and (min-width: 48em) {
  .reportage-content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.reportage-content blockquote {
  margin: 30px 0;
  padding: 18px 15px 2px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #fbfbfb;
}

@media screen and (min-width: 64em) {
  .reportage-content blockquote {
    padding: 38px 40px 23px;
  }
}

.reportage-content blockquote p {
  margin: 0 0 14px;
  color: #000;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .reportage-content blockquote p {
    font-size: 19px;
    line-height: 28px;
  }
}

.reportage-content .card {
  display: inline-block;
  width: 25px;
  height: 16px;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.reportage-post-controls {
  display: flex;
  flex-wrap: wrap;
}

.reportage-vote {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 32px;
  margin: 0 0 0 auto;
}

.reportage-vote--rating {
  position: relative;
  min-width: 30px;
  height: 30px;
  margin: 0 5px;
  color: #909090;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
}

.reportage-vote--rating_positive {
  color: #529410;
  font-weight: 700;
}

.reportage-vote--rating.active::after {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #f2f2f2;
  content: '';
}

.reportage-vote--plus {
  width: 24px;
  height: 24px;
  border: 1px solid var(--rptg-day-line-color);
  border-radius: 50%;
  background-image: url(/nimg/rating-plus-mono.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
}

.reportage-list {
  display: none;
  flex-direction: column;
  width: 100%;
  margin: 5px 0 0;
}

.reportage-list.show {
  display: flex;
}

.reportage-list--positive {
  display: flex;
  border-bottom: 1px solid #efefef;
  background-color: #f2f2f2;
}

.reportage-list--negative {
  display: flex;
  background-color: #f2f2f2;
}

.reportage-list--empty {
  padding: 10px 15px;
  background-color: #f2f2f2;
  color: #808080;
  font-size: 13px;
  line-height: 20px;
}

.reportage-list--inner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  line-height: 20px;
}

.reportage-list--nick {
  margin: 0 4px 0 0;
  color: #404040;
  font-size: 13px;
  line-height: 20px;
}

.reportage-list--nick::after {
  content: ',';
}

.reportage-list--nick:last-child::after {
  content: '';
}

.reportage-list--wrap {
  display: flex;
  flex-shrink: 0;
  width: 30px;
  padding: 10px 0 0;
}

.reportage-list--button {
  display: block;
  width: 15px;
  height: 20px;
  margin: 0 0 0 8px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.reportage-list--button_positive {
  background-image: url(/nimg/rating-list-plus.svg);
}

.admin-toggle--wrap {
  --rptg-toggle-bg-color: var(--layer-2-color, #fff);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 15px;
  background-color: var(--rptg-toggle-bg-color);
}

.admin-toggle--wraper {
  width: 100%;
  max-width: 1246px;
}

.toggle-button--wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 40px;
}

.admin-toggle--button {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/nimg/toggle-editor.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
}

.admin-toggle--button.active {
  background-image: url(/nimg/toggle-editor-red.svg);
}

.admin-module--wrap {
  display: none;
  justify-content: center;
  width: 100%;
}

.admin-module--wrap.show {
  display: flex;
}

.admin-module--wraper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 990px;
  height: 40px;
}

.admin-module--icon {
  width: 24px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
}

.admin-module--icon.i-edit {
  margin: 0 0 0 40px;
  background-image: url(/nimg/i-edit.svg);
}

@media screen and (min-width: 48em) {
  .admin-module--icon.i-edit {
    margin: 0 0 0 98px;
  }
}

.reportage-day_top .admin-module--icon.i-edit {
  margin: 0 0 0 23px;
}

.admin-module--icon.i-delete {
  margin: 0 0 0 28px;
  background-image: url(/nimg/i-delete.svg);
}

.reportage-day_top .admin-module--icon.i-delete {
  margin: 0;
}

.reporter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
}

.reporter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 30px 0;
}

.reporter-inner--toggle {
  display: flex;
  width: 100%;
  height: 32px;
  margin: 0 0 20px;
}

.reporter-inner--button {
  width: 120px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff, #eaeaea 90%);
  color: #202020;
  font-size: 11px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.reporter-inner--top {
  display: none;
  width: 100%;
}

.reporter-inner--top.show {
  display: block;
}

.reporter-form {
  width: 100%;
}

.imgtool {
  padding: 20px 0 10px;
}

.imgtool a {
  text-decoration: none;
}

.imgtool--wrap {
  display: flex;
}

.imgtool--heading {
  margin: 0 0 5px;
  color: #202020;
  font-size: 14px;
  line-height: 20px;
}

.imgtool--button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 32px;
  margin: 0 10px 0 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff, #eaeaea 90%);
  color: #202020;
  font-size: 11px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.imgtool--button::before {
  width: 22px;
  height: 22px;
  margin: 0 8px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

.imgtool--button_refresh::before {
  background-image: url(/nimg/refresh-blue.svg);
}

.imgtool--button_file {
  margin: 0;
}

.imgtool--button_file::before {
  background-image: url(/nimg/add-green.svg);
}

.imgtool--input {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 28px;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0;
}

.imgtool--container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0;
}

.imgtool-item {
  display: flex;
  flex: 0 0 210px;
  flex-direction: column;
  min-height: 222px;
  margin: 0 10px 10px 0;
  padding: 0 0 20px;
  background-color: #f5f5f5;
}

.imgtool-item--top {
  display: flex;
  margin: 0 0 20px;
}

.imgtool-item--wrap {
  display: flex;
}

.imgtool-item--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 32px;
  margin: 0 10px 0 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #202020;
  font-size: 11px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.imgtool-item--button::before {
  width: 22px;
  height: 22px;
  margin: 0 8px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

.imgtool-item--button_insert::before {
  background-image: url(/nimg/insert-green.svg);
}

.imgtool-item--button_delete {
  margin: 0;
}

.imgtool-item--button_delete::before {
  background-image: url(/nimg/remove-orange.svg);
}

.imgtool-item--preview {
  display: flex;
  margin: 0 0 10px;
}

.admin-medium--label {
  display: flex;
  position: relative;
  margin: 0;
  color: #606060;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

.imgtool-item--loader {
  width: 30px;
  height: 20px;
  margin: 0 0 0 10px;
  background-image: url(/nimg/editor-dots.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px;
}

.plain-text {
  width: 100%;
  max-width: 994px;
  margin: 0 auto;
  padding: 10px 15px 50px;
}

@media screen and (min-width: 48em) {
  .plain-text {
    padding: 30px 15px 50px;
  }
}

.plain-text h1 {
  margin: 35px 0 25px;
  color: #202020;
  font-size: 20px;
  line-height: 25px;
}

.plain-text h2 {
  margin: 35px 0 25px;
  color: #202020;
  font-size: 20px;
  line-height: 25px;
}

.plain-text p {
  margin: 0 0 14px;
  color: #202020;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .plain-text p {
    font-size: 17px;
    line-height: 28px;
  }
}

.plain-text a {
  color: #202020;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.profile-header {
  --prf-header-bg-color: var(--layer-3-color, #fff);
  --prf-header-color: var(--text-3-color, #757575);
  --prf-header-nick-color: var(--text-2-color, #202020);
  --prf-header-name-color: var(--text-4-color, #606060);
  --prf-header-border-color: var(--line-2-color, #ccc);
  --prf-header-button-bg-color: var(--control-1-bg-color, #fff);
  --prf-header-button-color: var(--control-1-color, #606060);
  --prf-header-button-border-color: var(--control-1-border-color, #ccc);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 25px 15px 20px;
  background-color: var(--prf-header-bg-color);
}

@media screen and (min-width: 64em) {
  .profile-header {
    padding: 45px 15px 20px;
  }
}

.profile-header--inner {
  display: flex;
  width: 100%;
  max-width: 1246px;
}

.profile-header--heading {
  margin: 0;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 64em) {
  .profile-header--heading {
    font-size: 30px;
    line-height: 44px;
  }
}

.user-main {
  display: flex;
}

.user-main--avatar {
  position: relative;
  margin: 0 20px 0 0;
}

.user-main--image {
  width: 70px;
  height: 70px;
  background-image: url(/nimg/imguser-a.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .user-main--image {
    width: 96px;
    height: 96px;
  }
}

@media screen and (min-width: 64em) {
  .user-main--image_exc {
    background-size: auto;
  }
}

.user-main--avatar_hidden .user-main--image {
  filter: grayscale(1);
  opacity: .25;
}

.user-main--avatar:hover .user-main--image {
  filter: grayscale(1);
  opacity: .25;
}

.user-main--hidden {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #202020;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.user-main--avatar_hidden .user-main--hidden {
  display: block;
}

.user-main--remove {
  display: none;
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #e51e25;
  background-image: url(/nimg/delete-item-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.user-main--avatar:hover .user-main--remove {
  display: block;
}

.user-main--remove_cancel {
  background-color: #649212;
}

.user-main--tooltip {
  display: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2px 0 2px 10px;
  background-color: rgba(0, 0, 0, .35);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .user-main--tooltip {
    padding: 4px 0;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}

.user-main--avatar:hover .user-main--tooltip {
  display: block;
}

.user-main--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.user-main--mem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.user-main--pro {
  margin: 4px 5px 4px 0;
  padding: 0 3px;
  background-color: #d32f2f;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.user-main--date {
  --i-color1: #9e9e9e;
  display: inline-flex;
  padding: 5px 0;
  color: var(--prf-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}

.user-main--date_active {
  --i-color1: #649213;
  color: #649213;
}

.user-main--date svg {
  flex-shrink: 0;
  width: 21px;
  height: 18px;
  margin: 0 4px 0 0;
}

.user-main--date span {
  padding: 2px 0;
}

.user-main--nickname {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .user-main--nickname {
    margin: 0 0 4px;
  }
}

.user-main--nick {
  color: var(--prf-header-nick-color);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .user-main--nick {
    font-size: 30px;
    line-height: 30px;
  }
}

.user-main--button {
  display: none;
  height: 28px;
  margin: 3px 0 0 15px;
  padding: 0 10px;
  border: 1px solid var(--prf-header-button-border-color);
  border-radius: 3px;
  background-color: var(--prf-header-button-bg-color);
  color: var(--prf-header-button-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .user-main--button {
    display: block;
  }
}

.user-main--name {
  color: var(--prf-header-name-color);
  font-size: 16px;
  line-height: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .user-main--name {
    font-size: 22px;
    line-height: 28px;
  }
}

.user-main--rating {
  color: #808080;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 64em) {
  .user-main--rating {
    display: none;
  }
}

.user-main--rating_positive {
  color: #649213;
}

.user-main--rating_negative {
  color: #e31f26;
}

.user-rate {
  display: none;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 64em) {
  .user-rate {
    display: flex;
  }
}

.user-rate--counter {
  grid-gap: 0 12px;
  display: grid;
  position: relative;
  grid-template-columns: 50px 1fr;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--prf-header-border-color);
  background-color: var(--prf-header-bg-color);
  text-align: right;
}

.user-rate--counter::before {
  z-index: 1;
  position: absolute;
  top: 22px;
  left: -6px;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  border: solid var(--prf-header-border-color);
  border-width: 1px 0 0 1px;
  background-color: var(--prf-header-bg-color);
  content: '';
}

.user-rate--large {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 56px;
  margin: 0 21px 0 0;
  text-align: right;
}

.user-rate--heading {
  color: var(--prf-header-color);
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
}

.user-rate--rating {
  color: var(--prf-header-color);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
}

.user-rate--rating_positive {
  color: #649213;
}

.user-rate--rating_negative {
  color: #e31f26;
}

.user-rate--badge {
  color: var(--prf-header-color);
  font-size: 10px;
  line-height: 17px;
  text-transform: uppercase;
}

.user-rate--num {
  color: var(--prf-header-color);
  font-family: "PT Serif", serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
}

.profile-pager {
  --prf-pager-bg-color: var(--layer-3-color, #fff);
  --prf-pager-active-bg-color: var(--layer-2-color, #efefef);
  --prf-pager-link-color: var(--text-3-color, #909090);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  background-color: var(--prf-pager-bg-color);
}

.u-pager {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  margin: 0;
  list-style-type: none;
}

.u-pager li {
  margin: 0;
}

.u-pager--link {
  display: flex;
  padding: 6px 16px;
  color: var(--prf-pager-link-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.active .u-pager--link {
  background-color: var(--prf-pager-active-bg-color);
}

.profile {
  --prf-bg-color: var(--layer-2-color, #efefef);
  --prf-control-bg-color: var(--control-1-bg-color, #fff);
  --prf-control-color: var(--control-1-color, #606060);
  --prf-control-border-color: var(--control-1-border-color, #ccc);
  --prf-field-color: var(--text-2-color, #202020);
  --prf-field-bg-color: var(--layer-2-color, #fff);
  --prf-card-bg-color: var(--layer-3-color, #fff);
  --prf-head-color: var(--text-2-color, #333);
  --prf-subhead-color: var(--text-2-color, #202020);
  --prf-widget-color: var(--text-3-color, #202020);
  --prf-line-color: var(--line-2-color, #ccc);
  --prf-strong-color: var(--text-2-color, #000);
  --prf-label-color: var(--text-5-color, #606060);
  --prf-nick-color: var(--text-2-color, #1a1a1a);
  --prf-staking-color: var(--text-5-color, #909090);
  --prf-admin-bg-color: var(--layer-1-color, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 15px 30px;
  background-color: var(--prf-bg-color);
}

@media screen and (min-width: 64em) {
  .profile {
    padding: 30px 15px;
  }
}

.profile_wide {
  padding: 15px 0 30px;
}

@media screen and (min-width: 64em) {
  .profile_wide {
    padding: 30px 15px;
  }
}

.profile--grid-top {
  grid-gap: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 1246px;
}

@media screen and (min-width: 64em) {
  .profile--grid-top {
    grid-template-columns: 1fr 1fr;
  }
}

.profile--column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile .card {
  display: inline-block;
  width: 25px;
  height: 16px;
  margin: 1px 2px;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

.profile-message {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .profile-message {
    display: none;
  }
}

.profile-message_nopad {
  padding: 0;
}

.profile-message--button {
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .profile-message--button {
    width: auto;
  }
}

.wgt-blog {
  gap: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 18px 15px 16px;
  border-bottom: 1px solid #efefef;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .wgt-blog {
    margin: 0 0 10px;
    padding: 20px 30px;
    border: 0;
  }
}

.wgt-blog--top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.wgt-blog--wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .wgt-blog--wrap {
    flex-direction: row;
    align-items: center;
  }
}

.wgt-blog--remove {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .wgt-blog--remove {
    margin: 0 auto 0 0;
  }
}

.blog-remove-button {
  width: 18px;
  height: 18px;
  margin: 0 0 0 10px;
  background-image: url(/nimg/close-modal-login.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.wgt-blog--add {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0 0;
}

.wgt-blog--head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0 0;
}

.wgt-blog--inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0 0 10px;
}

.wgt-blog--mark {
  padding: 0 0 5px;
  color: var(--prf-subhead-color);
  font-size: 14px;
  line-height: 17px;
}

.wgt-blog--line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .wgt-blog--line {
    flex-direction: row;
  }
}

.wgt-blog--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-self: start;
  width: 100%;
  max-width: 480px;
  padding: 3px 5px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  color: var(--prf-field-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .wgt-blog--field {
    max-width: initial;
    border-right: 0;
    border-radius: 3px 0 0 3px;
  }
}

.wgt-blog--save {
  height: 28px;
  margin: 10px 0 0;
  padding: 0 10px;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .wgt-blog--save {
    margin: 0;
    border-radius: 0 3px 3px 0;
  }
}

.wgt-blog--heading {
  display: flex;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .wgt-blog--heading {
    margin: 0 auto 0 0;
    font-size: 18px;
  }
}

.wgt-blog--heading::before {
  width: 25px;
  height: 25px;
  margin: 0 6px 0 0;
  transform: translateY(2px);
  background-image: url(/nimg/wgt-blog.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  content: '';
}

[theme='dark'] .wgt-blog--heading::before {
  filter: brightness(4);
}

.wgt-blog--button {
  min-width: 84px;
  height: 28px;
  margin: 5px 0;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .wgt-blog--button {
    margin: 0;
  }
}

.wgt-blog--instagram {
  display: flex;
  margin: 0 0 10px;
  color: var(--prf-head-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.wgt-blog--instagram::before {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
  background-image: url(/nimg/blog-instagram.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  content: '';
}

.wgt-blog--link {
  color: #e51e25;
  font-size: 15px;
  line-height: 20px;
}

.wgt-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
  padding: 18px 15px 16px;
  border-bottom: 1px solid #efefef;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .wgt-info {
    padding: 20px 30px;
    border: 0;
  }
}

.wgt-info--top {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .wgt-info--top {
    grid-gap: 0 4px;
    grid-template-columns: 1fr 196px;
  }
}

.wgt-info--list {
  margin: 0;
}

.wgt-info--item {
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 20px;
}

.wgt-info--item:not(:last-child) {
  margin: 0 0 7px;
}

.wgt-info--data {
  margin: 0 0 0 5px;
  color: var(--prf-strong-color);
}

.wgt-info--data a {
  color: var(--prf-strong-color);
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.wgt-info--data_online {
  color: #649213;
}

.user-sk {
  width: 100%;
  margin: 16px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #efefef;
}

@media screen and (min-width: 48em) {
  .user-sk {
    margin: 0;
    padding: 0;
    border: 0;
  }
}

.user-sk--heading {
  margin: 0 0 5px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .user-sk--heading {
    margin: 0 0 12px;
    font-size: 18px;
  }
}

.user-sk--inner {
  display: flex;
  flex-direction: column;
}

.data-sk {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 1fr 36px 36px 36px;
  border-top: 1px solid transparent;
  line-height: 28px;
}

@media screen and (min-width: 64em) {
  .data-sk {
    padding: 6px 0;
    border-color: var(--prf-line-color);
  }
}

.data-sk--limit {
  grid-column: 1;
  color: #909090;
  font-size: 15px;
  line-height: 28px;
  text-transform: uppercase;
}

.data-sk--result {
  display: flex;
}

.data-sk--crown {
  width: 12px;
  height: 13px;
  margin: 0 7px 0 0;
  transform: translateY(8px);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}

.data-sk--crown_gold {
  background-image: url(/nimg/crown-sk-gold.svg);
}

.data-sk--crown_silver {
  background-image: url(/nimg/crown-sk-silver.svg);
}

.data-sk--crown_bronze {
  background-image: url(/nimg/crown-sk-bronze.svg);
}

.data-sk--num {
  display: flex;
  transform: translateY(1px);
  color: var(--prf-strong-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.user-about {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 24px 0 0;
  padding: 19px 0 8px;
  border-top: 1px solid var(--prf-line-color);
}

.user-about--heading {
  margin: 0 0 6px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .user-about--heading {
    margin: 0 0 2px;
    font-size: 18px;
    line-height: 34px;
  }
}

.user-about p {
  margin: 0;
  color: var(--prf-widget-color);
  font-size: 14px;
  line-height: 19px;
}

@media screen and (min-width: 64em) {
  .user-about p {
    font-size: 15px;
    line-height: 21px;
  }
}

.user-about p a {
  color: var(--prf-widget-color);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.rake-link {
  display: flex;
  width: 100%;
  margin: 15px 0 0;
  padding: 20px 0 5px;
  border-top: 1px solid var(--prf-line-color);
}

.rake-link--button {
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.wgt-500 {
  width: 100%;
  margin: 0 0 10px;
  padding: 8px;
  background-color: #fff;
}

.wgt-500--inner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 17px 15px;
  outline: 3px dashed #e51e25;
  box-shadow: 0 0 0 1px #e51e25, 0 0 0 2px #fff, 0 0 0 3px #e51e25;
}

.wgt-500--logo {
  width: 54px;
  height: 54px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/500plus-logo-black.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 54px;
}

.wgt-500--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wgt-500--title {
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.wgt-500--subtitle {
  color: #f00;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.admin-span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 15px 0 0;
  padding: 10px 0 0;
}

.admin-span--toggle {
  padding: 0 10px;
  border: 1px solid #a5a5a5;
  border-bottom: 2px solid #b1b1b1;
  border-radius: 5px;
  background-color: #f1f1f1;
  color: #202020;
  font-size: 13px;
  line-height: 27px;
}

.admin-span--inner {
  display: none;
  width: 100%;
}

.admin-span--inner_active {
  display: flex;
}

.admin-span--form {
  flex-grow: 1;
  padding: 10px 0 0;
}

.admin-span--field {
  word-wrap: break-word;
  width: 100%;
  height: 148px;
  min-height: 148px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--prf-control-border-color);
  background-color: var(--prf-field-bg-color);
  box-shadow: none;
  color: var(--prf-field-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
  vertical-align: bottom;
  resize: vertical;
}

.admin-span--field:focus {
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .1);
}

.admin-span--footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.admin-span--ftop {
  display: flex;
  width: 100%;
  margin: 0 0 5px;
  padding: 5px 0 0;
}

.admin-span--fbottom {
  display: flex;
  width: 100%;
}

.admin-span-save {
  height: 32px;
  margin: 0 10px 0 0;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.admin-span--cancel {
  height: 32px;
  padding: 0 20px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-span--label {
  display: flex;
  position: relative;
  margin: 0;
  color: var(--prf-widget-color);
  font-size: 14px;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
}

.admin-span--label_wrap {
  white-space: inherit;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 20px;
}

.feedback_bottom {
  margin: 0;
}

@media screen and (min-width: 64em) {
  .feedback_bottom {
    padding: 0 0 20px;
  }
}

.feedback--header {
  width: 100%;
  max-width: 1246px;
  margin: 0 0 8px;
}

.feedback--heading {
  padding: 0 15px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .feedback--heading {
    padding: 0;
    font-size: 18px;
  }
}

.feedback-comments {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.feedback-comments--top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 9px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .feedback-comments--top {
    padding: 0;
  }
}

.feedback-comments--bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 10px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .feedback-comments--bottom {
    padding: 0;
  }
}

.feedback-list {
  position: relative;
  width: 100%;
  max-width: 1246px;
  margin: 0;
}

@media screen and (min-width: 64em) {
  .feedback-list_columns {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.feedback-list_compact {
  margin: 0 0 10px;
}

.feedback-list_compact::after {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--prf-line-color);
  content: '';
}

.feedback-list--item {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0 0 10px;
  padding: 15px 15px 17px 10px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .feedback-list--item {
    padding: 19px 15px 21px 10px;
  }
}

.feedback-list_staking .feedback-list--item {
  padding: 15px 15px 17px;
}

@media screen and (min-width: 64em) {
  .feedback-list_staking .feedback-list--item {
    padding: 19px 15px 21px;
  }
}

.feedback-list_compact .feedback-list--item {
  margin: 0;
  padding: 12px 15px 14px 10px;
}

@media screen and (min-width: 64em) {
  .feedback-list_compact .feedback-list--item {
    padding: 12px 15px 14px 10px;
  }
}

.feedback-list_compact .feedback-list--item::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: var(--prf-line-color);
  content: '';
}

.feedback-list--delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  background-image: url(/nimg/delete-item.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.feedback-list--new {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

.feedback-list--widget {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

.feedback-list--grid {
  grid-gap: 0 10px;
  display: grid;
  grid-template-columns: 35px 1fr;
}

.feedback-list_staking .feedback-list--grid {
  grid-template-columns: 10px 1fr;
}

.feedback-list--rating {
  color: #909090;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  line-height: 20px;
  text-align: right;
}

.feedback-list--rating_positive {
  color: #529410;
}

.feedback-list--rating_negative {
  color: #e31f26;
}

.feedback-list--blank {
  width: 10px;
  height: 20px;
}

.feedback-list--plus {
  width: 10px;
  height: 20px;
  background-image: url(/nimg/rating-list-plus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.feedback-list--minus {
  width: 10px;
  height: 20px;
  background-image: url(/nimg/rating-list-minus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.feedback-list--content {
  display: flex;
  flex-direction: column;
}

.feedback-list--meta {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

.feedback-list--nick {
  display: flex;
  align-items: center;
  margin: 0 15px 0 0;
  color: var(--prf-nick-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.feedback-list--nick_gt::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 4px 0 0;
  background-image: url(/nimg/gt-logo-profile.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: '';
}

.feedback-list--date {
  padding: 2px 0 0;
  color: var(--prf-label-color);
  font-size: 11px;
  line-height: 18px;
  text-transform: uppercase;
}

.feedback-list--text {
  color: var(--prf-widget-color);
  font-size: 14px;
  line-height: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.feedback-list--text_deleted {
  color: #909090;
}

.feedback-list--text a {
  color: var(--prf-widget-color);
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.note-blank {
  padding: 15px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
  color: #202020;
  font-size: 14px;
  line-height: 20px;
}

.bb-profile {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bb-profile--item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}

.bb-profile--heading {
  margin: 0 0 4px;
  color: var(--text-2-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
}

.bb-profile--grid {
  gap: 0 10px;
  display: grid;
  grid-template-columns: 34px 164px 1fr;
  align-items: start;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: var(--layer-4-color, #f4f4f4);
}

.bb-profile--list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.bb-profile--row {
  gap: 0 8px;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 8px;
  align-items: center;
  margin: 0;
  padding: 12px 16px;
  background-color: var(--layer-4-color, #f4f4f4);
}

.bb-profile--row:not(:last-child) {
  margin: 0 0 1px;
}

.bb-profile--data {
  gap: 6px 0;
  display: flex;
  flex-direction: column;
}

.bb-profile--wrap {
  gap: 0 4px;
  display: flex;
  flex-wrap: wrap;
}

.bb-profile--icon {
  display: flex;
  grid-column: none;
  width: 8px;
  height: 14px;
}

.bb-profile--icon svg {
  width: 8px;
  height: 14px;
}

[theme='dark'] .bb-profile--icon svg {
  --i-color1: #757575;
}

.bb-profile--prize {
  gap: 0 4px;
  display: flex;
  grid-column: 1;
  flex-shrink: 0;
  align-items: center;
  height: 16px;
  color: var(--text-2-color, #202020);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.bb-profile--prize_silver {
  grid-column: auto;
}

.bb-profile--prize svg {
  width: 16px;
  height: 16px;
}

.bb-profile--theme {
  margin: 0 4px 0 0;
  color: var(--text-4-color, #606060);
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
}

.bb-profile--date {
  color: var(--text-3-color, #909090);
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
}

.bb-profile--post {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  min-width: 0;
  margin: 0 0 0 20px;
  overflow: hidden;
  color: var(--text-1-color, #333);
  font-size: 16px;
  line-height: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.bb-profile--post::after {
  inset: 0;
  position: absolute;
  content: '';
}

.bb-profile--last {
  display: flex;
  position: relative;
  margin: 0;
  padding: 12px 16px;
  background-color: var(--layer-4-color, #f4f4f4);
}

.bb-profile--more {
  margin: 0 0 0 20px;
  color: var(--text-4-color, #606060);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

.bb-profile--more::after {
  inset: 0;
  position: absolute;
  content: '';
}

.profile-activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 5px 0 30px;
}

@media screen and (min-width: 64em) {
  .profile-activity {
    padding: 5px 15px 30px;
  }
}

.profile-activity--header {
  width: 100%;
  max-width: 1246px;
  margin: 0 0 20px;
}

.profile-activity--heading {
  padding: 0 15px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .profile-activity--heading {
    padding: 0;
    font-size: 18px;
  }
}

.profile-activity--grid {
  grid-gap: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 1246px;
}

@media screen and (min-width: 64em) {
  .profile-activity--grid {
    grid-template-columns: 310px 1fr;
  }
}

.activity-sections {
  display: none;
  padding: 20px 0 0;
}

@media screen and (min-width: 64em) {
  .activity-sections {
    display: block;
  }
}

.activity-sections--heading {
  margin: 0 0 14px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--prf-line-color);
  color: var(--prf-subhead-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.activity-sections--list {
  margin: 0;
}

.activity-sections--item:not(:last-child) {
  margin: 0 0 15px;
}

.activity-sections--grid {
  grid-gap: 0 15px;
  display: grid;
  grid-template-columns: 1fr 40px;
  width: 100%;
}

.activity-sections--link {
  color: var(--prf-widget-color);
  font-size: 15px;
  line-height: 19px;
}

.activity-sections--link:hover {
  text-decoration: underline;
}

.activity-sections--item_active .activity-sections--link {
  color: #e51e25;
  font-weight: 700;
}

.activity-sections--num {
  color: var(--prf-label-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  text-align: right;
}

.activity-sections--item_active .activity-sections--num {
  color: #e51e25;
  font-weight: 700;
}

.activity-comments {
  display: flex;
  flex-direction: column;
}

.activity-comments--top {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

.activity-comments--list {
  margin: 0;
}

.activity-comments--item {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 17px 15px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .activity-comments--item {
    padding: 27px 20px;
  }
}

.activity-comments--item:not(:last-child) {
  margin: 0 0 10px;
}

.activity-comments--data {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

@media screen and (min-width: 48em) {
  .activity-comments--data {
    flex-direction: row;
  }
}

.activity-comments--section {
  margin: 0 auto 0 0;
  color: var(--prf-label-color);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.activity-comments--rate {
  display: flex;
}

.activity-comments--date {
  margin: 0 10px 0 0;
  color: var(--prf-label-color);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.activity-comments--icon {
  width: 13px;
  height: 13px;
  margin: 0 5px 0 0;
  background-image: url(/nimg/icon-rating.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.activity-comments--rating {
  color: #909090;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.activity-comments--rating_positive {
  color: #529410;
}

.activity-comments--rating_negative {
  color: #e31f26;
}

.activity-comments--link {
  margin: 0 0 5px;
  color: var(--prf-strong-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  line-height: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.activity-comments--link::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.activity-comments--text {
  color: var(--prf-widget-color);
  font-size: 14px;
  line-height: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.activity-comments--pager {
  display: flex;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 15px;
}

@media screen and (min-width: 64em) {
  .activity-comments--pager {
    padding: 15px 0;
  }
}

.activity-checkbox {
  display: flex;
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px;
}

.activity-checkbox--input {
  flex-shrink: 0;
}

.profile-subscribe {
  display: flex;
  margin: 0 auto 0 0;
  padding: 5px 0;
}

.profile-subscribe--button {
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.activity-selector-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0 0;
}

.activity-selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 142px;
  height: 32px;
  margin: 0 0 5px;
  padding: 0 8px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 2px;
  background-color: var(--prf-control-bg-color);
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: var(--prf-widget-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 30px;
}

.activity-selector_right {
  margin: 0 5px 5px 0;
}

.activity-selector_mobile {
  display: block;
}

@media screen and (min-width: 64em) {
  .activity-selector_mobile {
    display: none;
  }
}

.profile-admin {
  width: 100%;
  max-width: 1246px;
  padding: 10px 0 30px;
}

.profile-admin--form {
  width: 100%;
  padding: 10px 0 0;
  border-top: 1px solid var(--prf-line-color);
}

.mod-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
  padding: 18px 15px 16px;
  background-color: var(--prf-admin-bg-color);
}

@media screen and (min-width: 64em) {
  .mod-main {
    padding: 20px 30px;
  }
}

.mod-main--head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 20px;
}

.mod-main--heading {
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .mod-main--heading {
    font-size: 18px;
  }
}

.mod-plus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
  padding: 18px 15px 16px;
  background-color: var(--prf-admin-bg-color);
}

@media screen and (min-width: 64em) {
  .mod-plus {
    padding: 20px 30px;
  }
}

.mod-plus--head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 20px;
}

.mod-plus--heading {
  color: var(--text-2-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .mod-plus--heading {
    font-size: 18px;
  }
}

.mod-plus--row {
  margin: 0 0 12px;
}

.mod-plus--section {
  display: flex;
  flex-direction: column;
}

.mod-plus--section:has(.mod-plus--item) {
  margin: 0 0 12px;
}

.mod-plus--subheading {
  margin: 0 0 12px;
  color: var(--prf-head-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.mod-plus--subheading span {
  font-weight: 400;
}

.mod-plus--subheading a {
  color: #005581;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
}

[theme='dark'] .mod-plus--subheading a {
  color: #008bd1;
}

.mod-plus--list {
  margin: 0;
  padding: 0;
}

.mod-plus--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  color: var(--prf-head-color);
  font-size: 14px;
  line-height: 16px;
}

.mod-plus--item:not(:last-child) {
  margin: 0 0 8px;
}

.mod-plus--item a {
  color: #005581;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}

[theme='dark'] .mod-plus--item a {
  color: #008bd1;
}

.mod-main--item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 16px;
}

.mod-main--subheading {
  width: 100%;
  color: var(--prf-subhead-color);
  font-size: 14px;
  line-height: 18px;
}

.mod-main--action {
  color: #005581;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}

[theme='dark'] .mod-main--action {
  color: #008bd1;
}

.mod-main--limit {
  margin: 0 10px 0 0;
  color: var(--prf-strong-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.mod-main--button {
  height: 28px;
  margin: 5px 0;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #606060;
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .mod-main--button {
    margin: 0;
  }
}

.mod-tgl {
  margin: 0 10px 0 0;
  color: #005581;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}

[theme='dark'] .mod-tgl {
  color: #008bd1;
}

.mod-data {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 10px;
}

.mod-data--header {
  width: 100%;
  max-width: 1246px;
  padding: 15px 0 0;
  background-color: var(--prf-admin-bg-color);
}

.mod-data--heading {
  min-height: 20px;
  padding: 0 15px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.mod-data--wrap {
  display: flex;
  width: 100%;
  max-width: 1246px;
  padding: 5px 15px 10px;
}

.mod-stats-button {
  height: 28px;
  margin: 0 10px 0 0;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.mod-stats {
  display: flex;
  flex-direction: column;
  padding: 10px 15px 20px;
  background-color: var(--prf-admin-bg-color);
}

.mod-stats_toggle {
  display: none;
}

.mod-stats_toggle.show {
  display: flex;
}

.mod-stats--item {
  grid-gap: 4px 5px;
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 4px 0;
}

@media screen and (min-width: 48em) {
  .mod-stats--item {
    grid-gap: 0 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.mod-stats--item:not(:last-child) {
  border-bottom: 1px solid var(--prf-line-color);
}

.mod-stats--item_wide {
  display: none;
}

@media screen and (min-width: 48em) {
  .mod-stats--item_wide {
    display: grid;
  }
}

.mod-stats--item a {
  text-decoration: underline;
}

[theme='dark'] .mod-stats--item a {
  color: #008bd1;
}

.mod-stats_single .mod-stats--item {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .mod-stats_single .mod-stats--item {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 48em) {
  .mod-stats_quad .mod-stats--item {
    grid-template-columns: 2fr 1fr 3fr 2fr;
  }
}

.mod-stats_solo .mod-stats--item {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .mod-stats_solo .mod-stats--item {
    grid-template-columns: 1fr;
  }
}

.mod-stats--head {
  padding: 3px 0;
  color: var(--prf-staking-color);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.mod-stats--subheading {
  color: var(--prf-widget-color);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.mod-stats--label {
  color: var(--prf-widget-color);
  font-size: 13px;
  line-height: 16px;
}

.mod-stats--label span {
  margin: 0 4px 0 0;
}

.mod-stats--label .color6 {
  color: #e50e2b;
}

.mod-stats--mark {
  grid-column: 1;
  color: #909090;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .mod-stats--mark {
    display: none;
  }
}

.mod-stats--action {
  grid-column: 2;
  color: var(--prf-widget-color);
  font-size: 13px;
  line-height: 16px;
}

.mod-stats--nick {
  grid-column: 2;
  color: var(--prf-widget-color);
  font-size: 13px;
  line-height: 16px;
}

@media screen and (min-width: 48em) {
  .mod-stats--nick {
    grid-column: 3;
  }
}

.mod-stats--block {
  color: var(--prf-widget-color);
  font-size: 13px;
  line-height: 16px;
}

@media screen and (min-width: 48em) {
  .mod-stats--block {
    grid-column: span 1 / -1;
  }
}

.mod-stats--block a {
  color: #e50e2b;
}

[theme='dark'] .mod-stats--block a {
  color: #e50e2b;
}

.mod-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  margin: 0 0 10px;
}

.mod-row_double {
  grid-gap: 0 15px;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .mod-row_double {
    grid-template-columns: 135px 1fr;
  }
}

.profile-admin-mark {
  padding: 4px 0 5px;
  color: var(--prf-subhead-color);
  font-size: 14px;
  line-height: 17px;
}

.profile-admin-mark a {
  color: #005581;
  text-decoration: underline;
}

[theme='dark'] .profile-admin-mark a {
  color: #008bd1;
}

.profile-admin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 28px;
  margin: 5px 5px 5px 0;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.mod-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-self: start;
  width: 100%;
  max-width: 420px;
  padding: 3px 5px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  color: var(--prf-field-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.mod-field_short {
  max-width: 155px;
}

.mod-select-wrap {
  display: flex;
  width: 100%;
  max-width: 420px;
}

.mod-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 420px;
  padding: 0 10px 0 5px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: var(--prf-field-color);
  font-family: inherit;
  font-size: 15px;
  line-height: 26px;
}

.mod-select_right {
  margin: 0 5px 0 0;
}

.ed--form form {
  width: 100%;
}

.ed--header {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px;
}

.ed--label {
  padding: 0 0 5px;
  color: var(--prf-subhead-color);
  font-size: 14px;
  line-height: 17px;
}

.ed--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 3px 5px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  color: var(--prf-field-color);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.ed--inner {
  margin: 0 0 6px;
}

.ed--inner textarea {
  word-wrap: break-word;
  width: 100%;
  height: 90px;
  min-height: 90px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  box-shadow: none;
  color: var(--prf-field-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
  vertical-align: top;
  resize: vertical;
}

[theme='dark'] .ed--footer .admin-span-save {
  background-color: #424242;
  color: #ccc;
}

.ed--send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 26px;
  padding: 0 10px;
  border: 1px solid #cfcfcf;
  border-bottom: 2px solid #cfcfcf;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
}

.mod-act-wrap {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
  padding: 15px;
  background-color: #fbfbfb;
}

.mod-act-form {
  display: flex;
}

.mod-act-label {
  color: #616161;
  font-size: 14px;
  line-height: 20px;
}

.mod-act-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 30px;
  margin: 5px 5px 5px 0;
  padding: 0 10px;
  border: 1px solid #a5a5a5;
  border-bottom: 2px solid #b2b2b2;
  border-radius: 5px;
  background-color: #f1f1f1;
  color: #333;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.mod-act-button_cancel {
  color: #c30300;
}

.dropdown-control {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 420px;
}

.dropdown-control--button {
  display: flex;
  position: relative;
  align-items: center;
  height: 28px;
  padding: 0 32px 0 10px;
  border: 1px solid var(--control-1-border-color, #ccc);
  border-radius: 3px;
  background-color: var(--control-1-bg-color, #fff);
  color: var(--control-1-color, #202020);
  font-size: 15px;
  line-height: 20px;
  white-space: nowrap;
}

.dropdown-control--button svg {
  --i-color1: #9e9e9e;
  position: absolute;
  top: 3px;
  right: 8px;
  width: 20px;
  height: 20px;
}

.dropdown-control--button.color-colorDefault {
  color: var(--text-5-color, #606060);
}

.dropdown-control--button.color-colorGrn {
  color: #649213;
}

.dropdown-control--button.color-colorRed {
  color: #c30300;
}

.dropdown-control--button.color-colorRb {
  color: #090;
}

.dropdown-control--button.color-colorSc {
  color: #ff8000;
}

.dropdown-control--button.color-colorLb {
  color: #00bfff;
}

.dropdown-control--button.color-colorFf {
  color: #6d11bb;
}

.dropdown-control--options {
  display: none;
  position: absolute;
  top: 26px;
  left: 50%;
  flex-direction: column;
  width: 100%;
  padding: 12px 0;
  transform: translateX(-50%);
  border: 1px solid var(--control-1-border-color, #ccc);
  border-top: 0;
  background-color: var(--layer-3-color, #fafafa);
  box-shadow: 0 20px 20px rgba(0, 0, 0, .1);
}

.dropdown-control--options.active {
  display: flex;
}

.dropdown-control--link {
  gap: 0 8px;
  display: flex;
  align-items: center;
  padding: 6px 32px 6px 10px;
  color: var(--control-1-color, #202020);
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.dropdown-control--link:hover {
  background-color: var(--layer-5-color, #f4f4f4);
}

.dropdown-control--link svg {
  flex-shrink: 0;
}

.dropdown-control--link.color-colorDefault {
  color: var(--text-5-color, #606060);
}

.dropdown-control--link.color-colorGrn {
  color: #649213;
}

.dropdown-control--link.color-colorRed {
  color: #c30300;
}

.dropdown-control--link.color-colorRb {
  color: #090;
}

.dropdown-control--link.color-colorSc {
  color: #ff8000;
}

.dropdown-control--link.color-colorLb {
  color: #00bfff;
}

.dropdown-control--link.color-colorFf {
  color: #6d11bb;
}

.profile-layout {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  padding: 32px 15px;
  background-color: var(--layer-2-color, #fafafa);
}

@media screen and (min-width: 64em) {
  .profile-layout {
    padding: 32px 30px;
  }
}

.profile-layout--inner {
  width: 100%;
  max-width: 1246px;
}

.mod-status {
  gap: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mod-status--head {
  gap: 0 5px;
  display: none;
  grid-template-columns: 180px 1fr;
  width: 100%;
  padding: 0 8px;
}

@media screen and (min-width: 48em) {
  .mod-status--head {
    display: grid;
  }
}

.mod-status--header {
  padding: 3px 0;
  color: var(--text-5-color, #909090);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.mod-status--item {
  gap: 4px 5px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 10px 8px;
  background-color: var(--layer-3-color, #eee);
}

@media screen and (min-width: 48em) {
  .mod-status--item {
    gap: 0 5px;
    grid-template-columns: 180px 1fr;
  }
}

.mod-status--user {
  display: flex;
}

.mod-status--user a {
  color: var(--text-3-color, #202020);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}

.mod-status--label {
  gap: 10px 0;
  display: flex;
  flex-direction: column;
  color: var(--text-3-color, #202020);
  font-size: 13px;
  line-height: 20px;
}

.mod-status--action {
  gap: 4px 48px;
  display: flex;
  align-items: flex-start;
}

.mod-status--button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 2px;
  background-color: var(--layer-5-color, #fbfbfb);
  color: #008000;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.mod-status--button_negative {
  color: #e51e25;
}

.subnote {
  max-width: 910px;
  margin: 10px 0;
  padding: 9px 15px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
  color: #404040;
  font-size: 14px;
  line-height: 18px;
}

.rakedata {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
}

.rakedata--head {
  max-width: 910px;
  margin: 0 0 10px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .rakedata--head {
    padding: 0;
  }
}

.rakedata--nick {
  padding: 4px 0;
  color: #202020;
  font-size: 15px;
  line-height: 20px;
}

.rakedata--bottom {
  display: flex;
  max-width: 910px;
  padding: 15px;
}

@media screen and (min-width: 64em) {
  .rakedata--bottom {
    padding: 15px 0;
  }
}

.rakedata-form {
  display: flex;
  flex-wrap: wrap;
}

.rakedata-form--room {
  margin: 0 10px 0 0;
  padding: 4px 0;
}

.rakedata-form--date {
  margin: 0 10px 0 0;
  padding: 4px 0;
}

.rakedata-form--button {
  width: 100%;
  padding: 4px 0;
}

@media screen and (min-width: 48em) {
  .rakedata-form--button {
    width: auto;
  }
}

.rakedata-form--input {
  height: 32px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #606060;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.profile-selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 150px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background-color: #fff;
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: #202020;
  font-family: inherit;
  font-size: 14px;
  line-height: 30px;
}

.profile-selector_middle {
  width: 200px;
}

.rakegrid {
  display: flex;
  flex-direction: column;
  max-width: 910px;
  padding: 6px 15px 28px;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .rakegrid {
    padding: 12px 30px 28px;
  }
}

.rakegrid--item {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 80px minmax(64px, 1fr) minmax(66px, 1fr) minmax(40px, 1fr);
  padding: 9px 0;
  border-bottom: 1px solid #ccc;
}

.rakegrid_wide .rakegrid--item:last-child {
  border-color: transparent;
}

.rakegrid--head {
  color: #909090;
  font-size: 11px;
  line-height: 18px;
  text-transform: uppercase;
}

.rakegrid--head_right {
  text-align: right;
}

.rakegrid--date {
  color: #606060;
  font-size: 15px;
  line-height: 18px;
}

@media screen and (min-width: 48em) {
  .rakegrid--date {
    margin: 0;
  }
}

.rakegrid--date_sum {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.rakegrid--rake {
  color: #202020;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
}

.rakegrid--rake_sum {
  font-weight: 700;
}

.rakegrid--rakeback {
  color: #649213;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
}

.rakegrid--rakeback_sum {
  font-weight: 700;
}

.rakegrid--gtp {
  color: #529410;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
}

.rakegrid--gtp_sum {
  font-weight: 700;
}

.user-main--file {
  position: relative;
  width: 120px;
  height: 28px;
  margin: 6px 0 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #606060;
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.user-main--input {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 28px;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0;
}

.profile-setup {
  width: 100%;
  margin: 0 0 10px;
  padding: 20px 15px;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .profile-setup {
    margin: 0 0 20px;
    padding: 20px 30px;
  }
}

.profile-setup--mark {
  grid-column: span 1 / 2;
  padding: 4px 0 5px;
  color: #606060;
  font-size: 15px;
  line-height: 17px;
}

.profile-setup--note {
  margin: 0 0 10px;
  color: #202020;
  font-size: 15px;
  line-height: 18px;
}

.profile-setup--note a {
  color: #000;
  text-decoration: underline;
}

.profile-setup--footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  padding: 0 0 30px;
}

@media screen and (min-width: 64em) {
  .profile-setup--footer {
    padding: 0 0 20px;
  }
}

.setup-wrap {
  grid-gap: 0 15px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  margin: 0 0 10px;
}

.setup-wrap_double {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .setup-wrap_double {
    grid-template-columns: 120px 1fr;
  }
}

.checkbox-medium--label {
  display: flex;
  position: relative;
  margin: 0;
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 18px;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .setup-wrap_double .checkbox-medium--label {
    grid-column: span 1 / 3;
  }
}

.setup-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  grid-column: span 1 / 2;
  align-self: start;
  width: 100%;
  max-width: 420px;
  padding: 3px 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #202020;
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .setup-field {
    grid-column: span 1 / 3;
  }
}

.setup-field_short {
  max-width: 155px;
}

.setup-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  grid-column: span 1 / 2;
  width: 100%;
  max-width: 420px;
  padding: 0 10px 0 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: #202020;
  font-family: inherit;
  font-size: 15px;
  line-height: 26px;
}

@media screen and (min-width: 64em) {
  .setup-select {
    grid-column: span 1 / 3;
  }
}

.setup-select_short {
  max-width: 155px;
}

.setup-textarea {
  word-wrap: break-word;
  width: 100%;
  max-width: 420px;
  height: 90px;
  min-height: 90px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  box-shadow: none;
  color: var(--prf-field-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
  vertical-align: bottom;
  resize: none;
}

@media screen and (min-width: 64em) {
  .setup-textarea {
    max-width: initial;
  }
}

.setup-link {
  display: flex;
  color: #202020;
  font-size: 15px;
  line-height: 18px;
}

.setup-link_email::before {
  width: 15px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/setup-email.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  content: '';
}

.setup-link_pwd::before {
  width: 15px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/setup-pwd.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  content: '';
}

.setup-link_2f::before {
  width: 15px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/setup-2f.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  content: '';
}

.setup-2f-button {
  height: 28px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #606060;
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-setup--input {
  height: 32px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.st-rate {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: minmax(90px, 160px) minmax(90px, 160px) minmax(90px, 160px);
  width: 100%;
  margin: 0 0 20px;
}

@media screen and (min-width: 64em) {
  .st-rate {
    margin: 0 0 30px;
  }
}

.st-rate--item {
  display: flex;
  flex-direction: column;
  padding: 11px 0 13px;
  background-color: var(--prf-card-bg-color);
}

.st-rate--heading {
  color: var(--prf-staking-color);
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}

.st-rate--inner {
  display: flex;
  justify-content: center;
}

.st-rate--num {
  color: var(--prf-label-color);
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.st-rate--num_positive {
  color: #649213;
}

.st-rate--num_negative {
  color: #e31f26;
}

.st-rate--num_sep {
  margin: 0 3px;
  color: #909090;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
}

.stakedata {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 20px;
}

.stakedata_stats {
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .stakedata_stats {
    padding: 0;
  }
}

.stakedata_full {
  margin: 0;
}

.stakedata--header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  padding: 18px 0 0;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .stakedata--header {
    margin: 0 0 13px;
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (min-width: 64em) {
  .stakedata--header_complex {
    margin: 0 0 8px;
  }
}

.stakedata--heading {
  padding: 0 15px;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .stakedata--heading {
    padding: 0;
    font-size: 18px;
  }
}

.stakedata--heading_complex {
  margin: 0 auto 0 0;
  padding: 5px 15px;
}

@media screen and (min-width: 64em) {
  .stakedata--heading_complex {
    padding: 5px 0;
  }
}

.stakedata--bottom {
  display: flex;
  padding: 15px;
}

@media screen and (min-width: 64em) {
  .stakedata--bottom {
    padding: 15px 0;
  }
}

.stakedata-button {
  height: 28px;
  margin: 0 15px;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .stakedata-button {
    margin: 0 0 0 15px;
  }
}

.profile-breadcrumbs--inner .stakedata-button {
  margin: 0;
}

@media screen and (min-width: 64em) {
  .profile-breadcrumbs--inner .stakedata-button {
    margin: 0;
  }
}

.stakegrid {
  display: flex;
  flex-direction: column;
  padding: 6px 15px 20px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .stakegrid {
    padding: 12px 30px 20px;
  }
}

.stakegrid--item {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 80px 84px;
  padding: 9px 0;
  border-bottom: 1px solid var(--prf-line-color);
}

@media screen and (min-width: 48em) {
  .stakegrid--item {
    grid-template-columns: 90px minmax(100px, 1fr) 100px 100px;
  }
}

.stakegrid_wide .stakegrid--item:last-child {
  border-color: transparent;
}

.stakegrid--head {
  color: var(--prf-staking-color);
  font-size: 11px;
  line-height: 18px;
  text-transform: uppercase;
}

.stakegrid--head_wide {
  display: none;
}

@media screen and (min-width: 48em) {
  .stakegrid--head_wide {
    display: block;
  }
}

.stakegrid--head_right {
  text-align: right;
}

.stakegrid--date {
  grid-column: span 3;
  margin: 0 0 2px;
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 18px;
}

@media screen and (min-width: 48em) {
  .stakegrid--date {
    grid-column: span 1;
    margin: 0;
  }
}

.stakegrid--offer {
  color: var(--prf-strong-color);
  font-size: 15px;
  line-height: 18px;
}

.stakegrid--offer a {
  color: var(--prf-strong-color);
  font-size: 15px;
  line-height: 18px;
}

.stakegrid--profit {
  color: var(--prf-widget-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
}

.stakegrid--result {
  color: #202020;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
}

.stakegrid--result_positive {
  color: #649213;
}

.stakegrid--result_negative {
  color: #e31f26;
}

.stakegrid--footer {
  display: flex;
  width: 100%;
  max-width: 1246px;
  padding: 12px 0 0;
}

.stakegrid--link {
  display: none;
  color: var(--prf-widget-color);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .stakegrid--link {
    display: block;
  }
}

.stakegrid--link span {
  margin: 0 0 0 4px;
}

.stakegrid--note {
  color: var(--prf-widget-color);
  font-size: 16px;
  line-height: 20px;
}

.stakestats {
  display: flex;
  flex-direction: column;
  padding: 6px 15px 20px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .stakestats {
    padding: 12px 30px 20px;
  }
}

.stakestats--item {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 7px 0;
}

@media screen and (min-width: 48em) {
  .stakestats--item {
    grid-template-columns: minmax(100px, 1fr) 110px 110px;
  }
}

.stakestats--item:not(:last-child) {
  border-bottom: 1px solid var(--prf-line-color);
}

.stakestats--head {
  color: var(--prf-staking-color);
  font-size: 11px;
  line-height: 22px;
  text-transform: uppercase;
}

.stakestats--head_wide {
  display: none;
}

@media screen and (min-width: 48em) {
  .stakestats--head_wide {
    display: block;
  }
}

.stakestats--head_right {
  text-align: right;
}

.stakestats--label {
  grid-column: span 2;
  margin: 0 0 6px;
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .stakestats--label {
    grid-column: span 1;
    margin: 0;
  }
}

.stakestats--mark {
  grid-column: 1;
  padding: 4px 0 0;
  color: #909090;
  font-size: 11px;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .stakestats--mark {
    display: none;
  }
}

.stakestats--online {
  grid-column: 2;
  color: var(--prf-widget-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.stakestats--online_positive {
  color: #649213;
}

.stakestats--online_negative {
  color: #e31f26;
}

.stakestats--offline {
  grid-column: 2;
  color: var(--prf-widget-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .stakestats--offline {
    grid-column: 3;
  }
}

.stakestats--offline_positive {
  color: #649213;
}

.stakestats--offline_negative {
  color: #e31f26;
}

.stakestats--note {
  color: var(--prf-widget-color);
  font-size: 16px;
  line-height: 20px;
}

.profile-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 9px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .profile-breadcrumbs {
    padding: 0;
  }
}

.profile-breadcrumbs--link {
  display: flex;
  align-items: center;
  margin: 0 28px 0 0;
  padding: 5px 0;
  color: #909090;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .profile-breadcrumbs--link {
    font-size: 18px;
  }
}

.profile-breadcrumbs--link::before {
  width: 17px;
  height: 8px;
  margin: 0 12px 0 0;
  background-image: url(/nimg/arrow-back.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 17px;
  content: '';
}

.profile-breadcrumbs--heading {
  margin: 0 15px 0 0;
  padding: 5px 0;
  color: var(--prf-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .profile-breadcrumbs--heading {
    font-size: 18px;
  }
}

.profile-breadcrumbs--inner {
  display: flex;
  margin: 0 auto 0 0;
}

.wgt-session-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1246px;
  padding: 15px;
  background-color: var(--prf-card-bg-color);
}

.wgt-session-head {
  display: flex;
  flex-wrap: wrap;
  margin: 7px 0 0;
}

.wgt-session-label {
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 20px;
}

.wgt-session-link {
  margin: 0 0 0 5px;
  border-bottom: 1px solid var(--prf-label-color);
  color: var(--prf-label-color);
  font-size: 15px;
  line-height: 20px;
}

.wgt-session {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 20px;
}

.wgt-session--item {
  grid-gap: 4px 5px;
  display: grid;
  grid-template-columns: 24px 1fr 100px;
  padding: 5px 0;
  border-bottom: 1px solid var(--prf-line-color);
}

@media screen and (min-width: 48em) {
  .wgt-session--item {
    grid-template-columns: 24px 100px 1fr 100px 100px;
  }
}

.wgt-session--item:not(:last-child) {
  margin: 0 0 5px;
}

.wgt-session--device {
  grid-row: 1;
  width: 24px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
}

[theme='dark'] .wgt-session--device {
  filter: brightness(3);
}

.wgt-session--device_mobile {
  background-image: url(/nimg/session-mobile.svg);
  background-size: 24px;
}

.wgt-session--device_desktop {
  background-image: url(/nimg/session-desktop.svg);
  background-size: 24px;
}

.wgt-session--device_unknown {
  background-image: url(/nimg/session-unknown.svg);
  background-size: 24px;
}

.wgt-session--wrap {
  display: flex;
  flex-direction: column;
}

.wgt-session--os {
  grid-row: 1;
  color: var(--prf-strong-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}

.wgt-session--ip {
  grid-row: 1;
  color: var(--prf-strong-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}

.wgt-session--inner {
  display: flex;
  grid-column: 1/4;
  grid-row: 2;
}

@media screen and (min-width: 30em) {
  .wgt-session--inner {
    grid-column: 1/3;
  }
}

@media screen and (min-width: 48em) {
  .wgt-session--inner {
    grid-column: 3;
    grid-row: 1;
  }
}

.wgt-session--location {
  color: var(--prf-label-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.wgt-session--location::after {
  margin: 0 4px;
  color: var(--prf-label-color);
  content: '·';
}

.wgt-session--date {
  color: var(--prf-label-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.wgt-session--date_current {
  color: #649213;
}

.wgt-session--form {
  display: flex;
  grid-column: 1/3;
  grid-row: 3;
  align-items: center;
}

@media screen and (min-width: 30em) {
  .wgt-session--form {
    grid-column: 3;
    grid-row: 2;
  }
}

@media screen and (min-width: 48em) {
  .wgt-session--form {
    grid-column: 5;
    grid-row: 1;
  }
}

.wgt-session--button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  height: 20px;
  border: 1px solid var(--prf-control-border-color);
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.wgt-session-mark {
  margin: 0 0 5px;
  color: var(--prf-head-color);
  font-size: 14px;
  line-height: 20px;
}

.wgt-session-logout {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 30px;
  padding: 0 15px;
  border-radius: 3px;
  background-color: #424242;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.feedback-new {
  background-color: var(--prf-card-bg-color);
}

.feedback-new--header {
  width: 100%;
  max-width: 1246px;
  padding: 24px 15px 10px;
}

@media screen and (min-width: 64em) {
  .feedback-new--header {
    padding: 24px 30px 10px;
  }
}

.feedback-new--heading {
  color: var(--prf-label-color);
  font-size: 16px;
  line-height: 17px;
}

.feedback-new--wrap {
  display: flex;
  padding: 4px 15px 25px;
}

@media screen and (min-width: 64em) {
  .feedback-new--wrap {
    padding: 4px 30px 25px;
  }
}

.feedback-new--button {
  height: 32px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.feedback-edit {
  padding: 0 0 25px;
  background-color: var(--prf-card-bg-color);
}

.feedback-edit--inner {
  width: 100%;
  max-width: 1246px;
  padding: 4px 15px 17px 10px;
}

.feedback-edit--wrap {
  display: flex;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .feedback-edit--wrap {
    padding: 0 30px;
  }
}

.feedback-edit--button {
  height: 32px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.widget-rate {
  width: 100%;
  max-width: 1246px;
}

.widget-rate_staking {
  margin: 0 0 20px;
}

.widget-rate--header {
  width: 100%;
  max-width: 1246px;
  padding: 24px 15px 10px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .widget-rate--header {
    padding: 24px 30px 10px;
  }
}

.widget-rate--heading {
  color: var(--prf-label-color);
  font-size: 16px;
  line-height: 17px;
}

.widget-rate--inner {
  padding: 0 15px 25px;
  background-color: var(--prf-card-bg-color);
}

@media screen and (min-width: 64em) {
  .widget-rate--inner {
    padding: 0 30px 25px;
  }
}

.widget-rate--subheader {
  margin: 0 0 8px;
  color: var(--prf-subhead-color);
  font-size: 15px;
  line-height: 20px;
}

.widget-rate--note {
  color: #909090;
  font-size: 12px;
  line-height: 16px;
}

.widget-rate--link {
  color: #909090;
  font-size: 12px;
  line-height: 16px;
}

.widget-rate--link a {
  color: #909090;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

.widget-rate--wrap {
  margin: 0 0 12px;
  padding: 24px 0 0;
}

.widget-rate--field {
  word-wrap: break-word;
  width: 100%;
  height: 90px;
  min-height: 90px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-field-bg-color);
  box-shadow: none;
  color: var(--prf-field-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
  vertical-align: bottom;
  resize: none;
}

.widget-rate--field:focus {
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .1);
}

.widget-rate--admin {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
}

.widget-rate--save {
  height: 32px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.widget-rate--remove {
  display: inline-flex;
  height: 32px;
  margin: 0 0 0 5px;
  padding: 0 10px;
  border: 1px solid var(--prf-control-border-color);
  border-radius: 3px;
  background-color: var(--prf-control-bg-color);
  color: var(--prf-control-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.widget-rate .ui-widget-content {
  position: relative;
  height: 10px;
  background-image: linear-gradient(to bottom, #b9b9b9 0%, #c8c8c8 50%, #dbdbdb 100%);
}

.widget-rate .ui-widget.ui-widget-content {
  border: 1px solid #d3d3d3;
}

.widget-rate .ui-slider .ui-slider-handle {
  z-index: 2;
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

.widget-rate .ui-slider-horizontal .ui-slider-handle {
  top: -4px;
  margin-left: -8px;
}

.widget-rate .ui-corner-all {
  border-radius: 3px;
}

.rate-slider {
  display: flex;
  align-items: center;
  height: 28px;
  margin: 0 0 6px;
}

.rate-slider--inner {
  position: relative;
  width: 100%;
}

.rate-slider--range {
  display: flex;
  z-index: 1;
  position: absolute;
  width: 50%;
}

.rate-slider--range_negative {
  top: 0;
  left: 0;
  justify-content: flex-end;
}

[theme='dark'] .rate-slider--range_negative {
  background-color: #616161;
}

.rate-slider--range_positive {
  top: 0;
  right: 0;
  justify-content: flex-start;
}

[theme='dark'] .rate-slider--range_positive {
  background-color: #616161;
}

.rate-slider--line {
  width: 0;
  height: 10px;
}

.rate-slider--line_negative {
  background-color: #e50e2b;
}

.rate-slider--line_positive {
  background-color: #649212;
}

.rate-slider--side {
  position: relative;
  border: 1px solid var(--prf-line-color);
  border-radius: 3px;
}

.rate-slider--side_negative {
  margin: 0 10px 0 0;
}

.rate-slider--side_positive {
  margin: 0 0 0 10px;
}

.rate-slider--cancel {
  display: none;
  z-index: 2;
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background-image: url(/nimg/rate-slider-cancel.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.active .rate-slider--cancel {
  display: block;
}

.rate-slider--side_negative .rate-slider--cancel {
  left: -8px;
}

.rate-slider--side_positive .rate-slider--cancel {
  right: -8px;
}

.rate-slider--input {
  display: block;
  width: 43px;
  margin: 0;
  border: 0;
  border-radius: 3px;
  outline-width: 0;
  font-size: 15px;
  line-height: 26px;
}

.rate-slider--input_negative {
  padding: 0 0 0 6px;
}

.active .rate-slider--input_negative {
  color: #e50e2b;
}

.rate-slider--input_positive {
  padding: 0 0 0 4px;
}

.active .rate-slider--input_positive {
  color: #649213;
}

.active .rate-slider--input {
  font-weight: 700;
}

.rate-slider--input::-moz-placeholder {
  color: var(--prf-label-color);
}

.rate-slider--input::placeholder {
  color: var(--prf-label-color);
}

[theme='dark'] .rate-slider--input {
  background-color: #1a1a1a;
}

.stake-rate {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.stake-rate--label {
  margin: 0 10px 0 0;
  color: var(--prf-label-color);
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
}

.stake-rate--list {
  display: flex;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.stake-rate--item {
  display: flex;
  height: 28px;
}

.stake-rate--item_plus {
  width: 29px;
  border-right: 1px solid #ccc;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-image: url(/nimg/rating-list-plus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}

.stake-rate--item_minus {
  width: 28px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-image: url(/nimg/rating-list-minus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}

.stake-rate--item.selected {
  background-color: #efefef;
}

.stake-rate--item a {
  flex-grow: 1;
}

.wgt-articles {
  --prf-articles-bg-color: var(--layer-3-color, #fff);
  --prf-articles-color: var(--text-4-color, #606060);
  --prf-articles-head-color: var(--text-2-color, #333);
  --prf-articles-title-color: var(--text-1-color, #000);
  --prf-articles-border-color: var(--line-2-color, #eee);
  margin: 0 0 10px;
}

.wgt-articles--wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px 15px 16px;
  background-color: var(--prf-articles-bg-color);
}

@media screen and (min-width: 64em) {
  .wgt-articles--wrap {
    padding: 20px 30px 16px;
  }
}

.wgt-articles--head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
}

@media screen and (min-width: 64em) {
  .wgt-articles--head {
    flex-direction: row;
    align-items: center;
    margin: 0 0 20px;
  }
}

.wgt-articles--heading {
  color: var(--prf-articles-head-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .wgt-articles--heading {
    margin: 0 auto 0 0;
    font-size: 18px;
    line-height: 34px;
  }
}

.wgt-articles--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1246px;
  margin: 0 auto;
}

.wgt-articles--bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 1246px;
  margin: 10px 0 20px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .wgt-articles--bottom {
    padding: 0;
  }
}

.profile-article {
  grid-column-gap: 15px;
  display: grid;
  position: relative;
  grid-template-areas: 'image meta' 'image .' 'title title' 'content content';
  grid-template-columns: 100px 1fr;
  grid-template-rows: 15px auto;
  padding: 0 0 10px;
}

@media screen and (min-width: 48em) {
  .profile-article {
    grid-column-gap: 20px;
    grid-template-areas: 'image title' 'image title' 'image content' 'image meta' 'image .';
  }
}

.profile-article:not(:last-child) {
  margin: 0 0 10px;
  border-bottom: 1px solid var(--prf-articles-border-color);
}

.profile-article--image {
  display: flex;
  grid-area: image;
  align-items: flex-start;
  width: 100px;
  margin: 0 0 12px;
}

@media screen and (min-width: 48em) {
  .profile-article--image {
    margin: 0;
  }
}

.profile-article--image img {
  flex-grow: 1;
  object-fit: cover;
}

.profile-article--title {
  grid-area: title;
  margin: 0 0 10px;
  color: var(--prf-articles-title-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  line-height: 21px;
}

.profile-article--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.profile-article--content {
  grid-area: content;
}

@media screen and (min-width: 48em) {
  .profile-article--content {
    margin: 0 0 10px;
  }
}

.profile-article--content p {
  margin: 0;
  color: var(--prf-articles-color);
  font-size: 14px;
  line-height: 20px;
}

.profile-article--meta {
  grid-area: meta;
}

.profile-article--meta .media-meta--comment {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .profile-article--meta .media-meta--comment {
    width: auto;
  }
}

.wgt-messages {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 10px;
  padding: 18px 15px 16px;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .wgt-messages {
    padding: 20px 30px 16px;
  }
}

.wgt-messages--wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 10px;
}

@media screen and (min-width: 64em) {
  .wgt-messages--wrap {
    flex-direction: row;
    align-items: center;
    margin: 0 0 20px;
  }
}

.wgt-messages--heading {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .wgt-messages--heading {
    margin: 0 auto 0 0;
    font-size: 18px;
    line-height: 34px;
  }
}

.wgt-messages--button {
  height: 34px;
  margin: 10px 0 0;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .wgt-messages--button {
    margin: 0;
  }
}

.wgt-messages--list {
  margin: 0;
}

.wgt-messages--item {
  margin: 0 0 12px;
  font-size: 14px;
}

.wgt-messages--item:nth-last-child(1) {
  margin: 0;
}

.wgt-messages--grid {
  grid-gap: 2px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  line-height: 20px;
}

.wgt-messages--section {
  grid-column: 1 / 3;
  color: #202020;
  font-family: "PT Serif", serif;
  font-size: 16px;
}

.wgt-messages--percent {
  grid-row: 2;
  color: #000;
  font-size: 12px;
  font-weight: 700;
}

.wgt-messages--qty {
  grid-row: 2;
  color: #606060;
  font-size: 12px;
}

.wgt-messages--line {
  display: flex;
  grid-column: 1 / 3;
  grid-row: 3;
  height: 4px;
  background-color: #e5e5e5;
}

.wgt-messages--progress {
  background-color: #649213;
}

.wgt-messages--inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 15px 0 0;
}

.wgt-messages--link {
  color: #404040;
  font-size: 12px;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wgt-messages--link:hover {
  text-decoration: underline;
}

.bbcoder--main {
  width: 100%;
}

.bbcoder--inner {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #f8f8f8;
}

.bbcoder--inner textarea {
  width: 100%;
  height: 148px;
  min-height: 148px;
  margin: 0;
  padding: 10px;
  overflow: auto;
  border: 0;
  background-color: #fff;
  box-shadow: none;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: bottom;
  overflow-wrap: break-word;
  resize: vertical;
}

.bbcoder--inner textarea:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}

.form-group .bbcoder--inner textarea {
  font-size: 16px;
}

.bbcoder--menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 43px;
  padding: 6px 1px 1px 5px;
  border-bottom: 1px solid #efefef;
  border-radius: 3px 3px 0 0;
  background-color: #fff;
}

.bbcoder--submenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 43px;
  border-top: 1px solid #efefef;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}

.bbcoder--button {
  fill: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 4px 4px 0;
  border-radius: 3px;
  cursor: default;
}

.bbcoder--button svg {
  width: 24px;
  height: 24px;
}

.bbcoder--inner_theme_white .bbcoder--button {
  background-image: linear-gradient(to bottom, #fff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
}

.bbcoder--submenu .bbcoder--button {
  border: 0;
  background: transparent;
}

.bbcoder--button:focus {
  transform: translateY(1px);
}

.bbcoder--button:focus svg {
  fill: #3949ab;
}

.bbcoder--button_pagebreak svg .sep-logo {
  fill: #e50e2b;
}

.bbcoder--button_symbol.active {
  transform: translateY(1px);
}

.bbcoder--button_symbol.active svg {
  fill: #3949ab;
}

.bbcoder--button_color.active {
  transform: translateY(1px);
}

.bbcoder--button_color.active svg {
  fill: #3949ab;
}

.bbcoder--button_smile {
  position: relative;
}

.bbcoder--button_smile:hover {
  border: 0;
  background: transparent;
}

.bbcoder--button_smile::after {
  position: absolute;
  top: 7px;
  right: -3px;
  width: 1px;
  height: 16px;
  background-color: #e5e5e5;
  content: "";
}

.bbcoder--button_card:hover {
  border: 0;
  background: transparent;
}

.bbcoder--button .bbcoder-icon--twitter {
  height: 16px;
}

.bbcoder--dropdown {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 6px 10px 4px;
  border-bottom: 1px solid #efefef;
  background-color: #f8f8f8;
  white-space: nowrap;
}

.bbcoder--dropdown_color {
  padding: 5px 2px;
}

.bbcoder--dropdown_color.active {
  display: flex;
}

.bbcoder--dropdown_symbol {
  padding: 6px 1px 1px 5px;
}

.bbcoder--dropdown_symbol.active {
  display: flex;
}

.bbcoder-symbol {
  display: flex;
  flex-wrap: wrap;
}

.bbcoder-symbol a {
  width: 32px;
  height: 32px;
  margin: 0 4px 4px 0;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
}

.bbcoder-symbol a:hover {
  border-color: #ccc;
  cursor: pointer;
}

.bbcoder-symbol a:focus {
  transform: translateY(1px);
  color: #3949ab;
}

.bbcoder-colors {
  display: flex;
  flex-wrap: wrap;
}

.bbcoder-colors a:hover {
  box-shadow: inset 0 0 0 1px #3949ab;
  cursor: pointer;
}

.bbcoder-colors--cell {
  width: 15px;
  height: 15px;
  margin: 3px;
  border: 1px solid #e6e6e6;
}

.bbcoder--smiles {
  display: none;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 10px;
}

.bbcoder--smiles.show {
  display: flex;
}

.bbcoder--smiles a {
  margin: 0 5px 2px 0;
}

.bbcoder--cards {
  display: none;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 12px 0 0 10px;
}

.bbcoder--cards.show {
  display: flex;
}

.bbcoder--cards ul {
  display: flex;
  flex-wrap: wrap;
  width: 220px;
  margin: 0 0 7px;
  padding: 0;
  list-style-type: none;
}

.bbcoder--cards .card {
  display: block;
  width: 25px;
  height: 16px;
  margin: 0 4px 2px 0;
  background-image: url(/nimg/cards-16-fixed.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.bbcoder--cards .card_color {
  background-image: url(/nimg/cards-16-color-fixed.svg);
}

.c_D {
  background-position: 0 0;
}

.c_2D {
  background-position: -36px 0;
}

.c_3D {
  background-position: -72px 0;
}

.c_4D {
  background-position: 0 -18px;
}

.c_5D {
  background-position: -36px -18px;
}

.c_6D {
  background-position: -72px -18px;
}

.c_7D {
  background-position: 0 -36px;
}

.c_8D {
  background-position: -36px -36px;
}

.c_9D {
  background-position: -72px -36px;
}

.c_10D {
  background-position: 0 -54px;
}

.c_TD {
  background-position: 0 -54px;
}

.c_JD {
  background-position: -36px -54px;
}

.c_QD {
  background-position: -72px -54px;
}

.c_KD {
  background-position: 0 -72px;
}

.c_AD {
  background-position: -36px -72px;
}

.c_S {
  background-position: -72px -72px;
}

.c_2S {
  background-position: 0 -90px;
}

.c_3S {
  background-position: -36px -90px;
}

.c_4S {
  background-position: -72px -90px;
}

.c_5S {
  background-position: 0 -108px;
}

.c_6S {
  background-position: -36px -108px;
}

.c_7S {
  background-position: -72px -108px;
}

.c_8S {
  background-position: 0 -126px;
}

.c_9S {
  background-position: -36px -126px;
}

.c_10S {
  background-position: -72px -126px;
}

.c_TS {
  background-position: -72px -126px;
}

.c_JS {
  background-position: 0 -144px;
}

.c_QS {
  background-position: -36px -144px;
}

.c_KS {
  background-position: -72px -144px;
}

.c_AS {
  background-position: 0 -162px;
}

.c_H {
  background-position: -36px -162px;
}

.c_2H {
  background-position: -72px -162px;
}

.c_3H {
  background-position: 0 -180px;
}

.c_4H {
  background-position: -36px -180px;
}

.c_5H {
  background-position: -72px -180px;
}

.c_6H {
  background-position: 0 -198px;
}

.c_7H {
  background-position: -36px -198px;
}

.c_8H {
  background-position: -72px -198px;
}

.c_9H {
  background-position: 0 -216px;
}

.c_10H {
  background-position: -36px -216px;
}

.c_TH {
  background-position: -36px -216px;
}

.c_JH {
  background-position: -72px -216px;
}

.c_QH {
  background-position: 0 -234px;
}

.c_KH {
  background-position: -36px -234px;
}

.c_AH {
  background-position: -72px -234px;
}

.c_C {
  background-position: 0 -252px;
}

.c_2C {
  background-position: -36px -252px;
}

.c_3C {
  background-position: -72px -252px;
}

.c_4C {
  background-position: 0 -270px;
}

.c_5C {
  background-position: -36px -270px;
}

.c_6C {
  background-position: -72px -270px;
}

.c_7C {
  background-position: 0 -288px;
}

.c_8C {
  background-position: -36px -288px;
}

.c_9C {
  background-position: -72px -288px;
}

.c_10C {
  background-position: 0 -306px;
}

.c_TC {
  background-position: 0 -306px;
}

.c_JC {
  background-position: -36px -306px;
}

.c_QC {
  background-position: -72px -306px;
}

.c_KC {
  background-position: 0 -324px;
}

.c_AC {
  background-position: -36px -324px;
}

.c_X {
  background-position: -72px -324px;
}

.c_2X {
  background-position: 0 -342px;
}

.c_3X {
  background-position: -36px -342px;
}

.c_4X {
  background-position: -72px -342px;
}

.c_5X {
  background-position: 0 -360px;
}

.c_6X {
  background-position: -36px -360px;
}

.c_7X {
  background-position: -72px -360px;
}

.c_8X {
  background-position: 0 -378px;
}

.c_9X {
  background-position: -36px -378px;
}

.c_10X {
  background-position: -72px -378px;
}

.c_TX {
  background-position: -72px -378px;
}

.c_JX {
  background-position: 0 -396px;
}

.c_QX {
  background-position: -36px -396px;
}

.c_KX {
  background-position: -72px -396px;
}

.c_AX {
  background-position: 0 -414px;
}

.heroes-widget {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  padding: 0 0 40px;
}

@media screen and (min-width: 64em) {
  .heroes-widget {
    max-width: 1276px;
    padding: 0 15px 65px;
  }
}

.widget-tops {
  --w-heroes-heading-color: #333;
  --w-heroes-bg-color: #fff;
  --w-heroes-border-color: #dbdbdb;
  --w-heroes-line-color: #dbdbdb;
  --w-heroes-player-color: #202020;
  --w-heroes-blog-color: #202020;
  --w-heroes-subhead-color: #333;
  --w-heroes-num-color: #909090;
  --w-heroes-icon: none;
  --w-arrow-icon: none;
  width: 100%;
  padding: 0 15px;
}

.content_theme .widget-tops {
  --w-heroes-heading-color: var(--text-5-color, #333);
  --w-heroes-bg-color: var(--layer-3-color, #fff);
  --w-heroes-border-color: var(--line-2-color, #dbdbdb);
  --w-heroes-line-color: var(--line-1-color, #dbdbdb);
  --w-heroes-player-color: var(--text-4-color, #202020);
  --w-heroes-blog-color: var(--text-5-color, #202020);
  --w-heroes-subhead-color: var(--text-4-color, #333);
  --w-heroes-num-color: var(--text-5-color, #909090);
  --w-heroes-icon: var(--icon-5-filter, none);
  --w-arrow-icon: var(--icon-1-filter, none);
}

@media screen and (min-width: 48em) {
  .widget-tops {
    padding: 0;
  }
}

.widget-tops--grid {
  grid-gap: 15px 0;
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
  width: 100%;
  max-width: 824px;
}

@media screen and (min-width: 64em) {
  .widget-tops--grid {
    grid-gap: 30px 20px;
    grid-template-columns: 402fr 516fr 288fr;
    max-width: 1276px;
  }
}

.widget-tops--header {
  display: flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 13px;
}

.widget-tops--logo {
  --color1: var(--pal-icon-color1, #000);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}

.widget-tops--link {
  position: relative;
  color: var(--w-heroes-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-tops--link::after {
  position: absolute;
  top: 4px;
  right: -16px;
  width: 10px;
  height: 14px;
  background-image: url(/nimg/arrow-right-short.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
  filter: var(--w-arrow-icon);
}

.widget-tops--item {
  padding: 0 15px 12px;
  background-color: var(--w-heroes-bg-color);
}

.widget-tops--head {
  display: flex;
  align-items: center;
  height: 71px;
  border-bottom: 1px solid var(--w-heroes-border-color);
}

.widget-tops--icon {
  display: none;
  width: 46px;
  height: 46px;
  margin: 0 10px 0 0;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 46px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  filter: var(--w-heroes-icon);
}

@media screen and (min-width: 64em) {
  .widget-tops--icon {
    display: block;
  }
}

.widget-tops--icon_author {
  background-image: url(/nimg/top-author.svg);
}

.widget-tops--icon_blog {
  background-image: url(/nimg/top-blog.svg);
}

.widget-tops--icon_stream {
  background-image: url(/nimg/top-stream.svg);
}

.widget-tops--heading {
  color: #909090;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
}

.grid-tops {
  grid-gap: 0 10px;
  display: grid;
  position: relative;
  grid-template-columns: 90px 28px 1fr;
  padding: 13px 0;
  line-height: 28px;
}

.grid-tops:not(:last-child) {
  border-bottom: 1px dashed var(--w-heroes-line-color);
}

.grid-tops_double {
  align-items: center;
}

@media screen and (min-width: 64em) {
  .grid-tops_double {
    padding: 9px 0;
  }
}

.grid-tops_stream {
  grid-template-columns: 10px 28px 1fr;
}

.grid-tops--subhead {
  grid-column: 1;
  color: var(--w-heroes-subhead-color);
  font-size: 13px;
}

.grid-tops--num {
  grid-column: 1;
  color: var(--w-heroes-num-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
}

.grid-tops--icon {
  display: flex;
  position: relative;
  grid-column: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  filter: var(--w-heroes-icon);
}

.grid-tops--icon_author {
  background-image: url(/nimg/top-author.svg);
}

.grid-tops--icon_blog {
  background-image: url(/nimg/top-blog.svg);
}

.grid-tops--icon_stream {
  background-image: url(/nimg/top-stream.svg);
}

.grid-tops--counter {
  z-index: 5;
  position: absolute;
  top: 22px;
  left: 50%;
  min-width: 21px;
  padding: 0 3px;
  transform: translateX(-50%);
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 11px;
  text-align: center;
}

.grid-tops--icon_author .grid-tops--counter {
  background-image: linear-gradient(180deg, #7d9e61 0%, #5a6651 160%);
}

.grid-tops--icon_blog .grid-tops--counter {
  background-image: linear-gradient(180deg, #ffb932 0%, #f71212 160%);
}

.grid-tops--inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.grid-tops--player {
  grid-column: 3;
  overflow: hidden;
  color: var(--w-heroes-player-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.grid-tops--player::before {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.grid-tops_double .grid-tops--player {
  line-height: 18px;
}

.grid-tops--blog {
  display: none;
  max-width: 720px;
  overflow: hidden;
  color: var(--w-heroes-blog-color);
  font-size: 14px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .grid-tops--blog {
    display: block;
  }
}

.widget-rr {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 615px;
  margin: 0 0 16px;
}

@media screen and (min-width: 64em) {
  .widget-rr {
    max-width: 1276px;
    margin: 0;
    padding: 0 0 25px;
  }
}

.widget-rr--head {
  gap: 0 8px;
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 0 0 0 16px;
  line-height: 1;
}

@media screen and (min-width: 40em) {
  .widget-rr--head {
    padding: 0;
  }
}

.widget-rr--head svg {
  flex-shrink: 0;
}

.widget-rr--heading {
  gap: 0 6px;
  display: flex;
  position: relative;
  align-items: center;
  color: var(--rr-head-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.widget-rr--subheader {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 0 0 16px;
  padding: 0 24px 0 16px;
  background-color: #ff8400;
}

.widget-rr--switch {
  display: flex;
}

.widget-rr--button {
  margin: 0 4px;
  padding: 3px 4px;
  border-radius: 3px;
  color: #efefef;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-rr--button.active {
  background-color: #282828;
}

.widget-rr--logo {
  width: 100px;
  height: 30px;
  margin: 0 0 0 auto;
  background-image: url(/nimg/logo-rr-redstar.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100px;
}

.widget-rr--inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-image: linear-gradient(180deg, #3e050a 48px, #3e050a 100%);
}

.widget-rr--item {
  padding: 4px 15px;
}

.grid-rr {
  grid-gap: 0 10px;
  display: grid;
  grid-template-columns: 55px 1fr 45px;
  line-height: 25px;
}

.grid-rr--num {
  grid-column: 1;
  padding: 0 0 0 15px;
  color: #7e4348;
  font-size: 16px;
}

.grid-rr--nick {
  grid-column: 2;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
}

.grid-rr--score {
  grid-column: 3;
  color: #ff8400;
  font-size: 16px;
  font-weight: 700;
}

.grid-rr--score_top {
  color: #ff8400;
}

.widget-rr--wrap {
  display: flex;
  align-items: center;
  height: 50px;
  margin: auto 0 0;
  padding: 0 24px;
}

.rr-control {
  gap: 0 10px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
}

.rr-control::after,
.rr-control::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: #ff8400;
  content: '';
}

.rr-control--button {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.rr-control--button svg {
  --i-color1: #ff8400;
  --i-color2: #fff;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.rr-control--button_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.widget-wknd {
  width: 100%;
  max-width: 615px;
}

@media screen and (min-width: 64em) {
  .widget-wknd {
    max-width: 1276px;
  }
}

.widget-wknd--head {
  display: flex;
  align-items: center;
  margin: 0 0 13px;
  padding: 0 0 0 16px;
  line-height: 1;
}

@media screen and (min-width: 40em) {
  .widget-wknd--head {
    padding: 0;
  }
}

.widget-wknd--icon {
  width: 22px;
  height: 33px;
  margin: 0 8px 0 0;
  background-image: url(/nimg/icon-strike.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 33px;
}

.widget-wknd--heading {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.widget-wknd--subheader {
  margin: 0 0 6px;
  padding: 10px 15px;
  background-color: #e0e0e0;
}

.widget-wknd--subgrid {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 1fr 90px;
  align-content: center;
  height: 40px;
}

.widget-wknd--switch {
  display: flex;
  align-items: center;
}

.widget-wknd--button {
  padding: 4px 5px;
  border-radius: 3px;
  color: #606060;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.widget-wknd--button:not(:last-child) {
  margin: 0 2px 0 0;
}

.widget-wknd--button.active {
  background-color: #e51e25;
  color: #fff;
}

.widget-wknd--latereg {
  border-left: 1px solid #ccc;
  color: #606060;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.widget-wknd--inner {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 0 0 6px;
  background-color: #fff;
}

.widget-wknd--inner::after {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #fff;
  content: '';
}

.widget-wknd--item {
  padding: 0 15px;
}

.grid-wknd {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 55px 1fr 90px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 25px;
}

.grid-wknd--num {
  grid-column: 1;
  color: #2e7d32;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 18px;
}

.grid-wknd--tour {
  display: grid;
  grid-column: 2;
}

.grid-wknd--name {
  height: 36px;
  overflow: hidden;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.grid-wknd--room {
  grid-row: 2;
  color: #8f8f8f;
  font-size: 12px;
  line-height: 18px;
}

.grid-wknd--score {
  grid-column: 3;
  color: #e31f26;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.widget-wknd--wrap {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;
}

.wknd-control {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
}

.wknd-control::after,
.wknd-control::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: #d3d3d3;
  content: '';
}

.wknd-control--prev {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 5px 0 10px;
  background-image: url(/nimg/slider-hot-prev.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.wknd-control--prev.disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.wknd-control--next {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 5px;
  background-image: url(/nimg/slider-hot-next.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.wknd-control--next.disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.regs {
  display: flex;
  position: relative;
  flex-direction: column;
}

.regs--header {
  display: none;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #dfe1e4;
}

@media screen and (min-width: 48em) {
  .regs--header {
    padding: 28px 32px 24px;
  }
}

.regs--header h2 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

@media screen and (min-width: 48em) {
  .regs--header h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.room-regplace .regs--header {
  display: block;
}

.regs--heading {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.regs--item {
  padding: 24px 24px 0;
}

@media screen and (min-width: 40em) {
  .regs--item {
    padding: 32px 32px 0;
  }
}

.regs--item_list {
  padding: 18px 24px 0;
}

@media screen and (min-width: 40em) {
  .regs--item_list {
    padding: 25px 32px 0;
  }
}

.regs--item_last {
  padding: 18px 24px 24px;
}

@media screen and (min-width: 40em) {
  .regs--item_last {
    padding: 25px 32px 32px;
  }
}

.regs--item_stripe_first {
  position: relative;
  overflow-y: hidden;
}

@media screen and (min-width: 48em) {
  .regs--item_stripe_first::before {
    position: absolute;
    top: 72px;
    left: 47px;
    width: 0;
    height: 100%;
    border-right: 1px dashed #dfe1e4;
    content: '';
  }
}

.regs--item_stripe_list {
  position: relative;
}

@media screen and (min-width: 48em) {
  .regs--item_stripe_list::before {
    position: absolute;
    top: 0;
    left: 47px;
    width: 0;
    height: 100%;
    border-right: 1px dashed #dfe1e4;
    content: '';
  }
}

.regs--item_stripe_last {
  position: relative;
}

@media screen and (min-width: 48em) {
  .regs--item_stripe_last::before {
    position: absolute;
    top: 0;
    left: 47px;
    width: 0;
    height: 17px;
    border-right: 1px dashed #dfe1e4;
    content: '';
  }
}

.regs--wrap {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .regs--wrap {
    gap: 0 32px;
    grid-template-columns: 32px 1fr;
  }
}

.regs--inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 0 24px;
  border-bottom: 1px solid #dfe1e4;
}

@media screen and (min-width: 48em) {
  .regs--inner_list {
    grid-column: 2;
  }
}

.regs--inner_clean {
  padding: 0;
  border-color: transparent;
}

.regs--border {
  width: 100%;
  height: 39px;
  border-bottom: 1px dashed #e5d8b3;
}

.regs--number {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #44d587;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

@media screen and (min-width: 48em) {
  .regs--number {
    width: 32px;
    height: 32px;
  }
}

.regs--bonus {
  margin: 0;
  padding: 12px 0 0 18px;
  list-style-position: outside;
  list-style-type: disc;
}

.regs--bonus li {
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

.regs--bonus li:not(:last-child) {
  margin: 0 0 8px;
}

.regs--bonus a {
  color: #000;
  font-weight: 700;
}

.regs--bonus a:hover {
  color: #e51e25;
}

.regs-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px 0 0;
}

@media screen and (min-width: 48em) {
  .regs-form {
    flex-direction: row;
  }
}

.regs-field {
  width: 100%;
  max-width: 289px;
  padding: 21px 16px 22px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  line-height: 16px;
}

.regs-field::-moz-placeholder {
  color: #a8a8a9;
}

.regs-field::placeholder {
  color: #a8a8a9;
}

.regs-field_nick {
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .regs-field_nick {
    margin: 0 32px 0 0;
  }
}

.regs-field_nick:disabled {
  background-color: #e0e0e0;
  color: #757575;
}

.regs-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 289px;
  height: 64px;
  margin: 0 0 16px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.regs-send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 181px;
  height: 64px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}

.regs-link-note {
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .regs-link-note {
    font-size: 16px;
  }
}

.regs-restricted {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 32px 24px;
}

@media screen and (min-width: 48em) {
  .regs-restricted {
    padding: 32px;
  }
}

.regs-restricted--top {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 0 0 16px;
}

.regs-restricted--logo {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  width: 60px;
  height: 60px;
  margin: 0 16px 0 0;
}

.regs-restricted--heading {
  width: 100%;
  max-width: 360px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.regs-restricted--text {
  padding: 16px 0 24px;
  border-top: 1px dashed #dfe1e4;
}

.regs-restricted--text p {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

.regs-restricted--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0 0;
}

@media screen and (min-width: 48em) {
  .regs-restricted--form {
    flex-direction: row;
  }
}

.nick-submition {
  position: relative;
  padding: 8px 10px;
  border-left: 3px solid #388d3c;
  background-color: #eef0f5;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.regs-restricted--note {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px 16px;
  border: 1px solid #44d487;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .regs-restricted--note {
    padding: 24px;
  }
}

.regs-restricted--note p {
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .regs-restricted--note p {
    font-size: 16px;
  }
}

.regs-restricted--contact {
  display: flex;
  flex-direction: column;
  padding: 24px 0 0;
}

.regs-contact-wrap {
  gap: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 320px;
}

.bs-i-btn_chat {
  --i-color1: #e51e25;
}

.bs-i-btn_chat:hover {
  --i-color1: #fff;
}

.vip-rg-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 32px 24px;
}

@media screen and (min-width: 48em) {
  .vip-rg-wrap {
    padding: 32px;
  }
}

.room-plus-reg .vip-rg-wrap {
  padding: 32px 16px;
}

@media screen and (min-width: 48em) {
  .room-plus-reg .vip-rg-wrap {
    padding: 32px;
  }
}

.vip-rg {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 24px;
  border: 1px solid #44d587;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .vip-rg {
    padding: 32px;
  }
}

.vip-rg--contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 442px;
}

@media screen and (min-width: 40em) {
  .vip-rg--contact {
    flex-wrap: nowrap;
  }
}

.vip-rg--contact_top {
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #dfe1e4;
}

@media screen and (min-width: 30em) {
  .vip-rg--contact_top {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vip-rg--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background-color: #44d587;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.vip-rg--chat:hover {
  background-color: #25a25f;
}

.vip-rg--chat svg {
  width: 24px;
  height: 24px;
}

.vip-rg-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e51e25;
  border-radius: 10px;
}

.vip-rg-button:hover {
  --i-color1: #fff;
  background-color: #e51e25;
}

.vip-rg-button svg {
  width: 24px;
  height: 24px;
}

.vip-rg-button_double {
  --i-color1: #fff;
  border: 0;
  background-color: #e51e25;
}

@media screen and (min-width: 30em) {
  .vip-rg-button_double {
    grid-column: span 2;
  }
}

.vip-rg-button_double:hover {
  --i-color1: #fff;
  background-color: #b9253b;
}

.vip-rg-button_discord_active {
  --i-color1: #fff;
  background-color: #e51e25;
}

.rg-tr-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .rg-tr-wrap {
    width: auto;
  }
}

.rg-tr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.rg-tr-btn_mob {
  margin: 16px 0 0;
}

@media screen and (min-width: 40em) {
  .rg-tr-btn_mob {
    margin: 0;
  }
}

.rg-tr-btn:hover {
  --i-color1: #b9253b;
  color: #b9253b;
}

.rg-tr-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.rg-tr-sep {
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 16px;
  background-color: #dfe1e4;
}

@media screen and (min-width: 40em) {
  .rg-tr-sep {
    margin: 0 32px;
  }
}

.rg-tr-sep_mob {
  display: none;
}

@media screen and (min-width: 40em) {
  .rg-tr-sep_mob {
    display: block;
  }
}

.vip-ds-wrap {
  position: relative;
}

.vip-ds {
  display: none;
  z-index: 1;
  position: absolute;
  top: 48px;
  right: 0;
  width: 248px;
  margin: 0;
  padding: 24px 16px;
  border-radius: 10px;
  background-color: #fffbf0;
  box-shadow: 0 0 16px rgba(0, 0, 0, .15);
}

.vip-ds_show {
  display: block;
}

.vip-ds--item {
  display: flex;
  color: #616161;
  font-size: 14px;
  line-height: 18px;
}

.vip-ds--item:not(:last-child) {
  margin: 0 0 18px;
}

.vip-ds--item::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid rgba(68, 213, 135, .3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%2344D587' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.vip-ds--item a {
  color: #e51e25;
  font-weight: 700;
  text-decoration: none;
}

.vip-ds--item a:hover {
  color: #b9253b;
}

.vip-ds--item strong {
  color: #202020;
}

.dd-signal-wrap {
  position: relative;
}

.dd-signal-wrap_mob {
  width: 100%;
  margin: 16px 0 0;
}

@media screen and (min-width: 40em) {
  .dd-signal-wrap_mob {
    width: initial;
    margin: 0;
  }
}

.dd-signal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.dd-signal-btn:hover {
  --i-color1: #b9253b;
  color: #b9253b;
}

.dd-signal-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.dd-signal {
  display: none;
  z-index: 1;
  position: absolute;
  top: 32px;
  right: 50%;
  width: 248px;
  margin: 0;
  padding: 24px 16px;
  transform: translateX(50%);
  border-radius: 10px;
  background-color: #fffbf0;
  box-shadow: 0 0 16px rgba(0, 0, 0, .15);
}

.dd-signal_show {
  display: block;
}

.dd-signal--item {
  display: flex;
  color: #616161;
  font-size: 14px;
  line-height: 18px;
}

.dd-signal--item:not(:last-child) {
  margin: 0 0 18px;
}

.dd-signal--item::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid rgba(68, 213, 135, .3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%2344D587' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.dd-signal--item a {
  color: #e51e25;
  font-weight: 700;
  text-decoration: none;
}

.dd-signal--item a:hover {
  color: #b9253b;
}

.widget-hof-wrap {
  --w-hof-heading-color: #333;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.content_theme .widget-hof-wrap {
  --w-hof-heading-color: var(--text-5-color, #333);
}

@media screen and (min-width: 64em) {
  .widget-hof-wrap {
    max-width: 1276px;
    padding: 0 15px 65px;
  }
}

.widget-hof {
  width: 100%;
  padding: 0 15px;
}

@media screen and (min-width: 48em) {
  .widget-hof {
    padding: 0;
  }
}

.widget-hof--grid {
  grid-gap: 38px 0;
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
  justify-items: center;
  width: 100%;
  max-width: 824px;
}

@media screen and (min-width: 64em) {
  .widget-hof--grid {
    grid-gap: 0 20px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1246px;
  }
}

.widget-hof--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 19px;
}

.widget-hof--icon {
  width: 44px;
  height: 28px;
  margin: 0 10px 0 0;
}

[theme='dark'] .widget-hof--icon {
  --i-color1: #9e9e9e;
}

.widget-hof--link {
  position: relative;
  color: var(--w-hof-heading-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .widget-hof--link {
    font-size: 18px;
  }
}

.hof-player1 {
  --player-flag: #390c3d;
}

.hof-player2 {
  --player-flag: #1c2035;
}

.hof-player3 {
  --player-flag: #082718;
}

.widget-hof--item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 106px;
  padding: 0 15px 0 18px;
  background-color: var(--player-flag, #ccc);
  background-image: url(/nimg/widget-hof-left-crown.svg);
  background-position: -12px 48px;
  background-repeat: no-repeat;
  background-size: 131px;
}

.widget-hof--avatar {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
  width: 140px;
  margin: -28px 0;
}

.widget-hof--name {
  margin: 0 20px 0 0;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: right;
  text-transform: uppercase;
}

.widget-hof--name::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.r-view {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 8px;
}

@media screen and (min-width: 48em) {
  .r-view {
    flex-direction: row;
    margin: 0 0 30px;
  }
}

.r-view--table {
  margin: 24px 0;
  overflow-x: auto;
}

@media screen and (min-width: 48em) {
  .r-view-wrap {
    flex-shrink: 0;
    width: 289px;
    margin: 0 30px 0 0;
  }
}

.r-view--index {
  width: 100%;
  margin: 0 0 24px;
  padding: 24px 24px 16px;
  border-radius: 10px;
  background-color: #eef0f5;
}

@media screen and (min-width: 48em) {
  .r-view--index {
    position: sticky;
    top: 32px;
    margin: 0;
    padding: 32px 32px 10px;
  }
}

.r-view--index h2 {
  margin: 0 0 10px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.r-view--intro {
  margin: 0;
  list-style: none;
}

.r-view--intro li {
  margin: 0;
  padding: 8px 0;
}

@media screen and (min-width: 48em) {
  .r-view--intro li {
    padding: 16px 0;
  }
}

.r-view--intro li:not(:last-child) {
  border-bottom: 1px solid #dfe1e4;
}

.r-view--intro a {
  color: #a8a8a9;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.r-view--intro a:hover {
  color: #e51e25;
}

.r-view--content {
  width: 100%;
  min-width: 0;
  padding-top: 38px;
  overflow-x: hidden;
}

@media screen and (min-width: 48em) {
  .r-view--content {
    padding-top: 26px;
  }
}

@media screen and (min-width: 64em) {
  .r-view--content {
    max-width: 670px;
    padding-top: 35px;
  }
}

.r-view--content h1,
.r-view--content h2 {
  margin: 0 0 11px;
  color: var(--text-2-color, #1a1d34);
  font-size: 20px;
  line-height: 23px;
}

@media screen and (min-width: 48em) {
  .r-view--content h1,
.r-view--content h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 35px;
  }
}

.r-view--content h3 {
  margin: 24px 0 16px;
  color: var(--text-2-color, #1a1d34);
  font-size: 18px;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .r-view--content h3 {
    font-size: 20px;
    line-height: 23px;
  }
}

.r-view--content p {
  margin: 0 0 24px;
  color: var(--text-3-color, #000);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .r-view--content p {
    font-size: 15px;
  }
}

.r-view--content a {
  color: var(--room2-d-links-color, #6b82dc);
}

.r-view--content ul {
  margin: 24px 0;
  list-style-position: inside;
  list-style-type: disc;
}

.r-view--content ul li {
  color: var(--text-3-color, #1a1d34);
  font-size: 15px;
  line-height: 24px;
}

.r-view--content ol {
  margin: 24px 0;
  list-style-position: inside;
}

.r-view--content ol li {
  color: var(--text-3-color, #1a1d34);
  font-size: 15px;
  line-height: 24px;
}

.r-view--content figcaption {
  color: var(--text-5-color, #1a1d34);
  font-size: 14px;
  line-height: 21px;
}

.r-view--content img {
  margin: 8px 0 20px;
  border-radius: 10px;
}

.r-view--content--table {
  margin: 20px 0;
  overflow-x: auto;
}

.r-view--content table {
  width: auto;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 0;
  border-collapse: collapse;
  background-color: transparent;
  table-layout: auto;
}

.r-view--content th {
  padding: 5px 10px;
  border: 1px solid #e0e0e0;
  color: var(--text-1-color, #1a1d34);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.r-view--content td {
  padding: 5px 10px;
  border: 1px solid #e0e0e0;
  color: var(--text-2-color, #1a1d34);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.r-view--content .bbc-alt th {
  border-bottom-color: #9e9e9e;
}

.r-view--content .bbc-alt td {
  border-bottom-color: #9e9e9e;
}

.room-faq {
  --rf-bg-color: #fff;
  --rf-border-color: #ebedee;
  --rf-active-bg-color: #eef0f5;
  --rf-head-color: #000;
  --rf-link-color: #000;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
}

:root[theme='dark'] .content_theme .room-faq {
  --rf-bg-color: #282828;
  --rf-border-color: transparent;
  --rf-active-bg-color: #212121;
  --rf-head-color: #fff;
  --rf-color: #fff;
}

.room-faq h2 {
  margin: 0 0 18px;
  color: var(--rf-head-color);
  font-size: 20px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .room-faq h2 {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 32px;
  }
}

.room-faq-section {
  border: 1px solid var(--rf-border-color);
  border-radius: 10px;
  background-color: var(--rf-bg-color);
}

.room-faq-section:not(:last-child) {
  margin: 0 0 16px;
}

.room-faq-section a {
  color: var(--rf-color);
}

.room-faq-button {
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 24px 12px 56px;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .room-faq-button {
    padding: 12px 32px 12px 56px;
  }
}

.room-faq-button::before {
  position: absolute;
  top: 8px;
  left: 8px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #ebedee;
  border-radius: 10px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23C4C4C4' d='M7 0h2v16H7z' /%3E%3Cpath fill='%23C4C4C4' d='M16 7v2H0V7z' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.room-faq-button.ui-state-active {
  border-radius: 10px 10px 0 0;
  background-color: var(--rf-active-bg-color);
}

.room-faq-button.ui-state-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 2'%3E%3Cpath fill='%23C4C4C4' d='M16 0v2H0V0z' /%3E%3C/svg%3E");
}

.room-faq-item {
  display: none;
  padding: 12px 24px;
}

@media screen and (min-width: 48em) {
  .room-faq-item {
    padding: 14px 32px 17px;
  }
}

.room-faq-item p {
  margin: 0;
  color: var(--rf-color);
  font-size: 14px;
  line-height: 24px;
}

.room-faq-item p a {
  color: #6b82dc;
  text-decoration: underline;
}

.room-faq-item ol {
  margin: 20px 0;
  list-style-position: inside;
  list-style-type: disc;
}

.room-faq-item ol li {
  color: var(--rf-color);
  font-size: 14px;
  line-height: 24px;
}

.room-feedback {
  width: 100%;
}

.room-feedback--top {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 24px;
  padding: 24px;
  border: 1px solid var(--line-2-color, #dfe1e4);
  border-radius: 10px;
}

@media screen and (min-width: 48em) {
  .room-feedback--top {
    margin: 0 0 32px;
    padding: 32px 32px 16px;
  }
}

.room-feedback--signup {
  padding-bottom: 8px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .room-feedback--signup {
    padding: 0 0 16px;
  }
}

.room-feedback--signup a {
  color: var(--text-1-color, #000);
  font-weight: 700;
  text-decoration: underline;
}

.room-feedback-content {
  display: flex;
  align-items: flex-start;
  margin: 0 0 8px;
}

.room-feedback-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 6px 0 0;
  border-radius: 10px;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .room-feedback-avatar {
    width: 56px;
    height: 56px;
    margin: 0 14px 0 0;
  }
}

.room-feedback-avatar img {
  border-radius: 10px;
}

.room-feedback--field {
  width: 100%;
  height: 71px;
  margin: 0;
  padding: 4px 10px;
  border: 0;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 21px;
  resize: vertical;
}

@media screen and (min-width: 48em) {
  .room-feedback--field {
    height: 80px;
    font-size: 16px;
  }
}

.room-feedback--field::-moz-placeholder {
  color: #ababa9;
  font-size: 14px;
}

.room-feedback--field::placeholder {
  color: #ababa9;
  font-size: 14px;
}

@media screen and (min-width: 48em) {
  .room-feedback--field::-moz-placeholder {
    font-size: 16px;
  }
  .room-feedback--field::placeholder {
    font-size: 16px;
  }
}

.room-feedback-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-2-color, #ebedee);
}

@media screen and (min-width: 48em) {
  .room-feedback-action {
    flex-direction: row;
    align-items: center;
  }
}

.room-feedback--meta {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .room-feedback--meta {
    margin: 0;
  }
}

.room-feedback--note {
  margin: 0 19px 0 0;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

.room-feedback--send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 160px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .room-feedback--send {
    margin: 0 0 0 auto;
  }
}

.room-feedback--send:hover {
  background-color: #b9253b;
}

.room-feedback--send.disabled {
  --i-color1: #a8a8a9;
  background-color: #dfe1e4;
  color: #a8a8a9;
  pointer-events: none;
}

.room-feedback--send svg {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.room-feedback--bottom {
  padding: 32px 0 0;
  border-top: 1px solid var(--line-1-color, #ebedee);
}

.room-feedback--subheading {
  margin: 0 0 20px;
  color: var(--text-3-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.rr-feedback {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  padding: 24px;
  border: 1px solid var(--line-2-color, #ebedee);
  border-radius: 10px;
}

@media screen and (min-width: 48em) {
  .rr-feedback {
    padding: 32px;
  }
}

.rr-feedback--wrap {
  display: flex;
}

.rr-feedback--avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin: 0 16px 0 0;
  border-radius: 10px;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .rr-feedback--avatar {
    margin: 0 24px 0 0;
  }
}

.rr-feedback--avatar img {
  border-radius: 10px;
}

.rr-feedback--content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rr-feedback--header {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}

.rr-feedback--name {
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.rr-feedback--subheader {
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px;
}

.rr-score {
  position: relative;
  width: 92px;
  height: 16px;
  overflow: hidden;
  background-image: url(/nimg/gray19-star2416.svg);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 19px;
}

.rr-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: url(/nimg/yellow19-star2416.svg);
  background-repeat: repeat-x;
  background-size: 19px;
}

[data-rating='1'] .rr-value {
  width: 20%;
}

[data-rating='2'] .rr-value {
  width: 40%;
}

[data-rating='3'] .rr-value {
  width: 60%;
}

[data-rating='4'] .rr-value {
  width: 80%;
}

[data-rating='5'] .rr-value {
  width: 100%;
}

.rr-rate {
  min-height: 16px;
  margin: 0 0 0 16px;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 16px;
}

.rr-date {
  display: none;
  margin: 0 0 0 auto;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .rr-date {
    display: flex;
  }
}

.rr-feedback--text {
  color: var(--text-2-color, #000);
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .rr-feedback--text {
    padding: 0 0 0 80px;
    font-size: 16px;
  }
}

.rr-feedback--translate {
  padding: 24px 0 0;
  color: #a8a8a9;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .rr-feedback--translate {
    padding: 24px 0 0 80px;
    font-size: 16px;
  }
}

:root[theme='dark'] .content_theme .rr-feedback--translate {
  color: #757575;
}

.rr-feedback--admin {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 24px;
  padding: 24px 0 0;
}

.rr-feedback--show {
  color: #1e854e;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.rr-feedback--remove {
  margin: 0 0 0 16px;
  color: #b9253b;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.room-feedback--toggle {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
}

.room-feedback--toggle_aggregate {
  flex-direction: column-reverse;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .room-feedback--toggle_aggregate {
    flex-direction: row;
    justify-content: space-between;
  }
}

.feedback-cell {
  display: flex;
}

.room-feedback--more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 192px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  background-color: transparent;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.agg-score {
  position: relative;
  width: 92px;
  height: 16px;
  overflow: hidden;
  background-image: url(/nimg/gray19-star2416.svg);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 19px;
}

.agg-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: url(/nimg/yellow19-star2416.svg);
  background-repeat: repeat-x;
  background-size: 19px;
}

[data-rating='1'] .agg-value {
  width: 20%;
}

[data-rating='2'] .agg-value {
  width: 40%;
}

[data-rating='3'] .agg-value {
  width: 60%;
}

[data-rating='4'] .agg-value {
  width: 80%;
}

[data-rating='5'] .agg-value {
  width: 100%;
}

.feedback-aggregate {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .feedback-aggregate {
    margin: 0;
  }
}

.feedback-aggregate--counter {
  margin: 0 8px 0 0;
  color: var(--text-2-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 48em) {
  .feedback-aggregate--counter {
    font-size: 18px;
  }
}

.feedback-aggregate--reviews {
  margin: 0 0 0 16px;
  color: #828282;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 48em) {
  .feedback-aggregate--reviews {
    font-size: 18px;
  }
}

.feedback-aggregate--reviews strong {
  color: var(--text-2-color, #000);
  font-weight: 700;
}

.faq-wrap {
  width: 100%;
  max-width: 1094px;
  padding: 30px 15px;
  background-color: #f7f7f7;
}

@media screen and (min-width: 48em) {
  .faq-wrap {
    padding: 50px 40px;
  }
}

.faq-wrap h2 {
  margin: 0 0 10px;
  padding: 0 0 0 25px;
  color: #666;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .faq-wrap h2 {
    margin: 0 0 19px;
    padding: 0 0 0 38px;
    font-size: 24px;
  }
}

.faq-section {
  margin: 0 0 38px;
}

@media screen and (min-width: 48em) {
  .faq-section {
    margin: 0 0 68px;
  }
}

.faq-button {
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 5px 12px 25px;
  border-bottom: 1px solid #e0e0e0;
  outline: none;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .faq-button {
    padding: 14px 15px 14px 38px;
    font-size: 18px;
  }
}

.faq-button::before {
  position: absolute;
  top: 18px;
  left: 5px;
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  background-image: url(/nimg/faq-dropdown.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  content: '';
}

@media screen and (min-width: 48em) {
  .faq-button::before {
    top: 22px;
    left: 10px;
  }
}

.faq-button.ui-state-active {
  border-color: transparent;
}

.faq-button.ui-state-active::before {
  transform: rotate(180deg);
}

.faq-item {
  display: none;
  padding: 10px 5px;
  border-bottom: 1px solid #e0e0e0;
}

@media screen and (min-width: 48em) {
  .faq-item {
    padding: 20px 15px 10px 38px;
  }
}

.faq-item p {
  margin: 0 0 24px;
  color: #333;
  font-size: 14px;
  line-height: 1.75;
}

.faq-item a {
  text-decoration: underline;
}

.artgrid {
  --art-tour-color: var(--text-2-color, #000);
  --art-border-color: var(--line-1-color, #e0e0e0);
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}

.artgrid--item {
  grid-column-gap: 5px;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 70px 90px;
  padding: 9px 0;
  border-bottom: 1px solid var(--art-border-color);
}

@media screen and (min-width: 48em) {
  .artgrid--item {
    grid-template-columns: 90px minmax(100px, 1fr) 70px 100px;
    padding: 12px 0;
  }
}

.artgrid--item:last-child {
  border-color: transparent;
}

.artgrid--head {
  color: #757575;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.artgrid--head_wide {
  display: none;
}

@media screen and (min-width: 48em) {
  .artgrid--head_wide {
    display: block;
  }
}

.artgrid--date {
  display: grid;
  color: #757575;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .artgrid--date {
    grid-row-gap: 5px;
    font-size: 16px;
  }
}

.artgrid--day {
  color: #ba9d6e;
}

.artgrid--offer {
  display: grid;
  grid-column: span 3;
}

@media screen and (min-width: 48em) {
  .artgrid--offer {
    grid-row-gap: 5px;
    grid-column: span 1;
  }
}

.artgrid--tournament {
  color: var(--art-tour-color);
  font-family: "Noto Serif", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .artgrid--tournament {
    font-size: 17px;
  }
}

.artgrid--gtd {
  color: #757575;
  font-family: "Noto Serif", serif;
  font-size: 15px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .artgrid--gtd {
    font-size: 17px;
  }
}

.artgrid--format {
  grid-column: 2;
  grid-row: 1;
  color: var(--art-tour-color);
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .artgrid--format {
    grid-column: 3;
    font-size: 16px;
  }
}

.artgrid--stack {
  grid-column: 3;
  grid-row: 1;
  color: #212121;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

@media screen and (min-width: 48em) {
  .artgrid--stack {
    grid-column: 4;
    font-size: 16px;
  }
}

.teamgrid {
  --tmg-border-color: var(--line-1-color, #e0e0e0);
  --tmg-score-color: var(--text-2-color, #000);
  --tmg-place-color: var(--text-2-color, #000);
  --tmg-name-color: var(--text-2-color, #000);
  --tmg-button-bg-color: var(--layer-4-color, #fafafa);
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}

.teamgrid--item {
  grid-column-gap: 5px;
  display: grid;
  grid-template-columns: 25px minmax(100px, 1fr) 50px;
  padding: 9px 0;
  border-bottom: 1px solid var(--tmg-border-color);
}

@media screen and (min-width: 48em) {
  .teamgrid--item {
    grid-template-columns: 40px minmax(100px, 1fr) 100px;
    padding: 12px 10px;
  }
}

.teamgrid--item:last-child {
  border-color: transparent;
}

.teamgrid--head {
  color: #757575;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.teamgrid--head_right {
  text-align: right;
}

.teamgrid--place {
  color: var(--tmg-place-color);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .teamgrid--place {
    font-size: 16px;
  }
}

.teamgrid--place.top {
  color: #a40000;
  font-weight: 700;
}

.teamgrid--offer {
  display: grid;
}

@media screen and (min-width: 48em) {
  .teamgrid--offer {
    grid-row-gap: 5px;
  }
}

.teamgrid--offer .teamgrid--name {
  color: var(--tmg-name-color);
  font-weight: 400;
  text-decoration: none;
}

.teamgrid--name {
  display: flex;
  color: var(--tmg-name-color);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .teamgrid--name {
    font-size: 16px;
  }
}

.teamgrid--name.top {
  color: #a40000;
  font-weight: 700;
}

.teamgrid--button {
  position: relative;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  margin: 0 10px 0 0;
  border-radius: 5px;
  background-color: var(--tmg-button-bg-color);
}

.teamgrid--button::before {
  position: absolute;
  top: 6px;
  left: 11px;
  width: 1px;
  height: 11px;
  background-color: #bdbdbd;
  content: '';
}

.teamgrid--button::after {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 11px;
  height: 1px;
  background-color: #bdbdbd;
  content: '';
}

.active .teamgrid--button::before {
  display: none;
}

.teamgrid--score {
  color: var(--tmg-score-color);
  font-size: 14px;
  line-height: 24px;
  text-align: right;
}

@media screen and (min-width: 48em) {
  .teamgrid--score {
    font-size: 16px;
  }
}

.teamgrid--score.top {
  color: #a40000;
  font-weight: 700;
}

.hidgrid {
  display: flex;
  flex-direction: column;
}

.hidgrid--item {
  grid-column-gap: 5px;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 45px;
}

@media screen and (min-width: 48em) {
  .hidgrid--item {
    grid-template-columns: minmax(100px, 1fr) 100px;
  }
}

.hidgrid--item_head {
  margin: 0 0 5px;
  padding: 5px 0 0;
  border-bottom: 1px solid var(--tmg-border-color);
}

.hidgrid--head {
  color: #757575;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.hidgrid--head_right {
  text-align: right;
}

.hidgrid--name {
  display: flex;
  color: var(--tmg-name-color);
  font-size: 14px;
  line-height: 24px;
}

.hidgrid--score {
  color: var(--tmg-score-color);
  font-size: 14px;
  line-height: 24px;
  text-align: right;
}

.opengrid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 30px;
}

@media screen and (min-width: 48em) {
  .opengrid {
    grid-template-columns: 1fr 1fr;
  }
}

.opengrid--item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px 15px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
}

.opengrid--item a {
  text-decoration: none;
}

.opengrid--teamhead {
  padding: 0 5px;
  background-color: #909090;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.tmform-wrap {
  display: flex;
  width: 100%;
  padding: 5px 0 9px;
}

.tmform-wrap_line {
  padding: 0;
}

.tmform-button {
  border-bottom: 1px solid #757575;
  font-size: 14px;
  line-height: 20px;
}

.tmform-button_pull {
  margin: auto 0 0;
}

.tmform-form {
  width: 100%;
}

.tmform-form_pad {
  padding: 10px 0 0;
}

.tmform-form_reset {
  padding: 0;
}

.tmform-form_reset a {
  text-decoration: none;
}

.tmform-row {
  display: flex;
  align-items: flex-start;
  margin: 0 0 10px;
}

.tmform-default {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
}

.tmform-label {
  margin: 0 0 2px;
  color: #616161;
  font-size: 14px;
  line-height: 20px;
}

.tmform-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  align-self: start;
  width: 100%;
  max-width: 420px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #202020;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.tmform-field::-moz-placeholder {
  color: #757575;
}

.tmform-field::placeholder {
  color: #757575;
}

.tmform-save {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 34px;
  margin: 5px 0;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.tmform-cancel {
  height: 34px;
  margin: 5px 0;
  padding: 0 20px;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  background-color: #efefef;
  color: #424242;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.tmform-cancel_right {
  margin: 5px 0 5px 15px;
}

.tmform-list {
  margin: 0;
  padding: 5px 0;
  list-style: none;
}

.tmform-member {
  color: #424242;
  font-size: 14px;
  line-height: 20px;
}

.article-fantasy {
  --fnt-bg-color: var(--layer-4-color, #fafafa);
  --fnt-border-color: var(--line-1-color, #e0e0e0);
  --fnt-card-color: var(--text-2-color, #616161);
  --fnt-label-color: var(--text-3-color, #757575);
  --fnt-check-border-color: var(--line-2-color, #ccc);
  --fnt-check-bg-color: var(--layer-2-color, #fff);
  margin: 35px 0 50px;
}

@media screen and (min-width: 64em) {
  .article-fantasy {
    margin: 35px 0 70px;
  }
}

.article-fantasy--heading {
  margin: 0 0 10px;
  color: var(--article-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .article-fantasy--heading {
    margin: 0 0 13px;
    font-size: 36px;
    line-height: 44px;
  }
}

.article-fantasy--note {
  margin: 0 0 14px;
  color: var(--article-color);
  font-family: "Noto Serif", serif;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .article-fantasy--note {
    font-size: 17px;
    line-height: 28px;
  }
}

.article-fantasy--form {
  width: 100%;
  margin: 25px 0 0;
}

@media screen and (min-width: 64em) {
  .article-fantasy--form {
    margin: 36px 0 0;
  }
}

.fantasy-card--head {
  width: 100%;
  padding: 16px 15px 12px;
  border-bottom: 1px solid var(--fnt-border-color);
}

.fantasy-card--heading {
  color: var(--fnt-card-color);
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.fantasy-team--heading {
  color: var(--fnt-card-color);
  font-family: "Noto Serif", serif;
  font-size: 16px;
  line-height: 24px;
}

.fantasy-team--subheading {
  display: block;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 21px;
}

.fantasy-card--main {
  width: 100%;
  padding: 28px 15px;
  border-radius: 5px;
  background-color: var(--fnt-bg-color);
}

.fantasy-card--list {
  grid-gap: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .fantasy-card--list {
    grid-template-columns: repeat(4, minmax(75px, 1fr));
  }
}

@media screen and (min-width: 64em) {
  .fantasy-card--list {
    grid-template-columns: repeat(6, minmax(145px, 1fr));
  }
}

.article-fantasy .fantasy-card--list {
  margin: 0;
}

.fantasy-card--item {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .fantasy-card--item:nth-last-child(1) {
    grid-column: 3 / span 2;
  }
}

.article-fantasy .fantasy-card--item {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.fantasy-card--item.disabled {
  opacity: .5;
}

[theme='dark'] .fantasy-card--item.disabled {
  opacity: .3;
}

.fantasy-card--label {
  display: flex;
  position: relative;
  color: var(--fnt-label-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.fantasy-card--label .a-hall {
  margin: 0 4px 0 0;
}

.fantasy-checkbox {
  position: absolute;
  opacity: 0;
}

.fantasy-checkbox:checked ~ .fantasy-checkbox--mark::after {
  display: block;
}

.fantasy-checkbox--mark {
  position: relative;
  top: 2px;
  left: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid var(--fnt-check-border-color);
  background-color: var(--fnt-check-bg-color);
}

.fantasy-checkbox--mark::after {
  display: none;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #e51e25;
  content: '';
}

.article-fantasy--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 36px 0 0;
}

.article-fantasy--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  height: 64px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.article-fantasy--alert {
  padding: 12px 0 0;
  color: #e51e25;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.fantasy-login {
  margin: 35px 0 50px;
}

@media screen and (min-width: 64em) {
  .fantasy-login {
    margin: 35px 0 70px;
  }
}

.fantasy-fav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 260px;
}

.fantasy-fav--label {
  margin: 0 0 8px;
  color: var(--text-2-color, #616161);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.fantasy-fav--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 17px 37px 17px 17px;
  border: 1px solid var(--control-1-border-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-2-color, #fff);
  background-image: url(/nimg/select-arrow-24.svg);
  background-origin: content-box;
  background-position: right -24px center;
  background-repeat: no-repeat;
  background-size: 24px;
  color: var(--control-1-color, #000);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

[theme='dark'] .fantasy-fav--select {
  background-image: url(/nimg/select-arrow-light-24.svg);
}

.widget-authors {
  --wau-name-color: var(--text-2-color, #000);
  --wau-color: var(--text-5-color, #808080);
  gap: 16px 55px;
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0 0;
}

.article-quiz .widget-authors {
  justify-content: center;
}

.widget-authors_top {
  display: none;
}

@media screen and (min-width: 64em) {
  .widget-authors_top {
    display: flex;
  }
}

.widget-authors_bottom {
  display: flex;
}

@media screen and (min-width: 64em) {
  .widget-authors_bottom {
    display: none;
  }
}

.widget-authors--item {
  gap: 0 10px;
  display: inline-flex;
  flex-shrink: 0;
}

.article--inner .article--lead .widget-authors--item {
  text-decoration: none;
}

.article--inner .article-lead .widget-authors--item {
  text-decoration: none;
}

.widget-authors--avatar {
  display: flex;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  overflow: hidden;
}

.widget-authors--avatar img {
  border-radius: 50%;
}

.widget-authors--data {
  display: flex;
  flex-direction: column;
}

.widget-authors--name {
  margin: 0 0 3px;
  color: var(--wau-name-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: left;
}

.widget-authors--tag {
  color: var(--wau-color);
  font-size: 14px;
  line-height: 16px;
  text-align: left;
}

.table-contents {
  --tc-color: var(--text-2-color, #000);
  display: flex;
  width: 100%;
  padding: 8px 0 32px;
}

@media screen and (min-width: 64em) {
  .table-contents {
    padding: 28px 0 54px;
  }
}

.table-contents--grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
}

.table-contents--heading {
  margin: 0 0 16px;
  color: var(--tc-color);
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
}

.table-contents--list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  counter-reset: section;
}

@media screen and (min-width: 40em) {
  .table-contents--list {
    gap: 24px;
    display: block;
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-width: 256px;
    column-width: 256px;
  }
}

.table-contents--list li {
  -webkit-column-break-inside: avoid;
  display: flex;
  margin: 0 0 10px;
  page-break-inside: avoid;
}

.table-contents--link {
  color: var(--tc-color);
  font-size: 16px;
  line-height: 21px;
}

.table-contents--link::before {
  color: #e51e25;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  content: counter(section) ". ";
  counter-increment: section;
}

.spt-restricted {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1226px;
  margin: 0 auto 40px;
  padding: 32px 24px;
  border: 1px solid var(--line-2-color, #e0e0e0);
  border-radius: 10px;
  background-color: var(--layer-4-color, #eef0f5);
}

@media screen and (min-width: 64em) {
  .spt-restricted {
    padding: 40px 15px 44px;
  }
}

.spt-restricted--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 730px;
}

.spt-restricted--top {
  display: flex;
  flex-grow: 1;
  align-items: center;
  margin: 0 0 16px;
}

.spt-restricted--logo {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  width: 60px;
  height: 60px;
  margin: 0 16px 0 0;
}

.spt-restricted--heading {
  width: 100%;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.spt-restricted--text {
  padding: 16px 0 0;
  border-top: 1px dashed var(--line-2-color, #dfe1e4);
}

.spt-restricted--text p {
  margin: 0;
  color: var(--text-1-color, #000);
  font-size: 18px;
  line-height: 24px;
}

.support-feedback {
  width: 100%;
  max-width: 1246px;
}

.support-feedback--top {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 12px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-4-color, #f4f4f4);
}

@media screen and (min-width: 48em) {
  .support-feedback--top {
    margin: 0 0 16px;
    padding: 28px 24px;
  }
}

.support-feedback-content {
  gap: 20px 0;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .support-feedback-content {
    gap: 0 32px;
    flex-direction: row;
  }
}

.support-feedback--user {
  gap: 8px;
  display: flex;
}

@media screen and (min-width: 48em) {
  .support-feedback--user {
    flex-direction: column;
    flex-shrink: 0;
    width: 132px;
  }
}

.support-feedback-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.support-feedback-avatar img {
  border-radius: 8px;
}

.support-feedback--field {
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 5px;
  border: 0;
  border-radius: 10px;
  background-color: var(--layer-1-color, #fff);
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 17px;
  line-height: 24px;
  resize: vertical;
}

@media screen and (min-width: 48em) {
  .support-feedback--field {
    padding: 15px 17px;
  }
}

.support-feedback--field::-moz-placeholder {
  color: var(--text-6-color, #bdbdbd);
  font-family: "PT Serif", serif;
  font-size: 17px;
  line-height: 24px;
}

.support-feedback--field::placeholder {
  color: var(--text-6-color, #bdbdbd);
  font-family: "PT Serif", serif;
  font-size: 17px;
  line-height: 24px;
}

.support-feedback-action {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.support-feedback--meta {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
}

.support-feedback--note {
  color: #828282;
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
}

.support-feedback--send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px;
  border-radius: 5px;
  background-color: var(--layer-1-color, #202020);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .support-feedback--send {
    max-width: 168px;
  }
}

.support-feedback--send.disabled {
  background-color: #dfe1e4;
  color: #a8a8a9;
  pointer-events: none;
}

.rater {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  width: 0;
  background-image: url(/nimg/gray19-star2416.svg);
  background-position: 0 0;
  background-repeat: repeat-x;
  cursor: pointer;
}

.rater--value {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/nimg/yellow19-star2416.svg);
  background-repeat: repeat-x;
}

.rater_disabled {
  cursor: default;
}

.rater_busy {
  cursor: wait;
}

.sp-feedback {
  display: flex;
  flex-direction: column;
  margin: 0 0 12px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: inset 0 0 0 1px var(--line-1-color, #e0e0e0);
}

@media screen and (min-width: 48em) {
  .sp-feedback {
    margin: 0 0 16px;
    padding: 24px;
  }
}

.sp-feedback--grid {
  gap: 14px 0;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .sp-feedback--grid {
    gap: 0 32px;
    flex-direction: row;
  }
}

.sp-feedback--wrap {
  gap: 8px;
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 48em) {
  .sp-feedback--wrap {
    flex-direction: column;
    flex-shrink: 0;
    width: 132px;
  }
}

.sp-feedback--avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sp-feedback--avatar img {
  border-radius: 8px;
}

.sp-feedback--content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.sp-feedback--name {
  color: var(--text-2-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.sp-feedback--date {
  display: flex;
}

.sp-date {
  display: flex;
  color: #828282;
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
}

.sp-date_mobile {
  display: flex;
}

@media screen and (min-width: 48em) {
  .sp-date_mobile {
    display: none;
  }
}

.sp-rate-wrap {
  display: none;
}

@media screen and (min-width: 48em) {
  .sp-rate-wrap {
    display: flex;
    margin: 0 0 12px;
  }
}

.sp-rate-wrap_mobile {
  display: flex;
}

@media screen and (min-width: 48em) {
  .sp-rate-wrap_mobile {
    display: none;
  }
}

.sp-rate {
  min-height: 16px;
  margin: 0 8px 0 0;
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.sp-score {
  position: relative;
  width: 92px;
  height: 16px;
  overflow: hidden;
  background-image: url(/nimg/gray19-star2416.svg);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 19px;
}

.sp-feedback .sp-score {
  transform: translateY(-1px);
}

.sp-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: url(/nimg/yellow19-star2416.svg);
  background-repeat: repeat-x;
  background-size: 19px;
}

[data-rating='1'] .sp-value {
  width: 20%;
}

[data-rating='2'] .sp-value {
  width: 40%;
}

[data-rating='3'] .sp-value {
  width: 60%;
}

[data-rating='4'] .sp-value {
  width: 80%;
}

[data-rating='5'] .sp-value {
  width: 100%;
}

.sp-feedback--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sp-feedback--text {
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 17px;
  line-height: 24px;
}

.sp-feedback--translate {
  padding: 12px 0 0;
  color: var(--text-6-color, #a8a8a9);
  font-size: 14px;
  line-height: 24px;
}

.sp-feedback--admin {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 24px;
  padding: 12px 0 0;
}

.sp-feedback--show {
  color: #1e854e;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.sp-feedback--remove {
  margin: 0 0 0 16px;
  color: #b9253b;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.support-feedback--toggle {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.support-feedback--toggle_aggregate {
  flex-direction: column-reverse;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .support-feedback--toggle_aggregate {
    flex-direction: row;
    justify-content: space-between;
  }
}

.support-feedback--wrap {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.support-feedback--wrap::after,
.support-feedback--wrap::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-1-color, #e7e7e7);
  content: '';
}

.support-feedback--more {
  margin: 0 12px;
  padding: 11px 24px;
  border: 1px solid var(--line-2-color, #202020);
  border-radius: 20px;
  color: var(--text-2-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .support-feedback--more {
    margin: 0 16px;
  }
}

.sp-bar {
  display: none;
  align-items: flex-start;
  width: 100%;
  height: 4px;
  margin: 0 0 24px;
  background-color: var(--layer-4-color), #f4f4f4;
}

.sp-bar--container {
  height: 4px;
  background-color: var(--line-2-color), #aaa;
}

.gtplus-wrap,
.support-wrap,
.welcome-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 24px 40px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 64em) {
  .gtplus-wrap,
.support-wrap,
.welcome-wrap {
    padding: 0 15px 64px;
  }
}

.gtplus-wrap.support-wrap_blank,
.support-wrap.support-wrap_blank,
.welcome-wrap.support-wrap_blank {
  padding: 0;
  background-color: initial;
}

.support-wrap--top {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px;
}

@media screen and (min-width: 64em) {
  .support-wrap--top {
    padding: 40px;
  }
}

.support-wrap--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 15px 15px 28px;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 64em) {
  .support-wrap--bottom {
    padding: 32px 40px 44px;
  }
}

.support-head {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1246px;
  padding: 53px 0 36px;
}

@media screen and (min-width: 48em) {
  .support-head {
    padding: 76px 0 57px;
  }
}

.support-heading {
  margin: 0;
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .support-heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.support-grid {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  padding: 0 0 56px;
  border-bottom: 1px solid var(--line-1-color, #dfe1e4);
}

@media screen and (min-width: 48em) {
  .support-grid {
    gap: 30px;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    padding: 0 0 80px;
  }
}

@media screen and (min-width: 70.625em) {
  .support-grid {
    gap: 0 30px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
  }
}

.support-grid_restricted {
  max-width: 730px;
  border-bottom: 0;
}

@media screen and (min-width: 70.625em) {
  .support-grid_restricted {
    grid-template-columns: repeat(2, minmax(290px, 1fr));
  }
}

.support-item {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 26px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 48em) {
  .support-item {
    grid-column: span 2;
  }
  .support-item:nth-last-child(1) {
    grid-column: 2 / span 2;
  }
}

@media screen and (min-width: 70.625em) {
  .support-item {
    grid-column: span 1;
  }
  .support-item:nth-last-child(1) {
    grid-column: auto / span 1;
  }
}

.support-item_plus {
  border-color: #2cb56b;
}

.support-item_tech {
  border-color: #039fc1;
}

.support-grid_restricted .support-item_tech {
  display: none;
}

.support-item--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 24px;
}

.support-item--head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 28px 0 0;
}

.support-item--heading {
  margin: 0 0 16px;
  color: #e51e25;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.support-item_plus .support-item--heading {
  color: #2cb56b;
}

.support-item_tech .support-item--heading {
  color: #039fc1;
}

.support-item--flag {
  --item-color: #e51e25;
  height: 28px;
  margin: 0 0 16px;
  padding: 0 16px;
  background-color: var(--item-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .support-item--flag {
    font-size: 14px;
  }
}

.support-item_plus .support-item--flag {
  --item-color: #2cb56b;
}

.support-item_tech .support-item--flag {
  --item-color: #039fc1;
}

.op-time {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.op-time svg {
  --i-color1: var(--text-1-color, #000);
  margin: 0 8px 0 0;
}

.op-time time {
  color: var(--text-3-color, #000);
  font-size: 12px;
  line-height: 14px;
}

.op-time span {
  margin: 0 8px;
  color: #aaa;
  font-size: 12px;
  line-height: 14px;
}

.support-item--list {
  margin: 0 0 auto;
  padding: 35px 0 32px;
  border-top: 1px solid var(--line-1-color, #e3e3e3);
}

.support-item--list li {
  display: flex;
  color: var(--text-1-color, #000);
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .support-item--list li {
    line-height: 24px;
  }
}

.support-item--list li:not(:last-child) {
  margin: 0 0 12px;
}

.support-item--list li::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 16px 0 0;
  transform: translateY(2px);
  border-radius: 50%;
  background-color: var(--layer-4-color, #f4f4f4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%23ec314d' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.support-item_plus .support-item--list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%232cb56b' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
}

.support-item_tech .support-item--list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%23039fc1' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
}

.support-item--bottom {
  display: flex;
  flex-direction: column;
}

.support-item--bottom_double {
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
}

.support-btn-chat {
  --i-color1: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.support-btn-chat svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.support-btn-telegram {
  --i-color1: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.support-item_plus .support-btn-telegram {
  background-color: #2cb56b;
}

.support-item_tech .support-btn-telegram {
  background-color: #039fc1;
}

.support-btn-telegram svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.supp-contact {
  z-index: 3;
  position: relative;
  margin: 16px 0 0;
}

.supp-contact--drop {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 16px;
  border: 1px solid var(--line-1-color, #e3e3e3);
  border-radius: 10px;
  background-color: #f4f4f4;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.supp-contact--drop svg {
  --i-color1: #000;
  width: 22px;
  height: 22px;
  margin: 0 0 0 auto;
}

.supp-contact--drop_active {
  background-color: #000;
  color: #fff;
}

.supp-contact--drop_active svg {
  --i-color1: #fff;
  transform: rotate(180deg);
}

.supp-contact--options {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--layer-4-color, #fff);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.supp-contact--options_show {
  display: flex;
}

.supp-contact--link {
  display: flex;
  align-items: center;
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
}

.supp-contact--link:not(:last-child) {
  margin: 0 0 16px;
}

.supp-contact--link svg {
  --i-color1: var(--text-1-color, #000);
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.support-subhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1246px;
  padding: 0 0 24px;
}

@media screen and (min-width: 48em) {
  .support-subhead {
    justify-content: initial;
    padding: 0 0 36px;
  }
}

.gtplus-wrap .support-subhead {
  padding: 26px 0 20px;
}

@media screen and (min-width: 48em) {
  .gtplus-wrap .support-subhead {
    padding: 84px 0 33px;
  }
}

.support-subhead .feedback-aggregate {
  margin: 0;
  transform: translateY(9px);
}

@media screen and (min-width: 48em) {
  .support-subhead .feedback-aggregate {
    transform: translateY(12px);
  }
}

.support-subheading {
  margin: 0;
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

@media screen and (min-width: 48em) {
  .support-subheading {
    min-width: 188px;
    font-size: 32px;
    line-height: 42px;
  }
}

.support-note {
  display: flex;
  width: 100%;
  margin: 0 0 10px;
}

.support-note--inner {
  position: relative;
  width: 100%;
  padding: 15px 15px 15px 20px;
  border-width: 1px 1px 1px 6px;
  border-style: solid;
  border-color: #e51e25;
  background-color: var(--layer-4-color, #fff);
}

.support-note--inner a {
  color: var(--text-1-color, #000);
  font-weight: 700;
}

.support-note--inner a::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.support-note--inner a::after {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin: 0 0 0 8px;
  transform: translateY(1px);
  background-image: url(/nimg/note-link.svg);
  background-repeat: no-repeat;
  content: '';
}

.support-note--message {
  color: var(--text-2-color, #202020);
  font-family: "PT Serif", serif;
  font-size: 18px;
  line-height: 1.25;
}

.support-container {
  container-type: inline-size;
  container-name: support-wrap;
  margin: 40px 0;
}

.support-wrap--top .support-container {
  margin: 0;
}

.support-insert {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1226px;
  padding: 16px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
}

@container support-wrap (min-width: 929px) {
  .support-insert {
    padding: 24px 24px 48px;
  }
}

.support-wrap--top .support-insert {
  margin: 0 auto;
  border: 0;
}

@container support-wrap (min-width: 435px) {
  .support-wrap--top .support-insert {
    border: 1px solid #e51e25;
  }
}

@container support-wrap (min-width: 929px) {
  .support-wrap--top .support-insert {
    padding: 24px 24px 48px;
  }
}

.welcome-wrap .support-insert {
  max-width: initial;
}

.support-insert--logo {
  flex-shrink: 0;
  width: 160px;
  height: 94px;
  margin: 0 0 6px;
  background-image: url(/nimg/support-logo-24h.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 160px;
}

@container support-wrap (min-width: 723px) {
  .support-insert--logo {
    width: 287px;
    height: 169px;
    margin: 0 0 12px;
    background-size: 287px;
  }
}

.support-insert--heading {
  margin: 0 0 20px;
  color: var(--text-2-color, #000);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .65px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}

@container support-wrap (min-width: 723px) {
  .support-insert--heading {
    margin: 0;
    font-size: 18px;
    letter-spacing: .9px;
    line-height: 32px;
  }
}

.support-insert--subheading {
  margin: 0 0 20px;
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@container support-wrap (min-width: 723px) {
  .support-insert--subheading {
    margin: 0 0 24px;
    font-size: 40px;
    line-height: 1.3;
  }
}

.support-insert--subheading span {
  color: #e51e25;
}

.support-insert--mid {
  gap: 0 12px;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 0 12px;
}

@container support-wrap (min-width: 929px) {
  .support-insert--mid {
    flex-direction: row;
    justify-content: center;
    margin: 0 0 40px;
  }
}

.support-insert--mid::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 87px;
  height: 2px;
  transform: translateX(-50%);
  background-color: #333;
  content: '';
}

[theme='dark'] .support-insert--mid::after {
  background-color: #9e9e9e;
}

.support-insert--time {
  position: relative;
  padding: 0 0 0 26px;
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 24px;
}

@container support-wrap (min-width: 723px) {
  .support-insert--time {
    padding: 0 0 0 32px;
    font-size: 18px;
    line-height: 38px;
  }
}

.support-insert--time svg {
  position: absolute;
  left: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@container support-wrap (min-width: 723px) {
  .support-insert--time svg {
    width: 32px;
    height: 32px;
  }
}

[theme='dark'] .support-insert--time svg {
  --i-color1: #9e9e9e;
}

.support-insert--time span {
  display: none;
}

@media screen and (min-width: 64em) {
  .support-insert--time span {
    display: initial;
  }
}

.support-insert--inner {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}

@container support-wrap (min-width: 929px) {
  .support-insert--inner {
    gap: 0 32px;
    flex-direction: row;
    margin: 0 0 40px;
  }
}

.article-body .support-insert--inner {
  display: none;
}

.support-insert--inner .support-insert--list {
  margin: 0;
  padding: 0;
}

.support-insert--inner .support-insert--list li {
  display: flex;
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 1.5;
}

@container support-wrap (min-width: 723px) {
  .support-insert--inner .support-insert--list li {
    font-size: 18px;
  }
}

.support-insert--inner .support-insert--list li:not(:last-child) {
  margin: 0 0 8px;
}

.support-insert--inner .support-insert--list li::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 16px 0 0;
  transform: translateY(2px);
  border-radius: 50%;
  background-color: var(--layer-4-color, #f4f4f4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%23ec314d' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.support-insert--bottom {
  gap: 12px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
}

@container support-wrap (min-width: 929px) {
  .support-insert--bottom {
    gap: 0 16px;
    flex-direction: row;
    justify-content: center;
    max-width: initial;
  }
}

.support-buttons-active {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
}

@container support-wrap (min-width: 929px) {
  .support-buttons-active {
    gap: 0 16px;
    flex-direction: row;
  }
}

.support-buttons-main {
  gap: 0 8px;
  display: flex;
}

@container support-wrap (min-width: 929px) {
  .support-buttons-main {
    gap: 0 16px;
  }
}

.support-insert--link {
  gap: 0 8px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border: 1px solid #e51e25;
  border-radius: 5px;
  color: #e51e25;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

@container support-wrap (min-width: 929px) {
  .support-insert--link {
    width: auto;
  }
}

.support-insert--bottom .support-insert--link {
  color: #e51e25;
  text-decoration: none;
}

.support-insert--bottom .support-insert--link_active {
  --i-color1: #fff;
  background-color: #e51e25;
  color: #fff;
}

.support-insert--link svg {
  flex-shrink: 0;
}

.support-insert--link span {
  display: none;
}

@container support-wrap (min-width: 929px) {
  .support-insert--link span {
    display: initial;
  }
}

.qr-modal-overlay {
  display: flex;
  z-index: 1003;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: rgba(0, 0, 0, .85);
}

.qr-modal-overlay.hidden {
  display: none;
}

.qr-modal-close {
  z-index: 10;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}

.qr-modal-close::after,
.qr-modal-close::before {
  position: absolute;
  top: 0;
  left: 11px;
  width: 1px;
  height: 24px;
  background-color: #9e9e9e;
  content: '';
}

.qr-modal-close::before {
  transform: rotate(45deg);
}

.qr-modal-close::after {
  transform: rotate(-45deg);
}

.qr-modal {
  display: flex;
  z-index: 1004;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.qr-modal-open {
  padding: 4px 24px;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.support-insert--top {
  gap: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.widget-bb {
  --widget-bb-bg-color: var(--layer-3-color, #fff);
  --widget-bb-header-color: var(--text-5-color, #333);
  --widget-bb-subheader-color: var(--text-5-color, #666);
  --widget-bb-line-color: var(--line-1-color, #dbdbdb);
  --widget-bb-player-color: var(--text-4-color, #000);
  --widget-bb-link-color: var(--text-6-color, #7d7d7d);
  --widget-bb-num-color: var(--text-5-color, #909090);
  --widget-bb-icon: var(--icon-5-filter, none);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.widget-bb--headlink {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 9px;
  margin: 0 0 12px;
}

@media screen and (min-width: 64em) {
  .widget-bb--headlink {
    height: 29px;
  }
}

.widget-bb--sponsor {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  padding: 6px 15px;
  transform: translateY(2px);
  border: 1px solid #3ba56c;
  border-radius: 24px;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-3-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 0 10px rgba(82, 148, 16, .25));
}

@media screen and (min-width: 64em) {
  .widget-bb--sponsor {
    transform: translateY(22px);
  }
}

.widget-bb--sponsor svg {
  flex-shrink: 0;
}

.widget-bb--sponsor .widget-cp-logo {
  width: 26px;
  height: 26px;
  margin: 0 6px 0 8px;
}

.widget-bb--sponsor .widget-cp-text {
  width: 93px;
  height: 15px;
}

[theme='dark'] .widget-bb--sponsor .widget-cp-text {
  --i-color3: #ccc;
}

.widget-bb--head {
  display: flex;
  align-items: center;
  margin: 0 -10px 24px;
}

.widget-bb--logo {
  gap: 0 8px;
  display: flex;
  align-items: center;
}

.widget-bb--logo svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 30em) {
  .widget-bb--logo svg {
    width: 28px;
    height: 24px;
  }
}

[theme='dark'] .widget-bb--logo svg {
  --i-color1: #9e9e9e;
}

.widget-bb--date {
  display: flex;
  align-items: center;
}

.widget-bb--heading {
  color: var(--widget-bb-header-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 30em) {
  .widget-bb--heading {
    font-size: 18px;
  }
}

.widget-bb--time {
  color: var(--text-6-color, #666);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (min-width: 30em) {
  .widget-bb--time {
    font-size: 14px;
  }
}

.widget-bb--time::before {
  flex-shrink: 0;
  width: 4px;
  margin: 0 4px;
  color: var(--text-6-color, #666);
  font-size: 14px;
  font-weight: 500;
  content: '·';
}

.widget-bb--inner {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  padding: 38px 24px 16px;
  background-color: var(--widget-bb-bg-color);
}

@media screen and (min-width: 64em) {
  .widget-bb--inner {
    margin: 0 0 25px;
  }
}

.widget-bb--flag {
  --flag-color1: #3ba56c;
  --flag-color2: #236742;
  display: flex;
  position: absolute;
  top: 38px;
  right: 0;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 4px 0 5px;
  border-radius: 0 2px 0 0;
  background-color: var(--flag-color1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16px;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 30em) {
  .widget-bb--flag {
    font-size: 16px;
  }
}

@media screen and (min-width: 48em) {
  .widget-bb--flag {
    right: -12px;
  }
}

.widget-bb--flag::before {
  display: none;
  position: absolute;
  top: 26px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 8px solid var(--flag-color2);
  border-right: 12px solid transparent;
  content: '';
}

@media screen and (min-width: 48em) {
  .widget-bb--flag::before {
    display: initial;
  }
}

.widget-bb--flag::after {
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 0;
  height: 0;
  border-top: 13px solid var(--flag-color1);
  border-bottom: 13px solid var(--flag-color1);
  border-left: 4px solid transparent;
  content: '';
}

.widget-bb--item {
  width: 100%;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--widget-bb-line-color);
}

.widget-bb--item:nth-last-child(1 of .widget-bb--item) {
  margin: 0 0 18px;
}

.widget-bb--subheader {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--widget-bb-subheader-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.widget-bb-pin {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin: 0 6px 0 0;
  transform: translate(-4px, 1px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  filter: var(--widget-bb-icon);
}

.widget-bb-pin_newbie {
  background-image: url(/nimg/bb-widget-pin-newbie.svg);
}

.widget-bb-pin_regs {
  background-image: url(/nimg/bb-widget-pin-regs.svg);
}

.widget-bb-pin_locals {
  background-image: url(/nimg/bb-widget-pin-locals.svg);
}

.grid-bb {
  grid-gap: 0 10px;
  display: grid;
  grid-template-columns: 11px 1fr 40px;
  padding: 10px 0;
}

.grid-bb:nth-child(3n+2) {
  margin: 0 -10px;
  padding: 10px;
  background-image: linear-gradient(90deg, #e7e7e7 0%, #fff 100%);
}

[theme='dark'] .grid-bb:nth-child(3n+2) {
  background-image: linear-gradient(90deg, #1a1a1a 0%, var(--layer-3-color) 100%);
}

.grid-bb:nth-child(3n+2) .grid-bb--nick {
  font-size: 18px;
  font-weight: 500;
}

.grid-bb:nth-child(3n+2) .grid-bb--score {
  font-size: 18px;
}

.grid-bb:nth-child(3n+3) {
  margin: 0 -10px;
  padding: 10px;
  background-image: linear-gradient(90deg, #f3f3f3 0%, #fff 100%);
}

[theme='dark'] .grid-bb:nth-child(3n+3) {
  background-image: linear-gradient(90deg, #212121 0%, var(--layer-3-color) 100%);
}

.grid-bb--num {
  grid-column: 1;
  color: var(--widget-bb-num-color);
  font-size: 16px;
  line-height: 19px;
}

.grid-bb--nick {
  color: var(--widget-bb-player-color);
  font-size: 16px;
  line-height: 19px;
}

.grid-bb--score {
  grid-column: 3;
  color: #529410;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: right;
}

.widget-bb--page {
  color: var(--widget-bb-link-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.policy-popup {
  display: flex;
  z-index: 999;
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: center;
  width: 100%;
}

.policy-popup--inner {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80px;
  padding: 20px 28px;
  background-color: #212121;
}

@media screen and (min-width: 48em) {
  .policy-popup--inner {
    flex-direction: row;
  }
}

[theme='dark'] .policy-popup--inner {
  background-color: #fff;
}

.policy-popup--button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 14px 20px;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
}

[theme='dark'] .policy-popup--button {
  background-color: #000;
  color: #fff;
}

.policy-popup--text {
  color: #e0e0e0;
  font-family: "PT Serif", serif;
  font-size: 18px;
}

[theme='dark'] .policy-popup--text {
  color: #424242;
}

.policy-popup--link {
  color: #fff;
  text-decoration: none;
}

[theme='dark'] .policy-popup--link {
  color: #000;
}

.tip-popup {
  display: none;
}

.tooltipster-base.tooltipster-regcode {
  pointer-events: initial;
}

.tooltipster-sidetip.tooltipster-regcode .tooltipster-box {
  overflow: hidden;
  border: 1px solid var(--line-2-color, #e0e0e0);
  border-radius: 5px;
  background: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .1));
}

.tooltipster-sidetip.tooltipster-regcode .tooltipster-content {
  padding: 0;
  color: initial;
  line-height: initial;
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-bottom .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-regcode.tooltipster-top .tooltipster-arrow {
  width: 18px;
  height: 9px;
  margin-left: -8px;
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-regcode.tooltipster-right .tooltipster-arrow {
  width: 9px;
  height: 18px;
  margin-top: -9px;
  margin-left: 0;
}

.tooltipster-sidetip.tooltipster-regcode .tooltipster-arrow-background {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-bottom .tooltipster-arrow-background {
  top: 1px;
  border-bottom-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-left .tooltipster-arrow-background {
  left: -1px;
  border-left-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-right .tooltipster-arrow-background {
  left: 1px;
  border-right-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-top .tooltipster-arrow-background {
  top: -1px;
  border-top-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-regcode .tooltipster-arrow-border {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-left .tooltipster-arrow-border {
  border-left-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-right .tooltipster-arrow-border {
  border-right-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-top .tooltipster-arrow-border {
  border-top-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -9px;
}

.tooltipster-sidetip.tooltipster-regcode.tooltipster-right .tooltipster-arrow-uncropped {
  left: -9px;
}

.tooltipster-base.tooltipster-simple {
  pointer-events: initial;
}

.tooltipster-sidetip.tooltipster-simple .tooltipster-box {
  overflow: hidden;
  border: 1px solid var(--line-2-color, #e0e0e0);
  border-radius: 5px;
  background: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .1));
}

.tooltipster-sidetip.tooltipster-simple .tooltipster-content {
  max-width: 300px;
  padding: 16px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-2-color, #202020);
  font-size: 14px;
  line-height: 20px;
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-bottom .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-simple.tooltipster-top .tooltipster-arrow {
  width: 18px;
  height: 9px;
  margin-left: -8px;
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-simple.tooltipster-right .tooltipster-arrow {
  width: 9px;
  height: 18px;
  margin-top: -9px;
  margin-left: 0;
}

.tooltipster-sidetip.tooltipster-simple .tooltipster-arrow-background {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-bottom .tooltipster-arrow-background {
  top: 1px;
  border-bottom-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-left .tooltipster-arrow-background {
  left: -1px;
  border-left-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-right .tooltipster-arrow-background {
  left: 1px;
  border-right-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-top .tooltipster-arrow-background {
  top: -1px;
  border-top-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-simple .tooltipster-arrow-border {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-left .tooltipster-arrow-border {
  border-left-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-right .tooltipster-arrow-border {
  border-right-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-top .tooltipster-arrow-border {
  border-top-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -9px;
}

.tooltipster-sidetip.tooltipster-simple.tooltipster-right .tooltipster-arrow-uncropped {
  left: -9px;
}

.tooltipster-base.tooltipster-white {
  display: flex;
  pointer-events: initial;
}

@media screen and (min-width: 48em) {
  .tooltipster-base.tooltipster-white {
    display: initial;
  }
}

.tooltipster-sidetip.tooltipster-white .tooltipster-box {
  overflow: hidden;
  border: 1px solid var(--line-2-color, #e0e0e0);
  border-radius: 5px;
  background-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .1));
}

.tooltipster-sidetip.tooltipster-white .tooltipster-content {
  max-width: 360px;
  padding: 0;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 20px;
}

.tooltipster-sidetip.tooltipster-white.tooltipster-bottom .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-white.tooltipster-top .tooltipster-arrow {
  width: 18px;
  height: 9px;
  margin-left: -8px;
}

.tooltipster-sidetip.tooltipster-white.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-white.tooltipster-right .tooltipster-arrow {
  width: 9px;
  height: 18px;
  margin-top: -9px;
  margin-left: 0;
}

.tooltipster-sidetip.tooltipster-white .tooltipster-arrow-background {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-white.tooltipster-bottom .tooltipster-arrow-background {
  top: 1px;
  border-bottom-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-left .tooltipster-arrow-background {
  left: -1px;
  border-left-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-right .tooltipster-arrow-background {
  left: 1px;
  border-right-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-top .tooltipster-arrow-background {
  top: -1px;
  border-top-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-white .tooltipster-arrow-border {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-white.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-left .tooltipster-arrow-border {
  border-left-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-right .tooltipster-arrow-border {
  border-right-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-top .tooltipster-arrow-border {
  border-top-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-white.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -9px;
}

.tooltipster-sidetip.tooltipster-white.tooltipster-right .tooltipster-arrow-uncropped {
  left: -9px;
}

.tooltipster-base.tooltipster-green {
  display: flex;
  pointer-events: initial;
}

@media screen and (min-width: 48em) {
  .tooltipster-base.tooltipster-green {
    display: initial;
  }
}

.tooltipster-sidetip.tooltipster-green .tooltipster-box {
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background-color: transparent;
  filter: drop-shadow(0 0 2px rgba(36, 37, 46, .08)) drop-shadow(0 0 25px rgba(0, 0, 0, .18));
}

.tooltipster-sidetip.tooltipster-green .tooltipster-content {
  max-width: 360px;
  padding: 0;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 20px;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-bottom .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-green.tooltipster-top .tooltipster-arrow {
  width: 18px;
  height: 9px;
  margin-left: -8px;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-green.tooltipster-right .tooltipster-arrow {
  width: 9px;
  height: 18px;
  margin-top: -9px;
  margin-left: 0;
}

.tooltipster-sidetip.tooltipster-green .tooltipster-arrow-background {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-bottom .tooltipster-arrow-background {
  top: 1px;
  border-bottom-color: #45ae52;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-left .tooltipster-arrow-background {
  left: -1px;
  border-left-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-right .tooltipster-arrow-background {
  left: 1px;
  border-right-color: var(--layer-4-color, #fff);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-top .tooltipster-arrow-background {
  top: -1px;
  border-top-color: var(--layer-4-color, #f9f7f0);
}

.tooltipster-sidetip.tooltipster-green .tooltipster-arrow-border {
  border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-left .tooltipster-arrow-border {
  border-left-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-right .tooltipster-arrow-border {
  border-right-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-top .tooltipster-arrow-border {
  border-top-color: var(--line-2-color, #e0e0e0);
}

.tooltipster-sidetip.tooltipster-green.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -9px;
}

.tooltipster-sidetip.tooltipster-green.tooltipster-right .tooltipster-arrow-uncropped {
  left: -9px;
}

.compact-slide-wrap {
  position: relative;
}

.compact-slide {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.compact-slide--inner {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.compact-slide--item {
  gap: 0 12px;
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: flex-start;
  width: 100%;
  max-width: 402px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #ebedee);
}

@media screen and (min-width: 64em) {
  .compact-slide--item {
    gap: 0 16px;
    padding: 20px 16px 20px 20px;
  }
}

.compact-slide--picture {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  max-width: 100px;
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (min-width: 64em) {
  .compact-slide--picture {
    max-width: 137px;
  }
}

.compact-slide--picture a {
  max-width: 100px;
}

@media screen and (min-width: 64em) {
  .compact-slide--picture a {
    max-width: 137px;
  }
}

.compact-slide--heading {
  color: var(--text-1-color, #212121);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

@media screen and (min-width: 64em) {
  .compact-slide--heading {
    font-size: 16px;
    line-height: 19px;
  }
}

.compact-slide--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.compact-slide-button {
  display: none;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .compact-slide-button {
    display: flex;
  }
}

[theme='dark'] .compact-slide-button {
  border-color: #616161;
  background-color: #3a3a3a;
}

[theme='dark'] .compact-slide-button svg {
  --i-color1: #fff;
}

.compact-slide-button_prev {
  left: -14px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.compact-slide-button_prev svg {
  transform: rotate(180deg);
}

.compact-slide-button_next {
  right: -14px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.compact-slide-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.compact-slide-button_disabled svg {
  opacity: .35;
}

.compact-slide-button svg {
  width: 16px;
  height: 12px;
}

.compact-slide-button_mobile {
  display: flex;
  position: initial;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: initial;
  background-color: initial;
  box-shadow: none;
}

[theme='dark'] .compact-slide-button_mobile {
  background-color: initial;
}

.compact-slide-button_mobile svg {
  width: 24px;
  height: 24px;
}

.compact-mobile-wrap {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}

@media screen and (min-width: 48em) {
  .compact-mobile-wrap {
    display: none;
  }
}

.compact-pagination {
  gap: 0 10px;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.compact-pagination--bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--layer-5-color, #c4c4c4);
}

.compact-pagination--bullet_active {
  background-color: #535353;
}

.slider-feed {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.slider-feed--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .slider-feed--head {
    margin: 0 0 23px;
  }
}

.slider-feed--heading {
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .slider-feed--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.slider-feed--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-feed--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.slider-feed--item {
  gap: 0 16px;
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: inset 0 0 0 1px var(--line-1-color, #ebedee);
  transition-property: transform;
}

@media screen and (min-width: 64em) {
  .slider-feed--item {
    max-width: 236px;
  }
}

.slider-feed--image {
  aspect-ratio: 236/101;
  display: flex;
  flex-shrink: 0;
  width: 100%;
}

.slider-feed--image img {
  aspect-ratio: 236/101;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.slider-feed--main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  width: 100%;
  padding: 16px 16px 24px;
}

@media screen and (min-width: 64em) {
  .slider-feed--main {
    padding: 16px 24px 24px;
  }
}

.slider-feed--title {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text-2-color, #000);
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.slider-feed--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.slider-feed--date {
  display: flex;
  align-items: center;
  margin: auto 0 0;
  color: var(--text-6-color, #a8a8a9);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.slider-feed--wrap {
  gap: 0 8px;
  display: flex;
}

.slider-feed--button {
  --i-color1: #fff;
  --i-color2: #9b9b9b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
}

[theme='dark'] .slider-feed--button {
  --i-color1: #606060;
  --i-color2: #fff;
  border-color: #757575;
}

.slider-feed--button_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.slider-feed--button svg {
  width: 26px;
  height: 26px;
}

.widget-tgm-wrap {
  container-type: inline-size;
  container-name: widget-telegram;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 32px 0;
}

.article-bottom .widget-tgm-wrap {
  width: calc(100% + 30px);
  margin: 0 -15px 32px;
  padding: 32px 15px;
  background-color: var(--layer-2-color, #f4f4f4);
}

@media screen and (min-width: 64em) {
  .article-bottom .widget-tgm-wrap {
    width: calc(100% + 60px);
    margin: 0 -30px 32px;
    padding: 32px 30px;
  }
}

.widget-tgm {
  gap: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  padding: 32px 24px;
  border-radius: 10px;
  background-color: var(--layer-4-color, #fff);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

@container widget-telegram (min-width: 949px) {
  .widget-tgm {
    gap: 0 48px;
    grid-template-columns: 1fr 302px;
    align-items: center;
    padding: 48px 64px;
  }
}

.promo-page--content .widget-tgm {
  border: 1px solid var(--line-0-color, #eee);
  background-color: var(--layer-3-color, #fff);
  box-shadow: none;
}

.widget-tgm--head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@container widget-telegram (min-width: 723px) {
  .widget-tgm--head {
    flex-direction: row;
  }
}

.widget-tgm--logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin: 0 0 16px;
}

@container widget-telegram (min-width: 723px) {
  .widget-tgm--logo {
    margin: 0 48px 0 0;
  }
}

.widget-tgm--image {
  display: flex;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin: 0 0 16px;
}

@container widget-telegram (min-width: 723px) {
  .widget-tgm--image {
    margin: 0 48px 0 0;
  }
}

.widget-tgm--image_light {
  display: initial;
}

[theme='dark'] .widget-tgm--image_light {
  display: none;
}

.widget-tgm--image_dark {
  display: none;
}

[theme='dark'] .widget-tgm--image_dark {
  display: initial;
}

.widget-tgm--image img {
  max-width: 100px;
}

.widget-tgm--heading {
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

@container widget-telegram (min-width: 723px) {
  .widget-tgm--heading {
    font-size: 20px;
  }
}

@container widget-telegram (min-width: 949px) {
  .widget-tgm--heading {
    max-width: 490px;
  }
}

.widget-tgm--inner {
  gap: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@container widget-telegram (min-width: 723px) {
  .widget-tgm--inner {
    flex-direction: row;
    justify-content: center;
  }
}

@container widget-telegram (min-width: 949px) {
  .widget-tgm--inner {
    flex-direction: column;
  }
}

.widget-tgm--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 302px;
  height: 64px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #33a9e0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.widget-tgm--link svg {
  --i-color1: #fff;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
}

.widget-tgm--link_whatsapp {
  background-color: #2aba41;
}

.promo-page--content .widget-tgm--link {
  background-color: #2ca5e0;
}

.media-meta {
  --media-meta-color: var(--text-4-color, #a1a1a1);
  --media-meta-link-color: var(--text-6-color, #212121);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--media-meta-color);
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
}

.media-large .media-meta {
  position: relative;
  padding: 0 5px 15px 0;
}

@media screen and (min-width: 48em) {
  .media-large .media-meta {
    color: #fff;
  }
}

.media-small .media-meta {
  position: relative;
  padding: 0 5px 15px 0;
}

.wide-item--meta .media-meta {
  position: relative;
}

.live-item--meta .media-meta {
  position: relative;
}

.media-meta a {
  color: inherit;
}

.media-meta--author {
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.media-meta--date {
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.media-meta--update {
  display: flex;
  align-items: center;
  margin: 0 12px 0 0;
  line-height: 20px;
  white-space: nowrap;
}

.media-meta--update::before {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 2px 0 0;
  background-image: url(/nimg/meta-update.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  content: '';
}

.media-meta--live {
  display: flex;
  margin: 0 12px 0 0;
  transform: translateY(1px);
  color: #808080;
  font-size: 11px;
  line-height: 24px;
  text-transform: uppercase;
}

.media-meta--live::before {
  width: 18px;
  height: 25px;
  margin: 0 4px 0 0;
  background-image: url(/nimg/live-onair.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  content: '';
}

.media-meta--live_active {
  color: #529410;
}

.media-meta--live_active::before {
  background-image: url(/nimg/live-onair-on.svg);
}

.media-meta--view {
  display: flex;
  margin: 0 12px 0 0;
  white-space: nowrap;
}

.media-meta--view::before {
  position: relative;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 0 3px 0 0;
  background-image: url(/nimg/meta-view.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.media-meta--comment {
  display: flex;
  text-transform: none;
  white-space: nowrap;
}

.media-meta--comment::before {
  position: relative;
  top: 3px;
  left: 0;
  width: 13px;
  height: 16px;
  margin: 0 3px 0 0;
  background-image: url(/nimg/meta-comment.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  content: '';
}

.media-large .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-small .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.news-element--head .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.wide-item--meta .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.video-element--head .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.live-item--meta .media-meta--comment::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.media-meta--comment span {
  margin: 0 0 0 4px;
  color: var(--media-meta-link-color);
}

@media screen and (min-width: 48em) {
  .media-large .media-meta--comment span {
    color: #fff;
  }
}

.media-more {
  --x-main-more-color: #202020;
  --x-main-more-line-color: #d3d3d3;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 615px;
  margin: 25px auto 0;
}

.content_theme .media-more {
  --x-main-more-color: var(--text-2-color, #202020);
  --x-main-more-line-color: var(--line-2-color, #d3d3d3);
}

@media screen and (min-width: 64em) {
  .media-more {
    max-width: 1246px;
  }
}

.media-more::after,
.media-more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--x-main-more-line-color);
  content: '';
}

.media-top .media-more {
  margin: 25px auto 10px;
}

@media screen and (min-width: 64em) {
  .media-top .media-more {
    margin: 25px auto 30px;
  }
}

.media-more--show {
  padding: 0 20px;
  color: var(--x-main-more-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.media-note {
  --m-note-bg-color: #fff;
  --m-note-color: #000;
  --m-note-border-color: #dfd6d4;
  --m-note-line-color: #e2e2e2;
  display: flex;
  width: 100%;
  max-width: 615px;
  margin: 10px auto 0;
}

.content_theme .media-note {
  --m-note-bg-color: var(--layer-3-color, #fff);
  --m-note-color: var(--text-2-color, #000);
  --m-note-border-color: var(--line-1-color, #dfd6d4);
  --m-note-line-color: var(--layer-2-color, #e2e2e2);
}

@media screen and (min-width: 48em) {
  .media-note {
    max-width: 645px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 64em) {
  .media-note {
    max-width: 1276px;
    margin: 20px auto 0;
  }
}

.media-note--inner {
  position: relative;
  width: 100%;
  padding: 15px 15px 15px 28px;
  border: 1px solid var(--m-note-border-color);
  background-color: var(--m-note-bg-color);
}

.media-note--inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  border-right: 1px solid var(--m-note-border-color);
  background-color: var(--m-note-line-color);
  content: '';
}

.media-note--inner a::after {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin: 0 0 0 8px;
  background-image: url(/nimg/note-link.svg);
  background-repeat: no-repeat;
  content: '';
}

.media-note--date {
  position: relative;
  top: -1px;
  margin: 0 14px 0 0;
  color: #e51e25;
  font-size: 13px;
  text-transform: uppercase;
}

.media-note--message {
  color: var(--m-note-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  line-height: 1.25;
}

.media-note--message::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.pager {
  --pager-input-color: var(--control-1-color, #202020);
  --pager-input-active-bg-color: var(--pal-gt-accent, #e51e25);
  --pagination-input-active-color: var(--text-1-color, #fff);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 5px 0;
}

.pager_center {
  justify-content: center;
}

.pager_right {
  margin: 0 0 0 auto;
}

.pager_right_mobile {
  display: none;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 64em) {
  .pager_right_mobile {
    display: flex;
  }
}

.pager_mobile {
  display: flex;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 64em) {
  .pager_mobile {
    display: none;
  }
}

.pager--item {
  padding: 0 7px;
  border: 0;
  border-radius: 2px;
  color: var(--pager-input-color);
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .pager--item {
    line-height: 32px;
  }
}

.pager--item:not(:last-child) {
  margin: 0 8px 0 0;
}

.pager--item_active {
  min-width: 28px;
  background-color: var(--pager-input-active-bg-color);
  color: var(--pagination-input-active-color);
}

@media screen and (min-width: 48em) {
  .pager--item_active {
    min-width: 39px;
  }
}

.pager--item_wide_only {
  display: none;
}

@media screen and (min-width: 64em) {
  .pager--item_wide_only {
    display: block;
  }
}

.pager_warp_mobile {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .pager_warp_mobile {
    width: auto;
  }
}

.filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px 0 0;
}

.filter_nowrap {
  flex-wrap: nowrap;
}

@media screen and (min-width: 48em) {
  .filter_right {
    margin: 0 15px 0 0;
  }
}

.filter_right_auto {
  margin: 0 auto 0 0;
}

.filter_right_small {
  margin: 0 5px 0 0;
}

.filter--item {
  position: relative;
  margin: 0 5px 5px;
  padding: 0 5px;
  color: #202020;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}

.profile .filter--item {
  color: var(--prf-widget-color);
}

.filter--item::before {
  position: absolute;
  top: 0;
  left: -5px;
  width: 0;
  height: 0;
  border-width: 11px 5px 11px 0;
  border-style: solid;
  border-color: transparent;
  content: '';
}

.filter--item::after {
  position: absolute;
  top: 0;
  right: -5px;
  width: 0;
  height: 0;
  border-width: 11px 0 11px 5px;
  border-style: solid;
  border-color: transparent;
  content: '';
}

.filter--item_active {
  background-color: #e51e25;
  color: #fff;
}

.profile .filter--item_active {
  color: #fff;
}

.filter--item_active::before {
  border-color: transparent #e51e25 transparent transparent;
}

.filter--item_active::after {
  border-color: transparent transparent transparent #e51e25;
}

.filter--item strong {
  margin: 0 0 0 4px;
}

.modal-contact-overlay {
  display: flex;
  z-index: 50;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.modal-contact-overlay.hidden {
  display: none;
}

.modal-contact {
  display: flex;
  z-index: 100;
  width: 100%;
  max-width: 640px;
  max-height: 100%;
  padding: 10px 15px;
}

.modal-contact.hidden {
  display: none;
}

.modal-contact--close {
  --button-size: 24px;
  z-index: 10;
  position: absolute;
  top: 16px;
  right: 16px;
  width: var(--button-size);
  height: var(--button-size);
}

.modal-contact--close::after,
.modal-contact--close::before {
  position: absolute;
  top: 0;
  left: 11px;
  width: 1px;
  height: var(--button-size);
  background-color: #9e9e9e;
  content: '';
}

.modal-contact--close::before {
  transform: rotate(45deg);
}

.modal-contact--close::after {
  transform: rotate(-45deg);
}

.modal-contact--inner {
  position: relative;
  flex-grow: 1;
  padding: 50px 15px 30px;
  overflow-y: auto;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .modal-contact--inner {
    padding: 50px 40px;
  }
}

.modal-contact--heading {
  margin: 0 0 15px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .modal-contact--heading {
    margin: 0 0 12px;
    font-size: 24px;
  }
}

.modal-contact--txt {
  width: 100%;
  max-width: 370px;
  margin: 0 auto 10px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .modal-contact--txt {
    font-size: 16px;
  }
}

.modal-contact--wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.modal-contact--button {
  display: flex;
  position: relative;
  align-items: center;
  width: 205px;
  margin: 0 10px 10px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .modal-contact--button {
    margin: 0 10px 20px;
  }
}

.modal-contact--button::before {
  flex-shrink: 0;
  width: 24px;
  height: 28px;
  margin: 0 12px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  content: '';
}

.modal-contact--button_telegram::before {
  background-image: url(/nimg/modal-contact-telegram.svg);
}

.modal-contact--button_skype::before {
  background-image: url(/nimg/modal-contact-skype.svg);
}

.modal-contact--button_phone::before {
  background-image: url(/nimg/modal-contact-phone.svg);
}

.modal-contact--button_email::before {
  background-image: url(/nimg/modal-contact-mail.svg);
}

.modal-contact--send {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.modal-contact--badge {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  padding: 10px 0;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.modal-contact--badge::before {
  flex-shrink: 0;
  width: 24px;
  height: 28px;
  margin: 0 8px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  content: '';
}

.modal-contact--badge_telegram::before {
  background-image: url(/nimg/modal-contact-telegram.svg);
}

.modal-contact--badge_skype::before {
  background-image: url(/nimg/modal-contact-skype.svg);
}

.modal-contact--badge_phone::before {
  background-image: url(/nimg/modal-contact-phone.svg);
}

.modal-contact--badge_email::before {
  background-image: url(/nimg/modal-contact-mail.svg);
}

.modal-contact--form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.modal-contact--field {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 370px;
  padding: 13px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-family: inherit;
  font-size: 18px;
  line-height: 22px;
}

.modal-contact--field::-moz-placeholder {
  color: #9e9e9e;
  font-size: 16px;
}

.modal-contact--field::placeholder {
  color: #9e9e9e;
  font-size: 16px;
}

.modal-contact--remark {
  display: block;
  width: 100%;
  margin: 0 0 28px;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 20px;
}

.modal-contact--submit {
  height: 44px;
  margin: 0;
  padding: 0 32px;
  border: 0;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.regref {
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-grow: 1;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .regref {
    justify-content: flex-end;
  }
}

.regref-info {
  gap: 6px;
  display: flex;
  position: relative;
  align-items: center;
}

.regref-info--tooltip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.regref-info--tooltip svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

[theme='dark'] .regref-info--tooltip svg {
  --i-color1: #616161;
  --i-color2: #616161;
}

.regref-info--label {
  color: var(--text-5-color, #000);
  font-size: 14px;
  line-height: 22px;
}

.regref-info--note {
  margin: 0 8px 0 0;
  border-bottom: 1px dashed #757575;
  color: var(--text-5-color, #000);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  cursor: pointer;
}

.aside-bestroom-widget .regref-info--note {
  display: none;
}

.regref-copy {
  display: flex;
  justify-content: flex-end;
}

.regref-copy--inner {
  gap: 0 7px;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-start;
  min-width: 100px;
  padding: 0 12px 0 9px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  background-color: var(--layer-4-color, #f9f7f0);
}

.regref-copy--inner + .regref-copy--link {
  border-radius: 0 5px 5px 0;
}

.regref-copy--code {
  color: var(--text-1-color, #6d6d6d);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.regref-copy--icon {
  width: 16px;
  height: 16px;
}

[theme='dark'] .regref-copy--icon {
  --i-color1: var(--text-2-color);
}

.regref-copy--notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.regref-copy--notify.animate {
  display: flex;
  animation-name: slidecopy;
}

@keyframes slidecopy {
  0% {
    display: flex;
    transform: translateX(105%);
  }
  30% {
    transform: translateX(0%);
  }
  70% {
    transform: translateX(0%);
  }
  100% {
    display: none;
    transform: translateX(-105%);
  }
}

.regref-copy--check {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

[theme='dark'] .regref-copy--check {
  --i-color1: #00ff92;
}

.regref-copy--text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

[theme='dark'] .regref-copy--text {
  color: #00ff92;
}

.regref-copy--link {
  display: inline-block;
  position: relative;
  padding: 9px 20px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.article .regref-copy--link {
  color: #fff;
}

.regref-tooltip {
  width: 100%;
  max-width: 360px;
  padding: 20px;
  background-color: var(--layer-4-color, #f9f7f0);
}

.regref-tooltip ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.regref-tooltip li {
  position: relative;
  padding: 0;
  color: var(--text-2-color, #202020);
  font-size: 16px;
  line-height: 24px;
}

.regref-tooltip li:not(:last-child) {
  margin: 0 0 11px;
}

.regref-tooltip li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: -18px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 8'%3E%3Cpath fill='%23202020' d='M4.004 8 0 4.004 4.004 0 8 4.004 4.004 8Z'/%3E%3C/svg%3E");
  content: '';
}

[theme='dark'] .regref-tooltip li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M4.004 8 0 4.004 4.004 0 8 4.004 4.004 8Z'/%3E%3C/svg%3E");
}

.regref-tooltip .regref-tooltip-accent {
  color: #e51e25;
}

.regref-tooltip .regref-tooltip-accent::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 8'%3E%3Cpath fill='%23e51e25' d='M4.004 8 0 4.004 4.004 0 8 4.004 4.004 8Z'/%3E%3C/svg%3E");
}

[theme='dark'] .regref-tooltip .regref-tooltip-accent::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 8'%3E%3Cpath fill='%23e51e25' d='M4.004 8 0 4.004 4.004 0 8 4.004 4.004 8Z'/%3E%3C/svg%3E");
}

.tooltip-image {
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 240px;
  margin: 24px 0 0;
}

.bestroom-tooltip .tooltip-image {
  width: 100%;
  padding: 0 20px 20px 20px;
}

.referral-code-tooltip .tooltip-image {
  width: 100%;
  padding: 0 20px 20px 20px;
}

.regref-tooltip--title {
  margin: 0 0 16px;
  color: var(--text-2-color, #202020);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.regcopy-button {
  gap: 0 4px;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  padding: 0 16px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 15px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .regcopy-button {
    max-width: 174px;
  }
}

.regcopy-button:active {
  top: 1px;
}

@media screen and (min-width: 64em) {
  .freeitem .regcopy-button {
    align-self: flex-end;
  }
}

.article-body .regcopy-button {
  color: #eee;
  font-weight: 400;
}

.aside-bestroom-widget .regcopy-button {
  grid-column: 1/3;
  justify-self: end;
  padding: 0 24px;
}

@media screen and (min-width: 64em) {
  .aside-bestroom-widget .regcopy-button {
    max-width: initial;
  }
}

.rooms2-card .regcopy-button {
  height: 40px;
}

@media screen and (min-width: 40em) {
  .rooms2-card .regcopy-button {
    padding: 0 23px;
  }
}

@media screen and (min-width: 48em) {
  .rooms2-card .regcopy-button {
    max-width: initial;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-card .regcopy-button {
    height: 46px;
  }
}

.rooms3-top-card .regcopy-button {
  height: 40px;
}

@media screen and (min-width: 40em) {
  .rooms3-top-card .regcopy-button {
    padding: 0 23px;
  }
}

@media screen and (min-width: 48em) {
  .rooms3-top-card .regcopy-button {
    max-width: initial;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3-top-card .regcopy-button {
    height: 46px;
  }
}

.rooms2-referrals-card .regcopy-button {
  min-width: 140px;
  height: 28px;
  padding: 0 8px;
  font-size: 12px;
}

.rooms2-referrals-card .regcopy-button svg {
  width: 12px;
  height: 12px;
}

.wts-bestrooms .regcopy-button {
  width: 100%;
  height: 46px;
}

@media screen and (min-width: 48em) {
  .wts-bestrooms .regcopy-button {
    max-width: initial;
  }
}

.wts-free .regcopy-button {
  width: 100%;
  height: 46px;
}

@media screen and (min-width: 48em) {
  .wts-free .regcopy-button {
    max-width: initial;
  }
}

.takeover-bestroom .regcopy-button {
  width: -moz-fit-content;
  width: fit-content;
  max-width: unset;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
}

.regcopy-button svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.regcopy-button strong {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.widget-regcopy {
  gap: 0 4px;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  background-color: #e51e25;
  color: #eee;
  font-size: 16px;
  line-height: 20px;
}

.widget-regcopy:active {
  top: 1px;
}

.widget-regcopy svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

[theme='dark'] .widget-regcopy svg {
  --i-color1: #fff;
}

.widget-regcopy strong {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.article-body .widget-regcopy {
  color: #eee;
  font-weight: 400;
  text-decoration: none;
}

@media screen and (min-width: 48em) {
  .widget-promoroom .widget-regcopy {
    max-width: 228px;
  }
}

.widget-regroom .widget-regcopy {
  padding: 9px 0;
  border-radius: 3px;
}

.room3-steps {
  max-width: 643px;
  padding: 16px;
  border: 1px solid var(--layer-5-color, #e5e8ee);
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-1-color, #000);
}

@media screen and (min-width: 48em) {
  .room3-steps {
    gap: 27px 16px;
    display: grid;
    grid-template-columns: 39px 1fr;
    margin: 0 auto;
    padding: 30px 35px;
    background-color: var(--layer-3-color, #fff);
    background-image: linear-gradient(to right, var(--layer-3-color, #fff) 54px, var(--layer-5-color, #e5e8ee) 54px, var(--layer-5-color, #e5e8ee) 55px, var(--layer-3-color, #fff) 55px);
    background-position: center 30px;
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 35px);
  }
}

@media screen and (min-width: 79.375em) {
  .room3-steps {
    margin: 0;
  }
}

.room3-steps_blocked {
  margin-top: 22px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

@media screen and (min-width: 48em) {
  .room3-steps_blocked {
    background-color: transparent;
    background-image: linear-gradient(to right, var(--layer-3-color, #fff) 19px, var(--layer-5-color, #e5e8ee) 19px, var(--layer-5-color, #e5e8ee) 20px, var(--layer-3-color, #fff) 20px);
    background-position: center 30px;
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 35px);
  }
}

.room3-steps__bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  margin-bottom: 8px;
  border: 1px solid var(--layer-5-color, #e5e8ee);
  border-radius: 50%;
  background-color: var(--layer-3-color, #fbfbfb);
}

@media screen and (min-width: 48em) {
  .room3-steps__bullet {
    width: 39px;
    height: 39px;
    margin-bottom: 0;
    outline: 9px solid var(--layer-3-color, #fff);
    font-size: 18px;
    line-height: 21px;
  }
}

.room3-steps__bullet-content {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.room3-steps__bullet-content_check {
  width: 12px;
  height: 11px;
}

@media screen and (min-width: 48em) {
  .room3-steps__bullet-content_check {
    width: 15px;
    height: 13px;
  }
}

.room3-steps__content:not(:last-child) {
  margin-bottom: 24px;
}

@media screen and (min-width: 48em) {
  .room3-steps__content:not(:last-child) {
    margin-bottom: 0;
  }
}

.room3-steps__main-text {
  max-width: 45ch;
}

.room3-steps__text:not(:last-child) {
  margin-bottom: 9px;
}

.room3-steps__text_2 {
  max-width: 45ch;
}

.room3-steps__text a {
  color: inherit;
  text-decoration: underline;
}

.room3-steps__copy-area {
  display: block;
  position: relative;
  max-width: 281px;
  padding: 11px 0 10px;
  overflow: hidden;
  border: 1px dashed var(--text-1-color, rgba(0, 0, 0, .3));
  border-radius: 3px;
  color: var(--text-1-color, #000);
  font-size: 19px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  cursor: pointer;
}

.room3-steps__copy-area_active .room3-steps__copy-notify {
  transform: translateY(0%);
}

.room3-steps__copy-area svg {
  fill: var(--text-3-color, #b1b1b1);
}

.room3-steps__copy-area:hover svg {
  fill: #e51e25;
}

.room3-steps__copy-notify {
  gap: 12px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background-color: var(--layer-3-color, #fff);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-align: center;
  transition: transform .2s;
}

.room3-steps__copy {
  position: absolute;
  top: 11px;
  right: 13px;
  width: 16px;
  height: 16px;
  transition: all .3s;
}

@media screen and (min-width: 48em) {
  .room3-steps__copy {
    right: 17%;
  }
}

.room3-steps__reg-link {
  display: block;
  max-width: 281px;
  padding: 10px 16px;
  border-radius: 3px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

.room3-steps__list {
  max-width: 49ch;
}

.room3-steps__popup {
  max-width: 400px;
  height: 100%;
  margin: 0;
  padding: 18px 16px 20px;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-4-color, #545454);
}

.room3-steps__popup-title {
  margin: 0 0 14px;
}

.room3-steps__popup-list {
  margin: 0;
}

.room3-steps__list-item {
  margin-left: 4px;
  padding: 0 0 0 8px;
  color: var(--text-4-color, #545454);
  font-size: 13px;
  line-height: 18px;
  list-style-type: '•';
}

.room3-steps__list-item:not(:last-child) {
  margin-bottom: 9px;
}

.room3-steps__list-item a {
  color: inherit;
  font-weight: 700;
}

.room3-steps__earth {
  width: 21px;
  height: 21px;
}

@media screen and (min-width: 48em) {
  .room3-steps__earth {
    width: 25px;
    height: 25px;
  }
}

.room3-steps__form {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.room3-steps__doubleform {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
}

.room3-steps__input {
  max-width: 32vw;
  padding: 10px 13px;
  border-top: 1px solid var(--layer-5-color, #e0e0e0);
  border-right: none;
  border-bottom: 1px solid var(--layer-5-color, #e0e0e0);
  border-left: 1px solid var(--layer-5-color, #e0e0e0);
  border-radius: 3px 0 0 3px;
  background-color: var(--layer-2-color, #fff);
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
}

@media screen and (min-width: 48em) {
  .room3-steps__input {
    max-width: 175px;
  }
}

.room3-steps__input_separate {
  width: 100%;
  max-width: 281px;
  border: 1px solid var(--layer-5-color, #e0e0e0);
  border-radius: 3px;
}

@media screen and (min-width: 30em) {
  .room3-steps__input_separate {
    width: 281px;
  }
}

.room3-steps__input::-moz-placeholder {
  color: var(--text-3-color, #545454);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  opacity: .5;
}

.room3-steps__input::placeholder {
  color: var(--text-3-color, #545454);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  opacity: .5;
}

[theme='dark'] .room3-steps__input::-moz-placeholder {
  opacity: 1;
}

[theme='dark'] .room3-steps__input::placeholder {
  opacity: 1;
}

@media screen and (min-width: 48em) {
  .room3-steps__input::-moz-placeholder {
    font-family: inherit;
  }
  .room3-steps__input::placeholder {
    font-family: inherit;
  }
}

.room3-steps__button {
  padding: 0 16px;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: var(--text-5-color, #d9d9d9);
  box-shadow: none;
  color: var(--layer-3-color, #b1b1b1);
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  cursor: not-allowed;
}

.room3-steps__button_separate {
  width: 100%;
  max-width: 281px;
  height: 41px;
  border-radius: 3px;
}

@media screen and (min-width: 30em) {
  .room3-steps__button_separate {
    width: 281px;
  }
}

.room3-steps__note {
  color: #808080;
  font-size: 14px;
  line-height: 1.3;
}

.room3-steps__note a {
  color: inherit;
  text-decoration: underline;
}

.room3-steps__button_active {
  background-color: #e51e25;
  color: #fff;
  cursor: pointer;
}

.room3-steps__login {
  color: var(--text-1-color, #000);
  font-size: 15px;
  line-height: 22px;
  opacity: .85;
}

@media screen and (min-width: 48em) {
  .room3-steps__login {
    font-size: 17px;
    line-height: 27px;
  }
}

.room3-steps__login a {
  display: inline;
  color: #e51e25;
}

.room3-steps__notify {
  gap: 12px;
  display: flex;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

.room3-steps__notify-title {
  max-width: 39ch;
  margin-bottom: 8px;
  color: var(--text-1-color, #000);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

.room3-steps__notify-text {
  color: var(--text-3-color, #545454);
  font-size: 15px;
  line-height: 19px;
}

.room3-steps__rkn-logo {
  flex-basis: 29px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}

@media screen and (min-width: 48em) {
  .room3-steps__rkn-logo {
    flex-basis: 49px;
    width: 49px;
    height: 49px;
    margin-left: -7px;
  }
}

.room3-steps__notify-phrase {
  color: #e51e25;
}

@media screen and (min-width: 48em) {
  .room3-steps .room3-steps__bullet:nth-last-child(2) {
    position: relative;
  }
  .room3-steps .room3-steps__bullet:nth-last-child(2)::after {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 30px;
    background-color: var(--layer-3-color, #fff);
    content: '';
  }
}

.room3-steps-restricted {
  max-width: 643px;
  padding: 19px 25px 29px 15px;
  border: 1px solid var(--line-1-color, #e5e8ee);
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 48em) {
  .room3-steps-restricted {
    margin: 0 auto;
    padding: 30px 35px;
  }
}

.filter-menu {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 24px 0 0;
}

.filter-menu__wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.filter-menu__feedback {
  gap: 6px 8px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}

.filter-menu__feedback.expanded {
  flex-wrap: wrap;
}

.filter-menu__feedback.scrollable {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
}

.filter-menu__feedback.scrollable::-webkit-scrollbar {
  display: none;
}

.filter-menu__feedback:has(.filter-menu__more.visible) {
  padding-right: 25px;
}

.filter-menu__item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  height: 24px;
  padding: 2px 9px;
  border-radius: 12px;
  background-color: var(--layer-2a-color, #fbfbfb);
  color: var(--text-1-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

.filter-menu__item_active {
  background-color: var(--layer-4-color, #4b4b4b);
  color: #fff;
}

.filter-menu__more {
  display: none;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  height: 24px;
  padding: 2px 9px;
  background-color: var(--layer-2-color, #efefef);
  color: var(--text-1-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.filter-menu__more:before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 100%;
  width: 25px;
  height: 24px;
  background: linear-gradient(to left, var(--layer-2-color, #efefef), transparent);
  content: '';
  pointer-events: none;
}

.filter-menu__more.visible {
  display: inline-flex;
}

.filter-menu__rate {
  gap: 0 8px;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter-menu__rate_active {
  gap: 15px;
  height: 73px;
  padding: 0 9px 9px 9px;
  border-radius: 13px;
  background-color: var(--layer-4-color, #eef0f5);
  color: #fff;
}

.filter-menu__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 139px;
  height: 28px;
  background-color: transparent;
}

@media screen and (min-width: 48em) {
  .filter-menu__stars {
    width: 100px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--layer-2a-color, #fbfbfb);
  }
}

.filter-menu__stars .filter-menu__rater {
  width: 139px !important;
  height: 28px !important;
}

@media screen and (min-width: 48em) {
  .filter-menu__stars .filter-menu__rater {
    width: 90px !important;
    height: 18px !important;
    background-size: 18px !important;
  }
}

.app-site {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--site-wrap-width, auto);
  min-height: 100vh;
  margin: 0 auto;
}

.app-site_full {
  --site-wrap-width: auto;
}

.content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
  background-color: var(--content-bg-color, #efefef);
}

.content_light {
  --content-bg-color: #fafafa;
}

.content_about {
  --content-bg-color: #f5f5f5;
}

.content_theme {
  background-color: var(--theme-content-bg-color, #efefef);
}

.content_white {
  background-color: var(--theme-content-bg-color, #fff);
}

.actions-wrap {
  --act-opacity-bg-image: var(--custom-act-opacity-bg-image, .04);
  --act-bg-color: var(--custom-act-bg-color, #fafafa);
  --act-heading-color: var(--text-1-color, #000);
  --act-card-bg-color: var(--layer-3-color, #fff);
  --act-card-heading-color: var(--text-1-color, #212121);
  --act-filter-color: var(--text-1-color, #212121);
  --act-filter-bg-color: var(--layer-4-color, #f0f0f0);
  --act-filter-border-color: var(--line-2-color, #e1e1e1);
  --act-select-bg-color: var(--layer-4-color, #fff);
  --act-select-border-color: var(--line-2-color, #dbdbdb);
  --act-bot-border-color: var(--line-2-color, #dcdcdc);
  display: flex;
  z-index: 2;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 0 40px;
  background-color: var(--act-bg-color);
}

[theme='dark'] .actions-wrap {
  --custom-act-opacity-bg-image: .02;
  --custom-act-bg-color: #313131;
}

@media screen and (min-width: 48em) {
  .actions-wrap {
    padding: 0 0 80px;
  }
}

.actions-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--act-opacity-bg-image);
}

.promo-actions-wrap {
  z-index: 1;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 32px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .promo-actions-wrap {
    padding: 0 30px;
  }
}

.promo-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 0 0;
}

.promo-actions--head {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
  padding: 16px 0 0;
}

@media screen and (min-width: 48em) {
  .promo-actions--head {
    margin: 0 0 20px;
  }
}

.promo-actions--head svg {
  flex-shrink: 0;
  width: 20px;
  height: 24px;
  margin: 0 6px 0 0;
}

@media screen and (min-width: 48em) {
  .promo-actions--head svg {
    width: 26px;
    height: 29px;
  }
}

[theme='dark'] .promo-actions--head svg {
  --i-color1: #fff;
}

.promo-actions--heading {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .promo-actions--heading {
    font-size: 18px;
  }
}

.action-slide-wrap {
  position: relative;
}

.action-slide {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.action-slide--inner {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.action-slide--item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  max-width: 402px;
  padding: 24px 20px 20px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 48em) {
  .action-slide--item {
    padding: 24px;
  }
}

.action-slide--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin: 0 0 16px;
}

.action-slide--img {
  display: flex;
  justify-content: center;
  height: 52px;
}

[theme='dark'] .action-slide--img_light {
  display: none;
}

.action-slide--img_dark {
  display: none;
}

[theme='dark'] .action-slide--img_dark {
  display: flex;
}

.action-slide--img img {
  height: 100%;
}

.action-slide--date {
  margin: 0 0 9px;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .action-slide--date {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 16px;
  }
}

.action-slide--heading {
  padding: 0 0 15px;
  color: var(--text-1-color, #212121);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .action-slide--heading {
    padding: 0 0 18px;
    font-size: 22px;
    line-height: 29px;
  }
}

.action-slide--mark {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .action-slide--mark {
    margin: 0 0 28px;
  }
}

.action-slide--tag {
  margin: 0 3px;
  padding: 3px 6px;
  border: 1px solid #757575;
  border-radius: 2px;
  color: #757575;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
}

.action-slide--picture {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto 0 0;
}

.action-slide--picture a {
  max-width: 354px;
}

.action-slide-button {
  display: none;
  z-index: 1;
  position: absolute;
  top: calc(50% - 24px);
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .action-slide-button {
    display: flex;
  }
}

[theme='dark'] .action-slide-button {
  border-color: #616161;
  background-color: #3a3a3a;
}

[theme='dark'] .action-slide-button svg {
  --i-color1: #fff;
}

.action-slide-button_prev {
  left: -24px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.action-slide-button_prev svg {
  transform: rotate(180deg);
}

.action-slide-button_next {
  right: -24px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.action-slide-button_disabled {
  cursor: auto;
  pointer-events: none;
}

.action-slide-button_disabled svg {
  opacity: .35;
}

.action-slide-button svg {
  width: 26px;
  height: 20px;
}

.action-slide-button_mobile {
  display: flex;
  position: initial;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 24px;
  border: 0;
  border-radius: initial;
  background-color: initial;
  box-shadow: none;
}

[theme='dark'] .action-slide-button_mobile {
  background-color: initial;
}

.action-slide-button_mobile svg {
  width: 37px;
  height: 12px;
}

.action-m-wrap {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}

@media screen and (min-width: 48em) {
  .action-m-wrap {
    display: none;
  }
}

.action-pagination {
  --rec-bullet-color: var(--layer-5-color, #c4c4c4);
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.action-pagination--bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: var(--rec-bullet-color);
}

.action-pagination--bullet_active {
  background-color: #535353;
}

.tg-banner {
  z-index: 1;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 40px;
}

@media screen and (min-width: 48em) {
  .tg-banner {
    margin: 0 0 56px;
    padding: 0 30px;
  }
}

.tg-banner--inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .tg-banner--inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.tg-banner--content {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  order: 2;
  padding: 20px 20px 27px;
  background-color: #24a1de;
}

@media screen and (min-width: 64em) {
  .tg-banner--content {
    align-items: flex-start;
    order: initial;
    min-height: auto;
    padding: 20px 0 27px 56px;
  }
  .tg-banner--content::after {
    position: absolute;
    top: 0;
    right: -98px;
    width: 100px;
    height: 100%;
    background-color: #24a1de;
    clip-path: polygon(0 0, 100% 0%, 2% 100%, 0% 100%);
    content: '';
  }
}

.tg-banner--heading {
  margin: 0 0 10px;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .tg-banner--heading {
    font-size: 22px;
    line-height: 25px;
    text-align: left;
  }
}

.tg-banner--list {
  margin: 0 0 20px;
}

.tg-banner--list li {
  display: flex;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .tg-banner--list li {
    font-size: 16px;
    line-height: 26px;
  }
}

.tg-banner--list li::before {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin: 0 10px 0 0;
  transform: translateY(3px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 11'%3E%3Cpath fill='%23fff' fill-opacity='.4' d='M1.734 4.775a1 1 0 0 0-1.468 1.36l1.468-1.36ZM5.21 10l-.734.68a1 1 0 0 0 1.575-.139L5.21 10Zm6.63-8.459A1 1 0 1 0 10.159.459l1.682 1.082ZM.266 6.134l4.21 4.546 1.468-1.36-4.21-4.545-1.468 1.36Zm5.786 4.407 5.789-9L10.159.459l-5.79 9 1.683 1.082Z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

@media screen and (min-width: 64em) {
  .tg-banner--list li::before {
    transform: translateY(6px);
  }
}

.tg-banner--button {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 20px;
  background-color: #fff;
  color: #24a1de;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 64em) {
  .tg-banner--button {
    font-size: 16px;
    line-height: 19px;
  }
  .tg-banner--button svg {
    width: 17px;
    height: 15px;
  }
}

.tg-banner--button svg {
  flex-shrink: 0;
  width: 15px;
  height: 13px;
  margin: 0 7px 0 0;
}

.tg-banner--picture {
  min-height: 148px;
  background-color: #9bd4f0;
  background-image: url(/nimg/cards240x130x3.png);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 240px;
}

@media screen and (min-width: 64em) {
  .tg-banner--picture {
    min-height: auto;
    padding: 0 0 0 100px;
    background-position: 70% 100%;
    background-size: 320px;
  }
}

.actions-main {
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1306px;
}

@media screen and (min-width: 48em) {
  .actions-main {
    padding: 0 30px 0 21px;
  }
}

@media screen and (min-width: 64em) {
  .actions-main {
    padding: 0 30px;
  }
}

.actions-main--head {
  display: grid;
  z-index: 3;
  position: relative;
  grid-template-columns: 1fr;
  margin: 0 0 10px;
}

@media screen and (min-width: 48em) {
  .actions-main--head {
    padding: 0 0 0 9px;
  }
}

@media screen and (min-width: 64em) {
  .actions-main--head {
    grid-gap: 0 10px;
    grid-template-columns: 215px 1fr;
  }
}

.actions-main--select {
  display: flex;
  grid-column: 1;
  width: 100%;
  margin: 0 0 8px;
}

@media screen and (min-width: 40em) {
  .actions-main--select {
    margin: 0;
  }
}

@media screen and (min-width: 64em) {
  .actions-main--select {
    display: none;
  }
}

.select-room-wrap {
  z-index: 1;
  position: relative;
  margin: 0 0 0 16px;
}

@media screen and (min-width: 48em) {
  .select-room-wrap {
    margin: 0;
  }
}

.select-room-toggle {
  display: flex;
  align-items: center;
  color: var(--act-filter-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  white-space: nowrap;
}

.select-room-toggle.active svg {
  transform: rotate(180deg);
}

.select-room-toggle svg {
  --i-color1: var(--act-filter-color);
  width: 16px;
  height: 16px;
  margin: 0 0 0 2px;
}

.select-room-list {
  display: none;
  position: absolute;
  top: 24px;
  left: 0;
  margin: 0;
  padding: 24px 16px 8px 4px;
  border: 1px solid var(--act-select-border-color);
  background-color: var(--act-select-bg-color);
}

.select-room-list.active {
  display: block;
}

.select-room-list li {
  display: flex;
}

.select-room-list li:first-of-type {
  font-weight: 700;
  text-transform: uppercase;
}

.select-room-item {
  position: relative;
  margin: 0 0 13px;
  padding: 0 0 0 20px;
  color: var(--act-filter-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.select-room-item.active {
  color: #e51e25;
}

.select-room-item.active::before {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 7px;
  height: 6px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 9 8"%3E%3Cpath fill="%23e50c2c" d="M1.622 2.217a.75.75 0 0 0-1.244.84l1.244-.84ZM3.947 7l-.621.42a.75.75 0 0 0 1.243 0L3.947 7Zm4.675-5.58A.75.75 0 0 0 7.378.58l1.244.84ZM.378 3.056 3.326 7.42l1.243-.84-2.947-4.363-1.244.84Zm4.19 4.364 4.054-6L7.378.58l-4.052 6 1.243.84Z" /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.select-action-wrap {
  z-index: 1;
  position: relative;
  margin: 0 16px 0 auto;
}

@media screen and (min-width: 48em) {
  .select-action-wrap {
    margin: 0 0 0 auto;
  }
}

.select-act-toggle {
  display: flex;
  align-items: center;
  color: var(--act-filter-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  white-space: nowrap;
}

.select-act-toggle.active svg {
  transform: rotate(180deg);
}

.select-act-toggle svg {
  --i-color1: var(--act-filter-color);
  width: 16px;
  height: 16px;
  margin: 0 0 0 2px;
}

.select-act-list {
  display: none;
  position: absolute;
  top: 24px;
  right: 0;
  margin: 0;
  padding: 24px 16px 8px 4px;
  border: 1px solid var(--act-select-border-color);
  background-color: var(--act-select-bg-color);
}

.select-act-list.active {
  display: block;
}

.select-act-list li {
  display: flex;
}

.select-act-list li:first-of-type {
  font-weight: 700;
  text-transform: uppercase;
}

.select-act-item {
  position: relative;
  margin: 0 0 13px;
  padding: 0 0 0 20px;
  color: var(--act-filter-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.select-act-item.active {
  color: #e51e25;
}

.select-act-item.active::before {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 7px;
  height: 6px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 9 8"%3E%3Cpath fill="%23e50c2c" d="M1.622 2.217a.75.75 0 0 0-1.244.84l1.244-.84ZM3.947 7l-.621.42a.75.75 0 0 0 1.243 0L3.947 7Zm4.675-5.58A.75.75 0 0 0 7.378.58l1.244.84ZM.378 3.056 3.326 7.42l1.243-.84-2.947-4.363-1.244.84Zm4.19 4.364 4.054-6L7.378.58l-4.052 6 1.243.84Z" /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.actions-main--filter {
  display: none;
  grid-column: 2;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .actions-main--filter {
    display: flex;
  }
}

.actions-main--button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 0 5px 5px 0;
  padding: 0 16px;
  border: 1px solid var(--act-filter-border-color);
  border-radius: 3px;
  background-color: var(--act-filter-bg-color);
  color: var(--act-filter-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
}

.actions-main--button svg {
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

[theme='dark'] .actions-main--button svg {
  --i-color1: #fff;
  --i-color2: #616161;
}

.actions-main--button.active {
  color: #e51e25;
}

.actions-main--button.active svg {
  --i-color1: #e51e25;
}

.actions-main--grid {
  display: grid;
  z-index: 1;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .actions-main--grid {
    grid-gap: 0 10px;
    grid-template-columns: 215px 1fr;
  }
}

.actions-main--sidebar {
  display: none;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .actions-main--sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.actions-main--aside {
  position: relative;
  margin: 0 0 13px;
  padding: 0 0 0 20px;
  color: var(--act-filter-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.actions-main--aside:first-of-type {
  margin: 0 0 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.actions-main--aside.active {
  color: #e51e25;
}

.actions-main--aside.active::before {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 7px;
  height: 6px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 9 8"%3E%3Cpath fill="%23e50c2c" d="M1.622 2.217a.75.75 0 0 0-1.244.84l1.244-.84ZM3.947 7l-.621.42a.75.75 0 0 0 1.243 0L3.947 7Zm4.675-5.58A.75.75 0 0 0 7.378.58l1.244.84ZM.378 3.056 3.326 7.42l1.243-.84-2.947-4.363-1.244.84Zm4.19 4.364 4.054-6L7.378.58l-4.052 6 1.243.84Z" /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.actions-bot-sidebar {
  display: flex;
  margin: 3px 0 0 20px;
  padding: 16px 12px 0 0;
  border-top: 1px solid var(--act-bot-border-color);
}

.actions-save-sidebar {
  display: flex;
  align-items: center;
  color: #24a1de;
  font-size: 15px;
  line-height: 18px;
  white-space: nowrap;
}

.actions-save-sidebar svg {
  --i-color1: #24a1de;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0 6px 0 0;
}

.actions-bot-main {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 64em) {
  .actions-bot-main {
    display: none;
  }
}

.actions-save-main {
  display: flex;
  align-items: center;
  color: #24a1de;
  font-size: 15px;
  line-height: 18px;
  white-space: nowrap;
}

.actions-save-main svg {
  --i-color1: #24a1de;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0 6px 0 0;
}

.actions-main--content {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .actions-main--content {
    padding: 0 0 0 9px;
  }
}

.actions-main--inner {
  grid-gap: 10px 0;
  display: grid;
  grid-template-columns: 1fr;
}

.actions-card {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #fff;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .actions-card {
    grid-gap: 0 10px;
    grid-template-columns: 200px 1fr 186px;
    padding: 24px 16px;
  }
}

[theme='dark'] .actions-card {
  border-color: #212121;
  background-color: #212121;
}

.actions-card_new {
  border-color: #dcdcdc;
  background-color: #fffbed;
}

[theme='dark'] .actions-card_new {
  border-color: #14651f;
}

.actions-card_new::before {
  display: flex;
  position: absolute;
  top: -6px;
  left: -1px;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 24px;
  background-color: #1eac34;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  content: 'NEW';
}

@media screen and (min-width: 48em) {
  .actions-card_new::before {
    top: 8px;
    left: -10px;
  }
}

.actions-card_new::after {
  display: none;
  position: absolute;
  top: 32px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 5px solid #12661f;
  border-left: 9px solid transparent;
  content: '';
}

@media screen and (min-width: 48em) {
  .actions-card_new::after {
    display: flex;
  }
}

.actions-card--logo {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 48em) {
  .actions-card--logo {
    align-items: center;
  }
}

.actions-card--img {
  display: flex;
  justify-content: center;
  height: 46px;
}

[theme='dark'] .actions-card--img_light {
  display: none;
}

.actions-card--img_dark {
  display: none;
}

[theme='dark'] .actions-card--img_dark {
  display: flex;
}

.actions-card--img img {
  height: 100%;
}

.actions-card--content {
  display: flex;
  flex-direction: column;
}

.actions-card--date {
  display: flex;
  align-items: center;
}

.actions-card--date svg {
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

.actions-card--ihot {
  width: 24px;
  height: 24px;
}

.actions-card--igt {
  width: 26px;
  height: 26px;
}

.actions-card--time {
  margin: 0 12px 0 0;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.actions-card--heading {
  margin: 0 0 5px;
  color: var(--act-card-heading-color);
  font-family: "PT Serif", serif;
  font-size: 18px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .actions-card--heading {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 27px;
  }
}

.actions-card--heading::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.actions-card--rules {
  color: #898989;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (min-width: 48em) {
  .actions-card--rules {
    font-size: 15px;
    line-height: 20px;
  }
}

.actions-card--rules p {
  margin: 0;
  color: #898989;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (min-width: 48em) {
  .actions-card--rules p {
    font-size: 15px;
    line-height: 20px;
  }
}

.actions-card--mark {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 8px 0 0;
}

@media screen and (min-width: 48em) {
  .actions-card--mark {
    margin: 0;
  }
}

.actions-card--tag {
  display: inline-flex;
  margin: 0 5px 4px 0;
  padding: 3px 6px;
  border: 1px solid #757575;
  border-radius: 2px;
  background-color: #fff;
  color: #757575;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

[theme='dark'] .actions-card--tag {
  background-color: transparent;
}

.actions-card--referral {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 16px 0 0;
}

@media screen and (min-width: 48em) {
  .actions-card--referral {
    justify-content: center;
    margin: 0;
  }
}

.actions-card__reg-wrap {
  display: flex;
  position: relative;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 48em) {
  .actions-card__reg-wrap {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 64em) {
  .actions-card__reg-wrap {
    flex-basis: 140px;
  }
}

.actions-card__button-wrapper {
  display: flex;
  z-index: 1;
  position: relative;
}

.actions-card__button-wrapper:has(.actions-card__copy) {
  width: 100%;
}

.actions-card__button {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 79.375em) {
  .actions-card__button {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
  }
}

.actions-card__reg {
  gap: 4px;
  display: flex;
  z-index: 4;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 16px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .actions-card__reg {
    width: 100%;
    min-width: 140px;
  }
}

.actions-card__reg + .actions-card__reg {
  border-radius: 0 5px 5px 0;
}

@media screen and (min-width: 48em) {
  .actions-card__reg + .actions-card__reg {
    border-radius: 5px;
  }
}

.actions-card__reg svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.actions-card__code-wrap {
  gap: 6px;
  display: flex;
}

.actions-card__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  height: 28px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-radius: 5px 0 0 5px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .actions-card__copy {
    flex-basis: 140px;
    border-radius: 5px;
  }
}

.actions-card__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.actions-card__copy strong {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.actions-card__copy-icon {
  flex-shrink: 0;
  width: 12px;
  height: 13px;
}

[theme='dark'] .actions-card__copy-icon {
  --i-color1: var(--text-2-color);
}

.actions-card__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.actions-card__notify.animate {
  display: flex;
  animation-name: slide;
}

.actions-card__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

[theme='dark'] .actions-card__notify-icon {
  --i-color1: #00ff92;
}

@media screen and (min-width: 79.375em) {
  .actions-card__notify-icon {
    width: 20px;
    height: 12px;
  }
}

.actions-card__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

[theme='dark'] .actions-card__notify-text {
  color: #00ff92;
}

@media screen and (min-width: 79.375em) {
  .actions-card__notify-text {
    font-size: 16px;
  }
}

.actions-card__copy-wrap {
  display: flex;
  z-index: 4;
  position: relative;
  justify-content: space-between;
  min-width: 140px;
}

@media screen and (min-width: 48em) {
  .actions-card__copy-wrap {
    min-width: 100%;
  }
}

.actions-card__copy-wrap + .actions-card__reg {
  border-radius: 0 5px 5px 0;
}

@media screen and (min-width: 48em) {
  .actions-card__copy-wrap + .actions-card__reg {
    border-radius: 5px;
  }
}

.actions-card__code-text {
  color: var(--text-3-color, #6d6d6d);
  font-size: 12px;
  font-weight: 400;
}

.actions-card__bonus {
  z-index: 4;
  margin-right: 8px;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-2-color, #202020);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .actions-card__bonus {
    margin-right: 0;
  }
}

.author-wrap {
  --aut-bg-color: var(--layer-2-color, #fff);
  --aut-border-color: var(--line-2-color, #eef0f5);
  --aut-heading-color: var(--text-2-color, #000);
  --aut-subheading-color: var(--text-2-color, #333);
  --aut-color: var(--text-4-color, #808080);
  --aut-link-color: var(--text-4-color, #585858);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 48px 15px 60px;
  background-color: var(--aut-bg-color);
}

@media screen and (min-width: 64em) {
  .author-wrap {
    padding: 90px 30px;
  }
}

.x-crumbs {
  --cbs-color: var(--text-4-color, #000);
  gap: 4px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 24px 15px 0;
}

@media screen and (min-width: 64em) {
  .x-crumbs {
    padding: 32px 30px 0;
  }
}

.x-crumbs--link {
  display: flex;
  align-items: center;
  color: #757575;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .x-crumbs--link {
    font-size: 16px;
  }
}

.x-crumbs--link::before {
  width: 17px;
  height: 8px;
  margin: 0 12px 0 0;
  background-image: url(/nimg/arrow-back.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 17px;
  content: '';
}

.x-crumbs--heading {
  color: var(--cbs-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .x-crumbs--heading {
    font-size: 16px;
  }
}

.author-main {
  width: 100%;
  max-width: 1246px;
}

.author-main--grid {
  grid-gap: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .author-main--grid {
    grid-gap: 0 38px;
    grid-template-columns: 228px 1fr;
  }
}

.author-main--avatar {
  justify-self: center;
  width: 164px;
  height: 164px;
  overflow: hidden;
  border: 8px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--aut-border-color);
}

@media screen and (min-width: 48em) {
  .author-main--avatar {
    width: 224px;
    height: 224px;
  }
}

.author-main--data {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 58px;
  border-bottom: 3px solid var(--aut-border-color);
}

.author-main--data p {
  margin: 0 0 10px;
  color: var(--aut-color);
  font-size: 17px;
  line-height: 23px;
}

.author-main--data a {
  color: var(--aut-color);
  text-decoration: underline;
}

.author-main--name {
  margin: 0 0 20px;
  color: var(--aut-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

@media screen and (min-width: 48em) {
  .author-main--name {
    font-size: 32px;
    line-height: 44px;
  }
}

.author-main--follow {
  gap: 14px;
  display: flex;
  align-items: center;
  margin: 14px 0 0;
}

@media screen and (min-width: 48em) {
  .author-main--follow {
    gap: 24px;
  }
}

.author-main--button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 2px solid #f9c7c8;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

[theme='dark'] .author-main--button {
  border-color: #866a6b;
}

.author-main--button svg {
  flex-shrink: 0;
  margin: 0 6px 0 0;
}

.author-main--social {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-items: center;
  width: 24px;
  height: 24px;
}

.author-submain {
  width: 100%;
  max-width: 1246px;
}

.author-submain--grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .author-submain--grid {
    grid-gap: 0 38px;
    grid-template-columns: 228px 1fr;
  }
}

.author-submain--data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 54px 0 50px;
  border-bottom: 3px solid var(--aut-border-color);
}

@media screen and (min-width: 48em) {
  .author-submain--data {
    grid-column: 2;
  }
}

.author-submain--heading {
  margin: 0 0 23px;
  color: var(--aut-subheading-color);
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
}

.author-submain--link {
  margin: 0 0 10px;
  color: var(--aut-link-color);
  font-size: 16px;
  line-height: 24px;
}

.author-submain--link::after {
  display: inline-flex;
  width: 7px;
  height: 9px;
  margin: 0 0 0 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23585858' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .author-submain--link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23bdbdbd' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

.author-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  padding: 54px 0 0;
}

.author-list--grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .author-list--grid {
    grid-gap: 0 38px;
    grid-template-columns: 228px 1fr;
  }
}

.author-list--heading {
  color: var(--aut-subheading-color);
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 48em) {
  .author-list--heading {
    grid-column: 2;
  }
}

.author-list--data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 32px 0 0;
}

@media screen and (min-width: 48em) {
  .author-list--data {
    grid-column: 2;
  }
}

.author-list--item {
  grid-gap: 24px 0;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--aut-border-color);
}

@media screen and (min-width: 48em) {
  .author-list--item {
    grid-gap: 0 30px;
    grid-template-columns: 252px 1fr;
  }
}

.author-list--image {
  width: 100%;
  max-width: 252px;
}

@media screen and (min-width: 48em) {
  .author-list--image {
    width: 252px;
  }
}

.author-list--content {
  display: flex;
  flex-direction: column;
}

.author-list--link {
  margin: 0 0 10px;
  color: var(--aut-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .author-list--link {
    font-size: 22px;
    line-height: 30px;
  }
}

.author-list--link::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.author-list--lead {
  color: var(--aut-color);
  font-size: 15px;
  line-height: 21px;
}

.author-list--bottom {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  margin: -31px 0 0;
  padding: 30px 0 0;
  border-top: 3px solid var(--aut-border-color);
}

.author-list--more {
  padding: 7px 38px;
  border: 1px solid #e51e25;
  color: #e51e25;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.authors-wrap {
  --auts-bg-color: var(--layer-2-color, #fff);
  --auts-border-color: var(--line-2-color, #eef0f5);
  --auts-line-color: var(--line-2-color, #e1e1e1);
  --auts-heading-color: var(--text-2-color, #000);
  --auts-color: var(--text-4-color, #808080);
  --auts-link-color: var(--text-4-color, #585858);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 48px 15px 60px;
  background-color: var(--auts-bg-color);
}

@media screen and (min-width: 64em) {
  .authors-wrap {
    padding: 80px 30px 90px;
  }
}

.authors-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
}

.authors-list--grid {
  grid-gap: 48px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .authors-list--grid {
    grid-gap: 0 45px;
    grid-template-columns: 190px 1fr;
  }
}

.authors-list--head {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .authors-list--head {
    max-width: 190px;
  }
}

.authors-list--heading {
  margin: 0;
  color: var(--auts-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .authors-list--heading {
    font-size: 28px;
    line-height: 40px;
  }
}

.authors-list--data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 48em) {
  .authors-list--data {
    grid-column: 2;
  }
}

.authors-list--item {
  grid-gap: 16px 0;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--auts-line-color);
}

@media screen and (min-width: 48em) {
  .authors-list--item {
    grid-gap: 0 20px;
    grid-template-columns: 128px 1fr;
  }
}

.authors-list--avatar {
  justify-self: center;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--auts-border-color);
}

.authors-list--content {
  display: flex;
  flex-direction: column;
}

.authors-list--link {
  margin: 0 0 7px;
  color: var(--auts-heading-color);
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .authors-list--link {
    font-size: 22px;
    line-height: 30px;
  }
}

.authors-list--link::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.authors-list--link::after {
  display: inline-flex;
  width: 9px;
  height: 10px;
  margin: 0 0 0 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23000' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

[theme='dark'] .authors-list--link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 7 8'%3E%3Cpath fill='%23bdbdbd' d='M3.487 3.626.774.657c-.27-.296.101-.737.439-.52L6.55 3.57c.21.135.21.442 0 .577L1.213 7.578c-.338.217-.71-.223-.439-.52L3.487 4.09a.343.343 0 0 0 0-.463Z'/%3E%3C/svg%3E");
}

@media screen and (min-width: 48em) {
  .authors-list--link::after {
    width: 11px;
    height: 12px;
    margin: 0 0 0 6px;
  }
}

.authors-list--lead {
  color: var(--auts-color);
  font-size: 15px;
  line-height: 21px;
}

.authors-list--bottom {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  margin: -31px 0 0;
  padding: 30px 0 0;
  border-top: 3px solid var(--auts-border-color);
}

.video-all {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 20px;
}

@media screen and (min-width: 48em) {
  .video-all {
    padding: 25px 15px 20px;
  }
}

@media screen and (min-width: 64em) {
  .video-all {
    max-width: 100%;
    padding: 25px 15px 40px;
  }
}

.video-all--grid {
  grid-gap: 10px 20px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  max-width: 402px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .video-all--grid {
    max-width: 824px;
  }
}

@media screen and (min-width: 64em) {
  .video-all--grid {
    max-width: 1246px;
  }
}

.video-element {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #fff;
}

.video-element--image {
  position: relative;
  width: 100%;
  padding-bottom: 57.236%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-element--image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  background-image: url(/nimg/stream-play.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 46px;
  content: '';
}

.video-element--head {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 19px 15px;
}

@media screen and (min-width: 48em) {
  .video-element--head {
    padding: 23px 15px 25px;
  }
}

.video-element--head .media-meta {
  display: flex;
  position: relative;
  justify-content: center;
}

.video-element--heading {
  margin: 0 0 10px;
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .video-element--heading {
    margin: 0 0 7px;
  }
}

.video-element--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.content-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .content-head {
    padding: 0 15px;
  }
}

@media screen and (min-width: 64em) {
  .content-head {
    padding: 0 30px;
  }
}

.content-head--top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  padding: 17px 15px 14px;
}

@media screen and (min-width: 48em) {
  .content-head--top {
    padding: 32px 0 18px;
    border-bottom: 1px solid #ccc;
  }
}

.content-head--top_clean {
  border: 0;
}

.content-head--heading {
  width: 100%;
  margin: 0 0 10px;
  color: var(--text-2-color, #202020);
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .content-head--heading {
    width: auto;
    margin: 0 20px 6px 0;
    font-size: 24px;
    line-height: 29px;
  }
}

@media screen and (min-width: 48em) {
  .content-head--heading_clean {
    width: auto;
    margin: 0 10px 6px 0;
    font-size: 24px;
    line-height: 29px;
  }
}

@media screen and (min-width: 48em) {
  .content-head--heading_mono {
    color: #202020;
  }
}

.content-head--new {
  padding: 0 4px;
  border: 1px solid #e5e5e5;
  color: #909090;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.content-head--mark {
  display: flex;
  padding: 0 0 0 16px;
  color: #404040;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

.content-head--mark::before {
  position: relative;
  top: 6px;
  left: -8px;
  width: 4px;
  height: 4px;
  transform: rotate(-45deg);
  background-color: #808080;
  content: '';
}

.content-head--note {
  display: flex;
  padding: 0 0 0 8px;
  color: #404040;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

.content-head--note::before {
  position: relative;
  top: 6px;
  left: -8px;
  width: 4px;
  height: 4px;
  transform: rotate(-45deg);
  background-color: #679a13;
  content: '';
}

.content-head--bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1246px;
  padding: 15px;
  background-color: #efefef;
}

@media screen and (min-width: 48em) {
  .content-head--bottom {
    padding: 15px 0;
    background-color: #fafafa;
  }
}

.content-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto 0 0;
}

@media screen and (min-width: 48em) {
  .content-foot {
    padding: 0 15px;
  }
}

.content-foot--pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  padding: 10px 15px 30px;
}

@media screen and (min-width: 48em) {
  .content-foot--pager {
    padding: 20px 0 55px;
  }
}

.comments {
  padding: 40px 0;
}

.article-quiz {
  padding: 0;
  background-color: #333;
}

@media screen and (min-width: 48em) {
  .article-quiz {
    padding: 30px 10%;
  }
}

.article-quiz_pattern4 {
  background-image: url(/temp/quiz/wsop-bracelet-pattern.jpg);
  background-size: 488px;
}

@media (min-resolution: 192dpi) {
  .article-quiz_pattern4 {
    background-image: url(/temp/quiz/wsop-bracelet-pattern@2x.jpg);
  }
}

.article-quiz--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1044px;
  padding: 25px 15px 40px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .article-quiz--inner {
    padding: 25px 25px 40px;
  }
}

.quiz-container {
  margin: 0 0 30px;
}

.news-all {
  width: 100%;
  margin: 0 auto;
  padding: 15px 15px 20px;
}

.news-all--grid {
  grid-gap: 10px 20px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: center;
  max-width: 402px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .news-all--grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 824px;
  }
}

@media screen and (min-width: 64em) {
  .news-all--grid {
    max-width: 1246px;
  }
}

.news-element {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #fff;
}

.news-element--image {
  position: relative;
  width: 100%;
}

.news-element--image::before {
  display: table;
  padding-bottom: 57.236%;
  content: "";
}

.news-element--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-all_blogs .news-element--image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
}

.news-all_blogs .news-element--image img {
  position: static;
  max-width: 100px;
  object-fit: contain;
}

.news-element--head {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 19px 15px;
  border: 1px solid #e5e5e5;
  border-top: 0;
}

@media screen and (min-width: 48em) {
  .news-element--head {
    padding: 23px 15px 25px;
  }
}

.news-element--head .media-meta {
  display: flex;
  position: relative;
  justify-content: center;
}

.news-element--heading {
  margin: 0 0 10px;
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .news-element--heading {
    margin: 0 0 7px;
  }
}

.news-element--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.news-wide {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .news-wide {
    padding: 0 15px 20px;
  }
}

@media screen and (min-width: 64em) {
  .news-wide {
    max-width: 100%;
  }
}

.news-wide--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1246px;
  margin: 0 auto;
}

.wide-item {
  grid-column-gap: 15px;
  display: grid;
  position: relative;
  grid-template-areas: "image ." "image meta" "title title" "content content";
  grid-template-columns: 100px 1fr;
  grid-template-rows: 15px auto;
  padding: 15px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .wide-item {
    grid-column-gap: 20px;
    grid-template-areas: "image ." "image title" "image content" "image meta" "image .";
    grid-template-columns: 236px 1fr;
    grid-template-rows: 40px auto;
    padding: 0 20px 0 0;
  }
}

.wide-item:not(:last-child) {
  margin: 0 0 10px;
}

.wide-item--image {
  display: flex;
  grid-area: image;
  width: 100px;
  height: 80px;
  margin: 0 0 12px;
}

@media screen and (min-width: 48em) {
  .wide-item--image {
    width: 236px;
    height: 168px;
    margin: 0;
  }
}

.wide-item--image img {
  flex-grow: 1;
  object-fit: cover;
}

.news-wide_blogs .wide-item--image {
  align-items: center;
  justify-content: center;
}

.news-wide_blogs .wide-item--image img {
  max-width: 70px;
  object-fit: contain;
}

@media screen and (min-width: 48em) {
  .news-wide_blogs .wide-item--image img {
    max-width: 100px;
  }
}

.wide-item--title {
  grid-area: title;
  margin: 0 0 10px;
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.wide-item--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.wide-item--content {
  grid-area: content;
}

@media screen and (min-width: 48em) {
  .wide-item--content {
    margin: 0 0 10px;
  }
}

.wide-item--content p {
  margin: 0;
  color: #202020;
  font-size: 15px;
  line-height: 22px;
}

.wide-item--meta {
  display: flex;
  grid-area: meta;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .wide-item--meta {
    margin: 0 0 15px;
  }
}

.wide-item--meta .media-meta--comment {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .wide-item--meta .media-meta--comment {
    width: auto;
  }
}

.chat-open {
  --live-chat-button-color: var(--text-3-color, #606060);
  --live-chat-button-bg-color: var(--layer-5-color, #fff);
  --live-chat-button-border-color: var(--line-2-color, #ccc);
  display: flex;
  margin: 0 0 20px;
  padding: 15px 0;
}

.chat-open--button {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--live-chat-button-border-color);
  border-radius: 3px;
  background-color: var(--live-chat-button-bg-color);
}

.chat-open--button span {
  display: flex;
  color: var(--live-chat-button-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.chat-open--button span::before {
  width: 20px;
  height: 28px;
  margin: 0 10px 0 0;
  background-image: url(/nimg/live-chat.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: '';
}

.audio-live {
  --live-line-color: var(--line-1-color, #ccc);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 40px;
  padding: 25px 0;
  border-top: 1px solid var(--live-line-color);
  border-bottom: 1px solid var(--live-line-color);
}

@media screen and (min-width: 48em) {
  .audio-live--player {
    margin: 0 25px 0 0;
  }
}

.audio-live--inner {
  display: flex;
  width: 100%;
  margin: 15px 0 0;
}

@media screen and (min-width: 48em) {
  .audio-live--inner {
    width: auto;
    margin: 0;
  }
}

.audio-live--dl {
  display: flex;
  color: #808080;
  font-size: 11px;
  line-height: 25px;
  text-transform: uppercase;
}

.audio-live--dl::before {
  width: 27px;
  height: 25px;
  margin: 0 6px 0 0;
  background-image: url(/nimg/audio-download.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 27px;
  content: '';
}

.photo-live {
  margin: 0 0 10px;
}

@media screen and (min-width: 48em) {
  .photo-live {
    margin: 0 0 30px;
  }
}

.live-all {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 20px;
}

@media screen and (min-width: 48em) {
  .live-all {
    padding: 20px 15px 40px;
  }
}

@media screen and (min-width: 64em) {
  .live-all {
    max-width: 100%;
  }
}

.live-all--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1246px;
  margin: 0 auto;
}

.drop-header {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .drop-header {
    width: auto;
  }
}

.drop-header--nick {
  display: flex;
  position: relative;
  padding: 0 12px 0 0;
  color: #606060;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.drop-header--nick::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url(/nimg/diary-drop.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (min-width: 48em) {
  .drop-header--nick.active::before {
    z-index: 10;
    position: absolute;
    top: 40px;
    left: 35px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translateX(-50%) translateX(-6px);
    border: solid #bdbdbd;
    border-width: 1px 0 0 1px;
    background-color: #fff;
    content: "";
  }
}

.drop-header--nick.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.drop-header--options {
  display: none;
  top: 37px;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 136px;
  margin: 6px 0 0;
  padding: 8px 0 10px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (min-width: 48em) {
  .drop-header--options {
    z-index: 3;
    position: absolute;
    margin: 0;
    padding: 8px 15px 10px;
    border: 1px solid #bdbdbd;
    background-color: #fff;
  }
}

.drop-header--options.show {
  display: flex;
}

.drop-header--link {
  display: block;
  margin: 0;
  color: #606060;
  font-size: 14px;
  line-height: 30px;
  white-space: nowrap;
}

.drop-header--link:hover {
  color: #000;
}

.live-item {
  grid-column-gap: 15px;
  display: grid;
  position: relative;
  grid-template-areas: "image onair" "image meta" "title title" "content content";
  grid-template-columns: 100px 1fr;
  grid-template-rows: 30px auto;
  padding: 15px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .live-item {
    grid-column-gap: 20px;
    grid-template-areas: "image onair" "image title" "image content" "image meta" "image .";
    grid-template-columns: 320px 1fr;
    grid-template-rows: 40px auto;
    padding: 0 20px 0 0;
  }
}

.live-item:not(:last-child) {
  margin: 0 0 10px;
}

.live-item_active {
  border: 1px solid #ccc;
}

.live-item_active .live-item--onair {
  color: #529410;
}

.live-item_active .live-item--onair::before {
  background-image: url(/nimg/live-onair-on.svg);
}

.live-item--image {
  display: flex;
  grid-area: image;
  width: 100px;
  height: 80px;
  margin: 0 0 12px;
}

@media screen and (min-width: 48em) {
  .live-item--image {
    width: 320px;
    height: 170px;
    margin: 0;
  }
}

.live-item--image img {
  flex-grow: 1;
  object-fit: cover;
}

.live-item--onair {
  display: flex;
  grid-area: onair;
  align-self: end;
  justify-self: start;
  color: #808080;
  font-size: 11px;
  line-height: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .live-item--onair {
    justify-self: end;
  }
}

.live-item--onair::before {
  width: 18px;
  height: 25px;
  margin: 0 4px 0 0;
  background-image: url(/nimg/live-onair.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  content: '';
}

.live-item--title {
  grid-area: title;
  margin: 0 0 10px;
  color: #000;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.live-item--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.live-item--content {
  grid-area: content;
}

@media screen and (min-width: 48em) {
  .live-item--content {
    margin: 0 0 10px;
  }
}

.live-item--content p {
  margin: 0;
  color: #202020;
  font-size: 15px;
  line-height: 22px;
}

.live-item--meta {
  display: flex;
  grid-area: meta;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .live-item--meta {
    margin: 0 0 15px;
  }
}

.live-item--meta .media-meta--comment {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .live-item--meta .media-meta--comment {
    width: auto;
  }
}

.wsop-fantasy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 35px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .wsop-fantasy {
    padding: 70px 0 60px;
  }
}

.wsop-fantasy--head {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.wsop-fantasy--heading {
  display: inline-block;
  margin: 0 0 5px;
  border-bottom: 1px solid #bdbdbd;
  color: #231f20;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .wsop-fantasy--heading {
    font-size: 70px;
  }
}

.wsop-fantasy--subheading {
  margin: 0 0 16px;
  color: #616161;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}

.wsop-fantasy--logo {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}

.wsop-fantasy--logo a {
  width: 94px;
  height: 96px;
}

@media screen and (min-width: 48em) {
  .wsop-fantasy--logo a {
    width: 122px;
    height: 124px;
  }
}

.wsop-fantasy--logo a svg {
  width: 94px;
  height: 96px;
}

@media screen and (min-width: 48em) {
  .wsop-fantasy--logo a svg {
    width: 122px;
    height: 124px;
  }
}

.wsop-fantasy--sublink {
  color: #e31e26;
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.wsop-fantasy--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 15px 0;
}

.wsop-fantasy--note {
  display: flex;
  width: 100%;
  max-width: 590px;
  margin: 0 0 40px;
}

.wsop-fantasy--mark {
  color: #606060;
  font-size: 15px;
}

.wsop-fantasy--mark a {
  color: #404040;
  text-decoration: underline;
}

.wsop-fantasy--sign {
  width: 100px;
  height: 100px;
  margin: 0 20px;
  background-image: url(/graphics/wsop2018/wsop.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100px;
}

.wsop-plus {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  max-width: 390px;
  margin: 0 0 24px;
  padding: 37px 20px 40px;
  background-image: linear-gradient(209deg, #085ab1 7%, #074f9b 95%);
  box-shadow: 2px 2px 0 #02274e;
}

.wsop-plus--heading {
  margin: 0 0 24px;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.wsop-plus--heading::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.wsop-plus--subheading {
  margin: 0 0 24px;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.wsop-plus--button {
  display: flex;
  position: relative;
  width: 192px;
  height: 34px;
  margin: auto 0 0;
}

.wsop-plus--button::before {
  position: absolute;
  top: 7px;
  left: -15px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wsop-plus--button::after {
  position: absolute;
  top: 7px;
  right: -15px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wsop-plus--stars {
  position: relative;
  width: 100%;
}

.wsop-plus--stars::before {
  position: absolute;
  top: 1px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wsop-plus--stars::after {
  position: absolute;
  top: 1px;
  right: -20px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 9'%3E%3Cpath fill='%23E50C2C' d='M4.96.28c.08-.37.6-.37.69 0l.63 2.97c.03.13.14.24.27.27l2.97.63c.37.08.37.62 0 .7l-2.97.63a.35.35 0 0 0-.27.27l-.63 2.97c-.08.37-.61.37-.7 0l-.63-2.97a.35.35 0 0 0-.27-.27l-2.97-.63c-.37-.08-.37-.62 0-.7l2.97-.63a.35.35 0 0 0 .27-.27L4.96.28Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wsop-plus--flag {
  position: relative;
  left: 8px;
  width: 176px;
  height: 34px;
  background-color: #f00;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.wsop-plus--flag span::before {
  display: inline-flex;
  flex-shrink: 0;
  width: 9px;
  height: 14px;
  margin: 0 6px 0 0;
  transform: translateY(1px);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='14' viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.800781 14V0L8.80078 7L0.800781 14Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.wsop-plus--flag::before {
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 17px solid #f00;
  border-bottom: 17px solid #f00;
  border-left: 8px solid transparent;
  content: '';
}

.wsop-plus--flag::after {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 17px solid #f00;
  border-right: 8px solid transparent;
  border-bottom: 17px solid #f00;
  content: '';
}

.promo-table-leader--left {
  flex-basis: 50%;
  padding: 20px 15px;
}

@media screen and (min-width: 64em) {
  .promo-table-leader--left {
    padding: 20px;
  }
}

.promo-table-leader--right {
  flex-basis: 50%;
  padding: 20px 15px 45px;
  background-color: #f3f3f3;
}

@media screen and (min-width: 64em) {
  .promo-table-leader--right {
    padding: 20px 20px 30px;
  }
}

.promo-table-leader--left .table--promo-leader td:nth-of-type(1) {
  color: #9e9e9e;
}

@media screen and (min-width: 48em) {
  .promo-table-leader--left .table--promo-leader td:nth-of-type(1) {
    padding: 0 0 0 10px;
  }
}

.promo-table-leader--right .table--promo-leader th:nth-of-type(1) {
  width: 25%;
}

@media screen and (min-width: 48em) {
  .promo-table-leader--right .table--promo-leader th:nth-of-type(1) {
    width: auto;
  }
}

@media screen and (min-width: 48em) {
  .promo-table-leader--left .table--promo-leader th:nth-of-type(1) {
    width: 60px;
  }
}

.promo-table-leader--left .table--promo-leader th:nth-of-type(2) {
  width: 60%;
}

@media screen and (min-width: 48em) {
  .promo-table-leader--left .table--promo-leader th:nth-of-type(2) {
    width: initial;
  }
}

.ropl-fantasy {
  --rfs-bg-color: var(--layer-3-color, #fafafa);
  --rfs-border-color: var(--line-1-color, #e0e0e0);
  --rfs-head-color: var(--text-1-color, #616161);
  --rfs-nick-color: var(--text-2-color, #333);
  --rfs-score-color: var(--text-2-color, #333);
  --rfs-tfoot-color: var(--text-1-color, #333);
  --rfs-member-color: var(--text-3-color, #616161);
  --rfs-nick-button-bg-color: var(--layer-2-color, #f5f5f5);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 24px 0 0;
  border-radius: 10px;
  background-color: var(--rfs-bg-color);
}

.promo-leaderboard--wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  padding: 25px 0 20px;
}

@media screen and (min-width: 48em) {
  .promo-leaderboard--wrap {
    flex-direction: row;
    padding: 45px 0 70px;
  }
}

.promo-leaderboard--wrap.data--load {
  opacity: .5;
}

.promo-table-leader_left {
  flex-basis: 50%;
  padding: 20px 15px;
}

@media screen and (min-width: 64em) {
  .promo-table-leader_left {
    padding: 20px;
  }
}

.promo-table-leader_right {
  flex-basis: 50%;
  padding: 20px 15px 45px;
}

@media screen and (min-width: 64em) {
  .promo-table-leader_right {
    padding: 20px 20px 30px;
  }
}

.table--promo-leader {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

@media screen and (min-width: 48em) {
  .table--promo-leader {
    table-layout: inherit;
  }
}

.table--promo-leader caption {
  padding: 5px 0;
  color: var(--rfs-head-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

@media screen and (min-width: 48em) {
  .table--promo-leader caption {
    padding: 5px 0 5px 10px;
  }
}

.table--promo-leader th {
  width: 20%;
  padding: 7px 0;
  border-top: 1px solid var(--rfs-border-color);
  border-bottom: 1px solid var(--rfs-border-color);
  color: #e41f26;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

@media screen and (min-width: 48em) {
  .table--promo-leader th {
    width: inherit;
  }
}

.table--promo-leader td {
  padding: 7px 0;
  border-top: 1px solid var(--rfs-border-color);
  border-bottom: 1px solid var(--rfs-border-color);
  color: var(--rfs-nick-color);
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  vertical-align: baseline;
}

.leader--nick {
  position: relative;
  padding: 0 0 0 25px;
  color: var(--rfs-nick-color);
  font-size: 15px;
  cursor: pointer;
}

.leader--nick::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: var(--rfs-nick-button-bg-color);
  background-image: url(/graphics/wsop2018/leader-plus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.leader--nick.active {
  font-weight: 700;
}

.leader--nick.active::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: var(--rfs-nick-button-bg-color);
  background-image: url(/graphics/wsop2018/leader-minus.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 7px;
  content: '';
}

.team--responsive-container {
  display: none;
  padding: 10px 0;
}

.team-member--name {
  color: var(--rfs-member-color);
  font-size: 15px;
  line-height: 20px;
}

.leader--score {
  color: var(--rfs-score-color);
  font-size: 15px;
}

.score--responsive-container {
  display: none;
  padding: 10px 0;
}

.team-member--score {
  color: var(--rfs-member-color);
  font-size: 15px;
  line-height: 20px;
}

.table--promo-leader tfoot td {
  color: var(--rfs-tfoot-color);
  font-size: 15px;
  font-weight: 700;
}

.table--promo-leader th:nth-of-type(1) {
  font-weight: 700;
}

@media screen and (min-width: 48em) {
  .table--promo-leader th:nth-of-type(1) {
    padding: 0 0 0 10px;
  }
}

.promo-table-leader_left .table--promo-leader td:nth-of-type(1) {
  color: #9e9e9e;
}

@media screen and (min-width: 48em) {
  .promo-table-leader_left .table--promo-leader td:nth-of-type(1) {
    padding: 0 0 0 10px;
  }
}

.promo-table-leader_right .table--promo-leader th:nth-of-type(1) {
  width: 80%;
}

@media screen and (min-width: 48em) {
  .promo-table-leader_right .table--promo-leader th:nth-of-type(1) {
    width: auto;
  }
}

@media screen and (min-width: 48em) {
  .promo-table-leader--right .table--promo-leader td:nth-of-type(1) {
    padding: 0 0 0 10px;
  }
}

@media screen and (min-width: 48em) {
  .promo-table-leader_left .table--promo-leader th:nth-of-type(1) {
    width: 60px;
  }
}

.promo-table-leader_left .table--promo-leader th:nth-of-type(2) {
  width: 60%;
}

@media screen and (min-width: 48em) {
  .promo-table-leader_left .table--promo-leader th:nth-of-type(2) {
    width: 280px;
  }
}

.promo-leaderboard--bottom {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.promo-leaderboard--pager {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.promo-leaderboard--pager li a {
  padding: 5px 12px;
  color: #838383;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.promo-leaderboard--pager li a:hover {
  opacity: .7;
}


/* stylelint-disable -- selector-no-qualifying-type */

.promo-leaderboard--pager li.active a {
  color: #e41f26;
}


/* stylelint-enable */

.pager--prev {
  margin: 0 10px;
  background-image: url(/graphics/wsop2018/pager-left-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.pager--next {
  margin: 0 10px;
  background-image: url(/graphics/wsop2018/pager-right-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.global-promo--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1365px;
  margin: 0 auto;
  padding: 40px 10px;
  background-color: #e0e0e0;
  background-image: url(/aimg/rooms/std-background-white.png);
  background-repeat: repeat;
}

@media screen and (min-width: 40em) {
  .global-promo--wrap {
    padding: 40px 20px;
  }
}

.global-promo-header--wrap {
  width: 100%;
  max-width: 1235px;
}

.header--line h1 {
  display: inline-block;
  margin-bottom: -2px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e75113;
}

.global-promo-button--wrap {
  display: flex;
  width: 100%;
  max-width: 1235px;
  padding: 30px 0 40px;
}

.a-promo--link {
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.a-promo--link:hover {
  color: #e31e26;
}

.promo-button--wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pr-sort--button {
  width: 40px;
  height: 40px;
  margin: 0 2px 2px 0;
  background-color: #fff;
  background-position: 7px 50%;
  background-repeat: no-repeat;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
  color: #333;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 40px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .pr-sort--button {
    width: auto;
    padding: 0 8px 0 36px;
  }
}

.pr-sort--button:active {
  top: 0;
}

.pr-sort--button span {
  display: none;
}

@media screen and (min-width: 48em) {
  .pr-sort--button span {
    display: inline;
  }
}

.pr-sort--button_all {
  background-image: url(/aimg/rooms/squares-red.svg);
  background-position: 12px 50%;
  background-size: 17px;
}

.pr-sort--button_all.is-checked {
  background-image: url(/aimg/rooms/squares-white.svg);
}

.pr-sort--button_freeplay {
  background-image: url(/aimg/rooms/freeplay.svg);
  background-position: 9px 50%;
  background-size: 22px;
}

.pr-sort--button_freeplay.is-checked {
  background-image: url(/aimg/rooms/freeplay-white.svg);
}

.pr-sort--button_payment {
  background-image: url(/aimg/rooms/filter-payment.svg);
  background-size: 26px;
}

.pr-sort--button_payment.is-checked {
  background-image: url(/aimg/rooms/filter-payment-white.svg);
}

.pr-sort--button_cash {
  background-image: url(/aimg/rooms/filter-cash.svg);
  background-position: 8px 50%;
  background-size: 24px;
}

.pr-sort--button_cash.is-checked {
  background-image: url(/aimg/rooms/filter-cash-white.svg);
}

.pr-sort--button_event {
  background-image: url(/aimg/rooms/filter-event.svg);
  background-size: 26px;
}

.pr-sort--button_event.is-checked {
  background-image: url(/aimg/rooms/filter-event-white.svg);
}

.pr-sort--button_mobile {
  background-image: url(/aimg/rooms/mobile-app-red.svg);
  background-position: 12px 50%;
  background-size: 14px;
}

.pr-sort--button_mobile.is-checked {
  background-image: url(/aimg/rooms/mobile-app-white.svg);
}

.pr-sort--button.is-checked {
  background-color: #6b6b6b;
  color: #fff;
}

.promo-button--wrap.sort-buttons {
  display: flex;
  margin: 0 0 0 auto;
}

.pre--sort-buttons {
  display: none;
  padding: 10px 5px 10px 0;
  color: #7f7f7f;
  font-size: 18px;
  line-height: 18px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .pre--sort-buttons {
    display: block;
  }
}

.pr-sort--button.all-promo-room {
  width: auto;
  min-width: 122px;
  margin: 0 0 0 10px;
  padding: 0;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  font-family: Roboto, Arial, sans-serif;
  text-align: right;
}

.pr-sort--button.all-promo-room::after {
  display: inline-block;
  position: relative;
  top: -2px;
  right: 0;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  transform: rotate(45deg);
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  content: '';
}

.pr-sort--button.all-promo-room:hover {
  background-color: transparent;
  color: #a5a5a5;
}

.pr-sort--button.all-promo-room.is-checked,
.pr-sort--button.all-promo-room:active {
  outline: none;
  color: #333;
}

.pr-sort--button.date-promo {
  width: auto;
  min-width: 122px;
  margin: 0 0 0 10px;
  padding: 0;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  font-family: Roboto, Arial, sans-serif;
  text-align: right;
}

.pr-sort--button.date-promo::after {
  display: inline-block;
  position: relative;
  top: -2px;
  right: 0;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  transform: rotate(45deg);
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  content: '';
}

.pr-sort--button.date-promo:hover {
  background-color: transparent;
  color: #a5a5a5;
}

.pr-sort--button.date-promo.is-checked,
.pr-sort--button.date-promo:active {
  outline: none;
  color: #333;
}

.logo-placeholder {
  width: 100%;
  height: 100px;
  background-image: url(/aimg/rooms/gt-logo-new.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 188px;
}

.rs-main-header--wrap {
  width: 100%;
  max-width: 1235px;
  padding: 30px 10px 10px;
  background-color: #fff;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .05);
}

@media screen and (min-width: 48em) {
  .rs-main-header--wrap {
    padding: 30px 30px 10px;
  }
}

.rs-promo-header--wrap {
  width: 100%;
  max-width: 1235px;
  margin: 0 0 25px;
}

.rs-promo-header--wrap .rs-header--promo {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
}

.rs-subheader--promo {
  color: #606060;
  font-size: 16px;
}

@media screen and (min-width: 48em) {
  .rs-subheader--promo {
    font-size: 18px;
  }
}

.header-element-item--wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 64em) {
  .header-element-item--wrap {
    flex-wrap: nowrap;
  }
}

.header-element-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 20px;
  padding: 10px 0;
  background-color: #f4f4f4;
  font-size: 13px;
  font-weight: 400;
}

@media screen and (min-width: 64em) {
  .header-element-item {
    width: 49%;
  }
}

.header-element-item:hover .a-promo-link--date {
  color: #e31e26;
}

.grid {
  width: 100%;
  max-width: 1235px;
}

.grid-sizer {
  width: 100%;
}

@media screen and (min-width: 40em) {
  .grid-sizer {
    width: 49%;
  }
}

@media screen and (min-width: 75em) {
  .grid-sizer {
    width: 24%;
  }
}

.element-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 20px;
  padding: 5px 30px;
  background: #fff;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .05);
  color: #333;
}

@media screen and (min-width: 40em) {
  .element-item {
    width: 49%;
  }
}

@media screen and (min-width: 75em) {
  .element-item {
    width: 24%;
  }
}

.element-item.f-date {
  flex-direction: row;
  width: 100%;
  padding: 0;
}

@media screen and (min-width: 40em) {
  .element-item.f-date {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .element-item.f-date {
    width: 49%;
  }
}

@media screen and (min-width: 75em) {
  .element-item.f-date {
    width: 49%;
  }
}

.gutter-sizer {
  width: 0;
}

@media screen and (min-width: 40em) {
  .gutter-sizer {
    width: 2%;
  }
}

@media screen and (min-width: 75em) {
  .gutter-sizer {
    width: 1.33%;
  }
}

.logo-date--wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 100px;
  margin: 0 0 0 auto;
  padding: 10px;
  background-color: #f4f4f4;
}

@media screen and (min-width: 48em) {
  .logo-date--wrap {
    width: 200px;
  }
}

.logo-placeholder--date {
  width: 100%;
  height: 35px;
  background-color: #fff;
  background-image: url(/aimg/rooms/gt-logo-new.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 48em) {
  .logo-placeholder--date {
    height: 70px;
  }
}

.header-link-date--wrap {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}

.link-date--wrap {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}

.promo-offer--head {
  margin: 0 0 10px;
  color: #ef413e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.a-promo-link--date {
  width: 100%;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .a-promo-link--date {
    font-size: 18px;
  }
}

.a-promo-link--date:hover {
  color: #e31e26;
}

.room-promo-heading {
  width: 100%;
  max-width: 1235px;
  margin: 0 0 24px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .room-promo-heading {
    font-size: 28px;
  }
}

.promo-page {
  --pr-bg-color: var(--layer-2a-color, #fff);
  --pr-header-bg-color: var(--layer-2a-color, #fff);
  --pr-header-line-color: var(--line-1-color, #ebedee);
  --pr-header-sep-color: var(--line-1-color, #e3e3e3);
  --pr-header-color: var(--text-1-color, #000);
  --pr-header-icon-color: var(--text-1-color, #000);
  --pr-header-link-color: var(--text-1-color, #000);
  --pr-room-link-color: var(--text-5-color, #212121);
  padding: 30px 0 60px;
  background-color: var(--pr-bg-color);
}

.promo-page .article--photo_center {
  text-align: center;
}

.promo-page--header {
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
  padding: 30px 15px 0;
  background-color: var(--pr-header-bg-color);
}

@media screen and (min-width: 64em) {
  .promo-page--header {
    padding: 30px 30px 0;
  }
}

.promo-page--top {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--pr-header-line-color);
}

@media screen and (min-width: 48em) {
  .promo-page--top {
    flex-direction: row;
    align-items: center;
  }
}

.promo-page--subheader {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 15px;
  border-bottom: 1px dotted #b6b6b6;
}

.promo-page--subheader h2 {
  text-align: left;
}

.promo-page h1,
.promo-page h2,
.promo-page h3 {
  text-align: left;
}

.promo-page .article--inner {
  position: relative;
}

.promo-page--content {
  --pr-block-bg-color: var(--layer-2-color, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 32px 15px 40px;
  background-color: var(--pr-block-bg-color);
}

@media screen and (min-width: 64em) {
  .promo-page--content {
    padding: 32px 30px 40px;
  }
}

.regwrap-heading {
  margin: 0 0 20px;
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .regwrap-heading {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 35px;
  }
}

.promo-line {
  display: flex;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .promo-line {
    margin: 0 auto 0 0;
  }
}

.promo-line--icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 24px 0 0;
  border-radius: 10px;
  background-color: #e51e25;
}

.promo-line--icon svg {
  width: 24px;
  height: 24px;
}

.promo-line--text {
  color: var(--pr-header-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.promo-back {
  display: flex;
  align-items: center;
}

.promo-back a {
  color: var(--pr-header-link-color);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.promo-back span {
  flex-shrink: 0;
  width: 1px;
  height: 10px;
  margin: 0 16px;
  background-color: var(--pr-header-sep-color);
}

@media screen and (min-width: 48em) {
  .promo-back span {
    margin: 0 24px;
  }
}

.promo-back svg {
  --color1: var(--pr-header-icon-color);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

.promo-arrow-left {
  transform: rotate(180deg);
}

.label-promo-expired {
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  padding: 3px 10px;
  background-color: #f05c51;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.promo-page-logo {
  flex-shrink: 0;
  width: 180px;
  height: 70px;
  background-image: url(/aimg/rooms/gt-logo-new.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 180px;
}

.promo-page--review {
  padding: 40px 0 60px;
}

.promo-page--review p {
  color: #333;
  font-size: 16px;
}

.promo-page--quote {
  margin: 10px 0 0;
  padding: 25px 15px;
  background-color: #f5f5f5;
}

@media screen and (min-width: 64em) {
  .promo-page--quote {
    padding: 25px 30px;
  }
}

.promo-page--quote h3 {
  margin-bottom: 18px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.promo-page--quote p {
  color: #707070;
  font-size: 14px;
}

.promo-leaderboard--container {
  width: 100%;
  max-width: 994px;
  padding: 30px 0 40px;
}

.promo-leaderboard--container h2 {
  color: var(--text-2-color, #202020);
}

.promo-leader-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 24px 0 30px;
}

@media screen and (min-width: 64em) {
  .promo-leader-wrap {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.promo-leader-wrap.data--load {
  opacity: .5;
}

.promo-leader-left {
  flex-basis: 50%;
}

@media screen and (min-width: 64em) {
  .promo-leader-left {
    padding-right: 20px;
  }
}

.promo-leader-right {
  flex-basis: 50%;
  margin: 20px 0 0;
}

@media screen and (min-width: 64em) {
  .promo-leader-right {
    margin: 0;
    padding-left: 20px;
  }
}


/* stylelint-disable -- selector-no-qualifying-type */

.table-promo-leader {
  width: 100%;
  border-collapse: collapse;
}

.table-promo-leader th {
  padding: 11px 0;
  color: #df2e1d;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.table-promo-leader th:nth-of-type(1) {
  padding-left: 10px;
}

.table-promo-leader td {
  padding: 11px 0;
  border-top: 1px solid var(--line-2-color, #e0e0e0);
  border-bottom: 1px solid var(--line-2-color, #e0e0e0);
  color: var(--text-2-color, #333);
  font-size: 16px;
  text-align: left;
}

.table-promo-leader td:nth-of-type(1) {
  padding-left: 10px;
  color: #df2e1d;
}

.table-promo-leader tr.active {
  background-color: var(--layer-4-color, #f5f5f5);
  font-weight: 500;
}


/* stylelint-enable */

.promo-leader-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.promo-leaderboard--search {
  flex-basis: 100%;
}

@media screen and (min-width: 64em) {
  .promo-leaderboard--search {
    flex-basis: 50%;
  }
}


/* stylelint-disable -- selector-no-qualifying-type */

.promo-leader-pager {
  display: flex;
  flex-basis: 100%;
  margin: 10px 0 0;
}

@media screen and (min-width: 64em) {
  .promo-leader-pager {
    flex-basis: 50%;
    justify-content: flex-end;
    margin: 0;
  }
}

.promo-leader-pager li a {
  padding: 5px 8px;
  color: #757575;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.promo-leader-pager li a:hover {
  opacity: .7;
}

.promo-leader-pager li.active a {
  color: #df2e1d;
}


/* stylelint-enable */

.promo-pager-prev {
  margin: 0 10px;
  background-image: url(/aimg/rooms/pager-left-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.promo-pager-next {
  margin: 0 10px;
  background-image: url(/aimg/rooms/pager-right-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.promo-search--wrap {
  display: flex;
}

.promo-search--icon {
  padding: 7px 18px;
  border: 1px solid var(--line-2-color, #e0e0e0);
  background-color: var(--layer-4-color, #f1f1f1);
  background-image: url(/aimg/rooms/search.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.promo-search--icon:first-child {
  border-radius: 3px 0 0 3px;
}

.promo-search--icon:last-child {
  border-radius: 0 3px 3px 0;
}

.promo-search--field {
  width: 100%;
  max-width: 220px;
  padding: 7px 10px;
  border: 1px solid var(--line-2-color, #e0e0e0);
  outline: none;
  background-color: var(--layer-1-color, #fff);
  color: var(--text-1-color, #333);
  font-size: 16px;
}

.promo-search--field:first-child {
  border-radius: 3px 0 0 3px;
}

.promo-search--field:last-child {
  border-radius: 0 3px 3px 0;
}

.promo-search--field:not(:first-child) {
  border-left: 0;
}

.promo-search--field:not(:last-child) {
  border-right: 0;
}

.promo-search--button {
  padding: 7px 18px;
  border: 1px solid var(--line-2-color, #e0e0e0);
  outline: none;
  background-color: var(--layer-4-color, #f1f1f1);
  color: var(--text-3-color, #333);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
}

.promo-search--button:first-child {
  border-radius: 3px 0 0 3px;
}

.promo-search--button:last-child {
  border-radius: 0 3px 3px 0;
}

.promo-search--button:active {
  background-color: #f9f9f9;
}


/* stylelint-disable -- selector-no-qualifying-type */

.promo-leaderboard--header {
  gap: 8px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.promo-leaderboard--select {
  display: flex;
}

.promo-leaderboard--top {
  gap: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px 0 0;
}

.promo-leaderboard--top a {
  padding: 0 8px;
  border: 1px solid #757575;
  border-radius: 3px;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
}

.promo-leaderboard--top a:hover {
  opacity: .7;
}

.promo-leaderboard--top a.active {
  border-color: #df2e1d;
  color: #df2e1d;
}


/* stylelint-enable */

.leaderboard-date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 36px 6px 15px;
  border: 1px solid var(--line-2-color, #757575);
  border-radius: 3px;
  background-color: var(--layer-1-color, #fff);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 21'%3E%3Cpath fill='%23757575' d='m4.655 8.545 1.178-1.179 4.411 4.34 4.411-4.34 1.179 1.179-5.59 5.589-5.589-5.59Z'/%3E%3C/svg%3E%0A");
  background-origin: content-box;
  background-position: right -28px center;
  background-repeat: no-repeat;
  background-size: 20px;
  color: var(--text-5-color, #212121);
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
}

.month-pager {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

@media screen and (min-width: 64em) {
  .month-pager {
    flex-basis: 50%;
    margin: 0;
  }
}

.month-pager--date {
  margin: 0 12px;
  color: #df2e1d;
  font-size: 16px;
  font-weight: 500;
}

.month-pager--prev {
  margin: 0;
  padding: 10px;
  background-image: url(/aimg/rooms/month-left-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.month-pager--next {
  margin: 0;
  padding: 10px;
  background-image: url(/aimg/rooms/month-right-arrow.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.month-pager--info {
  width: 100%;
  padding-top: 5px;
  color: #757575;
  font-size: 13px;
}

.promo-months--subheading {
  flex-basis: 100%;
  color: #757575;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 64em) {
  .promo-months--subheading {
    flex-basis: 50%;
    padding: 0 0 0 20px;
  }
}

.intro--back-wrap {
  margin: 0 0 30px;
}

.intro--back-wrap span {
  padding: 0 4px;
  color: #848484;
  font-size: 16px;
}

.intro--back {
  display: inline-block;
  padding: 2px 0 2px 35px;
  background-image: url(/aimg/rooms/icon-arrow-back.svg);
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #848484;
  font-size: 16px;
  text-decoration: none;
}

.intro--back:hover {
  background-color: transparent;
  color: #a5a5a5;
}

.intro--back-next {
  display: inline-block;
  padding: 2px 0;
  color: #848484;
  font-size: 16px;
  text-decoration: none;
}

.intro--back-next:hover {
  color: #a5a5a5;
}

.promo-note-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 24px;
}

.room3-header .promo-note-wrap {
  margin: 20px 0 0;
}

.promo-note {
  grid-gap: 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff8e1;
}

@media screen and (min-width: 48em) {
  .promo-note {
    grid-gap: 0 32px;
    grid-template-columns: 50px 1fr;
    padding: 23px 30px;
  }
}

.promo-note--sign {
  flex-shrink: 0;
  justify-self: center;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 50 50'%3E%3Cpath fill='%23EBA1A1' d='M25 0a25 25 0 1 0 0 50 25 25 0 0 0 0-50Zm17.4 25c0 3.43-1 6.62-2.7 9.32L15.67 10.3A17.29 17.29 0 0 1 25 7.59c9.6 0 17.4 7.8 17.4 17.4ZM7.6 25c0-3.43 1-6.63 2.7-9.32l24.02 24A17.41 17.41 0 0 1 7.6 25Z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}

@media screen and (min-width: 48em) {
  .promo-note--sign {
    align-self: center;
    justify-self: initial;
    width: 50px;
    height: 50px;
  }
}

.promo-note--content {
  color: #000;
}

.room3-header .promo-note--content a {
  color: #456ba5;
  font-weight: 700;
  text-decoration: underline;
}

.promo-note--text {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.promo-note--text strong {
  color: #e18181;
  font-size: 18px;
  font-weight: 700;
}

.promo-note--text a {
  color: #456ba5;
  text-decoration: underline;
}

.page-note {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 24px;
  padding: 0 15px;
}

@media screen and (min-width: 64em) {
  .page-note {
    padding: 0 30px;
  }
}

.page-note--inner {
  gap: 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff8e1;
}

@media screen and (min-width: 48em) {
  .page-note--inner {
    gap: 0 32px;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 23px 30px;
  }
}

.page-note--sign {
  flex-shrink: 0;
  justify-self: center;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 50 50'%3E%3Cpath fill='%23EBA1A1' d='M25 0a25 25 0 1 0 0 50 25 25 0 0 0 0-50Zm17.4 25c0 3.43-1 6.62-2.7 9.32L15.67 10.3A17.29 17.29 0 0 1 25 7.59c9.6 0 17.4 7.8 17.4 17.4ZM7.6 25c0-3.43 1-6.63 2.7-9.32l24.02 24A17.41 17.41 0 0 1 7.6 25Z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}

@media screen and (min-width: 48em) {
  .page-note--sign {
    align-self: center;
    justify-self: initial;
    width: 50px;
    height: 50px;
  }
}

.page-note--content {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.page-note--content a {
  color: #456ba5;
  font-weight: 700;
  text-decoration: underline;
}

.step-prize {
  width: 100%;
  margin: 20px 0 0;
}

.step-prize--heading {
  margin: 0 0 12px;
  color: var(--text-2-color, #333);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.step-prize--grid {
  gap: 8px 16px;
  display: flex;
  flex-wrap: wrap;
}

.step-prize--item {
  gap: 0 8px;
  display: flex;
  padding: 4px 0;
  border-bottom: 2px solid var(--line-1-color, #e0e0e0);
}

.step-prize--place {
  color: #df2e1d;
  font-size: 16px;
  line-height: 16px;
}

.step-prize--nick {
  transform: translateY(1px);
  color: var(--text-2-color, #333);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.step-prize--sum {
  color: var(--text-2-color, #333);
  font-size: 16px;
  line-height: 16px;
}

.freerolls-wrap {
  --xfr-tips-color: var(--custom-xfr-tips-color, #000);
  --xfr-tips-border-color: var(--custom-xfr-tips-border-color, #f9f9f9);
  --xfr-fs-bg-color: var(--custom-xfr-fs-bg-color, #fff);
  --xfr-fs-head-color: var(--custom-xfr-fs-head-color, #000);
  --xfr-fs-subhead-color: var(--custom-xfr-fs-subhead-color, #000);
  --xfr-fs-line-color: var(--custom-xfr-fs-line-color, #f0f0f0);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  background-color: var(--layer-3-color, #fafafa);
}

[theme='dark'] .freerolls-wrap {
  --custom-xfr-tips-border-color: #404040;
  --custom-xfr-tips-color: #fff;
  --custom-xfr-fs-bg-color: #282828;
  --custom-xfr-fs-head-color: #44d487;
  --custom-xfr-fs-subhead-color: #fff;
  --custom-xfr-fs-line-color: #313131;
}

.freerolls-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: .04;
}

[theme='dark'] .freerolls-wrap::before {
  opacity: .02;
}

.freerolls-wrap--head {
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  padding: 48px 24px 15px;
}

@media screen and (min-width: 48em) {
  .freerolls-wrap--head {
    padding: 48px 30px 15px;
  }
}

.freerolls-wrap--heading {
  margin: 0;
  color: var(--text-1-color, #000);
  font-size: 30px;
  line-height: 35px;
}

.freerolls-promo {
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1306px;
  padding: 48px 24px 15px;
}

@media screen and (min-width: 48em) {
  .freerolls-promo {
    padding: 48px 30px 15px;
  }
}

.freerolls-promo--heading {
  margin: 0 0 12px;
  color: var(--text-1-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

.freerolls-pr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.freerolls-pr--item {
  gap: 12px 24px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
  justify-content: center;
  width: 100%;
  max-width: 396px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .freerolls-pr--item {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    max-width: 822px;
  }
}

@media screen and (min-width: 64em) {
  .freerolls-pr--item {
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1246px;
  }
}

.freerolls-pr--item li {
  gap: 12px;
  display: flex;
  position: relative;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #ebedee);
}

@media screen and (min-width: 48em) {
  .freerolls-pr--item li {
    grid-column: span 2;
  }
  .freerolls-pr--item li:nth-last-child(1) {
    grid-column: 2 / span 2;
  }
}

@media screen and (min-width: 64em) {
  .freerolls-pr--item li {
    grid-column: span 1;
  }
  .freerolls-pr--item li:nth-last-child(1) {
    grid-column: auto / span 1;
  }
}

@media screen and (min-width: 70.625em) {
  .freerolls-pr--item li {
    gap: 20px;
    padding: 24px 16px 24px 24px;
  }
}

.freerolls-pr--image {
  aspect-ratio: 137/102;
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 86px;
  border-radius: 10px;
}

@media screen and (min-width: 48em) {
  .freerolls-pr--image {
    max-width: 137px;
  }
}

.freerolls-pr--image img {
  object-fit: cover;
  border-radius: 10px;
}

.freerolls-pr--content {
  display: flex;
}

.freerolls-pr--content a {
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

@media screen and (min-width: 70.625em) {
  .freerolls-pr--content a {
    font-size: 16px;
  }
}

.freerolls-pr--content a::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.freerolls-head {
  width: 100%;
  max-width: 1306px;
  padding: 25px 24px 0;
}

@media screen and (min-width: 64em) {
  .freerolls-head {
    padding: 25px 30px 0;
  }
}

.freerolls-heading {
  margin: 0;
  color: var(--text-1-color, #333);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.free-head {
  --x-free-menu-color: var(--text-1-color, #2e3641);
  --x-free-sep-bg-color: var(--line-1-color, #ebedee);
  gap: 24px 0;
  display: grid;
  z-index: 1;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1306px;
  padding: 18px 24px 0;
}

@media screen and (min-width: 48em) {
  .free-head {
    padding: 18px 30px 0;
  }
}

@media screen and (min-width: 64em) {
  .free-head {
    gap: 0 16px;
    grid-template-columns: 1fr auto;
  }
}

.free-head--wrap {
  display: flex;
  align-items: flex-start;
  order: 2;
}

.free-head--toggle {
  gap: 0 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 32px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.free-head--toggle_active {
  --i-color1: #e51e25;
  border-color: #e51e25;
  background-color: #e51e25;
  color: #fff;
}

.free-toggle-default {
  --i-color1: #000;
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.free-head--toggle_active .free-toggle-default {
  display: none;
}

.free-toggle-active {
  display: none;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.free-head--toggle_active .free-toggle-active {
  display: flex;
}

.free-menu {
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  display: flex;
  position: relative;
  order: 2;
  overflow-x: auto;
}

@media screen and (min-width: 64em) {
  .free-menu {
    flex-wrap: wrap;
    order: 1;
  }
}

.free-menu::-webkit-scrollbar {
  display: none;
}

.free-menu--item {
  position: relative;
  padding: 8px 16px;
  border-radius: 5px;
  color: var(--x-free-menu-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.free-menu--item_active {
  background-color: #e51e25;
  color: #fff;
}

.free-filter--item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 7px 16px 9px;
  border-radius: 10px;
  color: var(--x-feed-menu-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .free-filter--item {
    font-size: 14px;
    line-height: 16px;
  }
}

.free-filter--item_active {
  background-color: #e51e25;
  color: #fff;
}

.free-filter--item:not(:last-child) {
  margin: 0 8px 0 0;
}

.freefilter-wrap {
  --x-free-filter-bg-color: var(--layer-3-color, #fff);
  --x-free-filter-color: var(--text-1-color, #000);
  --x-free-filter-sep-bg-color: var(--line-1-color, #ebedee);
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1306px;
  padding: 20px 24px 10px;
}

@media screen and (min-width: 48em) {
  .freefilter-wrap {
    padding: 45px 30px 30px;
  }
}

.freefilter {
  gap: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--x-free-filter-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

@media screen and (min-width: 48em) {
  .freefilter {
    gap: 0 24px;
    grid-template-columns: 1fr 1px 170px 1px 170px;
    padding: 48px;
  }
}

@media screen and (min-width: 64em) {
  .freefilter {
    gap: 0 48px;
  }
}

.freefilter--cell {
  display: flex;
  flex-direction: column;
}

.freefilter--heading {
  margin: 0 0 32px;
  color: var(--x-free-filter-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.freefilter--sep {
  width: 100%;
  height: 1px;
  background-color: var(--x-free-filter-sep-bg-color);
}

@media screen and (min-width: 48em) {
  .freefilter--sep {
    width: 1px;
    height: 100%;
  }
}

.freefilter--grid {
  gap: 24px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  justify-items: start;
}

.free-ui-label {
  position: relative;
  padding: 0 0 0 40px;
  color: var(--x-free-filter-color);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.free-ui-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: transparent;
}

.free-ui-circle::after {
  display: none;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border: 3px solid #e51e25;
  border-top: 0;
  border-left: 0;
  content: '';
}

.free-ui-input {
  position: absolute;
  opacity: 0;
}

.free-ui-input:checked + .free-ui-circle {
  border-color: #e51e25;
}

.free-ui-input:checked + .free-ui-circle::after {
  display: block;
}

.freerolls {
  --fr-bg-color: var(--layer-3-color, #fff);
  --fr-date-color: var(--text-1-color, #000);
  --fr-day-color: var(--text-5-color, #a8a8a9);
  --fr-room-color: var(--text-1-color, #000);
  --fr-tour-color: var(--text-1-color, #000);
  --fr-rules-color: var(--text-1-color, #000);
  --fr-mark-color: var(--text-5-color, #a8a8a9);
  --fr-tooltip-bg-color: var(--layer-5-color, #616161);
  --fr-tooltip-color: var(--text-4-color, #fff);
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 18px;
  padding: 20px 24px 10px;
}

@media screen and (min-width: 48em) {
  .freerolls {
    padding: 45px 30px 30px;
  }
}

.freeitem {
  gap: 8px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 18px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--fr-bg-color);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #d2d2d2);
}

@media screen and (min-width: 64em) {
  .freeitem {
    gap: 0 16px;
    grid-template-columns: minmax(80px, 130px) 180px minmax(120px, 422px) minmax(120px, 180px) 270px;
    padding: 32px 24px;
  }
}

.freeitem_clear {
  display: none;
  padding: 8px 24px 9px;
  background-color: var(--layer-3-color, #eee);
  box-shadow: none;
}

@media screen and (min-width: 64em) {
  .freeitem_clear {
    display: grid;
  }
}

.freeitem--heading {
  color: var(--text-5-color, #6d6d6d);
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}

.freeitem-time {
  gap: 4px 0;
  display: flex;
  grid-column: 1 / 3;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 64em) {
  .freeitem-time {
    grid-column: initial;
  }
}

.freeitem-time--date {
  color: var(--fr-date-color);
  font-size: 14px;
  line-height: 16px;
}

.freeitem-time--day {
  color: var(--text-5-color, #a8a8a9);
  font-size: 14px;
  line-height: 22px;
}

.freeitem-room {
  gap: 0 12px;
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .freeitem-room {
    grid-column: initial;
  }
}

.freeitem-room--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.freeitem-room--logo img {
  width: 32px;
  height: 32px;
}

.freeitem-room--name {
  color: var(--fr-room-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-decoration: underline;
  white-space: nowrap;
}

.freeitem-tournament {
  gap: 8px 0;
  display: flex;
  grid-column: 1 / 3;
  flex-direction: column;
}

@media screen and (min-width: 64em) {
  .freeitem-tournament {
    grid-column: initial;
  }
}

.freeitem-tournament--name {
  color: var(--fr-tour-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.freeitem-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.freeitem-info--inner {
  display: flex;
  align-items: center;
}

.freeitem-info--rules {
  color: var(--fr-rules-color);
  font-size: 14px;
  line-height: 22px;
}

.freeitem-info--rules a {
  color: var(--fr-rules-color);
  text-decoration: underline;
}

.freeitem-info--notes {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-shrink: 0;
  align-self: flex-start;
  width: 20px;
  height: 21px;
  margin: 0 0 0 4px;
  cursor: pointer;
}

.freeitem-info--notes svg {
  width: inherit;
  height: inherit;
}

.freeitem-info--iconmark {
  display: flex;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

.freeitem-info--iconmark svg {
  width: 16px;
  height: 16px;
}

.freeitem-info--mark {
  margin: 0 8px 0 0;
  color: var(--fr-mark-color);
  font-size: 14px;
  line-height: 24px;
}

.freeitem-info--pass {
  margin: 0 8px 0 0;
  color: #e51e25;
  font-size: 14px;
  line-height: 24px;
}

.freeitem-prize {
  display: flex;
  grid-column: 1;
  grid-row: 4;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .freeitem-prize {
    grid-column: initial;
    grid-row: initial;
  }
}

.freeitem-prize--data {
  gap: 0 8px;
  display: flex;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid #f1c259;
  border-radius: 50px;
  background-color: #fdf6bc;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.freeitem-prize--data svg {
  flex-shrink: 0;
  width: 19px;
  height: 18px;
}

.freeroll-tip {
  width: 100%;
  max-width: 360px;
  padding: 16px 20px;
  background-color: var(--layer-4-color, #f9f7f0);
}

.freeroll-tip p {
  margin: 0;
  color: var(--text-2-color, #202020);
  font-size: 14px;
  line-height: 20px;
}

.freeitem-info--click {
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 48em) {
  .freeitem-info--click:active {
    top: 1px;
  }
}

.freeitem-info--click svg {
  width: 16px;
  height: 16px;
}

.freeitem-info--click span {
  z-index: 1;
  position: absolute;
  top: -30px;
  left: -50px;
  padding: 6px 8px 6px;
  border-radius: 2px;
  background-color: var(--fr-tooltip-bg-color);
  color: var(--fr-tooltip-color);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.freeitem-info--click span::after {
  position: absolute;
  bottom: -6px;
  left: 55px;
  width: 0;
  height: 0;
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--fr-tooltip-bg-color) transparent transparent transparent;
  content: '';
}

.freeitem-cta {
  gap: 4px 0;
  display: flex;
  grid-column: 2;
  grid-row: 4;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 64em) {
  .freeitem-cta {
    grid-column: initial;
    grid-row: initial;
  }
}

.freeitem-cta--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 30px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.freerolls--toggle {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0 0;
}

.freerolls--line {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.freerolls--line::after,
.freerolls--line::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #e7e7e7);
  content: '';
}

.freerolls--more {
  padding: 10px 24px;
  border: 1px solid var(--line-2-color, #000);
  border-radius: 10px;
  background-color: var(--layer-5-color, #fff);
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.widget-tgm2-wrap {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  padding: 32px 24px;
}

@media screen and (min-width: 48em) {
  .widget-tgm2-wrap {
    padding: 32px 30px;
  }
}

.widget-tgm2 {
  --tgm-bg-color: var(--layer-4-color, #fff);
  --tgm-head-color: var(--text-1-color, #000);
  gap: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  padding: 32px 24px;
  border-radius: 10px;
  background-color: var(--tgm-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

@media screen and (min-width: 64em) {
  .widget-tgm2 {
    gap: 0 48px;
    grid-template-columns: 1fr 302px;
    align-items: center;
    padding: 48px 64px;
  }
}

.widget-tgm2--head {
  display: flex;
  align-items: center;
}

.widget-tgm2--logo {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  margin: 0 8px 0 0;
}

[theme='dark'] .widget-tgm2--logo {
  --i-color1: #fff;
}

@media screen and (min-width: 48em) {
  .widget-tgm2--logo {
    width: 99px;
    height: 99px;
    margin: 0 48px 0 0;
  }
}

.widget-tgm2--heading {
  color: var(--tgm-head-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .widget-tgm2--heading {
    font-size: 30px;
    line-height: 40px;
  }
}

.widget-tgm2--subheading {
  color: var(--tgm-head-color);
  font-size: 16px;
  line-height: 24px;
}

.widget-tgm2--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 302px;
  height: 64px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.widget-tgm2--link:hover {
  background-color: #b9253b;
}

.widget-tgm2--link svg {
  --i-color1: #fff;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
}

.freerolls-tips {
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .freerolls-tips {
    padding: 0 30px;
  }
}

.freerolls-tips--item {
  padding: 36px 0;
}

.freerolls-tips--item:not(:last-child) {
  border-bottom: 1px solid var(--xfr-tips-border-color);
}

.freerolls-tips--item h2 {
  margin: 0 0 16px;
  color: var(--xfr-tips-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.freerolls-tips--item p {
  margin: 0;
  color: var(--xfr-tips-color);
  font-size: 16px;
  line-height: 24px;
}

.freerolls-tips--item p:not(:last-child) {
  margin: 0 0 24px;
}

.freerolls-tips--item a {
  color: var(--xfr-tips-color);
  text-decoration: underline;
}

.freerolls-fast-support {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 20px 24px;
}

@media screen and (min-width: 48em) {
  .freerolls-fast-support {
    padding: 30px 30px 50px;
  }
}

.room-fs {
  --ar-fs-bg-color: var(--custom-ar-fs-bg-color, #fff);
  --ar-fs-head-color: var(--custom-ar-fs-head-color, #000);
  --ar-fs-subhead-color: var(--custom-ar-fs-subhead-color, #000);
  --ar-fs-line-color: var(--custom-ar-fs-line-color, #f0f0f0);
  gap: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 32px 24px;
  border: 4px solid #44d587;
  border-radius: 10px;
  background-color: var(--ar-fs-bg-color);
}

[theme='dark'] .room-fs {
  --custom-ar-fs-bg-color: #282828;
  --custom-ar-fs-head-color: #44d487;
  --custom-ar-fs-subhead-color: #fff;
  --custom-ar-fs-line-color: #313131;
}

@media screen and (min-width: 64em) {
  .room-fs {
    gap: 0 20px;
    grid-template-columns: 1fr 1fr;
    padding: 54px 64px;
  }
}

.room-fs--top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .room-fs--top {
    flex-direction: row;
    padding: 0 20px 0 0;
  }
}

.room-fs--logo {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .room-fs--logo {
    margin: 0 32px 0 0;
  }
}

.room-fs--logo svg {
  --i-color1: #44d487;
  --i-color3: #fff;
  width: 100px;
  height: 96px;
}

[theme='dark'] .room-fs--logo svg {
  --i-color1: #fff;
  --i-color3: #44d487;
}

.room-fs--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .room-fs--wrap {
    align-items: flex-start;
  }
}

.room-fs--heading {
  margin: 0 0 14px;
  color: var(--ar-fs-head-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .room-fs--heading {
    font-size: 30px;
    line-height: 40px;
  }
}

.room-fs--subheading {
  color: var(--ar-fs-subhead-color);
  font-size: 16px;
  line-height: 24px;
}

.room-fs--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .room-fs--chat {
    grid-column: span 2;
  }
}

.room-fs--chat:hover {
  background-color: #b9253b;
}

.room-fs--chat svg {
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 40em) {
  .room-fs--chat svg {
    margin: 0 16px 0 0;
  }
}

.room-fs--chat span {
  display: none;
}

@media screen and (min-width: 40em) {
  .room-fs--chat span {
    display: flex;
  }
}

.room-fs--contact {
  gap: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-fs--contact_top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--ar-fs-line-color);
}

@media screen and (min-width: 40em) {
  .room-fs--contact_top {
    grid-template-columns: repeat(5, 1fr);
  }
}

.fs-i-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e51e25;
  border-radius: 10px;
}

.fs-i-btn:hover {
  --i-color1: #fff;
  background-color: #e51e25;
}

.fs-i-btn svg {
  width: 24px;
  height: 24px;
}

.fs-t-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  padding: 0 12px;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.fs-t-btn:hover {
  --i-color1: #b9253b;
  color: #b9253b;
}

.fs-t-btn svg {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.fs-t-sep {
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 4px;
  background-color: var(--ar-fs-line-color);
}

.freerolls-fs {
  gap: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 32px 24px;
  border: 4px solid #44d587;
  border-radius: 10px;
  background-color: var(--xfr-fs-bg-color);
}

@media screen and (min-width: 64em) {
  .freerolls-fs {
    gap: 0 20px;
    grid-template-columns: 1fr 1fr;
    padding: 54px 64px;
  }
}

.freerolls-fs--top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .freerolls-fs--top {
    flex-direction: row;
    padding: 0 20px 0 0;
  }
}

.freerolls-fs--logo {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .freerolls-fs--logo {
    margin: 0 32px 0 0;
  }
}

.freerolls-fs--logo svg {
  --i-color1: #44d487;
  --i-color3: #fff;
  width: 100px;
  height: 96px;
}

[theme='dark'] .freerolls-fs--logo svg {
  --i-color1: #fff;
  --i-color3: #44d487;
}

.freerolls-fs--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .freerolls-fs--wrap {
    align-items: flex-start;
  }
}

.freerolls-fs--heading {
  margin: 0 0 14px;
  color: var(--xfr-fs-head-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .freerolls-fs--heading {
    font-size: 30px;
    line-height: 40px;
  }
}

.freerolls-fs--subheading {
  color: var(--xfr-fs-subhead-color);
  font-size: 16px;
  line-height: 24px;
}

.freerolls-news {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  padding: 30px 24px;
}

@media screen and (min-width: 48em) {
  .freerolls-news {
    padding: 50px 30px 80px;
  }
}

.freerolls-article {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
}

@media screen and (min-width: 48em) {
  .freerolls-article {
    padding: 0 30px 24px;
  }
}

.where-to-start .freerolls-article {
  max-width: initial;
  margin: 103px auto 0;
}

@media screen and (min-width: 48em) {
  .where-to-start .freerolls-article {
    padding: 0;
  }
}

.freerolls-article--wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--layer-2a-color, #fff);
}

.freerolls-article--wrap .article {
  border-bottom: 0;
}

.site-review-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 20px 15px 50px;
}

.site-review-grid {
  grid-gap: 10px 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  width: 100%;
  max-width: 964px;
  margin: 0 auto;
}

@media screen and (min-width: 30em) {
  .site-review-grid {
    grid-template-columns: repeat(auto-fill, minmax(416px, 1fr));
  }
}

.site-review {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px;
  background-color: #fff;
}

.site-review--header {
  grid-gap: 0 10px;
  display: grid;
  grid-template-columns: 34px 1fr;
  margin: 0 0 5px;
}

.site-review--image {
  display: flex;
  width: 34px;
  height: 34px;
}

.site-review--image img {
  border-radius: 50%;
}

.site-review--data {
  display: flex;
  flex-direction: column;
}

.site-review--name {
  margin: 0 0 4px;
  color: #424242;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
}

.site-review--meta {
  display: flex;
}

.site-review--score {
  position: relative;
  width: 80px;
  height: 16px;
  margin: 0 8px 0 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDguOSIgaGVpZ2h0PSIxMDMuNiIgdmlld0JveD0iMCAwIDEwOC45IDEwMy42Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2UzZTZlNjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnN0YXJfMDwvdGl0bGU+PGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTA4LjkgMzkuNiA3MS4zIDM0LjEgNTQuNCAwIDM3LjYgMzQuMSAwIDM5LjYgMjcuMiA2Ni4xIDIwLjggMTAzLjYgNTQuNCA4NS45IDg4LjEgMTAzLjYgODEuNyA2Ni4xIDEwOC45IDM5LjYiLz48L2c+PC9nPjwvc3ZnPg0K);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 16px;
}

.site-review--value {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: url(data:image/svg+xml;base64,PHN2Zw0KCXhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwOC45IiBoZWlnaHQ9IjEwMy42IiB2aWV3Qm94PSIwIDAgMTA4LjkgMTAzLjYiPg0KCTxkZWZzPg0KCQk8c3R5bGU+LmNscy0xe2ZpbGw6I2YxYzk0Nzt9PC9zdHlsZT4NCgk8L2RlZnM+DQoJPHRpdGxlPnN0YXIxPC90aXRsZT4NCgk8ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj4NCgkJPGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj4NCgkJCTxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI1NC40IDAgNzEuMyAzNC4xIDEwOC45IDM5LjYgODEuNyA2Ni4xIDg4LjEgMTAzLjYgNTQuNCA4NS45IDIwLjggMTAzLjYgMjcuMiA2Ni4xIDAgMzkuNiAzNy42IDM0LjEgNTQuNCAwIi8+DQoJCTwvZz4NCgk8L2c+DQo8L3N2Zz4NCg==);
  background-repeat: repeat-x;
  background-size: 16px;
}

[data-rating='1'] .site-review--value {
  width: 20%;
}

[data-rating='2'] .site-review--value {
  width: 40%;
}

[data-rating='3'] .site-review--value {
  width: 60%;
}

[data-rating='4'] .site-review--value {
  width: 80%;
}

[data-rating='5'] .site-review--value {
  width: 100%;
}

.site-review--date {
  color: #757575;
  font-size: 13px;
  line-height: 16px;
}

.site-review--text {
  color: #212121;
  font-size: 14px;
  line-height: 1.25;
}

.ropl .theme-button {
  pointer-events: none;
}

.ropl-wrap {
  --rpl-opacity-bg-image: var(--custom-rpl-opacity-bg-image, .04);
  --rpl-bg-color: var(--custom-rpl-bg-color, #fff);
  --rpl-heading-color: var(--custom-rpl-heading-color, #757575);
  --rpl-date-color: var(--custom-rpl-date-color, #000);
  --rpl-support-color: var(--custom-rpl-support-color, #000);
  --rpl-tour-date-color: var(--custom-rpl-tour-date-color, #000);
  --rpl-result-bg-color: var(--custom-rpl-result-bg-color, #fff);
  --rpl-result-nick-color: var(--custom-rpl-result-nick-color, #424242);
  --rpl-result-data-color: var(--custom-rpl-result-data-color, #000);
  --rpr-result-bg-color: var(--custom-rpr-result-bg-color, #fff);
  --rpr-result-nick-color: var(--custom-rpr-result-nick-color, #424242);
  --rpr-result-data-color: var(--custom-rpr-result-data-color, #000);
  --rpl-tour-info-color: var(--custom-rpl-tour-info-color, #000);
  --rpl-contest-item-bg-color: var(--custom-rpl-contest-item-bg-color, #fff);
  --rpl-locked-bg-color: var(--custom-rpl-locked-bg-color, #eee);
  --rpl-locked-color: var(--custom-rpl-locked-color, #757575);
  --rpl-contest-label-color: var(--custom-rpl-contest-label-color, #757575);
  --rpl-contest-item-color: var(--custom-rpl-contest-item-color, #000);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 32px 0 0;
  background-color: var(--rpl-bg-color);
}

[theme='dark'] .ropl-wrap {
  --custom-rpl-opacity-bg-image: .02;
  --custom-rpl-bg-color: #313131;
  --custom-rpl-heading-color: #eee;
  --custom-rpl-date-color: #fff;
  --custom-rpl-result-bg-color: #3a3a3a;
  --custom-rpl-result-nick-color: #bdbdbd;
  --custom-rpl-result-data-color: #fff;
  --custom-rpr-result-bg-color: #212121;
  --custom-rpr-result-nick-color: #bdbdbd;
  --custom-rpr-result-data-color: #fff;
  --custom-rpl-support-color: #bdbdbd;
  --custom-rpl-tour-date-color: #fff;
  --custom-rpl-tour-info-color: #bdbdbd;
  --custom-rpl-contest-item-bg-color: #2a2a2a;
  --custom-rpl-locked-bg-color: #3a3a3a;
  --custom-rpl-locked-color: #9e9e9e;
  --custom-rpl-contest-label-color: #bdbdbd;
  --custom-rpl-contest-item-color: #fff;
}

.ropl-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--rpl-opacity-bg-image);
}

.ropl-contest {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 24px 32px;
}

@media screen and (min-width: 48em) {
  .ropl-contest {
    padding: 0 30px 32px;
  }
}

.ropl-contest--grid {
  gap: 16px 30px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
  justify-content: center;
  width: 100%;
  max-width: 396px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .ropl-contest--grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    max-width: 822px;
  }
}

@media screen and (min-width: 64em) {
  .ropl-contest--grid {
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    max-width: 1246px;
  }
}

.ropl-contest--item {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  max-width: 395px;
  padding: 40px 24px 24px;
  border: 2px solid #44af52;
  border-radius: 10px;
  background-color: var(--rpl-contest-item-bg-color);
}

@media screen and (min-width: 48em) {
  .ropl-contest--item {
    grid-column: span 2;
    padding: 40px 32px 24px;
  }
  .ropl-contest--item:nth-last-child(1) {
    grid-column: 2 / span 2;
  }
}

@media screen and (min-width: 64em) {
  .ropl-contest--item {
    grid-column: span 1;
  }
  .ropl-contest--item:nth-last-child(1) {
    grid-column: auto / span 1;
  }
}

.ropl-contest--item_locked {
  padding: 16px 24px 24px;
  border-color: rgba(68, 175, 82, .25);
  background-color: var(--rpl-locked-bg-color);
}

@media screen and (min-width: 48em) {
  .ropl-contest--item_locked {
    padding: 16px 32px 24px;
  }
}

.ropl-contest--label {
  display: none;
  margin: 0 0 8px;
  color: var(--rpl-contest-label-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.ropl-contest--item_locked .ropl-contest--label {
  display: flex;
}

.ropl-contest--label svg {
  --i-color1: #000;
  width: 11px;
  height: 14px;
  margin: 0 6px 0 0;
}

[theme='dark'] .ropl-contest--label svg {
  --i-color1: #fff;
}

.ropl-contest--text {
  padding: 16px 0 0;
  color: var(--rpl-contest-item-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.ropl-contest--text a {
  color: var(--rpl-contest-item-color);
  text-decoration: underline;
}

.ropl-contest--item_locked .ropl-contest--text {
  color: var(--rpl-locked-color);
}

.ropl-contest--item_locked .ropl-contest--text a {
  color: var(--rpl-locked-color);
}

.ropl-contest--image {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.ropl-contest--item_locked .ropl-contest--image {
  pointer-events: none;
}

.ropl-contest--image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  vertical-align: middle;
}

.ropl-contest--item_locked .ropl-contest--image img {
  opacity: .3;
}

.ropl-head {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 24px 24px 48px;
}

@media screen and (min-width: 48em) {
  .ropl-head {
    padding: 24px 30px 48px;
  }
}

@media screen and (min-width: 64em) {
  .ropl-head {
    padding: 24px 30px;
  }
}

.ropl-head--grid {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .ropl-head--grid {
    gap: 0 16px;
    grid-template-columns: 280px 1fr 280px;
  }
}

.ropl-head--tour {
  gap: 8px 0;
  display: grid;
  grid-row: 2;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .ropl-head--tour {
    grid-row: 1;
  }
}

.ropl-tour-date {
  color: var(--rpl-tour-date-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.ropl-tour-name {
  color: var(--rpl-tour-info-color);
  font-size: 16px;
  line-height: 24px;
}

.ropl-tour-gr {
  color: var(--rpl-tour-info-color);
  font-size: 14px;
  line-height: 24px;
}

.ropl-tour-time {
  color: #a40000;
  font-size: 24px;
  line-height: 24px;
}

.ropl-head--logo {
  grid-column: span 2;
  grid-row: 1;
  justify-self: center;
  max-width: 500px;
}

@media screen and (min-width: 64em) {
  .ropl-head--logo {
    grid-column: span 1;
  }
}

.ropl-head--logo_light {
  display: flex;
}

[theme='dark'] .ropl-head--logo_light {
  display: none;
}

.ropl-head--logo_dark {
  display: none;
}

[theme='dark'] .ropl-head--logo_dark {
  display: flex;
}

.ropl-head--support {
  gap: 8px 0;
  display: grid;
  grid-row: 2;
  grid-template-columns: 1fr;
  justify-self: end;
}

@media screen and (min-width: 64em) {
  .ropl-head--support {
    grid-row: 1;
  }
}

.ropl-support-item {
  display: flex;
  align-items: center;
  color: var(--custom-rpl-support-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.ropl-support-item svg {
  --i-color1: #a8a8a9;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.ropl-adv {
  display: flex;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 24px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .ropl-adv {
    padding: 0 30px;
  }
}

.ropl-adv--item {
  display: flex;
  width: 122px;
  margin: 0 12px;
}

.ropl-adv--image {
  display: flex;
  align-items: flex-start;
}

.ropl-adv--image_light {
  display: flex;
}

[theme='dark'] .ropl-adv--image_light {
  display: none;
}

.ropl-adv--image_dark {
  display: none;
}

[theme='dark'] .ropl-adv--image_dark {
  display: flex;
}

.ropl-schedule {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 24px 24px;
}

@media screen and (min-width: 48em) {
  .ropl-schedule {
    padding: 0 30px 48px;
  }
}

.ropl-schedule--head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ropl-schedule--heading {
  margin: 0 0 16px;
  color: var(--rpl-heading-color);
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.ropl-schedule--heading a {
  border-bottom: 1px dashed var(--rpl-heading-color);
  color: var(--rpl-heading-color);
}

.ropl-schedule--reglink {
  height: 40px;
  margin: 0 0 24px;
  padding: 12px 24px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.ropl-schedule--date {
  color: var(--rpl-date-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.ropl-bottom {
  display: flex;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 24px;
}

@media screen and (min-width: 48em) {
  .ropl-bottom {
    padding: 24px 30px;
  }
}

.ropl-bottom--item {
  display: flex;
  align-items: center;
  margin: 0 16px 16px;
}

.ropl-bottom--image {
  display: flex;
  align-items: flex-start;
  max-width: 130px;
}

.rp-tours {
  --rpr-bg-color: var(--layer-3-color, #f1f1f1);
  --rpr-head-color: var(--text-5-color, #a8a8a9);
  --rpr-date-color: var(--text-1-color, #000);
  --rpr-day-color: var(--text-5-color, #a8a8a9);
  --rpr-tour-color: var(--text-1-color, #000);
  --rpr-button-bg-color: var(--custom-rpr-button-bg-color, #e0e0e0);
  --rpr-button-color: var(--custom-rpr-button-color, #fff);
  --rpr-buyin-color: var(--custom-rpr-buyin-color, #000);
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  margin: 0 0 24px;
  padding: 40px 0 24px;
}

[theme='dark'] .rp-tours {
  --custom-rpr-button-bg-color: #424242;
  --custom-rpr-button-color: #757575;
  --custom-rpr-buyin-color: #fff;
}

@media screen and (min-width: 64em) {
  .rp-tours {
    padding: 24px 0;
  }
}

.rprow {
  gap: 12px 16px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 4px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: var(--rpr-bg-color);
}

@media screen and (min-width: 48em) {
  .rprow {
    grid-template-columns: minmax(120px, 230px) 100px 1fr;
    padding: 12px 32px;
  }
}

@media screen and (min-width: 64em) {
  .rprow {
    gap: 0 16px;
    grid-template-columns: minmax(80px, 160px) 100px 1fr minmax(120px, 230px);
  }
}

.rprow_clear {
  display: none;
  margin: 0;
  padding: 0 32px 8px;
  background-color: transparent;
}

@media screen and (min-width: 64em) {
  .rprow_clear {
    display: grid;
  }
}

.rprow--heading {
  color: var(--rpr-head-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-time {
  display: flex;
  flex-direction: column;
}

.rprow-time--date {
  color: var(--rpr-date-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-time--day {
  color: var(--rpr-day-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-buyin {
  display: flex;
}

.rprow-buyin--data {
  color: var(--rpr-buyin-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-tournament {
  display: flex;
  flex-direction: column;
}

.rprow-tournament--name {
  color: var(--rpr-tour-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.rprow-tournament--gr {
  color: var(--rpr-tour-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-result {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 64em) {
  .rprow-result {
    align-items: flex-end;
  }
}

.rprow-result--button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 16px;
  border-radius: 5px;
  background-color: var(--rpr-button-bg-color);
  color: var(--rpr-button-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.rprow-result--button_active {
  --rpr-button-color: #fff;
  background-color: #e51e25;
}

.rprow-result--inner {
  display: none;
  z-index: 2;
  position: absolute;
  top: 32px;
  flex-direction: column;
  padding: 16px 12px 16px;
  border-radius: 5px;
  background-color: var(--rpl-result-bg-color);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
}

.rprow-result--inner_active {
  display: flex;
}

.rprow-result--item {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rprow-result--nick {
  color: var(--rpl-result-nick-color);
  font-size: 14px;
  line-height: 24px;
}

.rprow-result--data {
  color: var(--rpl-result-data-color);
  font-size: 14px;
  line-height: 24px;
}

.teams-schedule {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
}

.teams-schedule--head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams-schedule--heading {
  margin: 0 0 16px;
  color: var(--rpl-heading-color);
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.teams-schedule--heading a {
  border-bottom: 1px dashed var(--rpl-heading-color);
  color: var(--rpl-heading-color);
}

.teams-schedule--reglink {
  height: 40px;
  padding: 12px 24px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.rp-teams {
  --tfr-bg-color: var(--layer-3-color, #f1f1f1);
  --tfr-head-color: var(--text-5-color, #a8a8a9);
  --tfr-date-color: var(--text-1-color, #000);
  --tfr-score-color: var(--text-1-color, #000);
  --tfr-name-color: var(--text-1-color, #000);
  --tfr-score-head-color: var(--text-5-color, #a8a8a9);
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  padding: 40px 0 24px;
}

@media screen and (min-width: 64em) {
  .rp-teams {
    padding: 24px 0;
  }
}

.tmrow {
  gap: 8px 16px;
  display: grid;
  grid-template-columns: 1fr 60px;
  width: 100%;
  margin: 0 0 4px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: var(--tfr-bg-color);
}

@media screen and (min-width: 48em) {
  .tmrow {
    gap: 0 16px;
    grid-template-columns: 24px 1fr 60px;
    padding: 12px 32px;
  }
}

@media screen and (min-width: 64em) {
  .tmrow {
    grid-template-columns: minmax(80px, 160px) 1fr 60px;
  }
}

.tmrow_clear {
  display: none;
  margin: 0;
  padding: 0 32px 8px;
  background-color: transparent;
}

@media screen and (min-width: 48em) {
  .tmrow_clear {
    display: grid;
  }
}

.tmrow--heading {
  color: var(--tfr-head-color);
  font-size: 14px;
  line-height: 24px;
}

.tmrow-number {
  display: flex;
  flex-direction: column;
}

.tmrow-number--head {
  display: flex;
  color: var(--tfr-score-head-color);
  font-size: 12px;
  line-height: 12px;
}

@media screen and (min-width: 48em) {
  .tmrow-number--head {
    display: none;
  }
}

.tmrow-number--data {
  color: var(--tfr-date-color);
  font-size: 14px;
  line-height: 24px;
}

.tmrow-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tmrow-score--head {
  display: flex;
  color: var(--tfr-score-head-color);
  font-size: 12px;
  line-height: 12px;
}

@media screen and (min-width: 48em) {
  .tmrow-score--head {
    display: none;
  }
}

.tmrow-score--data {
  color: var(--tfr-score-color);
  font-size: 14px;
  line-height: 24px;
}

.tmrow-result {
  display: flex;
  grid-column: span 2;
  grid-row: 2;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .tmrow-result {
    grid-column: span 1;
    grid-row: initial;
  }
}

.tmrow-result--button {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  min-height: 24px;
  padding: 0 0 0 32px;
  color: var(--tfr-name-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.tmrow-result--button_top {
  color: #a40000;
}

.tmrow-result--button::before {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ebedee;
  border-radius: 5px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23C4C4C4' d='M7 0h2v16H7z' /%3E%3Cpath fill='%23C4C4C4' d='M16 7v2H0V7z' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

[theme='dark'] .tmrow-result--button::before {
  border-color: #616161;
  background-color: #424242;
}

.tmrow-result--button_active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 2'%3E%3Cpath fill='%23C4C4C4' d='M16 0v2H0V0z' /%3E%3C/svg%3E");
}

.tmrow-result--inner {
  display: none;
  flex-direction: column;
  margin: 8px 0 0;
  padding: 16px 12px 16px;
  border-radius: 5px;
  background-color: var(--rpr-result-bg-color);
}

.tmrow-result--inner_active {
  display: flex;
}

.tmrow-result--item {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tmrow-result--nick {
  color: var(--rpr-result-nick-color);
  font-size: 14px;
  line-height: 24px;
}

.tmrow-result--data {
  color: var(--rpr-result-data-color);
  font-size: 14px;
  line-height: 24px;
}

.widget-contents-wrap {
  --wct-bg-color: var(--layer-3-color, #f1f1f1);
  --wct-main-color: var(--text-2-color, #757575);
  --wct-name-color: var(--text-5-color, #000);
  --wct-date-color: var(--text-6-color, #757575);
  --wct-tag-color: var(--text-5-color, #000);
  --wct-tag-bg-color: var(--layer-4-color, #e0e0e0);
  --wct-heading-color: var(--text-1-color, #000);
  --wct-lead-color: var(--text-4-color, #000);
  --wct-comment-color: var(--text-2-color, #757575);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 48px;
}

.widget-contents-main {
  margin: 0 0 32px;
  color: var(--wct-main-color);
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.widget-contents {
  gap: 8px 0;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 8px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--wct-bg-color);
}

@media screen and (min-width: 48em) {
  .widget-contents {
    gap: 12px 0;
    padding: 16px 32px;
  }
}

.widget-contents--inner {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 72px 1fr;
}

@media screen and (min-width: 48em) {
  .widget-contents--inner {
    grid-template-columns: 72px 1fr;
  }
}

.widget-contents--image {
  display: flex;
  width: 72px;
  height: 54px;
}

.widget-contents--image img {
  object-fit: cover;
  border-radius: 10px;
}

.widget-contents--head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.widget-contents--wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 0 12px;
}

.widget-contents--name {
  margin: 0 6px 0 0;
  color: var(--wct-name-color);
  font-size: 14px;
  line-height: 20px;
}

.widget-contents--name:hover {
  text-decoration: underline;
}

.widget-contents--date {
  color: var(--wct-date-color);
  font-size: 14px;
  line-height: 20px;
}

.widget-contents--tag {
  margin: 0 6px 0 0;
  padding: 0 4px;
  background-color: var(--wct-tag-bg-color);
  color: var(--wct-tag-color);
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
}

.widget-contents--heading {
  color: var(--wct-heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}

@media screen and (min-width: 48em) {
  .widget-contents--heading {
    font-size: 20px;
  }
}

.widget-contents--heading:hover {
  text-decoration: underline;
}

.widget-contents--lead {
  color: var(--wct-lead-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 21px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 48em) {
  .widget-contents--lead {
    font-size: 16px;
    line-height: 24px;
  }
}

.widget-contents--lead p {
  margin: 0;
  color: var(--wct-lead-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 21px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 48em) {
  .widget-contents--lead p {
    font-size: 16px;
    line-height: 24px;
  }
}

.widget-contents--comment {
  color: var(--wct-comment-color);
  font-size: 14px;
  line-height: 20px;
}

.widget-contents--comment a {
  color: var(--wct-comment-color);
  font-size: 14px;
  line-height: 20px;
}

.widget-contents--comment a:hover {
  text-decoration: underline;
}

.widget-contents--comment span {
  margin: 0 4px;
  color: #757575;
}

.rp-knockout {
  --rpk-heading-color: var(--text-1-color, #000);
  --rpk-item-color: var(--text-5-color, #616161);
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
  padding: 40px 0 24px;
}

@media screen and (min-width: 64em) {
  .rp-knockout {
    padding: 24px 0;
  }
}

.rp-knockout--heading {
  margin: 0 0 32px;
  color: var(--rpk-heading-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.rp-knockout--wrap {
  width: 100%;
  max-width: 816px;
}

.rp-knockout--list {
  width: 100%;
  margin: 0;
  -moz-columns: 1;
  columns: 1;
}

@media screen and (min-width: 40em) {
  .rp-knockout--list {
    -moz-columns: 2;
    columns: 2;
  }
}

@media screen and (min-width: 48em) {
  .rp-knockout--list {
    -moz-columns: 3;
    columns: 3;
  }
}

.rp-knockout--item {
  grid-gap: 0 8px;
  display: grid;
  grid-template-columns: 28px 120px 38px;
  width: 200px;
  margin: 0 auto 8px;
  color: var(--rpk-item-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.rp-knockout--item_top {
  color: #a40000;
}

[theme='dark'] .rp-knockout--item_top {
  color: #b71717;
}

.rp-knockout--num {
  text-align: right;
}

.rp-knockout--bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.rpager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px 0 16px;
}

.rpager li {
  display: flex;
  margin: 0 7px;
  padding: 0;
}

.rpager--dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #757575;
}

.rpager--dot_active {
  background-color: #e51e25;
}

.rpager--arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.rpager--arrow svg {
  --i-color1: #666;
  width: 16px;
  height: 12px;
}

[theme='dark'] .rpager--arrow svg {
  --i-color1: #fff;
}

.rpager--arrow_disabled {
  opacity: .6;
}

.rooms2-wrap {
  --ar2-opacity-bg-image: var(--custom-ar2-opacity-bg-image, .04);
  --ar2-bg-color: var(--custom-ar2-bg-color, #fff);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  background-color: var(--ar2-bg-color);
}

[theme='dark'] .rooms2-wrap {
  --custom-ar2-opacity-bg-image: .02;
  --custom-ar2-bg-color: #313131;
}

.rooms2-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--ar2-opacity-bg-image);
}

.rooms2-stars-mask {
  z-index: -1;
  position: absolute;
  width: 0;
  height: 0;
}


/* stylelint-disable -- declaration-colon-newline-after, value-list-comma-newline-after, value-list-comma-space-after */

.rooms2-head {
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
}

.rooms2-head__inner {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 24px 100px;
  background-image: url(/nimg/rooms-head-bg5.jpg);
  background-position: 56% 231%;
  background-repeat: no-repeat;
  background-size: auto 107%;
}

@media screen and (min-width: 48em) {
  .rooms2-head__inner {
    padding: 49px 20px 23px;
    background-image: url(/nimg/rooms2-bgd.png);
    background-position: center;
    background-size: cover;
  }
  [theme='dark'] .rooms2-head__inner {
    background-image: url(/nimg/rooms2-bgd-dark.png);
  }
}

.rooms2-head__inner::after {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 9%;
  left: 0;
  height: 5%;
  background: linear-gradient(to top, #fff, transparent);
  content: '';
}

[theme='dark'] .rooms2-head__inner::after {
  display: none;
}

@media screen and (min-width: 48em) {
  .rooms2-head__inner::after {
    display: none;
  }
}

.rooms2-head__filter {
  z-index: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(105.04% 71.44% at 46.79% 41.24%, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

[theme='dark'] .rooms2-head__filter {
  display: none;
}

@media screen and (min-width: 48em) {
  .rooms2-head__filter {
    display: none;
  }
}

.rooms2-head__wrap {
  z-index: 3;
  position: relative;
}

.rooms2-head__text {
  color: #000;
  text-shadow: 0 0 5px rgba(255, 255, 255, .8),
                 0 0 10px rgba(255, 255, 255, .6),
                 0 0 15px rgba(255, 255, 255, .4);
}

@media screen and (min-width: 40em) {
  .rooms2-head__text {
    color: var(--text-1-color, #000);
  }
  [theme='dark'] .rooms2-head__text {
    text-shadow: 0 0 5px rgba(0, 0, 0, .8),
                     0 0 10px rgba(0, 0, 0, .6),
                     0 0 15px rgba(0, 0, 0, .4);
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-head__text {
    transform: translateX(20px);
  }
}

.rooms2-head__slogan {
  width: 100%;
  margin: 0 0 16px;
  color: inherit;
  font-family: "PT Serif", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .rooms2-head__slogan {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: 1;
  }
}

.rooms2-head__lead {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}

.rooms2-head__lead strong {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media screen and (min-width: 48em) {
  .rooms2-head__lead {
    font-size: 20px;
    line-height: 36px;
  }
  .rooms2-head__lead strong {
    font-weight: 700;
  }
}


/* stylelint-enable */

.rooms2-widgets {
  z-index: 1;
  width: 100%;
  max-width: 1306px;
  margin-top: 24px;
}

@media screen and (min-width: 48em) {
  .rooms2-widgets {
    margin-top: 28px;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms2-widgets {
    gap: 30px;
    display: grid;
    grid-template-areas: 'rooms rooms' 'actions referrals' 'more more';
    grid-template-columns: 393px auto;
    padding: 0 30px;
  }
}

.rooms2-roomcards {
  gap: 20px;
  display: flex;
  grid-area: rooms;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 16px;
}

@media screen and (min-width: 30em) {
  .rooms2-roomcards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: unset;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms2-roomcards {
    padding: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-roomcards {
    gap: 30px;
  }
}

.rooms2__img {
  flex-basis: 170px;
  flex-grow: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 23.4375em) {
  .rooms2__img {
    border-radius: 10px 10px 0 0;
  }
}

.rooms2__content {
  gap: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px 18px 16px;
  border-right: 1px solid var(--line-0-color, #d2d2d2);
  border-bottom: 1px solid var(--line-0-color, #d2d2d2);
  border-left: 1px solid var(--line-0-color, #d2d2d2);
  border-radius: 0 0 10px 10px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 40em) {
  .rooms2__content {
    padding: 24px 22px;
  }
}

.rooms2__links {
  gap: 24px;
  display: flex;
}

.rooms2-card {
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (min-width: 30em) {
  .rooms2-card {
    flex-basis: 350px;
    padding: 0;
  }
}

@media screen and (min-width: 48em) {
  .rooms2-card:last-child {
    flex-basis: calc(50% - 20px);
    flex-grow: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-card {
    max-width: 395px;
  }
  .rooms2-card:last-child {
    flex: 1;
    flex-basis: 350px;
  }
}

.rooms2-card__heading {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

@media screen and (min-width: 30em) {
  .rooms2-card__heading {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-card__heading {
    font-size: 22px;
    line-height: 1;
  }
}

.rooms2-card__description {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rooms2-card__title {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  font-size: 18px;
  line-height: 22px;
}

@media screen and (min-width: 64em) {
  .rooms2-card__title {
    font-size: 22px;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-card__title {
    font-size: 18px;
  }
}

.rooms2-card__score {
  gap: 8px;
  display: flex;
  align-items: center;
}

.rooms2-card__star {
  width: 22px;
  height: 22px;
  transform: translateY(-11%);
}

.rooms2-card__result {
  color: #fda701;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

.rooms2-card__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-4-color, #828282);
  font-size: 13px;
  line-height: 1.2;
}

@media screen and (min-width: 79.375em) {
  .rooms2-card__link {
    font-size: 16px;
  }
}

.rooms2-card__top {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.rooms2-card__title-wrap {
  gap: 8px;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
}

.rooms2-card__logo-img {
  max-width: 35px;
}

[theme='dark'] .rooms2-card__logo-img_light {
  display: none;
}

.rooms2-card__logo-img_dark {
  display: none;
}

[theme='dark'] .rooms2-card__logo-img_dark {
  display: flex;
}

.rooms2-card__stars {
  width: 96px;
  height: 16px;
  margin-right: 30px;
  transform: scale(1.3) translateY(-15%);
  /* Увеличение в 2 раза */
  transform-origin: 0 0;
  clip-path: url(#rooms2-stars-clip-path);
}

.rooms2-card__ref {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rooms2__link-item {
  gap: 8px;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  color: var(--text-3-color, #808080);
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
}

@media screen and (min-width: 79.375em) {
  .rooms2__link-item {
    font-size: 16px;
  }
}

.rooms2__link-item span {
  line-height: normal;
}

.rooms2__review-icon {
  --i-color1: #808080;
  flex-shrink: 0;
  width: 16px;
  height: 17px;
}

:root[theme='dark'] .rooms2__review-icon {
  --i-color1: var(--text-3-color);
}

.rooms2__testimonials-icon {
  --i-color1: #808080;
  flex-shrink: 0;
  width: 15px;
  height: 19px;
}

:root[theme='dark'] .rooms2__testimonials-icon {
  --i-color1: var(--text-3-color);
}

.rooms2-actions {
  grid-area: actions;
  width: 100%;
  margin-top: 24px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions {
    margin-top: 0;
  }
}

.rooms2-actions__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 20px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__head {
    margin-bottom: 16px;
    padding: 0;
  }
}

.rooms2-actions__heading {
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.rooms2-actions__title {
  margin-bottom: 8px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.rooms2-actions__term {
  color: var(--text-3-color, #333);
}

.rooms2-actions__controls {
  gap: 8px;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__controls {
    display: none;
  }
}

.rooms2-actions__controls a:nth-child(1) {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  pointer-events: visible;
}

.rooms2-actions__controls a:nth-child(2) {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: visible;
}

.rooms2-actions__cards-wrapper {
  position: relative;
  padding: 0 20px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__cards-wrapper {
    padding: 0;
  }
}

.rooms2-actions__cards {
  width: 100%;
  overflow: hidden;
}

.rooms2-actions__cards-inner {
  padding: 0 20px;
  overflow: hidden;
}

.rooms2-actions__slider {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__slider {
    gap: 24px;
    flex-direction: column;
  }
}

.rooms2-actions__card-item {
  box-sizing: border-box;
  flex-shrink: 0;
  max-width: 200px;
  min-height: 308px;
  overflow: hidden;
  border: 1px solid var(--line-1-color, #ebedee);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  opacity: 1;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__card-item {
    gap: 32px;
    display: flex;
    align-items: center;
    max-width: unset;
    min-height: unset;
    padding: 24px 16px 24px 24px;
  }
}

.rooms2-actions__img-wrap {
  position: relative;
}

.rooms2-actions__img {
  width: 100%;
  height: 108px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__img {
    width: 137px;
    height: 102px;
    border-radius: 10px;
  }
}

.rooms2-actions__icon-wrap {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transform: translateY(50%);
  border-radius: 50%;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__icon-wrap {
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    transform: translateY(0) translateX(50%);
  }
}

.rooms2-actions__icon {
  max-width: 30px;
  max-height: 30px;
}

.rooms2-actions__content {
  margin-top: 34px;
  padding: 0 16px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-actions__content {
    margin: 0;
  }
}

.rooms2-actions__description {
  margin-bottom: 16px;
  color: #ec314d;
  font-size: 14px;
  line-height: 24px;
}

.rooms2-actions__more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 17px auto 0;
}

@media screen and (min-width: 64em) {
  .rooms2-actions__more {
    max-width: 100%;
  }
}

.rooms2-actions__more::after,
.rooms2-actions__more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #d3d3d3);
  content: '';
}

.rooms2-actions__more-link {
  padding: 0 20px;
  color: var(--text-2-color, #202020);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.rooms2-referrals {
  grid-area: referrals;
  padding: 19px 16px 24px 16px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-referrals {
    padding: 0;
  }
}

.rooms2-referrals__heading {
  margin-bottom: 24px;
  padding: 0 20px;
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 70.625em) {
  .rooms2-referrals__heading {
    display: none;
  }
}

.rooms2-referrals__subtitle {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 0;
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 1.2;
}

.rooms2-referrals__cards-wrapper {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 0 16px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-referrals__cards-wrapper {
    gap: 24px;
    margin-top: 0;
  }
}

.rooms2-referrals__bonus {
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-2-color, #202020);
  font-weight: 600;
}

.rooms2-referrals__link-item {
  gap: 4px;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
}

.rooms2-referrals__link-icon {
  --i-color1: #808080;
  width: 15px;
  height: 19px;
}

[theme='dark'] .rooms2-referrals__link-icon {
  --i-color1: var(--text-3-color);
}

.rooms2-referrals__link-text {
  color: var(--text-3-color, #808080);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rooms2-referrals__single-star {
  width: 18px;
  height: 18px;
  transform: translateY(-8%);
}

.rooms2-referrals__stars {
  display: none;
  width: 96px;
  height: 16px;
  clip-path: url(#rooms2-stars-clip-path);
}

.rooms2-referrals__links {
  gap: 10px;
  display: flex;
  margin-top: 8px;
}

.rooms2-referrals-cards {
  gap: 16px;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}

.rooms2-referrals-card {
  gap: 16px;
  display: flex;
  position: relative;
  order: 0;
  padding: 16px;
  border: 1px solid var(--line-1-color, #d2d2d2);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fcfcfc);
}

.rooms2-referrals-card__wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rooms2-referrals-card__separator {
  display: none;
}

.rooms2-referrals-card_new {
  padding: 36px 16px 23px 16px;
}

.rooms2-referrals-card_new::after {
  display: flex;
  position: absolute;
  top: 28px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 5px solid #12661f;
  border-left: 9px solid transparent;
  content: '';
}

.rooms2-referrals-card__heading {
  gap: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.rooms2-referrals-card__logo {
  display: flex;
  grid-area: logo;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 24px;
  border: 1px solid var(--line-0-color, #e1dfdf);
  background-color: var(--layer-3-color, #fff);
}

.rooms2-referrals-card__img {
  width: 40px;
  height: 40px;
}

[theme='dark'] .rooms2-referrals-card__img_light {
  display: none;
}

.rooms2-referrals-card__img_dark {
  display: none;
}

[theme='dark'] .rooms2-referrals-card__img_dark {
  display: flex;
}

.bestroom-content .rooms2-referrals-card {
  margin: 0;
}

.rooms2-referrals-card__ref {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@container (min-width: 640px) {
  .rooms2-referrals-card {
    gap: 16px 20px;
    grid-template-columns: 60px auto;
    padding: 24px;
    border-radius: 10px;
  }
  .rooms2-referrals-card__wrap {
    gap: 30px;
    flex-direction: row;
    align-items: center;
  }
  .rooms2-referrals-card_new {
    padding: 36px 24px 24px;
  }
  .rooms2-referrals-card__img {
    width: 60px;
    height: 60px;
  }
  .rooms2-referrals-card__separator {
    display: inline-block;
    width: 1px;
    height: 80px;
    background-color: var(--line-1-color, #e9e9e9);
  }
  .rooms2-referrals-card__logo {
    width: 116px;
    height: 116px;
  }
  .rooms2-referrals-card__heading {
    flex-direction: column;
    align-items: flex-start;
    font-size: 22px;
    line-height: 1;
  }
  .rooms2-referrals-cards {
    gap: 24px;
    margin-top: 0;
  }
  .rooms2-referrals__subtitle {
    margin-top: 12px;
    color: var(--text-2-color, #000);
  }
  .rooms2-referrals__single-star {
    display: none;
  }
  .rooms2-referrals__stars {
    display: flex;
  }
  .rooms2-referrals__links {
    gap: 16px;
    order: 3;
    margin-top: 16px;
  }
}

.rooms2-referrals-card_new .referrals-flag {
  display: flex;
}

.rooms2-referrals__actions {
  gap: 16px;
  display: grid;
  grid-area: actions;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .rooms2-referrals__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-referrals__actions {
    justify-content: space-between;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-referrals__actions.nocode {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .rooms2-referrals__actions.nocode .bestroom--info {
    display: none;
  }
  .rooms2-referrals__actions.nocode .bestroom--reg {
    width: 100%;
  }
}

.rooms2-referrals__reg-wrap {
  gap: 8px;
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 40em) {
  .rooms2-referrals__reg-wrap {
    align-items: center;
    justify-self: flex-end;
  }
}

@media screen and (min-width: 64em) {
  .rooms2-referrals__reg-wrap {
    flex-basis: 140px;
  }
}

.rooms2-referrals__reg {
  gap: 8px;
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: flex-end;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .rooms2-referrals__reg {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 48em) {
  .rooms2-referrals__reg {
    width: 100%;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms2-referrals__reg {
    gap: 10px;
  }
}

.rooms2-referrals__info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  flex-shrink: 0;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 30em) {
  .rooms2-referrals__info {
    font-size: 14px;
    line-height: 20px;
  }
}

.rooms2-referrals__info p {
  margin: 0;
  padding: 0;
  color: var(--text-2-color, #202020);
  font-weight: 600;
}

.rooms2-referrals__info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.rooms2__button-wrapper {
  display: flex;
  z-index: 1;
  position: relative;
}

.rooms2__button-wrapper:has(.rooms2__copy) {
  width: 100%;
}

.rooms2__button {
  display: inline-block;
  grid-area: reg;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 79.375em) {
  .rooms2__button {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
  }
}

.rooms2__copy + .rooms2__button {
  border-radius: 0 4px 4px 0;
}

@media screen and (min-width: 79.375em) {
  .rooms2__copy + .rooms2__button {
    border-radius: 0 5px 5px 0;
  }
}

.rooms2-app {
  gap: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 24px 44px;
}

@media screen and (min-width: 40em) {
  .rooms2-app {
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 20px;
    border: 1px solid #ffc800;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff 25.08%, #fff3d3 108.43%);
  }
  :root[theme='dark'] .rooms2-app {
    position: relative;
    background: var(--layer-3-color);
  }
}

@media screen and (min-width: 70.625em) {
  .rooms2-app {
    padding: 24px 24px 24px 32px;
  }
}

.rooms2-app__img {
  flex-basis: 90px;
  flex-grow: 0;
}

@media screen and (min-width: 40em) {
  .rooms2-app__img {
    flex-basis: 134px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 40em) {
  .rooms2-app__wrap {
    gap: 20px;
    display: flex;
    align-items: center;
  }
}

.rooms2-app__content {
  color: var(--text-2-color, #000);
}

.rooms2-app__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-app__title {
    font-size: 22px;
  }
}

.rooms2-app__description {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-app__description {
    font-size: 16px;
  }
}

.rooms2-q-support {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 1;
  margin: 8px 20px 0;
  padding: 28px 24px 29px 25px;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background: #fff1bf;
  text-align: center;
}

:root[theme='dark'] .rooms2-q-support {
  filter: invert(1) brightness(2) grayscale(1);
}

@media screen and (min-width: 30em) {
  .rooms2-q-support {
    max-width: 500px;
    margin: 20px auto;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms2-q-support {
    display: grid;
    grid-template-areas: 'title links' 'subtitle links' 'time links';
    order: 0;
    max-width: unset;
    margin: 0;
    background-image: url("/nimg/s-bestroom-support-bg.png");
    background-size: cover;
    text-align: left;
  }
}

@media screen and (min-width: 78.4375em) {
  .rooms2-q-support {
    padding: 27px 24px 27px 98px;
  }
}

.rooms2-q-support__title {
  grid-area: title;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.rooms2-q-support__subtitle {
  grid-area: subtitle;
  font-size: 16px;
  line-height: 20px;
}

.rooms2-q-support__links {
  gap: 10px;
  display: flex;
  grid-area: links;
}

@media screen and (min-width: 70.625em) {
  .rooms2-q-support__links {
    justify-content: flex-end;
  }
}

.rooms2-q-support__link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
}

.rooms2-q-support__link-item svg {
  aspect-ratio: 1 / 1;
  width: 14px;
}

.rooms2-q-support__button {
  gap: 10px;
  --i-color: #000;
  display: flex;
  padding: 8px 16px;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  font-weight: 700;
}

.rooms2-q-support__button:hover {
  --i-color: #fff;
  border: 1px solid #fff;
  background-color: #45ae52;
  color: #fff;
}

.rooms2-q-support__button svg {
  aspect-ratio: 1 / 1;
  width: 20px;
}

.rooms2-q-support__button-text {
  color: inherit;
}

.rooms2-q-support__time {
  gap: 4px;
  display: flex;
  grid-area: time;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 70.625em) {
  .rooms2-q-support__time {
    flex-direction: row;
  }
}

.rooms2-q-support__schedule {
  gap: 8px;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, .6);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-q-support__schedule {
    color: #000;
  }
}

.rooms2-q-support__schedule svg {
  width: 14px;
  height: 14px;
}

.rooms2-q-support__responce {
  color: rgba(0, 0, 0, .6);
  font-size: 14px;
  line-height: 18px;
}

@media screen and (min-width: 70.625em) {
  .rooms2-q-support__responce {
    color: #000;
  }
}

.rooms2-more {
  display: flex;
  grid-area: more;
  justify-content: center;
  width: 100%;
  margin: 20px 0 36px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .rooms2-more {
    margin: 20px 0;
    padding: 0;
  }
}

.rooms2-more__wrap {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rooms2-more__wrap::after,
.rooms2-more__wrap::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #e7e7e7);
  content: '';
}

.rooms2-more__button {
  padding: 10px 24px;
  border: 1px solid var(--text-1-color, #000);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.rooms2-news {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 30px 24px;
}

@media screen and (min-width: 48em) {
  .rooms2-news {
    padding: 50px 30px 80px;
  }
}

.rooms2-article {
  gap: 20px;
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 20px;
  color: var(--text-2-color, #000);
}

@media screen and (min-width: 70.625em) {
  .rooms2-article {
    gap: 30px;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 30px;
  }
}

.rooms2-article__title {
  margin-bottom: 16px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
}

.rooms2-article p {
  color: inherit;
  font-size: 16px;
  line-height: 24px;
}

.rooms2-article__separator {
  display: block;
  height: 16px;
}

.rooms2-form {
  z-index: 1;
  flex-basis: 394px;
  flex-shrink: 0;
  width: 100%;
  max-width: 500px;
}

.rooms2-form__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 31px 34px;
  border: 1px solid var(--line-2-color, #d2d2d2);
  border-radius: 10px;
  background-color: var(--layer-3-color, #f4f4f4);
}

.rooms2-form__content {
  width: 100%;
  max-width: 1118px;
}

.rooms2-form__content h2 {
  margin: 0 0 16px;
  color: var(--text-2-color, #000);
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.rooms2-form__content p {
  margin: 0;
  color: var(--text-3-color, #222);
  font-size: 16px;
  line-height: 20px;
}

.rooms2-form__grid {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  margin: 24px 0 30px;
}

.rooms2-form__group {
  display: flex;
  flex-direction: column;
}

.rooms2-form__label {
  margin: 0 0 8px;
  color: var(--text-3-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.rooms2-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  background-image: url(/nimg/select-arrow-24.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #a8a8a9;
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

[theme='dark'] .rooms2-form__select {
  background-image: url(/nimg/select-arrow-24-dark.svg);
}

.rooms2-form__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 16px;
  border: 1px solid #dfe1e4;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-2-color, #000);
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
}

.rooms2-form__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-radius: 10px;
  background-color: var(--control-1-color, #000);
  color: var(--layer-1-color, #fff);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.rooms2-form__note {
  gap: 6px;
  display: flex;
  align-items: flex-start;
}

.rooms2-form__note__text {
  max-width: 40ch;
  color: #a8a8a9;
  font-size: 12px;
  line-height: 14px;
}

.rooms2-form__note strong {
  color: #e51e25;
  line-height: 20px;
}

.rooms2__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: copy;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 140px;
  height: 40px;
  padding: 0 20px 0 10px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 79.375em) {
  .rooms2__copy {
    min-width: 151px;
    height: 46px;
    border-radius: 5px 0 0 5px;
  }
}

.rooms2__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.rooms2__copy strong {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 79.375em) {
  .rooms2__copy strong {
    font-size: 16px;
    line-height: 22px;
  }
}

.rooms2__copy-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

:root[theme='dark'] .rooms2__copy-icon {
  --i-color1: var(--text-2-color);
}

@media screen and (min-width: 79.375em) {
  .rooms2__copy-icon {
    width: 16px;
    height: 16px;
  }
}

.rooms2__code-wrap {
  gap: 6px;
  display: flex;
}

.rooms2__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.rooms2__notify.animate {
  display: flex;
  animation-name: slide;
}

.rooms2__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .rooms2__notify-icon {
  --i-color1: #00ff92;
}

.rooms2__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .rooms2__notify-text {
  color: #00ff92;
}

.rooms2-referrals__copy-wrap {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
  border-radius: 5px;
}

.rooms2-referrals__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  height: 28px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-radius: 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .rooms2-referrals__copy {
    min-width: 140px;
  }
}

.rooms2-referrals__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.rooms2-referrals__copy strong {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.rooms2-referrals__copy-icon {
  flex-shrink: 0;
  width: 12px;
  height: 13px;
}

:root[theme='dark'] .rooms2-referrals__copy-icon {
  --i-color1: var(--text-2-color);
}

.rooms2__info {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

@media screen and (min-width: 64em) {
  .rooms2__info {
    margin: 0;
  }
}

.rooms2__info p {
  margin: 0;
  padding: 0;
  color: var(--text-3-color, #6d6d6d);
}

.rooms2__info span {
  display: none;
  left: 5px;
  transform: translateX(-50%) translateY(-100%);
  font-size: 11px;
  text-align: center;
}

.rooms2__code-text {
  color: var(--text-3-color, #6d6d6d);
  font-size: 14px;
  font-weight: 400;
}

.rooms2-referrals__code-text {
  color: var(--text-3-color, #6d6d6d);
  font-size: 12px;
  font-weight: 400;
}

.rooms2-referrals__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.rooms2-referrals__notify.animate {
  display: flex;
  animation-name: slide;
}

.rooms2-referrals__result {
  color: #fda701;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: normal;
}

.rooms2-referrals__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .rooms2-referrals__notify-icon {
  --i-color1: #00ff92;
}

.room-referral-tick {
  flex-shrink: 0;
  width: 16px;
  height: 15px;
}

.rooms2-referrals__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .rooms2-referrals__notify-text {
  color: #00ff92;
}

.rooms2__reg {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .rooms2__reg {
    min-width: 140px;
  }
}

.rooms2__reg svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.rooms3-wrap {
  --widgets-padding: 0 16px;
  --ar3-opacity-bg-image: var(--custom-ar3-opacity-bg-image, .04);
  --ar3-bg-color: var(--custom-ar3-bg-color, #f4f4f4);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  background-color: var(--ar3-bg-color);
}

[theme='dark'] .rooms3-wrap {
  --custom-ar3-opacity-bg-image: .02;
  --custom-ar3-bg-color: #313131;
}

@media screen and (min-width: 30em) {
  .rooms3-wrap {
    --widgets-padding: 0 24px;
  }
}

@media screen and (min-width: 48em) {
  .rooms3-wrap {
    --widgets-padding: 0 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3-wrap {
    --widgets-padding: 0;
  }
}

.rooms3-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--ar3-opacity-bg-image);
}

.rooms3-stars-mask {
  z-index: -1;
  position: absolute;
  width: 0;
  height: 0;
}


/* stylelint-disable -- declaration-colon-newline-after, value-list-comma-newline-after, value-list-comma-space-after */

.rooms3-head {
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 64em) {
  .rooms3-head {
    background-image: url("/nimg/all-rooms-background.png");
  }
}

.rooms3-head__inner {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 25px 20px 27px;
}

@media screen and (min-width: 64em) {
  .rooms3-head__inner {
    padding: 89px 0 64px;
  }
}

.rooms3-head__wrap {
  z-index: 3;
  position: relative;
}

.rooms3-head__text {
  color: var(--text-2-color, #000);
}

[theme='dark'] .rooms3-head__text {
  text-shadow: 0 0 5px rgba(0, 0, 0, .8),
                 0 0 10px rgba(0, 0, 0, .6),
                 0 0 15px rgba(0, 0, 0, .4);
}

.rooms3-head__slogan {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  color: inherit;
  font-family: "PT Serif", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .rooms3-head__slogan {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: normal;
  }
}

.rooms3-head__slogan::before {
  display: none;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 72px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  content: '';
  filter: blur(15px);
}

@media screen and (min-width: 64em) {
  .rooms3-head__slogan::before {
    display: block;
  }
}

.rooms3-head__plate {
  margin: 0 2px;
  padding: 2px 8px;
  border: 1px dashed #af9a7a;
  border-radius: 5px;
  background: var(--layer-5-color, rgba(248, 245, 236, .8));
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  white-space: nowrap;
}

@media screen and (min-width: 70.625em) {
  .rooms3-head__plate {
    padding: 10px 14px 12px 14px;
    font-size: 24px;
    line-height: 33.728px;
  }
}


/* stylelint-enable */

.rooms3-widgets {
  z-index: 1;
  width: 100%;
  max-width: 1197px;
}

.rooms3__links {
  gap: 12px;
  display: flex;
}

.rooms3-label {
  position: absolute;
  top: 0;
  left: -2px;
  transform: translateY(-50%);
}

.rooms3-label__text {
  padding: 4px 0 4px 4px;
  border-radius: 2px 0 0 2px;
  background: #e51e24;
  color: #fbfbfb;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.rooms3-label__tail {
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 100%;
  transform: translateX(95%);
}

.rooms3-top-cards {
  gap: 20px;
  display: flex;
  grid-area: rooms;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 30px;
  padding: var(--widgets-padding);
}

@media screen and (min-width: 30em) {
  .rooms3-top-cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: unset;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms3-top-cards {
    margin-top: 28px;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3-top-cards {
    gap: 30px;
  }
}

.rooms3-top-card {
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: column;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
}

@media screen and (min-width: 30em) {
  .rooms3-top-card {
    flex-basis: 350px;
    padding: 0;
  }
}

@media screen and (min-width: 48em) {
  .rooms3-top-card:last-child {
    flex-basis: calc(50% - 20px);
    flex-grow: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3-top-card {
    max-width: 395px;
  }
  .rooms3-top-card:last-child {
    flex: 1;
    flex-basis: 350px;
  }
}

.rooms3-top-card__reflink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rooms3-top-card__img {
  flex-basis: 170px;
  flex-grow: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rooms3-top-card__icon {
  flex-shrink: 0;
  width: 35px;
  height: 36px;
}

.rooms3-top-card__link-item {
  gap: 5px;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  color: var(--text-3-color, #808080);
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
}

@media screen and (min-width: 79.375em) {
  .rooms3-top-card__link-item {
    font-size: 16px;
  }
}

.rooms3-top-card__link-item span {
  line-height: normal;
}

.rooms3-top-card__description-wrap {
  gap: 13px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 12px;
}

.rooms3-top-card__description {
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.rooms3-top-card__title {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-2-color, #000);
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}

.rooms3-top-card__score {
  gap: 8px;
  display: flex;
  align-items: center;
}

.rooms3-top-card__star {
  width: 22px;
  height: 22px;
  transform: translateY(-11%);
}

.rooms3-top-card__result {
  color: #fda701;
  font-size: 19px;
  font-weight: 600;
  line-height: inherit;
}

.rooms3-top-card__head {
  gap: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
}

.rooms3-top-card__head-wrap {
  gap: 9px;
  display: flex;
}

.rooms3-top-card__title-wrap {
  gap: 8px;
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

.rooms3-top-card__logo-img {
  width: 100%;
  max-width: 48px;
}

[theme='dark'] .rooms3-top-card__logo-img_light {
  display: none;
}

.rooms3-top-card__logo-img_dark {
  display: none;
}

[theme='dark'] .rooms3-top-card__logo-img_dark {
  display: flex;
}

.rooms3-top-card__stars {
  width: 96px;
  height: 16px;
  margin-right: 30px;
  transform: scale(1.3) translateY(-15%);
  /* Увеличение в 2 раза */
  transform-origin: 0 0;
  clip-path: url(#rooms3-stars-clip-path);
}

.rooms3-top-card__ref {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rooms3-top-card__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
}

.rooms3__review-icon {
  --i-color1: #808080;
  flex-shrink: 0;
  width: 16px;
  height: 17px;
}

:root[theme='dark'] .rooms3__review-icon {
  --i-color1: var(--text-3-color);
}

.rooms3__testimonials-icon {
  --i-color1: #808080;
  flex-shrink: 0;
  width: 15px;
  height: 19px;
}

[theme='dark'] .rooms3__testimonials-icon {
  --i-color1: var(--text-3-color);
}

.rooms3-actions {
  grid-area: rooms3-actions;
  order: -1;
  width: 100%;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions {
    margin-top: 0;
  }
}

.rooms3-actions__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: var(--widgets-padding);
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__head {
    margin: 0 30px 0 0;
    padding: 0;
    border: 1px solid var(--line-0-color, #ebedee);
    border-radius: 10px 10px 0 0;
    background-color: var(--layer-3-color, #fff);
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3-actions__head {
    margin: 0;
  }
}

.rooms3-actions__heading {
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__heading {
    padding: 16px 24px;
  }
}

.rooms3-actions__title {
  display: block;
  margin-bottom: 8px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.rooms3-actions__term {
  color: var(--text-3-color, #6d6d6d);
}

.rooms3-actions__controls {
  gap: 8px;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__controls {
    display: none;
  }
}

.rooms3-actions__controls a {
  background-color: var(--layer-3-color, #fff);
}

.rooms3-actions__controls a svg {
  width: 12px;
  height: 14px;
}

.rooms3-actions__controls a:nth-child(1) {
  --i-color1: var(--text-3-color, #333);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  pointer-events: visible;
}

.rooms3-actions__controls a:nth-child(2) {
  --i-color1: var(--text-3-color, #333);
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: visible;
}

.rooms3-actions__cards-wrapper {
  position: relative;
  padding: var(--widgets-padding);
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__cards-wrapper {
    padding-left: 0;
  }
}

.rooms3-actions__cards {
  width: 100%;
  overflow: hidden;
}

.rooms3-actions__cards-inner {
  padding: 0 20px;
  overflow: hidden;
}

.rooms3-actions__slider {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__slider {
    flex-direction: column;
  }
}

.rooms3-actions__card-item {
  box-sizing: border-box;
  flex-shrink: 0;
  max-width: 220px;
  min-height: 308px;
  padding: 16px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  background-color: var(--layer-3-color, #fff);
  opacity: 1;
}

@media screen and (min-width: 30em) {
  .rooms3-actions__card-item {
    max-width: 200px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__card-item {
    gap: 32px;
    display: flex;
    align-items: flex-start;
    max-width: unset;
    min-height: unset;
    padding: 24px 16px 24px 24px;
    border-right: 1px solid var(--line-0-color, #ebedee);
    border-bottom: 1px solid var(--line-0-color, #ebedee);
    border-left: 1px solid var(--line-0-color, #ebedee);
    border-radius: 0;
  }
  .rooms3-actions__card-item:last-child {
    border-radius: 0 0 10px 10px;
  }
}

.rooms3-actions__card-item_next {
  border-left: 1px solid var(--line-1-color, #ebedee);
  border-radius: 0 10px 10px 0;
}

@media screen and (min-width: 30em) {
  .rooms3-actions__card-item_next {
    border-left: none;
    border-radius: 10px;
  }
}

.rooms3-actions__img-wrap {
  position: relative;
}

.rooms3-actions__img {
  width: 100%;
  height: 108px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__img {
    width: 137px;
    height: 102px;
    border-radius: 10px;
  }
}

.rooms3-actions__icon-wrap {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transform: translateY(50%);
  border-radius: 50%;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__icon-wrap {
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    transform: translateY(0) translateX(50%);
  }
}

.rooms3-actions__icon {
  max-width: 30px;
  max-height: 30px;
}

.rooms3-actions__content {
  margin-top: 34px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__content {
    margin: 0;
  }
}

.rooms3-actions__description {
  margin-bottom: 16px;
  color: #ec314d;
  font-size: 14px;
  line-height: 24px;
}

.rooms3-actions__more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 17px auto 0;
}

@media screen and (min-width: 64em) {
  .rooms3-actions__more {
    max-width: 100%;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__more {
    justify-content: flex-start;
  }
}

.rooms3-actions__more::after,
.rooms3-actions__more::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #e7e7e7);
  content: '';
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__more::after,
.rooms3-actions__more::before {
    display: none;
  }
}

.rooms3-actions__more-link {
  padding: 7px 16px;
  border: 1px solid var(--text-4-color, #000);
  border-radius: 6px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-actions__more-link {
    border: 1px solid var(--text-4-color, #dfe1e4);
  }
}

.rooms3-referrals {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals {
    gap: 0 24px;
    display: grid;
    grid-template-areas: 'rooms3-heading rooms3-heading' 'rooms3-cards rooms3-actions';
    grid-template-columns: auto 393px;
  }
}

.rooms3-referrals__heading {
  gap: 16px;
  display: flex;
  grid-area: rooms3-heading;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: var(--widgets-padding);
  overflow: hidden;
}

.rooms3-referrals__tags {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals__tags {
    width: 100%;
  }
}

.rooms3-referrals__tags::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: translateX(50%);
  background: linear-gradient(90deg, rgba(244, 244, 244, 0) 2.27%, #f4f4f4 61.94%);
  content: '';
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals__tags::after {
    display: none;
  }
}

.rooms3-referrals__tags-inner {
  gap: 5px;
  scrollbar-width: none;
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
}

.rooms3-referrals__tags-inner::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals__tags-inner {
    width: 100%;
  }
}

.rooms3-referrals__tag-item {
  padding: 10px 16px;
  border: 1px solid var(--line-0-color, #e9e9e9);
  border-radius: 6px;
  background: var(--layer-3-color, #fff);
  color: var(--text-3-color, #000);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  white-space: nowrap;
  cursor: pointer;
}

.rooms3-referrals__tag-item_active {
  padding: 10px 31px 10px 16px;
  border: none;
  border-radius: 10px;
  background-color: var(--layer-4-color, #4b4b4b);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none"><path d="M7.99556 9.16077L4.82473 12.3316C4.6933 12.463 4.53453 12.5261 4.34843 12.5209C4.16233 12.5151 4.00356 12.4465 3.87213 12.315C3.74071 12.1836 3.67499 12.0222 3.67499 11.8309C3.67499 11.639 3.74071 11.4773 3.87213 11.3459L7.02641 8.19162L3.85558 5.02078C3.72415 4.88936 3.66106 4.72796 3.66632 4.5366C3.6721 4.34472 3.74071 4.18306 3.87213 4.05163C4.00356 3.92021 4.16496 3.85449 4.35632 3.85449C4.5482 3.85449 4.70986 3.92021 4.84129 4.05163L7.99556 7.22247L11.1664 4.05163C11.2978 3.92021 11.4592 3.85449 11.6506 3.85449C11.8425 3.85449 12.0041 3.92021 12.1355 4.05163C12.267 4.18306 12.3327 4.34472 12.3327 4.5366C12.3327 4.72796 12.267 4.88936 12.1355 5.02078L8.96471 8.19162L12.1355 11.3624C12.267 11.4939 12.3327 11.6526 12.3327 11.8387C12.3327 12.0248 12.267 12.1836 12.1355 12.315C12.0041 12.4465 11.8425 12.5122 11.6506 12.5122C11.4592 12.5122 11.2978 12.4465 11.1664 12.315L7.99556 9.16077Z" fill="white" fill-opacity="0.5"/></svg>');
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px 17px;
  color: #fff;
}

.rooms3-referrals__title {
  margin-top: 30px;
  color: var(--text-2-color, #000);
  font-size: 22px;
  font-weight: 700;
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals__title {
    margin-top: 0;
  }
}

.rooms3-referrals__text {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 0;
  color: var(--text-2-color, #000);
  font-size: 14px;
  line-height: 1.2;
}

.rooms3-referrals__cards-wrapper {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 0 16px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-referrals__cards-wrapper {
    gap: 24px;
    margin-top: 0;
  }
}

.rooms3-referrals__single-star {
  width: 18px;
  height: 18px;
  transform: translateY(-8%);
}

.rooms3-referrals__stars {
  display: none;
  width: 96px;
  height: 16px;
  clip-path: url(#rooms3-stars-clip-path);
}

.rooms3-referrals__links {
  gap: 10px;
  display: flex;
  margin-top: 8px;
}

.rooms3-cards {
  gap: 16px;
  container-type: inline-size;
  display: flex;
  grid-area: rooms3-cards;
  flex-direction: column;
  padding: var(--widgets-padding);
}

@media screen and (min-width: 70.625em) {
  .rooms3-cards {
    padding-right: 0;
  }
}

.rooms3-card {
  gap: 14px;
  display: grid;
  position: relative;
  grid-template-areas: 'rooms3-card-logo rooms3-card-top' 'rooms3-card-bottom rooms3-card-bottom';
  grid-template-columns: 73px auto;
  padding: 20px 18px;
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fcfcfc);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
}

.rooms3-card__reflink {
  position: absolute;
  width: 100%;
  height: 100%;
}

.rooms3-card__wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rooms3-card__separator {
  display: none;
}

.rooms3-card_new {
  padding: 36px 16px 23px 16px;
}

.rooms3-card_new::after {
  display: flex;
  position: absolute;
  top: 28px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 5px solid #12661f;
  border-left: 9px solid transparent;
  content: '';
}

.rooms3-card__top {
  gap: 11px;
  display: flex;
  grid-area: rooms3-card-top;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.rooms3-card__heading {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-1-color, #e1dfdf);
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.rooms3-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.rooms3-card__subtitle {
  color: var(--text-3-color, #808080);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.rooms3-card__logo {
  display: flex;
  grid-area: rooms3-card-logo;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  border: 1px solid var(--line-0-color, #e1dfdf);
  background-color: var(--layer-3-color, #fff);
}

.rooms3-card__img {
  width: 54px;
  height: 54px;
}

.rooms3-card__img img {
  max-width: 100%;
}

[theme='dark'] .rooms3-card__img_light {
  display: none;
}

.rooms3-card__img_dark {
  display: none;
}

[theme='dark'] .rooms3-card__img_dark {
  display: flex;
}

.rooms3-card__score {
  gap: 8px;
  display: flex;
  align-items: center;
}

.rooms3-card__star {
  width: 22px;
  height: 22px;
  transform: translateY(-11%);
}

.rooms3-card__result {
  color: #fda701;
  font-size: 19px;
  font-weight: 600;
  line-height: normal;
}

.rooms3-card__link-item {
  gap: 4px;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  color: var(--text-3-color, #808080);
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}

.rooms3-card__link-item svg {
  height: 15px;
}

@media screen and (min-width: 79.375em) {
  .rooms3-card__link-item {
    font-size: 16px;
  }
}

.rooms3-card__link-item span {
  line-height: normal;
}

.bestroom-content .rooms3-card {
  margin: 0;
}

.rooms3-card__bottom {
  gap: 20px 8px;
  display: flex;
  grid-area: rooms3-card-bottom;
  flex-direction: column;
  align-items: flex-end;
}

.rooms3-card__description {
  align-self: flex-start;
  color: var(--text-4-color, #000);
  font-size: 16px;
  line-height: 20px;
}

.rooms3-card__ref {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rooms3-card__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 42px 0 0;
  cursor: pointer;
}

.rooms3-card__bonus-text {
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-2-color, #202020);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@container (min-width: 480px) {
  .rooms3-card__bonus {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@container (min-width: 640px) {
  .rooms3-card {
    gap: 8px 0;
    grid-template-areas: 'rooms3-card-logo rooms3-card-top' 'rooms3-card-logo rooms3-card-bottom';
    grid-template-columns: 116px auto;
    grid-template-rows: 58px auto;
    padding: 24px;
  }
  .rooms3-card__title {
    gap: 15px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0;
    border-bottom: none;
  }
  .rooms3-card__subtitle {
    margin-top: 10px;
  }
  .rooms3-card__wrap {
    gap: 30px;
    flex-direction: row;
    align-items: center;
  }
  .rooms3-card__top {
    flex-direction: row;
    align-items: center;
    padding: 15px 0 12px 18px;
    border-bottom: 1px solid var(--line-0-color, #e9e9e9);
  }
  .rooms3-card_new {
    padding: 36px 24px 24px;
  }
  .rooms3-card__img {
    width: 60px;
    height: 60px;
  }
  .rooms3-card__logo {
    width: 116px;
    height: 116px;
  }
  .rooms3-card__heading {
    display: initial;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 22px;
    line-height: 1;
  }
  .rooms3-card__description {
    max-width: 400px;
    font-size: 17px;
    line-height: 22px;
  }
  .rooms3-card__bonus {
    margin: 0 8px 0 0;
  }
  .rooms3-card__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 18px;
  }
  .rooms3-cards {
    gap: 24px;
    margin-top: 0;
  }
  .rooms3-referrals__subtitle {
    margin-top: 12px;
    color: var(--text-2-color, #000);
  }
  .rooms3-referrals__single-star {
    display: none;
  }
  .rooms3-referrals__stars {
    display: flex;
  }
  .rooms3-referrals__links {
    gap: 16px;
    order: 3;
    margin-top: 16px;
  }
}

@container (min-width: 780px) {
  .rooms3-card__bottom {
    gap: 12px;
  }
  .rooms3-card__reg-wrap {
    margin-top: -8px;
  }
}

.referrals-flag {
  display: none;
  position: absolute;
  top: 6px;
  left: -10px;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px 0 22px;
  background-color: #1eac34;
  background-image: url(/nimg/i-smallfire.svg);
  background-position: 8px 5px;
  background-repeat: no-repeat;
  background-size: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.rooms3-card_new .referrals-flag {
  display: flex;
}

.rooms3__button-wrapper {
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: flex-end;
}

.rooms3__button-wrapper:has(.rooms3__copy) {
  width: 100%;
}

.rooms3__button {
  display: inline-block;
  grid-area: reg;
  width: 140px;
  padding: 9px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 79.375em) {
  .rooms3__button {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
  }
}

.rooms3__copy + .rooms3__button {
  border-radius: 0 4px 4px 0;
}

@media screen and (min-width: 79.375em) {
  .rooms3__copy + .rooms3__button {
    border-radius: 0 5px 5px 0;
  }
}

.rooms3-app {
  gap: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 24px 44px;
}

@media screen and (min-width: 40em) {
  .rooms3-app {
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 20px;
    border: 1px solid #ffc800;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff3d3 25.08%, #fff 108.43%);
  }
  [theme='dark'] .rooms3-app {
    position: relative;
    background: var(--layer-3-color);
  }
}

@media screen and (min-width: 70.625em) {
  .rooms3-app {
    padding: 14px 0 14px 109px;
  }
}

.rooms3-app__img {
  flex-basis: 90px;
  flex-grow: 0;
}

@media screen and (min-width: 40em) {
  .rooms3-app__img {
    flex-basis: 134px;
    flex-shrink: 0;
  }
}

.rooms3-app__wrap {
  margin: 10px 0;
}

.rooms3-app__content {
  color: var(--text-2-color, #000);
}

.rooms3-app__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-app__title {
    font-size: 22px;
  }
}

.rooms3-app__description {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-app__description {
    max-width: 400px;
    font-size: 16px;
  }
}

.rooms3-app__link {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.rooms3-q-support {
  order: 1;
  margin: 8px 20px 0;
  padding: 28px 24px 29px 25px;
  border-radius: 10px;
  background: rgba(217, 217, 217, .3);
  color: var(--text-2-color, #000);
  text-align: center;
}

[theme='dark'] .rooms3-q-support {
  background: rgba(217, 217, 217, .1);
}

@media screen and (min-width: 30em) {
  .rooms3-q-support {
    max-width: 500px;
    margin: 20px auto;
  }
}

@media screen and (min-width: 70.625em) {
  .rooms3-q-support {
    gap: 28px;
    display: flex;
    order: 0;
    max-width: unset;
    margin: 0;
  }
}

@media screen and (min-width: 78.4375em) {
  .rooms3-q-support {
    padding: 27px 24px 27px 98px;
  }
}

.rooms3-q-support__logo {
  display: none;
  width: 113px;
}

@media screen and (min-width: 70.625em) {
  .rooms3-q-support__logo {
    display: initial;
  }
}

.rooms3-q-support__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 70.625em) {
  .rooms3-q-support__content {
    align-items: flex-start;
  }
}

.rooms3-q-support__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.rooms3-q-support__subtitle {
  margin-top: 8px;
  font-size: 16px;
  line-height: 22px;
}

.rooms3-q-support__links {
  gap: 10px;
  display: flex;
  margin: 8px 0;
}

@media screen and (min-width: 70.625em) {
  .rooms3-q-support__links {
    order: 3;
    margin-bottom: 0;
  }
}

.rooms3-q-support__link-item {
  --i-color: #fff;
  display: flex;
  padding: 4px 24px;
  border-radius: 5px;
  background-color: #03172c;
}

.rooms3-q-support__link-item:hover {
  --i-color: #2222;
  background-color: #45ae52;
}

.rooms3-q-support__link-item svg {
  aspect-ratio: 1 / 1;
  width: 20px;
  height: -moz-fit-content;
  height: fit-content;
}

.rooms3-q-support__time {
  gap: 4px;
  --i-color: var(--text-1-color, rgba(0, 0, 0, .6));
  display: flex;
  grid-area: time;
  flex-direction: column;
  align-items: center;
  color: var(--text-1-color, rgba(0, 0, 0, .6));
}

@media screen and (min-width: 70.625em) {
  .rooms3-q-support__time {
    --i-color: var(--text-1-color, #000);
    flex-direction: row;
    color: var(--text-1-color, #000);
  }
}

.rooms3-q-support__schedule {
  gap: 8px;
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.rooms3-q-support__schedule svg {
  width: 14px;
  height: 14px;
}

.rooms3-q-support__responce {
  color: inherit;
  font-size: 14px;
  line-height: 18px;
}

.rooms3-more {
  display: flex;
  grid-area: more;
  justify-content: center;
  width: 100%;
  margin: 20px 0 36px;
}

@media screen and (min-width: 48em) {
  .rooms3-more {
    margin: 20px 0;
  }
}

.rooms3-more__wrap {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rooms3-more__wrap::after,
.rooms3-more__wrap::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-2-color, #e7e7e7);
  content: '';
}

.rooms3-more__button {
  padding: 10px 24px;
  border: 1px solid var(--text-1-color, #000);
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-1-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.rooms3-news {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 30px 24px;
}

.rooms3-news .slider-news--item {
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 48em) {
  .rooms3-news {
    padding: 50px 30px 80px;
  }
}

.rooms3-article {
  gap: 20px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1197px;
  margin-top: 20px;
  padding: var(--widgets-padding);
  color: var(--text-2-color, #000);
}

@media screen and (min-width: 79.375em) {
  .rooms3-article {
    flex-direction: row;
    align-items: flex-start;
  }
}

.rooms3-article__body {
  padding-bottom: 8px;
}

.rooms3-article__body.article-body h3,
.rooms3-article a,
.rooms3-article h2,
.rooms3-article li,
.rooms3-article p {
  font-family: Roboto, Arial, sans-serif;
}

.rooms3__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-width: 140px;
  height: 40px;
  padding: 0 20px 0 10px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 30em) {
  .rooms3__copy {
    flex-grow: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .rooms3__copy {
    flex-grow: 1;
    height: 46px;
    border-radius: 5px 0 0 5px;
  }
}

.rooms3__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.rooms3__copy strong {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 79.375em) {
  .rooms3__copy strong {
    font-size: 16px;
    line-height: 22px;
  }
}

.rooms3__copy-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

[theme='dark'] .rooms3__copy-icon {
  --i-color1: var(--text-2-color);
}

@media screen and (min-width: 79.375em) {
  .rooms3__copy-icon {
    width: 16px;
    height: 16px;
  }
}

.rooms3__code-wrap {
  gap: 6px;
  display: flex;
}

.rooms3__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.rooms3__notify.animate {
  display: flex;
  animation-name: slide;
}

.rooms3__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

[theme='dark'] .rooms3__notify-icon {
  --i-color1: #00ff92;
}

@media screen and (min-width: 79.375em) {
  .rooms3__notify-icon {
    width: 20px;
    height: 12px;
  }
}

.rooms3__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

[theme='dark'] .rooms3__notify-text {
  color: #00ff92;
}

@media screen and (min-width: 79.375em) {
  .rooms3__notify-text {
    font-size: 16px;
  }
}

.rooms3-card__reg-wrap {
  display: flex;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  justify-content: flex-end;
  max-width: 360px;
}

.rooms3-card__copy-wrap {
  display: flex;
  justify-content: space-between;
  border-radius: 5px 0 0 5px;
}

.rooms3-card__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-width: 98px;
  height: 28px;
  padding: 0 8px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 5px 0 0 5px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .rooms3-card__copy {
    min-width: 140px;
  }
}

.rooms3-card__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.rooms3-card__copy strong {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.rooms3-card__code-wrap {
  gap: 6px;
  display: flex;
}

.rooms3-card__code-text {
  color: var(--text-3-color, #6d6d6d);
  font-size: 14px;
  font-weight: 400;
}

.rooms3-card__copy-icon {
  flex-shrink: 0;
  width: 12px;
  height: 13px;
}

[theme='dark'] .rooms3-card__copy-icon {
  --i-color1: var(--text-2-color);
}

.rooms3-card__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.rooms3-card__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

[theme='dark'] .rooms3-card__notify-icon {
  --i-color1: #00ff92;
}

.rooms3-card__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

[theme='dark'] .rooms3-card__notify-text {
  color: #00ff92;
}

.rooms3-card__reg {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.rooms3-card__reg svg {
  --i-color1: #fff;
  width: 12px;
  height: 12px;
}

.rooms3-card__copy-wrap ~ .rooms3-card__reg {
  border-radius: 0 4px 4px 0;
}

.rooms3-card__notify.animate {
  display: flex;
  animation-name: slide;
}

.rooms3-contact {
  container-type: inline-size;
  container-name: rooms3-contact;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 70.625em) {
  .rooms3-contact {
    flex-basis: 385px;
    flex-shrink: 0;
    padding: 31px 33px 33px 33px;
    border: 1px solid var(--line-0-color, #d2d2d2);
    border-radius: 10px;
    background-color: var(--layer-3-color, #f9f9f9);
  }
}

.rooms3-contact__wrap {
  gap: 20px;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__wrap {
    grid-template-columns: 1fr 1.5fr;
    padding: 80px 0;
  }
}

@container rooms3-contact (min-width: 1024px) {
  .rooms3-contact__wrap {
    gap: 60px;
  }
}

.rooms3-contact__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__inner {
    max-width: 360px;
  }
}

.rooms3-contact__heading {
  margin: 0 0 8px;
  color: #e50c2c;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__heading {
    margin: 0 0 12px;
  }
}

.rooms3-contact__lead {
  color: var(--text-2-color, #202020);
  font-size: 16px;
  line-height: 1.5;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__lead {
    margin: 0 0 43px;
    font-size: 18px;
  }
}

.rooms3-contact__note {
  display: none;
  position: relative;
  color: var(--text-3-color, #aaa);
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__note {
    display: block;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }
}

.rooms3-contact__note::before {
  margin: 0 4px 0 0;
  color: #e51e25;
  content: '*';
}

.rooms3-contact__note_mobile {
  display: block;
}

@container rooms3-contact (min-width: 768px) {
  .rooms3-contact__note_mobile {
    display: none;
  }
}

.rooms3-form {
  gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@container rooms3-contact (min-width: 480px) {
  .rooms3-form {
    gap: 16px;
  }
}

.rooms3-form__group {
  gap: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rooms3-form__label {
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 64em) {
  .rooms3-form__label {
    font-weight: 600;
  }
}

.rooms3-form__input-text {
  width: 100%;
  height: 55px;
  padding: 18px 16px;
  border: 1px solid var(--line-0-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-3-color, #aaa);
}

.rooms3-form__input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line-0-color, #dfe1e4);
  border-radius: 10px;
  background-color: var(--layer-4-color, #fff);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNTg2NDkgOS44MzQ5TDcuMDAwNDkgOC40MjA5TDEyLjI5MzUgMTMuNjI3OUwxNy41ODY1IDguNDIwOUwxOS4wMDA1IDkuODM0OUwxMi4yOTM1IDE2LjU0MTlMNS41ODY0OSA5LjgzNDlaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px;
  color: var(--text-3-color, #aaa);
}

[theme='dark'] .rooms3-form__input-select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNTg2NDkgOS44MzQ5TDcuMDAwNDkgOC40MjA5TDEyLjI5MzUgMTMuNjI3OUwxNy41ODY1IDguNDIwOUwxOS4wMDA1IDkuODM0OUwxMi4yOTM1IDE2LjU0MTlMNS41ODY0OSA5LjgzNDlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
}

.rooms3-form__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 2px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

@container rooms3-contact (min-width: 480px) {
  .rooms3-form__submit {
    margin: 20px 0 0;
  }
}

.rooms3-referrals__info {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-right: 8px;
  color: var(--text-2-color, #000);
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 30em) {
  .rooms3-referrals__info {
    font-size: 14px;
    line-height: 20px;
  }
}

.rooms3-referrals__bonus {
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-2-color, #202020);
  font-weight: 600;
}

.abk-wrap {
  --abk-opacity-bg-image: var(--custom-abk-opacity-bg-image, .04);
  --abk-bg-color: var(--custom-abk-bg-color, #fff);
  --abk-article-color: var(--custom-abk-article-color, #000);
  --abk-article-border-color: var(--custom-abk-article-border-color, #f9f9f9);
  --abk-head-border-color: var(--custom-abk-head-border-color, #ececec);
  --abk-head-color: var(--custom-abk-head-color, #000);
  --abk-item-head-color: var(--custom-abk-item-head-color, #000);
  --abk-item-bg-color: var(--custom-abk-item-bg-color, #fff);
  --abk-item-line-color: var(--custom-abk-item-line-color, #e3e3e3);
  --abk-item-link-color: var(--custom-abk-item-link-color, #000);
  --abk-item-link-shadow-color: var(--custom-abk-item-link-shadow-color, #d8d8d8);
  --abk-item-list-color: var(--custom-abk-item-list-color, #000);
  --abk-item-net-color: var(--custom-abk-item-net-color, #aaa);
  --abk-item-net-bg-color: var(--custom-abk-item-net-bg-color, #f4f4f4);
  --abk-item-rev-color: var(--custom-abk-item-rev-color, #000);
  --abk-item-rev-bg-color: var(--custom-abk-item-rev-bg-color, #ffe8e7);
  --abk-item-rev-border-color: var(--custom-abk-item-rev-border-color, #eac7cc);
  --abk-item-button-color: var(--text-1-color, #000);
  --abk-item-button-bg-color: var(--custom-abk-item-button-bg-color, #f4f4f4);
  --abk-item-fbk-border-color: var(--custom-abk-item-fbk-border-color, #e3e3e3);
  --abk-item-rate-color: var(--custom-abk-item-rate-color, #aaa);
  --abk-item-rate-bg-color: var(--custom-abk-item-rate-bg-color, #fff);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  background-color: var(--abk-bg-color);
}

[theme='dark'] .abk-wrap {
  --custom-abk-opacity-bg-image: .02;
  --custom-abk-bg-color: #313131;
  --custom-abk-article-border-color: #404040;
  --custom-abk-article-color: #fff;
  --custom-abk-head-border-color: #3c3c3c;
  --custom-abk-head-color: #fff;
  --custom-abk-item-head-color: #fff;
  --custom-abk-item-bg-color: #282828;
  --custom-abk-item-line-color: #313131;
  --custom-abk-item-link-color: #fff;
  --custom-abk-item-link-shadow-color: #3c3d3e;
  --custom-abk-item-list-color: #fff;
  --custom-abk-item-net-color: #7d7d7d;
  --custom-abk-item-net-bg-color: #313131;
  --custom-abk-item-rev-color: #fff;
  --custom-abk-item-rev-bg-color: #4f2a2f;
  --custom-abk-item-rev-border-color: #6e2b35;
  --custom-abk-item-button-bg-color: #313131;
  --custom-abk-item-fbk-border-color: #343434;
  --custom-abk-item-rate-color: #7d7d7d;
  --custom-abk-item-rate-bg-color: #424242;
}

.abk-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--abk-opacity-bg-image);
}

.abk-head {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .abk-head {
    padding: 60px 0 0;
  }
}

.abk-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 361px;
  padding: 24px 24px 48px;
  background-image: url(/nimg/rooms-head-bg5.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .abk-head__inner {
    padding: 48px 24px;
  }
}

.abk-head svg {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

@media screen and (min-width: 48em) {
  .abk-head svg {
    width: 128px;
    height: 128px;
  }
}

.abk-head__slogan {
  width: 100%;
  margin: 0 0 4px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .abk-head__slogan {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 35px;
    text-align: left;
  }
}

.abk-head__lead {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .abk-head__lead {
    text-align: left;
  }
}

.abk-head__lead strong {
  color: #44d487;
  font-size: 18px;
  line-height: 21px;
}

.abk-head__lead span {
  color: #000;
}

.abk-head__wrap {
  gap: 4px 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  margin: 4px 0 0;
}

@media screen and (min-width: 48em) {
  .abk-head__wrap {
    gap: 0 24px;
    grid-template-columns: 128px 1fr;
    margin: 16px 0 0;
  }
}

.abk-head__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 332px;
}

.abk-subwrap {
  display: flex;
  z-index: 1;
  flex-direction: column;
  width: 100%;
  padding: 20px 24px 10px;
}

@media screen and (min-width: 48em) {
  .abk-subwrap {
    padding: 45px 30px 30px;
  }
}

.abk-subwrap h1 {
  align-self: start;
  margin: 0 0 30px;
  color: var(--abk-item-head-color);
  font-size: 30px;
  line-height: 35px;
}

@media screen and (min-width: 48em) {
  .abk-subwrap h1 {
    margin: 0 0 56px;
  }
}

.abk-list {
  gap: 30px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  justify-content: center;
  width: 100%;
  max-width: 396px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .abk-list {
    max-width: 822px;
  }
}

@media screen and (min-width: 64em) {
  .abk-list {
    max-width: 1246px;
  }
}

.abk-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--abk-item-bg-color);
  transition: all .3s;
}

.abk-item:hover {
  box-shadow: 0 6px 15px rgba(68, 8, 8, .1), 0 26px 25px -17px rgba(68, 8, 8, .3);
}

.abk-item_top {
  border-color: transparent;
}

.abk-item__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 98px;
}

.abk-item_top .abk-item__inner {
  padding: 0;
}

.abk-item__logo {
  position: relative;
  width: 100%;
}

.abk-item_top .abk-item__logo {
  max-width: initial;
}

.abk-item__logo::after {
  display: table;
  padding-bottom: 90.5%;
  content: '';
}

.abk-item_top .abk-item__logo::after {
  padding-bottom: 45.535%;
}

.abk-item__logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.abk-item_top .abk-item__logo img {
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.abk-item__picture_dark {
  display: none;
}

[theme='dark'] .abk-item__picture_dark {
  display: block;
}

[theme='dark'] .abk-item__picture_light {
  display: none;
}

.abk-item__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 0 24px 32px;
}

@media screen and (min-width: 48em) {
  .abk-item__content {
    padding: 0 32px 32px;
  }
}

.abk-item__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 26px;
  margin: 0 0 24px;
  padding: 32px 0 0;
  border-top: 1px solid var(--abk-item-line-color);
}

.abk-item_top .abk-item__wrap {
  border-color: transparent;
}

.abk-item__link {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  color: var(--abk-item-link-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.abk-item__link svg {
  --i-color1: #44af52;
  display: none;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0 8px 0 0;
}

.abk-item__link::after {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--abk-item-link-shadow-color);
  content: '';
  pointer-events: none;
}

.abk-item_top .abk-item__link {
  color: #44af52;
}

.abk-item_top .abk-item__link svg {
  display: block;
}

.abk-item_top .abk-item__link::after {
  box-shadow: inset 0 0 0 3px #44af52;
}

.abk-item__network {
  padding: 6px 8px;
  border-radius: 4px;
  background-color: var(--abk-item-net-bg-color);
  color: var(--abk-item-net-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.abk-item__list {
  margin: 0 0 auto;
}

.abk-item__list li {
  display: flex;
  color: var(--abk-item-list-color);
  font-size: 14px;
  line-height: 24px;
}

.abk-item__list li:not(:last-child) {
  margin: 0 0 8px;
}

.abk-item__list li svg {
  --i-color1: #000;
  --i-color2: #f4f4f4;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 2px 16px 0 0;
}

[theme='dark'] .abk-item__list li svg {
  --i-color1: #fff;
  --i-color2: #313131;
}

.abk-item_top .abk-item__list li svg {
  --i-color1: #44af52;
}

.abk-item__list li p {
  margin: 0;
  line-height: 24px;
}

.abk-item__bottom {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 32px 0 0;
}

.abk-item__review {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background-color: #44af52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.abk-item__review_other {
  background-color: #5a9aad;
}

.abk-item__review svg {
  --color1: #fff;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

.abk-item__split {
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

.abk-item__reg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--abk-item-fbk-border-color);
  border-radius: 10px;
  background-color: var(--abk-item-button-bg-color);
  color: var(--abk-item-button-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.abk-item__reg svg {
  --color1: #000;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

[theme='dark'] .abk-item__reg svg {
  --color1: #fff;
}

.abk-item__fbk {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--abk-item-fbk-border-color);
  border-radius: 10px;
  background-color: var(--abk-item-button-bg-color);
  color: var(--abk-item-button-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.abk-item__fbk svg {
  --color1: #000;
  flex-shrink: 0;
  width: 17px;
  height: 16px;
  margin: 0 8px 0 0;
}

[theme='dark'] .abk-item__fbk svg {
  --color1: #fff;
}

.abk-item__subwrap {
  display: flex;
  margin: 0 auto;
}

.abk-item__point {
  flex-shrink: 0;
  margin: 0 4px 0 0;
  color: var(--abk-item-button-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.abk-item__rate {
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 4px;
  background-color: var(--abk-item-rate-bg-color);
  color: var(--abk-item-rate-color);
  font-size: 12px;
  font-weight: 700;
}

.rooms-contact {
  padding: 30px 15px 50px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .rooms-contact {
    padding: 50px 15px 90px;
  }
}

.abk-article {
  z-index: 1;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 30px 0;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .abk-article {
    padding: 0 30px;
  }
}

.abk-article__item {
  padding: 36px 0;
  color: var(--abk-article-color);
}

.abk-article__item:not(:last-child) {
  border-bottom: 1px solid var(--abk-article-border-color);
}

.abk-article__item h2 {
  margin: 0 0 16px;
  color: var(--abk-article-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.abk-article__item p {
  margin: 0;
  color: var(--abk-article-color);
  font-size: 16px;
  line-height: 24px;
}

.abk-article__item p:not(:last-child) {
  margin: 0 0 24px;
}

.abk-article__item a {
  color: var(--abk-article-color);
  text-decoration: underline;
}

.abk-article__item figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .abk-article__item figure img {
    max-width: 80%;
  }
}

.abk-article__item figure:not(:last-child) {
  margin-bottom: 24px;
}

.abk-article__item figcaption {
  margin-top: 8px;
  color: inherit;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.abk-article__item ul {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 18px;
  font-size: inherit;
  line-height: inherit;
  list-style-type: disc;
}

@media screen and (min-width: 64em) {
  .abk-article__item ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 20px;
  }
}

.abk-article__item ul:not(:last-child) {
  margin-bottom: 24px;
}

.abk-article__item li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.abk-article__item li:not(:last-child) {
  margin-bottom: 14px;
}

.abk-article__item li::marker {
  color: var(--text-4-color, #606060);
  font-size: 1.2em;
}

.content_darklogo {
  background-color: #303641;
  background-image: url(/nimg/bb-pattern.svg);
}

.abk2-wrap {
  --ar2-opacity-bg-image: var(--custom-ar2-opacity-bg-image, .03);
  --ar2-bg-color: var(--custom-ar2-bg-color, #fff);
  display: flex;
  position: relative;
  background-color: var(--layer-2-color, #fff);
}

[theme='dark'] .abk2-wrap {
  --custom-ar2-opacity-bg-image: .02;
  --custom-ar2-bg-color: #313131;
}

.abk2-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--ar2-opacity-bg-image);
  pointer-events: none;
}

.abk2-wrap section {
  position: relative;
}

.abk2-inner {
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
}

@media screen and (min-width: 70.625em) {
  .abk2-inner {
    gap: 0 30px;
    display: grid;
    grid-template-areas: 'abk2-head abk2-head' 'abk2-rating abk2-actions' 'abk2-article abk2-article';
    grid-template-columns: auto 423px;
  }
}


/* stylelint-disable -- declaration-colon-newline-after, value-list-comma-newline-after, value-list-comma-space-after */

.abk2-head {
  display: flex;
  z-index: 1;
  position: relative;
  grid-area: abk2-head;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
}

.abk2-head__inner {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 20px 0 20px;
  background-image: url(/nimg/rooms-head-bg5.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 200%;
}

@media screen and (min-width: 48em) {
  .abk2-head__inner {
    padding: 49px 20px 23px;
    background-image: url(/nimg/rooms2-bgd.png);
    background-position: center;
    background-size: cover;
  }
  [theme='dark'] .abk2-head__inner {
    background-image: url(/nimg/rooms2-bgd-opacity-dark.png);
  }
}

@media screen and (min-width: 70.625em) {
  .abk2-head__inner {
    align-items: flex-start;
    padding: 305px 30px 24px;
    background-position: top center;
    background-size: contain;
  }
}

.abk2-head__inner::after {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 9%;
  left: 0;
  height: 5%;
  background: linear-gradient(to top, #fff, transparent);
  content: '';
}

[theme='dark'] .abk2-head__inner::after {
  display: none;
}

@media screen and (min-width: 48em) {
  .abk2-head__inner::after {
    display: none;
  }
}

.abk2-head__filter {
  z-index: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(105.04% 71.44% at 46.79% 41.24%, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

[theme='dark'] .abk2-head__filter {
  display: none;
}

@media screen and (min-width: 48em) {
  .abk2-head__filter {
    display: none;
  }
}

.abk2-head__wrap {
  z-index: 3;
  position: relative;
}

.abk2-head__text {
  color: #000;
  text-shadow: 0 0 5px rgba(255, 255, 255, .8),
                 0 0 10px rgba(255, 255, 255, .6),
                 0 0 15px rgba(255, 255, 255, .4);
}

@media screen and (min-width: 40em) {
  .abk2-head__text {
    color: var(--text-1-color, #000);
  }
  [theme='dark'] .abk2-head__text {
    text-shadow: 0 0 5px rgba(0, 0, 0, .8),
                     0 0 10px rgba(0, 0, 0, .6),
                     0 0 15px rgba(0, 0, 0, .4);
  }
}

.abk2-head__slogan {
  width: 100%;
  margin: 0 0 16px;
  color: inherit;
  font-family: "PT Serif", serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .abk2-head__slogan {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: 1;
  }
}

.abk2-banner {
  width: 100%;
}

.abk2-banner img {
  width: 100%;
}

@media screen and (min-width: 70.625em) {
  .abk2-banner {
    z-index: 2;
    position: absolute;
    top: 25px;
    left: 50%;
    max-width: 1024px;
    transform: translateX(-50%);
  }
}

.abk2-actions {
  grid-area: abk2-actions;
  width: 100%;
  margin: 24px 0;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions {
    margin-top: 0;
    padding-right: 30px;
  }
}

.abk2-actions__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 20px;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__head {
    padding: 0;
  }
}

.abk2-actions__heading {
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.abk2-actions__title {
  grid-area: action-title;
  align-self: center;
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.abk2-actions__description {
  grid-area: action-description;
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 16px;
}

.abk2-actions__controls {
  gap: 8px;
  display: flex;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__controls {
    display: none;
  }
}

.abk2-actions__controls a:nth-child(1) {
  pointer-events: visible;
}

.abk2-actions__controls a:nth-child(2) {
  pointer-events: visible;
}

.abk2-actions__button {
  --i-color1: #fff;
  --i-color2: #9b9b9b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
}

[theme='dark'] .abk2-actions__button {
  --i-color1: #606060;
  --i-color2: #fff;
  border-color: #757575;
}

.abk2-actions__button_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.abk2-actions__button svg {
  width: 30px;
  height: 30px;
}

.abk2-actions__cards-wrapper {
  position: relative;
  padding: 0 20px;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__cards-wrapper {
    padding: 0;
  }
}

.abk2-actions__cards {
  width: 100%;
  overflow: hidden;
}

.abk2-actions__cards-inner {
  padding: 0 20px;
  overflow: hidden;
}

.abk2-actions__slider {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__slider {
    gap: 24px;
    flex-direction: column;
  }
}

.abk2-actions__card-item {
  gap: 12px 10px;
  box-sizing: border-box;
  display: grid;
  grid-template-areas: 'action-icon action-title' 'action-description action-description';
  grid-template-columns: 32px auto;
  grid-template-rows: 32px auto;
  flex-shrink: 0;
  max-width: 156px;
  min-height: 113px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid var(--line-1-color, #ebedee);
  border-radius: 6px;
  background-color: var(--layer-2a-color, #fff);
  opacity: 1;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__card-item {
    gap: 0 16px;
    grid-template-areas: 'action-icon action-title' 'action-icon action-description';
    grid-template-columns: 48px auto;
    max-width: unset;
    min-height: unset;
    padding: 16px;
  }
}

.abk2-actions__icon-wrap {
  display: flex;
  grid-area: action-icon;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__icon-wrap {
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    width: 48px;
    height: 48px;
  }
}

.abk2-actions__icon {
  max-width: 32px;
  max-height: 32px;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__icon {
    width: 100%;
    max-width: 48px;
    max-height: 48px;
  }
}

.abk2-actions__content {
  margin-top: 34px;
  padding: 0 16px;
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__content {
    margin: 0;
  }
}

.abk2-actions__term {
  margin-bottom: 16px;
  color: #ec314d;
  font-size: 14px;
  line-height: 24px;
}

.abk2-actions__more {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin: 8px auto 0;
}

@media screen and (min-width: 64em) {
  .abk2-actions__more {
    max-width: 100%;
  }
}

@media screen and (min-width: 70.625em) {
  .abk2-actions__more {
    font-size: 14px;
    text-decoration: underline;
  }
}

.abk2-actions__more-link {
  color: var(--text-2-color, #202020);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: underline;
}

.abk2-rating {
  display: flex;
  position: relative;
  grid-area: abk2-rating;
  flex-direction: column;
  align-items: center;
  align-self: baseline;
  width: 100%;
}

@media screen and (min-width: 70.625em) {
  .abk2-rating {
    padding-left: 30px;
  }
}

.abk2-rating__head {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px 20px 0 20px;
  background-color: #485060;
}

@media screen and (min-width: 40em) {
  .abk2-rating__head {
    align-items: flex-start;
  }
}

@media screen and (min-width: 70.625em) {
  .abk2-rating__head {
    border-radius: 10px 10px 0 0;
  }
}

.abk2-rating__title {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.abk2-rating__headers {
  gap: 4px;
  display: flex;
}

.abk2-rating__header-text {
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .28px;
  line-height: 150%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.abk2-rating__header-text_full {
  display: none;
}

@media screen and (min-width: 48em) {
  .abk2-rating__header-text_full {
    display: inline;
  }
}

@media screen and (min-width: 48em) {
  .abk2-rating__header-text_short {
    display: none;
  }
}

.abk2-rating__tab-header {
  padding: 6px 12px;
  border-top: 1px solid rgba(0, 0, 0, .35);
  border-right: 1px solid rgba(0, 0, 0, .35);
  border-left: 1px solid rgba(0, 0, 0, .35);
  border-radius: 6px 6px 0 0;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  cursor: pointer;
}

.abk2-rating__tab-header_active {
  border-top: 1px solid var(--Gray-30, #e7e7e7);
  border-right: 1px solid var(--Gray-30, #e7e7e7);
  border-left: 1px solid var(--Gray-30, #e7e7e7);
  background: var(--text-3-color, #fff);
  color: #313131;
  cursor: default;
}

[theme='dark'] .abk2-rating__tab-header_active {
  --i-color1: var(--text-1-color);
}

.abk2-rating__tabs-wrap {
  width: 100%;
}

.abk2-rating__tab {
  display: none;
}

.abk2-rating__tab_active {
  display: initial;
}

.abk2-rating__card-head {
  gap: 8px;
  display: flex;
  grid-area: rating-head;
  align-items: center;
}

.abk2-rating__card-title {
  grid-area: rating-title;
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 64em) {
  .abk2-rating__card-title {
    font-size: 22px;
  }
}

.abk2-rating__card-description {
  grid-area: rating-description;
  color: var(--text-3-color, #000);
}

.abk2-rating__score {
  display: flex;
  align-items: center;
  color: var(--text-1-color, #000);
  font-size: 18px;
}

.abk2-rating__score svg {
  --i-color1: #000;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}

[theme='dark'] .abk2-rating__score svg {
  --i-color1: var(--text-1-color);
}

.abk2-rating__item {
  gap: 12px;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-1-color, #ededed);
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 40em) {
  .abk2-rating__item {
    flex-direction: row;
    justify-content: space-between;
  }
}

.abk2-rating__item:first-child {
  border-bottom: 1px solid var(--line-2-color, #fff3d3);
  background: linear-gradient(90deg, #fff 25.08%, #fff3d3 108.43%);
}

[theme='dark'] .abk2-rating__item:first-child {
  background: linear-gradient(90deg, #212121 25.08%, #434342 108.43%);
}

.abk2-rating__card-content {
  gap: 8px;
  display: grid;
  grid-template-areas: 'rating-logo rating-head' 'rating-description rating-description';
  grid-template-columns: 32px auto;
}

.abk2-rating__logo {
  grid-area: rating-logo;
  width: 32px;
  height: 32px;
}

.abk2-rating__result {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: inherit;
}

@media screen and (min-width: 64em) {
  .abk2-rating__result {
    font-size: 22px;
  }
}

.abk2-rating__description {
  font-size: 16px;
  line-height: 21px;
}

.abk2-rating__accent {
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.abk2-rating__accent_yellow {
  border: 1px solid #f2c94c;
  background: rgba(255, 243, 211, .7);
  color: #d9a82a;
}

[theme='dark'] .abk2-rating__accent_yellow {
  background: rgba(96, 75, 20, .7);
}

.abk2-rating__accent_green {
  border: 1px solid #45ae52;
  background: rgba(69, 174, 82, .2);
  color: #45ae52;
}

.abk2-rating__accent_red {
  border: 1px solid #e31f26;
  background: rgba(227, 31, 38, .1);
  color: #e51e25;
}

.abk2-rating__links-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .abk2-rating__links-wrap {
    gap: 26px;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.abk2-rating__links {
  gap: 24px;
  display: flex;
  align-items: center;
}

.abk2-rating__link-item {
  gap: 8px;
  --i-color1: var(--text-3-color, #292929);
  display: flex;
  align-items: center;
}

.abk2-rating__link-item span {
  color: var(--text-3-color, #292929);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: right;
}

.abk2-rating__reg {
  grid-area: rating-reg;
}

.abk2-rating__reg-link {
  display: inline-block;
  position: relative;
  padding: 9px 20px;
  border-radius: 5px;
  background-color: #45ae52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.article .abk2-rating__reg-link {
  color: #fff;
}

.abk2-rating__more {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 24px auto 0 auto;
}

.abk2-rating__more::before {
  z-index: 0;
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--line-1-color, #e7e7e7);
  content: '';
}

.abk2-rating__more-button {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  border: 1px solid var(--line-1-color, #000);
  border-radius: 10px;
  background-color: var(--layer-5-color, #fff);
  color: var(--text-3-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.abk2-rating__rooms {
  gap: 4px;
  display: flex;
  align-items: center;
  margin-top: 24px;
  color: var(--text-2-color, #000);
}

@media screen and (min-width: 70.625em) {
  .abk2-rating__rooms {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
    color: #fff;
  }
}

.abk2-rating__rooms-icon {
  --i-color1: var(--text-2-color, #000);
}

@media screen and (min-width: 70.625em) {
  .abk2-rating__rooms-icon {
    --i-color1: #fff;
  }
}

.abk2-article {
  z-index: 1;
  grid-area: abk2-article;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 30px 0;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .abk2-article {
    padding: 0 30px;
  }
}

.abk2-article__item {
  padding: 36px 0;
  color: var(--text-1-color, #000);
}

.abk2-article__item h2 {
  margin: 0 0 16px;
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.abk2-article__item p {
  margin: 0;
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 24px;
}

.abk2-article__item p:not(:last-child) {
  margin: 0 0 24px;
}

.abk2-article__item a {
  color: var(--text-1-color, #000);
  text-decoration: underline;
}

.abk2-article__item figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .abk2-article__item figure img {
    max-width: 80%;
  }
}

.abk2-article__item figure:not(:last-child) {
  margin-bottom: 24px;
}

.abk2-article__item figcaption {
  margin-top: 8px;
  color: inherit;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.abk2-article__item ul {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 18px;
  font-size: inherit;
  line-height: inherit;
  list-style-type: disc;
}

@media screen and (min-width: 64em) {
  .abk2-article__item ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 20px;
  }
}

.abk2-article__item ul:not(:last-child) {
  margin-bottom: 24px;
}

.abk2-article__item li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.abk2-article__item li:not(:last-child) {
  margin-bottom: 14px;
}

.abk2-article__item li::marker {
  color: var(--text-4-color, #606060);
  font-size: 1.2em;
}

.gtplus-wrap {
  --gtpl-opacity-bg-image: var(--custom-gtpl-opacity-bg-image, .04);
  --gtpl-bg-color: var(--custom-gtpl-bg-color, #fff);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 0 60px !important;
  background-color: var(--gtpl-bg-color);
}

[theme='dark'] .gtplus-wrap {
  --custom-gtpl-opacity-bg-image: .02;
  --custom-gtpl-bg-color: #313131;
}

.gtplus-wrap::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 300px;
  content: '';
  opacity: var(--gtpl-opacity-bg-image);
}

.gtplus-wrap .rater--value {
  background-image: url(/nimg/yellow19-star2416.svg);
}

.gtplus-wrap .sp-value {
  background-image: url(/nimg/yellow19-star2416.svg);
}

.gtplus-wrap .agg-value {
  background-image: url(/nimg/yellow19-star2416.svg);
}

.gtplus-head {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 56px;
  padding: 0;
}

@media screen and (min-width: 48em) {
  .gtplus-head {
    margin: 0 0 64px;
    padding: 60px 30px 0;
  }
}

.gtplus-head--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1246px;
  min-height: 413px;
  padding: 24px 24px 48px;
  background-image: url(/nimg/gt-plus-header.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .gtplus-head--inner {
    justify-content: flex-start;
    padding: 38px 24px;
    border-radius: 10px;
  }
}

.gtplus-head svg {
  flex-shrink: 0;
  width: 130px;
  height: 124px;
  margin: 0 0 16px;
  filter: drop-shadow(0 -16px 22px rgba(255, 255, 255, .93));
}

@media screen and (min-width: 48em) {
  .gtplus-head svg {
    width: 130px;
    height: 124px;
    margin: 0;
  }
}

.gtplus-head_apps svg {
  margin: 0 0 24px;
}

.gtplus-head--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 137px;
  height: 125px;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .gtplus-head--logo {
    margin: 0;
  }
}

.gtplus-head--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.gtplus-head--slogan {
  width: 100%;
  max-width: 360px;
  margin: 0 0 18px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtplus-head--slogan {
    max-width: 600px;
    font-size: 40px;
    line-height: 48px;
  }
}

.gtplus-head_apps .gtplus-head--slogan {
  max-width: initial;
}

.gtplus-head--subheader {
  width: 100%;
  max-width: 360px;
  margin: 0 0 30px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtplus-head--subheader {
    max-width: 600px;
    margin: 0 0 42px;
    font-size: 24px;
    line-height: 40px;
  }
}

.gtplus-head--button {
  position: relative;
  width: 100%;
  max-width: 290px;
  padding: 23px 16px 22px;
  overflow: hidden;
  border-bottom: 5px solid #2a6533;
  border-radius: 10px;
  background-color: #388043;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  white-space: nowrap;
}

.gtplus-head--button::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, #388043, #55c266 50%, #388043);
  content: '';
}

.gtplus-pros {
  --gtpp-bg-color: var(--layer-3-color, #fff);
  --gtpp-border-color: var(--layer-3-color, #e3e3e3);
  --gtpp-head-color: var(--text-1-color, #000);
  --gtpp-line-color: #e3e3e3;
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  margin: 0 0 56px;
  padding: 0 24px;
}

:root[theme='dark'] .gtplus-pros {
  --gtpp-line-color: #44d487;
}

@media screen and (min-width: 48em) {
  .gtplus-pros {
    margin: 0 0 60px;
    padding: 0 30px;
  }
}

.gtplus-pros--head {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 19px;
}

@media screen and (min-width: 48em) {
  .gtplus-pros--head {
    margin: 0 0 40px;
  }
}

.gtplus-pros--heading {
  margin: 0;
  color: var(--gtpp-head-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtplus-pros--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.gtplus-pros--grid {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
}

@media screen and (min-width: 48em) {
  .gtplus-pros--grid {
    gap: 30px;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media screen and (min-width: 70.625em) {
  .gtplus-pros--grid {
    gap: 0 30px;
    grid-template-columns: repeat(3, minmax(290px, 1fr));
  }
}

.gtpros-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 0;
  padding: 54px 32px 26px;
  border: 1px solid var(--gtpp-border-color);
  border-radius: 10px;
  background-color: var(--gtpp-bg-color);
}

@media screen and (min-width: 48em) {
  .gtpros-item {
    grid-column: span 2;
    padding: 64px 32px 26px;
  }
  .gtpros-item:nth-last-child(1) {
    grid-column: 2 / span 2;
  }
}

@media screen and (min-width: 70.625em) {
  .gtpros-item {
    grid-column: span 1;
  }
  .gtpros-item:nth-last-child(1) {
    grid-column: auto / span 1;
  }
}

.gtpros-item--head {
  display: flex;
  position: absolute;
  top: -40px;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gtpp-line-color);
  border-radius: 50%;
  background-color: var(--gtpp-bg-color);
}

.gtpros-item--head svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.gtpros-item--heading {
  max-width: 300px;
  color: var(--gtpp-head-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtpros-item--heading {
    font-size: 20px;
    line-height: 24px;
  }
}

.gtpros-item--list {
  width: 100%;
  max-width: 330px;
  margin: 0 0 auto;
  padding: 16px 0 0;
}

.gtpros-item--list li {
  color: var(--gtpp-head-color);
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .gtpros-item--list li {
    font-size: 18px;
    line-height: 28px;
  }
}

.gtpros-item--list li:not(:last-child) {
  margin: 0 0 8px;
}

.gtpros-item--list li::before {
  display: inline-flex;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin: 0 12px 0 0;
  transform: translateY(-2px);
  border-radius: 50%;
  background-color: #e51e25;
  content: '';
}

.gtpros-item--list a {
  color: var(--gtpp-head-color);
  font-weight: 500;
  text-decoration: underline;
}

.gtplus-feedback {
  --fdb-item-border-color: var(--line-1-color, #000);
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 56px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .gtplus-feedback {
    margin: 0 0 60px;
    padding: 0 30px;
  }
}

.toprec-widget {
  --toprec-stream-header-color: var(--text-1-color, #000);
  --toprec-item-bg-color: var(--layer-3-color, #f4f4f4);
  --toprec-color: var(--text-5-color, #000);
  --toprec-line-color: var(--line-1-color, #e3e3e3);
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 16px;
  padding: 56px 0 38px;
  border-bottom: 1px solid var(--toprec-line-color);
}

@media screen and (min-width: 48em) {
  .toprec-widget {
    padding: 70px 0 33px;
  }
}

.toprec-widget--head {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .toprec-widget--head {
    margin: 0 0 34px;
  }
}

.toprec-widget--heading {
  color: var(--toprec-stream-header-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .toprec-widget--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.toprec-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 77px;
  height: 29px;
  margin: 0 0 0 auto;
}

.toprec-control--button {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
  cursor: pointer;
}

.toprec-control--button svg {
  --i-color1: #44d487;
  --i-color2: #fff;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}

.toprec-control--button_disabled {
  border: 1px solid #d3d3d3;
  background-color: #fff;
  cursor: auto;
  pointer-events: none;
}

.toprec-control--button_disabled svg {
  --i-color1: #fff;
  --i-color2: #44d487;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
}

.toprecommend--container {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1246px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.toprecommend--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.toprecommend-item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  padding: 24px 24px 36px;
  border: 1px solid #54b46f;
  border-radius: 10px;
  background-color: var(--toprec-item-bg-color);
}

.toprecommend-item--grid {
  gap: 12px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .toprecommend-item--grid {
    gap: 22px 0;
  }
}

.toprecommend-user {
  display: flex;
  width: 100%;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--toprec-line-color);
}

@media screen and (min-width: 48em) {
  .toprecommend-user {
    padding: 0;
    border: 0;
  }
}

.toprecommend-user--avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin: 0 14px 0 0;
  border-radius: 10px;
  background-image: url(/nimg/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .toprecommend-user--avatar {
    width: 76px;
    height: 76px;
    margin: 0 24px 0 0;
  }
}

.toprecommend-user--avatar img {
  border-radius: 10px;
}

.toprecommend-user--data {
  grid-gap: 4px 0;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .toprecommend-user--data {
    grid-gap: 10px 0;
    border-bottom: 1px solid var(--toprec-line-color);
  }
}

.toprecommend-user--nick {
  display: flex;
  align-items: center;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .toprecommend-user--nick {
    font-size: 20px;
  }
}

.toprecommend-user--nick::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 0 7px 0 0;
  border-radius: 50%;
  background-color: #54b46f;
  content: '';
}

@media screen and (min-width: 48em) {
  .toprecommend-user--nick::before {
    width: 14px;
    height: 14px;
    margin: 0 9px 0 0;
  }
}

.toprecommend-user--profile {
  display: flex;
}

.toprecommend-user--post {
  display: flex;
  align-items: center;
  margin: 0 24px 0 0;
  color: #aaa;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
}

.toprecommend-user--post svg {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin: 0 6px 0 0;
}

.toprecommend-user--score {
  display: flex;
  align-items: center;
  color: #54b46f;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
}

.toprecommend-user--score svg {
  flex-shrink: 0;
  width: 16px;
  height: 15px;
  margin: 0 6px 0 0;
}

.toprecommend-item--text {
  color: var(--toprec-color);
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .toprecommend-item--text {
    font-size: 16px;
  }
}

.gtplus-cnt {
  display: flex;
  z-index: 1;
  width: 100%;
  max-width: 1306px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .gtplus-cnt {
    padding: 0 30px;
  }
}

.gtplus-apps-wrap .gtplus-cnt {
  margin: 0 0 56px;
}

@media screen and (min-width: 48em) {
  .gtplus-apps-wrap .gtplus-cnt {
    margin: 0 0 60px;
  }
}

.contact-card {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 48px 0 0;
  padding: 64px 24px 32px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #ffbe43;
  background-image: url(/nimg/gtplus-cnt-bg1.png), url(/nimg/gtplus-cnt-bg3.png);
  background-position: 100% 0, 0 100%;
  background-repeat: no-repeat;
  background-size: 100px, 110px;
}

@media screen and (min-width: 48em) {
  .contact-card {
    padding: 94px 24px 56px;
    background-size: 153px, 192px;
  }
}

.contact-card--head {
  display: flex;
  position: absolute;
  top: -48px;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 96px;
  border-radius: 50%;
}

.contact-card--head svg {
  --i-color2: #ffbe43;
  flex-shrink: 0;
  width: 100px;
  height: 96px;
}

.contact-card--heading {
  margin: 0 0 15px;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

@media screen and (min-width: 48em) {
  .contact-card--heading {
    margin: 0 0 6px;
    font-size: 48px;
    line-height: 64px;
    text-align: center;
  }
}

.contact-card--subheading {
  width: 100%;
  max-width: 684px;
  margin: 0 0 32px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .contact-card--subheading {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
  }
}

.contact-card--subheading strong {
  padding: 1px 5px;
  border-radius: 5px;
  background-color: #fff;
  text-transform: uppercase;
}

.contact-card--subheading span {
  color: #e61e25;
  font-size: 16px;
}

@media screen and (min-width: 48em) {
  .contact-card--subheading span {
    font-size: 21px;
  }
}

.ccard-fs--bottom {
  width: 100%;
  max-width: 438px;
  padding: 0 0 5px;
}

.ccard-chat {
  display: flex;
  justify-content: center;
}

.ccard-chat--online {
  gap: 0 24px;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #000;
  white-space: nowrap;
}

.ccard-chat--icon {
  gap: 0 8px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.ccard-chat--icon svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 25px;
  height: 24px;
}

.ccard-chat--time {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.ccard-chat--time::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 0 4px 0 0;
  border-radius: 50%;
  background-color: #00dd17;
  box-shadow: inset 0 0 0 1px #fff;
  content: '';
}

.ccard-fs--contact {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}

@media screen and (min-width: 40em) {
  .ccard-fs--contact {
    gap: 0 28px;
  }
}

.ccard-fs--contact_top {
  gap: 16px 0;
  grid-template-columns: 1fr;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 40em) {
  .ccard-fs--contact_top {
    gap: 0 16px;
    grid-template-columns: 1fr 1fr;
  }
}

.ccard-fs--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.ccard-fs--chat svg {
  --i-color1: #fff;
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.ccard-fs--chat_wide {
  grid-column: span 2;
}

@media screen and (min-width: 40em) {
  .ccard-fs--chat_wide {
    grid-column: span 1;
  }
}

.xfs-i-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background-color: #000;
}

.xfs-i-btn svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.xfs-t-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.xfs-t-btn_left {
  justify-self: end;
}

.xfs-t-btn_right {
  justify-self: start;
}

.xfs-t-btn svg {
  --i-color1: #000;
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.xfs-t-sep {
  display: block;
  width: 1px;
  height: 16px;
  background-color: #000;
}

.gtplus-list {
  --gtl-bg-color: var(--layer-3-color, #fff);
  --gtl-border-color: var(--line-1-color, #000);
  --gtl-head-color: var(--text-1-color, #000);
  --gtl-contact-color: var(--text-1-color, #000);
  --gtl-button-bg-color: #000;
  --gtl-logo-bg-color: #fff;
  --gtl-icon-bg-color: #000;
  display: flex;
  z-index: 3;
  flex-direction: column;
  width: 100%;
  padding: 0 24px;
}

:root[theme='dark'] .gtplus-list {
  --gtl-button-bg-color: #3f4248;
  --gtl-logo-bg-color: #303030;
  --gtl-icon-bg-color: #3f4248;
}

@media screen and (min-width: 48em) {
  .gtplus-list {
    padding: 0 30px;
  }
}

.gtplus-list_rooms {
  margin: 0 0 48px;
}

.gtplus-list_apps {
  z-index: 2;
}

.gtplus-list--subhead {
  width: 100%;
  max-width: 1246px;
}

.gtplus-list--subheading {
  margin: 0 0 32px;
  color: var(--gtl-head-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

@media screen and (min-width: 48em) {
  .gtplus-list--subheading {
    font-size: 30px;
    line-height: 35px;
  }
}

.gtplus-list--grid {
  gap: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 64em) {
  .gtplus-list--grid {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}

.gtplus-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--gtl-border-color);
  border-radius: 10px;
  background-color: var(--gtl-bg-color);
}

.gtplus-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  border-bottom: 1px solid var(--gtl-border-color);
  border-radius: 10px 10px 0 0;
  background-color: var(--gtl-logo-bg-color);
}

@media screen and (min-width: 64em) {
  .gtplus-card--logo {
    height: 138px;
  }
}

.gtplus-card--img {
  display: flex;
  justify-content: center;
  height: 90px;
}

[theme='dark'] .gtplus-card--img_light {
  display: none;
}

.gtplus-card--img_dark {
  display: none;
}

[theme='dark'] .gtplus-card--img_dark {
  display: flex;
}

.gtplus-card--inner {
  display: grid;
  grid-template-columns: 1fr;
  flex-grow: 1;
}

@media screen and (min-width: 48em) {
  .gtplus-card--inner {
    grid-template-columns: 1fr 1fr;
  }
}

.gtplus-card--game {
  padding: 24px;
  border-bottom: 1px solid var(--gtl-border-color);
}

@media screen and (min-width: 48em) {
  .gtplus-card--game {
    border-right: 1px solid var(--gtl-border-color);
    border-bottom: 0;
  }
}

.gtplus-card--bonus {
  padding: 24px;
}

.gtplus-card--subhead {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.gtplus-card--subhead span {
  color: var(--gtl-head-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.gtplus-card--image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
  border-radius: 8px;
  background-color: var(--gtl-icon-bg-color);
}

.gtplus-card--bonus .gtplus-card--image {
  background-color: #e51e25;
}

.gtplus-card--image svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.gtplus-card--list {
  margin: 0;
  padding: 0;
}

.gtplus-card--list li {
  display: flex;
  color: var(--gtl-head-color);
  font-size: 16px;
  line-height: 19px;
}

@media screen and (min-width: 48em) {
  .gtplus-card--list li {
    font-size: 17px;
    line-height: 26px;
  }
}

.gtplus-card--list li:not(:last-child) {
  margin: 0 0 10px;
}

.gtplus-card--list li span {
  margin: 0 0 0 5px;
  color: #9e9e9e;
}

.gtplus-card--bonus .gtplus-card--list li {
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .gtplus-card--bonus .gtplus-card--list li {
    font-size: 17px;
    line-height: 26px;
  }
}

.gtplus-card--list li a {
  color: var(--gtl-head-color);
  text-decoration: underline;
}

.gtplus-card--list li a:hover {
  text-decoration: none;
}

.gtplus-card--list li::before {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin: 0 12px 0 0;
  transform: translateY(6px);
  border-radius: 50%;
  background-color: #e3e3e3;
  content: '';
}

@media screen and (min-width: 48em) {
  .gtplus-card--list li::before {
    transform: translateY(9px);
  }
}

.gtplus-card--bonus .gtplus-card--list li::before {
  width: 10px;
  height: 10px;
  margin: 0 21px 0 5px;
  transform: translateY(7px);
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='11' fill='none' viewBox='0 0 10 11'%3E%3Cpath fill='%23e51e25' d='M6.5.865h-3v3.498H0v3.004h3.5v3.498h3V7.367H10V4.363H6.5V.865z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

@media screen and (min-width: 48em) {
  .gtplus-card--bonus .gtplus-card--list li::before {
    transform: translateY(8px);
  }
}

.gtplus-card--bottom {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--gtl-border-color);
}

@media screen and (min-width: 48em) {
  .gtplus-card--bottom {
    grid-template-columns: 1fr 1fr;
  }
}

.gtplus-review-wrap {
  display: flex;
  flex-direction: column;
}

.gtplus-contact {
  position: relative;
  margin: auto 0 0;
}

.gtplus-contact--drop {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtplus-contact--drop {
    border-radius: 0 0 0 10px;
  }
}

.gtplus-contact--drop_active {
  background-color: #f1f1f1;
  color: #e51e25;
}

.gtplus-contact--drop_active .gtplus-contact--quest {
  --i-color1: #e51e25;
}

.gtplus-contact--drop_active .gtplus-contact--arrow {
  --i-color1: #e51e25;
  transform: rotate(180deg);
}

.gtplus-card--bottom_noreview .gtplus-contact--drop {
  border-radius: 0 0 10px 10px;
}

@media screen and (min-width: 48em) {
  .gtplus-card--bottom_noreview .gtplus-contact--drop {
    border-radius: 0 0 0 10px;
  }
}

.gtplus-contact--inner {
  display: flex;
  margin: 0 auto;
}

.gtplus-contact--quest {
  --i-color1: #fff;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 22px;
}

.gtplus-contact--arrow {
  --i-color1: #fff;
  width: 22px;
  height: 22px;
}

.gtplus-contact--options {
  display: none;
  position: absolute;
  top: 57px;
  left: -1px;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% + 2px);
  padding: 24px;
  border: 1px solid #5cba7d;
  border-radius: 10px;
  background-color: var(--gtl-bg-color);
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.gtplus-contact--options_show {
  display: flex;
}

.gtplus-contact--head {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e3e3e3;
}

.gtplus-contact--heading {
  color: #5cba7d;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
}

.gtplus-contact--heading strong {
  color: #e51e25;
}

.gtplus-contact--subheading {
  color: var(--gtl-head-color);
  font-size: 16px;
  font-style: italic;
  line-height: 16px;
}

.gtplus-contact--link {
  display: flex;
  align-items: center;
  color: var(--gtl-head-color);
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
}

.gtplus-contact--link:not(:last-child) {
  margin: 0 0 16px;
}

.gtplus-contact--link svg {
  --i-color1: var(--gtl-contact-color);
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.gtplus-review {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 16px;
  border-radius: 0 0 10px 10px;
  background-color: var(--gtl-button-bg-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtplus-review {
    border-radius: 0 0 10px 0;
  }
}

.gtplus-card--bottom_noreview .gtplus-review {
  display: none;
}

.gtplus-review svg {
  width: 18px;
  height: 16px;
  margin: 0 8px 0 0;
}

.gtplus-review:not(:last-child) {
  border-bottom: 1px solid #616161;
  border-radius: 0;
}

.gtplus-tips {
  display: flex;
  z-index: 1;
  justify-content: center;
  width: 100%;
  margin: 32px 0 0;
}

@media screen and (min-width: 48em) {
  .gtplus-tips {
    padding: 0 30px 24px;
  }
}

.gtplus-tips--wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--layer-2a-color, #fff);
}

.gtplus-tips--wrap .article {
  border-bottom: 0;
}

@media screen and (min-width: 48em) {
  .gtplus-tips--wrap .article {
    padding: 35px 15px 40px;
  }
}

.room2-wrapper {
  --room-accent: #e51e25;
  --room-accent2: #e31f26;
  --room-accent3: #e51e25;
  --room-color1: #ced4e3;
  --room-color2: #808080;
  --room-grey: var(--layer-5-color, #ced4e3);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
}

[theme='dark'] .room2-wrapper {
  --room2-d-border-color: #333334;
  --room2-d-links-color: #9eb2ff;
}

@media screen and (min-width: 79.375em) {
  .room2-wrapper {
    gap: 0 6px;
    flex-direction: row;
  }
}

.room2-container {
  padding: 0 24px;
}

@media screen and (min-width: 79.375em) {
  .room2-container {
    padding: 0 60px;
  }
}

.room2__title {
  display: inline-block;
}

@media screen and (min-width: 79.375em) {
  .room2__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.room2__title h3 {
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2__title h3 {
    max-width: 14ch;
  }
}

.room2_full-text {
  display: none;
}

@media screen and (min-width: 48em) {
  .room2_full-text {
    display: inline;
  }
}

.room2-main {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}

@media screen and (min-width: 48em) {
  .room2-main .promo-actions-wrap {
    padding: 0 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-main .promo-actions-wrap {
    display: none;
  }
}

.room2-main .compact-slide--item {
  max-width: 388px;
}

.room2-info {
  margin-bottom: 39px;
}

@media screen and (min-width: 48em) {
  .room2-info {
    margin-bottom: 49px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-info {
    margin-bottom: 58px;
  }
}

.room2-header {
  display: inline-block;
  width: 100%;
  max-width: 100vw;
  padding: 0 24px 17px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 79.375em) {
  .room2-header {
    padding: 0 60px 0 30px;
    padding-bottom: 16px;
  }
}

.room2-header__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 48em) {
  .room2-header__top {
    display: grid;
    grid-template-areas: 'header-logo header-rating header-progress' 'header-link header-rating header-progress';
    padding-bottom: 25px;
  }
}

.room2-header__reg-link {
  display: block;
  grid-area: header-link;
  width: 100%;
  max-width: 313px;
  margin-bottom: 17px;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .room2-header__reg-link {
    align-self: start;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 26px;
  }
}

.room2-header__reg-link_green {
  background-color: #3d8204;
}

.room2-back {
  gap: 16px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}

.room2-back__arrow {
  --color1: var(--text-2-color);
  flex-shrink: 0;
  width: 9px;
  height: 14px;
}

.room2-back__text {
  color: var(--text-2-color, #808080);
  font-size: 14px;
  line-height: 1;
}

.room2-logo {
  grid-area: header-logo;
  max-width: 205px;
  margin-top: 37px;
  margin-bottom: 20px;
}

@media screen and (min-width: 48em) {
  .room2-logo {
    margin-top: 50px;
    margin-bottom: 10px;
  }
}

[theme='dark'] .room2-logo__img_light {
  display: none;
}

.room2-logo__img_dark {
  display: none;
}

[theme='dark'] .room2-logo__img_dark {
  display: flex;
}

.room2-rating {
  display: flex;
  grid-area: header-rating;
  align-items: center;
  margin-bottom: 26px;
  color: #808080;
  font-size: 22px;
  line-height: 30px;
}

@media screen and (min-width: 48em) {
  .room2-rating {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-rating {
    margin-top: 36px;
    margin-left: 63px;
  }
}

.room2-rating__digits_accent {
  color: #e51e25;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
}

.room2-rating__digits_secondary {
  color: var(--text-3-color, #808080);
  font-size: 18px;
  line-height: 24px;
}

.room2-rating__stars {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'PT Serif', serif;
}

@media screen and (min-width: 48em) {
  .room2-rating__stars {
    margin-bottom: 16px;
  }
}

.room2-rating__description {
  max-width: 16ch;
  color: var(--text-3-color, #808080);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .room2-rating {
    flex-direction: column;
  }
}

.progressbar {
  gap: 29px;
  display: flex;
  grid-area: header-progress;
  justify-self: end;
  margin-bottom: 66px;
}

@media screen and (min-width: 79.375em) {
  .progressbar {
    gap: 47px;
  }
}

.progressbar__semi-circle {
  position: relative;
  width: 85px;
  height: 85px;
}

.progressbar__arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progressbar__arc-background {
  width: 100%;
  height: 100%;
}

.progressbar__digit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-weight: 700;
}

.progressbar__text {
  position: absolute;
  left: 50%;
  min-width: 10ch;
  transform: translateX(-50%);
  color: var(--text-3-color, #808080);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

@media screen and (min-width: 79.375em) {
  .progressbar__text {
    top: 86px;
  }
}

@media screen and (min-width: 48em) {
  .progressbar {
    margin-top: 40px;
  }
}

@media screen and (min-width: 79.375em) {
  .progressbar {
    margin-top: 55px;
  }
}

.room2-sidebar {
  display: none;
}

@media screen and (min-width: 79.375em) {
  .room2-sidebar {
    display: flex;
    flex-basis: 290px;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 34px 32px 0;
  }
}

.room2-links {
  gap: 8px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 23.4375em) {
  .room2-links {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-links {
    gap: 40px;
    justify-content: flex-start;
  }
}

.room2-links__item {
  gap: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1-color, #000);
}

.room2-links__item span {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .room2-links__item span {
    font-size: 16px;
  }
}

.room2-links__icon {
  height: 18px;
}

.room2-links__icon--lines {
  width: 14px;
}

.room2-links__icon--info {
  width: 18px;
}

.room2-links__icon--testimonials {
  width: 18px;
  height: 19px;
}

.swap-promo {
  padding: 16px 24px;
  background-color: var(--layer-4-color, #eee);
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 79.375em) {
  .swap-promo {
    padding: 16px 30px;
  }
}

@media screen and (min-width: 95.9375em) {
  .swap-article-all {
    gap: 30px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 95.9375em) {
  .swap-part_1 {
    height: 18px;
    transform: translateY(4%);
  }
}

@media screen and (min-width: 95.9375em) {
  .swap-part_2 {
    height: 23px;
  }
}

@media screen and (min-width: 95.9375em) {
  .swap-part_3 {
    height: 32px;
    transform: translateY(3%);
  }
}

.room2-stats {
  padding: 42px 24px 44px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room2-stats {
    display: flex;
    padding: 42px 60px 44px 30px;
  }
}

.room2-stats__title {
  display: inline-block;
  margin-bottom: 32px;
}

@media screen and (min-width: 79.375em) {
  .room2-stats__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.room2-stats__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2-stats__title h3 {
    max-width: 14ch;
  }
}

.room2-stats__grid {
  row-gap: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 36px;
  column-gap: 36px;
}

@media screen and (min-width: 48em) {
  .room2-stats__grid {
    grid-template-areas: 'stats-item_1 sep1 stats-item_2 sep2 stats-item_5' 'stats-item_3 sep1 stats-item_4 sep2 stats-item_6' 'stats-item_7 sep1 stats-item_8 sep2 .';
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
  }
}

.room2-stats__main-text {
  margin-bottom: 8px;
  color: var(--text-2-color, #333);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.room2-stats__sub-text {
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room2-stats__icons {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 13px;
}

@media screen and (min-width: 48em) {
  .room2-stats__icons {
    gap: 13px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-stats__icons {
    min-width: 151px;
  }
}

.room2-stats__icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 48em) {
  .room2-stats__icon-wrap {
    width: 28px;
    height: 28px;
  }
}

.room2-stats__icon-wrap_hidden {
  display: none;
}

.room2-stats__icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 48em) {
  .room2-stats__icon-img {
    width: 28px;
    height: 28px;
  }
}

.room2-stats__separator-1 {
  display: none;
}

@media screen and (min-width: 48em) {
  .room2-stats__separator-1 {
    display: initial;
    grid-area: sep1;
    width: 1px;
    height: 100%;
    background-color: var(--line-1-color, #e5e8ee);
  }
}

.room2-stats__separator-2 {
  display: none;
}

@media screen and (min-width: 48em) {
  .room2-stats__separator-2 {
    display: initial;
    grid-area: sep2;
    width: 1px;
    height: 100%;
    background-color: var(--line-1-color, #e5e8ee);
  }
}

.room2-stats__more {
  position: relative;
  cursor: pointer;
}

.room2-stats__more-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--text-3-color, #808080);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room2-stats__more-arrow {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 9px;
  height: 6px;
  transform: translateY(-47%);
}

.room2-promo {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--layer-3-color, #d7d8da);
}

@media screen and (min-width: 48em) {
  .room2-promo {
    padding-top: 43px;
  }
}

.room2-promo__head {
  gap: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room2-promo__img {
  aspect-ratio: 3.8 / 1;
  width: 130px;
  margin-bottom: 8px;
}

@media screen and (min-width: 48em) {
  .room2-promo__img {
    width: 188px;
    margin-bottom: 0;
  }
}

.room2-promo__title {
  color: var(--text-2-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 48em) {
  .room2-promo__title {
    font-size: 36px;
  }
}

.room2-promo__grid {
  gap: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

.room2-promo__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: copy;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 20px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-radius: 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room2-promo__copy {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 22px;
  }
}

.room2-promo__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.room2-promo__copy strong {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.room2-promo__copy-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

:root[theme='dark'] .room2-promo__copy-icon {
  --i-color1: var(--text-2-color);
}

@media screen and (min-width: 48em) {
  .room2-promo__copy-icon {
    width: 16px;
    height: 16px;
  }
}

.room2-promo__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.room2-promo__notify.animate {
  display: flex;
  animation-name: slide;
}

.room2-promo__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .room2-promo__notify-icon {
  --i-color1: #00ff92;
}

@media screen and (min-width: 48em) {
  .room2-promo__notify-icon {
    width: 20px;
    height: 12px;
  }
}

.room2-promo__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .room2-promo__notify-text {
  color: #00ff92;
}

@media screen and (min-width: 48em) {
  .room2-promo__notify-text {
    font-size: 16px;
  }
}

.room2-promo__info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room2-promo__info {
    font-size: 16px;
    line-height: 22;
  }
}

.room2-promo__info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.regroom-card_accent .room2-promo__info p {
  color: #cb9833;
}

.room2-promo__bonus {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-5-color, #6d6d6d);
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room2-promo__bonus {
    font-size: 16px;
    line-height: 22px;
  }
}

.room2-promo__button {
  display: flex;
  grid-area: button;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 11px 0;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room2-promo__button {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
  }
}

.room2-promo__button:only-child {
  width: 100%;
}

.room2-promo__button_popup {
  gap: 6px;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  font-weight: 400;
}

.room2-promo__button_popup svg {
  --i-color1: #fff;
  width: 19px;
  height: 18px;
}

.room2-promo__lines {
  --i-color1: #6d6d6d;
}

.room2-promo .regroom-card_accent .bestroom--info-icon {
  --i-color1: #cb9833;
  --i-color2: #fff;
}

.room2-promo .regroom-card_accent .room2-promo__lines {
  --i-color1: #6d6d6d;
}

.room2-promo .widget-regroom {
  margin: 20px 0 40px;
}

@media screen and (min-width: 48em) {
  .room2-promo .widget-regroom {
    margin: 40px 0;
  }
}

@media screen and (min-width: 30em) {
  .room2-stats__item_7 {
    max-width: 166px;
  }
}

@media screen and (min-width: 48em) {
  .room2-stats__item_1 {
    grid-area: stats-item_1;
  }
  .room2-stats__item_2 {
    grid-area: stats-item_2;
  }
  .room2-stats__item_3 {
    grid-area: stats-item_3;
  }
  .room2-stats__item_4 {
    grid-area: stats-item_4;
  }
  .room2-stats__item_5 {
    grid-area: stats-item_5;
  }
  .room2-stats__item_6 {
    grid-area: stats-item_6;
  }
  .room2-stats__item_7 {
    grid-area: stats-item_7;
    max-width: 193px;
  }
  .room2-stats__item_8 {
    grid-area: stats-item_8;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-stats__item_7 {
    min-width: 192px;
    max-width: unset;
  }
}

.room2-support {
  position: relative;
}

@media screen and (min-width: 79.375em) {
  .room2-support {
    width: 100%;
    margin-bottom: 16px;
    padding: 0;
  }
}

.room2-support_mobile {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .room2-support_mobile {
    padding: 24px;
  }
}

.room2-support_registration {
  max-width: 100vw;
  margin: 24px 0;
}

@media screen and (min-width: 79.375em) {
  .room2-support_registration {
    margin: 0;
    padding: 27px 3px;
  }
}

.room2-support_mobile-top {
  display: none;
}

@media screen and (min-width: 79.375em) {
  .room2-support_mobile-bottom {
    display: none;
    margin-top: 16px;
    padding: 0;
  }
}

.room2-support-inner {
  overflow: hidden;
}

.room2-support-inner_mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
}

@media screen and (min-width: 48em) {
  .room2-support-inner_mobile .room2-support-links__item_more {
    display: none;
  }
}

.room2-support-inner_desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 79.375em) {
  .room2-support-inner_desktop .room2-support-links__item_mobile {
    display: none;
  }
}

.room2-support-inner_registration {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px;
  border: 1px solid var(--line-1-color, #d8deee);
  outline: 2px solid var(--line-1-color, #d8deee);
  outline-offset: 3px;
  background-color: var(--layer-3-color, #fbfbfb);
}

@media screen and (min-width: 48em) {
  .room2-support-inner_registration {
    padding: 24px 44px;
  }
}

.room2-support-info {
  grid-area: supp-info;
  margin-bottom: 13px;
}

@media screen and (min-width: 48em) {
  .room2-support-info {
    margin-bottom: 0;
    margin-left: 13px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-support-info {
    margin-top: 16px;
    margin-bottom: 11px;
    margin-left: 0;
  }
}

.room2-support-info__name {
  margin-bottom: 10px;
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
}

.room2-support-info__name_reg {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .room2-support-info__name_reg {
    margin-bottom: 24px;
  }
}

.room2-support-links {
  gap: 8px;
  display: flex;
  grid-area: supp-links;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  margin-top: -21px;
  margin-bottom: 27px;
}

@media screen and (min-width: 79.375em) {
  .room2-support-links {
    margin-top: 0;
    margin-bottom: 23px;
  }
}

.room2-support-links_registration {
  gap: 16px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (min-width: 48em) {
  .room2-support-links_registration {
    gap: 28px;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 48em) {
  .room2-support-links_registration .room2-support-links__item {
    padding-left: 32px;
    font-family: inherit;
    font-size: 18px;
  }
  .room2-support-links_registration .room2-support-links__item svg {
    width: 24px;
  }
}

.room2-support-links_mobile-bottom {
  margin-bottom: 21px;
}

.room2-support-links__item {
  position: relative;
  padding-left: 32px;
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
}

.room2-support-links__item_mobile {
  display: none;
}

@media screen and (min-width: 48em) {
  .room2-support-links__item_mobile {
    display: inline-block;
  }
}

.room2-support-links__item_support {
  grid-area: supp;
}

.room2-support-links__item_telegram {
  grid-area: supp-tg;
}

.room2-support-links__item_discord {
  grid-area: supp-skype;
}

.room2-support-links__item_viber {
  grid-area: supp-viber;
}

.room2-support-links__item_whatsapp {
  grid-area: supp-whatsapp;
}

.room2-support-links__item_chat {
  grid-area: supp-chat;
  white-space: nowrap;
}

.room2-support-links__item_more {
  cursor: pointer;
}

.room2-support-links__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  transform: translateY(-50%);
}

.room2-support-links__icon_telegram {
  width: 20px;
}

.room2-support-links__icon_skype {
  width: 20px;
}

.room2-support-links__icon_discord {
  transform: translateY(-50%) scale(1.2);
}

.room2-support-links__icon_whatsapp {
  transform: translateY(-50%) scale(1.2);
}

.room2-support-links__icon_viber {
  transform: translateY(-50%) scale(1.2);
}

.side-support {
  container-type: inline-size;
  container-name: side-support;
  position: relative;
  width: 100%;
}

.side-support--inner {
  display: flex;
  width: 100%;
  padding: 20px 0 24px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #f8f9fa);
}

@container side-support (min-width: 230px) {
  .side-support--inner {
    justify-content: center;
    padding: 20px 8px;
    border-radius: initial;
  }
}

.side-support--main {
  gap: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@container side-support (min-width: 230px) {
  .side-support--main {
    flex-direction: row;
    width: initial;
  }
}

.side-support--avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.side-support--avatar svg {
  width: 68px;
  height: 62px;
}

[theme='dark'] .side-support--avatar svg {
  --i-color1: #bdbdbd;
}

.side-support--info {
  display: flex;
  grid-area: supp-info;
  flex-direction: column;
  align-items: center;
}

@container side-support (min-width: 230px) {
  .side-support--info {
    align-items: initial;
  }
}

.side-support--heading {
  word-wrap: break-word;
  max-width: 200px;
  color: var(--text-5-color, #808080);
  font-size: 15px;
  line-height: 15px;
  text-align: center;
}

@container side-support (min-width: 230px) {
  .side-support--heading {
    max-width: initial;
    text-align: initial;
  }
}

.side-support--code {
  margin: 8px 0 0;
  color: var(--text-1-color, #333);
  font-size: 17px;
  line-height: 17px;
  text-align: center;
}

@container side-support (min-width: 230px) {
  .side-support--code {
    text-align: initial;
  }
}

.side-support--code strong {
  font-weight: 700;
  text-transform: uppercase;
}

.side-support--link {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  color: #2aa9eb;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

@container side-support (min-width: 230px) {
  .side-support--link {
    justify-content: initial;
    margin: 4px 0 0;
  }
}

.side-support--link::after {
  inset: 0;
  position: absolute;
  content: '';
}

.side-support--link svg {
  --i-color1: #2aa9eb;
  width: 20px;
  height: 20px;
}

.room2-description {
  padding: 0 24px 24px 24px;
  background-color: var(--layer-2a-color, #fbfbfb);
  color: var(--text-3-color, #444);
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room2-description {
    font-size: 17px;
    line-height: 27px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-description {
    display: flex;
    padding: 51px 60px 60px 30px;
  }
}

.room2-description__title {
  display: inline-block;
  margin-top: 44px;
  margin-bottom: 19px;
}

@media screen and (min-width: 79.375em) {
  .room2-description__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
  }
}

.room2-description__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2-description__title h3 {
    max-width: 14ch;
  }
}

.room2-description_bottom {
  margin-top: 17px;
  margin-bottom: 13px;
}

@media screen and (min-width: 79.375em) {
  .room2-description_bottom {
    margin-bottom: 0;
  }
}

.room2-banner__item {
  display: inline-block;
  margin-bottom: 23px;
}

@media screen and (min-width: 48em) {
  .room2-banner__item {
    max-width: 222px;
  }
}

.room2-banner__image {
  max-width: 221px;
  margin-bottom: 10px;
}

.room2-banner__image img {
  border-radius: 10px;
}

.room2-banner__text {
  max-width: 221px;
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.room2-banners {
  padding: 0 24px;
}

@media screen and (min-width: 79.375em) {
  .room2-banners {
    position: sticky;
    top: 22px;
    width: 100%;
    margin-bottom: 72px;
    padding: 0;
  }
}

.room2-banners_mobile {
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 79.375em) {
  .room2-banners_mobile {
    display: none;
  }
}

.room2-banners__title {
  margin-bottom: 24px;
  text-align: center;
}

.room2-banners__title-item {
  margin-bottom: 8px;
  padding: 0;
  color: var(--text-1-color, #000);
  font-family: 'PT Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
}

.room2-banners__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 30em) {
  .room2-banners__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

@media screen and (min-width: 48em) {
  .room2-banners__wrapper {
    gap: 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-banners__wrapper {
    gap: 24px;
    display: unset;
    justify-content: center;
    padding: 0;
  }
}

.room2-banners__button {
  position: relative;
  padding-right: 20px;
  color: #e51e25;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
}

.room2-banners__arrow {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 13px;
  height: 8px;
  transform: translateY(-47%);
}

.room2-banners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 39px 0 32px;
  background-color: var(--layer-3-color);
}

@media screen and (min-width: 79.375em) {
  .room2-banners-inner {
    padding: 0;
    background-color: var(--layer-2-color);
  }
}

.room2-plus {
  padding: 0 24px 16px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room2-plus {
    display: flex;
    padding: 49px 60px 52px 30px;
    border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  }
}

.room2-plus__wrapper {
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room2-plus__wrapper {
    gap: 120px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-plus__wrapper {
    gap: 56px;
  }
}

.room2-plus__title {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 14px;
}

@media screen and (min-width: 48em) {
  .room2-plus__title {
    margin-top: 43px;
    margin-bottom: 26px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-plus__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
  }
}

.room2-plus__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2-plus__title h3 {
    max-width: 14ch;
  }
}

@media screen and (min-width: 48em) {
  .room2-plus__list {
    max-width: 300px;
  }
}

.room2-plus__list_pros {
  margin-bottom: 14px;
}

.room2-plus__list_cons {
  margin-bottom: 34px;
}

.room2-plus__list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--text-3-color, #242424);
  opacity: .85;
}

.room2-plus__list-item::before {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.room2-plus__list-item_plus::before {
  background-image: url(../nimg/plus.svg);
}

.room2-plus__list-item_minus::before {
  background-image: url(../nimg/minus.svg);
}

.room2-plus-inner {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 79.375em) {
  .room2-plus-inner {
    padding: 49px 0 52px;
    border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  }
}

.room2-traffic {
  padding: 0 24px 25px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room2-traffic {
    display: flex;
    padding: 0 60px 44px 30px;
  }
}

.room2-traffic__title {
  display: inline-block;
  margin: 27px 0;
}

@media screen and (min-width: 48em) {
  .room2-traffic__title {
    margin-top: 36px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-traffic__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 49px;
    margin-bottom: 0;
  }
}

.room2-traffic__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2-traffic__title h3 {
    max-width: 14ch;
  }
}

.room2-traffic__item-title {
  margin-bottom: 11px;
  color: var(--text-4-color, #242424);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}

.room2-traffic__item-text {
  color: #808080;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

.room2-traffic-items {
  row-gap: 21px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

@media screen and (min-width: 48em) {
  .room2-traffic-items {
    gap: 90px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-traffic-items {
    gap: 74px;
    margin-top: 52px;
  }
}

.room2-other {
  padding: 0 24px 30px 24px;
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room2-other {
    display: flex;
    padding: 0 60px 60px 30px;
  }
}

.room2-other__title {
  display: inline-block;
  margin-top: 27px;
  margin-bottom: 17px;
}

@media screen and (min-width: 48em) {
  .room2-other__title {
    margin-top: 38px;
    margin-bottom: 23px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-other__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 43px;
    margin-bottom: 0;
  }
}

.room2-other__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room2-other__title h3 {
    max-width: 14ch;
  }
}

@media screen and (min-width: 48em) {
  .room2-other__text-wrapper {
    gap: 90px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-other__text-wrapper {
    gap: 51px;
  }
}

.room2-other .slider-screen {
  margin-bottom: 29px;
}

@media screen and (min-width: 79.375em) {
  .room2-other .slider-screen {
    margin-top: 49px;
  }
}

.room2-other__grid {
  row-gap: 4px;
  display: grid;
  grid-template-columns: 88px auto;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media screen and (min-width: 48em) {
  .room2-other__grid {
    grid-template-columns: auto auto;
  }
}

.room2-other__grid:first-child {
  margin-bottom: 4px;
}

@media screen and (min-width: 48em) {
  .room2-other__grid:first-child {
    margin-bottom: unset;
  }
}

.room2-other__table-title {
  min-width: 13ch;
  margin-top: .5ch;
  color: #808080;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room2-other__text {
  color: var(--text-3-color, #242424);
  font-size: 17px;
  line-height: 27px;
  opacity: .85;
}

.room2-other__text_row {
  display: block;
}

@media screen and (min-width: 79.375em) {
  .room2-section {
    display: flex;
  }
}

.room2-steps {
  row-gap: 27px;
  display: grid;
  grid-template-columns: 33px 1fr;
  max-width: 643px;
  padding: 19px 25px 29px 15px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  border: 1px solid var(--layer-5-color, #e5e8ee);
  border-radius: 10px;
  background: linear-gradient(to right, var(--layer-3-color, #fff) 31px, var(--layer-5-color, #e5e8ee) 31px, var(--layer-5-color, #e5e8ee) 32px, var(--layer-3-color, #fff) 32px);
  background-color: var(--layer-3-color, #fff);
  background-position: center 30px;
  background-repeat: no-repeat;
  background-size: 100% calc(75% - 62px);
  color: var(--text-1-color, #000);
}

@media screen and (min-width: 48em) {
  .room2-steps {
    grid-template-columns: 39px 1fr;
    margin: 0 auto;
    padding: 30px 35px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    background: linear-gradient(to right, var(--layer-3-color, #fff) 54px, var(--layer-5-color, #e5e8ee) 54px, var(--layer-5-color, #e5e8ee) 55px, var(--layer-3-color, #fff) 55px);
    background-color: var(--layer-3-color, #fff);
    background-position: center 30px;
    background-repeat: no-repeat;
    background-size: 100% calc(79% - 35px);
  }
}

@media screen and (min-width: 79.375em) {
  .room2-steps {
    margin: 0;
  }
}

.promo-page--content .room2-steps {
  border-color: transparent;
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

[theme='dark'] .promo-page--content .room2-steps {
  border-color: #616161;
  box-shadow: none;
}

.room2-steps__bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border: 1px solid var(--layer-5-color, #e5e8ee);
  border-radius: 50%;
  outline: 9px solid var(--layer-3-color, #fff);
  background-color: var(--layer-3-color, #fbfbfb);
}

@media screen and (min-width: 48em) {
  .room2-steps__bullet {
    width: 39px;
    height: 39px;
    font-size: 18px;
    line-height: 21px;
  }
}

.room2-steps__bullet-content {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.room2-steps__bullet-content_check {
  width: 12px;
  height: 11px;
}

@media screen and (min-width: 48em) {
  .room2-steps__bullet-content_check {
    width: 15px;
    height: 13px;
  }
}

.room2-steps__main-text {
  max-width: 45ch;
}

.room2-steps__text:not(:last-child) {
  margin-bottom: 9px;
}

.room2-steps__text_2 {
  max-width: 45ch;
}

.room2-steps__copy-area {
  display: block;
  position: relative;
  max-width: 281px;
  padding: 11px 0 10px;
  overflow: hidden;
  border: 1px dashed var(--text-1-color, rgba(0, 0, 0, .3));
  border-radius: 3px;
  color: var(--text-1-color, #000);
  font-size: 19px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  cursor: pointer;
}

.room2-steps__copy-area svg {
  fill: var(--text-3-color, #b1b1b1);
}

.room2-steps__copy-area:hover svg {
  fill: #e51e25;
}

.room2-steps__copy-notify {
  gap: 0 4px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background-color: var(--layer-3-color, #fff);
  text-align: center;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  transition: transform .2s;
}

.room2-steps__copy-notify.animate {
  display: flex;
  animation-name: slide;
}

.room2-steps__copy {
  position: absolute;
  top: 11px;
  right: 17%;
  width: 16px;
  height: 16px;
  transition: all .3s;
}

.room2-steps__reg-link {
  display: block;
  max-width: 281px;
  padding: 10px 16px;
  border-radius: 3px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

.room2-steps__list {
  max-width: 49ch;
}

.room2-steps__popup {
  max-width: 400px;
  height: 100%;
  margin: 0;
  padding: 2ch;
  background-color: var(--layer-4-color, #f9f7f0);
  color: var(--text-4-color, #545454);
}

.room2-steps__popup-title {
  margin-bottom: 16px;
}

.room2-steps__list-item {
  margin-left: 4px;
  padding-inline-start: 8px;
  color: var(--text-4-color, #545454);
  font-size: 13px;
  line-height: 18px;
  list-style-type: '•';
}

.room2-steps__list-item a {
  color: inherit;
  font-weight: bolder;
}

.room2-steps__list-item:not(:last-child) {
  margin-bottom: 15px;
}

.room2-steps__earth {
  width: 21px;
  height: 21px;
}

@media screen and (min-width: 48em) {
  .room2-steps__earth {
    width: 25px;
    height: 25px;
  }
}

.room2-steps__form {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.room2-steps__text a {
  color: inherit;
  text-decoration: underline;
}

.room2-steps__doubleform {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
}

.room2-steps__input {
  max-width: 32vw;
  padding: 10px 13px;
  border-top: 1px solid var(--layer-5-color, #e0e0e0);
  border-right: none;
  border-bottom: 1px solid var(--layer-5-color, #e0e0e0);
  border-left: 1px solid var(--layer-5-color, #e0e0e0);
  border-radius: 3px 0 0 3px;
  background-color: var(--layer-2-color, #fff);
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
}

@media screen and (min-width: 48em) {
  .room2-steps__input {
    max-width: 175px;
  }
}

.room2-steps__input::-moz-placeholder {
  color: var(--text-3-color, #545454);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  opacity: .5;
}

.room2-steps__input::placeholder {
  color: var(--text-3-color, #545454);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  opacity: .5;
}

[theme='dark'] .room2-steps__input::-moz-placeholder {
  opacity: 1;
}

[theme='dark'] .room2-steps__input::placeholder {
  opacity: 1;
}

@media screen and (min-width: 48em) {
  .room2-steps__input::-moz-placeholder {
    font-family: inherit;
  }
  .room2-steps__input::placeholder {
    font-family: inherit;
  }
}

.room2-steps__input_separate {
  width: 100%;
  max-width: 281px;
  border: 1px solid var(--layer-5-color, #e0e0e0);
  border-radius: 3px;
}

@media screen and (min-width: 30em) {
  .room2-steps__input_separate {
    width: 281px;
  }
}

.room2-steps__button {
  padding: 0 16px;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: var(--text-5-color, #d9d9d9);
  box-shadow: none;
  color: var(--layer-3-color, #b1b1b1);
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  cursor: not-allowed;
}

.room2-steps__button_separate {
  width: 100%;
  max-width: 281px;
  height: 41px;
  border-radius: 3px;
}

@media screen and (min-width: 30em) {
  .room2-steps__button_separate {
    width: 281px;
  }
}

.room2-steps__note {
  color: #808080;
  font-size: 14px;
  line-height: 1.3;
}

.room2-steps__note a {
  color: inherit;
  text-decoration: underline;
}

.room2-steps__button_active {
  background-color: #e51e25;
  color: #fff;
  cursor: pointer;
}

.room2-steps__login {
  color: var(--text-1-color, #000);
  font-size: 15px;
  line-height: 22px;
  opacity: .85;
}

@media screen and (min-width: 48em) {
  .room2-steps__login {
    font-size: 17px;
    line-height: 27px;
  }
}

.room2-steps__login a {
  display: inline;
  color: #e51e25;
}

.room2-steps__notify {
  gap: 12px;
  display: flex;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

.room2-steps__notify-title {
  max-width: 39ch;
  margin-bottom: 8px;
  color: var(--text-1-color, #000);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

.room2-steps__notify-text {
  color: var(--text-3-color, #545454);
  font-size: 15px;
  line-height: 19px;
}

.room2-steps__rkn-logo {
  flex-basis: 29px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}

@media screen and (min-width: 48em) {
  .room2-steps__rkn-logo {
    flex-basis: 49px;
    width: 49px;
    height: 49px;
    margin-left: -7px;
  }
}

.room2-steps_blocked {
  margin-top: 22px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(to right, var(--layer-3-color, #fff) 15px, var(--layer-5-color, #e5e8ee) 15px, var(--layer-5-color, #e5e8ee) 16px, var(--layer-3-color, #fff) 16px);
  background-color: transparent;
  background-position: center 30px;
  background-repeat: no-repeat;
  background-size: 100% 56%;
}

@media screen and (min-width: 48em) {
  .room2-steps_blocked {
    background: linear-gradient(to right, var(--layer-3-color, #fff) 19px, var(--layer-5-color, #e5e8ee) 19px, var(--layer-5-color, #e5e8ee) 20px, var(--layer-3-color, #fff) 20px);
    background-color: transparent;
    background-position: center 30px;
    background-repeat: no-repeat;
    background-size: 100% 66%;
  }
}

.promo-page--content .room2-steps_blocked {
  box-shadow: none;
}

.room2-steps__notify-phrase {
  color: #e51e25;
}

.room2-steps .room2-steps__bullet:nth-last-child(2) {
  position: relative;
}

.room2-steps .room2-steps__bullet:nth-last-child(2)::after {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 30px;
  background-color: var(--layer-3-color, #fff);
  content: '';
}

.room2-steps-restricted {
  max-width: 643px;
  padding: 19px 25px 29px 15px;
  border: 1px solid var(--line-1-color, #e5e8ee);
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 48em) {
  .room2-steps-restricted {
    margin: 0 auto;
    padding: 30px 35px;
  }
}

.stars-background {
  width: 115px;
  height: 23px;
}

.room-stars-mask {
  position: absolute;
  pointer-events: none;
}

.room2-testimonials {
  padding: 0 24px 53px 24px;
}

@media screen and (min-width: 79.375em) {
  .room2-testimonials {
    padding: 0 0 53px 30px;
  }
}

.testimonials {
  border: none;
}

.testimonials-header {
  position: relative;
  margin-bottom: 20px;
}

.testimonials-header__item {
  padding: 1px 9px;
  border-radius: 13px;
  background-color: var(--layer-2a-color, #fbfbfb);
  color: var(--text-1-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .testimonials-header__item {
    display: inline-block;
  }
}

.testimonials-header__item_dark {
  display: inline-block;
  position: relative;
  padding-right: 19px;
  background-color: var(--layer-4-color, #4b4b4b);
  color: #fff;
}

@media screen and (min-width: 48em) {
  .testimonials-header__item_dark {
    padding-right: 9px;
  }
}

.testimonials-header__item_more {
  background-color: transparent;
}

.testimonials-header__item_stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 23px;
}

.testimonials-header__item_rate {
  cursor: pointer;
}

.testimonials-header__top {
  margin-bottom: 40px;
}

@media screen and (min-width: 48em) {
  .testimonials-header__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-1-color, #d7dce8);
  }
}

.testimonials-header__bottom {
  gap: 5px;
  display: flex;
  position: absolute;
  top: 2em;
  right: 0;
  flex-wrap: nowrap;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .testimonials-header__bottom {
    position: unset;
    justify-content: space-between;
    margin-top: 21px;
  }
}

.testimonials-header__feedback {
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 23px;
  overflow: hidden;
  border-radius: 13px;
  transition: all .3s;
}

@media screen and (min-width: 48em) {
  .testimonials-header__feedback {
    flex-direction: row;
    flex-wrap: wrap;
    height: unset;
    overflow: auto;
    border-radius: 0;
  }
}

.testimonials-header__feedback .testimonials-header__item:not(.testimonials-header__item_dark) {
  width: 0;
}

@media screen and (min-width: 48em) {
  .testimonials-header__feedback .testimonials-header__item:not(.testimonials-header__item_dark) {
    width: unset;
  }
}

.testimonials-header__feedback_active {
  gap: 15px;
  z-index: 1;
  position: relative;
  height: auto;
  padding: 0 9px 12px 9px;
  border-radius: 13px;
  background-color: var(--layer-4-color, #eef0f5);
  color: #fff;
}

.testimonials-header__feedback_active .testimonials-header__item:not(.testimonials-header__item_dark) {
  width: unset !important;
}

.testimonials-header__rate {
  gap: 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 23px;
  overflow: hidden;
  border-radius: 13px;
  transition: all .3s;
}

@media screen and (min-width: 48em) {
  .testimonials-header__rate {
    flex-direction: row;
    height: unset;
    overflow: initial;
    border-radius: 0;
    background-color: inherit;
  }
}

.testimonials-header__rate_active {
  gap: 15px;
  height: 73px;
  padding: 0 9px 9px 9px;
  border-radius: 13px;
  background-color: var(--layer-4-color, #eef0f5);
  color: #fff;
}

.testimonials__stats {
  gap: 15px;
  display: none;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 21px;
}

.testimonials__stats_mobile {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

@media screen and (min-width: 48em) {
  .testimonials__stats_mobile {
    display: none !important;
  }
}

@media screen and (min-width: 48em) {
  .testimonials__stats {
    display: flex;
  }
}

.testimonials__stats-count {
  color: var(--text-3-color, #a9b0c0);
}

.testimonials__stats-all {
  color: #e51e25;
}

.testimonials__stars {
  overflow: hidden;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 17px;
}

.testimonials__stars_bg {
  position: relative;
  width: 85px;
  height: 17px;
  background-image: url(../nimg/star-off.svg);
}

[theme='dark'] .testimonials__stars_bg {
  background-image: url(../nimg/star-on.svg);
}

.testimonials__stars_active {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: url(../nimg/star-on.svg);
}

[theme='dark'] .testimonials__stars_active {
  background-image: url(../nimg/star-off.svg);
}

.testimonials__nick {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
}

.testimonials__nick div {
  display: block;
}

@media screen and (min-width: 48em) {
  .testimonials__nick div {
    display: inline;
  }
}

@media screen and (min-width: 48em) {
  .testimonials__nick {
    font-size: 18px;
    line-height: 18px;
  }
}

.testimonials__nick_review {
  font-weight: 400;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .testimonials__nick_review {
    margin: 0;
  }
}

.testimonials__nick-wrap {
  color: var(--text-1-color, #000);
}

.testimonials__nick_red {
  color: #e51e25;
  font-weight: 700;
}

.testimonials__call {
  margin-top: 3px;
  color: #808080;
}

.testimonials__avatar {
  flex-grow: 0;
  flex-shrink: 0;
}

.testimonials__avatar-image {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background-image: url(../nimg/imguser.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .testimonials__avatar-image {
    width: 56px;
    height: 56px;
  }
}

.testimonials__content {
  width: 100%;
}

@media screen and (min-width: 79.375em) {
  .testimonials__content_feedback {
    display: flex;
    justify-content: space-between;
  }
}

.testimonials__content-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media screen and (min-width: 48em) {
  .testimonials__content-header {
    margin-bottom: 18px;
  }
}

@media screen and (min-width: 48em) {
  .testimonials__content-header_feedback {
    margin-bottom: 14px;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials__content-header_feedback {
    margin-bottom: 0;
  }
}

.testimonials__date {
  color: #808080;
  font-size: 14px;
  line-height: 21px;
}

.testimonials__text {
  color: var(--text-3-color, #242424);
  font-size: 15px;
  font-style: italic;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .testimonials__text {
    max-width: 550px;
    font-size: 16px;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials__text {
    max-width: 790px;
  }
}

.testimonials__button {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 249px;
  height: 44px;
  border: 1px solid #ffbbc5;
  border-radius: 3px;
  background-color: var(--layer-3-color, #fff);
  color: #e51e25;
  font-style: normal;
  font-weight: 500;
}

@media screen and (min-width: 79.375em) {
  .testimonials__button {
    width: 249px;
  }
}

.testimonials__chat {
  width: 19px;
  height: 17px;
}

.testimonials__logo-wrap {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  border: 1px solid var(--line-1-color, #c0c0c1);
  border-radius: 10px;
  background: var(--layer-3-color, #fff);
}

.testimonials__logo {
  width: 38px;
  max-width: unset;
  height: 38px;
}

.testimonials__reply {
  gap: 8px;
  display: none;
  flex-direction: column;
  padding: 18px 22px 20px 15px;
  border-radius: 0 0 10px 10px;
  background: var(--layer-3-color, #f7f8fa);
}

@media screen and (min-width: 48em) {
  .testimonials__reply {
    gap: 24px;
    flex-direction: row;
    padding: 24px 32px;
  }
}

.testimonials__reply-button {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  padding: 12px 44px;
  border: 1px solid var(--line-1-color, #292929);
  border-radius: 5px;
  color: var(--text-2-color, #292929);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  cursor: pointer;
}

.testimonials__form {
  width: 100%;
}

.testimonials__textarea {
  width: 100%;
  padding: 13px 18px;
  border: none;
  border-radius: 6px;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-2-color, #000);
}

.testimonials__textarea::-moz-placeholder {
  color: var(--text-5-color, #bdbdbd);
}

.testimonials__textarea::placeholder {
  color: var(--text-5-color, #bdbdbd);
}

.testimonials__submit {
  margin-top: 16px;
  padding: 9px 28px;
  border-radius: 5px;
  background: var(--text-5-color, #292929);
  color: var(--layer-3-color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.testimonials__comment {
  gap: 8px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 8px;
  padding: 16px;
  border-radius: 6px;
  background: var(--layer-3-color, #f7f8fa);
}

.testimonials__comment-head {
  display: flex;
  justify-content: space-between;
}

.testimonials__control-wrap {
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}

.testimonials__control {
  display: inline-block;
  padding: 1px 9px;
  border: 1px solid var(--text-3-color, #808080);
  border-radius: 13px;
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
  cursor: pointer;
}

.testimonials__control_delete {
  border-color: #ee5151;
  color: #ee5151;
}

.testimonials__comment-room {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .testimonials__comment-room {
    flex-direction: row;
    align-items: center;
  }
}

.testimonials__comment-logo {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  border: 1px solid var(--line-1-color, #e1e5ed);
  border-radius: 4px;
  background: #fff;
}

.testimonials__comment-title {
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.testimonials__comment-img {
  width: 22px;
  height: 22px;
}

.testimonials__comment-text {
  margin-top: 8px;
}

.testimonials__comment-date {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.testimonials-card {
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-3-color, #333);
}

.testimonials-card:not(:last-child) {
  margin-bottom: 10px;
}

.testimonials-card__inner {
  gap: 8px;
  display: flex;
  padding: 18px 22px 20px 15px;
}

@media screen and (min-width: 48em) {
  .testimonials-card__inner {
    gap: 25px;
    padding: 24px 32px;
  }
}

.testimonials-card__inner form {
  width: 100%;
}

.testimonials-card_feedback {
  background-color: var(--layer-3-color, rgba(255, 255, 255, .5));
}

.testimonials-card_feedback_signed {
  display: block;
}

.room2-wrapper .rater {
  background-image: url(/nimg/star-off.svg);
}

[theme='dark'] .room2-wrapper .rater {
  background-image: url(/nimg/star-on.svg);
}

.room2-wrapper .rater--value {
  background-image: url(/nimg/star-on.svg);
}

[theme='dark'] .room2-wrapper .rater--value {
  background-image: url(/nimg/star-off.svg);
}

.testimonials-arrow {
  position: absolute;
  top: 8px;
  right: 7px;
  width: 9px;
  height: 7px;
  transition: all .3s;
}

@media screen and (min-width: 48em) {
  .testimonials-arrow {
    display: none;
  }
}

.testimonials-arrow_active {
  transform: rotate(180deg);
}

.reputation {
  gap: 11px;
  display: flex;
  align-items: center;
}

.reputation__title {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.reputation__star {
  height: 22px;
}

.reputation__rate {
  gap: 5px;
  display: flex;
  align-items: center;
}

.reputation__digits {
  color: #b5b5b5;
  font-family: "PT Serif", serif;
  font-size: 22px;
  line-height: 17px;
  white-space: nowrap;
}

.reputation__digits strong {
  color: #e51e25;
}

.reputation__digits span {
  white-space: pre;
}

[data-rating='1'] .testimonials__stars_active {
  width: 20%;
}

[data-rating='2'] .testimonials__stars_active {
  width: 40%;
}

[data-rating='3'] .testimonials__stars_active {
  width: 60%;
}

[data-rating='4'] .testimonials__stars_active {
  width: 80%;
}

[data-rating='5'] .testimonials__stars_active {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .room2-testimonials .room2-container {
    padding: 0 25px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-testimonials .room2-container {
    padding: 0;
  }
}

.room2-review__header {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .room2-review__header {
    align-items: flex-end;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-review__header {
    margin-bottom: 22px;
    padding: 0 0 0 30px;
  }
}

.room2-review__author-item {
  gap: 10px;
  display: flex;
  align-items: center;
}

.room2-review__header-title {
  margin-bottom: 16px;
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .room2-review__header-title {
    margin-bottom: 0;
  }
}

.room2-review__author-text {
  gap: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.room2-review__author-wrap {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 48em) {
  .room2-review__author-wrap {
    gap: 35px;
  }
}

.room2-review__author-role {
  min-width: 8ch;
  color: var(--text-5-color, #808080);
  font-size: 14px;
  line-height: 16px;
}

.room2-review__author-name {
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.room2-review__author-avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.room2-review__main {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 24px 46px;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 48em) {
  .room2-review__main {
    gap: 50px;
    grid-template-columns: 166px 1fr;
    padding-bottom: 80px;
  }
}

.room2-review__title {
  display: inline-block;
  margin: 40px 0 17px;
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room2-review__title {
    margin: 50px 0 17px;
  }
}

.room2-review__title_first {
  margin: 33px 0 17px;
}

.room2-review__text-wrap {
  font-family: "PT Serif", serif;
  font-size: 15px;
  line-height: 22px;
}

.room2-review__text-wrap p {
  margin-bottom: 1ch;
  color: #242424;
  opacity: .85;
}

.room2-review__text-wrap p:not(:last-child) {
  margin-bottom: 1ch;
}

.room2-review__image {
  width: 100%;
  margin-top: 25px;
}

.room2-review__image_team {
  border-radius: 10px;
}

.room2-review__list {
  margin-bottom: 1ch;
  margin-left: 8px;
}

.room2-review__list-item {
  padding-inline-start: 8px;
  list-style-type: '•';
}

.room2-review__next-button {
  position: fixed;
  bottom: 52px;
  left: 50%;
  max-width: calc(100% - 48px);
  padding: 13px 30px 13px 15px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid #e51e25;
  border-radius: 30px;
  background-color: var(--layer-3-color, #fff);
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  opacity: 1;
  transition: all .5s;
}

@media screen and (min-width: 48em) {
  .room2-review__next-button {
    display: none;
  }
}

.room2-review__next-button_disabled {
  opacity: 0;
  pointer-events: none;
}

.room2-review__button-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--layer-3-color, #fff) 16%);
}

.room2-review__arrow-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 11px;
  transform: translateY(-50%);
}

.room2-review__map {
  display: none;
}

@media screen and (min-width: 48em) {
  .room2-review__map {
    display: inline-block;
    flex-basis: 166px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 130px;
    margin-bottom: 35px;
    padding-left: 10px;
  }
}

.room2-review__links {
  gap: 14px;
  display: flex;
  position: sticky;
  flex-direction: column;
  align-items: flex-start;
  color: #808080;
}

@media screen and (min-width: 48em) {
  .room2-review__links {
    top: 26px;
  }
}

@media screen and (min-width: 79.375em) {
  .room2-review__links {
    top: 35px;
  }
}

.room2-review__link {
  color: var(--text-5-color, #808080);
  font-size: 14px;
  line-height: 17px;
  transition: color .3s;
}

.room2-review__link_active {
  position: relative;
  color: #e31f26;
  font-weight: 700;
}

.room2-review__link_active::before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 6px;
  background-image: url(../nimg/rhombus-red.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.room2-review__faq-subtitle {
  margin-bottom: .5ch;
  font-family: "PT Serif", serif;
  font-weight: 700;
}

.room2-article__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 64em) {
  .room2-article__head {
    height: 60px;
  }
}

.room2-article__logo img {
  max-height: 60px;
  margin: 0;
  border-radius: 0;
}

.room2-article__rating {
  gap: 12px;
  display: flex;
  align-items: center;
  font-family: "PT Serif", serif;
}

.room2-bottom {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 50px 24px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 64em) {
  .room2-bottom {
    padding: 28px 30px 50px 24px;
  }
}

.room2-forum__wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}

@media screen and (min-width: 64em) {
  .room2-forum__wrapper {
    padding-bottom: 0;
  }
}

.room-forum {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1010px;
  padding: 24px;
  border-bottom: 1px solid var(--line-1-color, #dfe1e4);
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 48em) {
  .room-forum {
    flex-wrap: nowrap;
    align-items: center;
  }
}

@media screen and (min-width: 64em) {
  .room-forum {
    margin: 20px 0;
  }
}

.room-forum--text {
  width: 100%;
  margin: 0 0 16px;
  color: var(--text-1-color, #000);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .room-forum--text {
    margin: 0;
    font-size: 16px;
  }
}

.room-forum--link {
  --color1: #e51e25;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 184px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .room-forum--link {
    margin: 0 0 0 16px;
  }
}

.room-forum--link svg {
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.room3-wrapper {
  --room-accent: #e51e25;
  --room-accent2: #e31f26;
  --room-accent3: #e51e25;
  --room-color1: #ced4e3;
  --room-color2: #808080;
  --room-grey: var(--layer-5-color, #ced4e3);
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0 auto;
  background-color: var(--layer-2-color, #efefef);
}

.room3-container {
  padding: 0 24px;
}

@media screen and (min-width: 79.375em) {
  .room3-container {
    padding: 0 60px;
  }
}

.room3-anchor {
  scroll-margin-top: 250px;
}

@media screen and (min-width: 48em) {
  .room3-anchor {
    scroll-margin-top: 120px;
  }
}

.room3__title {
  display: inline-block;
}

@media screen and (min-width: 79.375em) {
  .room3__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.room3__title h3 {
  color: var(--text-1-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3__title h3 {
    max-width: 14ch;
  }
}

.room3_full-text {
  display: none;
}

@media screen and (min-width: 48em) {
  .room3_full-text {
    display: inline;
  }
}

.room3-main {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: visible;
}

.room3-info {
  margin-bottom: 24px;
}

@media screen and (min-width: 48em) {
  .room3-info {
    margin-bottom: 49px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-info {
    margin-bottom: 58px;
  }
}

.room3-info__content {
  max-width: 1010px;
  margin: 0 auto;
  background-color: var(--layer-2a-color, #fbfbfb);
}

.room3-info__content:has(.room3-pswap) .room3-stats {
  border-bottom: 0;
}

.room3-header {
  width: 100%;
}

.room3-header__top-wrap {
  padding: 24px 20px 20px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 64em) {
  .room3-header__top-wrap {
    padding: 24px 20px;
    border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  }
}

.room3-header__top-inner {
  max-width: 1246px;
  margin: 0 auto;
}

.room3-header__top {
  display: grid;
  grid-template-areas: 'room-header-logo room-header-rating' 'room-header-progress room-header-progress' 'room-header-link room-header-link' 'room-bonus room-bonus' 'room-support room-support';
  margin: 28px 0 0;
}

@media screen and (min-width: 48em) {
  .room3-header__top {
    gap: 20px 0;
    display: grid;
    grid-template-areas: 'room-header-logo room-header-link room-header-rating' 'room-header-progress room-header-progress room-support';
  }
}

@media screen and (min-width: 64em) {
  .room3-header__top {
    margin: 24px 0 0;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-header__top {
    gap: 0 50px;
    grid-template-areas: "room-header-logo room-header-rating room-header-progress room-support" "room-header-link room-header-rating room-header-progress room-support";
  }
}

.room3-header__reg-link {
  display: block;
  grid-area: room-header-link;
  width: 100%;
  margin-bottom: 17px;
  padding: 12px 32px;
  border-radius: 5px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .room3-header__reg-link {
    grid-column: 2 / 4;
    align-self: center;
    justify-self: start;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 313px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-header__reg-link {
    grid-column: initial;
  }
}

.room3-back {
  gap: 16px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.room3-back__arrow {
  --color1: var(--text-2-color);
  flex-shrink: 0;
  width: 8px;
  height: 12px;
}

.room3-back__text {
  color: var(--text-2-color, #808080);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.room3-logo {
  grid-area: room-header-logo;
  align-self: center;
}

@media screen and (min-width: 79.375em) {
  .room3-logo {
    align-self: start;
  }
}

.room3-logo img {
  max-height: 62px;
}

@media screen and (min-width: 64em) {
  .room3-logo img {
    max-height: 72px;
  }
}

[theme='dark'] .room3-logo__img_light {
  display: none;
}

.room3-logo__img_dark {
  display: none;
}

[theme='dark'] .room3-logo__img_dark {
  display: flex;
}

.room3-rating {
  display: flex;
  grid-area: room-header-rating;
  align-items: center;
  justify-self: end;
  color: #808080;
  font-size: 22px;
  line-height: 30px;
}

@media screen and (min-width: 48em) {
  .room3-rating {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-rating {
    flex-direction: column;
    align-self: center;
    justify-self: center;
  }
}

.room3-rating__digits_accent {
  color: #e51e25;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
}

.room3-rating__digits_secondary {
  display: none;
}

@media screen and (min-width: 48em) {
  .room3-rating__digits_secondary {
    display: inline-block;
  }
}

.room3-rating__stars {
  gap: 8px;
  display: flex;
  align-items: center;
  font-family: "PT Serif", serif;
}

@media screen and (min-width: 79.375em) {
  .room3-rating__stars {
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }
}

.room3-rating__description {
  display: none;
  max-width: 16ch;
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

@media screen and (min-width: 79.375em) {
  .room3-rating__description {
    display: inline-block;
  }
}

.progressbar3 {
  gap: 29px;
  display: flex;
  grid-area: room-header-progress;
  justify-content: space-evenly;
  justify-self: center;
  width: 100%;
  margin: 16px 0 54px;
}

@media screen and (min-width: 48em) {
  .progressbar3 {
    margin: 0 0 36px;
  }
}

@media screen and (min-width: 79.375em) {
  .progressbar3 {
    gap: 47px;
  }
}

.progressbar3__semi-circle {
  position: relative;
  width: 60px;
  height: 60px;
}

@media screen and (min-width: 64em) {
  .progressbar3__semi-circle {
    width: 85px;
    height: 85px;
  }
}

.progressbar3__arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progressbar3__arc-background {
  width: 100%;
  height: 100%;
}

.progressbar3__digit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

@media screen and (min-width: 64em) {
  .progressbar3__digit {
    font-size: 22px;
  }
}

.progressbar3__text {
  position: absolute;
  top: 60px;
  left: 50%;
  min-width: 10ch;
  transform: translateX(-50%);
  color: var(--text-3-color, #808080);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .progressbar3__text {
    top: 86px;
  }
}

.room3-sidebar {
  display: none;
}

@media screen and (min-width: 79.375em) {
  .room3-sidebar {
    display: flex;
    flex-basis: 290px;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 34px 32px 0;
  }
}

.room3-links {
  gap: 8px;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1010px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-3-color, #efefef);
}

@media screen and (min-width: 48em) {
  .room3-links {
    gap: 8px 40px;
    justify-content: flex-start;
    margin: 44px auto 0;
    background-color: transparent;
  }
}

.room3-links__item {
  gap: 8px;
  display: flex;
  align-items: center;
  color: var(--text-1-color, #292929);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 146%;
}

.room3-links__item span {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .room3-links__item span {
    font-size: 16px;
  }
}

.room3-links__icon {
  width: 20px;
  height: 21px;
}

.swap-article {
  display: block;
  padding: 16px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: #f4f1e8;
}

@media screen and (min-width: 48em) {
  .swap-article {
    padding: 14px 0;
  }
}

@media screen and (min-width: 78.4375em) {
  .swap-article {
    padding: 16px 0;
  }
}

@media screen and (min-width: 48em) {
  .swap-article__mobile {
    display: none;
  }
}

.swap-article__desktop {
  display: none;
  max-width: 1306px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .swap-article__desktop {
    gap: 16px;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 40em) {
  .swap-promo__text {
    font-size: 16px;
  }
  .swap-promo__inner {
    gap: 5ch;
  }
}

.swap-article-all {
  gap: 2ch;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background-color: #f4f1e8;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 30em) {
  .swap-article-all {
    padding: 16px 20px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
  }
}

@media screen and (min-width: 64em) {
  .swap-article-all {
    gap: 2ch 6ch;
    padding: 16px 60px;
  }
}

@media screen and (min-width: 79.375em) {
  .swap-article-all {
    gap: 30px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
}

.swap-article-all_mobile {
  margin-bottom: 40px;
}

@media screen and (min-width: 64em) {
  .swap-article-all_mobile {
    display: none;
  }
}

.swap-article-all_desktop {
  display: none;
}

@media screen and (min-width: 64em) {
  .swap-article-all_desktop {
    display: flex;
  }
}

.swap-article-all__slogan {
  padding: .4em .6em;
  transform: rotate(-3deg);
  border: 1px dotted #000;
  border-radius: 4px;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.swap-logo {
  flex-shrink: 0;
  width: clamp(120px, 30%, 160px);
}

.swap-part_1 {
  height: 14px;
}

@media screen and (min-width: 79.375em) {
  .swap-part_1 {
    height: 18px;
    transform: translateY(4%);
  }
}

.swap-part_2 {
  height: 20px;
}

@media screen and (min-width: 79.375em) {
  .swap-part_2 {
    height: 23px;
  }
}

.swap-part_3 {
  height: 26px;
}

@media screen and (min-width: 79.375em) {
  .swap-part_3 {
    height: 32px;
    transform: translateY(3%);
  }
}

.swap-room {
  display: block;
  padding: 16px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: #f4f1e8;
}

@media screen and (min-width: 48em) {
  .swap-room {
    padding: 14px 0;
  }
}

@media screen and (min-width: 78.4375em) {
  .swap-room {
    padding: 16px 0;
  }
}

@media screen and (min-width: 48em) {
  .swap-room__mobile {
    display: none;
  }
}

.swap-room__desktop {
  display: none;
}

@media screen and (min-width: 48em) {
  .swap-room__desktop {
    gap: 16px;
    display: flex;
    align-items: center;
  }
}

.fr-promo {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 2px solid #e51e25;
  background-color: var(--layer-3-color, #fff);
}

.fr-promo__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e51e25;
}

.fr-promo__icon svg {
  width: 32px;
  height: 32px;
}

.fr-promo__text {
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.room3-stats {
  padding: 24px 20px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room3-stats {
    display: flex;
    padding: 42px 60px 44px 30px;
    border-bottom: none;
  }
}

.room3-stats__title {
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (min-width: 79.375em) {
  .room3-stats__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.room3-stats__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3-stats__title h3 {
    max-width: 14ch;
  }
}

.room3-stats__grid {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.room3-stats__grid > :nth-child(3n) {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 48em) {
  .room3-stats__grid {
    gap: 25px 28px;
    display: grid;
    grid-template-areas: 'stats-item_1 sep1 stats-item_2 sep2 stats-item_5' 'stats-item_3 sep1 stats-item_4 sep2 stats-item_6' 'stats-item_7 sep1 stats-item_8 sep2 .';
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
  }
  .room3-stats__grid > :nth-child(3n) {
    width: initial;
    padding-bottom: unset;
    border-bottom: none;
  }
}

.room3-stats__main-text {
  margin-bottom: 2px;
  color: var(--text-2-color, #333);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .room3-stats__main-text {
    margin-bottom: 5px;
  }
}

.room3-stats__sub-text {
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room3-stats__icons {
  gap: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 13px;
}

@media screen and (min-width: 48em) {
  .room3-stats__icons {
    gap: 8px 12px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-stats__icons {
    min-width: 151px;
  }
}

.room3-stats__icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 48em) {
  .room3-stats__icon-wrap {
    width: 28px;
    height: 28px;
  }
}

.room3-stats__icon-wrap_hidden {
  display: none;
}

.room3-stats__icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 48em) {
  .room3-stats__icon-img {
    width: 28px;
    height: 28px;
  }
}

.room3-stats__separator-1 {
  display: none;
}

@media screen and (min-width: 48em) {
  .room3-stats__separator-1 {
    display: initial;
    grid-area: sep1;
    width: 1px;
    height: 100%;
    background-color: var(--line-1-color, #e5e8ee);
  }
}

.room3-stats__separator-2 {
  display: none;
}

@media screen and (min-width: 48em) {
  .room3-stats__separator-2 {
    display: initial;
    grid-area: sep2;
    width: 1px;
    height: 100%;
    background-color: var(--line-1-color, #e5e8ee);
  }
}

.room3-stats__more {
  position: relative;
  cursor: pointer;
}

.room3-stats__more-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room3-stats__more-arrow {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 9px;
  height: 6px;
  transform: translateY(-47%);
}

.room3-promo {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--layer-3-color, #d7d8da);
}

@media screen and (min-width: 48em) {
  .room3-promo {
    padding-top: 43px;
  }
}

.room3-promo__head {
  gap: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room3-promo__img {
  aspect-ratio: 3.8 / 1;
  width: 130px;
  margin-bottom: 8px;
}

@media screen and (min-width: 48em) {
  .room3-promo__img {
    width: 188px;
    margin-bottom: 0;
  }
}

.room3-promo__title {
  color: var(--text-2-color, #333);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 48em) {
  .room3-promo__title {
    font-size: 36px;
  }
}

.room3-promo__grid {
  gap: 12px;
  display: grid;
  grid-template-areas: "info copy" "button button";
  grid-template-columns: 60px 1fr;
  width: 100%;
  max-width: 320px;
}

.room3-promo__copy {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  position: relative;
  grid-area: copy;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 20px;
  overflow: hidden;
  border: 1px dashed #d2d2d2;
  border-right: none;
  border-radius: 4px;
  background-color: var(--layer-4-color, rgba(248, 245, 236, .8));
  color: var(--text-1-color, #000);
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room3-promo__copy {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 22px;
  }
}

.room3-promo__copy span {
  top: -30px;
  left: -13px;
  white-space: nowrap;
}

.room3-promo__copy strong {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.room3-promo__copy-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

:root[theme='dark'] .room3-promo__copy-icon {
  --i-color1: var(--text-2-color);
}

@media screen and (min-width: 48em) {
  .room3-promo__copy-icon {
    width: 16px;
    height: 16px;
  }
}

.room3-promo__notify {
  gap: 4px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  background-color: var(--layer-5-color, #fff);
  white-space: nowrap;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.room3-promo__notify.animate {
  display: flex;
  animation-name: slide;
}

.room3-promo__notify-icon {
  flex-shrink: 0;
  width: 11px;
  height: 10px;
}

:root[theme='dark'] .room3-promo__notify-icon {
  --i-color1: #00ff92;
}

@media screen and (min-width: 48em) {
  .room3-promo__notify-icon {
    width: 20px;
    height: 12px;
  }
}

.room3-promo__notify-text {
  color: #3ba87a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

:root[theme='dark'] .room3-promo__notify-text {
  color: #00ff92;
}

@media screen and (min-width: 48em) {
  .room3-promo__notify-text {
    font-size: 16px;
  }
}

.room3-promo__info {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room3-promo__info {
    font-size: 16px;
    line-height: 22;
  }
}

.room3-promo__info p {
  margin: 0;
  padding: 0;
  color: var(--text-5-color, #6d6d6d);
}

.regroom-card_accent .room3-promo__info p {
  color: #cb9833;
}

.room3-promo__bonus {
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: flex;
  position: relative;
  grid-area: info;
  align-items: center;
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed var(--text-4-color, #828282);
  color: var(--text-5-color, #6d6d6d);
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room3-promo__bonus {
    font-size: 16px;
    line-height: 22px;
  }
}

.room3-promo__button {
  display: flex;
  grid-area: button;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 11px 0;
  border-radius: 4px;
  background-color: #45ae52;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 48em) {
  .room3-promo__button {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
  }
}

.room3-promo__button:only-child {
  width: 100%;
}

.room3-promo__button_popup {
  gap: 6px;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  font-weight: 400;
}

.room3-promo__button_popup svg {
  --i-color1: #fff;
  width: 19px;
  height: 18px;
}

.room3-promo__lines {
  --i-color1: #6d6d6d;
}

.room3-promo .regroom-card_accent .bestroom--info-icon {
  --i-color1: #cb9833;
  --i-color2: #fff;
}

.room3-promo .regroom-card_accent .room3-promo__lines {
  --i-color1: #6d6d6d;
}

.room3-promo .widget-regroom {
  margin: 20px 0 40px;
}

@media screen and (min-width: 48em) {
  .room3-promo .widget-regroom {
    margin: 40px 0;
  }
}

@media screen and (min-width: 48em) {
  .room3-stats__item_1 {
    grid-area: stats-item_1;
  }
  .room3-stats__item_2 {
    grid-area: stats-item_2;
  }
  .room3-stats__item_3 {
    grid-area: stats-item_3;
  }
  .room3-stats__item_4 {
    grid-area: stats-item_4;
  }
  .room3-stats__item_5 {
    grid-area: stats-item_5;
  }
  .room3-stats__item_6 {
    grid-area: stats-item_6;
  }
  .room3-stats__item_7 {
    grid-area: stats-item_7;
  }
  .room3-stats__item_8 {
    grid-area: stats-item_8;
  }
}

.room3-support {
  position: relative;
  grid-area: room-support;
  align-self: center;
  padding: 20px 26px 20px 20px;
  border-radius: 8px;
  background-color: var(--layer-4-color, #f8f9fa);
}

@media screen and (min-width: 48em) {
  .room3-support {
    justify-self: flex-end;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.room3-support--inner {
  gap: 0 12px;
  display: flex;
  align-items: center;
}

.room3-support--avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.room3-support--avatar svg {
  width: 68px;
  height: 62px;
}

[theme='dark'] .room3-support--avatar svg {
  --i-color1: #bdbdbd;
}

.room3-support--info {
  display: flex;
  grid-area: supp-info;
  flex-direction: column;
}

.room3-support--heading {
  word-wrap: break-word;
  color: var(--text-5-color, #808080);
  font-size: 15px;
  line-height: 15px;
}

@media screen and (min-width: 48em) {
  .room3-support--heading {
    max-width: 200px;
  }
}

.room3-support--code {
  margin: 8px 0 0;
  color: var(--text-1-color, #333);
  font-size: 17px;
  line-height: 17px;
}

.room3-support--code strong {
  font-weight: 700;
  text-transform: uppercase;
}

.room3-support--link {
  gap: 8px;
  display: flex;
  align-items: center;
  margin: 4px 0 0;
  color: #2aa9eb;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.room3-support--link::after {
  inset: 0;
  position: absolute;
  content: '';
}

.room3-support--link svg {
  --i-color1: #2aa9eb;
  width: 20px;
  height: 20px;
}

.room3-pswap {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 28px 20px;
  border-top: 1px solid var(--line-2-color, #d9d9d9);
  border-bottom: 1px solid var(--line-2-color, #d9d9d9);
  background-color: var(--layer-4-color, #f4f1e9);
}

@media screen and (min-width: 30em) {
  .room3-pswap {
    align-items: center;
  }
}

@media screen and (min-width: 64em) {
  .room3-pswap {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 30px;
    padding: 20px 32px;
    border-top: none;
    border-bottom: none;
  }
}

.room3-pswap__logo {
  width: 193px;
  height: 34px;
}

[theme='dark'] .room3-pswap__logo {
  --i-color-1: var(--text-2-color);
}

@media screen and (min-width: 79.375em) {
  .room3-pswap__logo {
    width: 210px;
    height: 40px;
  }
}

.room3-pswap__img {
  display: inline;
  max-height: 19px;
}

.room3-pswap__img_logo {
  display: inline-block;
  width: 32px;
  max-height: 32px;
  margin: -12px 0 -8px;
}

.room3-pswap__room-name {
  display: inline;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.room3-pswap__country {
  width: 16px;
  height: 16px;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: text-top;
}

.room3-pswap__description {
  color: var(--text-2-color, #292929);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 130%;
}

.room3-pswap__description:last-of-type {
  margin-top: 6px;
}

.room3-pswap__button {
  width: 100%;
  padding: 12px 24px;
  border-radius: 4px;
  background: #4aa657;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 30em) {
  .room3-pswap__button {
    max-width: 212px;
  }
}

.room3-bonus-all {
  position: relative;
  grid-area: room-bonus;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--layer-2a-color, #f8f9fa);
}

@media screen and (min-width: 64em) {
  .room3-bonus-all {
    border-radius: 0;
  }
}

.room3-bonus-all_mobile {
  margin-bottom: 20px;
}

@media screen and (min-width: 48em) {
  .room3-bonus-all_mobile {
    display: none;
  }
}

.room3-bonus-all_desktop {
  display: none;
}

@media screen and (min-width: 48em) {
  .room3-bonus-all_desktop {
    display: block;
    padding: 0 20px 20px;
    border-radius: 0;
    background-color: var(--layer-3-color, #fff);
  }
}

@media screen and (min-width: 64em) {
  .room3-bonus-all_desktop {
    padding: 20px;
    background-color: var(--layer-2a-color, #f8f9fa);
  }
}

.room3-bonus-all__inner {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1246px;
}

@media screen and (min-width: 48em) {
  .room3-bonus-all__inner {
    padding: 20px;
    border-radius: 16px;
    background-color: var(--layer-2a-color, #f8f9fa);
  }
}

@media screen and (min-width: 64em) {
  .room3-bonus-all__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background-color: initial;
  }
}

.room3-bonus-all__content {
  gap: 12px;
  display: grid;
  grid-template-columns: 44px auto;
  grid-template-rows: auto;
}

@media screen and (min-width: 64em) {
  .room3-bonus-all__content {
    gap: 0 16px;
    grid-template-columns: auto 58px auto;
  }
}

.room3-bonus-all__icon {
  grid-column: 1;
  width: 44px;
  height: 44px;
}

@media screen and (min-width: 64em) {
  .room3-bonus-all__icon {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    width: 58px;
    height: 58px;
  }
}

.room3-bonus-all__title {
  grid-column-end: 3;
  grid-column-start: 2;
  align-self: center;
  color: #e50c2c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.46;
}

@media screen and (min-width: 64em) {
  .room3-bonus-all__title {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 22px;
  }
}

.room3-bonus-all__description {
  grid-column-end: 3;
  grid-column-start: 1;
  color: var(--text-2-color, #292929);
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 64em) {
  .room3-bonus-all__description {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    max-width: 400px;
    font-weight: 500;
  }
}

.room3-bonus-all__description::after {
  inset: 0;
  position: absolute;
  content: '';
}

.room3-bonus-all__description strong {
  font-weight: 700;
}

.room3-bonus-all__link {
  gap: 10px;
  display: flex;
  z-index: 2;
  align-items: center;
  color: #54a958;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.room3-bonus-all__arrow {
  width: 7px;
  height: 11px;
}

@media screen and (min-width: 64em) {
  .bonus-shape {
    aspect-ratio: 1130 / 90;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1130px;
    min-height: 90px;
    padding: 0;
    overflow: hidden;
    background-color: initial;
  }
  .bonus-shape:after,
.bonus-shape:before {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    background-color: var(--layer-2a-color, #fbfbfb);
    content: '';
  }
  .bonus-shape:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .bonus-shape:after {
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
}

@media screen and (min-width: 64em) {
  .bonus-shape__content {
    flex-shrink: 0;
    width: 100%;
    max-width: 1010px;
    height: 100%;
    padding: 0 20px;
    background-color: var(--layer-2a-color, #fbfbfb);
  }
}

.room3-bonus-stick {
  display: flex;
  z-index: 3;
  position: fixed;
  top: 67px;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  background-color: var(--layer-2-color, #f8f9fa);
  transition: transform .2s ease-out;
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick {
    top: 0;
    flex-direction: column;
    background-color: var(--layer-2-color, #fff);
  }
  .room3-bonus-stick .room3-rating {
    display: none;
  }
}

.room3-bonus-stick_active {
  transform: translateY(0);
  outline: 1px solid var(--line-1-color, #e5e8ee);
  box-shadow: 0 2px 5px rgba(239, 239, 239, .6),
                0 4px 10px rgba(239, 239, 239, .4),
                0 8px 20px rgba(239, 239, 239, .2);
}

[theme='dark'] .room3-bonus-stick_active {
  box-shadow: none;
}

.room3-bonus-stick__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 1286px;
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 16px 20px;
  }
}

.room3-bonus-stick__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.room3-bonus-stick__logo-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__logo-wrap {
    width: initial;
    padding: 0;
    border: 0;
    background-color: transparent;
  }
}

.room3-bonus-stick__offer {
  gap: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__offer {
    flex-wrap: nowrap;
    padding: 0;
  }
}

.room3-bonus-stick__head {
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px;
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__head {
    padding: 0;
  }
}

.room3-bonus-stick__title {
  display: none;
  color: #e50c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 146%;
}

@media screen and (min-width: 48em) {
  .room3-bonus-stick__title {
    display: initial;
  }
}

.room3-bonus-stick__description {
  color: var(--text-2-color, #292929);
  font-size: 14px;
  font-style: normal;
  line-height: 130%;
}

.room3-bonus-stick__description strong {
  font-weight: 700;
}

.room3-bonus-stick__reg-wrap {
  display: flex;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__reg-wrap {
    padding: 0;
  }
}

.room3-bonus-stick__menu {
  display: none;
  width: 100%;
  padding: 11px 20px;
  border-top: 1px solid var(--line-1-color, #e5e8ee);
  background: var(--layer-3-color, #fbfbfb);
}

@media screen and (min-width: 64em) {
  .room3-bonus-stick__menu {
    display: initial;
  }
}

.room3-bonus-stick__menu-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1246px;
  margin: 0 auto;
}

.room3-bonus-stick__links {
  gap: 36px;
  display: flex;
}

.room3-bonus-stick__support {
  gap: 8px;
  display: flex;
  grid-area: supp-links;
  align-items: center;
  color: #2aa9eb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.room3-bonus-stick__support svg {
  --i-color1: #2aa9eb;
  width: 20px;
  height: 18px;
}

.room3-description {
  padding: 0 24px 24px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
  color: var(--text-3-color, #444);
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room3-description {
    font-size: 17px;
    line-height: 27px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-description {
    display: flex;
    padding: 51px 60px 60px 30px;
  }
}

.room3-description__title {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 19px;
}

@media screen and (min-width: 79.375em) {
  .room3-description__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
  }
}

.room3-description__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3-description__title h3 {
    max-width: 14ch;
  }
}

.room3-description_bottom {
  width: 100%;
  max-width: 1010px;
  margin: 17px auto 13px;
}

.room3-banner__item {
  display: inline-block;
  margin-bottom: 23px;
}

@media screen and (min-width: 48em) {
  .room3-banner__item {
    max-width: 222px;
  }
}

.room3-banner__image {
  max-width: 221px;
  margin-bottom: 10px;
}

.room3-banner__image img {
  border-radius: 10px;
}

.room3-banner__text {
  max-width: 221px;
  color: var(--text-1-color, #000);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.room3-banners {
  padding: 0 24px;
  background-color: var(--layer-3-color, #eef0f5);
}

@media screen and (min-width: 79.375em) {
  .room3-banners {
    position: sticky;
    top: 22px;
    margin-bottom: 72px;
    padding: 0;
  }
}

.room3-banners_mobile {
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 79.375em) {
  .room3-banners_mobile {
    display: none;
  }
}

.room3-banners__title {
  margin-bottom: 24px;
  text-align: center;
}

.room3-banners__title-item {
  margin-bottom: 8px;
  padding: 0;
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 21px;
}

.room3-banners__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 30em) {
  .room3-banners__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

@media screen and (min-width: 48em) {
  .room3-banners__wrapper {
    gap: 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-banners__wrapper {
    gap: 24px;
    display: unset;
    justify-content: center;
    padding: 0;
  }
}

.room3-banners__button {
  position: relative;
  padding-right: 20px;
  color: #e51e25;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
}

.room3-banners__arrow {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 13px;
  height: 8px;
  transform: translateY(-47%);
}

.room3-banners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 39px 0 32px;
  background-color: var(--layer-3-color);
}

@media screen and (min-width: 79.375em) {
  .room3-banners-inner {
    padding: 0;
    background-color: var(--layer-2-color);
  }
}

.room3-plus {
  padding: 0 24px 16px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room3-plus {
    display: flex;
    padding: 49px 60px 52px 30px;
    border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  }
}

.room3-plus__wrapper {
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room3-plus__wrapper {
    gap: 120px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-plus__wrapper {
    gap: 56px;
  }
}

.room3-plus__title {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 14px;
}

@media screen and (min-width: 48em) {
  .room3-plus__title {
    margin-top: 43px;
    margin-bottom: 26px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-plus__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
  }
}

.room3-plus__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3-plus__title h3 {
    max-width: 14ch;
  }
}

@media screen and (min-width: 48em) {
  .room3-plus__list {
    max-width: 300px;
  }
}

.room3-plus__list_pros {
  margin-bottom: 14px;
}

.room3-plus__list_cons {
  margin-bottom: 34px;
}

.room3-plus__list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--text-3-color, #242424);
  opacity: .85;
}

.room3-plus__list-item::before {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.room3-plus__list-item_plus::before {
  background-image: url(../nimg/plus.svg);
}

.room3-plus__list-item_minus::before {
  background-image: url(../nimg/minus.svg);
}

.room3-plus-inner {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
}

@media screen and (min-width: 79.375em) {
  .room3-plus-inner {
    padding: 49px 0 52px;
    border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  }
}

.room3-traffic {
  padding: 0 24px 25px 24px;
  border-bottom: 1px solid var(--line-1-color, #e5e8ee);
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room3-traffic {
    display: flex;
    padding: 0 60px 44px 30px;
  }
}

.room3-traffic__title {
  display: inline-block;
  margin: 27px 0;
}

@media screen and (min-width: 48em) {
  .room3-traffic__title {
    margin-top: 36px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-traffic__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 49px;
    margin-bottom: 0;
  }
}

.room3-traffic__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3-traffic__title h3 {
    max-width: 14ch;
  }
}

.room3-traffic__item-title {
  margin-bottom: 11px;
  color: var(--text-4-color, #242424);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}

.room3-traffic__item-text {
  color: #808080;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

.room3-traffic-items {
  row-gap: 21px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

@media screen and (min-width: 48em) {
  .room3-traffic-items {
    gap: 90px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-traffic-items {
    gap: 74px;
    margin-top: 52px;
  }
}

.room3-other {
  padding: 0 24px 30px 24px;
  background-color: var(--layer-2a-color, #fbfbfb);
}

@media screen and (min-width: 79.375em) {
  .room3-other {
    display: flex;
    padding: 0 60px 60px 30px;
  }
}

.room3-other__title {
  display: inline-block;
  margin-top: 27px;
  margin-bottom: 17px;
}

@media screen and (min-width: 48em) {
  .room3-other__title {
    margin-top: 38px;
    margin-bottom: 23px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-other__title {
    flex-basis: 223px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 43px;
    margin-bottom: 0;
  }
}

.room3-other__title h3 {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 79.375em) {
  .room3-other__title h3 {
    max-width: 14ch;
  }
}

@media screen and (min-width: 48em) {
  .room3-other__text-wrapper {
    gap: 90px;
    display: flex;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-other__text-wrapper {
    gap: 51px;
  }
}

.room3-other .slider-screen {
  margin-bottom: 29px;
}

@media screen and (min-width: 79.375em) {
  .room3-other .slider-screen {
    margin-top: 49px;
  }
}

.room3-other__grid {
  row-gap: 4px;
  display: grid;
  grid-template-columns: 88px auto;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media screen and (min-width: 48em) {
  .room3-other__grid {
    grid-template-columns: auto auto;
  }
}

.room3-other__grid:first-child {
  margin-bottom: 4px;
}

@media screen and (min-width: 48em) {
  .room3-other__grid:first-child {
    margin-bottom: unset;
  }
}

.room3-other__table-title {
  min-width: 13ch;
  margin-top: .5ch;
  color: #808080;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.room3-other__text {
  display: flex;
  color: var(--text-3-color, #292929);
  font-size: 17px;
  line-height: 27px;
  opacity: .85;
}

@media screen and (min-width: 48em) {
  .room3-other__text {
    display: initial;
  }
}

.room3-other__text_row {
  display: block;
}

.room3-other__text-comma {
  margin-right: .5em;
}

@media screen and (min-width: 48em) {
  .room3-other__text-comma {
    display: none;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-section {
    display: flex;
  }
}

.stars-background {
  width: 90px;
  height: 18px;
  clip-path: url(#icon-stars-clip-path);
}

.star-background {
  width: 22px;
  height: 22px;
  clip-path: url(#icon-star-clip-path);
}

.room3-stars-mask {
  position: absolute;
  width: 0;
  pointer-events: none;
}

.licence-arrow {
  width: 10px;
  height: 9px;
}

.room3-testimonials {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px 20px 24px;
}

.testimonials3-header {
  position: relative;
  margin-bottom: 20px;
}

.testimonials3-header__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-1-color, #d7dce8);
}

@media screen and (min-width: 48em) {
  .testimonials3-header__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}

.testimonials3 {
  border: none;
}

.testimonials3__stats {
  gap: 15px;
  display: none;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 21px;
}

.testimonials3__stats_mobile {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
}

@media screen and (min-width: 48em) {
  .testimonials3__stats_mobile {
    display: none !important;
  }
}

@media screen and (min-width: 48em) {
  .testimonials3__stats {
    display: flex;
  }
}

.testimonials3__stats-count {
  color: var(--text-3-color, #808080);
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
}

.testimonials3__stats-all {
  color: #e51e25;
  font-family: Roboto, Arial, sans-serif;
}

.testimonials3__head-top {
  gap: 8px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--text-1-color, #000);
}

@media screen and (min-width: 48em) {
  .testimonials3__head-top {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonials3__nick_red {
  color: #e51e25;
  font-weight: 700;
}

.testimonials3__stars {
  flex-shrink: 0;
  overflow: hidden;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: 17px;
}

.testimonials3__stars_bg {
  position: relative;
  width: 85px;
  height: 17px;
  background-image: url(../nimg/star-off.svg);
}

[theme='dark'] .testimonials3__stars_bg {
  background-image: url(../nimg/star-on.svg);
}

.testimonials3__stars_active {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: url(../nimg/star-on.svg);
}

[theme='dark'] .testimonials3__stars_active {
  background-image: url(../nimg/star-off.svg);
}

.testimonials3__nick-wrap {
  flex: 1 1 100%;
  min-width: 0;
}

.testimonials3__nick {
  margin-bottom: 7px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonials3__nick div {
  display: block;
}

@media screen and (min-width: 48em) {
  .testimonials3__nick div {
    display: inline;
  }
}

@media screen and (min-width: 48em) {
  .testimonials3__nick {
    font-size: 18px;
    line-height: 18px;
  }
}

.testimonials3__sub-nick {
  font-weight: 400;
}

.testimonials3__nick_review {
  font-weight: 400;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .testimonials3__nick_review {
    margin: 0;
  }
}

.testimonials3__call {
  margin-top: 3px;
  color: #808080;
}

.testimonials3__avatar {
  grid-area: testimonial-card__avatar;
  flex-grow: 0;
  flex-shrink: 0;
}

.testimonials3__avatar-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-image: url(../nimg/imguser.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .testimonials3__avatar-image {
    width: 56px;
    height: 56px;
  }
}

.testimonials3__content {
  gap: 8px;
  display: flex;
  grid-area: testimonial-card__content;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .testimonials3__content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials3__content_feedback {
    display: flex;
    justify-content: space-between;
  }
}

.testimonials3__bottom {
  display: flex;
  grid-area: testimonial-card__bottom;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .testimonials3__bottom {
    margin-top: 12px;
  }
}

.testimonials3__head {
  display: flex;
  grid-area: testimonial-card__head;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 48em) {
  .testimonials3__head {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 48em) {
  .testimonials3__head_feedback {
    margin-bottom: 14px;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials3__head_feedback {
    margin-bottom: 0;
  }
}

.testimonials3__date {
  color: #808080;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

.testimonials3__text {
  color: var(--text-3-color, #242424);
  font-size: 15px;
  font-style: italic;
  line-height: 21px;
}

@media screen and (min-width: 48em) {
  .testimonials3__text {
    max-width: 550px;
    font-size: 16px;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials3__text {
    max-width: 790px;
  }
}

.testimonials3__like {
  gap: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.testimonials3__like:hover {
  --i-color1: #808080;
}

.testimonials3__like_active {
  --i-color1: #808080;
}

.testimonials3__like-icon {
  width: 15px;
  height: 15px;
  margin-bottom: 2px;
}

.testimonials3__like-count {
  color: var(--text-3-color, #808080);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.testimonials3__button {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border: 1px solid #e2222e;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  color: #e51e25;
  font-style: normal;
  font-weight: 500;
}

@media screen and (min-width: 79.375em) {
  .testimonials3__button {
    width: 216px;
  }
}

.testimonials3__chat {
  width: 19px;
  height: 17px;
}

.testimonials3__feedback {
  width: 100%;
}

.testimonials3__logo-wrap {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  border: 1px solid var(--line-1-color, #c0c0c1);
  border-radius: 10px;
  background: var(--layer-3-color, #fff);
}

.testimonials3__logo {
  width: 38px;
  max-width: unset;
  height: 38px;
}

.testimonials3__reply {
  gap: 8px;
  display: none;
  flex-direction: column;
  padding: 18px 22px 20px 15px;
  border-radius: 0 0 10px 10px;
  background: var(--layer-3-color, #f7f8fa);
}

@media screen and (min-width: 48em) {
  .testimonials3__reply {
    gap: 24px;
    flex-direction: row;
    padding: 24px 32px;
  }
}

.testimonials3__reply-button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 44px;
  border: 1px solid var(--line-1-color, #292929);
  border-radius: 5px;
  color: var(--text-2-color, #292929);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  cursor: pointer;
}

.testimonials3__form {
  width: 100%;
}

.testimonials3__textarea {
  width: 100%;
  padding: 13px 18px;
  border: none;
  border-radius: 6px;
  background-color: var(--layer-4-color, #fff);
  color: var(--text-2-color, #000);
}

.testimonials3__textarea::-moz-placeholder {
  color: var(--text-5-color, #bdbdbd);
}

.testimonials3__textarea::placeholder {
  color: var(--text-5-color, #bdbdbd);
}

.testimonials3__submit {
  margin-top: 16px;
  padding: 9px 28px;
  border-radius: 5px;
  background: var(--text-5-color, #292929);
  color: var(--layer-3-color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.testimonials3__comment {
  gap: 12px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border-radius: 6px;
  background: var(--layer-3-color, #f7f8fa);
}

.testimonials3__comment-head {
  gap: 16px;
  display: flex;
}

.testimonials3__control-wrap {
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}

.testimonials3__control {
  display: inline-block;
  padding: 1px 9px;
  border: 1px solid var(--text-3-color, #808080);
  border-radius: 13px;
  color: var(--text-3-color, #808080);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
  cursor: pointer;
}

.testimonials3__control_delete {
  border-color: #ee5151;
  color: #ee5151;
}

.testimonials3__comment-logo {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  border: 1px solid var(--line-1-color, #e1e5ed);
  border-radius: 4px;
  background: #fff;
}

.testimonials3__comment-title {
  color: var(--text-1-color, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.testimonials3__comment-img {
  width: 22px;
  height: 22px;
}

.testimonials3__comment-text {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.testimonials3__comment-date {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.testimonials3-cards {
  gap: 4px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .testimonials3-cards {
    gap: 12px;
  }
}

.testimonials3-card {
  gap: 8px 16px;
  display: grid;
  grid-template-areas: 'testimonial-card__avatar testimonial-card__head' 'testimonial-card__content testimonial-card__content' 'testimonial-card__bottom testimonial-card__bottom';
  grid-template-columns: 56px auto;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-2a-color, #fff);
  color: var(--text-3-color, #333);
}

@media screen and (min-width: 48em) {
  .testimonials3-card {
    row-gap: 0;
    grid-template-areas: 'testimonial-card__avatar testimonial-card__head' 'testimonial-card__avatar testimonial-card__content' 'testimonial-card__avatar testimonial-card__bottom';
    padding: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

.testimonials3-card_feedback {
  grid-template-areas: 'testimonial-card__avatar testimonial-card__head' 'testimonial-card__bottom testimonial-card__bottom';
}

@media screen and (min-width: 48em) {
  .testimonials3-card_feedback {
    grid-template-areas: 'testimonial-card__avatar testimonial-card__head testimonial-card__bottom';
  }
}

.testimonials3-card_feedback .testimonials3__head {
  flex-direction: column;
}

.testimonials3-card_feedback .testimonials3__text {
  color: var(--text-3-color, #808080);
  font-style: normal;
}

.testimonials3-card form {
  width: 100%;
}

.testimonials3-card:last-of-type {
  margin-bottom: 8px;
}

.testimonials3-total {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 48em) {
  .testimonials3-total {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }
}

@media screen and (min-width: 79.375em) {
  .testimonials3-total {
    margin-top: 28px;
  }
}

.testimonials3-total__stats {
  margin-top: 8px;
  color: var(--text-3-color, #808080);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .testimonials3-total__stats {
    flex-direction: row-reverse;
    margin-top: 0;
    font-family: "PT Serif", serif;
    font-size: 18px;
  }
}

.testimonials3-total__more {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2222e;
  border-radius: 10px;
  color: #e2222e;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .testimonials3-total__more {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.testimonials3-card_feedback_signed {
  display: block;
}

.room3-wrapper .rater {
  background-image: url(/nimg/star-off.svg);
}

[theme='dark'] .room3-wrapper .rater {
  background-image: url(/nimg/star-on.svg);
}

.room3-wrapper .rater--value {
  background-image: url(/nimg/star-on.svg);
}

[theme='dark'] .room3-wrapper .rater--value {
  background-image: url(/nimg/star-off.svg);
}

.room3-reputation {
  display: flex;
  align-items: center;
}

.room3-reputation__title {
  margin: 0 0 0 8px;
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.room3-reputation__icon {
  width: 20px;
  height: 20px;
}

[theme='dark'] .room3-reputation__icon {
  --i-color1: #9e9e9e;
}

.room3-reputation__star {
  height: 22px;
}

.room3-reputation__digits {
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 22px;
  line-height: 17px;
  white-space: nowrap;
}

.room3-reputation__rate {
  gap: 6px;
  display: flex;
  align-items: center;
  margin: 0 16px;
}

.reputation3__title {
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.reputation3__star {
  height: 22px;
}

.reputation3__rate {
  gap: 5px;
  display: flex;
  align-items: center;
}

.reputation3__digits {
  color: #b5b5b5;
  font-family: "PT Serif", serif;
  font-size: 22px;
  line-height: 17px;
  white-space: nowrap;
}

.reputation3__digits strong {
  color: #e51e25;
}

.reputation3__digits span {
  white-space: pre;
}

[data-rating='1'] .testimonials3__stars_active {
  width: 20%;
}

[data-rating='2'] .testimonials3__stars_active {
  width: 40%;
}

[data-rating='3'] .testimonials3__stars_active {
  width: 60%;
}

[data-rating='4'] .testimonials3__stars_active {
  width: 80%;
}

[data-rating='5'] .testimonials3__stars_active {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .room3-testimonials .room3-container {
    padding: 0 25px;
  }
}

@media screen and (min-width: 79.375em) {
  .room3-testimonials .room3-container {
    padding: 0;
  }
}

.room3-review {
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
}

.room3-review__article {
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 64em) {
  .room3-review__article {
    gap: 50px;
    display: grid;
    grid-template-columns: 166px 1fr;
    padding: 0 20px;
    padding-bottom: 80px;
  }
}

.room3-review__content {
  padding-top: 24px;
}

.room3-review__content > *:not(.media) {
  padding: 0 20px;
}

@media screen and (min-width: 64em) {
  .room3-review__content > *:not(.media) {
    padding: unset;
  }
}

.room3-review__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 64em) {
  .room3-review__head {
    height: 60px;
  }
}

.room3-review__logo img {
  max-height: 60px;
  margin: 0;
  border-radius: 0;
}

.room3-review__rating {
  gap: 12px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-family: "PT Serif", serif;
}

@media screen and (min-width: 48em) {
  .room3-review__rating {
    flex-direction: row;
  }
}

.room3-review__header {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid #e1dfdf;
  background-color: var(--layer-3-color, #fbfbfb);
}

@media screen and (min-width: 48em) {
  .room3-review__header {
    align-items: flex-end;
  }
}

@media screen and (min-width: 64em) {
  .room3-review__header {
    align-items: center;
    border-bottom: none;
    background-color: transparent;
  }
}

.room3-review__author-item {
  gap: 10px;
  display: flex;
  align-items: center;
}

.room3-review__header-title {
  gap: 8px;
  display: flex;
  align-items: center;
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

@media screen and (min-width: 48em) {
  .room3-review__header-title {
    margin-bottom: 0;
  }
}

.room3-review__header-icon {
  width: 30px;
  height: 30px;
}

.room3-review__author-text {
  gap: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.room3-review__author-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-left: 40px;
}

@media screen and (min-width: 48em) {
  .room3-review__author-wrap {
    gap: 35px;
  }
}

@media screen and (min-width: 64em) {
  .room3-review__author-wrap {
    flex-direction: row;
  }
}

.room3-review__author-role {
  min-width: 8ch;
  color: var(--text-5-color, #808080);
  font-size: 14px;
  line-height: 16px;
}

.room3-review__author-name {
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.room3-review__author-avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.room3-review__title {
  display: inline-block;
  margin: 40px 0 17px;
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .room3-review__title {
    margin: 50px 0 17px;
  }
}

.room3-review__title_first {
  margin: 33px 0 17px;
}

.room3-review__text-wrap {
  font-family: "PT Serif", serif;
  font-size: 15px;
  line-height: 22px;
}

.room3-review__text-wrap p {
  margin-bottom: 1ch;
  color: #242424;
  opacity: .85;
}

.room3-review__text-wrap p:not(:last-child) {
  margin-bottom: 1ch;
}

.room3-review__image {
  width: 100%;
  margin-top: 25px;
}

.room3-review__image_team {
  border-radius: 10px;
}

.room3-review__list {
  margin-bottom: 1ch;
  margin-left: 8px;
}

.room3-review__list-item {
  padding-inline-start: 8px;
  list-style-type: '•';
}

.room3-review__next-button {
  position: fixed;
  bottom: 52px;
  left: 50%;
  max-width: calc(100% - 48px);
  padding: 13px 30px 13px 15px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid #e51e25;
  border-radius: 30px;
  background-color: var(--layer-3-color, #fff);
  color: #e51e25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  opacity: 1;
  transition: all .5s;
}

@media screen and (min-width: 48em) {
  .room3-review__next-button {
    display: none;
  }
}

.room3-review__next-button_disabled {
  opacity: 0;
  pointer-events: none;
}

.room3-review__button-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--layer-3-color, #fff) 16%);
}

.room3-review__arrow-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 11px;
  transform: translateY(-50%);
}

.room3-review__map {
  display: none;
}

@media screen and (min-width: 64em) {
  .room3-review__map {
    display: inline-block;
    flex-basis: 166px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 130px;
    margin-bottom: 35px;
    padding-left: 10px;
  }
}

.room3-review__links {
  gap: 14px;
  display: flex;
  position: sticky;
  flex-direction: column;
  align-items: flex-start;
  color: #808080;
}

@media screen and (min-width: 48em) {
  .room3-review__links {
    top: 26px;
  }
}

@media screen and (min-width: 64em) {
  .room3-review__links {
    top: 175px;
  }
}

.room3-review__link {
  color: var(--text-5-color, #808080);
  font-size: 14px;
  line-height: 17px;
  transition: color .3s;
}

.room3-review__link_active {
  position: relative;
  color: #e31f26;
  font-weight: 700;
}

.room3-review__link_active::before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 6px;
  background-image: url(../nimg/rhombus-red.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.room3-review__faq-subtitle {
  margin-bottom: .5ch;
  font-family: "PT Serif", serif;
  font-weight: 700;
}

.room3-bottom {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 50px 24px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 64em) {
  .room3-bottom {
    padding: 28px 30px 50px 24px;
  }
}

.slider-screen {
  display: flex;
  justify-content: center;
  width: 100%;
}

.slider-screen--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-screen--row {
  gap: 8px;
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

@media screen and (min-width: 48em) {
  .slider-screen--row {
    gap: unset;
    flex-direction: row;
  }
}

.slider-screen--item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  transition-property: transform;
}

.slider-screen--item a {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  justify-content: center;
  width: 100%;
}

.slider-screen--item img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.slider-screen--button {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  outline: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  cursor: pointer;
  pointer-events: none;
}

@media screen and (min-width: 48em) {
  .slider-screen--button {
    pointer-events: auto;
  }
}

.slider-screen--button_next {
  right: 0;
  left: auto;
  transition: opacity .2s ease-in-out;
}

.slider-screen--button_next::before {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--layer-2a-color, #fbfbfb) 95%);
  content: '';
  pointer-events: none;
}

@media screen and (min-width: 48em) {
  .slider-screen--button_next::before {
    display: block;
  }
}

.slider-screen--button_next::after {
  display: none;
  width: 13px;
  height: 13px;
  transform: rotate(-45deg);
  border: solid #e51e25;
  border-width: 0 3px 3px 0;
  content: '';
}

@media screen and (min-width: 48em) {
  .slider-screen--button_next::after {
    display: block;
  }
}

.slider-screen--button_disabled {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}

.room3-forum__wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}

@media screen and (min-width: 79.375em) {
  .room3-forum__wrapper {
    padding-bottom: 0;
  }
}

.review-back {
  gap: 0 8px;
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.review-back a {
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.review-back svg {
  --color1: var(--text-1-color, #000);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.review-arrow-left {
  transform: rotate(180deg);
  cursor: pointer;
}

.wrapper {
  display: flex;
  width: 100%;
}

.fluid {
  flex: 1 1 100%;
  min-width: 0;
}

.fluid-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.static-content {
  width: 200px;
}


/* not required styles */

.wrapper {
  border: 1px solid black;
}

.fluid-content {
  background-color: pink;
}

.static-content {
  background-color: yellow;
}

.vipview-head {
  padding: 50px 15px 30px;
}

@media screen and (min-width: 48em) {
  .vipview-head {
    padding: 50px 15px 60px;
  }
}

.vipview-head--return {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
  padding: 0 15px;
}

.vipview-head--return a {
  padding: 0 0 0 35px;
  background-image: url(/aimg/rooms/icon-arrow-back.svg);
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #808080;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.vipview-head--logo {
  width: 100%;
  max-width: 1196px;
  margin: 20px auto 0;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vipview-head--logo {
    min-height: 140px;
    margin: 75px auto 0;
  }
}

.vipview-head--line {
  width: 100%;
  max-width: 1105px;
  height: 20px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #808080;
}

@media screen and (min-width: 48em) {
  .vipview-head--line {
    margin: 0 auto 40px;
  }
}

.vipview-head--list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .vipview-head--list {
    flex-direction: row;
    justify-content: center;
  }
}

.vipview-head--list li {
  align-items: center;
  font-size: 22px;
}

@media screen and (min-width: 48em) {
  .vipview-head--list li {
    padding: 0 10px;
  }
}

.vipview-head--country {
  display: flex;
}

.vipview-head--country span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  margin: 0 8px;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 26px;
}

.vipview-screen {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #979797;
  background-image: url(/aimg/rooms/pattern-500.png);
}

@media screen and (min-width: 64em) {
  .vipview-screen {
    flex-direction: row;
    justify-content: center;
    padding: 60px 15px;
  }
}

.vipview-screen::before {
  z-index: 1;
  position: absolute;
  top: -16px;
  left: calc(50% - 16px);
  width: 0;
  height: 0;
  border-width: 0 16px 16px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #979797;
  content: "";
}

.vipview-screen--item {
  max-width: 370px;
  margin: 0 0 20px;
}

@media screen and (min-width: 64em) {
  .vipview-screen--item {
    margin: 0 30px 0 0;
  }
}

.vipview-screen--item:nth-last-of-type(1) {
  margin: 0;
}

.vipview-offer {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 40px 15px;
}

@media screen and (min-width: 48em) {
  .vipview-offer {
    padding: 65px 15px 90px;
  }
}

.vipview-offer--heading {
  margin: 0 0 20px;
  color: #000;
  font-size: 22px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vipview-offer--heading {
    font-size: 28px;
  }
}

.vipview-offer--list {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 20px 0;
  -moz-columns: 1;
  columns: 1;
  list-style: none;
}

@media screen and (min-width: 64em) {
  .vipview-offer--list {
    padding: 30px 0 20px;
    -moz-columns: 2;
    columns: 2;
  }
}

.vipview-offer--list > li {
  display: block;
  position: relative;
  margin: 0 0 15px 30px;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 64em) {
  .vipview-offer--list > li {
    display: inline-block;
    margin: 0 0 20px 40px;
    font-size: 20px;
    line-height: 30px;
  }
}

.vipview-offer--list > li::before {
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 20px;
  background-image: url(/aimg/rooms/icon-green-mark.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
}

@media screen and (min-width: 64em) {
  .vipview-offer--list > li::before {
    left: -40px;
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}

.vipview-offer--list > li a {
  border-bottom: 1px dashed #005581;
  color: #000;
  text-decoration: none;
}

.vipview-offer--sublist {
  margin: 0;
  padding: 5px 0 0;
  list-style: none;
}

.vipview-offer--sublist li {
  font-size: 16px;
}

.vipview-offer--sublist li::before {
  display: inline-block;
  width: 16px;
  margin: 0 0 0 -16px;
  color: #36933e;
  content: "●";
}

.vipview-offer--buttom {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.vipview-offer--mail {
  position: relative;
  margin: 0 12px;
  padding: 19px 24px 19px 67px;
  background-color: #ebebeb;
  background-image: url(/aimg/rooms/icon-vip-mail-gray.png);
  background-position: 20px 50%;
  background-repeat: no-repeat;
  color: #555;
  font-size: 18px;
  text-decoration: none;
}

.v-alt-contact--wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin: 0 auto 50px;
  padding: 60px 0 30px;
  background-color: #fff;
}

.cta-chat--wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 35px;
}

.vip-cta-button {
  display: flex;
  align-items: center;
  width: 200px;
  height: 57px;
  margin: 0 15px;
  padding: 0 0 0 75px;
  border-bottom: 3px solid #126f92;
  border-radius: 4px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}

.vip-cta-button_skype {
  width: 220px;
  margin: 0;
  background-color: #019bd4;
  background-image: url(/aimg/rooms/skype-logo.svg);
  background-position: 20px 50%;
  background-size: 35px;
}

.contact-icons--wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.contact-icons--call {
  display: none;
  margin: 0 20px 0 0;
  color: #333;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .contact-icons--call {
    display: flex;
  }
}

.messenger-icon {
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
}

.messenger-icon:nth-last-of-type(1) {
  margin: 0;
}

.messenger-icon_phone {
  background-image: url(/aimg/rooms/phone-gray.svg);
  background-size: 20px;
}

.messenger-icon_viber {
  background-image: url(/aimg/rooms/viber-gray.svg);
}

.messenger-icon_whatsapp {
  background-image: url(/aimg/rooms/whatsapp-gray.svg);
}

.messenger-icon_telegram {
  background-image: url(/aimg/rooms/telegram-gray.svg);
}

.v-regstep--promocode {
  display: inline-block;
  margin: 10px 0 0;
  padding: 4px 15px;
  border: 1px dashed #f00;
  border-radius: 2px;
  color: #000;
  font-size: 26px;
}

.v-reg--heading {
  margin: 20px 0;
  color: #000;
  font-size: 22px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .v-reg--heading {
    margin: 20px 0 25px;
    font-size: 28px;
  }
}

.v-regsteps--wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 940px;
  margin: 0 auto 50px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .v-regsteps--wrap {
    flex-direction: row;
  }
}

.v-regstep--number {
  height: 60px;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 54px;
}

.v-regstep--login .v-regstep--number {
  background-image: url(/aimg/rooms/v-step-1-white.svg);
}

.v-regstep--install .v-regstep--number {
  background-image: url(/aimg/rooms/v-step-2-white.svg);
}

.v-regstep--login {
  flex-basis: 50%;
  min-height: 330px;
  padding: 40px 0 20px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .v-regstep--login {
    border-right: 1px solid #eee;
    border-bottom: 0;
  }
}

.v-regstep--login p {
  max-width: 200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.4;
}

.v-regstep--install {
  flex-basis: 50%;
  min-height: 330px;
  padding: 40px 15px 20px;
  background-color: #fff;
  text-align: center;
}

.v-regstep--install p {
  max-width: 200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.4;
}

.vip-skype--wrap {
  margin: 21px 0 10px;
}

.icon-vip-skype {
  display: inline-block;
  padding: 5px 10px 3px 35px;
  background-image: url(/aimg/rooms/skype-logo-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.v-contact--call {
  margin: 0 0 15px;
  color: #000;
  font-size: 18px;
}

.v-contact-icon--wrap {
  display: flex;
  justify-content: center;
}

.v-messenger-icon {
  width: 25px;
  height: 25px;
  margin: 0 15px 0 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
}

.v-messenger-icon:nth-last-of-type(1) {
  margin: 0;
}

.v-messenger-icon_viber {
  background-image: url(/aimg/rooms/viber-gray.svg);
}

.v-messenger-icon_whatsapp {
  background-image: url(/aimg/rooms/whatsapp-gray.svg);
}

.v-messenger-icon_telegram {
  background-image: url(/aimg/rooms/telegram-gray.svg);
}

.form-nickname {
  padding: 10px 0;
}

.form-nickname--note {
  margin: 0 0 15px;
  color: #000;
  font-size: 17px;
  line-height: 27px;
}

.form-nickname--text-field {
  width: 170px;
  padding: 8px 5px;
  border: 1px solid #d9cca3;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  outline: none;
  background-color: #fff;
  color: #000;
  font-size: 15px;
}

.form-nickname--send-button {
  height: 35px;
  margin-left: -4px;
  padding: 0 8px;
  border: 0;
  border-radius: 0 3px 3px 0;
  outline: none;
  background-color: #e84c22;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 35px;
}

.sk-sidebar-top {
  display: flex;
  grid-area: sidebar-top;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .sk-sidebar-top {
    padding: 20px 0;
  }
}

@media screen and (min-width: 64em) {
  .sk-sidebar-top {
    grid-area: sidebar;
    padding: 20px 0 0;
  }
}

.sk-top-logo {
  width: 130px;
  height: 130px;
  margin: 0 0 5px;
  background-image: url(/nimg/sk_logo.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 130px;
}

@media screen and (min-width: 48em) {
  .sk-top-logo {
    width: 160px;
    margin: 0 0 20px;
    background-size: 157px;
  }
}

.sk-top-sublogo {
  width: 130px;
  height: 43px;
  margin: 0 0 10px;
  background-image: url(/nimg/sharkscope.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 130px;
}

@media screen and (min-width: 48em) {
  .sk-top-sublogo {
    width: 160px;
    background-size: 157px;
  }
}

.about-sk {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 310px;
  height: 20px;
  margin: 0 auto;
}

.about-sk--link {
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.about-sk--link::after {
  margin: 0 5px;
  content: '·';
}

.about-sk--system {
  position: relative;
  border-bottom: 1px dotted #666;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.about-sk--system.active::after {
  z-index: 4;
  position: absolute;
  top: 38px;
  left: 50px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateX(-50%) translateX(-6px);
  background-color: #fff;
  content: "";
}

.sk-system {
  display: none;
  z-index: 3;
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  max-width: 310px;
  padding: 25px 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.sk-system--head {
  margin: 0 0 12px;
  color: #808080;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.sk-system--link {
  margin: 0 0 12px;
  color: #333;
  font-size: 12px;
  line-height: 20px;
}

.sk-system--link a {
  color: #333;
  text-decoration: underline;
}

.sk-system strong {
  display: block;
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.sk-system sup {
  font-weight: 400;
}

.sk-system--note {
  color: #333;
  font-size: 12px;
  line-height: 16px;
}

.sk-system em {
  display: block;
  margin: 16px 0 0;
  color: #333;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
}

.sk-system.show {
  display: block;
}

.sk-sidebar-bottom {
  grid-area: sidebar-bottom;
  width: 100%;
  min-height: 200px;
}

@media screen and (min-width: 64em) {
  .sk-sidebar-bottom {
    grid-area: sidebar;
    grid-row-start: 2;
  }
}

.sk-player-form {
  padding: 30px 0 0;
}

.sk-player-note {
  padding: 0 24px;
  color: #666;
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
  text-align: center;
}

.sk-regbox {
  position: relative;
  margin: 0 0 20px;
  padding: 0 20px;
  border: 1px dashed #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.sk-regbox label {
  width: 80px;
  float: left;
  color: #333;
  font-size: 14px;
  line-height: 26px;
}

.sk-regbox span {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 26px;
}

.sk-regbox fieldset {
  margin: 0 0 10px;
  padding: 5px 0;
}

.sk-regbox fieldset:last-child {
  margin: 0;
}

.sk-regbox p {
  margin: 10px 0 20px;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
}

.sk-regbox--edit {
  display: block;
  position: absolute;
  top: 24px;
  right: 20px;
  width: 22px;
  height: 22px;
  background-image: url(/nimg/sk-nick-edit.svg);
  background-repeat: no-repeat;
  background-size: 22px;
}

.sk-regbox--head {
  padding: 25px 0 10px;
  border-bottom: 1px solid #e8e8e8;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.sk-regbox--head a {
  color: #202020;
  text-decoration: underline;
}

.sk-regbox--inner {
  min-width: 0;
  padding: 20px 0;
}

.sk-regbox--button {
  padding: 10px 20px;
  border-radius: 3px;
  background-color: #202020;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.sk-regbox--field {
  width: 100%;
  max-width: 186px;
  padding: 4px 5px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

.regbox-message {
  display: block;
  position: relative;
  margin: 0 0 20px;
  padding: 0 20px 20px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
}

.regbox-message--head {
  margin: 0 0 10px;
  padding: 25px 0 10px;
  border-bottom: 1px solid #e8e8e8;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.regbox-message--close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 20px;
  height: 20px;
  background-image: url(/nimg/delete-item.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
}

.regbox-message p {
  margin: 0;
  color: #616161;
  font-size: 14px;
  line-height: 20px;
}

.regbox-message a {
  color: #202020;
  text-decoration: underline;
}

.sk-tour-head {
  margin: 0 0 12px;
  padding: 20px 0 0;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.sk-tour {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.sk-tour--heading {
  margin: 0 0 10px;
  padding: 10px 0;
  border-bottom: 1px solid #d9d9d9;
  color: #202020;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

@media screen and (min-width: 64em) {
  .sk-tour--heading {
    text-align: center;
  }
}

.sk-line {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 50px 1fr;
}

.sk-line--buyin {
  color: #649242;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.sk-line--name {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

.sk-line--time {
  grid-column: 2;
  color: #808080;
  font-size: 14px;
  line-height: 20px;
}

.sk-main {
  display: flex;
  grid-area: main;
  flex-direction: column;
  width: 100%;
}

.sk-main--head {
  width: 100%;
  padding: 15px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .sk-main--head {
    padding: 20px;
  }
}

.sk-main--filter {
  width: 100%;
  padding: 10px 15px;
  background-color: #f2f2f2;
}

.sk-main--wrap {
  display: flex;
  flex-direction: column;
}

.sk-main--inner {
  padding: 0 0 20px;
  background-color: #fff;
}

.sk-main--bottom {
  padding: 0 0 20px;
  background-color: #fff;
}

.sunday-kings-grid {
  display: grid;
  grid-template-areas: "sidebar-top" "main" "sidebar-bottom";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: start;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 0 0 30px;
}

@media screen and (min-width: 48em) {
  .sunday-kings-grid {
    padding: 0 15px 40px;
  }
}

@media screen and (min-width: 64em) {
  .sunday-kings-grid {
    grid-gap: 0 40px;
    grid-template-areas: "sidebar main" ". main";
    grid-template-columns: 310px 1fr;
    grid-template-rows: 245px 1fr;
    padding: 35px 15px 40px;
  }
}

.sk-pager {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}

.sk-pager li {
  margin: 0;
}

.sk-pager--link {
  display: flex;
  min-height: 45px;
  padding: 14px 15px 0;
  background-color: #f4f4f4;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .sk-pager--link {
    padding: 14px 20px 0;
    font-size: 17px;
  }
}

.active .sk-pager--link {
  background-color: #fff;
}

.title-sk {
  width: 100%;
  margin: 16px 0 0;
  padding: 20px 0 0;
}

@media screen and (min-width: 48em) {
  .title-sk {
    margin: 0;
    padding: 0;
    border: 0;
  }
}

.title-sk--heading {
  margin: 0 0 12px;
  padding: 20px 0 0 55px;
  color: #202020;
  font-family: "Noto Serif", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  .title-sk--heading {
    font-size: 15px;
  }
}

.title-sk--inner {
  display: flex;
  flex-direction: column;
  margin: 0 0 7px;
  padding: 0 15px;
}

@media screen and (min-width: 48em) {
  .title-sk--inner {
    padding: 0 20px;
  }
}

.info-sk--grid {
  grid-gap: 0 5px;
  display: grid;
  grid-template-columns: 30px 1fr 50px 50px 50px;
  border-bottom: 1px solid #e0e0e0;
  line-height: 28px;
}

@media screen and (min-width: 48em) {
  .info-sk--grid {
    grid-template-columns: 30px 1fr 50px 50px 50px 90px;
    padding: 4px 0;
  }
}

.info-sk--stats {
  display: none;
  padding: 15px 0 10px;
  border-bottom: 1px solid #e0e0e0;
  line-height: 16px;
}

.info-sk--drop {
  grid-column: 1;
  grid-row: 1;
  width: 30px;
  background-image: url(/nimg/diary-drop.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}

.active .info-sk--drop {
  transform: rotate(180deg);
}

.info-sk--nick {
  grid-column: 2 / 6;
  grid-row: 1;
  color: #666;
  font-size: 15px;
  line-height: 28px;
}

@media screen and (min-width: 48em) {
  .info-sk--nick {
    grid-column: 2;
  }
}

.info-sk--result {
  display: flex;
  grid-row: 2;
  justify-content: flex-end;
}

@media screen and (min-width: 48em) {
  .info-sk--result {
    grid-row: 1;
  }
}

.info-sk--crown {
  width: 22px;
  height: 26px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
}

.info-sk--crown_gold {
  background-image: url(/nimg/crown-sk2-gold.svg);
}

.info-sk--crown_silver {
  background-image: url(/nimg/crown-sk2-silver.svg);
}

.info-sk--crown_bronze {
  background-image: url(/nimg/crown-sk2-bronze.svg);
}

.info-sk--num {
  display: flex;
  margin: 0 7px 0 0;
  color: #666;
  font-size: 15px;
}

.info-sk--score {
  display: flex;
  grid-column: 1 / 3;
  grid-row: 2;
  margin: 0 0 0 35px;
  color: #666;
  font-size: 15px;
}

@media screen and (min-width: 48em) {
  .info-sk--score {
    grid-column: -2;
    grid-row: 1;
    margin: 0;
    padding: 0 0 0 30px;
  }
}

.info-sk-txt {
  margin: 0 0 5px 35px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.info-sk-txt span {
  font-weight: 400;
}

.info-sk-txt a {
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}

.page-error {
  -webkit-font-smoothing: initial;
  display: flex;
  width: 100%;
  max-width: 1306px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.page-error h1 {
  margin: 0 0 10px;
  color: #a00503;
  font-family: Arial, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
}

@media screen and (min-width: 48em) {
  .page-error h1 {
    font-size: 132px;
    line-height: 120px;
  }
}

.page-error p {
  margin: 0 0 18px;
  color: #333;
  font-size: 14px;
  line-height: 18px;
}

.page-error a {
  color: #a00503;
  font-size: 20px;
  line-height: 1;
  text-decoration: underline;
}

.page-error-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

@media screen and (min-width: 48em) {
  .page-error-wrap {
    flex-direction: row;
  }
}

.page-error-image {
  width: 100%;
  max-width: 225px;
  margin: 0 0 30px;
}

@media screen and (min-width: 48em) {
  .page-error-image {
    max-width: 450px;
    margin: 0 30px 0 0;
  }
}

.page-error-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}

.page-error-note {
  color: #a00503;
  font-size: 14px;
  line-height: 18px;
}

.gtplus-apps-wrap {
  --gtpa-bg-color: var(--custom-gtpa-bg-color, #fff);
  --spg-head-color: var(--text-1-color, #000);
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 0 60px !important;
  background-color: var(--gtpa-bg-color);
}

[theme='dark'] .gtplus-apps-wrap {
  --custom-gtpa-bg-color: #313131;
}

.gtplus-apps-wrap .widget-tgm-wrap {
  max-width: 1306px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .gtplus-apps-wrap .widget-tgm-wrap {
    padding: 0 30px;
  }
}

.vip-play {
  width: 100%;
  max-width: 1306px;
  margin: 0 0 56px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .vip-play {
    margin: 0 0 60px;
    padding: 0 30px;
  }
}

.vip-play--head {
  --wpl-head-color: var(--text-1-color, #000);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .vip-play--head {
    margin: 0 0 32px;
  }
}

.vip-play--heading {
  margin: 0;
  color: var(--wpl-head-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vip-play--heading {
    font-size: 30px;
    line-height: 35px;
  }
}

.vip-play--control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 76px;
  height: 28px;
  margin: 0 0 0 auto;
}

.vip-play--button {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.vip-play--button svg {
  --i-color1: #44d487;
  --i-color2: #fff;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.vip-play--button_disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.vip-play--button_disabled svg {
  --i-color1: #d3d3d3;
}

[theme='dark'] .vip-play--button_disabled svg {
  --i-color1: #757575;
}

.vip-hot {
  --vph-bg-color: var(--layer-3-color, #f4f4f4);
  --vph-color: var(--text-1-color, #000);
  --vph-line-color: var(--line-1-color, #e3e3e3);
  --vph-badge-bg-color: var(--layer-4-color, #fff);
  --vph-badge-color: var(--text-1-color, #636568);
  --vph-review-color: var(--text-1-color, #000);
  display: flex;
  justify-content: center;
  width: 100%;
}

.vip-hot--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.vip-hot--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.vip-hot--item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--vph-bg-color);
  transition-property: transform;
}

@media screen and (min-width: 48em) {
  .vip-hot--item {
    padding: 32px;
  }
}

.vip-hot--wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.vip-hot--grid {
  gap: 0 16px;
  display: grid;
  grid-template-columns: 64px 1fr;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .vip-hot--grid {
    gap: 0 24px;
  }
}

.vip-hot--logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-color: #fff;
}

.vip-hot--logo img {
  width: 64px;
  height: 64px;
}

.vip-hot--progs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--vph-line-color);
}

.vip-hot--title {
  margin: 0 0 8px;
  color: var(--vph-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.vip-hot--badge {
  display: flex;
  min-height: 22px;
}

.vip-hot--badge span {
  margin: 0 10px 0 0;
  padding: 0 10px;
  border-radius: 6px;
  background-color: var(--vph-badge-bg-color);
  color: var(--vph-badge-color);
  font-size: 10px;
  line-height: 22px;
  text-transform: uppercase;
}

.vip-hot--list {
  width: 100%;
  margin: 0 0 auto;
  padding: 26px 0;
}

.vip-hot--list li {
  display: flex;
  color: var(--vph-color);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .vip-hot--list li {
    font-size: 16px;
  }
}

.vip-hot--list li:not(:last-child) {
  margin: 0 0 12px;
}

.vip-hot--list li::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 16px 0 0;
  transform: translateY(2px);
  border-radius: 50%;
  background-color: #44d587;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.vip-hot--rake {
  min-height: 32px;
  padding: 0 0 8px;
  color: var(--vph-color);
  font-size: 16px;
  line-height: 24px;
}

.vip-hot--stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
  padding: 20px 0;
  border-top: 1px solid var(--vph-line-color);
  border-bottom: 1px solid var(--vph-line-color);
}

.vip-hot--mark {
  color: var(--vph-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

.vip-hot--rating {
  display: flex;
  align-items: center;
  height: 16px;
  margin: 0;
}

.hot-star {
  width: 14px;
  height: 14px;
  margin: 0;
  background-image: url(/nimg/hot-star.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.hot-star:not(:last-child) {
  margin: 0 4px 0 0;
}

.hot-star_gray {
  background-image: url(/nimg/hot-star-gray.svg);
}

.hot-star_half {
  background-image: url(/nimg/hot-star-half.svg);
}

.vip-hot--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  background-color: transparent;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.vip-hot--link svg {
  --i-color1: #e51e25;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}

.vip-hot--review {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 14px;
  color: var(--vph-review-color);
  font-size: 16px;
  line-height: 20px;
}

.vip-hot--review svg {
  --i-color1: var(--vph-review-color);
}

.vipplus-contact {
  z-index: 3;
  position: relative;
}

.vipplus-contact--drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.vipplus-contact--drop_active .vipplus-contact--arrow {
  transform: rotate(180deg);
}

.vipplus-contact--drop svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}

.vipplus-contact--inner {
  display: flex;
  margin: 0 auto;
}

.vipplus-contact--quest {
  --i-color1: #fff;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 22px;
}

.vipplus-contact--arrow {
  --i-color1: #e51e25;
  width: 22px;
  height: 22px;
}

.vipplus-contact--options {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px 0 0;
}

.vipplus-contact--options_show {
  display: flex;
}

.vipplus-contact--head {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--vph-line-color);
}

.vipplus-contact--heading {
  color: #5cba7d;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
}

.vipplus-contact--heading strong {
  color: #e51e25;
}

.vipplus-contact--subheading {
  color: #000;
  font-size: 16px;
  font-style: italic;
  line-height: 16px;
}

[theme='dark'] .vipplus-contact--subheading {
  color: #fff;
}

.vipplus-contact--link {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
}

[theme='dark'] .vipplus-contact--link {
  color: #fff;
}

.vipplus-contact--link:not(:last-child) {
  margin: 0 0 16px;
}

.vipplus-contact--link svg {
  --i-color1: var(--gtl-contact-color);
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
}

.gtplus-slogan {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1306px;
  margin: 56px 0;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .gtplus-slogan {
    margin: 60px 0;
    padding: 0 30px;
  }
}

.gtplus-slogan--inner {
  --gtpa-opacity-bg-image: var(--custom-gtpl-opacity-bg-image, .04);
  --gtpa-color: var(--text-1-color, #000);
  position: relative;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: inset 0 0 0 10px rgba(68, 212, 135, .15);
}

[theme='dark'] .gtplus-slogan--inner {
  --custom-gtpa-opacity-bg-image: .02;
}

.gtplus-slogan--inner::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/nimg/pattern-welcome.svg);
  background-size: 370px;
  content: '';
  opacity: var(--gtpa-opacity-bg-image);
}

.gtplus-slogan--grid {
  gap: 16px 0;
  display: grid;
  z-index: 1;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 36px 32px 90px;
  background-image: url(/nimg/img-mobile.svg);
  background-position: right 32px bottom 32px;
  background-repeat: no-repeat;
  background-size: 160px;
}

@media screen and (min-width: 64em) {
  .gtplus-slogan--grid {
    gap: 0 32px;
    grid-template-columns: 370px 1fr;
    padding: 64px;
    background-position: left 64px bottom 64px;
    background-size: 244px;
  }
}

.gtplus-slogan--head {
  min-height: 120px;
  padding: 0 0 24px;
  background-image: url(/nimg/img-chip1.svg), url(/nimg/img-chip2.svg);
  background-position: right bottom, right top;
  background-repeat: no-repeat;
  background-size: 64px, 52px;
}

@media screen and (min-width: 64em) {
  .gtplus-slogan--head {
    padding: 0 0 150px 120px;
    background-position: -16px 0, right bottom;
    background-size: 120px, 94px;
    font-size: 36px;
    line-height: 46px;
  }
}

.gtplus-slogan--heading {
  max-width: 300px;
  color: var(--gtpa-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
}

@media screen and (min-width: 64em) {
  .gtplus-slogan--heading {
    font-size: 36px;
    line-height: 46px;
  }
}

.gtplus-slogan--text p {
  margin: 0 0 24px;
  color: var(--gtpa-color);
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 64em) {
  .gtplus-slogan--text p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 24px;
  }
}

.header-500--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 270px;
  padding: 30px 15px 0;
  background-image: url(/nimg/header-500.jpg);
  background-position: 20% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .header-500--inner {
    height: 358px;
    background-position: 50%;
  }
}

.header-500--logo {
  width: 110px;
  height: 110px;
  background-image: url(/nimg/logo-gt-plus.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 110px;
}

@media screen and (min-width: 48em) {
  .header-500--logo {
    width: 148px;
    height: 148px;
    background-size: 148px;
  }
}

.header-500--heading {
  max-width: 420px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .header-500--heading {
    margin: 0 0 28px;
    font-size: 30px;
  }
}

.header-500--cta {
  padding: 12px 17px 14px;
  border-radius: 5px;
  background-color: #ff1200;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 48em) {
  .header-500--cta {
    padding: 14px 17px 16px;
    font-size: 20px;
  }
}

.intro-500 {
  min-height: 500px;
  padding: 15px;
  background-color: #efefef;
}

@media screen and (min-width: 48em) {
  .intro-500 {
    padding: 30px 15px 40px;
  }
}

.intro-500--grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1236px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .intro-500--grid {
    grid-gap: 20px;
    margin: 0 auto 20px;
  }
}

@media screen and (min-width: 64em) {
  .intro-500--grid {
    grid-template-columns: repeat(3, minmax(290px, 1fr));
  }
}

.intro-500--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0 15px;
  background-color: #fff;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .intro-500--item {
    padding: 30px 0 40px;
  }
}

@media screen and (min-width: 64em) {
  .intro-500--item {
    max-width: 400px;
  }
}

.intro-500--icon {
  width: 60px;
  height: 50px;
  margin: 0 0 15px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60px;
}

@media screen and (min-width: 48em) {
  .intro-500--icon {
    width: 85px;
    height: 70px;
    background-size: 85px;
  }
}

.intro-500--icon_i1 {
  background-image: url(/nimg/v500-1.png);
}

.intro-500--icon_i2 {
  background-image: url(/nimg/v500-2.png);
}

.intro-500--icon_i3 {
  background-image: url(/nimg/v500-3.png);
}

.intro-500--icon_i4 {
  background-image: url(/nimg/v500-4.png);
}

.intro-500--heading {
  margin: 0 0 10px;
  padding: 0 15px;
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .intro-500--heading {
    font-size: 24px;
  }
}

@media screen and (min-width: 64em) {
  .intro-500--heading {
    max-width: 350px;
  }
}

.intro-500--text {
  padding: 0 15px;
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (min-width: 48em) {
  .intro-500--text {
    font-size: 18px;
  }
}

.intro-500--text a {
  color: #333;
  text-decoration: underline;
}

.intro-500--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 0 20px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .intro-500--wrap {
    margin: 0 auto 20px;
  }
}

@media screen and (min-width: 64em) {
  .intro-500--wrap {
    flex-direction: row;
    justify-content: space-around;
    padding: 20px 15px;
  }
}

.video-v500-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 640px;
}

.video-v500 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
}

.video-v500 iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-v500--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-v500--link::before {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  content: '';
}

.video-v500--button {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .video-v500--button {
    width: 106px;
    height: 106px;
  }
}

.review-500 {
  padding: 0 15px;
  background-color: #efefef;
}

.review-500--inner {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 0 5px;
}

@media screen and (min-width: 48em) {
  .review-500--inner {
    padding: 40px 0;
    border-top: 1px solid #ccc;
  }
}

.vip-comment--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.review-button--wraper {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.v500-review--bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media screen and (min-width: 48em) {
  .v500-review--bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.v500-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
  margin: 0 auto 8px 0;
}

@media screen and (min-width: 48em) {
  .v500-pager {
    width: auto;
    margin: 0 auto 0 0;
  }
}

.v500-pager--item {
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #333;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.v500-pager--item:not(:last-child) {
  margin: 0 8px 0 0;
}

.v500-pager--item_active {
  border-color: #ccc;
}

.v500-comment-button {
  position: relative;
  margin: 2px 0 2px 25px;
  padding: 2px 0 1px;
  border-bottom: 1px solid #808080;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .v500-comment-button {
    margin: 2px 0 2px auto;
  }
}

.v500-comment-button::before {
  display: flex;
  position: absolute;
  top: 2px;
  left: -25px;
  width: 20px;
  height: 20px;
  background-image: url(/nimg/tick.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.review-popup--wrap {
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 690px;
  padding: 45px 15px 15px;
  transform: translate(-50%, -46px);
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 1, 1, .25);
}

.review-popup--close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  background-color: transparent;
  background-image: url(/aimg/rooms/close.svg);
  background-size: 16px;
}

.review-popup-submit {
  padding: 16px 0 30px;
  color: var(--text-1-color, #000);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .review-popup-submit {
    padding: 0 0 30px;
  }
}

.vip-comment--input {
  width: 100%;
  height: 200px;
  margin: 0 0 10px;
  padding: 5px;
  border: 1px solid #d6d6d6;
  outline: none;
  background-color: #f7f7f7;
  color: #000;
  font-size: 14px;
  line-height: 25px;
  resize: none;
}

.vip-comment--button {
  height: 36px;
  padding: 0 20px;
  border: 1px solid #dadada;
  border-radius: 3px;
  outline: none;
  background-color: #ebebeb;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

.user-review--wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 0 0 10px;
  padding: 15px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .user-review--wrap {
    flex-direction: row;
    padding: 20px 80px 20px 20px;
  }
}

.user-review--wrap::before {
  display: flex;
  z-index: 2;
  position: absolute;
  top: 3px;
  right: 23px;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-family: "PT Serif", serif;
  font-size: 110px;
  line-height: 1;
  content: '”';
}

.user-review-avatar--wrap {
  flex-shrink: 0;
  width: 90px;
  margin: 0 0 5px;
}

@media screen and (min-width: 48em) {
  .user-review-avatar--wrap {
    margin: 0;
  }
}

.user-review-avatar--wrap img {
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
}

.review500-avatar {
  width: 67px;
  height: 67px;
  border: 4px solid #fff;
  border-radius: 50%;
  background-image: url(/aimg/rooms/imguser.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px #d8d8d8;
}

.user-review-content--wrap {
  width: 100%;
}

.user--nickname {
  display: inline-flex;
  margin: 0 8px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

@media screen and (min-width: 48em) {
  .user--nickname {
    font-size: 16px;
  }
}

.user-gtplus--numbers {
  display: inline-flex;
  line-height: 16px;
}

.user-gtplus--regdata {
  display: inline-flex;
  margin: 0 8px 0 0;
  color: #909090;
  font-size: 11px;
}

.user-gtplus--messages {
  display: inline-flex;
  margin: 0 8px 0 0;
  color: #909090;
  font-size: 11px;
  line-height: 16px;
}

.user-gtplus--rating {
  display: inline-flex;
  color: #909090;
  font-size: 11px;
  line-height: 16px;
}

.user-gtplus--rating.positive {
  color: #529410;
  font-weight: 500;
}

.user-gtplus--rating.negative {
  color: #e51e25;
  font-weight: 500;
}

.gtplus-author-icon {
  width: 16px;
  height: 16px;
  margin: 0 2px 0 0;
  background-repeat: no-repeat;
}

.gtplus-author-icon_messages {
  background-image: url(/nimg/theme-reader-icon.svg);
  background-position: 50%;
  background-size: 16px;
}

.gtplus-author-icon_rating {
  background-image: url(/nimg/theme-rate-icon.svg);
  background-position: 50% 0;
  background-size: 13px;
}

.user--review {
  color: #4c4c4c;
  font-size: 14px;
  line-height: 25px;
}

@media screen and (min-width: 48em) {
  .user--review {
    font-size: 16px;
  }
}

.v500-edit {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.v500-edit--button {
  margin: 0 0 0 10px;
  color: #2e7d32;
  font-size: 14px;
  text-decoration: underline;
  white-space: nowrap;
}

.v500-edit--button_delete {
  color: #e51e25;
}

.user-review-pager--wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 20px 0 0;
}

.review-pager--prev {
  width: 20px;
  height: 20px;
  margin: 0 20px 0 0;
  background-image: url(/aimg/rooms/menu-left.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

.review-pager--next {
  width: 20px;
  height: 20px;
  margin: 0 0 0 20px;
  background-image: url(/aimg/rooms/menu-right.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

.review--page {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #d6d6d6;
  cursor: pointer;
}

.review--page.active {
  background-color: #777;
}

.room-plus-wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 15px 24px 0;
}

@media screen and (min-width: 48em) {
  .room-plus-wrap {
    padding: 40px 30px;
  }
}

.room-plus {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 0 20px;
  padding: 10px 15px 30px;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .room-plus {
    margin: 0 0 60px;
  }
}

.room-plus--logo {
  width: 250px;
  height: 100px;
  margin: 0 0 10px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.room-plus--grid {
  grid-gap: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 970px;
  margin: 0 0 20px;
  padding: 30px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 48em) {
  .room-plus--grid {
    grid-gap: 0 15px;
    grid-template-columns: minmax(200px, 250px) minmax(200px, 368px) minmax(200px, 292px);
    justify-items: start;
  }
}

@media screen and (min-width: 64em) {
  .room-plus--grid {
    grid-gap: 0 30px;
  }
}

.room-plus--screen {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 250px;
}

.room-plus--screen a:not(:first-child) {
  display: none;
}

.room-plus--screen img {
  border-radius: 10px;
}

.room-plus--list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 292px;
}

@media screen and (min-width: 48em) {
  .room-plus--list {
    max-width: initial;
  }
}

.room-plus--mark {
  margin: 23px 0 8px;
  color: #666;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.room-plus--game {
  margin: 0;
}

.room-plus--game li {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
  line-height: 20px;
}

.plus-bonus {
  width: 100%;
  max-width: 292px;
}

.plus-bonus--mark {
  margin: 0 0 8px;
  color: #e50000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.plus-bonus--inner {
  width: 100%;
  padding: 26px 10px 6px 18px;
  background-color: #f2f2f2;
}

.plus-bonus--list {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 35px;
}

.plus-bonus--list::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

.plus-bonus--list_gift::before {
  background-image: url(/aimg/rooms/icon-plus-gift.svg);
  background-size: 20px;
}

.plus-bonus--list_manager::before {
  background-image: url(/aimg/rooms/icon-plus-manager.svg);
  background-size: 16px;
}

.plus-bonus--list_star::before {
  background-image: url(/aimg/rooms/icon-plus-star.svg);
  background-size: 22px;
}

.plus-bonus--list li {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
  line-height: 20px;
}

.room-plus--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 970px;
}

.room-plus-reg {
  width: 100%;
  margin: 30px 0 0;
  border-radius: 10px;
  background-color: #f2f2f2;
}

.room-plus-reg .v-regsteps--wrap {
  margin: 0;
}

.room-plus--cta {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.av-room--offer-list {
  margin: 0;
}

.av-room--offer-list li {
  margin-bottom: 8px;
  line-height: 20px;
}

.av-room--offer-list li span {
  color: #333;
  font-size: 16px;
}

.icon--country-wrap {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  font-size: 16px;
  line-height: 20px;
}

.icon--country-wrap span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 4px;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
}

.flag--usa {
  background-image: url(/aimg/rooms/usa.svg);
}

.flag--italy {
  background-image: url(/aimg/rooms/italy.svg);
}

.flag--china {
  background-image: url(/aimg/rooms/china.svg);
}

.flag--canada {
  background-image: url(/aimg/rooms/canada.svg);
}

.flag--uae {
  background-image: url(/aimg/rooms/uae.svg);
}

.flag--brazil {
  background-image: url(/aimg/rooms/brazil.svg);
}

.flag--australia {
  background-image: url(/aimg/rooms/australia.svg);
}

.flag--india {
  background-image: url(/aimg/rooms/india.svg);
}

.widget-telegram {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 0 20px;
  padding: 25px 15px;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .widget-telegram {
    margin: 0 0 60px;
  }
}

.widget-telegram--grid {
  grid-gap: 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 970px;
}

@media screen and (min-width: 64em) {
  .widget-telegram--grid {
    grid-gap: 0 10px;
    grid-template-columns: 240px 1fr 200px;
    align-items: center;
  }
}

.widget-telegram--heading {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 240px;
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.widget-telegram--heading::before {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 15px 0 0;
  background-image: url(/aimg/rooms/widget-telegram-logo.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  content: '';
}

.widget-telegram--inner {
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: 100%;
  max-width: 390px;
}

.widget-telegram--info {
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .widget-telegram--info {
    text-align: left;
  }
}

.widget-telegram--info_light {
  font-weight: 400;
}

.widget-telegram--button {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  background-color: #019bd4;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.av-room-asian--wrap {
  position: relative;
  width: 300px;
  min-height: 380px;
  margin: 0 28px 57px;
  padding: 140px 30px 30px;
  background-color: #fff;
  background-position: 50% 20px;
  background-repeat: no-repeat;
  background-size: 116px;
  text-decoration: none;
}

.av-room-asian--wrap h3 {
  font-size: 22px;
  font-weight: 700;
}

.av-room-asian--offer-wrap {
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid #d0d0d0;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.v-label--network {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  text-align: center;
}

.v-label--network span {
  display: inline-block;
  padding: 2px 10px;
  background-color: #ccc;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.vip-hotplay {
  padding: 55px 0 60px;
  background-color: #fff;
}

.vip-hotplay--heading {
  width: 100%;
  max-width: 798px;
  margin: 0 auto;
  padding: 0 15px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vip-hotplay--heading {
    font-size: 30px;
  }
}

.vip-hotplay p {
  width: 100%;
  max-width: 798px;
  margin: 0 auto 20px;
  padding: 0 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vip-hotplay p {
    font-size: 18px;
  }
}

.vip-hotplay--button {
  display: none;
  width: 390px;
  height: 52px;
  margin: 0 auto;
  border: 2px solid #e51e25;
  border-radius: 5px;
  background-image: linear-gradient(180deg, #ffe796, #ffcf06);
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .vip-hotplay--button {
    display: block;
  }
}

.return-link {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
  padding: 0 15px;
}

.return-link a {
  padding: 0 0 0 35px;
  background-image: url(/aimg/rooms/icon-arrow-back.svg);
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #808080;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.vip-hotlist {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px 0 0;
}

@media screen and (min-width: 48em) {
  .vip-hotlist {
    padding: 23px 0 60px;
  }
}

.vip-hotlist--button-next,
.vip-hotlist--button-prev {
  display: block;
  z-index: 10;
  position: absolute;
  top: 130px;
  width: 28px;
  height: 44px;
  margin-top: -22px;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
  cursor: pointer;
}

.vip-hotlist--button-next.disabled,
.vip-hotlist--button-prev.disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.vip-hotlist--button-prev {
  right: auto;
  left: 4px;
  background-image: url(/nimg/vip-hot-prev.svg);
}

.vip-hotlist--button-next {
  right: 4px;
  left: auto;
  background-image: url(/nimg/vip-hot-next.svg);
}

.vip-hotlist--inner {
  position: relative;
  width: 100%;
  max-width: 1088px;
  padding: 0 36px;
}

.vip-hotlist--container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.vip-hotlist--row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.vip-hotlist--item {
  box-sizing: border-box;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px 0 10px;
  transition-property: transform;
}

.vip-hotlist--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  text-align: center;
}

.vip-hotlist--logo {
  width: 200px;
  height: 200px;
  margin: 0 0 16px;
}

.vip-hotlist--title {
  margin: 0 0 6px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.vip-hotlist--limit {
  max-width: 230px;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.vip-connect {
  display: flex;
  flex-direction: column;
}

.form500-pattern {
  padding: 40px 24px;
}

@media screen and (min-width: 48em) {
  .form500-pattern {
    padding: 40px 30px;
  }
}

.vip-fs-outer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 24px;
}

@media screen and (min-width: 48em) {
  .vip-fs-outer {
    padding: 40px 30px;
  }
}

.vip-fs {
  gap: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 32px 24px;
  border: 4px solid #44d587;
  border-radius: 10px;
  background-color: #1f2128;
}

@media screen and (min-width: 64em) {
  .vip-fs {
    gap: 0 20px;
    grid-template-columns: 1fr 1fr;
    padding: 54px 64px;
  }
}

.vip-fs--slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .vip-fs--slogan {
    flex-direction: row;
    padding: 0 20px 0 0;
  }
}

.vip-fs--logo {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .vip-fs--logo {
    margin: 0 32px 0 0;
  }
}

.vip-fs--logo svg {
  width: 100px;
  height: 96px;
}

.vip-fs--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .vip-fs--wrap {
    align-items: flex-start;
  }
}

.vip-fs--heading {
  color: #44d487;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .vip-fs--heading {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
  }
}

.vip-fs--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background-color: #44d587;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.vip-fs--chat:hover {
  background-color: #25a25f;
}

.vip-fs--chat svg {
  width: 24px;
  height: 24px;
}

.vip-fs--contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 40em) {
  .vip-fs--contact {
    flex-wrap: nowrap;
  }
}

.vip-fs--contact_top {
  gap: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #303641;
}

@media screen and (min-width: 40em) {
  .vip-fs--contact_top {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vip-fs-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e51e25;
  border-radius: 10px;
}

.vip-fs-button:hover {
  --i-color1: #fff;
  background-color: #e51e25;
}

.vip-fs-button svg {
  width: 24px;
  height: 24px;
}

.vip-fs-button_double {
  --i-color1: #fff;
  border: 0;
  background-color: #e51e25;
}

@media screen and (min-width: 40em) {
  .vip-fs-button_double {
    grid-column: span 2;
  }
}

.vip-fs-button_double:hover {
  --i-color1: #fff;
  background-color: #b9253b;
}

.vip-fs-button_mobile {
  --i-color1: #fff;
  grid-column: span 2;
  border: 0;
  background-color: #e51e25;
}

.vip-fs-button_mobile:hover {
  --i-color1: #fff;
  background-color: #b9253b;
}

.vip-fs-button_discord_active {
  --i-color1: #fff;
  background-color: #e51e25;
}

.fs-tr-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .fs-tr-wrap {
    width: auto;
  }
}

.fs-tr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  border-radius: 10px;
  color: #e51e25;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.fs-tr-btn_mob {
  margin: 16px 0 0;
}

@media screen and (min-width: 40em) {
  .fs-tr-btn_mob {
    margin: 0;
  }
}

.fs-tr-btn:hover {
  --i-color1: #b9253b;
  color: #b9253b;
}

.fs-tr-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 16px 0 0;
}

.fs-tr-sep {
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 32px;
  background-color: #303641;
}

.fs-tr-sep_mob {
  display: none;
}

@media screen and (min-width: 40em) {
  .fs-tr-sep_mob {
    display: block;
  }
}

.vip-discord-wrap {
  position: relative;
}

.vip-discord {
  display: none;
  z-index: 1;
  position: absolute;
  top: 48px;
  right: 0;
  width: 248px;
  margin: 0;
  padding: 24px 16px;
  border-radius: 10px;
  background-color: #fffbf0;
  box-shadow: 0 0 16px rgba(0, 0, 0, .15);
}

.vip-discord_show {
  display: block;
}

.vip-discord--item {
  display: flex;
  color: #616161;
  font-size: 14px;
  line-height: 18px;
}

.vip-discord--item:not(:last-child) {
  margin: 0 0 18px;
}

.vip-discord--item::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 1px solid rgba(68, 213, 135, .3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%2344D587' d='M11 3.906L9.11 2 4.638 6.429l-1.74-1.74L1 6.587l3.63 3.63L11 3.907z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

.vip-discord--item a {
  color: #e51e25;
  font-weight: 700;
  text-decoration: none;
}

.vip-discord--item a:hover {
  color: #b9253b;
}

.vip-discord--item strong {
  color: #202020;
}

.reg-wrap {
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 10px 15px 50px;
}

@media screen and (min-width: 48em) {
  .reg-wrap {
    padding: 30px 15px 50px;
  }
}

.reg-wrap .form-error {
  width: 100%;
  color: #cd0606;
  font-size: 14px;
}

.reg-wrap .form-valid {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 32px;
  background-image: url(/nimg/tick-green.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.reg-wrap .has-success .form-valid {
  display: block;
}

.reg-wrap .focused .form-valid {
  display: none;
}

.reg-wrap form {
  width: 100%;
}

.reg-wrap--card {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .reg-wrap--card {
    padding: 40px 15px;
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(0, 1, 1, .1);
  }
}

.r-box {
  margin: 0 0 20px;
}

.r-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
}

.r-row_line {
  flex-direction: row;
}

@media screen and (min-width: 48em) {
  .r-row_wrap {
    flex-direction: row;
  }
}

.r-row-bottom {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 20px 0 0;
  text-align: center;
}

.r-mark {
  margin: 0 0 4px;
  color: #212121;
  font-size: 14px;
  line-height: 17px;
}

.r-mark_radio {
  line-height: 20px;
}

.r-mark_note {
  color: #757575;
  font-style: italic;
}

.r-required {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
}

.r-default {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
}

@media screen and (min-width: 48em) {
  .r-default_double {
    flex-direction: row;
  }
}

.r-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  align-self: start;
  width: 100%;
  max-width: 420px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #202020;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.r-field::-moz-placeholder {
  color: #757575;
}

.r-field::placeholder {
  color: #757575;
}

.r-required .r-field {
  padding: 5px 24px 5px 5px;
}

.r-info {
  width: 100%;
  margin: 0 0 10px;
  color: #212121;
  font-size: 14px;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .r-info {
    font-size: 16px;
  }
}

.r-info a {
  color: #212121;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: underline;
}

@media screen and (min-width: 48em) {
  .r-info a {
    font-size: 16px;
  }
}

.r-info .r-toggle {
  border-bottom: 1px solid rgba(0, 85, 129, .5);
  line-height: 20px;
  text-decoration: none;
}

.r-note {
  width: 100%;
  max-width: 450px;
  margin: 0 0 10px;
  color: #a1a1a1;
  font-size: 14px;
  font-style: italic;
  line-height: 1.25;
}

.r-note a {
  color: #a1a1a1;
  text-decoration: underline;
}

@media screen and (min-width: 48em) {
  .r-row_wrap .r-note {
    margin: 0 0 0 20px;
  }
}

.r-note-error {
  width: 100%;
  max-width: 450px;
  margin: 0 0 10px;
  padding: 3px 0 0;
  color: #ff0009;
  font-size: 14px;
  line-height: 1.25;
}

.r-attention {
  margin: 0 0 20px;
  padding: 10px 15px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
  color: #424242;
  font-size: 14px;
}

.r-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 420px;
  padding: 0 10px 0 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  background-image: url(/nimg/search-angle.svg);
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: #202020;
  font-family: inherit;
  font-size: 14px;
  line-height: 30px;
}

.r-select_double {
  margin: 0 0 10px;
}

@media screen and (min-width: 48em) {
  .r-select_double {
    margin: 0 10px 0 0;
  }
}

.r-radio {
  display: flex;
  padding: 0 4px;
  font-size: 14px;
  line-height: 20px;
}

.r-radio input {
  margin: 4px 4px 0 0;
}

.r-flex {
  display: flex;
}

.r-check-label {
  display: flex;
  padding: 5px 0;
  font-size: 14px;
  line-height: 20px;
}

.r-check-label input {
  margin: 4px 4px 0 0;
}

.reg-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 34px;
  margin: 5px 0;
  padding: 0 20px;
  border: 1px solid #446a03;
  border-radius: 3px;
  background-image: linear-gradient(0deg, #679913 0%, #83c119 50%, #679913 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.reg-button_flat {
  border: 0;
  border-radius: 3px;
  background-color: #000;
  background-image: none;
}

.r-cancel {
  height: 34px;
  margin: 5px 0;
  padding: 0 20px;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  background-color: #efefef;
  color: #424242;
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.r-cancel_right {
  margin: 5px 0 5px 15px;
}

.r-cancel_short {
  padding: 0 10px;
}

@media screen and (min-width: 23.4375em) {
  .r-cancel_short {
    padding: 0 20px;
  }
}

.r-app-button {
  border-bottom: 3px solid rgba(0, 85, 129, .5);
  font-size: 18px;
  line-height: 1.25;
  text-decoration: none;
}

.r-app-button_right {
  margin: 0 0 0 15px;
}

.r-image-wrap {
  height: 210px;
  margin: 0 0 20px;
  padding: 10px 0 0;
}

.r-auth-step {
  margin: 0 0 20px;
  padding: 20px 0 0;
}

.r-auth-list {
  margin: 0 0 20px;
  list-style-position: inside;
}

.r-auth-list li {
  margin: 0 0 10px;
  color: #424242;
  font-size: 14px;
  line-height: 1.25;
}

@media screen and (min-width: 48em) {
  .r-auth-list li {
    font-size: 16px;
  }
}

.r-auth-key {
  color: #212121;
  font-size: 16px;
}

@media screen and (min-width: 48em) {
  .r-auth-key {
    font-size: 18px;
  }
}

.rss-list {
  margin: 0;
}

.rss-list li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 15px;
}

.rss-list li:last-child {
  margin: 0;
}

.rss-list a {
  display: inline-flex;
  color: #212121;
  font-size: 18px;
  line-height: 24px;
  text-decoration: underline;
}

.rss-list a::before {
  width: 24px;
  height: 24px;
  margin: 0 6px 0 0;
  background-image: url(/nimg/rss-feed.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  content: "";
}

.about-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 15px 15px 30px;
}

@media screen and (min-width: 48em) {
  .about-wrap {
    padding: 15px 15px 65px;
  }
}

.about-wrap a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.about-wrap .about-slogan {
  margin: 0;
  transform: translateY(-10px);
  color: #ce3c3c;
}

.about-heading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 30px auto 20px;
}

@media screen and (min-width: 48em) {
  .about-heading {
    margin: 60px auto 20px;
  }
}

.about-heading::after,
.about-heading::before {
  top: 0;
  flex-grow: 1;
  height: 1px;
  background-color: #e5e5e5;
  content: '';
}

.about-heading span {
  padding: 0 15px;
  color: #999;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .about-heading span {
    padding: 0 40px;
    font-size: 30px;
  }
}

.about-intro {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 30px;
  padding: 40px 15px;
  background-color: #fff;
}

@media screen and (min-width: 48em) {
  .about-intro {
    flex-direction: row;
    padding: 40px 40px 40px 0;
  }
}

.about-intro--inner {
  width: 100%;
  margin: 0 0 20px;
}

@media screen and (min-width: 48em) {
  .about-intro--inner {
    max-width: 400px;
    margin: 0;
  }
}

.about-intro--logo {
  max-width: 144px;
  height: 142px;
  margin: 0 auto;
  background-image: url(/mimg/logo_about.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 48em) {
  .about-intro--logo {
    max-width: 248px;
    height: 283px;
  }
}

.about-intro--text {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .about-intro--text {
    max-width: 510px;
    text-align: left;
  }
}

.about-align {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.about-copy {
  color: #8d8d8d;
  font-size: 14px;
  text-align: center;
}

.about-copy a {
  margin: 0 0 0 20px;
  color: #333;
  font-weight: 400;
}

.about-pdf {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}

.about-pdf img {
  margin: 0 5px 0 0;
}

.about-pdf button {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-color: #fff;
  background-image: linear-gradient(180deg, #fff 0%, #eee 100%);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.about-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 730px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 48em) {
  .about-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.about-grid--item {
  width: 100%;
  max-width: 350px;
  margin: 0 5px 10px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.about-grid--head {
  padding: 7px 10px;
  border-bottom: 1px solid #ddd;
  background-color: #ececec;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.about-grid--inner {
  padding: 7px 10px;
}

.about-grid--banner {
  margin: 0 0 5px;
  color: #b40300;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.about-grid--info {
  font-size: 14px;
  line-height: 1.4;
}

.remark-note {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.remark-note_complaint {
  margin: 0 0 10px;
}

.remark-note--inner {
  padding: 20px 15px;
  border: 1px solid #dedede;
  background-color: #fffdf0;
}

.remark-note--wrap {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin: 0 0 10px;
  padding: 0 0 15px;
  border-bottom: 1px solid #e5e5e5;
}

.remark-note--wrap::before {
  position: absolute;
  bottom: -5px;
  left: 160px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: solid #e5e5e5;
  border-width: 1px 0 0 1px;
  background-color: #fffdee;
  content: "";
}

.remark-note--heading {
  color: #616161;
  font-size: 18px;
  font-weight: 700;
}

.remark-note--subheading {
  margin: 0 0 10px;
  color: #000;
  font-size: 18px;
}

.remark-note--list {
  margin: 0;
  list-style: disc;
  list-style-position: inside;
}

.remark-note--item {
  margin: 0 0 5px;
  color: #616161;
  font-size: 14px;
}

.complaint-text {
  width: 100%;
  height: 160px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 23px;
  vertical-align: bottom;
  overflow-wrap: break-word;
  resize: vertical;
}

.gtp-page {
  flex-grow: 1;
  padding: 40px 0 0;
  background-color: #fbfbfb;
  background-image: url(/aimg/rooms/std-background-white.png);
  background-repeat: repeat;
}

.gtp-page--header {
  width: 100%;
  max-width: 1276px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.gtp-page--content {
  position: relative;
  width: 100%;
  max-width: 1246px;
  margin: 20px auto 0;
  padding: 25px 15px 40px;
  border: 1px solid #eee;
  background-color: #fff;
}

@media screen and (min-width: 64em) {
  .gtp-page--content {
    padding: 25px 30px 40px;
  }
}

.gtp-page--wrap {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 40px 15px;
  border: 1px solid #eee;
  background-color: #fff;
}

.gtp-back {
  margin: 0 0 30px;
}

.gtp-back a {
  display: inline-block;
  padding: 2px 0 2px 35px;
  background-image: url(/aimg/rooms/icon-arrow-back.svg);
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  color: #848484;
  font-size: 16px;
  text-decoration: none;
}

.gtp-back a:hover {
  background-color: transparent;
  color: #a5a5a5;
}

.gtp-line {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  border-bottom: 2px solid #ccc;
}

.gtp-line h1 {
  margin: 0 0 -2px;
  padding: 0 0 10px;
  border-bottom: 2px solid #e75113;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 64em) {
  .gtp-line h1 {
    font-size: 32px;
  }
}

.gtp-line h2 {
  margin: 0 0 -2px;
  padding: 0 0 10px;
  border-bottom: 2px solid #e75113;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 64em) {
  .gtp-line h2 {
    font-size: 24px;
  }
}

.gtp-line_full {
  max-width: initial;
}

.gtp-subheader {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .gtp-subheader {
    font-size: 28px;
  }
}

.gtp-subheader a {
  color: #e74f12;
  text-decoration: none;
}

.gtp-rate {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 476px;
  margin: 0 auto 30px;
  padding: 20px 15px;
  border: 1px solid #f6e7ca;
  background-color: #ffe;
}

@media screen and (min-width: 64em) {
  .gtp-rate {
    margin: 0 auto 50px;
    padding: 40px 15px;
  }
}

.gtp-rate--info {
  display: flex;
  position: relative;
  align-items: center;
  color: #616161;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

@media screen and (min-width: 64em) {
  .gtp-rate--info {
    font-size: 20px;
  }
}

.gtp-rate--info::before {
  width: 50px;
  height: 40px;
  margin: 0 20px 0 0;
  background-image: url(/aimg/rooms/deposit-bonus.png);
  background-position: 50%;
  background-repeat: no-repeat;
  content: '';
}

.gtp-quote {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 15px 35px;
  background-color: #f5f5f5;
}

@media screen and (min-width: 48em) {
  .gtp-quote {
    padding: 20px 35px 35px;
  }
}

.gtp-quote--heading {
  margin: 0 0 24px;
  color: #424242;
  font-size: 17px;
  line-height: 26px;
}

.gtp-quote--list {
  margin: 0 0 0 20px;
  color: #424242;
  font-size: 17px;
  line-height: 26px;
  list-style-type: initial;
}

.gtp-quote--list li {
  margin: 0 0 4px;
}

.gtp-screen {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto 35px;
  padding: 20px 0 0;
}

@media screen and (min-width: 48em) {
  .gtp-screen {
    padding: 40px 0 0;
  }
}

.gtp-screen--inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

@media screen and (min-width: 48em) {
  .gtp-screen--inner {
    padding: 40px 0 60px;
  }
}

.gtp-screen p {
  margin: 0;
  color: #424242;
  font-size: 17px;
  line-height: 26px;
}

.gtp-screen a {
  color: #424242;
  text-decoration: underline;
}

.gtp-card-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: 35px 0 0;
}

.gtp-room {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 285px;
  margin: 0 5px 10px;
  padding: 20px 15px;
  border: 1px solid #eee;
  background-color: #fff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, .05);
}

.gtp-room--label {
  position: absolute;
  top: 0;
  left: 15px;
  padding: 2px 10px;
  background-color: #ccc;
  color: #fff;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
}

.gtp-room--logo {
  display: block;
  height: 70px;
  margin: 0 0 10px;
  background-image: url(/nimg/888l.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 40em) {
  .gtp-room--logo {
    height: 80px;
    margin: 0 0 15px;
    background-size: 241px;
  }
}

.gtp-room--link {
  display: inline-block;
  margin: 0 0 5px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.gtp-room--link::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.gtp-room--bonus {
  min-height: 50px;
}

.gtp-room--bonus p {
  margin: 0 0 10px;
  color: #757575;
  font-size: 16px;
  line-height: 20px;
}

.gtp-product-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.gtp-product {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 285px;
  margin: 0 5px 10px;
  border: 1px solid #eee;
  background-color: #fff;
}

.gtp-product:nth-child(n+4) {
  display: none;
}

@media screen and (min-width: 48em) {
  .gtp-product:nth-child(n+4) {
    display: flex;
  }
}

.gtp-product--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 10px;
}

.gtp-product--image {
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.gtp-product--inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 12px 15px 25px;
  background-color: #fafafa;
}

.gtp-product--link {
  margin: 0 0 5px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.gtp-product--link::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.gtp-product--price {
  margin: 0 0 14px;
  color: #449100;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gtp-product--bonus {
  min-height: 50px;
}

.gtp-product--bonus p {
  margin: 0;
  color: #757575;
  font-size: 16px;
  line-height: 20px;
}

.rs-support--wraper {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.support-allrooms {
  width: 100%;
  max-width: 1244px;
  margin: 24px 0;
  padding: 20px;
  padding-bottom: 15px;
  background-color: #005581;
}

@media screen and (min-width: 40em) {
  .support-allrooms {
    padding: 24px 30px;
  }
}

.support-allrooms h3 {
  margin: 0 0 16px;
  color: #fff;
  text-align: left;
}

.support-allrooms a {
  margin-bottom: 5px;
  color: #fff;
  text-decoration: none;
}

.supp-link {
  display: inline-block;
  padding: 5px 25px 5px 35px;
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  color: #fff;
  font-size: 16px;
}

.supp-link.icon-chat {
  background-image: url(/aimg/rooms/icon-support-chat.svg);
}

.supp-link.icon-telegram {
  background-image: url(/aimg/rooms/icon-support-telegram.svg);
}

.supp-link.icon-skype {
  background-image: url(/aimg/rooms/icon-support-skype.svg);
}

.supp-link.icon-mail {
  background-image: url(/aimg/rooms/icon-support-mail.svg);
}

.content_feed {
  --x-feed-heading-color: var(--w-text-1-color, #000);
  --x-feed-menu-color: var(--w-text-7-color, #a8a8a9);
  --x-feed-menu-icon-color: var(--w-text-7-color, #a8a8a9);
  --x-feed-line-color: var(--w-line-2-color, #dfe1e4);
  --x-feed-meta-color: var(--w-text-7-color, #a8a8a9);
  --x-feed-meta-icon-color: var(--w-text-7-color, #a8a8a9);
  align-items: center;
  padding: 0 24px 56px;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 64em) {
  .content_feed {
    padding: 0 30px 84px;
  }
}

.best-feed-wrap {
  width: 100%;
  max-width: 396px;
  padding: 30px 0 0;
}

@media screen and (min-width: 48em) {
  .best-feed-wrap {
    max-width: 822px;
    padding: 30px 0 38px;
  }
}

@media screen and (min-width: 64em) {
  .best-feed-wrap {
    max-width: 1246px;
  }
}

.feed-head {
  gap: 20px 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 396px;
  margin: 0 0 36px;
  padding: 30px 0 0;
}

@media screen and (min-width: 48em) {
  .feed-head {
    max-width: 822px;
  }
}

@media screen and (min-width: 64em) {
  .feed-head {
    gap: 13px 0;
    max-width: 1246px;
    margin: 0 0 52px;
  }
}

.feed-head--inner {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .feed-head--inner {
    gap: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
}

.feed-head--wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-heading {
  margin: 0;
  color: var(--x-feed-heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

@media screen and (min-width: 48em) {
  .feed-heading {
    font-size: 30px;
    line-height: 42px;
  }
}

.feed-menu-wrap {
  display: flex;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .feed-menu-wrap {
    width: auto;
  }
}

.feed-menu {
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  display: flex;
  position: relative;
  overflow-x: auto;
  border-radius: 100px;
  background-color: var(--layer-5-color, #e7e7e7);
}

.feed-menu::-webkit-scrollbar {
  display: none;
}

.feed-menu--item {
  gap: 0 8px;
  display: flex;
  position: relative;
  align-items: center;
  padding: 8px 20px;
  border-radius: 40px;
  color: var(--text-3-color, #202020);
  font-size: 12px;
  letter-spacing: .32px;
  line-height: 14px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .feed-menu--item {
    font-size: 16px;
    line-height: 24px;
  }
}

.feed-menu--item_active {
  border: 1px solid var(--layer-5-color, #e7e7e7);
  background-color: #fff;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, .05);
  color: #666;
}

.feed-filter {
  gap: 0 16px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .feed-filter {
    gap: 0 24px;
  }
}

@media screen and (min-width: 64em) {
  .feed-filter {
    order: 1;
  }
}

.feed-filter--item {
  transform: translateY(2px);
  color: var(--x-feed-menu-color);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .feed-filter--item {
    transform: translateY(5px);
    font-size: 14px;
  }
}

@media screen and (min-width: 64em) {
  .feed-filter--item {
    transform: none;
    font-size: 14px;
    line-height: 42px;
  }
}

.feed-filter--item_active {
  color: #000;
}

[theme='dark'] .feed-filter--item_active {
  color: #fff;
}

.feed-head--sublink {
  gap: 0 8px;
  display: flex;
  color: var(--text-1-color, #000);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

.feed-grid {
  gap: 32px 30px;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  justify-content: center;
  width: 100%;
  max-width: 396px;
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .feed-grid {
    gap: 80px 30px;
    max-width: 822px;
  }
}

@media screen and (min-width: 64em) {
  .feed-grid {
    max-width: 1246px;
  }
}

.feed-item {
  gap: 16px 0;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.feed-item_small {
  background-color: #eef0f5;
}

.feed-item--image {
  aspect-ratio: 396/225;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.feed-item--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-item--meta {
  --i-color1: var(--x-feed-meta-icon-color);
  gap: 0 16px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  justify-content: flex-end;
  width: 100%;
  height: 47px;
  padding: 0 12px 0 0;
  background-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.feed-item--view {
  gap: 0 8px;
  display: flex;
  align-items: center;
  padding: 15px 0;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.feed-item--view svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.feed-item--comment {
  gap: 0 8px;
  display: flex;
  z-index: 2;
  align-items: center;
  padding: 15px 0;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.feed-item--comment svg {
  --i-color1: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.feed-item--main {
  gap: 4px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  width: 100%;
}

.feed-item--inner {
  gap: 0 16px;
  display: flex;
}

.feed-item--date {
  display: flex;
  align-items: center;
  color: var(--x-feed-meta-color);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.feed-item--label {
  color: #e51e25;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .feed-item--label {
    font-size: 14px;
    line-height: 24px;
  }
}

.feed-item--title {
  color: var(--x-feed-heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (min-width: 48em) {
  .feed-item--title {
    font-size: 20px;
  }
}

.feed-item--title::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.feed-bottom {
  width: 100%;
  max-width: 396px;
  margin: 33px 0 0;
}

@media screen and (min-width: 48em) {
  .feed-bottom {
    max-width: 822px;
    margin: 92px 0 0;
  }
}

@media screen and (min-width: 64em) {
  .feed-bottom {
    max-width: 1246px;
  }
}

.vacancy-wrap {
  --vc-bg-color: var(--layer-2a-color, #fff);
  --vc-header-color: var(--text-2-color, #000);
  --vc-item-color: var(--text-2-color, #000);
  --vc-item-bg-color: var(--layer-3-color, #fff);
  --vc-item-border-color: var(--line-1-color, #e3e3e3);
  --vc-item-button-bg-color: var(--layer-3-color, #f4f4f4);
  --vc-textarea-bg-color: var(--layer-2-color, #fff);
  --vc-textarea-border-color: var(--line-1-color, #e3e3e3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 24px 40px;
  background-color: var(--vc-bg-color);
}

@media screen and (min-width: 64em) {
  .vacancy-wrap {
    padding: 0 30px 64px;
  }
}

.vacancy-head {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1246px;
  padding: 56px 0 36px;
}

@media screen and (min-width: 48em) {
  .vacancy-head {
    padding: 70px 0 56px;
  }
}

.vacancy-heading {
  margin: 0 0 12px;
  color: var(--vc-header-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

@media screen and (min-width: 48em) {
  .vacancy-heading {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 35px;
  }
}

.vacancy-subheading {
  color: var(--vc-header-color);
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .vacancy-subheading {
    font-size: 18px;
    line-height: 24px;
  }
}

.vacancy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0;
}

.vacancy-section {
  width: 100%;
  margin: 0 0 24px;
  padding: 36px 16px;
  border: 1px solid var(--vc-item-border-color);
  border-radius: 10px;
  background-color: var(--vc-item-bg-color);
}

@media screen and (min-width: 48em) {
  .vacancy-section {
    padding: 36px 32px;
  }
}

.vacancy-section_active {
  box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
}

.vacancy-button {
  display: block;
  position: relative;
  width: 100%;
  padding: 4px 0 4px 56px;
  outline: none;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .vacancy-button {
    padding: 4px 0 4px 56px;
    font-size: 20px;
  }
}

.vacancy-button::before {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background-color: var(--vc-item-button-bg-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23C4C4C4' d='M7 0h2v16H7z' /%3E%3Cpath fill='%23aaa' d='M16 7v2H0V7z' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  content: '';
}

.vacancy-button.ui-state-active::before {
  border-color: #e51e25;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 2'%3E%3Cpath fill='%23ec314d' d='M16 0v2H0V0z' /%3E%3C/svg%3E");
}

.vacancy-item {
  display: none;
  padding: 32px 0 0;
  color: var(--vc-item-color);
}

@media screen and (min-width: 48em) {
  .vacancy-item {
    padding: 32px 0 0 56px;
  }
}

.vacancy-wrap_plain .vacancy-item {
  display: block;
}

@media screen and (min-width: 48em) {
  .vacancy-wrap_plain .vacancy-item {
    padding: 32px 0 0;
  }
}

.vacancy-wrap_plain .vacancy-item h2 {
  margin: 0 0 32px;
  color: var(--vc-item-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 48em) {
  .vacancy-wrap_plain .vacancy-item h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.vacancy-wrap_plain .vacancy-item h3 {
  margin: 24px 0 12px;
  color: var(--vc-item-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 48em) {
  .vacancy-wrap_plain .vacancy-item h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

.vacancy-item p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
}

.vacancy-item p a {
  color: var(--vc-item-color);
  text-decoration: underline;
}

.vacancy-item ul {
  margin: 24px 0 16px;
  padding: 8px 0;
}

.vacancy-wrap_plain .vacancy-item ul {
  margin: 12px 0 24px;
  padding: 12px 0;
}

.vacancy-item ul li {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 24px;
}

.vacancy-item ul li::before {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin: 0 12px 0 0;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.24265' y='0.707107' width='5' height='5' rx='0.5' transform='rotate(45 4.24265 0.707107)' stroke='%23000' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px;
  content: '';
}

[theme='dark'] .vacancy-item ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4.24265' y='0.707107' width='5' height='5' rx='0.5' transform='rotate(45 4.24265 0.707107)' stroke='%23fff' /%3E%3C/svg%3E");
}

.vacancy-item ul li a {
  color: var(--vc-item-color);
  font-weight: 700;
  text-decoration: underline;
}

.vacancy-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.vacancy-label {
  margin: 0 0 8px;
  color: var(--vc-item-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.vacancy-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 160px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border: 1px solid var(--vc-textarea-border-color);
  border-radius: 10px;
  background-color: var(--vc-textarea-bg-color);
  color: var(--vc-item-color);
  font-size: 16px;
  line-height: 24px;
  resize: vertical;
}

.vacancy-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0 0 32px;
  padding: 8px 16px;
  border: 1px solid var(--vc-textarea-border-color);
  border-radius: 10px;
  background-color: var(--vc-textarea-bg-color);
  color: var(--vc-item-color);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
}

.vacancy-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 64px;
  border: 0;
  border-radius: 10px;
  background-color: #e51e25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.vacancy-more {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 8px 0 0;
  padding: 11px 30px;
  border: 1px solid #e51e25;
  border-radius: 10px;
  color: #e51e25;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.jobs-wrap {
  padding-top: 8px;
  background-color: var(--layer-1-color, #fff);
}

.jobs-wrap section {
  max-width: 1246px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 64em) {
  .jobs-wrap section {
    padding: 20px 30px 0 30px;
  }
}

.jobs-hero {
  padding-bottom: 60px;
}

.jobs-hero section {
  max-width: 1246px;
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  .jobs-hero__wrap {
    gap: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .jobs-hero__wrap {
    padding: 0;
  }
}

.jobs-hero__content {
  padding: 0 24px;
}

@media screen and (min-width: 64em) {
  .jobs-hero__content {
    padding: 0;
  }
}

.jobs-hero__intro {
  max-width: 340px;
  margin-top: 41px;
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.jobs-hero__title {
  margin-top: 56px;
  color: var(--text-1-color, #292929);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.jobs-hero__description {
  max-width: 434px;
  margin-top: 16px;
  color: var(--text-2-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.jobs-hero__stats {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-top: 42px;
  padding: 0 24px;
}

@media screen and (min-width: 64em) {
  .jobs-hero__stats {
    flex-direction: row;
    margin-top: -70px;
    padding: 0 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .jobs-hero__stats {
    padding: 0;
  }
}

.jobs-hero__stats-item {
  gap: 16px;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 16px;
  background: var(--layer-2-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 64em) {
  .jobs-hero__stats-item {
    padding: 32px;
  }
}

.jobs-hero__icon {
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  width: 60px;
}

@media screen and (min-width: 64em) {
  .jobs-hero__icon {
    width: 80px;
  }
}

.jobs-hero__stats-title {
  color: var(--text-2-color, #292929);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 64em) {
  .jobs-hero__stats-title {
    font-size: 36px;
  }
}

.jobs-hero__stats-subtitle {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

@media screen and (min-width: 64em) {
  .jobs-hero__stats-subtitle {
    font-size: 20px;
  }
}

@media screen and (min-width: 64em) {
  .jobs-hero__img {
    max-width: 677px;
  }
}

section.jobs-vacancy {
  width: 100%;
  max-width: unset;
  background-color: var(--layer-2a-color, #fbfbfb);
}

.jobs-vacancy {
  padding-top: 20px;
}

@media screen and (min-width: 48em) {
  .jobs-vacancy {
    padding: 40px 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .jobs-vacancy {
    padding: 40px 0;
  }
}

.jobs-vacancy__wrap {
  gap: 24px;
  display: flex;
  flex-direction: column;
  max-width: 1246px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 79.375em) {
  .jobs-vacancy__wrap {
    padding: 0;
  }
}

.jobs-vacancy__item {
  gap: 16px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-2-color, #333);
}

@media screen and (min-width: 64em) {
  .jobs-vacancy__item {
    border: 1px solid var(--line-0-color, #f4f4f4);
    border-radius: 20px;
    box-shadow: 0 0 32px 0 rgba(0, 0, 0, .07);
  }
}

.jobs-vacancy__item_cta {
  position: relative;
  align-items: flex-end;
  padding: 32px 32px 32px 100px;
  background-color: var(--layer-4-color, #f1f1f1);
  box-shadow: none;
}

@media screen and (min-width: 48em) {
  .jobs-vacancy__item_cta {
    align-items: flex-start;
    margin-top: 36px;
    padding: 32px 32px 32px 196px;
    border-radius: 20px;
  }
}

@media screen and (min-width: 64em) {
  .jobs-vacancy__item_cta {
    margin: 24px 0 0 0;
  }
}

.jobs-vacancy__item_cta .jobs-vacancy__button_hide {
  display: none;
}

.jobs-vacancy__item_cta.active {
  align-items: flex-start;
  padding: 32px;
}

.jobs-vacancy__item_cta.active .jobs-vacancy__cta-title {
  text-align: left;
}

.jobs-vacancy__item_cta.active .jobs-vacancy__cta-button {
  display: none;
}

.jobs-vacancy__item_cta.active .jobs-vacancy__button_hide {
  display: block;
}

.jobs-vacancy__item_cta.active .jobs-form {
  display: flex;
}

.jobs-vacancy__item_cta.active .jobs-vacancy__image {
  display: none;
}

.jobs-vacancy__image {
  position: absolute;
  bottom: 0;
  left: -39px;
  height: 143px;
}

@media screen and (min-width: 48em) {
  .jobs-vacancy__image {
    left: 0;
    height: 155px;
  }
}

.jobs-vacancy__head {
  max-width: 1246px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 24px;
  color: var(--text-2-color, #292929);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 48em) {
  .jobs-vacancy__head {
    padding: 0;
    font-size: 32px;
  }
}

.jobs-vacancy__wrap {
  margin-top: 24px;
}

.jobs-vacancy__item.active .jobs-vacancy__content-toggle {
  display: block;
}

.jobs-vacancy__item.active .jobs-vacancy__button-arrow {
  transform: rotate(180deg);
}

.jobs-vacancy__item.active .jobs-vacancy__button_show {
  display: none;
}

.jobs-vacancy__notify {
  color: #0daf24;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.jobs-vacancy__header {
  border-radius: 4px 4px 0 0;
}

.jobs-vacancy__title {
  color: var(--text-2-color, #292929);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media screen and (min-width: 64em) {
  .jobs-vacancy__title {
    font-size: 22px;
  }
}

.jobs-vacancy__title span {
  color: #45ae52;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.jobs-vacancy__cta-title {
  color: var(--text-2-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: right;
}

@media screen and (min-width: 64em) {
  .jobs-vacancy__cta-title {
    font-size: 18px;
    text-align: left;
  }
}

.jobs-vacancy__cta-button {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 24px;
  border-radius: 10px;
  background: var(--text-2-color, #292929);
  color: var(--layer-3-color, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.jobs-vacancy__cta-button svg {
  --color-1: var(--layer-3-color, #fff);
  width: 12px;
  height: 7px;
}

.jobs-vacancy__tags {
  gap: 8px;
  display: flex;
  margin-top: 8px;
}

.jobs-vacancy__tag-item {
  padding: 3px 3px 2px 3px;
  border-radius: 2px;
  background: var(--layer-4-color, #f1f1f1);
  color: var(--text-2-color, #292929);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  /* 100% */
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .jobs-vacancy__tag-item {
    padding: 5px 5px 4px 5px;
    font-size: 12px;
  }
}

.jobs-vacancy__content h3 {
  margin-bottom: 8px;
  color: var(--text-2-color, #292929);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.jobs-vacancy__content p {
  margin-bottom: 24px;
  color: var(--text-2-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.jobs-vacancy__content li {
  margin-left: 1.5em;
  list-style: initial;
}

.jobs-vacancy__content img {
  width: 100%;
  max-width: 777px;
}

.jobs-vacancy__content figcaption {
  margin-top: 8px;
  color: #5b5b5b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.jobs-vacancy__content-visible {
  margin-bottom: 24px;
}

.jobs-vacancy__content-toggle {
  display: none;
}

.jobs-vacancy__buttons_wrap {
  gap: 16px;
  display: flex;
}

.jobs-vacancy__button {
  gap: 8px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 6px;
  background: #45ae52;
  cursor: pointer;
}

.jobs-vacancy__button_hide {
  border: 1px solid #c4c4c4;
  background: none;
}

.jobs-vacancy__button_hide span {
  color: var(--text-2-color, #202020);
}

.jobs-vacancy__button_hide svg {
  --color-1: var(--text-2-color, #202020);
}

.jobs-vacancy__button-text {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.jobs-vacancy__button-arrow {
  --color-1: #fff;
  width: 12px;
  height: 7px;
}

.jobs-form {
  gap: 24px;
  display: none;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .jobs-form {
    gap: 16px 32px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 48px;
    border-radius: 8px;
    background: var(--layer-2-color, #fafafa);
  }
}

.jobs-form_visible {
  display: flex;
}

.jobs-form__title {
  width: 100%;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.jobs-form__group {
  gap: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .jobs-form__group_half {
    justify-content: flex-end;
    max-width: calc(50% - 16px);
  }
}

.jobs-form__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.jobs-form input,
.jobs-form textarea {
  padding: 18px 24px;
  border: 1px solid var(--line-0-color, #dfe1e4);
  border-radius: 10px;
  background: var(--layer-3-color, #fff);
  color: var(--text-2-color, #292929);
  resize: vertical;
}

.jobs-form__button {
  gap: 8px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 6px;
  background: #45ae52;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  cursor: pointer;
}

.jobs-form__button svg {
  --color-1: #fff;
  width: 12px;
  height: 7px;
}

.jobs-valuables {
  margin-top: 60px;
  padding: 0 24px;
}

@media screen and (min-width: 48em) {
  .jobs-valuables {
    padding: 0 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .jobs-valuables {
    padding: 0;
  }
}

.jobs-valuables__head {
  color: var(--text-2-color, #292929);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.jobs-valuables__wrap {
  gap: 24px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .jobs-valuables__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.jobs-valuables__item {
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, .07);
}

[theme='dark'] .jobs-valuables__item {
  box-shadow: 0 0 32px 0 rgba(255, 255, 255, .07);
}

@media screen and (min-width: 40em) {
  .jobs-valuables__item {
    display: flex;
  }
}

.jobs-valuables__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.jobs-valuables__title {
  color: var(--text-2-color, #292929);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.jobs-valuables__text {
  margin-top: 8px;
  color: var(--text-3-color, #292929);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.jobs-team {
  margin: 60px 0;
  padding: 0 24px;
}

@media screen and (min-width: 64em) {
  .jobs-team {
    padding: 0 30px;
  }
}

@media screen and (min-width: 79.375em) {
  .jobs-team {
    padding: 0;
  }
}

.jobs-team__head {
  color: var(--text-2-color, #292929);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.jobs-team__slider {
  position: relative;
  margin-top: 24px;
}

.jobs-team__button-wrap {
  display: flex;
  z-index: 5;
  position: absolute;
  top: 50%;
  width: 100%;
}

.jobs-team__button {
  --i-color1: #000;
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 18px);
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
}

[theme='dark'] .jobs-team__button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .jobs-team__button svg {
  --i-color1: #fff;
}

.jobs-team__button_prev {
  left: -18px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.jobs-team__button_next {
  right: -18px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.jobs-team__button_disabled {
  cursor: auto;
  pointer-events: none;
}

.jobs-team__button_disabled svg {
  opacity: .35;
}

.jobs-team__button svg {
  width: 16px;
  height: 12px;
}

.jobs-team__container {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.jobs-team__row {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.jobs-team__item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 614px;
  overflow: hidden;
  transition-property: transform;
}

.jobs-team__item a {
  -webkit-tap-highlight-color: transparent;
}

.jobs-team__image {
  flex-shrink: 0;
}

.jobs-team__image img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.where-to-start {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--layer-2-color, #f2f2f2);
}

.where-to-start--inner {
  --wts-darkblue: var(--text-2-color, #0d2134);
  --wts-darkgrey: var(--text-2-color, #202020);
  --wts-background1: var(--layer-2-color, #f2f2f2);
  --wts-gradient: var(--layer-1-color, #fff);
  --i-color: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.where-to-start--inner > :last-child {
  margin-bottom: 40px;
}

.wts-hero {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1306px;
  transform: translateX(-50%);
}

.wts-hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1306px;
  height: 24vw;
  transform: translateY(6%);
  background: linear-gradient(0deg, var(--wts-background1) 33.01%, rgba(247, 247, 247, 0) 100%);
  content: '';
}

@media screen and (min-width: 40em) {
  .wts-hero::after {
    height: 250px;
  }
}

.wts-hero__img {
  width: 100%;
}

@media screen and (min-width: 64em) {
  .wts-hero__img {
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 10px, black 20px, black calc(100% - 20px), rgba(0, 0, 0, 0) calc(100% - 10px));
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 10px, black 20px, black calc(100% - 20px), rgba(0, 0, 0, 0) calc(100% - 10px));
  }
}

.wts-hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.wts-head {
  position: relative;
  padding-top: 120px;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-head {
    padding-top: 207px;
  }
}

@media screen and (min-width: 64em) {
  .wts-head {
    padding-top: 400px;
  }
}

.wts-head__background {
  z-index: 0;
  position: absolute;
  bottom: 17%;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, var(--wts-gradient) 50.71%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (min-width: 64em) {
  .wts-head__background {
    bottom: -5%;
    height: 130%;
  }
}

.wts-head__description {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.wts-head__title {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: .8;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-head__title {
    font-size: 48px;
  }
}

.wts-head__subtitle {
  position: relative;
  max-width: 30ch;
  margin-bottom: 24px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (min-width: 40em) {
  .wts-head__subtitle {
    font-size: 48px;
  }
}

.wts-head__subtitle span {
  color: #e50c2c;
}

.wts-head__text {
  position: relative;
  max-width: 57ch;
  color: var(--wts-darkblue);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-head__text {
    font-size: 20px;
  }
}

.wts-head-slider {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.wts-head-slider__wrapper {
  overflow: hidden;
}

.wts-head-slider__inner {
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.wts-head-slider__title {
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .wts-head-slider__title {
    font-size: 24px;
  }
}

.wts-head-slider__text {
  margin-top: 12px;
  color: var(--wts-darkgrey);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .wts-head-slider__text {
    margin-top: 20px;
    font-size: 18px;
  }
}

.wts-head-slider__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  padding: 18px 16px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--wts-gradient) 47.59%, var(--layer-3-color, #e7e9eb) 100%);
}

@media screen and (min-width: 30em) {
  .wts-head-slider__item {
    flex-basis: 300px;
  }
}

@media screen and (min-width: 64em) {
  .wts-head-slider__item {
    flex-basis: 372px;
    max-width: 372px;
    padding: 44px 36px;
  }
}

.wts-head-slider__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 64em) {
  .wts-head-slider__img {
    width: 116px;
    height: 116px;
  }
}

.wts-head-slider__button {
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

[theme='dark'] .wts-head-slider__button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .wts-head-slider__button svg {
  --i-color1: #fff;
}

@media screen and (min-width: 64em) {
  .wts-head-slider__button {
    width: 40px;
    height: 40px;
  }
}

.wts-head-slider__button_prev {
  left: 6px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

@media screen and (min-width: 64em) {
  .wts-head-slider__button_prev {
    left: 0;
  }
}

.wts-head-slider__button_prev svg {
  transform: rotate(180deg);
}

.wts-head-slider__button_next {
  right: 6px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

@media screen and (min-width: 64em) {
  .wts-head-slider__button_next {
    right: 0;
  }
}

.wts-head-slider__button_disabled {
  display: none;
  cursor: auto;
  pointer-events: none;
}

.wts-head-slider__button_disabled svg {
  opacity: .35;
}

.wts-head-slider__button svg {
  width: 16px;
  height: 12px;
}

@media screen and (min-width: 64em) {
  .wts-head-slider__button svg {
    width: 20px;
    height: 13px;
  }
}

.wts-button {
  padding: 14px 32px;
  border-radius: 8px;
  background-color: #4eb27c;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.wts-forum {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 50px auto 0;
  padding: 0 20px;
}

@media screen and (min-width: 40em) {
  .wts-forum {
    margin: 100px auto 0;
  }
}

.wts-forum__head {
  max-width: 35ch;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-forum__head {
    font-size: 40px;
  }
}

.wts-forum__head span {
  color: #e50c2c;
}

.wts-forum__separator {
  max-width: 192px;
  max-height: 28px;
  margin-top: 20px;
}

.wts-forum__post {
  position: relative;
  flex-basis: 285px;
  flex-shrink: 0;
  max-width: 285px;
  padding: 24px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
}

.wts-forum__info {
  display: flex;
  z-index: 1;
  position: relative;
  margin-bottom: 4px;
  color: #808080;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.wts-forum__source_red {
  color: #e23e3e;
}

.wts-forum__source_blue {
  color: #3476a9;
}

.wts-forum__title {
  display: block;
  color: var(--wts-darkgrey, #202020);
  font-family: "PT Serif", serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 116.46%;
}

.wts-forum__title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.wts-forum__time {
  margin-top: 16px;
  color: #a5a5a5;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.wts-forum__nick {
  z-index: 1;
  position: relative;
  margin-top: 2px;
  color: #a5a5a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.wts-forum__slider {
  position: relative;
  width: 100%;
  margin-top: 32px;
}

.wts-forum__wrapper {
  width: 100%;
  overflow: hidden;
}

.wts-forum__inner {
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
}

.wts-forum__button {
  display: flex;
  z-index: 1;
  position: absolute;
  top: calc(50% - 14px);
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
}

[theme='dark'] .wts-forum__button {
  border-color: #616161;
  background-color: rgba(58, 58, 58, .9);
}

[theme='dark'] .wts-forum__button svg {
  --i-color1: #fff;
}

.wts-forum__button_prev {
  left: -14px;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.wts-forum__button_prev svg {
  transform: rotate(180deg);
}

.wts-forum__button_next {
  right: -14px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .1);
}

.wts-forum__button_disabled {
  cursor: auto;
  pointer-events: none;
}

.wts-forum__button_disabled svg {
  opacity: .35;
}

.wts-forum__button svg {
  width: 16px;
  height: 12px;
}

.wts-forum__steps {
  gap: 40px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 36px;
  color: var(--wts-darkblue);
}

@media screen and (min-width: 48em) {
  .wts-forum__steps {
    gap: unset;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    margin-top: 95px;
  }
}

@media screen and (min-width: 48em) {
  .wts-forum__line {
    z-index: 0;
    position: absolute;
    top: 30px;
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
    border-top: 2px dashed #86909a;
  }
}

.wts-forum__step-item {
  gap: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  color: inherit;
}

.wts-forum__img-wrap {
  position: relative;
  width: 145px;
  background-color: var(--wts-background1);
  text-align: center;
}

.wts-forum__img {
  width: 60px;
  height: 60px;
}

.wts-forum__cta-title {
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
  text-align: center;
}

@media screen and (min-width: 70.625em) {
  .wts-forum__cta-title {
    font-size: 28px;
  }
}

.wts-forum__cta-title span {
  display: block;
  font-weight: 700;
}

.wts-forum__description {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

@media screen and (min-width: 70.625em) {
  .wts-forum__description {
    font-size: 18px;
    line-height: 24px;
  }
}

.wts-forum__cta-button {
  max-width: 262px;
}

.wts-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 24px 16px;
  border-radius: 10px;
  background-image: url("/nimg/wts-support-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 40em) {
  .wts-support {
    margin: 100px auto 0;
    padding: 58px;
    border-radius: 16px;
  }
}

.wts-support__img {
  width: 96px;
  height: 96px;
}

.wts-support__title {
  margin-top: 24px;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-support__title {
    margin-top: 16px;
    font-size: 28px;
  }
}

.wts-support__sub-title {
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-support__sub-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.wts-support__link {
  gap: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin-top: 16px;
  padding: 10px 40px;
  border-radius: 5px;
  background: #fff;
  color: #0d2134;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 40em) {
  .wts-support__link {
    margin-top: 24px;
  }
}

.wts-support__link span {
  display: flex;
  align-items: center;
}

.wts-support__link span::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 0 4px 0 0;
  border-radius: 50%;
  background-color: #00dd17;
  box-shadow: inset 0 0 0 1px #bdbdbd;
  content: '';
}

.wts-course {
  width: 100%;
  max-width: 1180px;
  margin-top: 64px;
  padding: 0 20px;
}

@media screen and (min-width: 40em) {
  .wts-course {
    margin: 100px auto 0;
  }
}

.wts-train {
  display: flex;
  z-index: 2;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 64px auto 0;
  padding: 0 20px;
}

@media screen and (min-width: 40em) {
  .wts-train {
    margin: 100px auto 0;
  }
}

.wts-train__title {
  position: relative;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-train__title {
    font-size: 40px;
  }
}

.wts-train__sub-title {
  position: relative;
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-train__sub-title {
    margin-top: 8px;
    font-size: 22px;
  }
}

.wts-train__menu {
  display: flex;
  position: relative;
  margin-top: 32px;
}

.wts-train__menu-item {
  gap: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #86909a;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.wts-train__menu-item:nth-child(2) {
  border-right: 1px dashed #86909a;
  border-left: 1px dashed #86909a;
}

.wts-train__menu-item_active .wts-train__menu-title {
  color: var(--wts-darkblue);
}

.wts-train__menu-item_active .wts-train__count {
  background-color: #e50c2c;
}

.wts-train__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--layer-5-color, #86909a);
  color: #fff;
  font-size: 14px;
}

.wts-train__section {
  display: none;
  width: 100%;
}

.wts-train__section_active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wts-train__cards {
  gap: 36px;
  display: flex;
  flex-direction: column;
  margin-top: 33px;
}

@media screen and (min-width: 78.4375em) {
  .wts-train__cards {
    gap: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}

.wts-train__cards_school {
  gap: 36px;
  justify-content: center;
}

.wts-train__cards_cources {
  gap: 36px;
  flex-wrap: nowrap;
  justify-content: center;
}

.wts-train__card-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 44px 36px 36px 36px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--layer-3-color, #fff) 47.59%, var(--layer-4-color, #e7e9eb) 100%);
}

@media screen and (min-width: 30em) {
  .wts-train__card-item {
    width: 372px;
  }
}

.wts-train__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wts-train__avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  outline: 2px solid var(--line-1-color, #806e54);
  outline-offset: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wts-train__nick {
  margin-top: 30px;
  color: var(--wts-darkblue);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.wts-train__name {
  color: var(--text-2-color, #202020);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

.wts-train__rate {
  display: flex;
  justify-content: space-between;
  width: 132px;
  height: 24px;
  margin-top: 4px;
}

.wts-train__star {
  position: relative;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.wts-train__star::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/nimg/wts-star-empty.svg");
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.wts-train__rate--1 .wts-train__star:nth-child(-n+1),
.wts-train__rate--2 .wts-train__star:nth-child(-n+2),
.wts-train__rate--3 .wts-train__star:nth-child(-n+3),
.wts-train__rate--4 .wts-train__star:nth-child(-n+4),
.wts-train__rate--5 .wts-train__star:nth-child(-n+5) {
  background-image: url("/nimg/wts-star-solid.svg");
}

.wts-train__list {
  width: 100%;
  margin-top: 36px;
}

.wts-train__list li {
  display: flex;
  align-items: center;
}

.wts-train__list li:not(:last-child) {
  margin: 0 0 12px;
}

.wts-train__list li::after {
  flex-grow: 1;
  order: 2;
  height: 0;
  margin: 0 4px;
  border-bottom: 1px dashed var(--line-2-color, #f0f1f4);
  content: '';
}

.wts-train__label {
  position: relative;
  order: 1;
  color: var(--text-2-color, #202020);
  font-size: 14px;
  line-height: 17px;
}

.wts-train__label::after {
  position: absolute;
  top: 9px;
  right: 0;
  width: var(--dashed-line-width);
  height: 0;
  transform: translateX(calc(100% + 4px));
  border-bottom: 1px dotted #93949d;
  content: '';
}

.wts-train__tags {
  gap: 4px;
  display: flex;
  justify-content: flex-end;
  order: 3;
  max-width: 210px;
  text-align: right;
}

.wts-train__tag-item {
  padding: 3px 7px;
  border-radius: 40px;
  background-color: var(--layer-5-color, #e4e5e7);
  color: var(--text-2-color, #202020);
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.wts-train__data {
  order: 3;
  max-width: 160px;
  color: var(--text-2-color, #202020);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: right;
}

.wts-train__link {
  width: 100%;
  margin-top: 40px;
  padding: 12px 0;
  border: 1px solid var(--text-1-color, #000);
  border-radius: 8px;
  color: var(--text-1-color, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.wts-train__link:hover {
  border: 1px solid var(--layer-1-color, #fff);
  background-color: var(--text-1-color, #000);
  color: var(--layer-1-color, #fff);
}

.wts-train__review {
  gap: 0 8px;
  display: flex;
  align-items: center;
  order: 3;
}

.wts-train__positive {
  gap: 0 3px;
  display: flex;
  align-items: center;
  color: #6dab73;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.wts-train__positive svg {
  width: 18px;
  height: 16px;
  transform: translateY(-1px);
}

.wts-train__negative {
  gap: 0 3px;
  display: flex;
  align-items: center;
  color: var(--text-3-color, #666);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.wts-train__negative svg {
  width: 18px;
  height: 16px;
  transform: translateY(1px);
}

[theme='dark'] .wts-train__negative svg {
  --i-color1: var(--text-3-color);
}

.wts-school__top {
  gap: 0 8px;
  display: flex;
  width: 100%;
  margin: 0 0 21px;
}

@media screen and (min-width: 48em) {
  .wts-school__top {
    gap: 0 24px;
  }
}

.wts-school__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid var(--wmr-card-outline-color);
  border-radius: 50%;
}

@media screen and (min-width: 48em) {
  .wts-school__logo {
    width: 86px;
    height: 86px;
  }
}

.wts-school__logo svg {
  width: 100%;
  max-width: 46px;
  height: 48px;
}

@media screen and (min-width: 48em) {
  .wts-school__logo svg {
    max-width: 50px;
    height: 60px;
  }
}

.wts-school__wrap {
  display: flex;
  flex-direction: column;
}

.wts-school__heading {
  margin: 0 0 2px;
  color: var(--wts-darkblue);
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

@media screen and (min-width: 48em) {
  .wts-school__heading {
    margin: 0 0 4px;
    font-size: 24px;
  }
}

.wts-school__lead {
  margin: 0 0 8px;
  color: var(--wts-darkblue);
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 48em) {
  .wts-school__lead {
    margin: 0 0 13px;
    font-size: 16px;
  }
}

.wts-school__tag {
  gap: 0 4px;
  display: flex;
}

.wts-school__label {
  padding: 3px 7px;
  border-radius: 40px;
  background-color: #e4e5e7;
  color: #202020;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.wts-school__label_cash {
  background-color: #43a047;
  color: #fff;
}

.wts-school__label_mtt {
  background-color: #ff9800;
  color: #fff;
}

.wts-school__list {
  margin: 0 0 27px;
  padding: 0 0 0 24px;
  color: var(--wts-darkgrey);
}

@media screen and (min-width: 48em) {
  .wts-school__list {
    margin: 0 0 32px;
  }
}

.wts-school__list li {
  margin: 0;
  color: var(--wmr-card-list-color);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  list-style-position: outside;
  list-style-type: disc;
}

.wts-school__list li:not(:last-child) {
  margin: 0 0 6px;
}

@media screen and (min-width: 48em) {
  .wts-school__list li:not(:last-child) {
    margin: 0 0 8px;
  }
}

.wts-cource__card-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 36px;
  overflow: hidden;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--layer-3-color, #fff) 47.59%, var(--layer-4-color, #e7e9eb) 100%);
}

@media screen and (min-width: 30em) {
  .wts-cource__card-item {
    width: 372px;
  }
}

.wts-cource__card-item .wts-train__link {
  width: calc(100% - 72px);
}

.wts-cource__top {
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

.wts-cource__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 48px;
  margin: 0 0 36px;
  padding: 0 36px;
}

.wts-cource__name {
  color: var(--wts-darkblue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.wts-cource__author {
  color: var(--wts-darkblue);
  font-size: 14px;
  line-height: 1.5;
}

.wts-cource__list {
  width: 100%;
  padding: 0 36px;
  color: var(--wts-darkgrey);
}

.article-body .wts-cource__list {
  margin: auto 0 24px;
}

.wts-cource__list li {
  display: flex;
  align-items: center;
  margin: 0;
}

.wts-cource__list li:not(:last-child) {
  margin: 0 0 12px;
}

.article-body .wts-cource__list li {
  font-family: Roboto, Arial, sans-serif;
}

.wts-cource__list li::after {
  flex-grow: 1;
  order: 2;
  height: 0;
  margin: 0 4px;
  border-bottom: 1px dashed var(--line-2-color, #b7b7b7);
  content: '';
}

.wts-cource__title {
  order: 1;
  color: var(--wts-darkgrey);
  font-size: 14px;
  line-height: 17px;
}

.wts-cource__tag {
  gap: 4px;
  display: flex;
  justify-content: flex-end;
  order: 3;
  max-width: 210px;
  text-align: right;
}

.wts-cource__label {
  padding: 3px 7px;
  border-radius: 40px;
  background-color: #e4e5e7;
  color: #202020;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.wts-cource__data {
  order: 3;
  max-width: 160px;
  color: var(--wmr-card-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: right;
}

.wts-cource__review {
  gap: 0 8px;
  display: flex;
  align-items: center;
  order: 3;
}

.wts-cource__positive {
  gap: 0 3px;
  display: flex;
  align-items: center;
  color: #6dab73;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.wts-cource__positive svg {
  width: 18px;
  height: 16px;
  transform: translateY(-1px);
}

.wts-cource__negative {
  gap: 0 3px;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.wts-cource__negative svg {
  width: 18px;
  height: 16px;
  transform: translateY(1px);
}

.wts-bgnd-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wts-bgnd {
  z-index: 0;
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 100%;
  height: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  background: radial-gradient(50% 50% at 50% 50%, var(--layer-2a-color, #fff) 70%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (min-width: 78.4375em) {
  .wts-bgnd {
    bottom: -17%;
    width: 1280px;
    height: 100%;
    border-radius: 1280px;
  }
}

.wts-more {
  z-index: 10;
  position: relative;
  height: 1px;
  margin: 64px auto 0 auto;
  overflow: visible;
}

@media screen and (min-width: 64em) {
  .wts-more {
    margin: 53px auto 0 auto;
  }
}

.wts-more__text {
  display: inline-block;
  z-index: 1;
  position: relative;
  padding: 10px 24px;
  transform: translateY(-50%);
  border: 1px solid #86909a;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-1-color, #000);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .48px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 40em) {
  .wts-more__text {
    font-size: 16px;
  }
}

.wts-more__line {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 810px;
  max-width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(134, 144, 154, 0) .97%, #86909a 50.68%, rgba(134, 144, 154, 0) 100%);
}

.wts-playnow {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--wts-background1);
}

.wts-playnow__img {
  position: relative;
  width: 189px;
  height: 28px;
  margin-top: 36px;
}

@media screen and (min-width: 40em) {
  .wts-playnow__img {
    margin-top: 20px;
  }
}

.wts-playnow__title {
  position: relative;
  margin-top: 64px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-playnow__title {
    margin-top: 134px;
    font-size: 40px;
  }
}

.wts-playnow__items-wrapper {
  gap: 40px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 32px 0 0;
}

@media screen and (min-width: 40em) {
  .wts-playnow__items-wrapper {
    gap: unset;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media screen and (min-width: 70.625em) {
  .wts-playnow__items-wrapper {
    gap: 148px;
    justify-content: center;
  }
}

.wts-playnow__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  max-width: 146px;
}

.wts-playnow__item-img {
  width: 60px;
  height: 60px;
}

.wts-playnow__item-title {
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.wts-playnow__item-subtitle {
  color: var(--text-4-color, #6e7689);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.wts-card-separator {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(to right, #86909a00, #86909a, #86909a00);
}

.wts-free {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 103px auto 0;
  padding: 0 20px;
}

.wts-free__img {
  position: relative;
  width: 81px;
  height: 67px;
}

.wts-free__title {
  position: relative;
  margin-top: 8px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-free__title {
    font-size: 40px;
  }
}

.wts-free__subtitle {
  position: relative;
  margin-top: 8px;
  color: var(--wts-darkblue);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-free__subtitle {
    font-size: 22px;
  }
}

.wts-free__cards-wrapper {
  gap: 24px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

@media screen and (min-width: 70.625em) {
  .wts-free__cards-wrapper {
    gap: 12px;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
  }
}

.wts-free__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 30em) {
  .wts-free__card {
    width: 375px;
  }
}

@media screen and (min-width: 70.625em) {
  .wts-free__card {
    padding: 36px;
  }
}

.wts-free__card-wrap {
  width: 100%;
}

.wts-free__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wts-free__time-wrap {
  gap: 8px;
  display: flex;
}

.wts-free__time-icon {
  width: 33px;
  height: 33px;
}

.wts-free__time-text {
  max-width: 70px;
  color: #e50c2c;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.wts-free__prize {
  gap: 8px;
  display: flex;
  padding: 12px 20px;
  border: 1px solid #806e54;
  border-radius: 50px;
  background: #fff1bf;
}

.wts-free__cup {
  width: 26px;
  height: 25px;
}

.wts-free__sum {
  color: #0d2134;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.wts-free__action {
  gap: 6px;
  display: flex;
  align-items: center;
  min-height: 36px;
}

.wts-free__logo {
  flex-shrink: 0;
  max-width: 40px;
  max-height: 36px;
}

.wts-free__text {
  color: var(--wts-darkblue);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

.wts-free__button {
  width: 100%;
  margin-top: 24px;
}

.wts-bestrooms {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 103px auto 0;
  padding: 0 20px;
}

.wts-bestrooms__img {
  position: relative;
  width: 60px;
  height: 60px;
}

.wts-bestrooms__title {
  position: relative;
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .wts-bestrooms__title {
    margin-top: 8px;
    font-size: 40px;
  }
}

.wts-bestrooms__items-wrapper {
  gap: 24px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

@media screen and (min-width: 70.625em) {
  .wts-bestrooms__items-wrapper {
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
  }
}

.wts-bestrooms__item {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  background: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 23.4375em) {
  .wts-bestrooms__item {
    border: 1px solid var(--line-1-color, #e0e0e0);
    border-radius: 10px;
  }
}

@media screen and (min-width: 30em) {
  .wts-bestrooms__item {
    width: 375px;
  }
}

@media screen and (min-width: 48em) {
  .wts-bestrooms__item {
    padding: 36px;
  }
}

.wts-bestrooms__top-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wts-bestrooms__bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wts-bestrooms__head {
  gap: 16px;
  display: flex;
  justify-content: center;
}

.wts-bestrooms__title-wrap {
  gap: 5px;
  display: flex;
  align-items: center;
}

.wts-bestrooms__item-title {
  color: var(--wts-darkblue);
  font-family: Roboto, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 48em) {
  .wts-bestrooms__item-title {
    font-size: 28px;
    line-height: 22px;
  }
}

.wts-bestrooms__logo {
  max-width: 35px;
}

.wts-bestrooms__star {
  width: 24px;
  height: 22px;
}

.wts-bestrooms__rate-wrap {
  gap: 8px;
  display: flex;
  align-items: center;
}

.wts-bestrooms__rate {
  color: var(--text-1-color, #806e54);
  font-family: Roboto, Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.wts-bestrooms__description {
  max-width: 253px;
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.wts-bestrooms__links {
  gap: 24px;
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.wts-bestrooms__link-item {
  gap: 8px;
  display: flex;
  align-items: center;
}

.wts-bestrooms__link-item span {
  color: var(--text-3-color, #6d6d6d);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: right;
}

.wts-bestrooms__code {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wts-bestrooms__info-wrap {
  gap: 5px;
  display: flex;
  align-items: center;
}

.wts-bestrooms__info-icon {
  width: 17px;
  height: 17px;
}

.wts-bestrooms__info-text {
  color: var(--text-3-color, #6d6d6d);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.wts-bestrooms__info-bonus {
  padding: 14px 0;
  color: var(--text-3-color, #6d6d6d);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  -webkit-text-decoration: underline dashed;
  text-decoration: underline dashed;
}

.wts-bestrooms__ref-wrap {
  gap: 8px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-width: 17ch;
  padding: 12px;
  overflow: hidden;
  border: 1px dashed #d9d9d9;
  border-radius: 8px;
  cursor: pointer;
}

.wts-bestrooms__ref-code {
  color: var(--wts-darkblue);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.wts-bestrooms__ref-icon {
  width: 17px;
  height: 17px;
}

[theme='dark'] .wts-bestrooms__ref-icon {
  --i-color1: #fff;
}

.wts-bestrooms__button {
  width: 100%;
  margin-top: 16px;
}

.wts-soc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 103px auto 0;
  padding: 0 20px;
}

.wts-soc__title {
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .wts-soc__title {
    font-size: 40px;
  }
}

.wts-soc__subtitle {
  margin-top: 16px;
  color: var(--wts-darkblue);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .wts-soc__subtitle {
    margin-top: 8px;
    font-size: 22px;
  }
}

.wts-soc__separator {
  width: 192px;
  height: 28px;
  margin-top: 30px;
}

@media screen and (min-width: 48em) {
  .wts-soc__separator {
    margin-top: 20px;
  }
}

.wts-soc__items-wrapper {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 36px;
}

@media screen and (min-width: 78.4375em) {
  .wts-soc__items-wrapper {
    gap: unset;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
  }
}

.wts-soc__item {
  gap: 4px 24px;
  display: grid;
  grid-template-areas: "logo title" "logo description";
  grid-template-columns: 60px auto;
  width: 100%;
  max-width: 500px;
  padding: 36px;
  border: 1px solid var(--line-1-color, #e0e0e0);
  border-radius: 10px;
  background: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 78.4375em) {
  .wts-soc__item {
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
  }
}

.wts-soc__logo {
  grid-area: logo;
  flex-shrink: 0;
  align-self: center;
  width: 60px;
  height: 60px;
}

.wts-soc__item-title {
  grid-area: title;
  color: var(--wts-darkblue);
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-align: left;
}

@media screen and (min-width: 78.4375em) {
  .wts-soc__item-title {
    text-align: center;
  }
}

.wts-soc__description {
  grid-area: description;
  color: var(--text-4-color, #86909a);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}

@media screen and (min-width: 78.4375em) {
  .wts-soc__description {
    text-align: center;
  }
}

.advert {
  --side-padding: 16px;
  max-width: 100vw;
  overflow: hidden;
  background-color: var(--layer-1-color, #f2f2f2);
}

@media screen and (min-width: 64em) {
  .advert {
    --side-padding: 32px;
  }
}

@media screen and (min-width: 79.375em) {
  .advert {
    --side-padding: 0;
  }
}

.advert-hero__logo {
  width: 200px;
}

@media screen and (min-width: 48em) {
  .advert-hero__logo {
    width: 346px;
  }
}

.advert-hero__head {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px var(--side-padding) 29px var(--side-padding);
  background-image: url(../nimg/advert-hero-mobile.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .advert-hero__head {
    background-image: url(../nimg/advert-hero-desktop.webp);
  }
}

@media screen and (min-width: 64em) {
  .advert-hero__head {
    padding: 46px 0 96px;
  }
}

.advert-hero__text {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "PT Serif", serif;
}

@media screen and (min-width: 64em) {
  .advert-hero__text {
    max-width: 1000px;
  }
}

.advert-hero__text span {
  color: #f4dea6;
}

.advert-hero__title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-hero__title {
    font-size: 28px;
  }
}

.advert-hero__subtitle {
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-hero__subtitle {
    margin-top: -0.2em;
    font-size: 28px;
    font-weight: 700;
  }
}

.advert-hero__stats-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: var(--side-padding);
}

@media screen and (min-width: 48em) {
  .advert-hero__stats-wrap {
    flex-direction: row;
  }
}

@media screen and (min-width: 64em) {
  .advert-hero__stats-wrap {
    gap: 17px;
    padding: 0 var(--side-padding);
    transform: translateY(-40%);
  }
}

@media screen and (min-width: 79.375em) {
  .advert-hero__stats-wrap {
    width: 100%;
    max-width: 1246px;
    padding: 0;
  }
}

.advert-hero__stats-item {
  gap: 16px;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 16px;
  background-color: var(--layer-3-color, #fff);
}

@media screen and (min-width: 64em) {
  .advert-hero__stats-item {
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
  }
}

.advert-hero__stats-icon {
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  width: 48px;
}

[theme='dark'] .advert-hero__stats-icon {
  filter: invert(100%);
}

.advert-hero__stats-title {
  color: var(--text-3-color, #292929);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 64em) {
  .advert-hero__stats-title {
    font-size: 28px;
  }
}

.advert-hero__stats-subtitle {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

@media screen and (min-width: 64em) {
  .advert-hero__stats-subtitle {
    font-size: 18px;
  }
}

.advert-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--side-padding);
  text-align: center;
}

.advert-stats__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-stats__title {
    font-size: 40px;
  }
}

.advert-stats__subtitle {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.advert-stats__description {
  max-width: 721px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-stats__description {
    margin-top: 16px;
    font-size: 20px;
  }
}

.advert-stats__wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .advert-stats__wrap {
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-stats__wrap {
    gap: 60px;
    justify-content: space-between;
    width: 100%;
    max-width: 1246px;
    margin-top: -16px;
  }
}

.advert-stats__item {
  padding: var(--side-padding);
  border-radius: 4px;
  background: var(--layer-2a-color, #f9f8f8);
}

@media screen and (min-width: 79.375em) {
  .advert-stats__item {
    flex: 1;
    background: unset;
  }
}

[theme='dark'] .advert-stats__item {
  --i-color1: #fff;
  --i-color2: #ccc;
  --i-color3: #fff;
}

.advert-stats__img {
  width: 100%;
  min-height: 250px;
}

@media screen and (min-width: 79.375em) {
  .advert-stats__img {
    aspect-ratio: 1/1;
  }
}

.advert-commercial {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 36px 16px 0 16px;
  padding: 24px 16px;
  border-radius: 8px;
  background-color: var(--layer-2-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 64em) {
  .advert-commercial {
    margin: 36px 32px 0 32px;
    padding: 32px;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-commercial {
    max-width: 1246px;
    margin: 0 auto;
  }
}

.advert-commercial__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-commercial__title {
    font-size: 40px;
  }
}

.advert-commercial__text {
  max-width: 1000px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.advert-separator {
  width: 144px;
  height: 24px;
  margin: 8px 0;
}

[theme='dark'] .advert-separator {
  --i-color1: #757575;
}

@media screen and (min-width: 64em) {
  .advert-separator {
    margin: 16px 0;
  }
}

.advert-banners {
  margin-top: 36px;
}

@media screen and (min-width: 79.375em) {
  .advert-banners {
    max-width: 1246px;
    margin: 64px auto 0;
  }
}

.advert-banners__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-banners__title {
    font-size: 40px;
  }
}

.advert-banners__wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0 24px 0;
}

@media screen and (min-width: 64em) {
  .advert-banners__wrap {
    gap: 16px;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-banners__wrap {
    margin: 24px 0 64px 0;
  }
}

.advert-banners__item {
  gap: 16px;
  display: grid;
  grid-template-areas: 'banner-item-head' 'banner-item-layout' 'banner-item-text' 'banner-item-example';
  width: 100%;
  padding: 24px 16px;
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 48em) {
  .advert-banners__item {
    gap: 0 28px;
    padding: 36px;
  }
}

@media screen and (min-width: 64em) {
  .advert-banners__item {
    grid-template-areas: 'banner-item-layout banner-item-head' 'banner-item-layout banner-item-text' 'banner-item-layout banner-item-example';
    grid-template-rows: 64px auto;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-banners__item {
    padding: 32px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 64em) {
  .advert-banners__item_vertical {
    grid-template-areas: 'banner-item-layout banner-item-head banner-item-example' 'banner-item-layout banner-item-text banner-item-example';
    grid-template-rows: 64px auto;
  }
}

.advert-banners__item_place {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advert-banners__head {
  gap: 2px;
  display: flex;
  grid-area: banner-item-head;
  flex-direction: column;
  align-items: flex-start;
}

.advert-banners__text {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__text {
    font-size: 20px;
  }
}

.advert-banners__item-title {
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 131.8%;
}

@media screen and (min-width: 30em) {
  .advert-banners__item-title {
    font-size: 26px;
  }
}

.advert-banners__layout {
  grid-area: banner-item-layout;
  max-width: 100%;
  scale: 1.05;
}

@media screen and (min-width: 30em) {
  .advert-banners__layout {
    margin: 0 auto;
    scale: 1.07;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-banners__layout {
    max-width: 398px;
  }
}

.advert-banners__size {
  color: #f00;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

@media screen and (min-width: 30em) {
  .advert-banners__size {
    font-size: 20px;
  }
}

.advert-banners__text {
  grid-area: banner-item-text;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__text {
    margin-top: 4px;
  }
}

.advert-banners__text a {
  color: inherit;
  text-decoration: underline;
}

.advert-banners__example {
  grid-area: banner-item-example;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid var(--line-0-color, #c2aaaa);
  border-radius: 4px;
  color: #b7aaaa;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__example {
    border-radius: 11px;
  }
}

.advert-banners__example-header {
  padding: 4px 8px;
  border-bottom: 1px solid var(--line-0-color, #c2aaaa);
  background: var(--layer-4-color, #faf7ee);
  color: var(--text-1-color, #b7aaaa);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__example-header {
    padding: 8px 20px;
    font-size: 16px;
  }
}

.advert-banners__example-wrap {
  padding: 8px;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__example-wrap {
    padding: 16px 20px 20px 20px;
  }
}

.advert-banners__example-img {
  max-width: 100%;
}

@media screen and (min-width: 79.375em) {
  .advert-banners__example-img {
    max-width: 546px;
  }
}

.advert-banners__example-img_6 {
  width: 143px;
}

@media screen and (min-width: 48em) {
  .advert-banners__example-img_6 {
    width: 194px;
  }
}

.advert-banners__example-img_8 {
  width: 243px;
}

@media screen and (min-width: 48em) {
  .advert-banners__example-img_8 {
    width: 194px;
  }
}

.advert-banners__example-img_12 {
  width: 171px;
}

@media screen and (min-width: 48em) {
  .advert-banners__example-img_12 {
    width: 213px;
  }
}

.advert-banners__example-img_14 {
  width: 82px;
}

@media screen and (min-width: 48em) {
  .advert-banners__example-img_14 {
    width: 103px;
  }
}

.advert-banners__place-text {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 131.8%;
  text-align: center;
}

.advert-banners__place-text p {
  margin: 0;
}

@media screen and (min-width: 48em) {
  .advert-banners__place-text p {
    font-size: 18px;
  }
}

.advert-banners__place-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 16px;
  padding: 8px 32px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.advert-youtube {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px var(--side-padding);
  background-color: var(--layer-2a-color, #ebebeb);
}

.advert-youtube__head {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 64em) {
  .advert-youtube__head {
    flex-direction: row;
  }
}

.advert-youtube__icon {
  width: 56px;
  height: 36px;
}

.advert-youtube__title {
  color: var(--text-2-color, #000);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-youtube__title {
    font-size: 40px;
  }
}

.advert-youtube__stats-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 615px;
  margin-top: 16px;
}

@media screen and (min-width: 64em) {
  .advert-youtube__stats-wrap {
    gap: 17px;
    flex-direction: row;
    max-width: 1246px;
    margin-top: 32px;
  }
}

.advert-youtube__stats-item {
  gap: 16px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--layer-4-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 70.625em) {
  .advert-youtube__stats-item {
    padding: 32px;
  }
}

.advert-youtube__item-icon {
  width: 64px;
  height: 64px;
}

[theme='dark'] .advert-youtube__item-icon {
  --i-color1: #e0e0e0;
  --i-color2: var(--layer-4-color);
}

.advert-youtube__content {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.advert-youtube__figure {
  color: var(--text-3-color, #292929);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.advert-youtube__description {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.advert-youtube__features-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .advert-youtube__features-wrap {
    gap: 17px;
    flex-direction: row;
  }
}

.advert-youtube__feature-item {
  gap: 4px;
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 615px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-4-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 70.625em) {
  .advert-youtube__feature-item {
    padding: 32px;
  }
}

.advert-youtube__feature-title {
  color: #e31f26;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 131.8%;
}

.advert-youtube__feature-description {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.advert-youtube__feature-description a {
  color: inherit;
  text-decoration: underline;
}

.advert-youtube__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 16px;
  padding: 8px 24px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

[theme='dark'] .advert-youtube__link {
  filter: invert(100%);
}

@media screen and (min-width: 64em) {
  .advert-youtube__link {
    margin-top: 32px;
  }
}

.advert-seo {
  padding: 36px var(--side-padding);
  background-color: var(--layer-2a-color, #f2f2f2);
}

.advert-seo__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 79.375em) {
  .advert-seo__wrap {
    max-width: 1246px;
    margin: 0 auto;
  }
}

.advert-seo__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-seo__title {
    font-size: 40px;
  }
}

.advert-seo__description {
  max-width: 1000px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.advert-seo__accent {
  color: #e31f26;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.advert-seo__example {
  max-width: 100%;
  margin-top: 24px;
  scale: 1.05;
}

@media screen and (min-width: 79.375em) {
  .advert-seo__example {
    max-width: 536px;
  }
}

.advert-seo__caption {
  margin-top: 24px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

.advert-seo__articles {
  margin-top: 24px;
}

.advert-seo__articles-title {
  color: var(--text-3-color, #292929);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

.advert-seo__articles-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

@media screen and (min-width: 79.375em) {
  .advert-seo__articles-wrap {
    gap: 16px;
    flex-direction: row;
  }
}

.advert-seo__article-item {
  gap: 16px;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

.advert-seo__article-img {
  width: 68px;
  height: 68px;
}

.advert-seo__article-description {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.advert-seo__features {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 79.375em) {
  .advert-seo__features {
    gap: 16px;
    flex-direction: row;
    margin-top: 48px;
  }
}

.advert-seo__feature-item {
  gap: 8px;
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 615px;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

.advert-seo__feature-title {
  color: #e31f26;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 131.8%;
}

.advert-seo__feature-text {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.advert-seo__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 24px;
  padding: 8px 24px;
  border-radius: 6px;
  background: #292929;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

[theme='dark'] .advert-seo__link {
  filter: invert(100%);
}

@media screen and (min-width: 48em) {
  .advert-seo__link {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.advert-bet {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px var(--side-padding);
  background-color: var(--layer-2a-color, #ebebeb);
}

@media screen and (min-width: 79.375em) {
  .advert-bet {
    padding: 64px 0;
  }
}

.advert-bet__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-bet__title {
    font-size: 40px;
  }
}

.advert-bet__description {
  max-width: 1099px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-bet__description {
    font-size: 20px;
  }
}

.advert-bet__description a {
  color: #e31f26;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

@media screen and (min-width: 64em) {
  .advert-bet__description a {
    font-size: 20px;
  }
}

.advert-bet__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 24px;
  padding: 8px 24px;
  border-radius: 6px;
  background: #292929;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

[theme='dark'] .advert-bet__link {
  filter: invert(100%);
}

.advert-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px var(--side-padding);
  background-color: var(--layer-2a-color, #f2f2f2);
}

.advert-content__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-content__title {
    font-size: 40px;
  }
}

.advert-content__description {
  max-width: 955px;
  margin-top: 8px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.advert-content__items-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 40em) {
  .advert-content__items-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.advert-content__item {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 615px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 79.375em) {
  .advert-content__item {
    gap: 16px;
    flex-direction: row;
    align-items: flex-start;
    padding: 32px;
  }
}

.advert-content__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

[theme='dark'] .advert-content__icon {
  filter: invert(100%);
}

.advert-content__item-text {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 79.375em) {
  .advert-content__item-text {
    align-items: flex-start;
  }
}

.advert-content__item-title {
  color: #e31f26;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 79.375em) {
  .advert-content__item-title {
    text-align: left;
  }
}

.advert-content__item-description {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 79.375em) {
  .advert-content__item-description {
    text-align: left;
  }
}

.advert-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px var(--side-padding);
}

@media screen and (min-width: 79.375em) {
  .advert-socials {
    padding: 64px 0;
  }
}

.advert-socials__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
  text-align: center;
}

@media screen and (min-width: 64em) {
  .advert-socials__title {
    font-size: 40px;
  }
}

.advert-socials__subtitle {
  margin-top: 8px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  /* 20.8px */
}

.advert-socials__items-wrap {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 64em) {
  .advert-socials__items-wrap {
    flex-direction: row;
  }
}

.advert-socials__item {
  gap: 16px;
  display: flex;
  flex: 1;
  align-items: center;
  max-width: 300px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--layer-2-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

.advert-socials__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.advert-socials__text {
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.advert-socials__description {
  max-width: 850px;
  margin-top: 24px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

.advert-contacts {
  padding: 24px var(--side-padding);
  background-color: var(--layer-2-color, #fff);
}

@media screen and (min-width: 64em) {
  .advert-contacts {
    padding: 36px var(--side-padding) 64px var(--side-padding);
  }
}

.advert-contacts__title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__title {
    font-size: 40px;
  }
}

.advert-contacts__description {
  margin-top: 8px;
  color: var(--text-3-color, #292929);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__description span {
    display: block;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__wrap {
    max-width: 1246px;
    margin: 0 auto;
  }
}

.advert-contacts__form {
  gap: 12px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__form {
    flex-basis: 619px;
  }
}

.advert-contacts__input {
  padding: 17px;
  border: 1px solid var(--line-2-color, #e4e5e7);
  border-radius: 6px;
  background-color: var(--layer-2-color, #fff);
  color: var(--text-3-color, #666);
}

.advert-contacts__input::-moz-placeholder {
  color: var(--text-3-color, #666);
}

.advert-contacts__input::placeholder {
  color: var(--text-3-color, #666);
}

.advert-contacts__input-wrap {
  gap: 12px;
  display: flex;
  width: 100%;
}

.advert-contacts__text-input {
  flex-shrink: 1;
  width: 100%;
}

.advert-contacts__text-input:focus {
  border: 1px solid var(--text-1-color, #000);
  outline: none !important;
}

.advert-contacts__textarea {
  resize: none;
}

.advert-contacts__textarea:focus {
  border: 1px solid var(--text-1-color, #000);
  outline: none !important;
}

.advert-contacts__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 32px;
  padding: 8px 24px;
  border-radius: 6px;
  background: #292929;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

[theme='dark'] .advert-contacts__submit {
  filter: invert(100%);
}

@media screen and (min-width: 40em) {
  .advert-contacts__submit {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 24px;
    padding: 14px 60px 11px 60px;
  }
}

.advert-contacts__instant {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 16px;
  border-radius: 10px;
  background: var(--layer-3-color, #f3f3f3);
}

@media screen and (min-width: 30em) {
  .advert-contacts__instant {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__instant {
    gap: 24px;
    flex-grow: 1;
    margin-top: 132px;
    padding: 36px;
  }
}

.advert-contacts__instant-title {
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 131.8%;
}

@media screen and (min-width: 64em) {
  .advert-contacts__instant-title {
    font-size: 24px;
  }
}

.advert-contacts__instant-wrap {
  gap: 16px;
  display: flex;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__instant-wrap {
    gap: 37px;
  }
}

.advert-contacts__avatar {
  width: 60px;
  height: 60px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  outline: 1px solid #fff;
  outline-offset: -2px;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__avatar {
    width: 126px;
    height: 126px;
  }
}

.advert-contacts__head {
  margin-top: 8px;
  color: var(--text-3-color, #292929);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__head {
    font-size: 16px;
  }
}

@media screen and (min-width: 64em) {
  .advert-contacts__wrap {
    gap: 48px;
    display: flex;
    align-items: flex-start;
  }
}

.advert-contacts__name {
  margin-top: 4px;
  color: var(--text-3-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (min-width: 79.375em) {
  .advert-contacts__name {
    font-size: 20px;
  }
}

.advert-contacts__link {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 16px;
  padding: 10px 30px;
  border-radius: 5px;
  background: #2598d0;
}

.advert-contacts__link-icon {
  width: 24px;
  height: 24px;
}

.advert-contacts__link-text {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.rakepage-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 0 16px 80px;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 64em) {
  .rakepage-wrap {
    padding: 0 30px 80px;
  }
}

.rakepage {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 1246px;
  padding: 56px 0 0;
}

.rakepage--heading {
  margin: 0 0 24px;
  color: var(--text-2-color, #000);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 48em) {
  .rakepage--heading {
    margin: 0 0 32px;
    font-size: 30px;
  }
}

.rakepage-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rakepage-form--label {
  margin: 0 0 8px;
  color: var(--text-3-color, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

@media screen and (min-width: 48em) {
  .rakepage-form--label {
    margin: 0 0 13px;
  }
}

.rakepage-form--label span {
  color: #e51e25;
}

.rakepage-form--inner {
  gap: 0 8px;
  display: flex;
  align-items: flex-start;
}

.rakepage-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 330px;
  padding: 9px 16px;
  border: 1px solid var(--control-1-border-color, #dfe1e4);
  border-radius: 5px;
  background-color: var(--layer-2-color, #fff);
  color: var(--control-1-color, #000);
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .rakepage-field {
    padding: 17px;
    border-radius: 10px;
  }
}

.rakepage-field::-moz-placeholder {
  color: #a8a8a9;
}

.rakepage-field::placeholder {
  color: #a8a8a9;
}

.rakepage-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 16px;
  border: 0;
  border-radius: 5px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .rakepage-submit {
    padding: 20px 48px 19px;
    border-radius: 10px;
  }
}

.rakepage-error {
  margin: 16px 0 0;
  color: #e51e25;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.rakepage-nickname {
  gap: 0 8px;
  display: flex;
  margin: 16px 0 0;
  color: var(--text-5-color, #757575);
  font-size: 16px;
  line-height: 1;
}

.rakepage-nickname span {
  color: var(--text-1-color, #000);
  font-weight: 700;
}

.rakepage-result {
  gap: 12px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 24px 0 0;
}

.rakepage-result:has(.raketab--label) {
  gap: 0;
}

.rakepage-result--sum {
  gap: 0 8px;
  display: flex;
  color: var(--text-5-color, #757575);
  font-size: 16px;
  line-height: 1;
}

.rakepage-result--sum span {
  color: var(--text-1-color, #000);
  font-weight: 700;
}

.rakepage-jump {
  gap: 12px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 24px 0 0;
}

.rakepage-jump:has(.raketab--label) {
  gap: 0;
}

.rakepage-jump--subheading {
  margin: 0 0 4px;
  color: var(--text-3-color, #202020);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.rakepage-jump--sum {
  gap: 0 8px;
  display: flex;
  padding: 0 0 0 16px;
  color: var(--text-5-color, #757575);
  font-size: 16px;
  line-height: 1;
}

.rakepage-jump--sum span {
  color: var(--text-1-color, #000);
  font-weight: 700;
}

.rakepage-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 24px 0 0;
}

.rakepage-bottom--subheading {
  margin: 0 0 16px;
  color: var(--text-3-color, #202020);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.rakepage-bottom--date {
  color: var(--text-5-color, #757575);
  font-size: 14px;
  line-height: 16px;
}
