@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

*{
  box-sizing:border-box;
}
  

@charset "UTF-8";
html, body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Exo 2", sans-serif;
  background-color: #1b2030;
  height: 100%;
  color: #2D2A73;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
}

.bordsNew{
  border: 4px solid #20273a;
  border-radius: 8px;
  box-shadow: 0px 0px 12px 3px #151925d4
}

.chat span{
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 3px;
  height: 8px;
  background-color: transparent;
  border-radius: 50px;
}

html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 50px;
  -webkit-box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.3);
  box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.3);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
  outline: 0;
}


.show_ul li, .show_ul{
  list-style-type: disc;
}

.show_ul{
  padding: 15px;
}

a, :before, :after, input, button {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

span, b, p, h1, h2, h3, h4, h5, h6, em {
  cursor: default;
}

span, b, p, h1, h2, h3, h4, h5, h6, em {
  cursor: default;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.justify-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a {
  color: #475A89;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke-width: 0;
  stroke: currentColor !important;
  fill: currentColor !important;
  pointer-events: none;
}

#app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100% !important;!i;!;
}

.flare {
  overflow: hidden;
  position: relative;
}

.flare:before {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  z-index: 2;
  will-change: left;
  -webkit-filter: blur(4rem);
  filter: blur(4rem);
  pointer-events: none;
  opacity: 0;
}

.flare:hover:before {
  -webkit-animation: 0.6s flare;
  animation: 0.6s flare;
}

@-webkit-keyframes flare {
  from {
    left: -200%;
    opacity: 0;
  }
  to {
    left: 150%;
    opacity: 1;
  }
}

@keyframes flare {
  from {
    left: -200%;
    opacity: 0;
  }
  to {
    left: 150%;
    opacity: 1;
  }
}

input, button, textarea {
  font-family: inherit;
  border: 0;
  background: transparent;
  outline: 0;
}

.hdwrapper {
  max-width: 1322px;
  margin: 0 auto;
  position: relative;
}

.wrapper {
  max-width: 1322px;
  margin: 0 auto;
  position: relative;
  margin-top: 50px;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-top: 75px;
  width: calc(100%/* - 424px*/);
  padding-left: 133px;
  padding-right: 30px;
  padding-bottom: 26px;
}

.btn {
  /*height: 48px;
  border-radius: 15px;
  padding: 0px 24px;
  background: #171b28;
  color: #fff;
  font-weight: 500;
  overflow: hidden;
  position: relative;*/
  background-color: #1475e1;
  padding: 15px 20px;
  border-radius: 0 4px 4px 0;
  border: 0px solid #fff !important;
  font-size: 11px !important;
  border-radius: 5px !important;
  color: white !important;
}

.btn span {
  pointer-events: none;
}

.btn .icon {
  margin-right: 13px;
}

.btn.disabled {
  cursor: not-allowed;
}

.btn--gray-border {
  background: transparent;
  border: 2px solid #D8DBEF;
  color: #7D8EBB;
}

.btn--gray-border:hover {
  border: 2px solid #cccfe3;
  color: #475a89;
}

.btn--blue {
  background: #1475e1;
  border-bottom: solid 3px #0a4587;
  border-right: solid 3px #0a4587;
}

.btn--blue span {
  text-shadow: 0px 1px 0px rgba(136, 21, 43, 0.25);
}

.btn--red {
  background: linear-gradient(94.98deg, #F24E47 10.08%, #F542B9 94.83%);
  border-bottom: solid 3px #D22780;
}

.btn--red span {
  text-shadow: 0px 1px 0px rgba(136, 21, 43, 0.38);
}

.btn--orange {
  background: linear-gradient(101.85deg, #F66B95 13.32%, #F79E6C 58.67%), #C4C4C4;
}

.btn--purple {
  background: linear-gradient(101.85deg, #6B71F6 13.32%, #8851E2 58.67%), #C4C4C4;
}

.btn--green {
  background: linear-gradient(101.85deg, #29D195 13.32%, #479BCA 58.67%), #C4C4C4;
}

.btn--pink {
  background: linear-gradient(101.85deg, #FF4ED8 13.32%, #AA1B82 58.67%), #C4C4C4;
}

.icon.money, .icon.small {
  width: 14px;
  height: 14px;
}

#toast-container > div {
  opacity: 1 !important;
  padding: 20px 20px 20px 60px !important;
  border-radius: 20px !important;
  background-position: 20px center !important;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.toast-message {
  font-size: 12px;
  opacity: .6;
}

.toast-title {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 10px;
}

#toast-container > div:hover {
  -webkit-box-shadow: 0 0 4em 3px rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 0 4em 3px rgba(0, 0, 0, 0.25) !important;
}

.user-status {
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  font-size: 12px;
  color: #fff !important;
  margin-right: 8px;
  border-radius: 15px;
}

.user-status.new {
  background: #e0e5f4;
  color: #808ab3 !important;
}

.user-status.wolf {
  background: -webkit-gradient(linear, left top, right top, from(#b2510e), to(#f59c2c));
  background: linear-gradient(to right, #b2510e, #f59c2c);
}

.user-status.predator {
  background: -webkit-gradient(linear, left top, right top, from(#2e4a60), to(#387274));
  background: linear-gradient(to right, #2e4a60, #387274);
}

.user-status.premium {
  background: -webkit-gradient(linear, left top, right top, from(#5e327a), to(#9839b9));
  background: linear-gradient(to right, #5e327a, #9839b9);
}

.user-status.alpha {
  background: -webkit-gradient(linear, left top, right top, from(#706bf6), to(#7d49cf));
  background: linear-gradient(to right, #706bf6, #7d49cf);
}

.user-status.vip {
  background: -webkit-gradient(linear, left top, right top, from(#f27559), to(#ea2424));
  background: linear-gradient(to right, #f27559, #ea2424);
}

.user-status.professional {
  background: -webkit-gradient(linear, left top, right top, from(#d32787), to(#ff0202));
  background: linear-gradient(to right, #d32787, #ff0202);
}

.user-status.legend {
  background: -webkit-gradient(linear, left top, right top, from(#222b94), to(#1183d3));
  background: linear-gradient(to right, #222b94, #1183d3);
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #5F5CE6;
  border-radius: 4px;
  border-radius: 4px;
}

@font-face {
  font-family: "proxima-nova"; 
  src: url("../fonts/proximanova/proximanova_regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-BoldItalic.eot");
  src: local("../fonts/GothamPro/Gotham Pro Bold Italic"), local("GothamPro-BoldItalic"), url("../fonts/GothamPro/GothamPro-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-BoldItalic.woff") format("woff"), url("../fonts/GothamPro/GothamPro-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-Italic.eot");
  src: local("../fonts/GothamPro/Gotham Pro Italic"), local("GothamPro-Italic"), url("../fonts/GothamPro/GothamPro-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-Medium.eot");
  src: local("../fonts/GothamPro/Gotham Pro Medium"), local("GothamPro-Medium"), url("../fonts/GothamPro/GothamPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-BlackItalic.eot");
  src: local("../fonts/GothamPro/Gotham Pro Black Italic"), local("GothamPro-BlackItalic"), url("../fonts/GothamPro/GothamPro-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-BlackItalic.woff") format("woff"), url("../fonts/GothamPro/GothamPro-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-Bold.eot");
  src: local("../fonts/GothamPro/Gotham Pro Bold"), local("GothamPro-Bold"), url("../fonts/GothamPro/GothamPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro Narrow';
  src: url("../fonts/GothamPro/GothamProNarrow-Bold.eot");
  src: local("../fonts/GothamPro/Gotham Pro Narrow Bold"), local("GothamProNarrow-Bold"), url("../fonts/GothamPro/GothamProNarrow-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamProNarrow-Bold.woff") format("woff"), url("../fonts/GothamPro/GothamProNarrow-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro Narrow';
  src: url("../fonts/GothamPro/GothamProNarrow-Medium.eot");
  src: local("../fonts/GothamPro/Gotham Pro Narrow Medium"), local("GothamProNarrow-Medium"), url("../fonts/GothamPro/GothamProNarrow-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamProNarrow-Medium.woff") format("woff"), url("../fonts/GothamPro/GothamProNarrow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-LightItalic.eot");
  src: local("../fonts/GothamPro/Gotham Pro Light Italic"), local("GothamPro-LightItalic"), url("../fonts/GothamPro/GothamPro-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro/GothamPro-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-Light.eot");
  src: local("../fonts/GothamPro/Gotham Pro Light"), local("GothamPro-Light"), url("../fonts/GothamPro/GothamPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-Black.eot");
  src: local("../fonts/GothamPro/Gotham Pro Black"), local("GothamPro-Black"), url("../fonts/GothamPro/GothamPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro/GothamPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro.eot");
  src: local("../fonts/GothamPro/Gotham Pro"), local("GothamPro"), url("../fonts/GothamPro/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro.woff") format("woff"), url("../fonts/GothamPro/GothamPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Exo 2", sans-serif;
  src: url("../fonts/GothamPro/GothamPro-MediumItalic.eot");
  src: local("../fonts/GothamPro/Gotham Pro Medium Italic"), local("GothamPro-MediumItalic"), url("../fonts/GothamPro/GothamPro-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro-MediumItalic.woff") format("woff"), url("../fonts/GothamPro/GothamPro-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}


@media only screen and (max-width: 1725px) {
  .x30__bet-user .history__user span {
    max-width: 25px !important;
  }
}

@media only screen and (max-width: 1600px) {
  .header__links li a span {
    display: none;
  }
  .header__links li a .icon {
    margin-right: 0 !important;
  }
  .header__links li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .x30__bets {
    -ms-grid-columns: (1fr)[3] !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .x30__bet-user .history__user span {
    max-width: 128px !important;
  }
  .crash__history-item-user--win .history__user span {
    max-width: 40px !important;
  }
}

@media only screen and (max-width: 1515px) {
  .x30__bet {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .x30__history {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .x30__bet-game {
    width: 100% !important;
  }
  .x30__bet-user .history__user span {
    max-width: 40px !important;
  }
  .games {
    -ms-grid-columns: (1fr)[3] !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .crash label > span {
    display: none;
  }
  .bonus__item {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .bonus__item--reposts .bx-input__input {
    width: 76% !important;
  }
  .bonus__levels-items, .bonus__reposts-items {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (max-width: 1400px) {
  .crash__history-users {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .profile__stats {
    width: 100% !important;
    margin-top: 15px;
    padding-left: 0 !important;
  }
  .profile__user {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1250px) {
  .chat {
    width: 370px !important;
  }
  main, .header, .footer {
    width: calc(100% - 370px) !important;
  }
  .sidebar__profile {
    display: none;
  }
  .footer__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    line-height: 24px;
  }
  .footer__links li {
    margin-right: 0 !important;
  }
  .footer__text {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  .x30__bets {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .x30__bet-user .history__user span {
    max-width: 75px !important;
  }
}
@media only screen and (max-width: 1125px) {
  .sidebar {
    display: none;
  }
  .chat {
    width: 100% !important;
    z-index: 4;
    background: #EBECF2 !important;
    margin-top: 75px;
    height: calc(100% - 140px) !important;
    display: none;
  }
  .chat:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 8px;
    left: 0;
    background: url(../images/borders.svg) repeat;
  }
  main {
    z-index: 1;
  }
  .header {
    padding-left: 20px !important;
    width: 100% !important;
    padding-right: 20px !important;
  }
  .history table {
    display: none;
  }
  main, .footer {
    padding-left: 20px !important;
    width: 100% !important;
    padding-right: 20px !important;
  }
  .x30__bets {
    -ms-grid-columns: (1fr)[3] !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .footer {
    padding-bottom: 110px !important;
  }
  .mobile-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .mobile-menuNew {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  html, body {
    height: auto !important;
  }
}

@media only screen and (max-width: 725px) {
  .x30__bets {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .overlayed {
    padding-top: 30px !important;
  }
  .games {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .dice__bet {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mines__left {
    width: 100% !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 15px;
  }
  .mines__right {
    margin: 0 auto;
    width: 340px !important;
  }
  .mines__wrapper {
    width: 100%;
  }
  .keno__bet-settings {
    height: auto !important;
  }
  .keno__bet-left {
    width: 100% !important;
  }
  .keno__bet-right {
    width: 100%;
    padding: 10px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: solid 1px #f1f2ff;
  }
  .keno__bet {
    padding: 20px 25px !important;
  }
  .bonus__hits-content {
    background-size: cover !important;
    padding-top: 150px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .bonus__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bonus__content .bx-input__input {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .shoot .crazygame__container {
    background: #31251A;
  }
  .shoot .crazygame__center-ellipse {
    width: 640px !important;
    height: 640px !important;
    left: 50% !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }
  .shoot .crazygame__center-ellipse-border {
    width: 610px !important;
    height: 610px !important;
  }
  .shoot .crazygame__game-select {
    border-radius: initial !important;
    -webkit-backdrop-filter: blur(1px) !important;
    backdrop-filter: blur(1px) !important;
    background: rgba(49, 37, 26, 0.75) !important;
  }
}

@media only screen and (max-width: 675px) {
  .wallet__methods {
    width: 100% !important;
    margin-bottom: 15px;
    height: 200px !important;
  }
  .wallet__content {
    padding-left: 0 !important;
    width: 100% !important;
  }
  .wallet__order {
    margin-top: 20px;
  }

  .shoot__bet {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .shoot__bet-btns {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0 !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
  }
  .shoot__bet-btn-settings {
    margin-right: 15px;
  }
  .shoot__bet-btn-settings:nth-last-child(1) {
    margin-right: 0;
  }
  .shoot__bets {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .shoot__bet-item--bonus {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}


@media only screen and (max-width: 650px) {
  .shoot__game-wrapper {
    width: 100% !important;
    padding: 0px 20px;
  }
}

@media only screen and (max-width: 625px) {
  .header__links {
    display: none !important;
  }
  .header__right .sidebar__logotype {
    display: block !important;
  }
  .header__right {
    /* width: 100% !important; */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .shoot .cash-hunt__inner {
    -ms-grid-columns: (1fr)[6] !important;
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .x30__rocket {
    right: -60px !important;
    bottom: -60px !important;
  }
  .history {
    overflow-x: auto;
  }
  .history table {
    min-width: 925px;
  }
  .crash__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .crash__left {
    width: 100% !important;
    margin-top: 15px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .crash__right {
    width: 100% !important;
  }
  .crash__canvas {
    height: 230px;
  }
  .refferal__stats {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 !important;
    margin-top: 20px;
  }
  .refferal__left {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .profile__stats {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .popup .bx-input__create-coupon {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .popup .bx-input__create-coupon .bx-input__input:nth-last-child(1) {
    grid-column: auto !important;
  }
  .popup .close {
    position: absolute;
    right: -8px;
    top: -15px;
  }
}

@media only screen and (max-width: 1600px) {
  .x30__bet-users, .x100__bet-users {
    display: none;
  }

}
@media only screen and (max-width: 525px) {
  .x30__bet-users, .x100__bet-users {
    display: none;
  }
  .x30__bet-info {
    margin-bottom: 0 !important;
  }
  .x30__bets .x30__bet {
    margin-bottom: 0 !important;
  }
  .keno__title {
    display: none;
  }
  .keno__content {
    margin-top: 0 !important;
  }
  .keno__round-info {
    padding: 25px 30px !important;
  }
  .keno__canvas {
    max-width: 365px !important;
  }
}

@media only screen and (max-width: 475px) {
  .header__right .sidebar__logotype {
    width: 150px !important;
    height: 24px !important;
  }
  .header__user-b {
    margin-right: 15px !important;
  }
  .header__user-profile {
    margin-left: 8px !important;
  }
  .games {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .popup__title span {
    font-size: 12px !important;
  }

  .shoot .coinflip__inner {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
    grid-gap: 20px;
    padding: 20px !important;
  }
  .shoot .coinflip {
    background: #31251A !important;
  }
}

.sidebar {
  position: fixed;
  left: 0px;
  top: 0;
  padding: 26px 30px;
  height: 100%;
  z-index: 5;
}

.sidebar__inner {
  position: relative;
  width: 73px;
  height: 100%;
}

.sidebar__top {
  position: relative;

}

.sidebar__online {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.sidebar__block {
  border-radius: 25px;
  position: relative;
  width: 100%;
  background: #F4F6FF;
}

.sidebar__games {
  position: relative;
  padding: 5px 0px;
  /*padding-bottom: 15px;*/
  margin-bottom: 20px;
}

.sidebar__games:before {
  /*content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 38px;
  height: 38px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: #EBECF2;*/
}

.sidebar__games:after {
  /*content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 18px;
  height: 18px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: #20273b;
  border-radius: 4px;*/
}

.sidebar__logotype {
  position: relative;
  width: 150px;
  height: 24px;
  margin-right: 36px;
  margin-bottom: 40px;
}

.sidebar__logotype:before {
  -webkit-filter: blur(0.8rem); 
  filter: blur(0.8rem);
}

.sidebar__logotype a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  /*background: url(../images/32.svg) no-repeat center center / contain;*/
    background-size: cover;
}

.sidebar__game {
  width: 52px;
  height: 52px;
  position: relative;
  border-radius: 50%;
}

.sidebar__game:not(.sidebar__game--active):hover {
  color: #fff;
}

.sidebar__game:not(.sidebar__game--active):hover .sidebar__game-name {
  opacity: 1;
  padding-left: 52px;
  padding-right: 20px;
  color: #fff;
}

.sidebar__game .icon {
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.sidebar__game-center {
  z-index: 1;
  height: 100%;
  width: 100%;
  position: relative;
}

.sidebar__game--hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #3a7be6;
  opacity: 0;
}

.sidebar__game-name {
  position: absolute;
  font-weight: 600;
  height: 100%;
  left: 0px;
  background: #2D2A73;
  border-radius: 50px;
  opacity: 0;
  white-space: nowrap;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  pointer-events: none;
  text-transform: uppercase;
}

.sidebar__game--active {
  color: #706BF6;
}

.sidebar__game--active .sidebar__game--hover {
  opacity: 1;
}

.sidebar__profile {
  position: relative;
  padding: 10px 0px;
  padding-bottom: 10px;
}

.sidebar__profile .sidebar__game:hover {
  color: #2D2A73;
}

.sidebar__profile:before {
  /*content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 38px;
  height: 38px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: #EBECF2;*/
}

.sidebar__profile:after {
  /*content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 18px;
  height: 18px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: #20273b;
  border-radius: 4px;*/
}

.sidebar__user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 5px;
  position: relative;
}

.sidebar__online {
  font-size: 12px;
  font-weight: 600;
  color: #2FA6AC;
}

.sidebar__online i {
  width: 6px;
  height: 6px;
  background: #2FA6AC;
  border-radius: 50px;
  margin-right: 12px;
  -webkit-box-shadow: 0px 0px 0px 6px rgba(66, 186, 192, 0.17);
  box-shadow: 0px 0px 0px 6px rgba(66, 186, 192, 0.17);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}




@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #42bac0;
    box-shadow: 0 0 0 0 #42bac0;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(66, 186, 192, 0);
    box-shadow: 0 0 0 10px rgba(66, 186, 192, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(66, 186, 192, 0);
    box-shadow: 0 0 0 0 rgba(66, 186, 192, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #42bac0;
    box-shadow: 0 0 0 0 #42bac0;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(66, 186, 192, 0);
    box-shadow: 0 0 0 10px rgba(66, 186, 192, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(66, 186, 192, 0);
    box-shadow: 0 0 0 0 rgba(66, 186, 192, 0);
  }
}

.sidebar__socials {
  position: relative;
  grid-gap: 15px;
}

.sidebar__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
}

.sidebar__socials a .icon {
  width: 16px;
  height: 16px;
}

.sidebar__social--vk {
  background: #016FED;
}

.sidebar__social--vk:hover {
  -webkit-box-shadow: 0px 0px 0em 7px rgba(1, 111, 237, 0.3);
  box-shadow: 0px 0px 0em 7px rgba(1, 111, 237, 0.3);
}

.sidebar__social--tg {
  background: #2399D3;
}

.sidebar__social--tg:hover {
  -webkit-box-shadow: 0px 0px 0em 7px rgba(35, 153, 211, 0.3);
  box-shadow: 0px 0px 0em 7px rgba(35, 153, 211, 0.3);
}


.chat {
  position: fixed;
  right: 0;
  width: 424px;
  height: 100%;
  background: linear-gradient(286.81deg, #F0F2FF 14.71%, rgba(235, 236, 242, 0.6));
  padding: 17px 0;
  top: 0;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  border-left: solid 1px #DEE2F8;
  z-index: 1;
}

.chat__heading {
  padding: 5px 23px;
  line-height: 22px;
  padding-right: 12px;
}

.chat__header-info{
 padding: 5px 23px;
 line-height: 22px;
 padding-right: 12px;
 position: absolute;
 top: 70px;
 z-index: 1000;
 width: 100%;
 background: linear-gradient(286.81deg, #F0F2FF 14.71%, rgba(235, 236, 242, 1));
}

.theme--dark .chat__header-info{

  background: linear-gradient(262deg, #232845 2.45%, rgba(30, 34, 63, 1) 61.7%)!important;

}

@media only screen and (max-width: 1125px){
  .chat__header-info {
    background: #EBECF2!important;
  }

  .theme--dark .chat__header-info {
    background: #1b2030!important;
  }
}

.chat__giveaway {
  position: relative;
  /*padding: 0px 30px;*/
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  /*margin-bottom: 28px;*/
}

.chat__giveaway-inner {
  background-color: #fafaff;
  padding: 15px 25px;
  border-radius: 17px;
  overflow: hidden;
  border: solid 4px #b2b7d3;
  position: relative;
}

.theme--dark .chat__giveaway-inner{
  background-color: #262b4d;
  border: solid 4px #4d517e;
}

.chat__giveaway-inner h5 {
  font-size: 13px;
  color: #475a89;
  text-transform: uppercase;
  font-weight: 800;
  padding-bottom: 12px;
}

.theme--dark .chat__giveaway-inner h5{
  color: #fff;
}
.chat__giveaway-timer--span {
  background-color: #b2b7d3;
  border-radius: 7px;
  width: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 28px;
  font-weight: 900;
  color: #fff !important;
  margin: 0px 2px;
}

.theme--dark .chat__giveaway-timer--span{
  background-color: #4d517e;
}

.chat__giveaway-timer span {
  color: #9C6DF2;
}

.chat__giveaway-image {
  position: absolute;
  right: -12px;
  top: 0;
  pointer-events: none;
}

.chat__online .icon {
  margin-right: 20px;
  color: #7887AE;
  width: 20px;
  height: 20px;
}

.chat__online span {
  font-weight: 500;
  color: #7987AE;
  font-size: 12px;
}

.chat__online p {
  font-size: 18px;
  font-weight: 600;
}

.chat__buttons {
  position: relative;
}

.chat__buttons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #fff;
  margin-right: 6px;
  color: #7887AE;
}

.chat__buttons a:hover {
  color: #2D2A73;
}

.chat__buttons a:nth-last-child(1) {
  margin: 0;
}

.chat__buttons a .icon {
  margin: 0;
  width: 18px;
  height: 18px;
}

/*.chat.chat--stickers .chat__messages, .chat.chat--smiles .chat__messages{
  height: calc(100% - 360px)!important;
}


.chat__messages {
  position: relative;
  height: calc(100% - 200px);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
*/
.chat.chat--stickers .chat__messages, .chat.chat--smiles .chat__messages{
  height: calc(100% - 420px)!important;
}

.chat__messages {
  position: relative;
  height: calc(100% - 257px);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}





.chat__messages {
  position: relative;
  padding: 20px 23px;
  padding-bottom: 0px;
  padding-top: 0;
}

.chat__messages .ss-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.chat__msg {
  position: relative;
  width: calc(100% - 25px);
  margin-bottom: 20px;
}

.chat__msg:nth-last-child(1) {
  margin-bottom: 0;
}

.chat__msg-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.chat__msg-info {
  width: calc(100% - 48px);
  line-height: 23px;
  padding-left: 20px;
  position: relative;
}

.chat__msg-info span {
  color: #2D2A73;
  font-weight: 500;
}

.chat__msg-info b {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: rgba(118, 125, 171, 0.5);
  font-weight: normal;
}

.chat__msg-message {
  font-size: 12px;
  padding: 10px 20px;
  background: #F9F9FF;
  margin-top: 10px;
  border-radius: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
}

.chat__msg-message span {
  font-weight: normal;
  line-height: 18px;
  color: #767DAB;
}

.chat__msg--your .chat__msg-avatar {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.chat__msg--your .chat__msg-info {
  padding-left: 0;
  padding-right: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.chat__msg--your .chat__msg-info b {
  display: none;
}

.chat__msg--your .chat__msg-info span {
  color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#f24e47), to(#f542b9));
  background-image: linear-gradient(to right, #f24e47, #f542b9);
}

.chat__msg--your .chat__msg-message span {
  color: #767DAB !important;
  background-image: none;
}

.chat__input {
  position: relative;
  width: 100%;
}

.chat__input input {
  position: relative;
  padding: 26px 23px;
  width: 100%;
  font-weight: 500;
  color: #29315D;
}

.chat__input input::-webkit-input-placeholder {
  color: #8895BA;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.chat__input input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.chat__send .chat__buttons {
  padding-right: 13px;
}

.chat__send .chat__buttons a {
  background: transparent;
  margin-right: 3px;
}

.chat__send .chat__buttons a.active {
  color: #0474ff;
}

.chat__smiles {
  background: #F3F4F8;
  position: relative;
  width: calc(100% - 18px);
  height: 150px;
  opacity: 0;
  left: -1px;
  visibility: hidden;
  padding: 13px;
  padding-bottom: 0;
  display: none;
}

.chat__smiles.chat__smiles--active {
  opacity: 1;
  visibility: visible;
}

.chat__smiles.chat__smiles--smiles .chat__smiles-scroll {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 11px;
}

.chat__smiles.chat__smiles--stickers .chat__smiles-scroll {
  width: calc(100% - 18px);
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 11px;
}

.chat__smiles.chat__smiles--stickers .chat__smiles-item {
  height: 86.5px;
}

.chat__smiles.chat__smiles--stickers .chat__smiles-item img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
}

.chat__smiles .ss-content {
  position: relative;
}

.chat__smiles-item {
  height: 38.13px;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  -webkit-transition: .15s ease;
  transition: .15s ease;
}

.chat__smiles-item:hover {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 13px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 13px rgba(0, 0, 0, 0.05);
}

.chat__smiles-item img {
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.chat.chat--smiles .chat__messages {
  height: calc(100% - 255px);
}

.chat.chat--smiles .chat__smiles--smiles {
  opacity: 1;
  visibility: visible;
  display: block;
}

.chat.chat--stickers .chat__messages {
  height: calc(100% - 255px);
}

.chat.chat--stickers .chat__smiles--stickers {
  opacity: 1;
  visibility: visible;
  display: block;
}

.chat__msg-smile {
  width: 24px;
  height: 24px;
  position: relative;
  vertical-align: middle;
  margin: 0px 3px;
  pointer-events: none;
}

.chat__msg-stickers {
  vertical-align: middle;
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.chat__msg-message--sticker {
  background: transparent;
}

.chat__buttons-admins {
  position: absolute;
  bottom: 0;
  right: 0;
}
.select {
  display: block;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 600;
  color: #475A89;
  line-height: 1.3;
  padding: 15px 15px;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border-radius: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(235, 236, 242, 0.5);
  border: 0;
  cursor: pointer;
}

.bx-input--select:before {
  content: '';
  position: absolute;
  right: 20px;
  top: 43px;
  width: 8px;
  height: 8px;
  border-right: solid 1px;
  border-bottom: solid 1px;
  color: #aeb9d5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.chat__buttons-admins a {
  position: relative;
  border-radius: 50%;
  margin-right: 6px;
  color: rgba(118, 125, 171, 0.5);
}

.chat__buttons-admins a .icon {
  width: 14px;
  height: 14px;
}

.chat__buttons-admins a:nth-last-child(1) {
  margin-right: 0;
}

.chat__buttons-admins a:hover {
  color: #767dab;
}

.close-chat {
  display: none;
}

.chat--opened .chat {
  display: block !important;
}

.chat--opened .close-chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header {
  position: fixed;
  height: 75px;
  width: calc(100%/* - 424px*/);
  padding-left: 210px;
  padding-right: 30px;
  z-index: 4;
  background: #ebecf2;
}

.header .hdwrapper {
  height: 100%;
}

.header__links {
  position: relative;
  height: 100%;
}

.header__links li {
  position: relative;
  /* margin-right: 30px; */
  height: 100%;
}

.header__links li a {
  position: relative;
  color: #7987AE;
  text-transform: uppercase;
  font-weight: 500;
  height: 100%;
  vertical-align: middle;
}

.header__links li a:hover {
  color: #475a89;
}

.header__links li a .icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  pointer-events: none;
}

.header__links li a span {
  pointer-events: none;
}

.header__user-b {
  position: relative;
  margin-right: 20px;
}

.header__user-b span {
  font-size: 13px;
  font-weight: 600;
}

.header__user-b .icon {
  /* margin-left: 8px; */
  width: 16px;
  height: 16px;
  color: #1475e1;44; */
}

.header__user-profile {
  position: relative;
  margin-left: 15px;
  width: 70px;
  height: 48px;
  padding: 0px 15px;
  border-radius: 15px;
  cursor: pointer;
  background: #E0E3F1;
  color: #7887AE;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.header__user-profile.dropdown {
  background: #fff;
  border-radius: 16px 16px 0px 0px;
}

.header__user-profile.dropdown .header__user-dropdown {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.header__user-profile.dropdown:before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  top: 15px;
}

.header__user-profile:before {
  content: '';
  border: 6px solid transparent;
  border-top: 7px solid #7887ae;
  position: absolute;
  right: 15px;
  top: 20px;
}

.header__user-profile .icon {
  width: 14px;
  pointer-events: none;
  height: 14px;
}

.header__user-dropdown {
  position: absolute;
  right: 0;
  top: 43px;
  background: #fff;
  -webkit-box-shadow: 0px 17px 18px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 17px 18px rgba(0, 0, 0, 0.02);
  border-radius: 16px 0px 16px 16px;
  width: 206px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.header__user-dropdown a {
  padding: 18px 21px;
  color: #67749A;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(227, 229, 250, 0.5);
}

.header__user-dropdown a b {
  color: #475A89;
}

.header__user-dropdown a:hover {
  background: rgba(0, 0, 0, 0.03);
}

.header__user-dropdown a:nth-last-child(1) {
  border: 0;
  border-radius: 0px 0px 16px 16px;
}

.header__user-dropdown a:hover {
  color: #576181;
}

.header__user-dropdown a .icon {
  margin-right: 12px;
  pointer-events: none;
}

.header__user-dropdown a span {
  position: relative;
  pointer-events: none;
}

.header__user-dropdown--id {
  pointer-events: none;
  font-size: 14px !important;
  cursor: default;
}

.header__right {
  position: relative;
}

.header__right .sidebar__logotype {
  display: none;
  margin: 0;
}

.footer {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: calc(100%/* - 424px*/);
  padding-left: 133px;
  padding-right: 30px;
  padding-bottom: 26px;
  font-size: 12px;
}

.footer__links {
  position: relative;
}

.footer__link {
  position: relative;
  margin-right: 24px;
}

.footer__link:nth-last-child(1) {
  margin-right: 0;
}

.footer__link a {
  text-transform: uppercase;
  color: #98A0CF;
  font-size: 12px;
  font-weight: 500;
}

.footer__link a:hover {
  color: #737aa5;
}

.footer__text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(152, 160, 207, 0.5);
}

.mobile-menuNew {
  display: none;
}

.payment-list__img {
  max-width: 70px;
}

.mobile-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 65px;
  background: #e4e6f2;
  z-index: 8;
  padding: 0px 20px;
  display: none;
  touch-action: manipulation !important;
}

.mobile-menu__links {
  width: 100%;
  position: relative;
  touch-action: manipulation !important;
}

.mobile-menu__links li a {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  touch-action: manipulation !important;
}


.mobile-menu__links li a.active {
  color: #706BF6;
}

.mobile-menu__links button {
  /* ... Ã‘â€šÃÂ²ÃÂ¾ÃÂ¸ ÃÂ´Ã‘â‚¬Ã‘Æ’ÃÂ³ÃÂ¸ÃÂµ Ã‘ÂÃ‘â€šÃÂ¸ÃÂ»ÃÂ¸ ... */
  touch-action: manipulation; /* ÃÅ¸ÃÂ¾ÃÂ·ÃÂ²ÃÂ¾ÃÂ»Ã‘ÂÃÂµÃ‘â€š pinch-zoom, ÃÂ½ÃÂ¾ Ã‘Æ’ÃÂ±ÃÂ¸Ã‘â‚¬ÃÂ°ÃÂµÃ‘â€š scroll/pan */
}

.mobile-navbar {
  position: fixed;
  z-index: 6;
  left: 0;
  top: 0;
  height: calc(100% - 0px);
  background-color: #EBECF2;
  width: 100%;
  margin-top: 75px;
  padding: 20px;
  padding-top: 30px;
  display: none;
}

.mobile-navbar:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 8px;
  left: 0;
  background: url(../images/borders.svg) repeat;
}

.mobile-navbar a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 15px;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 10px;
}

.mobile-navbar a:nth-last-child(1) {
  margin-bottom: 0;
}

.more--opened .mobile-navbar {
  display: block;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #EBECF2;
}

.preloader-remove .preloader__lift{
  opacity: 0;
  transition: .4s;
}

.preloader__lift {
  position: relative;
  width: 275px;
  height: 320px;
    -webkit-animation: startupWindowAnimation 1s ease-in-out .2s infinite normal;
    animation: startupWindowAnimation 1s ease-in-out .2s infinite normal;
}

.preloader__lift-container {
  width: 220px;
  height: 270px;
  position: relative;
  border-radius: 20px;
  padding: 12px;
  overflow: hidden;
}

.preloader__door {
  width: 93px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#27385E), to(#1C2D52));
  background: linear-gradient(180deg, #27385E 0%, #1C2D52 100%);
  -webkit-box-shadow: inset 5px 6px 12px rgba(73, 93, 137, 0.49);
  box-shadow: inset 5px 6px 12px rgba(73, 93, 137, 0.49);
  border-radius: 20px;
}

.preloader__door--one {
  -webkit-animation: loading ease 1s;
  animation: loading ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

@-webkit-keyframes loading {
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes loading {
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.preloader__door--two {
  -webkit-animation: loading2 ease 1s;
  animation: loading2 ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

@-webkit-keyframes loading2 {
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes loading2 {
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.preloader__loader {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation: opacity 5s ease;
  animation: opacity 5s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.preloader.preloader-remove{
  /* opacity: 0; */
  /* transition: .8s; */
  /* z-index: 0; */
}
.bx-input {
  position: relative;
  width: 100%;
  margin-bottom: 10px !important;
}

.bx-input:nth-last-child(1) {
  margin-bottom: 0;
}

.bx-input__input {
  position: relative;
  background: #F3F4F8;
  border-radius: 15px;
  padding: 0px 20px;
}

.bx-input__input label {
  height: 55px;
  font-weight: 600;
  text-transform: uppercase;
  color: #475A89;
}

.bx-input__input input {
  height: 55px;
  color: #7987AE;
  font-weight: 500;
  width: 90px;
  text-align: right;
}

.popup .bx-input__input input {
  height: 55px;
  color: #7987AE;
  font-weight: 500;
  width: -webkit-fill-available;
  text-align: right;
}

.bx-input__input input::-webkit-input-placeholder {
  color: rgba(120, 135, 174, 0.5);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}

.bx-input__input input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.bx-input__input .icon {
  margin-left: 8px;
  color: #f2ac44;
}

.bx-input__text {
  color: #7887AE;
  font-weight: 500;
}

.bx-input__btn {
  margin-top: 10px;
}

.bx-input__btn .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.help {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  padding: 9px 11px;
  border-radius: 50px;
  color: #5B330E;
  background: linear-gradient(91.96deg, rgba(255, 138, 31, 0.4) 1.43%, rgba(255, 138, 31, 0) 98.35%);
}

.help:hover {
  color: #FC881D;
}

.help .icon {
  width: 16px;
  margin-right: 10px;
  height: 16px;
  pointer-events: none;
  color: #FC881D;
}

.help span {
  pointer-events: none;
}

.slot_games {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 13px;
  position: relative;
  margin-bottom: 13px;
}


.games {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 13px;
  position: relative;
  margin-bottom: 35px;
}

.games__item {
  position: relative;
  height: 200px;
  border-radius: 25px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  padding: 24px 28px;
  overflow: hidden;
}

.games__item:before {
  -webkit-filter: blur(10rem);
  filter: blur(10rem);
}

.games__item.games__item--x30 {
  background: linear-gradient(236.46deg, #DA6BF6 -0.12%, #706BF6 72.27%);
  border-bottom: solid 4px #704CE6;
}

.games__item.games__item--dice {
  background: linear-gradient(236.46deg, #51CC73 -0.12%, #2092AB 72.27%);
  border-bottom: solid 4px #1A7981;
}

.games__item.games__item--mines {
  background: linear-gradient(236.46deg, #FF4444 -0.12%, #CD5614 72.27%);
  border-bottom: solid 4px #A03903;
}

.games__item.games__item--crash {
  background: linear-gradient(236.46deg, #FF1212 -0.12%, #E31CCF 72.27%);
  border-bottom: solid 4px #A30078;
}

.games__item.games__item--x100 {
  background: linear-gradient(236.46deg, #E01B91 -0.12%, #1C2BA2 72.27%);
  border-bottom: solid 4px #120F86;
}

.games__item.games__item--keno {
  background: linear-gradient(236.46deg, #B8812F -0.12%, #74073B 72.27%);
  border-bottom: solid 4px #56072B;
}

.games__item.games__item--jackpot {
  background: linear-gradient(236.46deg, #E01B62 -0.12%, #1469CD 72.27%);
  border-bottom: solid 4px #0851A5;
}

.games__item.games__item--cashhunt {
  background: linear-gradient(236.46deg, #44E9FF -0.12%, #145ECD 72.27%);
  border-bottom: solid 4px #0851A5;
}

.games__item--boomcity{
  background: linear-gradient(236.46deg, #ffae2e -0.12%, #ff6c2e 72.27%);
  border-bottom: solid 4px #ff562e;
}

.games__item.games__item--coin {
  background: linear-gradient(236.46deg, #572dfb -0.12%, #0d1395 72.27%);
  border-bottom: solid 4px #13116c;
}

.games__item.games__item--slots {
  background: linear-gradient(96.77deg, #2D448D -2.15%, #0D4BC2 102.81%), linear-gradient(142.76deg, #2A58CC 1.26%, #1F3D88 111.51%);
  border-bottom: solid 4px #133370;
  height: 200px;
}

.games__item.games__item--slots .games__item-text span{
  font-size: 40px;
}
.games__item.games__item--slots .games__item-text p{
  font-size: 16px;
}

.adsblock {
        text-align: center;
    }
    .ads-img {
        max-height: 310px;
        max-width: 100%;
        border-radius: 15px;
        /*transition: 1s;
  -webkit-animation: breathing 4s ease-out infinite normal;
      animation: breathing 4s ease-out infinite normal;*/
    }
.ads-img:hover {
cursor: pointer;
}
    #slots-textbg {
            color: #f66b6b;
        font-size: 13px;
animation: blinker 1s linear infinite;
    }

@keyframes blinkerSocialTG {
  50% {
    box-shadow: 0px 0px 0em 8px rgba(35, 153, 211, 0.3);
  }
}

@keyframes blinkerSocialVK {
  50% {
    box-shadow: 0px 0px 0em 8px rgba(1, 111, 237, 0.3);
  }
}

@keyframes blinkerLives {
  50% {
    box-shadow: 0px 0px 0em 8px rgba(1, 111, 237, 0.3);
  }
}

@keyframes blinker {
  50% {
    color: red;
    opacity: 0;
  }
}

@keyframes blinker2 {
  50% {

transform: scale(1.07);
  }
}
@keyframes blinker3 {
  50% {

transform: scale(1.1);
  }
}
@keyframes blinker4 {
  50% {

transform: scale(1.2);
  }
}


.games__item-bg-slots{
  position: absolute;
  right: -150px;
  top: 5%;
  height: 350px;
 }

 .games__item-bg-slots img{
  height: 100%;
 }
 
 .games__item-bg-slots img:nth-child(1){
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 100px;
  z-index: 1;
 }

 .games__item-bg-slots img:nth-child(2){
  position: relative;
  z-index: 2;
 }

 @media(max-width: 650px){
  .games__item.games__item--slots {
    padding: 24px 28px;
    height: 200px;
  }

  .games__item.games__item--slots .games__item-text span{
    font-size: 32px;
  }
  .games__item.games__item--slots .games__item-text p{
    font-size: 12px;
  }

  .games__item--slots.align-center{
    align-items: flex-end;
  }

  .games__item-bg-slots{
    position: absolute;
    right: 0px;
    top: 5%;
    height: 350px;
   }
 }

.games__item.games__item--coin .coinflip__wrapper {
  position: absolute;
  right: -13%;
  bottom: 6%;
}

.games__item.games__item--coin .coinflip__wrapper .coinflip__back {
  -webkit-animation: back-rotation 2s ease infinite;
  animation: back-rotation 2s ease infinite;
}

@-webkit-keyframes back-rotation {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

@keyframes back-rotation {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

.games__item.games__item--coin .coinflip__wrapper .coinflip__front {
  -webkit-animation: front-rotation 2s ease infinite;
  animation: front-rotation 2s ease infinite;
}

@-webkit-keyframes front-rotation {
  from {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes front-rotation {
  from {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

.games__item.games__item--shoot {
  background: linear-gradient(236.46deg, #ffb03a -0.12%, #0d951c 72.27%);
  border-bottom: solid 4px #306e22;
}

.games__item-text {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.games__item-text span {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.14);
}

.games__item-text p {
  font-size: 12px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.67);
}


.games__item-bg-shoot {
  position: absolute;
  left: 25%;
  bottom: -90px;
}

 
.games__item-bg-ellipse, .games__item-bg-ellipse_snow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
  border-radius: 35px;
  background: url(../images/games/bg-ellipse.svg) no-repeat center center/cover;
}

.games__item-bg-ellipse_snow{
  background: transparent;
}

.games__item-bg-confetti {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background: url(../images/games/bg-confetti.png) no-repeat center center/cover;
  mix-blend-mode: lighten;
}

.games__item-bg--x30 {
  position: absolute;
  bottom: -10%;
  width: 500px;
  height: 500px;
  z-index: 2;
  background: url(../images/games/x30/wheel-card.svg) no-repeat center center/contain;
  -webkit-animation: rotate 60s linear infinite;
  animation: rotate 60s linear infinite;
  left: 30%;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.games__item-bg--dice {
  position: absolute;
  left: 0%;
  bottom: -65%;
  width: 500px;
  height: 500px;
  z-index: 2;
  background: url(../images/games/dice/dice-card.png) no-repeat center center/contain;
}

.games__item-bg--dice-2 {
  position: absolute;
  width: 60px;
  height: 40px;
  right: 5%;
  bottom: 15%;
  z-index: 3;
  background: url(../images/games/dice/dice.png) no-repeat center center/contain;
  -webkit-animation: 12s linear infinite roll_dice;
  animation: 12s linear infinite roll_dice;
  animation-direction: alternate-reverse;
}

@-webkit-keyframes roll_dice {
  0% {
    -webkit-transform: rotate(-21deg) translateY(30px);
    transform: rotate(-21deg) translateY(30px);
  }
  50% {
    -webkit-transform: rotate(360deg) translateY(-12px) translateX(-22px);
    transform: rotate(360deg) translateY(-12px) translateX(-22px);
  }
  100% {
    -webkit-transform: rotate(-40deg) translateY(-30px);
    transform: rotate(-40deg) translateY(-30px);
  }
}

@keyframes roll_dice {
  0% {
    -webkit-transform: rotate(-21deg) translateY(30px);
    transform: rotate(-21deg) translateY(30px);
  }
  50% {
    -webkit-transform: rotate(360deg) translateY(-12px) translateX(-22px);
    transform: rotate(360deg) translateY(-12px) translateX(-22px);
  }
  100% {
    -webkit-transform: rotate(-40deg) translateY(-30px);
    transform: rotate(-40deg) translateY(-30px);
  }
}

.games__item-bg--dice-3 {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 25%;
  bottom: 35%;
  z-index: 3;
  background: url(../images/games/dice/dice.png) no-repeat center center/contain;
  -webkit-animation: 12s linear infinite roll_dice;
  animation: 12s linear infinite roll_dice;
  animation-direction: alternate-reverse;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}

@keyframes roll_dice {
  0% {
    -webkit-transform: rotate(-21deg) translateY(30px);
    transform: rotate(-21deg) translateY(30px);
  }
  50% {
    -webkit-transform: rotate(360deg) translateY(-12px) translateX(-22px);
    transform: rotate(360deg) translateY(-12px) translateX(-22px);
  }
  100% {
    -webkit-transform: rotate(-40deg) translateY(-30px);
    transform: rotate(-40deg) translateY(-30px);
  }
}

.games__item-bg--dice-2 {
  position: absolute;
  width: 60px;
  height: 40px;
  right: 5%;
  bottom: 15%;
  z-index: 3;
  background: url(../images/games/dice/dice.png) no-repeat center center/contain;
  -webkit-animation: 12s linear infinite roll_dice;
  animation: 12s linear infinite roll_dice;
  animation-direction: alternate-reverse;
}

@keyframes roll_dice {
  0% {
    -webkit-transform: rotate(-21deg) translateY(30px);
    transform: rotate(-21deg) translateY(30px);
  }
  50% {
    -webkit-transform: rotate(360deg) translateY(-12px) translateX(-22px);
    transform: rotate(360deg) translateY(-12px) translateX(-22px);
  }
  100% {
    -webkit-transform: rotate(-40deg) translateY(-30px);
    transform: rotate(-40deg) translateY(-30px);
  }
}

.games__item-bg--mines {
  position: absolute;
  left: 0px;
  top: -100px;
  width: 130%;
  height: 170%;
  background: url(../images/games/mines/mines-card.svg) repeat center center/cover;
  background-position-y: 297px;
  background-size: 450px 580px;
  -webkit-animation: 13s linear infinite mines;
  animation: 13s linear infinite mines;
  -webkit-transition-duration: 1000s;
  transition-duration: 1000s;
}

@-webkit-keyframes mines {
  from {
    background-position: 450px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes mines {
  from {
    background-position: 450px 0;
  }
  to {
    background-position: 0 0;
  }
}

.games__item-bg--mines2 {
  position: absolute;
  right: -70px;
  top: -40px;
  width: 230px;
  height: 240px;
  background: url(../images/games/mines/mines.png) no-repeat center center/cover;
  z-index: 2;
  background-size: contain;
}

.games__item-bg--crash {
  position: absolute;
  right: -90px;
  top: -50px;
  width: 230px;
  height: 240px;
  background: url(../images/games/crash/crash.png) no-repeat center center/cover;
  background-size: contain;
}

.games__item-bg--crash-x {
  position: absolute;
  right: 0px;
  top: -100px;
  width: 170px;
  height: 490px;
  background: url(../images/games/crash/crash-x.svg) repeat center center/cover;
  background-position-y: 0;
  background-size: 170px 310px;
  -webkit-animation: 8s linear infinite crash;
  animation: 8s linear infinite crash;
  -webkit-transition-duration: 1000s;
  transition-duration: 1000s;
  z-index: 2;
}

@-webkit-keyframes crash {
  from {
    background-position: 0px 310px;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes crash {
  from {
    background-position: 0px 310px;
  }
  to {
    background-position: 0 0;
  }
}

.games__item-bg--x100 {
  position: absolute;
  left: 30%;
  bottom: 0%;
  width: 600px;
  height: 600px;
  z-index: 2;
  background: url(../images/games/x100/wheel-card.svg) no-repeat center center/contain;
  -webkit-animation: rotate 30s linear infinite;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.games__item-bg--keno-x {
  position: absolute;
  right: 0px;
  top: -100px;
  width: 170px;
  height: 490px;
  background: url(../images/games/keno/keno.svg) repeat center center/cover;
  background-position-y: 0;
  background-size: 190px 190px;
  -webkit-animation: 8s linear infinite keno;
  animation: 8s linear infinite keno;
  -webkit-transition-duration: 1000s;
  transition-duration: 1000s;
  z-index: 2;
}

@-webkit-keyframes keno {
  from {
    background-position: 0px -190px;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes keno {
  from {
    background-position: 0px -190px;
  }
  to {
    background-position: 0 0;
  }
}

.games__item-bg--keno {
  position: absolute;
  right: -60px;
  top: -30px;
  width: 170px;
  height: 170px;
  background: url(../images/games/keno/keno-card.svg) center center/contain no-repeat;
  z-index: 3;
}

.games__item-bg--jackpot {
  position: absolute;
  right: -82px;
  bottom: -50px;
  width: 240px;
  height: 240px;
  background: url(../images/games/jackpot/jackpot-card.png) no-repeat center center/cover;
  background-size: contain;
  z-index: 3;
}

.games__item-bg--jackpot-coins {
  position: absolute;
  right: 0px;
  top: -100px;
  width: 170px;
  height: 490px;
  background: url(../images/games/jackpot/jackpot.png) repeat center center/cover;
  background-position-y: 0;
  background-size: 190px 190px;
  -webkit-animation: 16s linear infinite keno;
  animation: 16s linear infinite keno;
  -webkit-transition-duration: 1000s;
  transition-duration: 1000s;
  z-index: 2;
}

@keyframes keno {
  from {
    background-position: 0px 190px;
  }
  to {
    background-position: 0 0;
  }
}

.games__item--soon {
  cursor: default;
  pointer-events: none;
}

.games__item-soon {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 14px;
  border-radius: 50px;
  background: #073163;
  color: #A8D0FF;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
}

.games__item-bg--cashhunt {
  position: absolute;
  right: -130px;
  bottom: -50px;
  width: 240px;
  height: 240px;
  background: url(../images/games/cashhunt/cashhunt.png) no-repeat center center/cover;
  background-size: contain;
  z-index: 3;
}

.games__item-bg--cashhunt-x {
  position: absolute;
  right: 0px;
  top: -100px;
  width: 170px;
  height: 490px;
  background: url(../images/games/cashhunt/cashhunt-card.svg) repeat center center/cover;
  background-position-y: 0;
  background-size: 90px 350px;
  -webkit-animation: 13s linear infinite cashhunt;
  animation: 13s linear infinite cashhunt;
  -webkit-transition-duration: 1000s;
  transition-duration: 1000s;
  z-index: 2;
}

@-webkit-keyframes cashhunt {
  from {
    background-position: 0px 350px;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes cashhunt {
  from {
    background-position: 0px 350px;
  }
  to {
    background-position: 0 0;
  }
}

.history {
  position: relative;
  padding-top: 20px;
}

.history:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg) repeat;
}

.history table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
}

.history table td {
  width: calc(100% / 5);
}

.history table thead tr td {
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: #475A89;
  padding-bottom: 8px;
}

.history table tbody tr td {
  background: #fff;
  position: relative;
  padding: 13px 0px;
  text-align: center;
  font-weight: 600;
}

.history table tbody tr td:nth-child(1) {
  border-radius: 15px 0px 0px 15px;
}

.history table tbody tr td:nth-last-child(1) {
  border-radius: 0px 15px 15px 0px;
}

.history__game {
  position: relative;
  width: 100%;
}

.history__game .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.history__game span {
  font-weight: 600;
  text-transform: uppercase;
}

.history__user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.history__sum {
  position: relative;
}

.history__sum .icon {
  margin-left: 8px;
}

.history__user span {
  position: relative;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history .icon.money {
  width: 14px;
  height: 14px;
}

.history__x {
  position: relative;
}

.history__x-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 900;
  opacity: 0.07;
}

body.active {
  overflow: hidden;
}

body.active > #app {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.overlayed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  background: rgba(235, 236, 242, 0.65);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  padding: 0px 30px;
  padding-top: 95px;
}

.overlayed.animation-closed .popup {
  -webkit-animation: slideOut 0.3s ease;
  animation: slideOut 0.3s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@-webkit-keyframes slideOut {
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slideOut {
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.overlayed.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  width: 900px;

  background: #F7F8FE;
  position: relative;
  border-radius: 20px;
  display: none;
  visibility: hidden;
  -webkit-animation-delay: 1000s;
  animation-delay: 1000s;
  -webkit-animation: slideIn 0.3s ease;
  animation: slideIn 0.3s ease;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
}

@-webkit-keyframes slideIn {
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slideIn {
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.popup__title {
  position: relative;
  padding: 20px 22px;
  padding-bottom: 25px;
}

.popup__title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: url("../images/borders.svg") repeat;
}

.popup__title span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
}

.popup .bx-input__input {
  background: rgba(235, 236, 242, 0.5);
}

.popup .bx-input__input label {
  font-size: 12px;
}

.popup .bx-input__text {
  font-size: 12px;
}

.popup .bx-input__create-coupon {
  display: -ms-grid;
  display: grid;
 /* -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);*/
  /*grid-template-columns: 1fr 30%;*/
  
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.popup .bx-input__create-coupon:nth-child(2) {
  display: -ms-grid;
  display: grid;
 /* -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);*/
  /*grid-template-columns: 1fr 30%;*/
  margin-top: 10px;
  grid-template-rows: 1fr;
  grid-template-columns: 3fr 1fr;
  grid-gap: 10px;
}


.popup .close {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, rgba(215, 218, 243, 0.5) 34.37%, rgba(227, 229, 249, 0.5) 100%);
  -webkit-box-shadow: inset 0px 6px 0px rgba(221, 224, 255, 0.5);
  box-shadow: inset 0px 6px 0px rgba(221, 224, 255, 0.5);
  cursor: pointer;
  color: #7887AE;
}

.popup .close:hover {
  color: #6b97f6;
}

.popup .close .icon {
  width: 16px;
  height: 16px;
}

.popup__content {
  padding: 20px 22px;
}

.popup__tabs {
  position: relative;
  color: #7987AE;
}

.popup__tabs span {
  font-weight: 600;
  font-size: 14px;
}

.popup__tab {
  position: relative;
  padding: 14px 22px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border: 2px solid transparent;
}

.popup__tab:hover {
  color: #475A89;
}

.popup__tab .icon {
  width: 0px;
  height: 16px;
  margin-right: 0px;
  opacity: 0;
  pointer-events: none;
}

.popup__tab span {
  pointer-events: none;
}

.popup__tab--active {
  border: 2px solid #EAECF4;
  color: #475A89;
}

.popup__tab--active .icon {
  width: 16px;
  opacity: 1;
  margin-right: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #005aff;
}

.popup.popup--about {
  width: 320px;
}

.popup.popup--about p {
  font-size: 12px;
  line-height: 21px;
  text-align: justify;
  color: #475A89;
}

.popup.popup--about .borders {
  position: relative;
  width: 100%;
  background: url(../images/borders.svg) repeat;
  height: 8px;
  margin: 15px 0px;
}

.popup.popup--about h4 {
  margin-bottom: 15px;
}

.popup.popup--about .bets {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}

.popup.popup--about .bets .x30__bet-heading {
  border-radius: 15px;
}

.popup table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
}

.popup table thead > tr > td {
  text-transform: uppercase;
  font-weight: 500;
  color: #9daac9;
  padding-bottom: 8px;
  font-size: 12px;
}

.popup table tbody > tr > td {
  font-weight: 600;
  color: #475A89;
  padding: 8px 0px;
}

.popup__fair {
  position: relative;
  margin-top: 20px;
  word-break: break-all;
}

.popup__fair-item {
  margin-bottom: 20px;
}

.popup__fair-item:nth-last-child(1) {
  margin-bottom: 0;
}

.popup__fair-item b {
  margin-right: 10px;
  width: 90px;
}

.popup__fair-item span {
  width: calc(100% - 90px);
}

.popup.active {
  display: block;
  visibility: visible;
  margin-top: -10%;
}

.wallet {
  position: relative;
}

.wallet__methods {
  height: 520px;
  background: #EBECF2;
  -webkit-box-shadow: inset 0px 6px 0px #DDE0FF;
  box-shadow: inset 0px 6px 0px #DDE0FF;
  border-radius: 25px;
  width: 350px;
  padding: 18px 14px;
}

.wallet__scroll {
  position: relative;
  height: 100%;
}

.wallet__scroll .ss-scroll {
  margin-left: -5px;
  background: rgba(45, 42, 115, 0.15) !important;
  width: 6px;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.wallet__method {
  position: relative;
  padding: 12px 14px;
  border-radius: 15px;
  background: #FFFFFF;
  width: 100%;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  line-height: 20px;
  border-left: solid 3px transparent;
  margin-bottom: 10px;
}

.wallet__method:nth-last-child(1) {
  margin-bottom: 0;
}

.wallet__method img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  pointer-events: none;
}

.wallet__method span {
  font-weight: 600;
  max-width: 160px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
}

.wallet__method b {
  color: #7987AE;
  font-size: 12px;
  pointer-events: none;
}

.wallet__content {
  width: calc(100% - 350px);
  padding-left: 16px;
  position: relative;
}

.wallet__order {
  position: relative;
  padding-bottom: 10px;
}

.wallet__txt {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  line-height: 25px;
}

.wallet__txt span {
  color: #7987AE;
}

.wallet__txt span .icon {
  margin-left: 6px;
}

.wallet__txt b {
  font-size: 14px;
}

.wallet__txt b span {
  margin-left: 4px;
  color: #5d87e7;
}

.wallet__tabs {
  position: relative;
  color: #7987AE;
  margin-bottom: 20px;
}

.wallet__tab {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 15px;
  text-transform: uppercase;
  opacity: .5;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.wallet__tab:not(.wallet__tab--active):hover {
  opacity: .7;
}

.wallet__tab span {
  pointer-events: none;
}

.wallet__tab .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  pointer-events: none;
}

.wallet__tab--active {
  background: #fff;
  color: #475A89;
  opacity: 1;
}

.wallet__tab--active .icon {
  color: #005aff;
}

.wallet__history {
  position: relative;
  width: 100%;
}

.wallet__history-item {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  background: rgba(235, 236, 242, 0.5);
  margin-bottom: 10px;
}

.wallet__history-item:nth-last-child(1) {
  margin-bottom: 0;
}

.wallet__history-item .wallet__method {
  padding: 0;
  background: transparent;
  margin: 0;
  margin-right: 20px;
}

.wallet__history-sum {
  font-size: 12px;
  font-weight: 600;
  color: #475A89;
}

.wallet__history-sum .icon {
  margin-left: 8px;
}

.wallet__history-status {
  font-size: 12px;
  font-weight: 500;
  color: #7987AE;
}

.x30 {
  position: relative;
}

.x30__wheel {
  position: relative;
}

.x30__wheels {
  position: relative;
  min-width: calc(100% + 60px);
  height: 300px;
  overflow: hidden;
}

.x30__wheels:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EBECF2), to(rgba(235, 236, 242, 0)));
  background: linear-gradient(180deg, #EBECF2 0%, rgba(235, 236, 242, 0) 100%);
  z-index: 1;
}

.x30__wheel-border {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1220px;
  height: 1220px;
  border: 1px solid #DBDDE9;
  border-radius: 50%;
}

.x30__wheel-image {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  width: 1160px;
  height: 1160px;
  left: 50%;
}

.x30__wheel-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.x30__wheel-center {
  position: relative;
  height: 100%;
  z-index: 2;
  padding-top: 15px;
}

.x30__timer {
  width: 175px;
  background: #DEE1F1;
  border-radius: 20px;
  padding: 22px;
  padding-bottom: 20px;
}

.x30__timer b {
  color: #475A89;
  font-size: 12px;
  padding-bottom: 8px;
}

.x30__timer span {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
}

.x30__cursor {
  width: 32px;
  height: 48px;
  background: url(../images/games/cursor.svg) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -25px;
}

.x30__rocket {
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.x30__rocket img {
  pointer-events: none;
}

.x30__rocket-img {
  position: relative;
  z-index: 1;
  -webkit-animation: rocketImg 1s linear infinite;
  animation: rocketImg 1s linear infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes rocketImg {
  from {
    -webkit-transform: translateY(0.2rem) translateX(0.4rem);
    transform: translateY(0.2rem) translateX(0.4rem);
  }
  to {
    -webkit-transform: translateY(-0.2rem) translateX(-0.2rem);
    transform: translateY(-0.2rem) translateX(-0.2rem);
  }
}

@keyframes rocketImg {
  from {
    -webkit-transform: translateY(0.2rem) translateX(0.4rem);
    transform: translateY(0.2rem) translateX(0.4rem);
  }
  to {
    -webkit-transform: translateY(-0.2rem) translateX(-0.2rem);
    transform: translateY(-0.2rem) translateX(-0.2rem);
  }
}

.x30__rocket-coins {
  position: relative;
  margin-left: -40px;
  background: url(../images/rocket-coins.png);
  background-size: 92px 37px;
  width: 92px;
  height: 37px;
  background-repeat: repeat;
  background-position: center center;
  -webkit-animation: 2s linear rocketCoins infinite;
  animation: 2s linear rocketCoins infinite;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(22%, transparent), color-stop(76%, #EBECF2));
  -webkit-mask-image: linear-gradient(to left, transparent 22%, #EBECF2 76%);
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(22%, transparent), color-stop(76%, #EBECF2));
  mask-image: linear-gradient(to left, transparent 22%, #EBECF2 76%);
}

@-webkit-keyframes rocketCoins {
  from {
    background-position: -92px 0px;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes rocketCoins {
  from {
    background-position: -92px 0px;
  }
  to {
    background-position: 0 0;
  }
}

.x30__rocket--started {
  -webkit-animation: x30Started linear 0.65s;
  animation: x30Started linear 0.65s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
  -webkit-transform: rotate(15deg) translateX(30px);
  transform: rotate(15deg) translateX(30px);
}

@-webkit-keyframes x30Started {
  0% {
    opacity: 1;
    -webkit-transform: rotate(15deg) translateX(30px);
    transform: rotate(15deg) translateX(30px);
  }
  100% {
    -webkit-transform: rotate(15deg) translateX(-100px) scale(1.1);
    transform: rotate(15deg) translateX(-100px) scale(1.1);
    opacity: 0;
  }
}

@keyframes x30Started {
  0% {
    opacity: 1;
    -webkit-transform: rotate(15deg) translateX(30px);
    transform: rotate(15deg) translateX(30px);
  }
  100% {
    -webkit-transform: rotate(15deg) translateX(-100px) scale(1.1);
    transform: rotate(15deg) translateX(-100px) scale(1.1);
    opacity: 0;
  }
}

.x30__rocket--started .x30__rocket-coins {
  -webkit-animation: 0.7s linear rocketCoins infinite;
  animation: 0.7s linear rocketCoins infinite;
}

.x30__top {
  position: relative;
  margin-bottom: 15px;
}

.x30__bottom {
  position: relative;
}

.x30__bet {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.x30__history { 
  width: 35%;
}

.x30__history .bx-input__input {
  padding-right: 0;
}

.x30__history-items, .x100__history-items {
  width: calc(100% - 90px);
  position: relative;
  overflow: hidden;
  height: 55px;
  border-radius: 0px 15px 15px 0px;
}

.x30__history-scroll, .x100__history-scroll {
  position: relative;
  height: 100%;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(5%, transparent), color-stop(46%, #EBECF2));
  -webkit-mask-image: linear-gradient(to left, transparent 5%, #EBECF2 46%);
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(5%, transparent), color-stop(46%, #EBECF2));
  mask-image: linear-gradient(to left, transparent 5%, #EBECF2 46%);
}

.x30__history-item {
  min-width: 6px;
  height: 16px;
  margin-right: 8px;
  border-radius: 15px;
}

.x30__history-item:hover {
  opacity: .65;
}

.x30__history-item.x2 {
  background: -webkit-gradient(linear, left top, right top, from(#387475), to(#2D455D)), -webkit-gradient(linear, left top, right top, from(#9842B0), to(#6E318B));
  background: linear-gradient(90deg, #387475 0%, #2D455D 100%), linear-gradient(90deg, #9842B0 0%, #6E318B 100%);
}

.x30__history-item.x3 {
  background: -webkit-gradient(linear, left top, right top, from(#404B88), to(#344075));
  background: linear-gradient(90deg, #404B88 0%, #344075 100%);
  height: 22px;
}

.x30__history-item.x5 {
  background: -webkit-gradient(linear, left top, right top, from(#9842B0), to(#6E318B));
  background: linear-gradient(90deg, #9842B0 0%, #6E318B 100%);
  height: 25px;
}

.x30__history-item.x7 {
  background: -webkit-gradient(linear, left top, right top, from(#3AAC46), to(#36893E));
  
  background: linear-gradient(90deg, #3AAC46 0%, #36893E 104.75%);
  height: 29px;
}

.x30__history-item.x14 {
  background: -webkit-gradient(linear, left top, right top, from(#E64040), to(#881A1A));
  background: linear-gradient(90deg, #E64040 0%, #881A1A 104.75%);
  height: 32px;
}

.x30__history-item.xbonus {
  background: -webkit-gradient(linear, left top, right top, from(#f528a8), to(#ed108b));
  background: linear-gradient(90deg, #f528a8 0%, #ed108b 104.75%);
  height: 35px;
}

.x30__history-item.x30 {
  background: linear-gradient(86.72deg, #F89F2D 2.71%, #AA480A 97.29%), linear-gradient(90deg, #404B88 0%, #344075 100%);
  height: 35px;
}

.x30__bet-game {
  width: calc(65% - 15px);
}

.x30__bet-placed {
  position: relative;
}

.x30__bet-placed a {
  font-weight: 600;
  color: #7887AE;
  border: !important;
  padding: 5px 5px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.x30__bet-placed a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 3px;
  border-radius: 50px;
  left: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background: #397ce6;
  border-radius: 100px;
}

.x30__bet-placed a:nth-last-child(1) {
  margin-right: 0;
}

.x30__bet-placed a:hover {
  color: #706BF6;
}

.x30__bet-placed a:hover:before {
  width: 100%;
}

.x30__bets {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 15px;
}

.x30__bet {
  position: relative;
}

.x30__bet-heading {
  border-radius: 15px 15px 0px 0px;
  padding: 16px 22px;
  cursor: pointer;
}

.x30__bet-heading span {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  pointer-events: none;
}

.x30__bet-heading img {
  pointer-events: none;
  width: 32px;
  height: 32px;
}

.x30__bet-heading:before {
  -webkit-filter: blur(10rem);
  filter: blur(10rem);
}

.x30__bet-heading.x2 {
  background: linear-gradient(263.88deg, #387475 0%, #2D455D 104.75%);
}

.x30__bet-heading.x3 {
  background: linear-gradient(263.88deg, #354787 0%, #2C335F 104.75%);
}

.x30__bet-heading.x5 {
  background: linear-gradient(263.88deg, #9A39BB 0%, #563272 104.75%), linear-gradient(263.88deg, #354787 0%, #2C335F 104.75%);
}

.x30__bet-heading.x7 {
  background: linear-gradient(263.88deg, #D5437F 0%, #79364E 104.75%);
}

.x30__bet-heading.x14 {
  background: linear-gradient(263.88deg, #E64040 0%, #881A1A 104.75%);
}

.x30__bet-heading.x30 {
  background: linear-gradient(263.88deg, #F89F2D 0%, #AA480A 104.75%), linear-gradient(263.88deg, #9A39BB 0%, #563272 104.75%), linear-gradient(263.88deg, #354787 0%, #2C335F 104.75%);
}

.x30__bet-info {
  padding: 20px 22px;
  border-radius: 0px 0px 15px 15px;
  background: #F3F4F8;
  color: #475A89;
  font-weight: 500;
  margin-bottom: 15px;
}

.x30__bet-users,.x100__bet-users {
  position: relative;
}

.x30__bet-user, .x100__bet-user {
  position: relative;
  border-radius: 15px;
  background: #F3F4F8;
  padding: 15px;
  margin-bottom: 12px;
}

.x30__bet-user .history__user span {
  max-width: 55px;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
}

.x30__bet-sum {
  font-size: 12px;
  color: #475A89;
  font-weight: 600;
}

.x30__bonus {
  background: #DEE1F1;
  border-radius: 20px;
  height: 70px;
  position: relative;
  overflow: hidden;
  padding: 0px 5px;
  padding-right: 5px;
  width: 215px;
}

.x30__bonus:after {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(#DEE1F1), to(rgba(222, 225, 241, 0)));
  background: linear-gradient(90deg, #DEE1F1 0%, rgba(222, 225, 241, 0) 100%);
  border-radius: 15px 0px 0px 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  z-index: 1;
  height: 100%;
}

.x30__bonus:before {
  content: '';
  background: -webkit-gradient(linear, right top, left top, from(#DEE1F1), to(rgba(222, 225, 241, 0)));
  background: linear-gradient(-90deg, #DEE1F1 0%, rgba(222, 225, 241, 0) 100%);
  border-radius: 0px 15px 15px 0px;
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  z-index: 1;
  height: 100%;
}

.x30__bonus-cursor {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 30px;
  height: 90px;
  background: url(../images/games/cursor-two.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.x30__bonus-scroll {
  position: relative;
  /*overflow: hidden;*/
}

.x30__bonus-item {
  min-width: 50px;
  border-radius: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  margin: 0px 3px;
}

.x30__bonus-item.x2 {
  background: radial-gradient(50% 50% at 50% 50%, #63B2BB 0%, #476D78 100%), #C4C4C4;
}

.x30__bonus-item.x3 {
  background: radial-gradient(50% 50% at 50% 50%, #6068BC 0%, #333F74 100%), #C4C4C4;
}

.x30__bonus-item.x5 {
  background: radial-gradient(50% 50% at 50% 50%, #B54ECA 0%, #6D308A 100%);
}

.x30__bonus-item.x30 {
  background: radial-gradient(50% 50% at 50% 50%, #F4AD35 0%, #CB550D 100%);
}

.wheel__x100-bonus {
  width: 100%;
  position: relative;
  height: 110px;
  background: url(../img/wheel-_bonus.svg) no-repeat center center/contain;
}

.wheel__x100-bonus-x {
  position: relative;
  width: 310px;
}

.wheel__x100-bonus-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 260px;
  background: url(../img/confetti.svg) no-repeat center center/contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wheel__x100-bonus-content {
  height: 70px;
  border-radius: 5px;
  background: #17284E;
  width: calc(100% - 88px);
  left: -15px;
  position: relative;
}

.wheel__x100-bonus-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wheel__x100-bonus-slider:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#17284E), to(transparent));
  background: linear-gradient(to right, #17284E, transparent);
  z-index: 1;
  border-radius: 6px 0px 0px 6px;
}

.wheel__x100-bonus-slider:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 75px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#17284E), to(transparent));
  background: linear-gradient(to left, #17284E, transparent);
  z-index: 1;
  border-radius: 0px 6px 6px 0px;
}

.wheel__x100-bonus-cursor {
  position: absolute;
  width: 4px;
  background: #FFD920;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.wheel__x100-bonus-scroll {
  width: 999999px;
  position: relative;
  height: 100%;
}

.wheel__x100-bonus-item {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  margin: 0 3px;
}


.dice {
  position: relative;
  margin-bottom: 30px;
}

.dice__drum {
  height: 254px;
  overflow: hidden;
  min-width: calc(100% + 60px);
  position: relative;
  left: -30px;
}

.dice__drum:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(#ebecf2), to(transparent));
  background: linear-gradient(to top, #ebecf2, transparent);
  z-index: 1;
}

.dice__result {
  position: absolute;
  left: 50%;
  width: 925px;
  height: 415px;
  background: url(../images/games/dice/dice-bar.png) no-repeat center center/contain;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.dice__center {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 300px;
  height: 125px;
  margin-top: -37px;
}

.dice__timer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  overflow: hidden;
}

.dice__timer:before {
  content: ',';
  position: absolute;
  font-size: 48px;
  left: 50%;
  font-weight: 900;
  -webkit-transform: rotate(180deg) translateX(50%);
  transform: rotate(180deg) translateX(50%);
  bottom: 0;
}

.dice__timer span {
  font-size: 48px;
  font-weight: 900;
  border-right: solid 1px rgba(184, 194, 255, 0.07);
  padding-bottom: 6px;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dice__timer span:nth-last-child(1) {
  border: 0;
}

.dice__drum--win .dice__result {
  background: url(../images/games/dice/dice-bar--win.png) no-repeat center center/contain;
}

.dice__drum--win .dice__timer {
  color: #6AFFC1;
}

.dice__drum--lose .dice__result {
  background: url(../images/games/dice/dice-bar--lose.png) no-repeat center center/contain;
}

.dice__drum--lose .dice__timer {
  color: #FF3A67;
}

.dice__bet {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px 20px;
}

.dice__chance {
  position: relative;
}

.dice__range {
  background: -webkit-gradient(linear, left top, right top, from(#7C79FF), color-stop(50%, #7C79FF), color-stop(50%, #DFDEEF), to(#DFDEEF));
  background: linear-gradient(to right, #7C79FF 0%, #7C79FF 50%, #DFDEEF 50%, #DFDEEF 100%);
  border-radius: 8px;
  height: 6px;
  outline: none;
  -webkit-transition: background 450ms ease-in;
  transition: background 450ms ease-in;
  width: 100%;
  -webkit-appearance: none;
}

.dice__range::-webkit-slider-thumb {
  background: #6F6BFF;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  height: 15px;
  width: 15px;
  -webkit-appearance: none;
}

.dice__betting a:before {
  content: none;
}

.dice__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dice__slider-inner {
  position: relative;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.dice__slider-item {
  position: relative;
  width: 100%;
  height: 125px;
}

.dice__select-chance {
  position: relative;
  border: solid 2px #dfdeef;
  border-radius: 15px;
  margin-top: 15px;
}

.dice__select-chance a {
  width: 50%;
  display: inline-block;
  padding: 12px 15px;
  text-align: center;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.dice__select-chance a.active {
  background: #29315d;
  color: #fff;
}

.dice__check {
  position: relative;
}

.dice__check-chance {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 900;
}

.dice__check-result {
  position: relative;
}

.dice__check-result span {
  padding: 8px 12px;
  border-radius: 15px;
  background: #e1e6ff;
  font-size: 32px;
  font-weight: 900;
  color: #757ea6;
  margin: 0 3px;
}

.dice__check-result b {
  font-size: 24px;
  font-weight: 900;
  color: #757ea6;
}

.dice__check-result--lose span {
  background: #faa;
  color: #ee6565;
}

.dice__check-result--lose b {
  color: #ee6565;
}

.dice__check-result--win span {
  background: #8ce0c4;
  color: #369273;
}

.dice__check-result--win b {
  color: #369273;
}

.mines {
  position: relative;
  margin-bottom: 30px;
}

.mines__wrapper {
  max-width: 700px;
  position: relative;
}

.mines .x30__bet-placed a:before {
  content: none;
}

.mines__left {
  width: calc(50% - 10px);
}

.mines__right {
  width: calc(50% - 10px);
}

.mines__bomb {
  position: relative;
}

.mines__bomb a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  color: #8C9DC8;
}

.mines__bomb--active {
  background: rgb(107 131 246 / 16%);
  color: #0474ff !important;
}

.mines__buttons {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}

.mines__x {
  overflow: auto;
  width: 100%;
}

.mines__scroll {
  overflow: auto;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(76%, #EBECF2));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #EBECF2 76%);
}



.mines__scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: transparent;
  border-radius: 50px;
}
.mines__scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 50px;
}


.mines__x-item {
  min-width: 120px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  font-weight: 500;
  padding: 18px;
  border: 2px solid transparent;
  margin-right: 10px;
}

.mines__x-item p {
  font-size: 12px;
  padding-bottom: 8px;
  color: #7987AE;
}

.mines__x-item p span {
  color: #8C9DC8;
}

.mines__x-item b {
  font-size: 18px;
  font-weight: 900;
}

.mines__x-item--win {
  border: 2px solid #6EF0AA;
}

.mines__x-item--lose {
  border: 2px solid #F59EA1;
}

.mines__path--lose, .mines__path--win {
  opacity: 0;
  visibility: hidden;
  display: none;
  width: 24px;
  height: 24px;
}

.mines__path-item {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #D7DAF3 34.37%, #E3E5F9 100%), #C4C4C4;
  -webkit-box-shadow: inset 0px 6px 0px #DDE0FF;
  box-shadow: inset 0px 6px 0px #DDE0FF;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
  margin-bottom: 6px;
  cursor: pointer;
}

.mines__path.level_16 .mines__path-item{
  width: calc(340px / 4 - 6px);
  height: calc(340px / 4 - 6px);
}

.mines__path.level_25 .mines__path-item{
  width: calc(340px / 5 - 6px);
  height: calc(340px / 5 - 6px);
}

.mines__path.level_36 .mines__path-item{
  width: calc(340px / 6 - 6px);
  height: calc(340px / 6 - 6px);
}

.mines__path.level_49 .mines__path-item{
  width: calc(340px / 7 - 6px);
  height: calc(340px / 7 - 6px);
}


.mines__path-item:not(.mines__path-item--lose):not(.mines__path-item--win):hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.mines__path-item--win {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #34AE6D 34.37%, #5BC08A 100%);
  -webkit-box-shadow: inset 0px 6px 0px #5CC18A;
  box-shadow: inset 0px 6px 0px #5CC18A;
  color: #fff;
}

.mines__path-item--win .mines__path--win {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mines__path-item--lose {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, rgba(240, 39, 39, 0.5) 34.37%, rgba(255, 80, 80, 0.5) 100%);
  -webkit-box-shadow: inset 0px 6px 0px #F59EA1;
  box-shadow: inset 0px 6px 0px #F59EA1;
  color: #fff;
}

.mines__path-item--lose .mines__path--lose {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mines__bonus {
  width: 100%;
  margin-top: 10px;
}

.mines__check {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 20px;
  color: #475A89;
  font-weight: 600;
}

.mines__check:before, .mines__check:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg) repeat;
}

.mines__check::before {
  left: 0;
  top: 0;
}

.mines__check::after {
  right: 0;
  bottom: 0;
}

.mines__check .icon {
  margin-left: 6px;
}

.mines__check-sum--total {
  color: #2D2A73;
}

.x100 .x30__wheel-image {
  width: 1310px;
  height: 1360px;
}

.x100 .x30__wheels {
  height: 240px;
}

.x100 .x30__wheel-border {
  width: 1420px;
  height: 1510px;
}

.x100 .x30__bets {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}

.x100 .x30__bet-user .history__user span {
  max-width: 45px;
}

.x100 .x30__bet-heading {
  padding: 22px 22px;
}

.x100 .x30__bet-heading.x2 {
  background: #1F2872;
}

.x100 .x30__bet-heading.x3 {
  background: #33C9C0;
}

.x100 .x30__bet-heading.x10 {
  background: #FF8049;
}

.x100 .x30__bet-heading.x15 {
  background: #7A49FF;
}

.x100 .x30__bet-heading.x20 {
  background: #f2ac44;
}

.x100 .x30__bet-heading.x100 {
  background: #FF5247;
}

.x100 .x30__history-item.x2 {
  background: #1F2872;
  height: 10px;
}

.x100 .x30__history-item.x3 {
  background: #33C9C0;
  height: 15px;
}

.x100 .x30__history-item.x10 {
  background: #FF8049;
  height: 20px;
}

.x100 .x30__history-item.x15 {
  background: #7A49FF;
  height: 25px;
}

.x100 .x30__history-item.x20 {
  background: #FFD849;
  height: 30px;
}

.x100 .x30__history-item.x100 {
  background: #FF5247;
  height: 35px;
}

.x100 .x30__cursor {
  width: 32px;
  height: 70px;
  background: url(../images/games/cursor-wheel.svg) no-repeat center center/contain;
  bottom: 7px;
}

.keno {
  position: relative;
  padding: 0px 0px;
  background: #F7F7FF;
  padding-bottom: 0;
  margin-bottom: 30px;
  border-radius: 30px;
}

.keno__title {
  position: relative;
  width: 100%;
}

.keno__title-bg {
  position: relative;
  width: 330px;
  height: 84px;
  background: url(../images/games/keno/bg__content.svg) no-repeat center center/contain;
}

.keno__title-bg img {
  position: relative;
  top: -10px;
}

.keno__content {
  position: relative;
  margin-top: -84px;
  color: #1A2547;
  padding-bottom: 30px;
}

.keno__round-info {
  padding: 35px;
  position: relative;
}

.keno__round-info-item {
  position: relative;
  line-height: 29px;
}

.keno__round-info-item span {
  font-size: 12px;
  font-weight: 500;
  color: #9195B4;
}

.keno__round-info-item b {
  font-size: 24px;
  font-weight: 900;
}

.keno__mines {
  min-height: 470px;
  position: relative;
  background: url(../images/games/keno/keno__bg.png) no-repeat center center;
  background-size: cover;
  padding-bottom: 40px;
}

.keno__mines:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg);
}

.keno__canvas {
  position: relative;
  max-width: 625px;
}

.keno__canvas-item {
  height: 68px;
  min-width: 70px;
  position: relative;
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #D7DAF3 34.37%, #E8EAFF 100%);
  border-radius: 25px;
  margin-top: 8px;
  cursor: pointer;
  border-top: solid 8px #DDE0FF;
  -webkit-transition: -webkit-transform .25s ease;
  transition: -webkit-transform .25s ease;
  transition: transform .25s ease;
  transition: transform .25s ease, -webkit-transform .25s ease;
}

.keno__canvas-item:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.keno__canvas-number {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: -2px;
  pointer-events: none;
}

.keno__canvas-users {
  position: absolute;
  right: 0;
  top: -15px;
}

.keno__canvas-user {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 -6px;
  border: solid 2px #f7f7ff;
}

.keno__canvas-user--more {
  background: #5F5CE5;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.keno__canvas-item--active {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #5F5CE5 34.37%, #7CB1FF 100%);
  border-top: solid 8px #7cb1ff;
  color: #fff;
}

.keno__canvas-item--active .keno__canvas-number {
  top: -4px;
}

.keno__bet {
  position: relative;
  padding: 30px 35px;
  padding-bottom: 0;
}

.keno__bet-settings {
  border-radius: 13px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.03);
  height: 56px;
  margin-bottom: 20px;
}

.keno__bet-left {
  position: relative;
}

.keno__bet-left a {
  text-decoration: none;
  color: #1A2547;
  padding: 0px 20px;
  height: 56px;
  font-size: 14px;
  font-weight: 500;
}

.keno__bet-left a .icon {
  margin-right: 10px;
}

.keno__cancel-select span, .keno__auto-select span{
  cursor: pointer;
}

.keno__cancel-select {
  position: relative;
  /*pointer-events: none;*/
} 

.keno__cancel-select .icon {
  color: #FF6B6B;
}

.keno__auto-select {
  position: relative;
  /*pointer-events: none;*/
}

.keno__auto-select .icon {
  color: #6D6AF2;
}

.keno__bet-input {
  outline: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 20px;
  font-weight: bold;
  width: 125px;
  color: #1A2547;
  height: 56px;
  caret-color: #d4d7e7;
}

.keno__bet-input::-webkit-input-placeholder {
  color: #E8EBFD;
  -webkit-transition: .15s ease;
  transition: .15s ease;
}

.keno__bet-input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.keno__bet-add {
  cursor: pointer;
}

.keno__coeff {
  position: relative;
  width: 100%;
}

.keno__coeff:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
  background: -webkit-gradient(linear, right top, left top, from(#F6F7FF), to(transparent));
  background: linear-gradient(to left, #F6F7FF, transparent);
  z-index: 1;
}

.keno__coeff-scroll {
  position: relative;
  overflow: auto;
  width: 100%;
  padding-bottom: 0px;
}

.keno__coeff-scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: transparent;
  border-radius: 50px;
}

.keno__coeff-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 50px;
  -webkit-box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.1);
  box-shadow: inset 1px 1px 10px rgba(64, 55, 87, 0.1);
}

.keno__coeff-item {
  border: 1px solid #E3E6FF;
  border-radius: 11px;
  min-width: 120px;
  padding: 13px 16px;
  line-height: 24px;
  margin-right: 20px;
}

.keno__coeff-item span {
  font-size: 12px;
  color: #8B94B1;
}

.keno__coeff-item--lose {
  border: 1px solid #FFAAAD;
}

.keno__coeff-item--win {
  border: 1px solid #91DDB3;
}

.keno__canvas-item--is-revealed {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, rgba(240, 39, 39, 0.5) 34.37%, rgba(255, 80, 80, 0.5) 100%);
  border-top: solid 8px #fba3a7;
  color: #fff;
  pointer-events: none;
}

.keno__canvas-item--is-revealed .keno__canvas-number {
  top: -4px;
}

.keno__canvas-item--is-selected {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #5F5CE5 34.37%, #7CB1FF 100%);
  border-top: solid 8px #7cb1ff;
  color: #fff;
  /*pointer-events: none;*/
}

.keno__canvas-item--is-selected .keno__canvas-number {
  top: -4px;
}

.keno__canvas-item--has-hit {
  background: radial-gradient(63.64% 63.64% at 50% 88.64%, #34AE6D 34.37%, #5BC08A 100%);
  border-top: solid 8px #5bc08a;
  color: #fff;
  pointer-events: none;
}

.keno__canvas-item--has-hit .keno__canvas-number {
  top: -4px;
}

.keno__mines--win .keno__canvas {
  -webkit-filter: blur(4px);
  filter: blur(4px);
  pointer-events: none;
}

.keno__mines-win {
  position: absolute;
  padding: 15px 15px;
  border-radius: 15px;
  background: #5261E8;
  padding-right: 7px;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.keno__mines-win:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/games/keno/confetti.svg) no-repeat center center/contain;
}

.keno__mines-win span {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.keno__mines-win b {
  padding: 8px 16px;
  margin-left: 15px;
  background-color: #3845B6;
  border-radius: 15px;
  color: #5AEBFF;
}

.crash {
  position: relative;
  margin-bottom: 30px;
}

.crash__top {
  position: relative;
  width: 100%;
}

.crash__left {
  width: calc(40% - 10px);
}

.crash .x30__bet-placed a:before {
  content: none;
}

.crash label > span {
  color: #929DBB;
  padding-left: 6px;
}

.crash__history {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(36%, #EBECF2));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #EBECF2 36%);
}

.crash__scroll {
  position: relative;
}

.crash__history-item {
  padding: 12px 16px;
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 10px;
}

.crash__history-item:hover {
  opacity: .65;
}

.crash__history-item span {
  pointer-events: none;
}

.crash__history-item.x1 {
  background: #2D2A73;
}

.crash__history-item.x2 {
  background: #706BF6;
}

.crash__history-item.x3 {
  background: #FFA462;
}

.crash__history-item.x4 {
  background: #A449FF;
}

.crash__history-item.x5 {
  background: #FF49D7;
}

.crash__history-item.x6 {
  background: #FF4949;
}


.crash__right {
  width: calc(60% - 10px);
}

.crash__canvas {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 23px;
  background: url(../images/games/crash/crash-bg.png) repeat center center/cover;
  padding-left: 5px;
  overflow: hidden;
}

.crash__canvas canvas {
  position: relative;
  top: 28px;
  left: 1px;
}

.crash__x-number {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 900;
  color: #fff;
}

.crash__history-users {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.crash__history-item-user {
  position: relative;
  padding: 0px 12px;
  height: 58px;
  border-radius: 15px;
  background: #fff;
}

.crash__history-item-user .history__user {
  font-weight: 500;
}

.crash__history-item-user .icon.money {
  margin-left: 8px;
  color: #767DAB;
}

.crash__history-user-x {
  margin-left: 20px;
  height: 48px;
  border-radius: 15px;
  background: #EBECF2;
  padding-left: 17px;
  display: none;
  min-width: 175px;
}

.crash__history-user-x .bx-input__text {
  color: #29315D;
  font-weight: 600;
}

.crash__history-user-x .icon.money {
  color: #706BF6;
}

.crash__history-user-x .crash__history-item {
  pointer-events: none;
  margin: 0;
}

.crash__history-item-user--win .crash__history-user-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.crash__history-item-user--lose {
  background: #FFCFCF;
}

.crash__history-item-user--lose .bx-input__text, .crash__history-item-user--lose .icon.money {
  color: #F54646;
}


.coinflip {
  position: relative;
}

.coinflip__placed {
  position: relative;
  width: 100%;
  grid-gap: 15px;
}

.coinflip__place {
  width: 50%;
  min-height: 120px;
  background-color: #F3F4F8;
  border-radius: 15px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
  position: relative;
}

.coinflip__place b {
  position: relative;
  z-index: 1;
  color: #475A89;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  pointer-events: none;
}

.coinflip__place-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #DBE0FD;
}

.coinflip__place--active b {
  color: #706BF6;
}

.coinflip .crash__right {
  background: #F3F4F8;
  border-radius: 20px;
  padding: 24px;
}



.coinflip__results {
  position: relative;
  width: 100%;
  grid-gap: 15px;
}

.coinflip__result {
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.01);
  width: 50%;
  padding: 16px 18px;
  text-transform: uppercase;
  font-weight: bold;
}

.coinflip__result b {
  color: #7887AE;
}

.coinflip__result span {
  color: #475A89;
}

.coinflip__game {
  position: relative;
  width: 100%;
  height: calc(100%);
  padding-top: 25px;
}

.coinflip__game::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 100%;
  background: url(../images/games/coin/coinflip-pattern.png) no-repeat center center/cover;
}

.coinflip__wrapper {
  -webkit-perspective: 2000px;
  perspective: 2000px;
  width: 154px;
  height: 154px;
}

.coinflip__wrapper img {
  max-width: 154px;
  pointer-events: none;
}

.coinflip__wrapper.coinflip__wrapper--reshka .coinflip__back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.coinflip__wrapper.coinflip__wrapper--reshka .coinflip__front {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.coinflip__wrapper.coinflip__wrapper--orel .coinflip__back {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.coinflip__wrapper.coinflip__wrapper--orel .coinflip__front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.coinflip__back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.coinflip__front, .coinflip__back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  position: absolute;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  left: 0;
  top: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.tournier {
  position: relative;
}

.tournier__page-title {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.tournier__page-t-box {
  position: relative;
  background: #EBECF2;
}

.tournier__page-t-box h4, .tournier__page-t-box b {
  position: relative;
  z-index: 1;
}

.tournier__page-t-box h4 {
  font-size: 18px;
  font-weight: 900;
}

.tournier__page-t-box b {
  font-size: 12px;
  padding-top: 12px;
  color: #7987AE;
}

.tournier__page-t-ico {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  color: #DADFFD;
}

.tournier__list {
  position: relative;
  width: 100%;
}

.tournier__page {
  grid-gap: 20px;
  position: relative;
}

.tournier__item {
  border-radius: 30px;
  position: relative;
  width: 100%;
}

.tournier__item:before {
  -webkit-filter: blur(34rem);
  filter: blur(34rem);
}

.tournier__item--shoot {
  background: url(../images/games/shoot/shoot.png) no-repeat center center/cover;
  position: relative;
}

.tournier__item--shoot:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 21, 57, 0.72)), to(#1A1C26));
  background: linear-gradient(180deg, rgba(13, 21, 57, 0.72) 0%, #1A1C26 100%);
}

.tournier__item-top {
  position: relative;
  width: 100%;
  padding: 24px;
  z-index: 1;
  grid-gap: 10px;
  padding-bottom: 0;
  pointer-events: none;
}

.tournier__item-label {
  background: rgba(189, 194, 255, 0.16);
  border-radius: 15px;
  padding: 10px 15px;
  position: relative;
  color: #fff;
  overflow: hidden;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  grid-gap: 12px;
  height: 44px;
}

.tournier__item-label::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: #DEDFFF;
  opacity: 0.51;
  -webkit-filter: blur(25px);
  filter: blur(25px);
  border-radius: 50%;
}

.tournier__item-label--orange {
  background: rgba(255, 230, 140, 0.15);
}

.tournier__item-bottom {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  z-index: 1;
  padding: 24px;
  pointer-events: none;
  padding-top: 0;
}

.tournier__stat {
  position: relative;
  border-radius: 15px;
  background: #101222;
  line-height: 24px;
  padding: 15px 0;
}

.tournier__stat h3 {
  font-size: 12px;
  color: #474B6A;
}

.tournier__stat b {
  color: #fff;
  font-size: 16px;
}

.tournier__separate {
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg) repeat;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
}

.tournier__item-center {
  padding: 24px;
  position: relative;
  grid-gap: 20px;
  pointer-events: none;
  z-index: 1;
}

.tournier__item-center p {
  color: #9CA6D0;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.tournier__item-center button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  pointer-events: all;
}

.tournier .history {
  padding-top: 0;
}

.tournier .history::before {
  content: none;
}

.tournier .history table {
  display: table !important;
}

@media only screen and (max-width: 825px) {
  .tournier__item-bottom {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 475px) {
  .tournier__item-bottom {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .tournier__item-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tournier__item-label {
    width: 100%;
  }
}


.bonus {
  position: relative;
  max-width: 1322px;
  margin: 0 auto;
}

.bonus__top {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 40px;
}

.bonus__top:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg) repeat;
}

.bonus__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.bonus__item {
  background: #F3F4F8;
  border-radius: 25px;
  min-height: 130px;
  padding: 22px 28px;
}

.bonus__item-title {
  position: relative;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 18px;
}

.bonus__content {
  position: relative;
}

.bonus__content .bx-input__input {
  background: #fff;
  width: 47%;
}

.bonus__buttons a {
  margin-right: 8px;
}

.bonus__buttons a:nth-last-child(1) {
  margin-right: 0;
}

.bonus__item--block {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

.bonus__item--levels {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

.bonus__item--levels::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url(../images/bonus/borders.svg) repeat;
}

.bonus__levels-info {
  position: relative;
  padding: 15px 20px;
  background: #fff;
  border-radius: 15px;
  z-index: 1;
  width: 100%;
  margin-bottom: 20px;
}

.bonus__levels-info:before {
  content: '';
}

.bonus__levels-image {
  position: relative;
  width: 40px;
  height: 60px;
  background: url(../images/bonus/bonus-info.svg) no-repeat center center/contain;
}

.bonus__levels-text {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 15px;
}

.bonus__levels-text span {
  font-weight: 600;
  padding-bottom: 8px;
}

.bonus__levels-text p {
  font-weight: 500;
  font-size: 12px;
  color: #7887ae;
}

.bonus__levels-items {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.bonus__levels-item {
  position: relative;
  border-radius: 15px;
  padding: 20px 22px;
  background: #fff;
}

.bonus__levels-item:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 36px;
  height: 36px;
  background: #F3F4F8;
  border-radius: 50px;
}

.bonus__levels-item:after {
  content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  border-radius: 50px;
}

.bonus__levels-item h4 {
  text-transform: uppercase;
  padding-top: 10px;
  margin-bottom: 15px;
}

.bonus__levels-item .btn span > b {
  opacity: .5;
}

.bonus__levels-item.bonus__levels-item--1:after {
  background: linear-gradient(101.85deg, #F66B95 13.32%, #F79E6C 58.67%);
  top: -9px;
}

.bonus__levels-item.bonus__levels-item--2:after {
  background: linear-gradient(101.85deg, #6B71F6 13.32%, #8851E2 58.67%), #C4C4C4;
  top: -9px;
}

.bonus__levels-item.bonus__levels-item--3:after {
  background: linear-gradient(101.85deg, #29D195 13.32%, #479BCA 58.67%), #C4C4C4;
  top: -9px;
}

.bonus__levels-item.bonus__levels-item--4:after {
  background: linear-gradient(101.85deg, #FF4ED8 13.32%, #AA1B82 58.67%), #C4C4C4;
  top: -9px;
}

.bonus__item--daily {
  background: #F3F4F8 url(../images/bonus/bonus-daily.png) no-repeat center center/cover;
  padding: 0;
  overflow: hidden;
}

.bonus__wheel {
  height: 250px;
  width: 450px;
  position: relative;
  overflow: hidden;
}

.bonus__wheel-image {
  position: absolute;
  left: 50%;
  top: -68%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.bonus__rotate {
  position: relative;
  pointer-events: none;
}

.bonus__rotate-defs {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.bonus__wheel-borders {
  width: 421px;
  height: 421px;
}

.bonus__wheel-go {
  position: absolute;
  left: 50%;
  bottom: -27%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 20px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: #EDD164;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: #69591C;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.bonus__wheel-go.bonus__wheel-go--started {
  cursor: not-allowed;
  background: #cab251;
}

.bonus__wheel-go span {
  pointer-events: none;
}

.bonus__wheel-go:not(.bonus__wheel-go--started):hover {
  background: #ffe477;
}

.bonus__wheel-cursor {
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%) rotate(-180deg);
  transform: translateX(-50%) rotate(-180deg);
  width: 32px;
  height: 48px;
  background: url(../images/games/cursor.svg) no-repeat center center/contain;
  z-index: 2;
}

.bonus__reposts-items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}

.bonus__reposts-item {
  position: relative;
}

.bonus__reposts-level {
  font-weight: 500;
  font-size: 12px;
  color: #BCC2D2;
  padding-bottom: 6px;
}

.bonus__reposts-count {
  font-weight: 500;
  font-weight: 500;
}

.bonus__reposts-count--value {
  font-size: 22px;
  font-weight: 900;
  color: #D8DCF1;
}

.bonus__reposts-progress {
  position: relative;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  background: #E3E6F9;
  height: 4px;
  margin-top: 8px;
}

.bonus__reposts-progress--width {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #706BF6;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.bonus__hits {
  position: relative;
}

.bonus__hits .help {
  position: relative;
  z-index: 2;
}

.bonus__hits-content {
  position: relative;
  min-height: 500px;
  background: url(../images/bonus/bonus-bg.png) no-repeat center center/contain;
  margin-top: -35px;
  z-index: 1;
  padding-top: 160px;
  padding-left: 90px;
  padding-right: 90px;
}

.bonus__hits-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 900;
  top: 30px;
}

.bonus__hits-title span {
  -webkit-text-fill-color: #ebecf2;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #d6daf8;
}

.bonus__hits-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.bonus__hits-item {
  position: relative;
}

.bonus__hits-item span {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.bonus__hits-item b {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #BA776C;
  font-weight: normal;
}

.bonus__hits-progress-bar {
  position: relative;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  height: 6px;
  background: #89473D;
  margin-top: 15px;
}

.bonus__hits-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FE2C2C), to(#FF7E35));
  background: linear-gradient(90deg, #FE2C2C 0%, #FF7E35 100%);
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
}

.bonus__hits-progress:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, rgba(255, 255, 255, 0.2)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.75, rgba(255, 255, 255, 0.2)), color-stop(0.75, transparent), to(transparent));
  border-radius: 50px;
  background-size: 30px 30px;
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 30px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 30px 0;
  }
  to {
    background-position: 0 0;
  }
}

.bonus__hits-item--active span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 25px;
}

.bonus__hits-item--active span:before {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 12px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  color: #e0c015;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.refferal__stats {
  position: relative;
  padding: 20px 20px;
  padding-bottom: 10px;
}

.refferal__stat {
  position: relative;
  margin-right: 30px;
}

.refferal__stat:nth-last-child(1) {
  margin-right: 0;
}

.refferal__stat span {
  position: relative;
  font-size: 16px;
  padding-bottom: 8px;
  font-weight: 600;
}

.refferal__stat span .icon {
  width: 14px;
  height: 14px;
  margin-left: 8px;
}

.refferal__stat p {
  font-size: 12px;
  font-weight: 500;
  color: #7887AE;
}

.refferal .bonus__top::before {
  content: none;
}

.faq {
  position: relative;
}

.faq__item {
  background: #F3F4F8;
  border-radius: 15px;
  position: relative;
  max-height: 60px;
  overflow: hidden;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  margin-bottom: 12px;
}

.faq__item:nth-last-child(1) {
  margin-bottom: 0;
}

.faq__item.faq__item--opened .faq__item-heading span {
  color: #0474ff;
}

.faq__item.faq__item--opened .faq__item-heading:after {
  opacity: 0;
}

.faq__item.faq__item--opened .faq__item-question {
  background: linear-gradient(91.96deg, #0474ff 1.43%, #4397ff 98.35%);
}

.faq__item-heading {
  position: relative;
  height: 60px;
  padding: 11px 16px;
  cursor: pointer;
}

.faq__item-heading:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 50px;
  background: #7887AE;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.faq__item-heading:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 50px;
  background: #7887AE;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
}

.faq__item-heading span {
  position: relative;
  color: #475A89;
  font-weight: 500;
  pointer-events: none;
}

.faq__item-question {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(91.96deg, #475A89 1.43%, #2D3F6B 98.35%);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-right: 15px;
  pointer-events: none;
}

.faq__item-body {
  padding: 10px 20px;
  position: relative;
  border-top: solid 1px #eaedfb;
}

.faq__item-body p {
  margin: 10px 0px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  line-height: 22px;
}

.profile {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.profile:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/borders.svg) repeat;
}

.profile__user {
  width: 280px;
  padding: 30px;
  position: relative;
  border-radius: 25px;
  background: #F3F4F8;
}

.profile__top {
  position: relative;
  width: 100%;
}

.profile__top b {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
}

.profile__top a {
  font-size: 12px;
  font-weight: 500;
  color: #7987AE;
}

.profile__top a:hover {
  color: #626f92;
}

.profile__top a .icon {
  margin-right: 6px;
  pointer-events: none;
}

.profile__top a span {
  pointer-events: none;
}

.profile__avatar {
  width: 200px;
  height: 150px;
  position: relative;
  background: url(../images/profile/profile-border.png) no-repeat center center/contain;
}

.profile__avatar-ellipse {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #171b28;
}

.profile__avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.profile__username {
  position: relative;
  line-height: 24px;
  margin-bottom: 20px;
}

.profile__username b {
  font-size: 16px;
  font-weight: 600;
}

.profile__username span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #8591B5;
}

.profile__balance {
  width: 100%;
}

.profile__balance span {
  font-weight: 600;
}

.profile__balance .icon {
  margin-right: 8px;
}

.profile__stats {
  position: relative;
  width: calc(100% - 280px);
  padding-left: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.profile__stat-item {
  padding: 26px;
  position: relative;
  border-radius: 25px;
  background: #F3F4F8;
}

.profile__stat-item b {
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 12px;
  color: #7987AE;
}

.profile__stat-item span {
  font-weight: 900;
  font-size: 24px;
}

.profile__settings {
  position: relative;
}

.profile__settings-check {
  position: relative;
}

.profile__settings-check label {
  color: #475A89;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.profile__settings-check label:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #CCCFE4;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border-radius: 9px;
  margin-right: 12px;
}

.text {
  position: relative;
  background: #F3F4F8;
  border-radius: 30px;
  overflow: hidden;
}

.text__banner {
  position: relative;
  padding: 30px;
  padding-bottom: 10px;
}

.text__banner-inner {
  position: relative;
  border-radius: 20px;
  background: #fff;
  padding: 18px 20px;
  color: #475A89;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.text__content {
  padding: 10px 30px;
  padding-bottom: 30px;
}

.text__content h3 {
  margin-bottom: 25px;
}

.text__content p {
  position: relative;
  margin: 15px 0;
  font-size: 12px;
  color: #475A89;
  line-height: 20px;
}

.text__content p:nth-last-child(1) {
  margin: 0;
}

.text__borders {
  position: relative;
  width: 100%;
  margin: 20px 0px;
  height: 8px;
  background: url(../images/borders.svg) repeat;
}


.plusBlock, .dopPlusBetX100{
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  padding: 5px 20px;
  font-weight: 600;
  font-size: 16px;
  z-index: 10;
  cursor: default;
  border-radius: 0px 10px 0px 10px;
}

.dopPlusBetX100{
  right: 50%;
  transform: translateX(50%);
  background: gray;
  color: white;
  border-radius: 0px 0px 10px 10px;
}


.system_mess{
  background: #7001b2;
  
} 

.system_mess span{
  color: white!important;
}

.x30__bet-heading.x7 {
  background: linear-gradient(
    263.88deg, #3AAC46 0%, #36893E 104.75%);
}

.x30__history-item.x7 {
  background: linear-gradient(
    90deg, #3AA946 0%, #378F40 100%), linear-gradient(
      90deg, #9842B0 0%, #6E318B 100%);
  }

  .theme--dark {
    background: #1b2030;
    color: #fff;
  }

  .theme--dark .header {
    background: #1b2030;
  }

  .theme--dark .chat {
    background: linear-gradient(262deg, #20273a 2.45%, rgba(30, 34, 63, 0) 61.7%) !important;
    border-color: #20273b;
  }

  .theme--dark .sidebar__games:before, .theme--dark .sidebar__profile:before {
    /*background: #1b2030;*/
  }

  .theme--dark .sidebar__block {
    background: #20273a;
    border: 2px dashed #3b7be626;
  }

  .theme--dark .header__links li a {
  font-weight: bold;
    color: #7486b7;
  }

  .theme--dark .sidebar__game {
    color: #4e6287;
  }

  .theme--dark .sidebar__game-name {
    background: #3a567e;
font-family: "Jura", sans-serif;
  }

  .theme--dark .header__links li a:hover {
    color: #4f7dff;
  }

  .theme--dark .header__user-balance {
    color: #fff;
  }

  .theme--dark .header__user-profile {
    background: #171b28;
    color: #7486b7;
  }

  .theme--dark .header__user-profile:before {
    border: 6px solid transparent;
    border-top: 7px solid #7486b7;
  }

  .theme--dark .header__user-profile.dropdown, .theme--dark .header__user-dropdown {
    background: #171b28;
  }

  .theme--dark .header__user-dropdown a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: #7486b7;
  }

  .theme--dark .header__user-dropdown a:hover {
    color: #5a85e7;
    background: rgba(255, 255, 255, 0.01);
  }

  .theme--dark .header__user-dropdown a b {
    color: #7486b7;
  }

  .theme--dark .history table thead tr td {
    color: #485c80;
  }

  .theme--dark .history table tbody tr td {
    color: #FFF;
    background: #20273a;
  }

  .theme--dark .footer__link a {
    color: #485c80;
  }

  .theme--dark .footer__text {
    color: rgb(72 87 128 / 50%);
  }

  .theme--dark .history__x-bg {
    opacity: 0.02;
  }

  .theme--dark .history:before {
    background: url(../images/borders--dark.svg) repeat;
  }

  .theme--dark .chat__input input::-webkit-input-placeholder {
    color: #7486b7;
  }

  .theme--dark .chat__input input, .theme--dark .chat__buttons a {
    color: #7486b7;
  }

  .theme--dark .chat__buttons a:hover {
    color: #b6c6ff;
  }

  .theme--dark .chat__smiles {
    background: #181c2a;
    width: calc(100% - 0px);
  }

  .theme--dark .chat__smiles-item:hover {
    background: #272c4c;
  }

  .theme--dark .chat__online .icon, .theme--dark .chat__online span {
    color: #7486b7;
  }

  .theme--dark .chat__online p {
    color: #fff;
  }

  .theme--dark .chat__buttons a {
    background: #252d42;
  }

  .theme--dark .chat__msg-info span {
    color: #7486b7;
  }

  .theme--dark .chat__msg-message {
    background: #20273a;
  }

  .theme--dark .chat__buttons-admins a {
    color: #7489b7;
    opacity: .5;
  }

  .theme--dark .chat__buttons-admins a:hover {
    opacity: .65;
  }

  .theme--dark .preloader {
    background-color: #1b2030;
  }

  .theme--dark .x30__wheels:before {
    background: -webkit-gradient(linear, left top, left bottom, from(#1b2030), to(rgba(30, 34, 63, 0)));
    background: linear-gradient(180deg, #1b2030 0%, rgba(30, 34, 63, 0) 100%);
  }

  .theme--dark .x30__wheel-border {
    border-color: #262B4B;
  }

  .theme--dark .x30__timer {
    background: #20273a;
  }

  .theme--dark .x30__timer b {
    color: #7486b7;
  }

  .theme--dark .sidebar__game--active {
    color: #ffffff;
  }

  .theme--dark .bx-input__input {
    background: #20273a;
  }

  .theme--dark .bx-input__input label {
    color: #516496;
  }

  .theme--dark .bx-input__input input, .theme--dark .x30__bet-placed a, .theme--dark .x30__bet-user .history__user span {
    color: #7486b7;
  }

  .theme--dark .x30__bet-info, .theme--dark .x30__bet-user {
    background: #20273a;
  }

  .theme--dark .x30__bet-sum, .theme--dark .x30__bet-info {
    color: #516496;
  }

  .theme--dark .help {
    color: #249FBA;
    background: linear-gradient(91.96deg, rgba(36, 159, 186, 0.4) 1.43%, rgba(31, 215, 255, 0) 98.35%, rgba(36, 159, 186, 0) 98.35%);
  }

  .theme--dark .help:hover {
    color: #2ebedf;
  }

  .theme--dark .help .icon {
    color: #249FBA;
  }

  .theme--dark #toast-container > div {
    -webkit-box-shadow: inherit !important;
    box-shadow: inherit !important;
  }

  .theme--dark .dice__drum:before {
    background: -webkit-gradient(linear, left bottom, left top, from(#1b2030), to(transparent));
    background: linear-gradient(to top, #1b2030, transparent);
  }

  .theme--dark .dice__select-chance {
    border-color: #20273b;
  }

  .theme--dark .dice__select-chance a.active {
    background: #20273a;
  }

  .theme--dark .dice__range {
    background: -webkit-gradient(linear, left top, right top, from(#7C79FF), color-stop(50%, #7C79FF), color-stop(50%, #20273a), to(#20273a));
    background: linear-gradient(to right, #7C79FF 0%, #7C79FF 50%, #20273a 50%, #20273a 100%);
  }

  .theme--dark .x30__bonus:after {
    background: -webkit-gradient(linear, left top, right top, from(#1b2030), to(rgba(30, 34, 63, 0)));
    background: linear-gradient(90deg, #1b2030 0%, rgba(30, 34, 63, 0) 100%);
  }

  .theme--dark .x30__bonus:before {
    background: -webkit-gradient(linear, right top, left top, from(#1b2030), to(rgba(30, 34, 63, 0)));
    background: linear-gradient(-90deg, #1b2030 0%, rgba(30, 34, 63, 0) 100%);
  }

  .theme--dark .x30__bonus, .theme--dark .mines__x-item {
    background: #20273a;
  }

  .theme--dark .mines__x-item b {
    color: #fff;
  }

  .theme--dark .mines__path-item--win {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #34AE6D 34.37%, #5BC08A 100%) !important;
    -webkit-box-shadow: inset 0px 6px 0px #5cc18a !important;
    box-shadow: inset 0px 6px 0px #5cc18a !important;
  }

  .theme--dark .mines__path-item--lose {
    -webkit-box-shadow: inset 0px 6px 0px #8f3947 !important;
    box-shadow: inset 0px 6px 0px #8f3947 !important;
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, rgba(240, 39, 39, 0.5) 34.37%, rgba(255, 80, 80, 0.5) 100%) !important;
  }

  .theme--dark .mines__path-item {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #24304a 34.37%, #293356 100%), #1b2030;
    -webkit-box-shadow: inset 0px 6px 0px #2e3560;
    box-shadow: inset 0px 6px 0px #2e3560;
  }

  .theme--dark .crash__history-item-user {
    background: #20273a;
  }

  .theme--dark .history__user span {
    color: #7486b7;
  }

  .theme--dark .crash__history-user-x {
    background: #1b1e37;
    padding-right: 4px;
  }

  .theme--dark .crash__history-user-x .bx-input__text {
    color: #fff;
  }

  .theme--dark .keno {
    background: #20273a;
  }

  .theme--dark .keno__round-info-item span {
    color: #7486b7;
  }

  .theme--dark .keno__round-info-item b {
    color: #fff;
  }

  .theme--dark .keno__mines {
    background: url(../images/games/keno/keno__bg--dark.png) no-repeat center center;
    background-size: cover;
    min-height: 510px;
  }

  .theme--dark .keno__mines:before {
    background: none;
  }

  .theme--dark .keno__title-bg {
    background: url(../images/games/keno/bg__content--dark.svg) no-repeat center center/contain;
  }

  .theme--dark .keno__bet-settings {
    background: #1b2030;
  }

  .theme--dark .keno__bet-input {
    color: #fff;
  }

  .theme--dark .keno__cancel-select {
    color: #FF6B6B;
  }

  .theme--dark .keno__auto-select {
    color: #6D6AF2;
  }

  .theme--dark .keno__coeff-item {
    border: 1px solid #323758;
  }

  .theme--dark .keno__coeff-item b {
    color: #fff;
  }

  .theme--dark .keno__coeff-item--win {
    border: 1px solid #91DDB3;
  }

  .theme--dark .keno__coeff-item--lose {
    border: 1px solid #FFAAAD;
  }

  .theme--dark .keno__coeff:before {
    background: -webkit-gradient(linear, right top, left top, from(#20273a), to(transparent));
    background: linear-gradient(to left, #20273a, transparent);
  }

  .theme--dark .keno__canvas-item {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #282d50 34.37%, #2a2f54 100%), #1c203b;
    border-top: solid 8px #2f345a;
    color: #7486b7;
  }

  .theme--dark .keno__canvas-user {
    border: solid 2px #20273a;
  }

  .theme--dark .keno__canvas-item--active {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #5F5CE5 34.37%, #7CB1FF 100%);
    border-top: solid 8px #7cb1ff;
    color: #fff;
  }

  .theme--dark .keno__canvas-item--is-selected {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #5F5CE5 34.37%, #7CB1FF 100%);
    border-top: solid 8px #7cb1ff;
    color: #fff;
  }


  .theme--dark .keno__canvas-item--is-revealed {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, rgba(240, 39, 39, 0.5) 34.37%, rgba(255, 80, 80, 0.5) 100%);
    border-top: solid 8px #923c4c;
    color: #fff;
    pointer-events: none;
  }

  .theme--dark .keno__canvas-item--has-hit {
    background: radial-gradient(63.64% 63.64% at 50% 88.64%, #34AE6D 34.37%, #5BC08A 100%);
    border-top: solid 8px #5bc08a;
    color: #fff;
    pointer-events: none;
  }

  .theme--dark .bonus__item {
    background: #20273a;
  }

  .theme--dark .bonus__item-title {
    color: #fff;
  }

  .theme--dark .bonus__levels-info, .theme--dark .bonus__levels-item {
    background: #303456;
  }

  .theme--dark .bonus__levels-text span, .theme--dark .bonus__levels-item h4 {
    color: #fff;
  }

  .theme--dark .bonus__levels-item:before {
    background: #20273a;
  }

  .theme--dark .user-status.new {
    background: #404468;
  }

  .theme--dark .bonus__content .bx-input__input {
    background: #252e44;
  }

  .theme--dark .bonus__reposts-level {
    color: #7486b7;
  }

  .theme--dark .bonus__reposts-count {
    color: #fff;
  }

  .theme--dark .bonus__reposts-count--value {
    color: #36425c;
  }

  .theme--dark .bonus__reposts-progress {
    background: #2b3650;
  }

  .theme--dark .bonus__hits-title span {
    -webkit-text-fill-color: #1b2030;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #272b48;
  }

  .theme--dark .bonus__top:before {
    background: url(../images/borders--dark.svg) repeat;
  }

  .theme--dark .bonus__item--levels::before {
    background: url(../images/bonus/borders--dark.svg) repeat;
  }

  .theme--dark .refferal__stat span {
    color: #fff;
  }

  .theme--dark .bonus__rotate-defs--dark {
    display: block !important;
  }

  .theme--dark .bonus__rotate-defs {
    display: none;
  }

  .theme--dark .faq__item {
    background: #20273a;
  }

  .theme--dark .faq__item-heading span {
    color: #6c81b5;
  }

  .theme--dark .faq__item-body {
    border-top: solid 1px #2a2f52;
  }

  .theme--dark .overlayed {
    background: rgb(0 0 0 / 70%);
  }

  .theme--dark .popup {
    background: #1b2030;
  }

  .theme--dark .popup__tab--active {
    border: 2px solid #2a344c;
    color: #005aff;
  }

  .theme--dark .popup__tab:hover {
    color: #9fafd8;
  }

  .theme--dark .popup__title:before, .theme--dark .popup.popup--about .borders, .theme--dark .mines__check::before, .theme--dark .mines__check::after {
    background: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #323d5c), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #32375c), color-stop(0.75, #32375c), color-stop(0.75, transparent), to(transparent));
    background-size: 30px 30px;
    height: 5px;
  }

  .theme--dark .wallet__methods {
    background: #202638;
    -webkit-box-shadow: inset 0px 6px 0px #202638;
    box-shadow: inset 0px 6px 0px #202638;
  }

  .theme--dark .wallet__method {
    background: #252d42;
  }

  .theme--dark .wallet__history-left .wallet__method {
    background: transparent;
  }

  .theme--dark .wallet__method span {
    color: #fff;
  }

  .theme--dark .popup .bx-input__input, .theme--dark .wallet__history-item {
    background: #202638;
  }

  .theme--dark .wallet__txt b {
    color: #fff;
  }

  .theme--dark .popup .close {
    background: #20273a;
    -webkit-box-shadow: inset 0px 6px 0px #20273a;
    box-shadow: inset 0px 6px 0px #20273a;
  }

  .theme--dark .wallet__tab--active {
    background: #252d42;
    color: #fff;
  }

  .theme--dark .popup.popup--about h4, .theme--dark .popup__title, .theme--dark .dice__check-chance, .theme--dark .mines__check-sum--total {
    color: #fff;
  }

  .theme--dark .select {
    background-color: #202638;
  }

  .theme--dark .text {
    background: #20273a;
  }

  .theme--dark .text__banner-inner {
    background: #2b3552;
  }

  .theme--dark .text__borders {
    background: url(../images/borders--dark.svg) repeat;
  }

  .theme--dark .text__content p {
    color: #7486b7;
  }

  .theme--dark .chat__send .chat__buttons a {
    background: none;
  }

  .theme--dark .profile__user, .theme--dark .profile__stat-item, .theme--dark .profile__settings-check label:before {
    background: #20273a;
  }

  .theme--dark .profile:before {
    background: url(../images/borders--dark.svg) repeat;
  }

  .theme--dark .mobile-menu {
    background: #171b28;
  }

  @media only screen and (max-width: 1125px) {
    .theme--dark .chat {
      background: #1b2030 !important;
    }
  }

  .theme--dark .chat:before, .theme--dark .mobile-navbar:before {
    background: url(../images/borders--dark.svg) repeat;
  }

  .theme--dark .mobile-navbar {
    background-color: #1b2030;
  }

  .theme--dark .mobile-navbar a {
    background: #202638;
  }


  .theme--dark .coinflip .crash__right {
    background: #20273a;
  }
  .theme--dark .coinflip__result {
    background-color: #252e44;
  }
  .theme--dark .coinflip__place {
    background-color: #20273a;
  }

  .theme--dark .coinflip__place-img {
    color: #2b2f54;
  }
  .theme--dark .coinflip__place b {
    color: #7188bf;
  }

  .theme--dark .coinflip__game::before {
    background: url(../images/games/coin/coinflip-pattern--dark.png) no-repeat center center/cover;
    border-radius: 20px;
  }






  .bonus__rotate-defs--dark {
    display: none;
  }


  .header__user-dropdown a em {
    font-style: normal;
    font-weight: 500;
    padding: 5px;
    border-radius: 4px;
    background: #ca5252;
    color: #fff;
    font-size: 8px;
    margin-left: 10px;
    pointer-events: none;
  }

  .keno__canvas-item.blocked{
    pointer-events: none;
  }

  .chat__promocode {
    position: relative;
    padding: 10px 20px;
    padding-bottom: 5px;
  }

  .chat__promocode-inner {
    position: relative;
    width: 100%;
    padding-top: 30px;
    padding-left: 90px;
    min-height: 120px;
    padding-bottom: 25px;
    border-radius: 20px;
    background: #1b2030;
    border: solid 4px #171b28;
    margin-top: 10px;
  }

  .chat__promocode-inner h4 {
    text-transform: uppercase;
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
  }

  .chat__promocode-img {
    position: absolute;
    left: -20px;
    top: -20px;
    pointer-events: none;
  }

  .chat__promocode-timer {
    position: relative;
    padding-top: 15px;
  }

  .chat__promocode-timer span:not(.chat__promocode-timer--span) {
    margin: 0px 4px;
    font-weight: 900;
    color: rgb(50 59 86);
  }

  .chat__promocode-timer--span {
    width: 28px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgb(57 125 230 / 20%);
    border-radius: 7px;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin: 0px 3px;
  }

  .shoot {
    position: relative;
  }

  .shoot__live {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: url(../images/games/shoot/shoot.png) no-repeat center center/cover;
    padding: 28px 0px;
  }

  .shoot__live::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(-2.18%, rgba(46, 30, 37, 0.42)), to(rgba(46, 30, 37, 0.7)));
    background: linear-gradient(0deg, rgba(46, 30, 37, 0.42) -2.18%, rgba(46, 30, 37, 0.7) 100%);
  }

  .shoot__live-drop {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .shoot__live-drop-scroll {
    position: relative;
  } 

  .shoot__live-drop-scroll.animate1 {
    -webkit-animation: translateDrop 130s infinite ease-out;
    animation: translateDrop 130s infinite ease-out;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }

  @-webkit-keyframes translateDrop {
    from {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(calc((115px + 16px) * 47 * -1));
      transform: translateX(calc((115px + 16px) * 47 * -1));
    }
  }

  @keyframes translateDrop {
    from {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(calc((115px + 16px) * 47 * -1));
      transform: translateX(calc((115px + 16px) * 47 * -1));
    }
  }

  .shoot__live-drop-item {
    position: relative; 
    min-width: 115px;
    height: 170px;
    border-radius: 15px;
    background: #2E1E25;
    margin: 0px 8px;
  }

  .shoot__live-drop-item:nth-child(1) {
    margin-left: 0;
  }

  .shoot__live-drop-front, .shoot__live-drop-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    -webkit-backface-visibility: hidden;
    padding: 16px 18px;
    transition: -webkit-transform 0.25s ease-in;
    -webkit-transform-style: preserve-3d;
  }

  .shoot__live-drop-back {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }

  .shoot__live-drop-name {
    position: relative;
    line-height: 18px;
  }

  .shoot__live-drop-name b {
    font-size: 12px;
    color: #fff;
  }

  .shoot__live-drop-name span {
    font-size: 12px;
    color: #947482;
  }

  .shoot__live-drop-price {
    position: relative;
    border-radius: 50px;
    font-size: 12px;
    color: #fff;
    background: #56414A;
    padding: 6px 12px;
  }

  .shoot__live-drop-img {
    max-height: 50px;
    pointer-events: none;
  }

  .shoot__live-drop-img-not {
    pointer-events: none;
  }

  .shoot__live-drop-game {
    position: relative;
    padding-top: 23px;
  }

  .shoot__live-drop-game .btn--orange {
    background: #397de6;
    -webkit-box-shadow: 0px 42px 80px rgba(255, 141, 116, 0.4);
    box-shadow: 0px 42px 80px rgb(25 62 120 / 66%);
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    z-index: 2;
  }

  .shoot__live-drop-scroll--flipped .shoot__live-drop-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }

  .shoot__live-drop-scroll--flipped .shoot__live-drop-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  .shoot__live-drop-scroll--flipped .shoot__live-drop-cursor {
    -webkit-transform: translateX(-67%) translateY(0%);
    transform: translateX(-67%) translateY(0%);
    opacity: 1;
  }

  .shoot__live-drop-cursor {
    position: absolute;
    bottom: -3px;
    left: 50%;
    -webkit-transform: translateX(-67%) translateY(100%);
    transform: translateX(-67%) translateY(100%);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 1;
  }

  .shoot__live-drop-cursor img {
    pointer-events: none;
  }

  .shoot__live-drop-x {
    position: relative;
    font-size: 36px;
  }

  .shoot__live-drop-x b {
    font-weight: 900;
  }

  .shoot__bet {
    padding: 20px 0;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 20px;
  }

  .shoot__bet:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: url(../images/borders.svg) repeat;
  }

  .shoot__bet-btn-settings {
    font-weight: bold;
    color: #7987AE;
  }

  .shoot__bet-btn-settings span {
    pointer-events: none;
  }

  .shoot__bet-btn-settings .icon {
    margin-right: 8px;
  }

  .shoot__bet-btn-settings:hover {
    color: #626f92;
  }

  .shoot__bet-btns {
    position: relative;
    padding: 0px 30px;
    grid-gap: 10px;
  }

  .shoot__bet-btns a {
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
  }

  .shoot__bet-btns a:nth-child(1) {
    background: rgba(97, 119, 255, 0.2);
    color: #6177FF;
  }

  .shoot__bet-btns a:nth-child(1).active {
    background: #6177ff;
    color: #fff;
  }

  .shoot__bet-btns a:nth-child(2) {
    background: rgba(126, 47, 255, 0.2);
    color: #7E2FFF;
  }

  .shoot__bet-btns a:nth-child(2).active {
    background: #7e2fff;
    color: #fff;
  }

  .shoot__bet-btns a:nth-child(3) {
    background: rgba(17, 128, 108, 0.2);
    color: #11806C;
  }

  .shoot__bet-btns a:nth-child(3).active {
    background: #11806c;
    color: #fff;
  }

  .shoot__bet-btns a:nth-child(4) {
    background: rgba(100, 130, 15, 0.2);
    color: #64820F;
  }

  .shoot__bet-btns a:nth-child(4).active {
    background: #64820f;
    color: #fff;
  }

  .shoot__bet-btns a:nth-child(5) {
    background: rgba(160, 56, 23, 0.2);
    color: #A03817;
  }

  .shoot__bet-btns a:nth-child(5).active {
    background: #a03817;
    color: #fff;
  }

  .shoot__bet-btns a:nth-child(6) {
    background: rgba(255, 107, 0, 0.2);
    color: #FF6B00;
  }

  .shoot__bet-btns a:nth-child(6).active {
    background: #ff6b00;
    color: #fff;
  }

  .shoot__bets {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 13px;
  }

  .shoot__bet-item {
    padding: 14px 0px;
    border-radius: 15px;
    position: relative;
    min-height: 58px;
    font-size: 18px;
    font-weight: 900;
    overflow: hidden;
  }

  .shoot__bet-item span {
    pointer-events: none;
  }

  .shoot__bet-item--1x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(54, 113, 122, 0.2)), to(rgba(36, 90, 98, 0.2)));
    background: linear-gradient(180deg, rgba(54, 113, 122, 0.2) 0%, rgba(36, 90, 98, 0.2) 100%);
  }

  .shoot__bet-item--1x span {
    color: transparent;
    -webkit-background-clip: text;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#36717A), to(#245A62));
    background-image: linear-gradient(180deg, #36717A 0%, #245A62 100%);
  }

  .shoot__bet-item--2x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(172, 141, 105, 0.2)), to(rgba(128, 97, 61, 0.2)));
    background: linear-gradient(180deg, rgba(172, 141, 105, 0.2) 0%, rgba(128, 97, 61, 0.2) 100%);
  }

  .shoot__bet-item--2x span {
    color: transparent;
    -webkit-background-clip: text;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#AC8D69), to(#80613D));
    background-image: linear-gradient(180deg, #AC8D69 0%, #80613D 100%);
  }

  .shoot__bet-item--5x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 93, 99, 0.2)), to(rgba(88, 63, 68, 0.2)));
    background: linear-gradient(180deg, rgba(124, 93, 99, 0.2) 0%, rgba(88, 63, 68, 0.2) 100%);
  }

  .shoot__bet-item--5x span {
    color: transparent;
    -webkit-background-clip: text;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7C5D63), to(#583F44));
    background-image: linear-gradient(180deg, #7C5D63 0%, #583F44 100%);
  }

  .shoot__bet-item--10x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(96, 92, 124, 0.2)), to(rgba(75, 72, 99, 0.2)));
    background: linear-gradient(180deg, rgba(96, 92, 124, 0.2) 0%, rgba(75, 72, 99, 0.2) 100%);
  }

  .shoot__bet-item--10x span {
    color: transparent;
    -webkit-background-clip: text;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#605C7C), to(#4B4863));
    background-image: linear-gradient(180deg, #605C7C 0%, #4B4863 100%);
  }

  .shoot__live-drop-item--1x .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#36717a), to(#245a62));
    background: linear-gradient(180deg, #36717a 0%, #245a62 100%);
    color: #fff;
  }

  .shoot__live-drop-item--2x .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#ac8d69), to(#80613d));
    background: linear-gradient(180deg, #ac8d69 0%, #80613d 100%);
    color: #fff;
  }

  .shoot__live-drop-item--5x .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#7c5d63), to(#583f44));
    background: linear-gradient(180deg, #7c5d63 0%, #583f44 100%);
    color: #fff;
  }

  .shoot__live-drop-item--10x .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#605c7c), to(#4b4863));
    background: linear-gradient(180deg, #605c7c 0%, #4b4863 100%);
    color: #fff;
  }

  .shoot__live-drop-item--cashhunt .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#3C4E2E), to(#2A3820));
    background: linear-gradient(180deg, #3C4E2E 0%, #2A3820 100%);
    color: #8FBE68;
  }

  .shoot__live-drop-item--crazytime .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#813331), to(#672725));
    background: linear-gradient(180deg, #813331 0%, #672725 100%);
    color: #FF6D69;
  }

  .shoot__live-drop-item--coinflip .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#47677C), to(#2B485A));
    background: linear-gradient(180deg, #47677C 0%, #2B485A 100%);
    color: #93D6FF;
  }

  .shoot__live-drop-item--pachinko .shoot__live-drop-front {
    background: -webkit-gradient(linear, left top, left bottom, from(#8E3D67), to(#742E52));
    background: linear-gradient(180deg, #8E3D67 0%, #742E52 100%);
    color: #FF61B2;
  }

  .shoot__live-drop-item--bonusX3 .shoot__live-drop-front, .shoot__live-drop-item--bonusX5 .shoot__live-drop-front {

    color: #fff;

    background: crimson;
    box-shadow: 0 -150px 70px -120px teal inset,
    0 -220px 70px -120px yellowgreen inset,
    0 -280px 70px -120px gold inset;

    animation: background 4s infinite alternate;
  }

  @keyframes background {
    50% {
      background: darkviolet;
      box-shadow: 0 -140px 70px -120px mediumorchid inset,
      0 -210px 70px -120px teal inset,
      0 -280px 70px -120px plum inset;
    }
  }

  .shoot__live-drop-bonus-ico {
    width: 54px;
    height: 54px;
  }

  .shoot__bet-item--bonus {
    padding: 0px 20px;
  }

  .shoot__bet-item--bonus:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/games/shoot/pattern.png) no-repeat left center/contain;
  }

  .shoot__bet-item--bonus b {
    color: #fff;
    pointer-events: none;
  }

  .shoot__bet-item--bonus .icon {
    width: 26px;
    height: 26px;
  }

  .shoot__bet-item--cashhunt {
    background: -webkit-gradient(linear, left top, left bottom, from(#3C4E2E), to(#2A3820));
    background: linear-gradient(180deg, #3C4E2E 0%, #2A3820 100%);
  }

  .shoot__bet-item--cashhunt .icon {
    color: #8FBE68;
  }

  .shoot__bet-item--crazygame {
    background: -webkit-gradient(linear, left top, left bottom, from(#813331), to(#672725));
    background: linear-gradient(180deg, #813331 0%, #672725 100%);
  }

  .shoot__bet-item--crazygame .icon {
    color: #FF6D69;
  }

  .shoot__bet-item--coinflip {
    background: -webkit-gradient(linear, left top, left bottom, from(#47677C), to(#2B485A));
    background: linear-gradient(180deg, #47677C 0%, #2B485A 100%);
  }

  .shoot__bet-item--coinflip .icon {
    color: #93D6FF;
  }

  .shoot__bet-item--pochinko {
    background: -webkit-gradient(linear, left top, left bottom, from(#8E3D67), to(#742E52));
    background: linear-gradient(180deg, #8E3D67 0%, #742E52 100%);
  }

  .shoot__bet-item--pochinko .icon {
    color: #FF61B2;
  }

  .shoot__live-drop-x-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/games/shoot/pattern-x.svg?v=1) no-repeat center center/cover;
  }

  .shoot__game-wrapper {
    width: 575px;
    position: relative;
  }

  .shoot__game-wrapper.CashHunt{
    max-width: 500px;
  }

  .shoot__live--game:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #261E10;
    opacity: .75;
  }

  .shoot .cash-hunt {
    position: relative;
    width: 100%;
  }

  .shoot .cash-hunt__inner {
    width: 100%;
    position: relative;
    padding: 14px;
    border-radius: 20px;
    background: #31251A;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[9];
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 8px;
  }

  .shoot .cash-hunt__item {
    width: 100%;
    height: 41px;
    border-radius: 15px;
    background: #251C13;
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .shoot .cash-hunt__item b {
    pointer-events: none;
    color: #74604d;
    font-size: 12px;
  }

  .shoot .cash-hunt__item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .shoot .cash-hunt__front, .shoot .cash-hunt__back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: -webkit-transform 0.25s ease-in;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform-style: preverse-3d;
    -webkit-backface-visibility: hidden;
  }

  .shoot .cash-hunt__back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  .shoot .cash-hunt img {
    pointer-events: none;
    max-height: 19px;
  }

  .shoot .cash-hunt__item--result .cash-hunt__front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  .shoot .cash-hunt__item--result .cash-hunt__back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  .shoot .cash-hunt__logo {
    top: -29px;
    z-index: 1;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120px;
    height: 46px;
    background: url(../images/games/cashhunt/logotype.png) no-repeat center center/contain;
  }

  .shoot .cash-hunt__item--win .cash-hunt__back {
    background: #5ab571;
  }

  .shoot .cash-hunt__item--select .cash-hunt__front {
    background: #644e37;
  }

  .shoot .cash-hunt__item--win .cash-hunt__back b {
    color: #fff;
  }

  .shoot .cash-hunt__item--lose .cash-hunt__back {
    background: #d35157;
  }

  .shoot .cash-hunt__item--lose .cash-hunt__back b {
    color: #fff;
  }

  .shoot .coinflip {
    width: 100%;
    position: relative;
    background: #31251A url(../images/games/coin/pattern.png) no-repeat center center/contain;
    border-radius: 20px;
  }

  .shoot .coinflip img {
    pointer-events: none;
  }

  .shoot .coinflip__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 30px;
    justify-items: center;
  }

  .shoot .coinflip__slider {
    width: 100%;
    position: relative;
  }

  .shoot .coinflip__slider-i {
    position: relative;
  }

  .shoot .coinflip__slider-i img {
    max-height: 32px;
  }

  .shoot .coinflip__slider-block {
    position: relative;
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border-radius: 15px;
    margin-top: 6px;
    background: #23190F;
    overflow: hidden;
  }

  .shoot .coinflip__slider-block:before {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1;
  }

  .shoot .coinflip__slider--orel .coinflip__slider-block:before {
    background: #FFC138;
    -webkit-box-shadow: 0px 0px 13px rgba(255, 191, 52, 0.7);
    box-shadow: 0px 0px 13px rgba(255, 191, 52, 0.7);
  }

  .shoot .coinflip__slider--reshka .coinflip__slider-block:before {
    background: #1774FF;
    -webkit-box-shadow: 0px 0px 13px rgba(23, 116, 255, 0.7);
    box-shadow: 0px 0px 13px rgba(23, 116, 255, 0.7);
  }

  .shoot .coinflip__slider-scroll {
    position: absolute;
    left: 6px;
    top: 6px;
    width: 100%;
  }

  .shoot .coinflip__slider-item {
    min-width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 10px;
    background: #3E3124;
    margin-right: 4px;
  }

  .shoot .coinflip__wrapper {
    position: relative;
  }

  .shoot .coinflip__wrapper b {
    position: absolute;
    z-index: 1;
    font-size: 32px;
    font-weight: 900;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .shoot .coinflip__wrapper--flip {
    position: relative;
  }

  .shoot .coinflip__wrapper--flip .coinflip__front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  .shoot .coinflip__wrapper--flip .coinflip__back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  .shoot .coinflip__x-block {
    position: relative;
  }

  .shoot .coinflip__x-block b {
    color: #fff;
  }

  .shoot .coinflip__x-block img {
    max-height: 32px;
    margin-right: 8px;
  }

  .shoot .crazygame {
    position: relative;
  }

  .shoot .crazygame__container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 650px;
    border-radius: 20px;
  }

  .shoot .crazygame__ctx {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%) translateY(-50%);
    transform: translate(-50%) translateY(-50%);
  }

  .shoot .crazygame__wheel {
    border-radius: 50%;
    overflow: hidden;
    width: 575px;
    z-index: 1;
    height: 575px;
  }

  .shoot .crazygame__wheel-item {
    width: calc(582px * 3.14159265359 / 64);
    height: 575px;
    position: absolute;
    border-radius: 8px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 50%, 50% 50%);
    clip-path: polygon(0 0, 100% 0, 50% 50%, 50% 50%);
    overflow: hidden;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 12px;
  }

  .shoot .crazygame__wheel-item:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(5.625deg);
    transform: translateX(-50%) rotate(5.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(2) {
    -webkit-transform: translateX(-50%) rotate(11.25deg);
    transform: translateX(-50%) rotate(11.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(16.875deg);
    transform: translateX(-50%) rotate(16.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(4) {
    -webkit-transform: translateX(-50%) rotate(22.5deg);
    transform: translateX(-50%) rotate(22.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(5) {
    -webkit-transform: translateX(-50%) rotate(28.125deg);
    transform: translateX(-50%) rotate(28.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(6) {
    -webkit-transform: translateX(-50%) rotate(33.75deg);
    transform: translateX(-50%) rotate(33.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(7) {
    -webkit-transform: translateX(-50%) rotate(39.375deg);
    transform: translateX(-50%) rotate(39.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(8) {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
  }

  .shoot .crazygame__wheel-item:nth-child(9) {
    -webkit-transform: translateX(-50%) rotate(50.625deg);
    transform: translateX(-50%) rotate(50.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(10) {
    -webkit-transform: translateX(-50%) rotate(56.25deg);
    transform: translateX(-50%) rotate(56.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(11) {
    -webkit-transform: translateX(-50%) rotate(61.875deg);
    transform: translateX(-50%) rotate(61.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(12) {
    -webkit-transform: translateX(-50%) rotate(67.5deg);
    transform: translateX(-50%) rotate(67.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(13) {
    -webkit-transform: translateX(-50%) rotate(73.125deg);
    transform: translateX(-50%) rotate(73.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(14) {
    -webkit-transform: translateX(-50%) rotate(78.75deg);
    transform: translateX(-50%) rotate(78.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(15) {
    -webkit-transform: translateX(-50%) rotate(84.375deg);
    transform: translateX(-50%) rotate(84.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(16) {
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }

  .shoot .crazygame__wheel-item:nth-child(17) {
    -webkit-transform: translateX(-50%) rotate(95.625deg);
    transform: translateX(-50%) rotate(95.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(18) {
    -webkit-transform: translateX(-50%) rotate(101.25deg);
    transform: translateX(-50%) rotate(101.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(19) {
    -webkit-transform: translateX(-50%) rotate(106.875deg);
    transform: translateX(-50%) rotate(106.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(20) {
    -webkit-transform: translateX(-50%) rotate(112.5deg);
    transform: translateX(-50%) rotate(112.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(21) {
    -webkit-transform: translateX(-50%) rotate(118.125deg);
    transform: translateX(-50%) rotate(118.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(22) {
    -webkit-transform: translateX(-50%) rotate(123.75deg);
    transform: translateX(-50%) rotate(123.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(23) {
    -webkit-transform: translateX(-50%) rotate(129.375deg);
    transform: translateX(-50%) rotate(129.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(24) {
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
  }

  .shoot .crazygame__wheel-item:nth-child(25) {
    -webkit-transform: translateX(-50%) rotate(140.625deg);
    transform: translateX(-50%) rotate(140.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(26) {
    -webkit-transform: translateX(-50%) rotate(146.25deg);
    transform: translateX(-50%) rotate(146.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(27) {
    -webkit-transform: translateX(-50%) rotate(151.875deg);
    transform: translateX(-50%) rotate(151.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(28) {
    -webkit-transform: translateX(-50%) rotate(157.5deg);
    transform: translateX(-50%) rotate(157.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(29) {
    -webkit-transform: translateX(-50%) rotate(163.125deg);
    transform: translateX(-50%) rotate(163.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(30) {
    -webkit-transform: translateX(-50%) rotate(168.75deg);
    transform: translateX(-50%) rotate(168.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(31) {
    -webkit-transform: translateX(-50%) rotate(174.375deg);
    transform: translateX(-50%) rotate(174.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(32) {
    -webkit-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
  }

  .shoot .crazygame__wheel-item:nth-child(33) {
    -webkit-transform: translateX(-50%) rotate(185.625deg);
    transform: translateX(-50%) rotate(185.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(34) {
    -webkit-transform: translateX(-50%) rotate(191.25deg);
    transform: translateX(-50%) rotate(191.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(35) {
    -webkit-transform: translateX(-50%) rotate(196.875deg);
    transform: translateX(-50%) rotate(196.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(36) {
    -webkit-transform: translateX(-50%) rotate(202.5deg);
    transform: translateX(-50%) rotate(202.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(37) {
    -webkit-transform: translateX(-50%) rotate(208.125deg);
    transform: translateX(-50%) rotate(208.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(38) {
    -webkit-transform: translateX(-50%) rotate(213.75deg);
    transform: translateX(-50%) rotate(213.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(39) {
    -webkit-transform: translateX(-50%) rotate(219.375deg);
    transform: translateX(-50%) rotate(219.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(40) {
    -webkit-transform: translateX(-50%) rotate(225deg);
    transform: translateX(-50%) rotate(225deg);
  }

  .shoot .crazygame__wheel-item:nth-child(41) {
    -webkit-transform: translateX(-50%) rotate(230.625deg);
    transform: translateX(-50%) rotate(230.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(42) {
    -webkit-transform: translateX(-50%) rotate(236.25deg);
    transform: translateX(-50%) rotate(236.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(43) {
    -webkit-transform: translateX(-50%) rotate(241.875deg);
    transform: translateX(-50%) rotate(241.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(44) {
    -webkit-transform: translateX(-50%) rotate(247.5deg);
    transform: translateX(-50%) rotate(247.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(45) {
    -webkit-transform: translateX(-50%) rotate(253.125deg);
    transform: translateX(-50%) rotate(253.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(46) {
    -webkit-transform: translateX(-50%) rotate(258.75deg);
    transform: translateX(-50%) rotate(258.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(47) {
    -webkit-transform: translateX(-50%) rotate(264.375deg);
    transform: translateX(-50%) rotate(264.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(48) {
    -webkit-transform: translateX(-50%) rotate(270deg);
    transform: translateX(-50%) rotate(270deg);
  }

  .shoot .crazygame__wheel-item:nth-child(49) {
    -webkit-transform: translateX(-50%) rotate(275.625deg);
    transform: translateX(-50%) rotate(275.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(50) {
    -webkit-transform: translateX(-50%) rotate(281.25deg);
    transform: translateX(-50%) rotate(281.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(51) {
    -webkit-transform: translateX(-50%) rotate(286.875deg);
    transform: translateX(-50%) rotate(286.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(52) {
    -webkit-transform: translateX(-50%) rotate(292.5deg);
    transform: translateX(-50%) rotate(292.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(53) {
    -webkit-transform: translateX(-50%) rotate(298.125deg);
    transform: translateX(-50%) rotate(298.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(54) {
    -webkit-transform: translateX(-50%) rotate(303.75deg);
    transform: translateX(-50%) rotate(303.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(55) {
    -webkit-transform: translateX(-50%) rotate(309.375deg);
    transform: translateX(-50%) rotate(309.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(56) {
    -webkit-transform: translateX(-50%) rotate(315deg);
    transform: translateX(-50%) rotate(315deg);
  }

  .shoot .crazygame__wheel-item:nth-child(57) {
    -webkit-transform: translateX(-50%) rotate(320.625deg);
    transform: translateX(-50%) rotate(320.625deg);
  }

  .shoot .crazygame__wheel-item:nth-child(58) {
    -webkit-transform: translateX(-50%) rotate(326.25deg);
    transform: translateX(-50%) rotate(326.25deg);
  }

  .shoot .crazygame__wheel-item:nth-child(59) {
    -webkit-transform: translateX(-50%) rotate(331.875deg);
    transform: translateX(-50%) rotate(331.875deg);
  }

  .shoot .crazygame__wheel-item:nth-child(60) {
    -webkit-transform: translateX(-50%) rotate(337.5deg);
    transform: translateX(-50%) rotate(337.5deg);
  }

  .shoot .crazygame__wheel-item:nth-child(61) {
    -webkit-transform: translateX(-50%) rotate(343.125deg);
    transform: translateX(-50%) rotate(343.125deg);
  }

  .shoot .crazygame__wheel-item:nth-child(62) {
    -webkit-transform: translateX(-50%) rotate(348.75deg);
    transform: translateX(-50%) rotate(348.75deg);
  }

  .shoot .crazygame__wheel-item:nth-child(63) {
    -webkit-transform: translateX(-50%) rotate(354.375deg);
    transform: translateX(-50%) rotate(354.375deg);
  }

  .shoot .crazygame__wheel-item:nth-child(64) {
    -webkit-transform: translateX(-50%) rotate(360deg);
    transform: translateX(-50%) rotate(360deg);
  }

  .shoot .crazygame__wheel-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
  }

  .shoot .crazygame__wheel-item span {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    width: 14px;
    word-break: break-all;
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
  }

  .shoot .crazygame__wheel-item.double {
    background: #F36128;
  }

  .shoot .crazygame__wheel-item.double span {
    color: #ffc08b;
  }

  .shoot .crazygame__wheel-item.lightpurple {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(4.02%, #9D4EDF), color-stop(68.23%, #65259B));
    background: linear-gradient(to bottom, #9D4EDF 4.02%, #65259B 68.23%);
  }

  .shoot .crazygame__wheel-item.lightpurple span {
    color: #d7a9ff;
  }

  .shoot .crazygame__wheel-item.blue {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(14.77%, #4D4EDF), color-stop(71.57%, #1F207D));
    background: linear-gradient(to bottom, #4D4EDF 14.77%, #1F207D 71.57%);
  }

  .shoot .crazygame__wheel-item.blue span {
    color: #8384ff;
  }

  .shoot .crazygame__wheel-item.lightblue {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(14.01%, #7475F7), color-stop(68.98%, #27279A));
    background: linear-gradient(to bottom, #7475F7 14.01%, #27279A 68.98%);
  }

  .shoot .crazygame__wheel-item.lightblue span {
    color: #b9b9ff;
  }

  .shoot .crazygame__wheel-item.turquoise {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(8.87%, #33BCE2), color-stop(71.11%, #0D6178)), #C4C4C4;
    background: linear-gradient(to bottom, #33BCE2 8.87%, #0D6178 71.11%), #C4C4C4;
  }

  .shoot .crazygame__wheel-item.turquoise span {
    color: #97e6ff;
  }

  .shoot .crazygame__wheel-item.red {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(12.47%, #E2563A), color-stop(52.26%, #9D2C15));
    background: linear-gradient(to bottom, #E2563A 12.47%, #9D2C15 52.26%);
  }

  .shoot .crazygame__wheel-item.red span {
    color: #ff9382;
  }

  .shoot .crazygame__wheel-item.yellow {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(9.03%, #FABB33), color-stop(58.73%, #694904)), #C4C4C4;
    background: linear-gradient(to bottom, #FABB33 9.03%, #694904 58.73%), #C4C4C4;
  }

  .shoot .crazygame__wheel-item.yellow span {
    color: #ffee9b;
  }

  .shoot .crazygame__wheel-item.lightyellow {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(85.53%, #E1CB38), color-stop(45.54%, #847517)), #C4C4C4;
    background: linear-gradient(to bottom, #E1CB38 85.53%, #847517 45.54%), #C4C4C4;
  }

  .shoot .crazygame__wheel-item.lightyellow span {
    color: #fffb6d;
  }

  .shoot .crazygame__wheel-item.green {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(14.42%, #47C139), color-stop(79.12%, #277E1D));
    background: linear-gradient(to bottom, #47C139 14.42%, #277E1D 79.12%);
  }

  .shoot .crazygame__wheel-item.green span {
    color: #7cff6d;
  }

  .shoot .crazygame__cursor {
    position: absolute;
    width: 652px;
    height: 652px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .shoot .crazygame__cursor img {
    max-height: 50px;
    pointer-events: none;
  }

  .shoot .crazygame__cursor--two {
    -webkit-transform: translate(-48.65%, -50.45%) rotate(-18.875deg);
    transform: translate(-48.65%, -50.45%) rotate(-18.875deg);
  }

  .shoot .crazygame__cursor--three {
    -webkit-transform: translate(-51.45%, -50.45%) rotate(18.875deg);
    transform: translate(-51.45%, -50.45%) rotate(18.875deg);
  }

  .shoot .crazygame__wheel-center {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    background: #32281a;
    overflow: hidden;
    z-index: 2;
  }

  .shoot .crazygame__wheel-center img {
    max-height: 100%;
    pointer-events: none;
  }

  .shoot .crazygame__game-select {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(3.5px);
    backdrop-filter: blur(3.5px);
    background: rgba(50, 39, 29, 0);
    border-radius: 50%;
  }

  .shoot .crazygame__game-select h4 {
    text-transform: uppercase;
    color: #fff;
  }

  .shoot .crazygame__game-selects {
    position: relative;
    margin-top: 20px;
    grid-gap: 25px;
  }

  .shoot .crazygame__game-selects a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
  }

  .shoot .crazygame__game-selects a:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .shoot .crazygame__game-selects a:nth-child(1) {
    background: #4d22f8;
    -webkit-box-shadow: 0px 0px 0em 6px rgba(77,34,248, 0.5);
    box-shadow: 0px 0px 0em 6px rgba(77,34,248, 0.5);
  }

  .shoot .crazygame__game-selects a:nth-child(2) {
    background: #ea191d;
    -webkit-box-shadow: 0px 0px 0em 6px rgba(234,25,29, 0.5);
    box-shadow: 0px 0px 0em 6px rgba(234,25,29, 0.5);
  }

  .shoot .crazygame__game-selects a:nth-child(3) {
    background: #188e1c;
    -webkit-box-shadow: 0px 0px 0em 6px rgba(24,142,28, 0.5);
    box-shadow: 0px 0px 0em 6px rgba(24,142,28, 0.5);
  }

  .shoot .crazygame__center-ellipse {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: -webkit-gradient(linear, left bottom, left top, from(#bb7c23), to(#ffad39));
    background: linear-gradient(0deg, #bb7c23, #ffad39);
  }

  .shoot .crazygame__center-ellipse-border {
    position: absolute;
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border-radius: 50%;
    border: solid 4px #b96e04;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .shoot .crazygame__wheel-center-border {
    position: relative;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: solid 2px #3c3121;
  }

  .shoot .crazygame__wheel-center-border img {
    max-height: 40px;
  }

  .shoot .pochinko {
    width: 100%;
    position: relative;
    height: 808px;
    border-radius: 20px;
    /*padding: 0px 10px;*/
    background: #31251A;
  }

  .shoot .pochinko:before {
    -webkit-filter: blur(100px);
    filter: blur(100px);
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e1cb38;
  }

  .shoot .pochinko:after {
    -webkit-filter: blur(100px);
    filter: blur(100px);
    content: '';
    position: absolute;
    right: 0;
    top: 35%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #554ed7;
  }

  .shoot .pochinko__lvls {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[16];
    grid-template-columns: repeat(16, 1fr);
    /*padding: 10px 0px;*/
    grid-gap: 3px;
    z-index: 2;
  }
  .shoot .pochinko__lvl{
    justify-content: flex-end!important;

  }
  .shoot .pochinko__lvls:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 20px 20px;
    /*background: #31251a;*/
    z-index: 3;
  }

  .shoot .pochinko__lvl-x {
    position: relative;
    width: 100%;
    padding: 8px 0px;
    z-index: 4;
    border-radius: 10px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }

  .shoot .pochinko__lvl-x span {
    font-size: 21px;
    text-transform: uppercase;
    color: transparent;
    background-image: linear-gradient(to right, #462523 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
    -webkit-background-clip: text;

    writing-mode: vertical-lr; 
    text-orientation: upright; 
    font-weight: 900!important;

  }

  .shoot .pochinko__canvas {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  .shoot .pochinko__canvas canvas {
    border-radius: 20px;
    transform-origin: left top;
    transform: scale(1.0);
  }

  .shoot__live-drop-cursor--shooting img {
    -webkit-animation: shoot 0.5s ease-out;
    animation: shoot 0.5s ease-out;
    animation-direction: alternate-reverse;
  }

  @-webkit-keyframes shoot {
    from {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    to {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }

  @keyframes shoot {
    from {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    to {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }


  .shoot__live-drop-item--flipped .shoot__live-drop-front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  .shoot__live-drop-item--flipped .shoot__live-drop-back {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }


  .theme--dark .shoot__bet:before {
    background: url(../images/borders--dark.svg) repeat;
  }

  .x--text{
    position: relative;
    top: -4px;
    left: 2px;
    font-size: 16px!important;
    font-weight: 900!important;
    
  }

  
  .shoot .pochinko__lvl-x span{
    font-size: 16px!important;
  }
  .x--text{
    top: -3px;
    left: 1px;
    font-size: 12px!important;
  }
  

  @media(max-width: 450px){
    .shoot .pochinko__lvl-x span{
      font-size: 11px!important;
    }
    .x--text{
      top: -3px;
      left: 1px;
      font-size: 10px!important;
    }
  }

  .theme--dark .shoot__bet-item--1x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(54, 113, 122, 0.5)), to(rgba(36, 90, 98, 0.5)));
    background: linear-gradient(180deg, rgba(54, 113, 122, 0.5) 0%, rgba(36, 90, 98, 0.5) 100%);
  }

  .theme--dark .shoot__bet-item--1x span {
    color: #6090af;
  }

  .theme--dark .shoot__bet-item--2x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(172, 141, 105, 0.5)), to(rgba(128, 97, 61, 0.5)));
    background: linear-gradient(180deg, rgba(172, 141, 105, 0.5) 0%, rgba(128, 97, 61, 0.5) 100%);
  }

  .theme--dark .shoot__bet-item--2x span {
    color: #b39d97;
  }

  .theme--dark .shoot__bet-item--5x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 93, 99, 0.5)), to(rgba(88, 63, 68, 0.5)));
    background: linear-gradient(180deg, rgba(124, 93, 99, 0.5) 0%, rgba(88, 63, 68, 0.5) 100%);
  }

  .theme--dark .shoot__bet-item--5x span {
    color: #918099;
  }

  .theme--dark .shoot__bet-item--10x {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(96, 92, 124, 0.5)), to(rgba(75, 72, 99, 0.5)));
    background: linear-gradient(180deg, rgba(96, 92, 124, 0.5) 0%, rgba(75, 72, 99, 0.5) 100%);
  }

  .theme--dark .shoot__bet-item--10x span {
    color: #7e80b3;
  }


  .theme--dark .tournier__page-t-box {
    background: #1b2030;
  }
  .theme--dark .tournier__page-t-ico {
    color: #232848;
  }
  .theme--dark .tournier__separate {
    background: url(../images/borders--dark.svg) repeat;
  }


  .side-a {
    /*z-index: 100;*/
    background-size: cover;
    background-image:url(../images/games/coin/coin--orel.png);

  }
  .side-b {
    -webkit-transform: rotateZ(180deg) rotateY(-180deg);
    background-size: cover;
    background-image:url(../images/games/coin/coin--reshka.png);

  }

  .coinflip__wrapper div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-backface-visibility: hidden;
  }


  .coinflip__wrapper {
    transition: -webkit-transform 1s ease-in;
    -webkit-transform-style: preserve-3d;
  }

  .animated.flip_1 {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip_tale;
    animation-name: flip_tale
  }
  .animated.flip_2 {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
  } 
  .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  @-webkit-keyframes flip {
    0% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    40% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    50% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    80% {
      -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(180deg);
      transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(180deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    to {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(180deg);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(180deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }
  }

  @keyframes flip {
    0% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    40% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    50% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    80% {
      -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(180deg);
      transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(180deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    to {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(180deg);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(180deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }
  }


  @-webkit-keyframes flip_tale {
    0% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    40% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    50% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    80% {
      -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(360deg);
      transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(360deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    to {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(360deg);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(360deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }
  }

  @keyframes flip_tale {
    0% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(-1turn);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    40% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-190deg);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out
    }

    50% {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      transform: perspective(400px) scaleX(1) translateZ(50px) rotateX(-170deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    80% {
      -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(360deg);
      transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateX(360deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }

    to {
      -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateX(360deg);
      transform: perspective(400px) scaleX(1) translateZ(0) rotateX(360deg);
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in
    }
  }


  .cap_new{
   width: 64px;
   opacity: 1; 
   position: absolute;
   left: -3px;
   top: -9px;
 }


 .wallet__history-status{
  padding: 5px 7px;
  background: transparent;
  border-radius: 8px;
}

.wallet__history-status.warning{
  background: #e3b448;
  color: #000;
}

.wallet__history-status.success{
  background: #69df69;
  color: #000;
}

.wallet__history-status.error{
 background: #ed4e4e;
 color: #fff;
}


.newTimerBlock{
  background: #F2DEA7;
  border: solid 4px #F7AF69;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 25px;
  position: relative;
}


.newTimerText{
  margin: 5px;
  text-transform: uppercase;
  font-weight: 900;
  color: #433614;
  font-size: 16px;
}



.imgNewTimer{
  position: absolute;
  top: 20px;
  right: 50px;
  width: 100px;
}

.newTimerBlock .chat__promocode-img{
  right: -20px;
  transform: rotateY(180deg);
  left: auto;
}

.tournier__link {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
  min-height: 65px;
  border-radius: 20px;
  padding: 0px 23px;
  background: #1f273b;
  border-left: solid 2px rgb(23 27 40);
  overflow: hidden;
}

.tournier__link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15%;
  height: 2px;
  /* background: -webkit-gradient(linear, left top, right top, from(rgba(252, 93, 54, 0.3)), to(transparent)); */
  /* background: linear-gradient(to right, rgba(252, 93, 54, 0.3), transparent); */
}

.tournier__link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
  height: 2px;
  /* background: -webkit-gradient(linear, left top, right top, from(rgba(252, 93, 54, 0.3)), to(transparent)); */
  /* background: linear-gradient(to right, rgba(252, 93, 54, 0.3), transparent); */
}

.tournier__link .icon {
  color: #f2ad44;
  margin-right: 8px;
  pointer-events: none;
}

.tournier__link b {
  color: #ffffff;
  pointer-events: none;
}

.tournier__link span {
  font-size: 12px;
  color: #6c7da6;
  font-weight: 500;
  pointer-events: none;
}

.boomcity__main{
  background: #F3F4F8;
  border-radius: 20px;
  padding: 24px;
  width: calc(60% - 10px);
}

.boomcity__betblock{
  width: calc(40% - 10px);
}

.boomcity__grid{
  margin: 0 auto;
  width: 496px !important;

}

.boomcity__path .boomcity__path-item {
  width: calc(496px / 8 - 6px);
  height: calc(496px / 8 - 6px);
  margin-bottom: 6px;
  border-radius: 6px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boomcity__path-item.dice{
  background: transparent;
}
.boomcity__path-item.dice:nth-child(1), .boomcity__path-item.dice:nth-child(8), .boomcity__path-item.dice:nth-child(57), .boomcity__path-item.dice:nth-child(64){
  opacity: 0;
}

.boomcity__path-item.dice .icon{
  background: #565656;
  color: #ffdc6d;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  border-radius: 5px;
}

.boomcity__path-item.wait{
  color: #5b5d60;
  background: radial-gradient(#81777a 0%, #c5c5c5 104.75%);
}

.theme--dark .boomcity__main {
  background: #20273a;
}

.boomcity__grid{
  position: relative;
}

.boomcity__timer{
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 35px;
  transform: translate(-50%, -50%);
}

.boomcity__timer .x30__timer{
  position: relative;
}

.boomcity__timer .x30__timer:before{
  top: -30px;
}

.boomcity__bets {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.boomcity__bet, .boomcity__bet-info{
  margin-bottom: 0px;
}

.boomcity__bet-info {
  padding: 20px 22px;
  border-radius: 0px 0px 15px 15px;
  background: #F3F4F8;
  color: #475A89;
  font-weight: 500;
  margin-bottom: 0px;
}

.boomcity__bet-heading {
  border-radius: 15px 15px 0px 0px;
  padding: 16px 22px;
  cursor: pointer;
}

.boomcity__bet-heading span {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  pointer-events: none;
}

.boomcity__bet-heading img {
  pointer-events: none;
  width: 32px;
  height: 32px;
}

.boomcity__bet-heading:before {
  -webkit-filter: blur(10rem);
  filter: blur(10rem);
}

.boomcity__bet-heading.x1 {
  background: linear-gradient(263.88deg, #e59d6d 0%, #bd5719 104.75%);
}

.boomcity__bet-heading.x2 {
  background: linear-gradient(263.88deg, #bdabab 0%, #786569 104.75%);
}

.boomcity__bet-heading.x5 {
  background: linear-gradient(263.88deg, #e9c895 0%, #ce8e20 104.75%);
}

.boomcity__bet-heading.dice_battle {
  background: linear-gradient(263.88deg, #585ae3 0%, #2533b8 104.75%);
}

.boomcity__bet-heading.lucky_drop {
  background: linear-gradient(263.88deg, #9e19ca 0%, #7606a8 104.75%);
}

.boomcity__bet-heading.boom_or_bust {
  background: linear-gradient(263.88deg, #e02da2 0%, #bd0867 104.75%);
}

.theme--dark .boomcity__bet-info {
  background: #20273a;
}

.diceBlock{
  position: relative;
  height: 100px;
  width: 100%;
}
.diceBoom {
  position: absolute;
  width: 100px;
  height: 100px;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  transform-style: preserve-3d;
  transform: rotate3d(0, 0.9, 0.9, 90deg);
  transition: 0.5s cubic-bezier(0.42, 1.57, 0.62, 0.86);
}
.diceBoom.rolling {
  animation: rotatePerFace 3s cubic-bezier(0.42, 1.57, 0.62, 0.86) infinite;
}
.diceBoom.throw {
  animation: rotateDice 0.7s ease-in reverse, throwDice 1s linear;
}
.diceBoom .diceFace {
  box-sizing: border-box;
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #f6f3f0;
  border: 2px solid white;
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: 0.5s;
}
.diceBoom .diceFace::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 20px;
  transform: translateZ(-1px);
}
.diceBoom .diceFace::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  background-color: #131210;
  border-radius: 100%;
  transform: translateZ(1px);
}
.diceBoom .front {
  transform: translateZ(50px);
}
.diceBoom .front::after {
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  background-color: #131210;
}
.diceBoom .up {
  transform: rotateX(90deg) translateZ(50px);
}
.diceBoom .up::after {
  margin: -30px 0 0 -30px;
  box-shadow: 40px 40px #131210;
}
.diceBoom .left {
  transform: rotateY(-90deg) translateZ(50px);
}
.diceBoom .left::after {
  margin: -40px 0 0 -40px;
  box-shadow: 30px 30px #131210, 60px 60px #131210;
}
.diceBoom .right {
  transform: rotateY(90deg) translateZ(50px);
}
.diceBoom .right::after {
  margin: -30px 0 0 -30px;
  background-color: #131210;
  box-shadow: 40px 0px #131210, 0px 40px #131210, 40px 40px #131210;
}
.diceBoom .bottom {
  transform: rotateX(-90deg) translateZ(50px);
}
.diceBoom .bottom::after {
  margin: -36px 0 0 -36px;
  box-shadow: 26px 26px #131210, 52px 52px #131210, 52px 0px #131210, 0px 52px #131210;
}
.diceBoom .back {
  transform: rotateX(180deg) translateZ(50px);
}
.diceBoom .back::after {
  margin: -40px 0 0 -30px;
  box-shadow: 40px 0px #131210, 0px 30px #131210, 40px 30px #131210, 0px 60px #131210, 40px 60px #131210;
}

.diceWrap {
  position: absolute;
  width: 200px;
  height: 200px;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  transform: scale(0.5);
}
.diceWrap::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 10%;
  top: 90%;
  left: 15%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  filter: blur(10px);
}

@keyframes rotateDice {
  30% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 720deg);
  }
}
@keyframes rotatePerFace {
  16% {
    transform: rotate3d(-0.1, 0.6, -0.4, 180deg);
  }
  32% {
    transform: rotate3d(-0.85, -0.42, 0.73, 180deg);
  }
  48% {
    transform: rotate3d(-0.8, 0.3, -0.75, 180deg);
  }
  64% {
    transform: rotate3d(0.3, 0.45, 0.9, 180deg);
  }
  80% {
    transform: rotate3d(-0.16, 0.6, 0.18, 180deg);
  }
  100% {
    transform: rotate3d(-0.1, 0.3, -1, 180deg);
  }
}
@keyframes throwDice {
  20% {
    margin-top: -100px;
  }
  40% {
    margin-top: 0px;
  }
  60% {
    margin-top: -30px;
  }
  80% {
    margin-top: 0px;
  }
  85% {
    margin-top: -10px;
  }
  90% {
    margin-top: 0px;
  }
  95% {
    margin-top: -3px;
  }
  100% {
    margin-top: 0px;
  }
}


.controller {
  position: absolute;
  width: 200px;
  padding: 20px;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  line-height: 40px;
}

.coinBetBlock{
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}

.betBlock{
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #20273a;
}

.coinBet{
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #20273a;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon_coin{
  width: 50px;
  height: 50px;
  fill: #475A89;
}

.CoinsBtnDream {
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px transparent;
  background: url(/images/circle_c.svg) 0 0/cover no-repeat #828f9a;
  outline: none;
  border: 0;
  height: 50px;
  width: 50px;
  -webkit-transition: .1s ease-out;
  transition: .1s ease-out;
  position: relative;
  opacity: .9;

}
@media(max-width: 480px){
  .CoinsBtnDream {
    height: 35px;
    width: 35px;

  }
}
.CoinsBtnDream:hover {
  transform: translateY(-5px);
  transition: .3s;
}
.CoinsBtnDream span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-shadow: 0 0 5px rgba(0,0,0,.45);
  cursor: pointer;
}

.Coins_active-:before {
  content: "";
  display: block;
  box-shadow: 0 0 0 3px #fff;
  height: calc(100% + 2px);
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
} 

.coinBet .CoinsBtnDream{
  position: absolute;
  top: 0;
  left: 0;
}

.coinBet .CoinsBtnDream:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

.icon_arrow{
  width: 50px;
  height: 50px;
  fill: #9EABCD;
}

.betBlock button{
  /*background: red;*/
}

.arrow_left{
  transform: rotate(180deg);
}

@media(max-width: 520px){
  .header__user-balance-add{
    display: none;
  }

  .popup__tab {
      position: relative;
      padding: 11px 15px;
      border-radius: 50px;
  }

  .popup__tab .icon {
      width: 0px;
      height: 14px;
      margin-right: 0px;
      opacity: 0;
      pointer-events: none;
  }

  .popup__tab--active .icon {
      width: 14px;
      opacity: 1;
      margin-right: 6px;
      -webkit-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
      color: #005aff;
  }

  .popup__title span {
      font-size: 10px !important;
  }

  html, body {
      height: 100% !important;
  }

  .overlayed {
    /* padding: 0px 10px; */
}
}

.mobile-menu__links .icon {
    fill: #46537B!important;
    width: 40px;
    height: 40px;
}

.mobile-menu__links .active .icon {
    fill: #0057FF!important;
    width: 40px;
    height: 40px;
}

.chat__msg-message.mess span{
  overflow-wrap: break-word;  /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ IE, Firefox; ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ word-wrap */ 
  word-wrap: break-word;
}

.boomcity__bets{
  position: relative;
}

.boomcity__play .boomcity__bet{
  filter: blur(2px);
}

.diceBlocks{
  position: absolute;
  width: 100%;
  height: 100%;
}

.diceBlock{
  top: 50%;
  transform: translateY(-50%);
}

.promocodeInput{
  width: calc(100% - 151px - 10px);
}

.promocodeInputBtn{
  width: 151px;
  height: 55px
}

@media(max-width: 450px){
  .promocodeInputBlock{
    display: block;
  }
  .promocodeInput{
    width: 100%;
  }
  .promocodeInputBtn{
    margin-top: 10px;
    width: 100%;
  }
}

.fullInputWidth{

    width: calc(100% - 10px)!important;
}

.wallet__history{
  max-height: 350px;
    overflow: auto;
}

.bonus__hits-items{
  max-width: 700px;
  margin: 0 auto;
}

@media(max-width: 475px){
  .toast-top-right{
    margin-top: 60px!important;
  }
  .bonus__buttons{
    width: 100%;
  }
  .bonus__buttons a{
    width: 100%;
    justify-content: center;
  }
}

.wallet__history::-webkit-scrollbar {
  width: 12px;               /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° scrollbar */
}
.wallet__history::-webkit-scrollbar-track {
  background: #1b2030;        /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ */
}
.wallet__history::-webkit-scrollbar-thumb {
  background-color: #213875;    /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ */
  border-radius: 20px;       /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ */
  border: 3px solid #1b2030;  /* padding ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ */
}


.auth_blocks{ 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

/* .auth_block{
  height: 100px;
  border-radius: 10px;
  background: red;
  padding: auto;
}

.auth_block .icon{
  margin: auto;
  display: block;
  position: relative;
  top:50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}  */
input#wheel_input {
    color: #fff !important;
    font-size: 16px;
}
.x30__bet-placed.d-flex.align-center.justify-space-between a {
    background: #171b28;
    height: 33px;
    padding: 0px 15px;
    border-radius: 8px;
}
.bx-input__input.d-flex.align-center.justify-space-between {
    margin-bottom: 10px;
}
.history__sum.d-flex.align-center.justify-center {
    color: #f2ad44;
}
.chat__send.d-flex.align-center.justify-space-between {
    background: #20273b;
}
input#sumBetX100 {
    font-size: 16px !important;
    color: #fff;
}

.gx-game-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  min-height: 230px;
  background: radial-gradient(206.43% 154.77% at -7.97% -43.50%, #303C57 0%, rgba(24, 27, 39, 0.00) 100%);
  border-radius: 12px;
  padding: 16px;
  padding-bottom: 0;
  align-items: end;
  justify-content: space-between;
}

.gx-game-item-bk img {
  max-width: 100%;
}
.gx-game-item-bk {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.gx-game-item-bk .center {
  position: absolute;
  width: 165px;
  height: 170px;
  top: 0;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.gx-game-item-bk .left {
  position: absolute;
  width: 72px;
  height: 72px;
  top: -72px;
  bottom: 48px;
  left: -180px;
  right: 0;
  margin: auto;
  z-index: 2;
}
.gx-game-item-bk .right {
  position: absolute;
  width: 72px;
  height: 72px;
  transform: rotate(15deg);
  top: 100px;
  bottom: 48px;
  left: 0;
  right: -180px;
  margin: auto;
  z-index: 1;
}

.gx-game-item-pl {

}
.gx-game-item-tl {
  margin-top: auto;
  position: relative;
  height: 48px;
  width: 100%;
}
.gx-game-item-tl > span {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
}
.gx-clip {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.gx-clip.clip-a {
  bottom: 0;
  z-index: 1;
}
.gx-clip.clip-b {
  top: 0;
  z-index: 2;
}
svg.ic_login_warn {
    float: left;
    margin-right: 5px;
}
a.btn.d-flex.align-center span svg {
    float: right;
    margin-left: 10px;
}
svg.ft-soc {
    width: 24px;
    height: 24px;
}

a.gx-btn.soc {
    border: 0px;
    padding: 0px;
}

.gx-mh-0 {
  min-height: 32px;
}
.gx-mh-1 {
  min-height: 48px;
}
.gx-mh-2 {
  min-height: 64px;
}

.gx-box.dark {
  background-color: #1C202F;
}
.gx-box {
  padding: 8px;
  border-radius: 8px;
  background-color: #272D40;
}

.gx-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  flex-wrap: nowrap;
  background: #20273a;
  border-radius: 15px;
  padding: 5px 15px;
  border: 1px solid #2b90fe;
}
.gx-con.red {
  background: #ffffff00;
  border:1px solid #00000000;
}
.gx-con > .icon.lg {
  width: 42px;
  height: 42px;
}
.gx-con > .icon {
  width: 32px;
  height: 32px;
  color: #3B7BE6;
  padding: 8px;
  border-radius: 10px;
  /* background-color: #272D40; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.gx-con > .title {
  color: #fff;
  font-weight: 600;
}
.gx-con.red > .icon {
  background: linear-gradient(225deg, rgba(231, 70, 64, 0.56) 0%, #D45F59 100%);
  color: #fff;
}
.gx-con.red > .title {
  text-transform: uppercase;
  color: #CB5753;
}
.gx-con.blue > .icon {
  background: #3B7BE6;
  color: #fff;
}
.gx-con.blue > .title {
  color: #fff;
}

.gx-w-box {
  position: relative;
  border-radius: 12px;
  padding: 35px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #181B27;
  min-height: 240px;
  border-radius: 20px;
  min-width: 320px;
  width: 100%;
}
.gx-w-box h1 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.gx-w-box p {
  margin-top: 8px;
  color: #ece7f0f2;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.gx-w-box img {
  max-width: 100%;
}


.gx-w-box.dark p {
  color: #7785B3;
}
.gx-w-box.dark {
  background-color: #181B27;
}
.gx-w-box.blue p {
  color: #ece7f0f2;
}
.gx-w-box.blue {
  background-image: url(/assets/images/banner_tg.png);
  background-size: cover;
  background-position: 0px;
}

.wrapper.mb {
  margin-bottom: 16px;
}

.d-none {
  display: none;
}

.gx-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}
.gx-split > * {
  flex-grow: 1;
}
.gx-split > .gx-left {
  position: relative;
  background-color: #181c28;
  z-index: 1;
}
.gx-split > .gx-right {
  position: relative;
  background-color: #1c202e;
  flex: 0 1 55%;
  z-index: 2;
}

.gx-floating {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.gx-wh-1 {
  width: 100%;
  height: 100%;
}
.gx-floating-remark {
  border-radius: 8px;
  background: rgba(28, 32, 47, 0.65);
  backdrop-filter: blur(12.5px);
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 10px;
  color: #F1AC44;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px; /* 160% */
  z-index: 6;
}
.gx-remark {
  color: #48506B;
  margin-top: auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 160% */
}

.gx-comp-el-0 {
  position: absolute;
  bottom: -42px;
  left: -42px;
  right: 0;
  width: 100%;
  height: 90%;
  margin: auto;
  background: url(../assets/images/login_g.png) no-repeat center center/cover;
  z-index: 2;
  background-size: contain;
}
.gx-comp-el-1 {
  position: absolute;
  bottom: 32px;
  left: 0;

  margin: auto;
z-index: 1;
}
.gx-comp-el-2 {
  position: absolute;
  bottom: 0;

  right: 0;
  margin: auto;
z-index: 1;
}
.gx-comp-1 {
  height: 360px;
  background: radial-gradient(57.70% 57.70% at 50% 50.00%, #3B7BE6 0%, #1F58B7 100%);
}
.gx-floating-logo {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  width: 160px;
  height: 24px;
  background: url(../logotype-dark3.png) no-repeat center center/contain;
  z-index: 1;
}


.user-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.user-split > span {
  font-weight: 600;
  max-width: 100px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  color: #fff;
  text-wrap: nowrap;
  white-space: nowrap;
}
.user-avatar {
  border-radius: 14px;
  width: 48px;
  height: 48px;
}

.gx-game-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  min-height: 230px;
  background: radial-gradient(206.43% 154.77% at -7.97% -43.50%, #303C57 0%, rgba(24, 27, 39, 0.00) 100%);
  border-radius: 12px;
  padding: 16px;
  padding-bottom: 0;
  align-items: end;
  justify-content: space-between;
}

.gx-game-item-bk img {
  max-width: 100%;
}
.gx-game-item-bk {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.gx-game-item-bk .center {
  position: absolute;
  width: 165px;
  height: 170px;
  top: 0;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.gx-game-item-bk .left {
  position: absolute;
  width: 72px;
  height: 72px;
  top: -72px;
  bottom: 48px;
  left: -180px;
  right: 0;
  margin: auto;
  z-index: 2;
}
.gx-game-item-bk .right {
  position: absolute;
  width: 72px;
  height: 72px;
  transform: rotate(15deg);
  top: 100px;
  bottom: 48px;
  left: 0;
  right: -180px;
  margin: auto;
  z-index: 1;
}

.gx-game-item-pl {

}
.gx-game-item-tl {
  margin-top: auto;
  position: relative;
  height: 48px;
  width: 100%;
}
.gx-game-item-tl > span {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
}
.gx-clip {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.gx-clip.clip-a {
  bottom: 0;
  z-index: 1;
}
.gx-clip.clip-b {
  top: 0;
  z-index: 2;
}
svg.ic_login_warn {
    float: left;
    margin-right: 5px;
}
a.btn.d-flex.align-center span svg {
    float: right;
    margin-left: 10px;
}
svg.ft-soc {
    width: 24px;
    height: 24px;
}

a.gx-btn.soc {
    border: 0px;
    padding: 0px;
}

svg.icon_mobiles {
    width: 20px;
    height: 20px;
    fill: #7884b3;
}
.text-f18 span {
    font-size: 18px !important;
}


.modes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px 10px;
    padding-bottom: 25px;
}

.modes__element {
    display: flex;
    transition: .3s all ease;
    will-change: transform;
}

.modes__element:hover {
    transform: translateY(-1.5%);
}

.modes__element:hover .card-button {
    background: rgba(255, 255, 255, .25);
}

.modes__element:hover .card-button__icon {
    transform: translateX(3px);
}

.mode-card {
    width: 100%;
    height: 0;
    padding-bottom: 115%;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.card-header {
    margin: 10%;
}

.card-header_bottom {
    margin: 0;
    position: absolute;
    bottom: 10%;
    left: 10%;
    max-width: 80%;
}

.card-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
}

.card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.card-footer {
    position: absolute;
    bottom: 8%;
    left: 10%;
    text-align: left;
}

.card-button {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, .15);
    transition: .25s all ease;
    cursor: pointer;
}

.card-button__icon {
    margin-left: 10px;
    transition: .25s all ease;
}

.casino__modes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 10px;
    margin-bottom: 0px;
}

.mode-card_wide {
    padding-bottom: 40%;
}

.mode-card_wide .card-header {
    margin: 5%;
}

.mode-card_wide .card-footer {
    left: 4%;
}

.mode-card_mines {
    background-image: url('/assets/images/new_games/mines.jpg');
}

.mode-card_tower {
    background-image: url('/assets/images/new_games/tower.jpg');
}

.mode-card_raffle {
    background-image: url('/assets/images/new_games/raffle.jpg');
}

.mode-card_wheel {
    background-image: url('/assets/images/new_games/wheel.jpg');
}

.mode-card_crash {
    background-image: url('/assets/images/new_games/crash.jpg');
}

.mode-card_double {
    background-image: url('/assets/images/new_games/crazyshoot.jpg');
}

.mode-card_overgo {
    background-image: url('/assets/images/new_games/overgo.jpg');
}

.mode-card_slot {
    background-image: url('/assets/images/new_games/slot.jpg');
}

.mode-card_plinko {
    background-image: url('/assets/images/new_games/plinko.jpg');
}

.mode-card_dice {
    background-image: url('/assets/images/new_games/dice.jpg');
}

.mode-card_jackpot {
    background-image: url('/assets/images/new_games/coinflip.jpg');
}

.mode-card_slots {
    background-image: url('/assets/images/new_games/slots.jpg');
}

.mode-card_live {
    background-image: url('/assets/images/new_games/live.jpg');
}

.mode-card_social {
    background-image: url('/assets/images/new_games/socials_banner.jpg');
}

.mode-card_soon {
    background-image: url('/assets/images/new_games/soon.jpg');
}

.slot_games_content{
  margin-top: 25px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  justify-content: space-between;
}

.name_slot_game, .play_slot_game, .demo_slot_game{
  z-index: 1;
}


.name_slot_game{
  padding: 25px;
  text-align: center;
  text-edge: cap;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.play_slot_game{
  display: flex;
  justify-self: center;
  align-self: center;
  height: 68px;
  width: 68px;
  background: #0052CE;
  border-radius: 100%;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

.play_slot_game:hover{
  opacity: 0.8;
}

.play_slot_game svg{
  fill:#fff!important;
  width: 26px;
  height: 26px;
}

.demo_slot_game{
  transition: .3s;
  cursor: pointer;
  display: flex;
  justify-self: center;
  width: 104px;
  height: 38px;
  border-radius: 17px 17px 0px 0px;
  background: #20273A;
  align-self: flex-end;
  justify-content: center;
  align-items: center;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.demo_slot_game:hover{
  opacity: 0.8;
}


.head_slot_game{
  height: 50px;
  border-radius: 0px 0px 7px 7px;
  background: #131723;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr auto 1fr;
  box-shadow: 0 0 12px #0a0c1063;
   #20273a;
}

.head_name_slot_game{
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.buttons_slot_game{
  display: flex;
  padding: 0px 18px;
  gap: 11px;
}

.buttons_slot_game.right{
  justify-content: end;
}

.buttons_slot_game button{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.0);
  transition: .3s;
}

.buttons_slot_game svg{
  width: 16px;
  height: 16px;
}

.buttons_slot_game button:hover{
  opacity: 0.8;
}

.body_slot_game{
  background: #000;
  border-bottom-left-radius: 18px; 
  border-bottom-right-radius: 18px;
  padding-bottom: 10px;
  padding-top: 55.25%;
  position: relative;
  width: 100%;
}

.body_slot_game iframe{
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.block_slots_inputs{
  display: grid;
  gap: 20px;
  grid-template-columns: auto calc(100% / 3);
}



.slot_games_content{
  transition: .3s;
  position: relative;
}


.slot_games_content.none{
  transition: 0s;
  color: #485c80;
  font-size: 18px;
  grid-template-columns: 1fr;
  text-align: center;
}

@media(max-height: 815px){
  .sidebar__socials{
    display: none;
  }
}

@media(min-width:1920px){
  .slot_games_content{
    grid-template-columns: repeat(6, 1fr);
  }
}

@media(max-width:1650px){
  .slot_games_content{
    grid-template-columns: repeat(4, 1fr);
  }
  .slot_game{
    height: 234px;
  }
}

@media(max-width:1450px){
  .slot_games_content{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:1380px){
  .block_slots_inputs{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:1200px){
  .slot_games_content{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:1125px){
  .slot_games_content{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:800px){
  .slot_games_content{
    grid-template-columns: repeat(4, 1fr);
  }
  
}



.slot_game {
  position: relative;
  width: 100%;
  height: 234px;
  background: #20273A;
  border-radius: 17px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s;
  z-index: 0;
}



.info_slot_game {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

.info_slot_game_play{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  background: transparent;
  cursor: pointer;
}


.name_slot_game, .play_slot_game, .demo_slot_game {
  cursor: pointer;
  z-index: 2;
}


.block_slots_inputs .bx-input_input {
  padding-left: 20px !important;
}

/*.slot_game {
    position: relative;
}

.slot_game {
    position: relative;
    overflow: hidden;
}*/

.slot_game {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  padding: 10px!important;
  box-sizing: border-box;
}

.slot_game:hover {
  transform: scale(1.1);
}



/*.slot_game:hover {
    transform: scale(1.1);
}*/

.info_slot_game {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 39, 58, 0.9);
  opacity: 0;
/*    transform: scale(1);*/
transition: opacity 0.3s, transform 0.3s;
}

.info_slot_game {

/*    transform: translateY(100%);*/
}

.info_slot_game {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
/*    transform: translateY(-100%);*/
transition: opacity 0.3s, transform 0.3s;

z-index: 1;
padding: 10px 0px;
}

.slot_game:hover .info_slot_game {
  opacity: 1;
  transform: scale(1);
}

.slot_game:hover .info_slot_game {
  opacity: 1;
/*    transform: translateY(0%);*/
}

.icon_button_slot{
  width: 20px!important;
  height: 20px!important;
  fill: #6D7BA0!important;
}

@media(max-width:550px){

  .slot_games_content{
    gap: 7px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.demo_slot_button{
  width: 94px!important;
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;13:37 09.11.2024
  text-transform: uppercase;
  border-radius: 11px;
  background: #28314D!important;
  color: #fff;
  cursor: default;
}

@media(max-width:400px){
  .icon_button_slot{
    width: 17px!important;
    height: 17px!important;
  }

  .play_slot_game{
    width: 54px;
    height: 54px;
  }

  .play_slot_game svg{
    width: 16px;
    height: 16px;
  }


  .name_slot_game{
    padding: 16px;
    font-size: 10px;
  }


  .demo_slot_game{
    width: 83px;
    height: 26px;
    font-size: 12px;
  }

  .head_name_slot_game{
    font-size: 14px;
  }

  .buttons_slot_game button{
    width: 32px;
    height: 32px;

  }

  .buttons_slot_game svg{
    width: 12px;
    height: 12px;
  }

  

  .demo_slot_button{
    width: 55px!important;
    font-size: 11px;

    background: #28314D!important;
    color: #fff;
    cursor: default;
  }

  .slot_game, .info_slot_game{
    border-radius: 11px;
  }
}





.name_slot_game{
  padding-left: 0px;
  padding-right: 0px;
}


.slot_game_wrapper {
  overflow: hidden;
}



.big_slot .slot_game_panel{
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.big_slot .slot_game_panel .body_slot_game{
  height: calc(100% - 45px);
  border-radius: 0px;
}

.big_slot .header, .big_slot .mobile-menu{
  z-index: 0;
  transition: 0s;
}

.big_slot .mobile-menu{
  z-index: 0;
  transition: 0s;
}

.big_slot .mobile-menu {
  z-index: 0;
  transition: 0s;
}

.big_slot .mobile-menu{
  z-index: 0;
  transition: 0s;
}

.big_slot #app > .main > .header {
  z-index: 1;
  transition: 0s;
}

.big_slot .head_slot_game, .big_slot iframe{
  border-radius: 0px;
}

.item_select_provider{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon_slot_close{
  width: 12px;
  height: 12px;
  opacity: 0;
}

.item_select_provider.active .icon_slot_close{
  opacity: 1;
}


.name_slot_game{
  justify-self: center;
  max-width: calc(100% - 20px);
}

*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/* ! tailwindcss v3.4.15 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:Rubik;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.-bottom-\[4\.125rem\]{bottom:-4.125rem}.-bottom-\[6\.25rem\]{bottom:-6.25rem}.-left-\[3\.125rem\]{left:-3.125rem}.-left-\[50\%\]{left:-50%}.-top-\[\.125rem\]{top:-.125rem}.-top-\[3\.125rem\]{top:-3.125rem}.bottom-0{bottom:0px}.left-0{left:0px}.left-1{left:0.25rem}.left-1\/2{left:50%}.left-\[\.063rem\]{left:.063rem}.left-\[35\%\]{left:35%}.left-\[45\%\]{left:45%}.right-0{right:0px}.top-0{top:0px}.top-1\/2{top:50%}.top-\[\.063rem\]{top:.063rem}.top-\[1\.063rem\]{top:1.063rem}.top-\[4\.5rem\]{top:4.5rem}.-bottom-7{bottom:-1.75rem}.left-\[\.375rem\]{left:.375rem}.top-4{top:1rem}.top-\[\.125rem\]{top:.125rem}.top-\[1\.25rem\]{top:1.25rem}.-left-\[\.125rem\]{left:-.125rem}.z-\[10\]{z-index:10}.z-\[1\]{z-index:1}.z-\[2000\]{z-index:2000}.z-\[2\]{z-index:2}.z-\[3\]{z-index:3}.z-\[4\]{z-index:4}.z-\[9\]{z-index:9}.-ml-2{margin-left:-0.5rem}.-mr-2{margin-right:-0.5rem}.-mt-5{margin-top:-1.25rem}.mb-\[2\.5rem\]{margin-bottom:2.5rem}.mb-\[2rem\]{margin-bottom:2rem}.mt-1{margin-top:0.25rem}.-mb-\[\.625rem\]{margin-bottom:-.625rem}.-mt-\[2\.75rem\]{margin-top:-2.75rem}.flex{display:flex}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-1\.5{height:0.375rem}.h-1\/2{height:50%}.h-2{height:0.5rem}.h-3{height:0.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-\[1\.125rem\]{height:1.125rem}.h-\[1\.5rem\]{height:1.5rem}.h-\[1\.625rem\]{height:1.625rem}.h-\[187\.5rem\]{height:187.5rem}.h-\[1rem\]{height:1rem}.h-\[2\.5rem\]{height:2.5rem}.h-\[2\.625rem\]{height:2.625rem}.h-\[2\.813rem\]{height:2.813rem}.h-\[2\.875rem\]{height:2.875rem}.h-\[20rem\]{height:20rem}.h-\[2rem\]{height:2rem}.h-\[3\.438rem\]{height:3.438rem}.h-\[3px\]{height:3px}.h-\[3rem\]{height:3rem}.h-\[4\.5rem\]{height:4.5rem}.h-\[4\.625rem\]{height:4.625rem}.h-\[5\.25rem\]{height:5.25rem}.h-\[5rem\]{height:5rem}.h-\[6\.25rem\]{height:6.25rem}.h-\[7\.5rem\]{height:7.5rem}.h-\[70rem\]{height:70rem}.h-\[8\.5rem\]{height:8.5rem}.h-\[8px\]{height:8px}.h-\[calc\(100\%_-_\.125rem\)\]{height:calc(100% - .125rem)}.h-\[calc\(100\%_-_4\.5rem\)\]{height:calc(100% - 4.5rem)}.h-6{height:1.5rem}.h-\[\.375rem\]{height:.375rem}.h-\[\.5rem\]{height:.5rem}.h-\[1\.063rem\]{height:1.063rem}.h-\[12rem\]{height:12rem}.h-\[18rem\]{height:18rem}.h-\[2\.75rem\]{height:2.75rem}.h-\[4\.563rem\]{height:4.563rem}.h-\[4rem\]{height:4rem}.h-\[7\.25rem\]{height:7.25rem}.max-h-0{max-height:0px}.w-0{width:0px}.w-1\.5{width:0.375rem}.w-2{width:0.5rem}.w-3{width:0.75rem}.w-4{width:1rem}.w-8{width:2rem}.w-\[\.063rem\]{width:.063rem}.w-\[1\.008px\]{width:1.008px}.w-\[1\.125rem\]{width:1.125rem}.w-\[1\.5rem\]{width:1.5rem}.w-\[1\.625rem\]{width:1.625rem}.w-\[13\.188rem\]{width:13.188rem}.w-\[16rem\]{width:16rem}.w-\[187\.5rem\]{width:187.5rem}.w-\[2\.625rem\]{width:2.625rem}.w-\[2\.813rem\]{width:2.813rem}.w-\[20rem\]{width:20rem}.w-\[2rem\]{width:2rem}.w-\[3\.75rem\]{width:3.75rem}.w-\[3rem\]{width:3rem}.w-\[5\.25rem\]{width:5.25rem}.w-\[70rem\]{width:70rem}.w-\[7rem\]{width:7rem}.w-\[9\.75rem\]{width:9.75rem}.w-\[calc\(100\%_\+_1rem\)\]{width:calc(100% + 1rem)}.w-\[calc\(100\%_-_\.125rem\)\]{width:calc(100% - .125rem)}.w-full{width:100%}.w-6{width:1.5rem}.w-\[100px\]{width:100px}.w-\[2\.25rem\]{width:2.25rem}.w-\[4\.688rem\]{width:4.688rem}.w-\[4rem\]{width:4rem}.w-\[5\.625rem\]{width:5.625rem}.w-\[8\.313rem\]{width:8.313rem}.w-5{width:1.25rem}.min-w-\[320px\]{min-width:320px}.min-w-\[10rem\]{min-width:10rem}.max-w-\[18\.75rem\]{max-width:18.75rem}.max-w-full{max-width:100%}.max-w-20{max-width:5rem}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.origin-center{transform-origin:center}.-translate-x-1\/2{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-45{--tw-rotate:-45deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-\[32deg\]{--tw-rotate:-32deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate:45deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-\[120deg\]{--tw-rotate:120deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-\[60deg\]{--tw-rotate:-60deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-skew-x-\[10deg\]{--tw-skew-x:-10deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.animate-\[fireRocketJackpot_1s_ease_alternate_infinite\]{animation:fireRocketJackpot 1s ease alternate infinite}.animate-\[upgradeFlyShadow_1s_infinite_alternate\]{animation:upgradeFlyShadow 1s infinite alternate}.animate-\[upgradeFly_1s_alternate_infinite\]{animation:upgradeFly 1s alternate infinite}.animate-\[upgradeShadows_0\.8s_infinite_alternate\]{animation:upgradeShadows 0.8s infinite alternate}.animate-\[waitRocketJackpot_1\.5s_ease_alternate_infinite\]{animation:waitRocketJackpot 1.5s ease alternate infinite}.animate-\[fireRocketJackpot_0\.3s_ease_alternate_infinite\]{animation:fireRocketJackpot 0.3s ease alternate infinite}.animate-\[waitRocketJackpot_0\.2s_ease_alternate_infinite\]{animation:waitRocketJackpot 0.2s ease alternate infinite}.animate-\[flyRocketJackpot_4s_ease-in-out_forwards\]{animation:flyRocketJackpot 4s ease-in-out forwards}.select-none{-webkit-user-select:none;user-select:none}.grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\.5{gap:0.125rem}.gap-1\.5{gap:0.375rem}.gap-2{gap:0.5rem}.gap-3{gap:0.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-\[\.313rem\]{gap:.313rem}.gap-\[\.5rem\]{gap:.5rem}.gap-\[\.625rem\]{gap:.625rem}.gap-\[\.75rem\]{gap:.75rem}.gap-\[1\.25rem\]{gap:1.25rem}.gap-\[1\.875rem\]{gap:1.875rem}.gap-1{gap:0.25rem}.gap-y-4{row-gap:1rem}.-space-y-2 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(-0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(-0.5rem * var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.break-all{word-break:break-all}.rounded-\[\.25rem\]{border-radius:.25rem}.rounded-\[\.375rem\]{border-radius:.375rem}.rounded-\[\.438rem\]{border-radius:.438rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:0.5rem}.rounded-xl{border-radius:0.75rem}.rounded-\[50\%\]{border-radius:50%}.rounded-tl-xl{border-top-left-radius:0.75rem}.rounded-tr-xl{border-top-right-radius:0.75rem}.rounded-br-\[\.625rem\]{border-bottom-right-radius:.625rem}.rounded-tl-\[\.375rem\]{border-top-left-radius:.375rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-r-2{border-right-width:2px}.border-b-\[\.25rem\]{border-bottom-width:.25rem}.border-r-\[\.25rem\]{border-right-width:.25rem}.border-current{border-color:currentColor}.border-\[\#4A4D64\]{--tw-border-opacity:1;border-color:rgb(74 77 100 / var(--tw-border-opacity, 1))}.border-transparent{border-color:transparent}.border-b-\[\#2A2C3D\]{--tw-border-opacity:1;border-bottom-color:rgb(42 44 61 / var(--tw-border-opacity, 1))}.border-b-\[\#2F3342\]{--tw-border-opacity:1;border-bottom-color:rgb(47 51 66 / var(--tw-border-opacity, 1))}.border-b-\[\#131521\]{--tw-border-opacity:1;border-bottom-color:rgb(19 21 33 / var(--tw-border-opacity, 1))}.border-r-\[\#131521\]{--tw-border-opacity:1;border-right-color:rgb(19 21 33 / var(--tw-border-opacity, 1))}.bg-\[\#131521\]{--tw-bg-opacity:1;background-color:rgb(19 21 33 / var(--tw-bg-opacity, 1))}.bg-\[\#0D0F17\]\/\[0\.85\]{background-color:rgb(13 15 23 / 0.85)}.bg-\[\#151620\]{--tw-bg-opacity:1;background-color:rgb(21 22 32 / var(--tw-bg-opacity, 1))}.bg-\[\#1D1F2C\]{--tw-bg-opacity:1;background-color:rgb(29 31 44 / var(--tw-bg-opacity, 1))}.bg-\[\#222432\]{--tw-bg-opacity:1;background-color:rgb(34 36 50 / var(--tw-bg-opacity, 1))}.bg-\[\#222532\]{--tw-bg-opacity:1;background-color:rgb(34 37 50 / var(--tw-bg-opacity, 1))}.bg-\[\#262838\]{--tw-bg-opacity:1;background-color:rgb(38 40 56 / var(--tw-bg-opacity, 1))}.bg-\[\#2d3140\]{--tw-bg-opacity:1;background-color:rgb(45 49 64 / var(--tw-bg-opacity, 1))}.bg-\[\#313343\]{--tw-bg-opacity:1;background-color:rgb(49 51 67 / var(--tw-bg-opacity, 1))}.bg-\[\#373a4c\]{--tw-bg-opacity:1;background-color:rgb(55 58 76 / var(--tw-bg-opacity, 1))}.bg-\[\#3D4051\]{--tw-bg-opacity:1;background-color:rgb(61 64 81 / var(--tw-bg-opacity, 1))}.bg-\[\#4b4e66\]{--tw-bg-opacity:1;background-color:rgb(75 78 102 / var(--tw-bg-opacity, 1))}.bg-\[\#8b8bb9\]\/\[0\.1\]{background-color:rgb(139 139 185 / 0.1)}.bg-blue{--tw-bg-opacity:1;background-color:rgb(0 131 225 / var(--tw-bg-opacity, 1))}.bg-blue\/\[0\.5\]{background-color:rgb(0 131 225 / 0.5)}.bg-current{background-color:currentColor}.bg-transparent{background-color:transparent}.bg-\[\#171a24\]\/\[0\.7\]{background-color:rgb(23 26 36 / 0.7)}.bg-\[\#2E3144\]{--tw-bg-opacity:1;background-color:rgb(46 49 68 / var(--tw-bg-opacity, 1))}.bg-\[\#313444\]{--tw-bg-opacity:1;background-color:rgb(49 52 68 / var(--tw-bg-opacity, 1))}.bg-\[\#36394F\]{--tw-bg-opacity:1;background-color:rgb(54 57 79 / var(--tw-bg-opacity, 1))}.bg-\[\#383A4E\]{--tw-bg-opacity:1;background-color:rgb(56 58 78 / var(--tw-bg-opacity, 1))}.bg-\[\#3a3e56\]{--tw-bg-opacity:1;background-color:rgb(58 62 86 / var(--tw-bg-opacity, 1))}.bg-\[\#484c66\]{--tw-bg-opacity:1;background-color:rgb(72 76 102 / var(--tw-bg-opacity, 1))}.bg-\[\#4B5070\]{--tw-bg-opacity:1;background-color:rgb(75 80 112 / var(--tw-bg-opacity, 1))}.bg-\[\#494E67\]{--tw-bg-opacity:1;background-color:rgb(73 78 103 / var(--tw-bg-opacity, 1))}.bg-\[\#494E67\]\/\[0\.8\]{background-color:rgb(73 78 103 / 0.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-\[radial-gradient\(transparent\2c _\#131521_80\%\)\]{background-image:radial-gradient(transparent, #131521 80%)}.bg-\[radial-gradient\(transparent\2c _\#1d1f2c_75\%\)\]{background-image:radial-gradient(transparent, #1d1f2c 75%)}.bg-gradient-to-b{background-image:linear-gradient(to bottom, var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left, var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right, var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top, var(--tw-gradient-stops))}.from-\[\#0083E1\]{--tw-gradient-from:#0083E1 var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 131 225 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.from-\[\#1B2138\]{--tw-gradient-from:#1B2138 var(--tw-gradient-from-position);--tw-gradient-to:rgb(27 33 56 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.from-\[\#6F7081\]{--tw-gradient-from:#6F7081 var(--tw-gradient-from-position);--tw-gradient-to:rgb(111 112 129 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.from-transparent{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.from-\[40\%\]{--tw-gradient-from-position:40%}.from-\[50\%\]{--tw-gradient-from-position:50%}.via-\[\#3B3C48\]{--tw-gradient-to:rgb(59 60 72 / 0)  var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), #3B3C48 var(--tw-gradient-via-position), var(--tw-gradient-to)}.to-\[\#005AE1\]{--tw-gradient-to:#005AE1 var(--tw-gradient-to-position)}.to-\[\#131521\]{--tw-gradient-to:#131521 var(--tw-gradient-to-position)}.to-\[\#2F3754\]{--tw-gradient-to:#2F3754 var(--tw-gradient-to-position)}.to-\[\#555766\]{--tw-gradient-to:#555766 var(--tw-gradient-to-position)}.to-\[\#0049B6\]{--tw-gradient-to:#0049B6 var(--tw-gradient-to-position)}.to-\[80\%\]{--tw-gradient-to-position:80%}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.object-top{object-position:top}.p-2{padding:0.5rem}.p-\[1\.25rem_1\.563rem\]{padding:1.25rem 1.563rem}.p-\[1rem_1\.25rem\]{padding:1rem 1.25rem}.p-\[2\.5rem\]{padding:2.5rem}.p-\[2rem_1rem\]{padding:2rem 1rem}.p-1{padding:0.25rem}.p-\[\.5rem\]{padding:.5rem}.px-2{padding-left:0.5rem;padding-right:0.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-\[1\.25rem\]{padding-left:1.25rem;padding-right:1.25rem}.px-\[1\.75rem\]{padding-left:1.75rem;padding-right:1.75rem}.px-\[1rem\]{padding-left:1rem;padding-right:1rem}.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem}.py-3{padding-top:0.75rem;padding-bottom:0.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-\[1\.5rem\]{padding-top:1.5rem;padding-bottom:1.5rem}.pb-\[\.625rem\]{padding-bottom:.625rem}.pb-\[1\.25rem\]{padding-bottom:1.25rem}.pb-\[1\.875rem\]{padding-bottom:1.875rem}.pb-\[6\.25rem\]{padding-bottom:6.25rem}.pl-0{padding-left:0px}.pl-\[\.75rem\]{padding-left:.75rem}.pl-\[1rem\]{padding-left:1rem}.pr-\[1\.125rem\]{padding-right:1.125rem}.pr-\[1rem\]{padding-right:1rem}.pt-\[\.313rem\]{padding-top:.313rem}.pt-\[4\.5rem\]{padding-top:4.5rem}.pb-\[3\.5rem\]{padding-bottom:3.5rem}.pt-7{padding-top:1.75rem}.text-left{text-align:left}.text-center{text-align:center}.font-sans{font-family:Rubik}.font-opensans{font-family:Open Sans Condensed}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[\.688rem\]{font-size:.688rem}.text-\[10px\]{font-size:10px}.text-\[2\.25rem\]{font-size:2.25rem}.text-\[2\.625rem\]{font-size:2.625rem}.text-\[2rem\]{font-size:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:0.75rem;line-height:1rem}.text-\[\.813rem\]{font-size:.813rem}.font-\[400\]{font-weight:400}.font-\[500\]{font-weight:500}.font-\[600\]{font-weight:600}.font-\[700\]{font-weight:700}.font-bold{font-weight:700}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\[120\%\]{line-height:120%}.leading-\[100\%\]{line-height:100%}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-\[\#75798C\]{--tw-text-opacity:1;color:rgb(117 121 140 / var(--tw-text-opacity, 1))}.text-\[\#9CA0B5\]{--tw-text-opacity:1;color:rgb(156 160 181 / var(--tw-text-opacity, 1))}.text-\[\#9E9EAD\]{--tw-text-opacity:1;color:rgb(158 158 173 / var(--tw-text-opacity, 1))}.text-\[\#9ca0b5\]{--tw-text-opacity:1;color:rgb(156 160 181 / var(--tw-text-opacity, 1))}.text-\[\#9e9ead\]{--tw-text-opacity:1;color:rgb(158 158 173 / var(--tw-text-opacity, 1))}.text-\[\#A2A8B0\]{--tw-text-opacity:1;color:rgb(162 168 176 / var(--tw-text-opacity, 1))}.text-\[\#A7AFBF\]{--tw-text-opacity:1;color:rgb(167 175 191 / var(--tw-text-opacity, 1))}.text-\[\#DBDBDB\]{--tw-text-opacity:1;color:rgb(219 219 219 / var(--tw-text-opacity, 1))}.text-\[\#FFEE52\]{--tw-text-opacity:1;color:rgb(255 238 82 / var(--tw-text-opacity, 1))}.text-\[\#b2b7e1\]{--tw-text-opacity:1;color:rgb(178 183 225 / var(--tw-text-opacity, 1))}.text-blue{--tw-text-opacity:1;color:rgb(0 131 225 / var(--tw-text-opacity, 1))}.text-\[\#c5c9f9\]{--tw-text-opacity:1;color:rgb(197 201 249 / var(--tw-text-opacity, 1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0 / var(--tw-text-opacity, 1))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-20{opacity:0.2}.opacity-25{opacity:0.25}.opacity-70{opacity:0.7}.opacity-75{opacity:0.75}.\!opacity-0{opacity:0 !important}.shadow-btn-blue{--tw-shadow:0px 12px 19px -4px rgba(7, 119, 200, 0.16);--tw-shadow-colored:0px 12px 19px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.blur-\[12\.5rem\]{--tw-blur:blur(12.5rem);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-xl{--tw-drop-shadow:drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-\[10px\]{--tw-backdrop-blur:blur(10px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-\[3px\]{--tw-backdrop-blur:blur(3px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-\[20px\]{--tw-backdrop-blur:blur(20px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition-\[background_\2c _box-shadow\]{transition-property:background , box-shadow;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background_\2c _box-shadow_\2c _opacity\]{transition-property:background , box-shadow , opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background_\2c _box-shadow_\2c _transform\]{transition-property:background , box-shadow , transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background_\2c _color\]{transition-property:background , color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background_\2c _color_\2c _opacity\]{transition-property:background , color , opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background_\2c _transform\]{transition-property:background , transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[color\]{transition-property:color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[color_\2c _background\]{transition-property:color , background;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[color_\2c _background_\2c _border\]{transition-property:color , background , border;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[color_\2c _opacity\]{transition-property:color , opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[max-height\]{transition-property:max-height;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[opacity\]{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[transform\]{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[transform_\2c _top\]{transition-property:transform , top;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[background\]{transition-property:background;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[filter\]{transition-property:filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[height_\2c _box-shadow\]{transition-property:height , box-shadow;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-\[opacity_\2c _border\]{transition-property:opacity , border;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.duration-200{transition-duration:200ms}.duration-300{transition-duration:300ms}.duration-\[500ms\]{transition-duration:500ms}.\*\:leading-\[100\%\] > *{line-height:100%}.before\:pt-\[100\%\]::before{content:var(--tw-content);padding-top:100%}.before\:pt-\[50\%\]::before{content:var(--tw-content);padding-top:50%}.before\:pt-\[130\%\]::before{content:var(--tw-content);padding-top:130%}.last\:border-0:last-child{border-width:0px}.hover\:z-\[2\]:hover{z-index:2}.hover\:-translate-y-\[0\.25rem\]:hover{--tw-translate-y:-0.25rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:-translate-y-\[5px\]:hover{--tw-translate-y:-5px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:scale-110:hover{--tw-scale-x:1.1;--tw-scale-y:1.1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:bg-\[\#222434\]:hover{--tw-bg-opacity:1;background-color:rgb(34 36 52 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#2399EF\]:hover{--tw-bg-opacity:1;background-color:rgb(35 153 239 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#272939\]:hover{--tw-bg-opacity:1;background-color:rgb(39 41 57 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#2f3140\]:hover{--tw-bg-opacity:1;background-color:rgb(47 49 64 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#313444\]:hover{--tw-bg-opacity:1;background-color:rgb(49 52 68 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#343848\]:hover{--tw-bg-opacity:1;background-color:rgb(52 56 72 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#383a4d\]:hover{--tw-bg-opacity:1;background-color:rgb(56 58 77 / var(--tw-bg-opacity, 1))}.hover\:bg-\[\#8b8bb9\]\/\[0\.15\]:hover{background-color:rgb(139 139 185 / 0.15)}.hover\:bg-\[\#454a66\]:hover{--tw-bg-opacity:1;background-color:rgb(69 74 102 / var(--tw-bg-opacity, 1))}.hover\:bg-blue:hover{--tw-bg-opacity:1;background-color:rgb(0 131 225 / var(--tw-bg-opacity, 1))}.hover\:text-\[\#B9B9CA\]:hover{--tw-text-opacity:1;color:rgb(185 185 202 / var(--tw-text-opacity, 1))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hover\:text-\[\#DDE1F1\]:hover{--tw-text-opacity:1;color:rgb(221 225 241 / var(--tw-text-opacity, 1))}.hover\:shadow-btn-blue:hover{--tw-shadow:0px 12px 19px -4px rgba(7, 119, 200, 0.16);--tw-shadow-colored:0px 12px 19px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.hover\:shadow-slot-card:hover{--tw-shadow:0px 3px 85px 30px rgba(0,0,0,0.25);--tw-shadow-colored:0px 3px 85px 30px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.active\:text-white:active{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.group\/slot:hover .group-hover\/slot\:\!h-\[calc\(100\%_\+_1\.5rem\)\]{height:calc(100% + 1.5rem) !important}.group\/level:hover .group-hover\/level\:-translate-y-\[1\.125rem\]{--tw-translate-y:-1.125rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group\/slot:hover .group-hover\/slot\:border-\[\#535664\]{--tw-border-opacity:1;border-color:rgb(83 86 100 / var(--tw-border-opacity, 1))}.group\/toggle:hover .group-hover\/toggle\:bg-\[\#1d1f2c\]{--tw-bg-opacity:1;background-color:rgb(29 31 44 / var(--tw-bg-opacity, 1))}.group\/link:hover .group-hover\/link\:text-\[\#9196AA\]{--tw-text-opacity:1;color:rgb(145 150 170 / var(--tw-text-opacity, 1))}.group\/tournament:hover .group-hover\/tournament\:opacity-100{opacity:1}.group\/level:hover .group-hover\/level\:opacity-0{opacity:0}.group\/favorite:hover .group-hover\/favorite\:opacity-0{opacity:0}.group\/favorite:hover .group-hover\/favorite\:opacity-100{opacity:1}.group\/slot:hover .group-hover\/slot\:\!opacity-100{opacity:1 !important}.group\/slot:hover .group-hover\/slot\:opacity-100{opacity:1}.group\/slot:hover .group-hover\/slot\:grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.group\/btn.active .group-\[\.active\]\/btn\:top-\[2px\]{top:2px}.group\/toggle.active .group-\[\.active\]\/toggle\:left-4{left:1rem}.group\/link.active .group-\[\.active\]\/link\:\!w-full{width:100% !important}.group\/btn.active .group-\[\.active\]\/btn\:rotate-\[225deg\]{--tw-rotate:225deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group\/burger.active .group-\[\.active\]\/burger\:rotate-0{--tw-rotate:0deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group\/body:not(.disable-animations) .group-\[\:not\(\.disable-animations\)\]\/body\:animate-\[radial_80s_infinite_linear\]{animation:radial 80s infinite linear}.group\/body:not(.disable-animations) .group-\[\:not\(\.disable-animations\)\]\/body\:animate-\[rocketFire_0\.7s_ease_infinite_alternate\]{animation:rocketFire 0.7s ease infinite alternate}.group\/body:not(.disable-animations) .group-\[\:not\(\.disable-animations\)\]\/body\:animate-\[rocket_1s_ease_infinite_alternate\]{animation:rocket 1s ease infinite alternate}.group\/body:not(.disable-animations) .group-\[\:not\(\.disable-animations\)\]\/body\:animate-\[wheel_100s_alternate_forwards_infinite_linear\]{animation:wheel 100s alternate forwards infinite linear}.group\/toggle.active .group-\[\.active\]\/toggle\:bg-blue{--tw-bg-opacity:1;background-color:rgb(0 131 225 / var(--tw-bg-opacity, 1))}.group\/toggle.active .group-\[\.active\]\/toggle\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.group\/link.active .group-\[\.active\]\/link\:text-blue{--tw-text-opacity:1;color:rgb(0 131 225 / var(--tw-text-opacity, 1))}.group\/link.active .group-\[\.active\]\/link\:\!opacity-100{opacity:1 !important}@media (max-width: 1124px){.max-\[1124px\]\:z-\[1\]{z-index:1}.max-\[1124px\]\:-mt-12{margin-top:-3rem}.max-\[1124px\]\:min-w-\[11\.25rem\]{min-width:11.25rem}.max-\[1124px\]\:-translate-x-full{--tw-translate-x:-100%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-\[1124px\]\:overflow-auto{overflow:auto}.max-\[1124px\]\:px-\[1rem\]{padding-left:1rem;padding-right:1rem}.max-\[1124px\]\:pb-\[4rem\]{padding-bottom:4rem}.max-\[1124px\]\:pb-\[5rem\]{padding-bottom:5rem}.group\/sidebar.active .max-\[1124px\]\:group-\[\.active\]\/sidebar\:translate-x-0{--tw-translate-x:0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (max-width: 865px){.max-\[865px\]\:w-full{width:100%}}@media (max-width: 860px){.max-\[860px\]\:-order-\[1\]{order:-1}}@media (max-width: 766px){.max-\[766px\]\:-order-\[1\]{order:-1}}@media (max-width: 700px){.max-\[700px\]\:w-full{width:100%}.max-\[700px\]\:justify-between{justify-content:space-between}}@media (max-width: 550px){.max-\[550px\]\:-order-\[1\]{order:-1}}@media (max-width: 360px){.max-\[360px\]\:w-\[1\.625rem\]{width:1.625rem}.max-\[360px\]\:max-w-fit{max-width:-moz-fit-content;max-width:fit-content}.max-\[360px\]\:overflow-hidden{overflow:hidden}}@media (min-width: 361px){.min-\[361px\]\:w-\[7rem\]{width:7rem}.min-\[361px\]\:text-\[2\.625rem\]{font-size:2.625rem}.min-\[361px\]\:text-sm{font-size:0.875rem;line-height:1.25rem}}@media (min-width: 425px){.min-\[425px\]\:max-w-\[17\.5rem\]{max-width:17.5rem}}@media (min-width: 551px){.min-\[551px\]\:absolute{position:absolute}.min-\[551px\]\:grid{display:grid}.min-\[551px\]\:h-\[16rem\]{height:16rem}.min-\[551px\]\:w-\[22rem\]{width:22rem}.min-\[551px\]\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.min-\[551px\]\:before\:pt-\[100\%\]::before{content:var(--tw-content);padding-top:100%}}@media (min-width: 631px){.min-\[631px\]\:px-\[1\.5rem\]{padding-left:1.5rem;padding-right:1.5rem}.min-\[631px\]\:py-\[1\.5rem\]{padding-top:1.5rem;padding-bottom:1.5rem}}@media (min-width: 701px){.min-\[701px\]\:flex{display:flex}.min-\[701px\]\:flex-row{flex-direction:row}.min-\[701px\]\:gap-0{gap:0px}}@media (min-width: 767px){.min-\[767px\]\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.min-\[767px\]\:grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media (max-width: 1425px){@media (min-width: 767px){.max-\[1425px\]\:min-\[767px\]\:col-span-2{grid-column:span 2 / span 2}.max-\[1425px\]\:min-\[767px\]\:col-span-3{grid-column:span 3 / span 3}}}@media (min-width: 860px){.min-\[860px\]\:flex-row{flex-direction:row}.min-\[860px\]\:items-start{align-items:flex-start}.min-\[860px\]\:items-end{align-items:flex-end}.min-\[860px\]\:gap-0{gap:0px}.min-\[860px\]\:text-left{text-align:left}.min-\[860px\]\:opacity-0{opacity:0}}@media (min-width: 861px){.min-\[861px\]\:mr-4{margin-right:1rem}}@media (min-width: 866px){.min-\[866px\]\:flex{display:flex}}@media (min-width: 875px){.min-\[875px\]\:py-\[3rem\]{padding-top:3rem;padding-bottom:3rem}}@media (min-width: 1025px){.min-\[1025px\]\:h-\[24rem\]{height:24rem}.min-\[1025px\]\:w-\[9rem\]{width:9rem}}@media (min-width: 1125px){.min-\[1125px\]\:top-0{top:0px}.min-\[1125px\]\:block{display:block}.min-\[1125px\]\:flex{display:flex}.min-\[1125px\]\:hidden{display:none}.min-\[1125px\]\:h-\[calc\(100\%_-_4\.5rem\)\]{height:calc(100% - 4.5rem)}.min-\[1125px\]\:h-full{height:100%}.min-\[1125px\]\:w-\[calc\(100\%_-_17\.5rem\)\]{width:calc(100% - 17.5rem)}.min-\[1125px\]\:flex-wrap{flex-wrap:wrap}.min-\[1125px\]\:p-\[3rem_2rem\]{padding:3rem 2rem}.min-\[1125px\]\:px-0{padding-left:0px;padding-right:0px}.min-\[1125px\]\:px-\[2rem\]{padding-left:2rem;padding-right:2rem}.min-\[1125px\]\:py-\[2\.5rem\]{padding-top:2.5rem;padding-bottom:2.5rem}.min-\[1125px\]\:pl-\[1\.875rem\]{padding-left:1.875rem}.min-\[1125px\]\:pl-\[17\.5rem\]{padding-left:17.5rem}.min-\[1125px\]\:pr-\[1\.875rem\]{padding-right:1.875rem}}@media (min-width: 1426px){.min-\[1426px\]\:absolute{position:absolute}.min-\[1426px\]\:h-\[5\.625rem\]{height:5.625rem}.min-\[1426px\]\:h-full{height:100%}.min-\[1426px\]\:w-\[20rem\]{width:20rem}.min-\[1426px\]\:grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.min-\[1426px\]\:grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.min-\[1426px\]\:before\:pt-\[100\%\]::before{content:var(--tw-content);padding-top:100%}}.\[\&\.active\]\:z-\[9\].active{z-index:9}.\[\&\.active\]\:bg-blue.active{--tw-bg-opacity:1;background-color:rgb(0 131 225 / var(--tw-bg-opacity, 1))}.\[\&\.active\]\:text-white.active{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.\[\&\.active\]\:\!opacity-100.active{opacity:1 !important}.\[\&\.active\]\:shadow-btn-blue.active{--tw-shadow:0px 12px 19px -4px rgba(7, 119, 200, 0.16);--tw-shadow-colored:0px 12px 19px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.\[\&\>div\]\:w-\[calc\(100\%_\/_6\)\]>div{width:calc(100% / 6)}.\[\&\>div\]\:px-2>div{padding-left:0.5rem;padding-right:0.5rem}@media (min-width: 1125px){.min-\[1125px\]\:\[\&\>div\]\:w-\[calc\(100\%_\/_5\)\]>div{width:calc(100% / 5)}}@media (min-width: 1175px){.min-\[1175px\]\:\[\&\>div\]\:w-\[calc\(100\%_\/_6\)\]>div{width:calc(100% / 6)}}@media (min-width: 1625px){.min-\[1625px\]\:\[\&\>div\]\:w-\[calc\(100\%_\/_8\)\]>div{width:calc(100% / 8)}}@media (max-width: 1570px){@media (min-width: 1125px){.max-\[1570px\]\:min-\[1125px\]\:\[\&\>li\:not\(\:nth-child\(-n\+6\)\)\]\:\!hidden>li:not(:nth-child(-n+6)){display:none !important}}}.focus\:\[\&_\*\]\:outline-0 *:focus{outline-width:0px}.focus\:\[\&_\*\]\:ring-0 *:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.focus\:\[\&_\*\]\:ring-inherit *:focus{--tw-ring-color:inherit}.\[\&_a\]\:text-white a{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.\[\&_a_span\]\:pointer-events-none a span{pointer-events:none}.\[\&_b\]\:cursor-default b{cursor:default}.\[\&_button_span\]\:pointer-events-none button span{pointer-events:none}.\[\&_canvas\]\:pointer-events-none canvas{pointer-events:none}.\[\&_h1\]\:cursor-default h1{cursor:default}.\[\&_h2\]\:cursor-default h2{cursor:default}.\[\&_h3\]\:cursor-default h3{cursor:default}.\[\&_h4\]\:cursor-default h4{cursor:default}.\[\&_h5\]\:cursor-default h5{cursor:default}.\[\&_h6\]\:cursor-default h6{cursor:default}.\[\&_img\]\:pointer-events-none img{pointer-events:none}.\[\&_img\]\:select-none img{-webkit-user-select:none;user-select:none}.\[\&_li\]\:cursor-default li{cursor:default}.\[\&_li\]\:list-none li{list-style-type:none}.\[\&_p\]\:cursor-default p{cursor:default}.\[\&_span\]\:cursor-default span{cursor:default}

._fairContainer_pygfo_15910 {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: #242424;
    border-radius: 6px
}

._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -25px -25px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 {
    display: flex;
    flex-wrap: wrap;
    color: inherit
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 p {
    font-size: 16px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 p:first-child {
    margin-top: 20px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 p._license_pygfo_15964 {
    color: #d8d8d8
}

@media (max-width: 1100px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 p {
        font-size:14px
    }
}

@media (max-width: 520px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 p {
        font-size:13px
    }
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 20px auto 30px;
    padding: 32px 0 19px;
    color: #fff;
    border-radius: 8px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 {
    position: relative;
    padding: 0 28px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child {
    text-align: right
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
    opacity: .12;
    content: ""
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child ._title_pygfo_5990 {
    justify-content: flex-end
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child ._title_pygfo_5990:after {
    right: 0
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child {
    text-align: left
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child ._title_pygfo_5990 ._text_pygfo_4368 {
    max-width: 205px;
    color: #fcbc3d
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child ._list_pygfo_5153 ._item_pygfo_131:before {
    background: transparent;
    content: counter(item,decimal-leading-zero) " ";
    counter-increment: item
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._title_pygfo_5990 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    margin-bottom: 10px;
    padding-bottom: 10px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._title_pygfo_5990 ._text_pygfo_4368 {
    color: #fff;
    font-size: 16px;
    line-height: 1.5
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._title_pygfo_5990:after {
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 1px;
    background: #ffffff1f;
    content: ""
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045 {
    position: relative;
    width: 100%;
    padding: 250px 0 12px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: transparent;
    opacity: .7
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #ffffff3d;
    content: ""
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045._active_pygfo_796 {
    opacity: 1
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045._active_pygfo_796:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #fcbc3d;
    content: ""
}

@media (min-width: 521px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045 {
        display:none
    }
}

@media (max-width: 360px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._btnTitle_pygfo_16045 {
        font-size:13px;
        line-height: 21px
    }
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 {
    max-width: 260px;
    counter-reset: item
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131 {
    position: relative;
    display: flex;
    align-items: center;
    height: 55px;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    transition: color .3s
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:not(:last-child) {
    margin-bottom: 24px
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:before {
    position: absolute;
    top: 50%;
    left: -36px;
    color: #d8d8d8;
    font-size: 12px;
    background: #32031c;
    transform: translateY(-50%);
    mix-blend-mode: luminosity
}

._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:after {
    position: absolute;
    top: 50%;
    left: -34px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    content: ""
}

@media (max-width: 1099px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 {
        margin-bottom:24px;
        padding: 230px 0 30px;
        background-position: 50% 0;
        border-radius: 13px
    }
}

@media (max-width: 520px) {
    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 {
        margin:15px 0 28px;
        padding: 0 0 10px;
        overflow: hidden;
        background-color: #000;
        background-image: none;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: contain
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
        content: ""
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 {
        flex-basis: 50%;
        max-width: 50%;
        padding: 0
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child,._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child {
        text-align: center
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child:before {
        display: none
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child ._list_pygfo_5153._active_pygfo_796 {
        display: block;
        width: 200%;
        max-width: 200%;
        margin-left: 0;
        padding-top: 24px;
        text-align: left
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:first-child ._list_pygfo_5153 ._item_pygfo_131:before {
        background: url("data:image/svg+xml,%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpolygon%20id='path-1'%20points='19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012'%3e%3c/polygon%3e%3c/defs%3e%3cg%20id='Symbols'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='ic_close_24px'%3e%3cg%3e%3crect%20id='Rectangle'%20fill-rule='nonzero'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cmask%20id='mask-2'%20fill='white'%3e%3cuse%20xlink:href='%23path-1'%3e%3c/use%3e%3c/mask%3e%3cuse%20id='Path'%20fill='%23ff0000'%20xlink:href='%23path-1'%3e%3c/use%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: cover;
        content: ""
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child ._list_pygfo_5153._active_pygfo_796 {
        display: block;
        max-width: 200%;
        margin-left: -100%;
        padding-top: 24px;
        text-align: left
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991:last-child ._list_pygfo_5153 ._item_pygfo_131:before {
        background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpolygon%20id='path-1'%20points='9%2016.2%204.8%2012%203.4%2013.4%209%2019%2021%207%2019.6%205.6'%3e%3c/polygon%3e%3c/defs%3e%3cg%20id='Symbols'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='ic/done'%3e%3cg%20id='ic_done_24px'%3e%3crect%20id='Rectangle'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cmask%20id='mask-2'%20fill='white'%3e%3cuse%20xlink:href='%23path-1'%3e%3c/use%3e%3c/mask%3e%3cuse%20id='Path'%20fill='%232dc53a'%20xlink:href='%23path-1'%3e%3c/use%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: cover;
        content: ""
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._title_pygfo_5990 {
        display: none
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 {
        display: none;
        max-width: 100%;
        padding-top: 24px;
        text-align: left
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131 {
        height: auto!important;
        padding: 0 15px 10px 54px
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:before {
        top: 0;
        left: 16px;
        width: 24px;
        height: 24px;
        transform: none;
        opacity: 1;
        mix-blend-mode: normal;
        content: ""
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:not(:last-child) {
        margin-bottom: 12px
    }

    ._fairContainer_pygfo_15910 ._fairBlock_pygfo_15953 ._fairCheckBlock_pygfo_15977 ._col_pygfo_14991 ._list_pygfo_5153 ._item_pygfo_131:not(:last-child):after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 56px;
        width: auto;
        height: 1px;
        background: #ffffff1f;
        transform: none;
        mix-blend-mode: normal
    }
}

@media (max-width: 900px) {
    ._fairContainer_pygfo_15910 {
        padding:15px
    }

    ._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._fairContainer_pygfo_15910 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._helpContainer_pygfo_16245 {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: #242424;
    border-radius: 6px
}

._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -25px -25px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 {
    margin-top: 20px;
    color: inherit
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281 {
    position: relative;
    display: flex;
    align-items: center;
    margin: 25px 0;
    padding-left: 16px;
    font-weight: 400;
    font-size: 17px
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281:first-child {
    margin-top: 0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281 ._badge_pygfo_741 {
    margin-top: 2px;
    margin-left: 10px;
    padding: 2px 6px;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    background: #3b3b3b;
    border-radius: 3px
}

@media (min-width: 769px) {
    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281:before {
        position:absolute;
        left: 1px;
        width: 8px;
        height: 2px;
        background: #d0d9e0;
        content: ""
    }
}

@media (max-width: 768px) {
    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281 {
        padding-left:0;
        font-size: 16px
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281:first-child span {
        display: none
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._caption_pygfo_281:first-child ._badge_pygfo_741 {
        margin-left: 0
    }
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 {
    display: flex
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 {
    width: 50%;
    margin: 0 15px 0 0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 {
    position: relative;
    display: flex;
    padding: 15px 20px;
    font-size: 14px;
    border: 2px solid #e26700;
    border-radius: 6px
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._feedbackIcon_pygfo_16351 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding-right: 18px;
    font-size: 32px;
    border-right: 1px solid #2b2b2b
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 {
    padding-right: 41px;
    color: #8a91a0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 ._title_pygfo_5990 {
    margin-bottom: 3px;
    color: #fff;
    font-weight: 400;
    font-size: 15px
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 a,._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 button {
    display: inline-block;
    margin-bottom: 3px;
    color: #e26700;
    font-size: 15px;
    border-bottom: 1px solid transparent
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 div {
    white-space: nowrap;
    text-overflow: ellipsis
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._arrow_pygfo_5299 {
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: #2b2b2b;
    border: 0;
    border-radius: 3px;
    outline: none;
    transform: translateY(-50%);
    cursor: pointer
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._arrow_pygfo_5299 svg {
    width: 15px;
    height: 15px;
    transform: rotate(-180deg);
    fill: #fff
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._arrow_pygfo_5299:hover {
    background: #e26700
}

@media (max-width: 1360px) {
    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 {
        padding:15px
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._feedbackIcon_pygfo_16351 {
        display: none
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 {
        padding-right: 0
    }
}

@media (max-width: 768px) {
    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 {
        flex-direction:column
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 {
        width: 100%;
        margin: 0 0 15px
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 {
        padding: 20px
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._feedbackIcon_pygfo_16351 {
        display: flex
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._textWrapper_pygfo_16360 {
        padding-right: 41px
    }

    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._arrow_pygfo_5299 {
        right: 20px
    }
}

@media (max-width: 500px) {
    ._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._feedback_pygfo_16336 ._item_pygfo_131 ._feedbackContent_pygfo_16343 ._feedbackIcon_pygfo_16351 {
        display:none
    }
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #2b2b2b;
    border-radius: 6px
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913 {
    position: relative;
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 15px;
    color: #d8d8d8;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913:hover,._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913:focus {
    color: #fff
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913 ._btn_pygfo_499 {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 0 15px;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px;
    text-align: left
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913 ._after_pygfo_16476 {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: all .3s;
    pointer-events: none;
    fill: #fff
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._top_pygfo_2913 ._after_pygfo_16476 svg {
    width: 100%;
    height: 100%
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._collapse_pygfo_16444 {
    height: auto;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height .35s ease
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._collapse_pygfo_16444:not(._open_pygfo_625) {
    max-height: 0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._collapse_pygfo_16444 ._collapseContent_pygfo_16500 {
    padding: 15px
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444 ._collapse_pygfo_16444 ._collapseContent_pygfo_16500 ._green_pygfo_8807 {
    color: #37cc44
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444._open_pygfo_625 ._top_pygfo_2913 {
    border-radius: 6px 6px 0 0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444._open_pygfo_625 ._top_pygfo_2913 ._btn_pygfo_499 {
    color: #fff;
    border-bottom: 1px solid #2b2b2b;
    border-radius: 6px 6px 0 0
}

._helpContainer_pygfo_16245 ._helpBlock_pygfo_16288 ._collapseBlock_pygfo_16444._open_pygfo_625 ._top_pygfo_2913 ._after_pygfo_16476 {
    transform: translateY(-50%) rotate(-180deg)
}

@media (max-width: 900px) {
    ._helpContainer_pygfo_16245 {
        padding:15px
    }

    ._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._helpContainer_pygfo_16245 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._lobbySection_pygfo_16533 ._container_pygfo_1512 {
    padding: 10px 15px
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

@media (max-width: 900px) {
    ._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 {
        margin-top:-10px
    }
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._label_pygfo_292 {
    position: relative;
    display: flex;
    align-items: center;
    height: 26px;
    padding-left: 26px;
    font-weight: 500;
    font-size: 18px
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._label_pygfo_292 button {
    color: #fff;
    background: transparent;
    border: 0;
    outline: none
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._label_pygfo_292 button img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%)
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._label_pygfo_292 button ._btnLabel_pygfo_11037 {
    margin-left: 8px;
    padding: 3px 6px;
    color: #d8d8d8;
    font-weight: 400;
    background: #2b2b2b;
    border-radius: 3px
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: #fff
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 36px;
    border: 2px solid #242424;
    cursor: pointer
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 button[class*=swiper-button-disabled] {
    cursor: auto;
    opacity: .5
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 button[class*=swiper-button-disabled]:hover svg {
    transform: scale(1)
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 button:hover svg {
    transform: scale(1.2)
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 button svg {
    color: #fff;
    transition: transform .2s ease-in-out
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 ._forward_pygfo_11075 {
    border-radius: 0 10px 10px 0
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 ._forward_pygfo_11075:active svg {
    transform: translate(4px)
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 ._backward_pygfo_11081 {
    border-right: none;
    border-radius: 10px 0 0 10px;
    transition: transform .3s ease-in-out
}

._lobbySection_pygfo_16533 ._promoHeader_pygfo_12669 ._arrows_pygfo_12710 ._backward_pygfo_11081:active svg {
    transform: translate(-4px)
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 {
    margin-bottom: 25px
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 {
    position: relative;
    display: flex;
    transform: scale(1)!important
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._background_pygfo_12758 {
    margin: 0;
    padding: 0;
    font: inherit;
    vertical-align: baseline;
    border: 0
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._background_pygfo_12758 img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 1;
    -webkit-user-select: none;
    user-select: none;
    aspect-ratio: 17/10
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 5px
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 182px;
    height: 100%
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._innerText_pygfo_12790 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._badge_pygfo_741 {
    margin-bottom: 5px
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._badge_pygfo_741 ._badgeContent_pygfo_12799 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-left: 10px;
    padding: 0 5px;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    background: #fff;
    border-radius: 3px;
    font-feature-settings: "tnum"
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._title_pygfo_5990 {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5px;
    margin-left: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-align: left
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._description_pygfo_308 {
    flex: 1 1 auto;
    height: 100%;
    margin-top: 10px;
    margin-left: 10px;
    overflow: hidden;
    text-wrap: wrap;
    text-overflow: ellipsis
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._description_pygfo_308 ._descriptionContent_pygfo_12836 {
    display: inline-block;
    height: 100%;
    color: #fff;
    font-weight: 300;
    line-height: 120%;
    text-align: left
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnAction_pygfo_12844 {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color .2s ease-in-out,color .2s ease-in-out
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnAction_pygfo_12844:hover {
    color: #000;
    background-color: #fff
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnActionWhite_pygfo_12860 {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 10px;
    color: #000;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color .2s ease-in-out,color .2s ease-in-out
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnActionWhite_pygfo_12860:hover {
    color: #fff;
    background-color: transparent
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnActionMain_pygfo_12877 {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background-color: #e26700;
    border: 1px solid #e26700;
    border-radius: 5px;
    transition: background-color .2s ease-in-out,color .2s ease-in-out
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213 ._cardContent_pygfo_12775 ._inner_pygfo_10289 ._btnActionMain_pygfo_12877:hover {
    color: #000;
    background-color: #fff
}

._lobbySection_pygfo_16533 ._promoSlider_pygfo_16620 ._card_pygfo_11213:hover ._background_pygfo_12758 {
    opacity: .9
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 300px;
    height: 100%;
    margin: 0 0 25px;
    padding: 25px 16px;
    color: #fff;
    line-height: 1;
    border-bottom: 2px solid #2dc53a
}

@media (max-width: 900px) {
    ._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 {
        flex:0 0 60px;
        background: #191919;
        border-color: transparent
    }
}

@media (max-width: 400px) {
    ._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 {
        justify-content:space-between
    }
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/header-VoP1hsyC.png);
    background-position: 50% 100%;
    background-size: cover;
    opacity: .95;
    content: ""
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._left_pygfo_931 {
    position: relative
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._left_pygfo_931 ._title_pygfo_5990 {
    position: relative;
    display: flex;
    align-items: center;
    margin: -5px 0 14px;
    font-weight: 400;
    font-size: 30px
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._left_pygfo_931 ._text_pygfo_4368 {
    font-size: 14px;
    line-height: 20px
}

@media (max-width: 800px) {
    ._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._left_pygfo_931 {
        display:none
    }
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._right_pygfo_940 {
    position: relative;
    min-width: 192px;
    margin-left: auto
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._right_pygfo_940 ._countWrapper_pygfo_16832 {
    padding: 15px;
    text-align: center;
    background: #00000017;
    border-radius: 0
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._right_pygfo_940 ._countWrapper_pygfo_16832 ._total_pygfo_16838 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -5px 0 2px;
    color: #2dc53a;
    font-weight: 400;
    font-size: 34px;
    text-align: center
}

._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._right_pygfo_940 ._countWrapper_pygfo_16832 ._text_pygfo_4368 {
    margin-right: -3px;
    color: inherit;
    letter-spacing: 2.5px;
    text-transform: uppercase
}

@media (max-width: 900px) {
    ._lobbySection_pygfo_16533 ._lobbyHeader_pygfo_16766 ._right_pygfo_940 {
        width:100%
    }
}

._lobbySection_pygfo_16533 ._loaderBlock_pygfo_239 {
    position: relative;
    width: calc(100% + 15px);
    min-height: 300px;
    margin-top: calc(300px - 5rem);
    text-align: center
}

._lobbySection_pygfo_16533 ._loaderBlock_pygfo_239 ._loaderCentred_pygfo_1287 {
    top: 20%;
    height: 100px
}

._lobbySection_pygfo_16533 ._loaderBlock_pygfo_239 ._loaderCentred_pygfo_1287 img {
    width: 60px;
    height: 60px
}

._lobbySection_pygfo_16533 ._menuWrapper_pygfo_10859 {
    margin-bottom: 20px
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 {
    position: absolute;
    top: 115%;
    left: 50%;
    z-index: 10;
    width: 215px;
    padding: 0;
    background-color: #f9f9f9;
    border-radius: 5px;
    transform: translate(-50%)
}

@media (min-width: 601px) and (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 {
        left:75%;
        transform: translate(-50%)
    }
}

@media (min-width: 376px) and (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 {
        top:calc(100% + 8px);
        width: 100%
    }
}

@media (max-width: 376px) {
    ._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 {
        width:100%
    }
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878:after {
    position: absolute;
    top: -4px;
    left: 100px;
    width: 8px;
    height: 8px;
    background: #f9f9f9;
    transform: translate(-50%) rotate(45deg);
    content: ""
}

@media (max-width: 1365px) {
    ._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878:after {
        left:50%
    }
}

@media (min-width: 376px) and (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878:after {
        display:none
    }
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._searchBlock_pygfo_16926 {
    margin-bottom: 0!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._searchBlock_pygfo_16926 input {
    position: relative;
    z-index: 1;
    height: 40px;
    padding-left: 30px;
    color: #000000bf!important;
    background-color: #e5e5e5;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 1px;
    border-left-width: 0;
    border-radius: 10px 10px 0 0
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._searchBlock_pygfo_16926 input:focus {
    border-color: #0000004d!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesListWrapper_pygfo_16947 {
    width: 100%;
    max-width: 100%;
    max-height: 50vh;
    overflow-y: scroll
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesListWrapper_pygfo_16947::-webkit-scrollbar-track {
    background-color: #bdbdbd;
    border-radius: 25px
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesListWrapper_pygfo_16947._noScroll_pygfo_16957 {
    max-height: none;
    overflow: auto
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 {
    margin: 0!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 {
    width: 100%;
    min-width: 100%!important;
    max-width: 100%!important;
    height: auto!important;
    margin: 0!important;
    padding: 0!important;
    background-color: transparent!important;
    border-radius: 0!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131:nth-child(odd) ._btn_pygfo_499 {
    border-right: 1px solid #f1f1f1!important;
    border-radius: 5px 0 0 5px!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 {
    height: auto!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btn_pygfo_499 {
    position: relative;
    z-index: 1;
    padding: 10px!important;
    color: #000000bf!important;
    background-color: #fff!important;
    border-bottom: 1px solid #f1f1f1!important;
    transition: background-color .2s!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btn_pygfo_499:hover {
    background-color: #f1f1f1!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btn_pygfo_499._active_pygfo_796 {
    background-color: #e5e5e5!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btn_pygfo_499 ._badge_pygfo_741 {
    margin-left: auto;
    padding: 5px 10px;
    color: #fff;
    font-weight: 600;
    background: #e26700;
    border-radius: 10px
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 button {
    justify-content: flex-start!important;
    padding-right: 30px!important;
    padding-left: 15px!important;
    overflow: hidden;
    color: #fff!important;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #d8d8d8!important
}

._lobbySection_pygfo_16533 ._categoriesDropdown_pygfo_16878 ._categoriesBox_pygfo_17014 {
    margin: 0!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 {
    position: absolute;
    top: 115%;
    left: 50%;
    z-index: 10;
    width: 215px;
    padding: 0;
    background-color: #f9f9f9;
    border-radius: 5px;
    transform: translate(-50%)
}

@media (min-width: 376px) and (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 {
        top:calc(100% + 8px);
        width: 100%
    }
}

@media (max-width: 376px) {
    ._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 {
        width:100%
    }
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017:after {
    position: absolute;
    top: -4px;
    left: 100px;
    width: 8px;
    height: 8px;
    background: #f9f9f9;
    transform: translate(-50%) rotate(45deg);
    content: ""
}

@media (max-width: 1365px) {
    ._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017:after {
        left:50%
    }
}

@media (min-width: 376px) and (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017:after {
        display:none
    }
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._searchBlock_pygfo_16926 {
    margin-bottom: 0!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._searchBlock_pygfo_16926 input {
    position: relative;
    z-index: 1;
    height: 40px;
    padding-left: 30px;
    color: #000000bf!important;
    background-color: #e5e5e5;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 1px;
    border-left-width: 0
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._searchBlock_pygfo_16926 input:focus {
    border-color: #0000004d!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersListWrapper_pygfo_17077 {
    width: 100%;
    max-width: 100%;
    max-height: 50vh;
    overflow-y: scroll
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersListWrapper_pygfo_17077::-webkit-scrollbar-track {
    background-color: #bdbdbd;
    border-radius: 25px
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersListWrapper_pygfo_17077._noScroll_pygfo_16957 {
    max-height: none;
    overflow: auto
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 {
    margin: 0!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 {
    width: 100%;
    min-width: 100%!important;
    max-width: 100%!important;
    height: auto!important;
    margin: 0!important;
    padding: 0!important;
    background-color: transparent!important;
    border-radius: 0!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131:nth-child(odd) ._btn_pygfo_499 {
    border-right: 1px solid #f1f1f1!important;
    border-radius: 5px 0 0 5px!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 {
    height: auto!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 ._btn_pygfo_499 {
    position: relative;
    z-index: 1;
    padding: 10px!important;
    color: #000000bf!important;
    background-color: #fff!important;
    border-bottom: 1px solid #f1f1f1!important;
    transition: background-color .2s!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 ._btn_pygfo_499:hover {
    background-color: #f1f1f1!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 ._btn_pygfo_499._active_pygfo_796 {
    background-color: #e5e5e5!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersList_pygfo_17077 ._item_pygfo_131 ._btn_pygfo_499 ._badge_pygfo_741 {
    margin-left: auto;
    padding: 5px 10px;
    color: #fff;
    font-weight: 600;
    background: #e26700;
    border-radius: 10px
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 button {
    justify-content: flex-start!important;
    padding-right: 30px!important;
    padding-left: 15px!important;
    overflow: hidden;
    color: #fff!important;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #d8d8d8!important
}

._lobbySection_pygfo_16533 ._providersDropdown_pygfo_17017 ._providersBox_pygfo_11186 {
    margin: 0!important
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 {
    position: relative;
    width: auto!important;
    margin: 0!important
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152 {
    margin-bottom: 0!important
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._menuWrapper_pygfo_10859 {
    display: none;
    margin-bottom: 20px
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._menuWrapper_pygfo_10859._open_pygfo_625 {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    max-width: 418px;
    margin: 0 auto;
    padding: 5px;
    overflow: visible;
    background-color: #f9f9f9;
    border-radius: 5px
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._menuWrapper_pygfo_10859._open_pygfo_625:after {
    position: absolute;
    top: -4px;
    left: 100px;
    width: 8px;
    height: 8px;
    background: #f9f9f9;
    transform: translate(-50%) rotate(45deg);
    content: ""
}

@media (max-width: 1365px) {
    ._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._menuWrapper_pygfo_10859._open_pygfo_625:after {
        left:50%
    }
}

._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._menuWrapper_pygfo_10859._open_pygfo_625 ._item_pygfo_131 {
    width: 100%;
    min-width: auto;
    max-width: calc(50% - 10px);
    margin: 5px;
    color: #fff;
    background-color: #d8d8d8;
    border-radius: 5px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 {
    width: 100%;
    margin: 0 0 5px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._searchWrapper_pygfo_17202,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._searchWrapper_pygfo_17202 {
    position: relative
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._searchWrapper_pygfo_17202>svg,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._searchWrapper_pygfo_17202>svg {
    position: absolute;
    top: 13px;
    left: 9px;
    z-index: 1;
    color: #00000080;
    font-size: 14px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._searchBlock_pygfo_16926,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._searchBlock_pygfo_16926 {
    width: 100%;
    margin-bottom: 10px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 10px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 {
    min-width: 20%;
    max-width: 20%;
    padding: 5px
}

@media (max-width: 1365px) {
    ._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 {
        min-width:25%;
        max-width: 25%
    }
}

@media (max-width: 991px) {
    ._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 {
        min-width:33%;
        max-width: 33%
    }
}

@media (max-width: 768px) {
    ._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 {
        min-width:50%;
        max-width: 50%
    }
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 {
    display: inline-flex;
    width: 100%;
    height: 42px;
    text-transform: uppercase
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 {
    display: flex;
    flex: auto;
    flex-grow: 10;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 9px 5px;
    color: #d8d8d8;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    background: #2b2b2b;
    border: none;
    border-radius: 5px;
    outline: none!important;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._filtered_pygfo_17273,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._filtered_pygfo_17273,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._filtered_pygfo_17273,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._filtered_pygfo_17273 {
    border: 2px solid #e26700
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796 {
    color: #fff;
    background: #e26700;
    border: none
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499:not(._active_pygfo_796):hover,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499:not(._active_pygfo_796):hover,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499:not(._active_pygfo_796):hover,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499:not(._active_pygfo_796):hover {
    color: #fff;
    background: #373e4c
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 ._badge_pygfo_741,._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 ._badge_pygfo_741,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._providersList_pygfo_17077 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 ._badge_pygfo_741,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 ._badge_pygfo_741 {
    margin-left: auto;
    padding: 5px 8px;
    color: #fff;
    font-weight: 500;
    background: #e26700;
    border-radius: 3px
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 263px;
    height: 42px;
    margin: 0 auto 20px;
    padding: 9px 5px;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    background: #2b2b2b;
    border: none;
    border-radius: 5px;
    outline: none!important;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152._filtered_pygfo_17273,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152._filtered_pygfo_17273 {
    border: 2px solid #e26700
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152._active_pygfo_796,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152._active_pygfo_796 {
    color: #fff;
    background: #e26700;
    border: none
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152._active_pygfo_796 svg:last-child,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152._active_pygfo_796 svg:last-child {
    transform: rotate(180deg)
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152:not(._active_pygfo_796):hover,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152:not(._active_pygfo_796):hover {
    color: #fff;
    background: #373e4c
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._btnCategories_pygfo_17152 svg,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._btnCategories_pygfo_17152 svg {
    margin: 0 5px;
    transition: transform .3s ease-in-out
}

._lobbySection_pygfo_16533 ._providersBox_pygfo_11186 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499,._lobbySection_pygfo_16533 ._categoriesBox_pygfo_17014 ._categoriesList_pygfo_16947 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 {
    background: #e26700
}

._lobbySection_pygfo_16533 ._controlPanelWrapper_pygfo_17337 {
    display: flex;
    flex-direction: column
}

._lobbySection_pygfo_16533 ._controlPanelWrapper_pygfo_17337 input {
    background-color: #202020
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 20px
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 {
    width: 20%;
    padding: 0 5px
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131:first-child {
    padding-left: 0
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 {
        order:1;
        width: auto;
        margin-top: 20px
    }
}

@media (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 {
        width:50%
    }

    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131:first-child {
        padding-left: 0
    }

    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131:nth-child(2) {
        padding-right: 0
    }
}

@media (max-width: 375px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 {
        width:100%;
        padding: 0
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 42px;
    text-transform: uppercase;
    vertical-align: middle
}

@media (min-width: 376px) and (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 {
        position:unset
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btnName_pygfo_17397 {
    display: none
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btnName_pygfo_17397 {
        display:flex;
        align-items: center;
        align-self: center;
        margin-right: 15px;
        color: inherit;
        text-transform: none
    }

    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btnName_pygfo_17397 svg {
        margin-right: 5px
    }
}

@media (max-width: 600px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btnName_pygfo_17397 {
        display:none
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 {
    display: flex;
    flex: auto;
    flex-grow: 10;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    color: #d8d8d8;
    font-weight: 500;
    line-height: 12px;
    text-transform: uppercase;
    background: #2b2b2b;
    border: none;
    border-radius: 5px;
    outline: none!important;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796 {
    color: #fff;
    background: #e26700;
    border-radius: 5px
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._active_pygfo_796 svg:last-child {
    transform: rotate(180deg)
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499:not(._active_pygfo_796):hover {
    color: #fff;
    background: #373e4c
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 svg:first-child {
    margin-right: 7px
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 svg:last-child {
    margin-left: 7px;
    transition: transform .3s ease-in-out
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._item_pygfo_131 ._btnWrapper_pygfo_16978 ._btn_pygfo_499._filtered_pygfo_17273 {
    border: 2px solid #e26700
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtonsWrapper_pygfo_17460 {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtonsWrapper_pygfo_17460 {
        order:0;
        width: 100%
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    border-bottom: 1px solid #2b2b2b;
    border-radius: 5px
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 {
        width:100%
    }
}

@media (max-width: 710px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 {
        justify-content:flex-start;
        max-width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        border-radius: 5px
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460::-webkit-scrollbar,._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460::-webkit-scrollbar-track {
    width: 0;
    height: 0
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 {
    width: auto;
    margin-right: 5px;
    margin-bottom: -1px;
    padding: 5px 0;
    border-bottom: 1px solid #2b2b2b
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 {
        flex:1 1 auto
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237:last-child {
    margin-right: 0
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 ._btnUserLobby_pygfo_17511 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 10.5px;
    color: #d8d8d8;
    font-weight: 500;
    font-size: 14px;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer
}

@media (max-width: 1510px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 ._btnUserLobby_pygfo_17511 {
        width:100%
    }
}

@media (min-width: 901px) and (max-width: 985px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 ._btnUserLobby_pygfo_17511 {
        padding-right:5px;
        padding-left: 5px
    }
}

@media (max-width: 710px) {
    ._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 ._btnUserLobby_pygfo_17511 {
        border-radius:5px
    }
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237 ._btnUserLobby_pygfo_17511 svg {
    min-width: 12px;
    margin-right: 7px
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237:hover,._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237._active_pygfo_796 {
    border-bottom: 1px solid #e26700
}

._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237:hover ._btnUserLobby_pygfo_17511,._lobbySection_pygfo_16533 ._controlPanel_pygfo_17337 ._userButtons_pygfo_17460 ._btnItem_pygfo_8237._active_pygfo_796 ._btnUserLobby_pygfo_17511 {
    color: #eee
}

._lobbySection_pygfo_16533 ._searchBlock_pygfo_16926 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    margin: 0 0 20px;
    padding: 0
}

._lobbySection_pygfo_16533 ._searchBlock_pygfo_16926 input {
    width: 100%;
    height: 50px
}

._lobbySection_pygfo_16533 ._searchBlock_pygfo_16926 input::placeholder {
    color: #828f9a
}

._lobbySection_pygfo_16533 ._searchBlock_pygfo_16926 ._btnWrapper_pygfo_16978 {
    width: 15%
}

._lobbySection_pygfo_16533 ._searchBlock_pygfo_16926 ._btnWrapper_pygfo_16978 ._btn_pygfo_499 {
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    overflow: visible!important
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._loaderBlock_pygfo_239 {
    min-height: 150px;
    margin-top: calc(150px - 5rem)
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
    position: relative;
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 33.33%;
    margin-bottom: 15px!important;
    padding-right: 5px!important;
    padding-left: 5px!important;
    -webkit-transform-origin: center;
    transform-origin: center;
    cursor: pointer;
    transition: -webkit-transform .1s linear;
    transition: transform .1s linear;
    transition: transform .1s linear,-webkit-transform .1s linear;
    will-change: transform
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

@media (min-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 25%;
        max-width: 25%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

@media (min-width: 700px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 20%;
        max-width: 20%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

@media (min-width: 901px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 25%;
        max-width: 25%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

@media (min-width: 975px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 20%;
        max-width: 20%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

@media (min-width: 1135px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 16.66%;
        max-width: 16.66%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

@media (min-width: 1294px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 {
        flex:0 0 14.28%;
        max-width: 14.28%;
        padding-right: 5px!important;
        padding-left: 5px!important
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 {
    position: relative
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474:before {
    display: block;
    padding-top: 132%;
    content: ""
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474:hover ._gameOverlay_pygfo_11418 {
    visibility: visible!important
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474:hover ._imgBlock_pygfo_17672 {
    filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._imgBlock_pygfo_17672 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%!important;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transition-delay: .4s;
    transition-property: all
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    opacity: 1;
    transition: all .3s linear
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499 {
    position: absolute;
    width: fit-content;
    margin-right: 0;
    padding: 1% 10%;
    color: #fff;
    font-weight: 500;
    font-size: 80%;
    line-height: 16px;
    text-transform: uppercase
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._right_pygfo_940 {
    top: 0;
    right: 0;
    border-radius: 0 0 0 25px
}

@media (max-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._right_pygfo_940 {
        padding:4px 4px 4px 8px
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._left_pygfo_931 {
    top: 0;
    left: 0;
    border-radius: 0 0 25px
}

@media (max-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._left_pygfo_931 {
        padding:4px 8px 4px 4px
    }
}

@media (min-width: 901px) and (max-width: 1600px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499 {
        font-weight:400;
        font-size: 10px;
        line-height: 8px
    }
}

@media (max-width: 620px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499 {
        font-weight:400;
        font-size: 8px;
        line-height: 8px
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._new_pygfo_10506 {
    color: #fff;
    background: #1070e3
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._top_pygfo_2913 {
    color: #fff;
    background: #219a19
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._rtpUp_pygfo_11688 {
    padding-right: 10px;
    color: #fff;
    background: #dc3545
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._rtpUp_pygfo_11688 svg {
    margin-bottom: 3px;
    margin-left: 2px;
    transform: rotate(270deg) scale(1.5)
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._minbet_pygfo_11709 {
    color: #fff;
    background: #8b3ffd
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._halloween_pygfo_11718 {
    color: #fff;
    background: #df710c
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._tournament_pygfo_11684 {
    color: #000;
    background: #fce820
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._select_pygfo_5609 {
    color: #fff;
    background: #ff5722
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._crash_pygfo_11697 {
    color: #000;
    background: #f88627
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._live_pygfo_127 {
    color: #fff;
    background: #6e78ed
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameLabels_pygfo_17693 ._btn_pygfo_499._jackpot_pygfo_11705 {
    color: #fff;
    background: #e16600
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: #0000004d;
    visibility: hidden;
    cursor: pointer;
    transition-delay: .4s;
    transition-property: all
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._connected_pygfo_17813 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 4px 10px 2px 13px;
    color: #fff;
    font-size: 12px;
    background: #00000059;
    border-radius: 18px 0 0;
    opacity: .7
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._connected_pygfo_17813 svg {
    height: 12px;
    margin: -1px 3px 0 0;
    font-size: 9px
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._connected_pygfo_17813 span {
    margin-left: 1px;
    font-size: 13px;
    line-height: 13px
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._favorite_pygfo_14527 {
    position: absolute;
    bottom: 2px;
    left: 5px;
    display: block;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    transition: transform .3s ease-in-out,opacity .3s ease-in-out
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._favorite_pygfo_14527._active_pygfo_796 {
    color: #f54949d6
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._favorite_pygfo_14527:hover {
    transform: scale(1.2);
    opacity: 1
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._favorite_pygfo_14527 svg {
    height: 13px
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playReal_pygfo_17857 {
    position: absolute;
    top: 50%;
    left: 50%;
    flex-grow: 1;
    font-size: 36px;
    transform: translate(-50%,-50%) scale(1);
    transition: transform .3s ease-in-out
}

@media (max-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playReal_pygfo_17857 {
        font-size:28px
    }
}

@media (max-width: 374px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playReal_pygfo_17857 {
        font-size:20px
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playReal_pygfo_17857:hover {
    transform: translate(-50%,-50%) scale(1.1)
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playDemo_pygfo_17879 {
    margin-top: 10px;
    color: #242831;
    font-size: 11px;
    border-bottom: 1px dotted #242831
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playDemo_pygfo_17879:hover {
    color: #fff;
    border-bottom: 1px dotted #fff
}

@media (min-width: 500px) and (max-width: 1139px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playDemo_pygfo_17879 {
        font-size:13px
    }
}

@media (max-width: 499px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._playDemo_pygfo_17879 {
        font-size:11px
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayTitle_pygfo_11473 {
    position: absolute;
    top: 30px;
    right: 10px;
    left: 10px;
    z-index: 1;
    max-width: 100%;
    max-height: 62px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize
}

@media (min-width: 540px) and (max-width: 1600px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayTitle_pygfo_11473 {
        top:20px;
        max-height: 43px
    }
}

@media (min-width: 975px) and (max-width: 1600px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayTitle_pygfo_11473 {
        font-size:12px
    }
}

@media (max-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayTitle_pygfo_11473 {
        top:20px;
        max-height: 46px;
        font-size: 12px
    }
}

@media (max-width: 373px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayTitle_pygfo_11473 {
        top:15px
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayProvider_pygfo_11540 {
    position: absolute;
    right: 10px;
    bottom: 30px;
    left: 10px;
    max-width: 100%;
    color: #fff;
    font-size: 14px
}

@media (max-width: 539px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayProvider_pygfo_11540 {
        max-width:100%;
        overflow: hidden;
        font-size: 12px;
        white-space: nowrap;
        text-overflow: ellipsis
    }
}

@media (max-width: 373px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 ._gameOverlayProvider_pygfo_11540 {
        display:none
    }
}

@media (min-width: 901px) and (max-width: 1139px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 {
        padding-top:14%
    }
}

@media (max-width: 499px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474 ._gameOverlay_pygfo_11418 {
        padding-top:14%
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin-top: .5rem;
    margin-left: .1rem;
    line-height: 1;
    text-align: left;
    -webkit-box-pack: justify;
    -webkit-box-align: center
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 ._title_pygfo_5990 {
    display: none;
    width: 100%;
    margin-bottom: .5rem;
    overflow: hidden;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: capitalize;
    text-overflow: ellipsis;
    border-radius: 5px
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 ._stats_pygfo_9007 {
    width: 100%;
    color: #ffffff80;
    font-size: 13px
}

@media (min-width: 975px) and (max-width: 1600px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 ._stats_pygfo_9007 {
        font-size:12px
    }
}

@media (max-width: 375px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 ._stats_pygfo_9007 {
        font-size:12px
    }
}

@media (max-width: 500px) {
    ._lobbySection_pygfo_16533 ._gamesList_pygfo_17578 ._item_pygfo_131 ._gameWrapper_pygfo_14022 ._gameDescription_pygfo_14679 ._volatility_pygfo_18010 {
        display:none
    }
}

._lobbySection_pygfo_16533 ._gamesList_pygfo_17578._static_pygfo_908 ._gameWrapper_pygfo_14022 ._gameBlock_pygfo_14474:hover ._imgBlock_pygfo_17672 {
    filter: none
}

._lobbySection_pygfo_16533 ._nothingFound_pygfo_18017 {
    position: relative;
    width: calc(100% + 15px);
    min-height: 150px;
    margin-top: 135px;
    color: #d8d8d8;
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase
}

._logSection_pygfo_18029 {
    padding-bottom: 0
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 {
    padding: 25px;
    background: #2b2b2b;
    border-radius: 5px 5px 0 0
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._loaderBlock_pygfo_239 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    font-size: 18px;
    text-align: center
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._loaderBlock_pygfo_239 ._spinnerBlock_pygfo_7301 {
    position: absolute;
    left: 25%;
    display: block;
    width: 50%;
    opacity: .75;
    pointer-events: none
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._headBlock_pygfo_18056 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._headBlock_pygfo_18056 ._avatar_pygfo_2784 {
    width: 72px;
    height: 72px;
    margin-bottom: 10px
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._headBlock_pygfo_18056 ._avatar_pygfo_2784>div {
    width: 100%!important;
    height: 100%!important;
    font-family: Rubik,Arial,sans-serif
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._headBlock_pygfo_18056 h2 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._headBlock_pygfo_18056 ._date_pygfo_232 {
    margin-top: 2px;
    color: #d8d8d8;
    font-size: 13px;
    text-align: center
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0 0
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    margin-right: 15px;
    padding: 12px 5px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #3b3b3b;
    border-radius: 6px
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._label_pygfo_292 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 2px;
    color: #d8d8d8;
    font-weight: 500;
    font-size: .85em;
    text-transform: uppercase
}

@media (max-width: 360px) {
    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._label_pygfo_292 {
        font-size:.75em
    }
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e26700;
    font-weight: 500;
    font-size: 16px
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779._positive_pygfo_9033 {
    color: #2dc53a!important
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779._neutral_pygfo_18132 {
    color: #e26700!important
}

._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779 svg {
    position: relative;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    margin-right: 3px
}

@media (max-width: 700px) {
    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 {
        padding:20px 10px 10px
    }

    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 {
        flex-wrap: wrap
    }

    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 {
        width: calc(50% - 10px);
        margin: 5px
    }
}

@media (max-width: 400px) {
    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._label_pygfo_292 {
        max-width:125px;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
        text-overflow: ellipsis
    }

    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779 {
        font-size: 13px
    }

    ._logSection_pygfo_18029 ._profileHead_pygfo_18032 ._statsBlock_pygfo_18086 ._item_pygfo_131 ._value_pygfo_779 svg {
        top: 0;
        width: 11px;
        height: 11px;
        margin-right: 3px
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 {
    display: flex;
    justify-content: space-between;
    width: 100%
}

@media (max-width: 1124px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 {
        flex-direction:column
    }
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 {
        padding-bottom:0
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 {
    width: 100%;
    height: 100%;
    color: #d8d8d8;
    background: #242424;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

@media (max-width: 1124px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 {
        width:100%
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logNav_pygfo_18200 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    background: #3b3b3b;
    border-radius: 5px 5px 0 0
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logNav_pygfo_18200 ._btn_pygfo_499 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    margin: 0 10px;
    color: #d8d8d8;
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 100px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logNav_pygfo_18200 ._btn_pygfo_499:not(._active_pygfo_796):hover {
    color: #fff
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logNav_pygfo_18200 ._btn_pygfo_499._active_pygfo_796 {
    color: #fff;
    background: #e26700
}

@media (max-width: 600px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logNav_pygfo_18200 ._btn_pygfo_499 {
        height:32px;
        margin: 0;
        font-size: 12px
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 {
    position: relative;
    height: calc(100% - 100px);
    min-height: 320px;
    padding: 15px 25px 0
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 {
    height: calc(100% - 95px);
    overflow: hidden
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266._isLoading_pygfo_7269 tbody {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    pointer-events: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative;
    height: 100%
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153._isLoader_pygfo_15009 {
    min-height: 500px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    font-size: 18px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 h4 {
    font-size: 24px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    font-size: 18px;
    text-align: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 ._spinnerBlock_pygfo_7301 {
    position: absolute;
    top: calc(50% - 2.5rem);
    left: 25%;
    display: block;
    width: 50%;
    opacity: .75;
    pointer-events: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 {
    width: 100%;
    color: #fff;
    border-collapse: initial;
    border-spacing: 0
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 tr:last-child td {
    border-bottom: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th {
    width: 20%;
    height: 36px;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #2f3543
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th:first-child {
    text-align: left
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th:last-child {
    text-align: right
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td {
    width: 20%;
    height: 50px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .2px;
    text-align: center;
    border-bottom: 1px solid #2b2b2b
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td svg {
    margin-right: 3px;
    color: #d8d8d8;
    font-size: inherit
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._default_pygfo_10375 {
    color: #d8d8d8
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._positive_pygfo_9033 {
    color: #2dc53a
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._positive_pygfo_9033 svg {
    color: #2dc53a
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td:first-child {
    text-align: left
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td:last-child {
    text-align: right
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._date_pygfo_232 {
    display: inline-block;
    text-align: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._system_pygfo_18360 {
    display: flex;
    align-items: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 {
    display: flex;
    align-items: center;
    color: #fff;
    background: transparent;
    border: 0;
    outline: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 ._icon_pygfo_431 {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: 4px;
    text-align: center;
    background: transparent;
    cursor: pointer
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 ._icon_pygfo_431 svg {
    display: block;
    width: 13px;
    height: 13px
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th {
        padding:0 10px
    }
}

@media (max-width: 500px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td ._value_pygfo_779,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 {
        font-size:12px
    }

    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td ._value_pygfo_779 svg,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 svg {
        height: 13px
    }
}

@media (max-width: 370px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td ._value_pygfo_779,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 {
        font-size:11px
    }
}

@media (max-width: 350px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td ._value_pygfo_779,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 {
        font-size:10px
    }
}

@media (max-width: 335px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 td ._value_pygfo_779,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logTable_pygfo_18289 th ._value_pygfo_779 {
        font-size:9px
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 {
    overflow-x: scroll
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 {
    width: 100%;
    color: #fff;
    border-collapse: initial;
    border-spacing: 0
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th {
    width: 25%;
    height: 36px;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #2f3543
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:first-child {
    text-align: left
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:last-child {
    text-align: right
}

@media (max-width: 800px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:nth-child(2) {
        text-align:left
    }

    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:nth-child(1) {
        display: none
    }
}

@media (max-width: 500px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:nth-child(3) {
        text-align:right
    }

    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th:nth-child(4) {
        display: none
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td {
    width: 25%;
    height: 50px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .2px;
    text-align: center;
    border-bottom: 1px solid #2b2b2b
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td svg {
    margin-right: 3px;
    color: #d8d8d8;
    font-size: inherit
}

@media (max-width: 800px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:nth-child(2) {
        text-align:left
    }

    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:nth-child(1) {
        display: none
    }
}

@media (max-width: 500px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:nth-child(4) {
        display:none
    }

    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:nth-child(3) {
        text-align: right
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._default_pygfo_10375 {
    color: #d8d8d8
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._positive_pygfo_9033 {
    color: #2dc53a
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:first-child {
    text-align: left
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td:last-child {
    text-align: right
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._date_pygfo_232 {
    display: inline-block;
    text-align: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._system_pygfo_18360 {
    display: flex;
    align-items: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 {
    display: flex;
    align-items: center;
    color: #fff;
    background: transparent;
    border: 0;
    outline: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 ._icon_pygfo_431 {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: 4px;
    text-align: center;
    background: transparent;
    cursor: pointer
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td._system_pygfo_18360._popover_pygfo_18364 ._icon_pygfo_431 svg {
    display: block;
    width: 13px;
    height: 13px
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th {
        padding:0 10px
    }
}

@media (max-width: 400px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 td,._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._withPager_pygfo_7266 ._list_pygfo_5153 ._logScroll_pygfo_18430 ._logTable_pygfo_18289 th {
        font-size:12px
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    list-style: none
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 {
    display: flex;
    align-items: center
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
    max-width: 45px;
    height: 40px;
    margin-right: 8px;
    padding: 0 6px;
    text-align: center
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
        max-width:40px;
        height: 35px
    }
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    margin-left: -1px;
    padding: 0 12px;
    color: #d8d8d8;
    line-height: 1.25;
    background: none;
    border: 1px solid #3b3b3b;
    border-radius: 5px;
    cursor: pointer
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:hover {
    color: #fff
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 svg {
    display: block;
    width: 12px;
    height: 12px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:first-child svg {
    margin-right: 3px
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:last-child svg {
    margin-left: 3px;
    transform: scale(-1)
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212>span {
    display: flex;
    align-items: center;
    line-height: 0
}

._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212[disabled] {
    opacity: .5;
    pointer-events: none
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
        height:35px
    }
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 ._pager_pygfo_7188 {
        padding:15px
    }
}

@media (max-width: 900px) {
    ._logSection_pygfo_18029 ._logContainer_pygfo_18172 ._logComponent_pygfo_18187 ._logWrapper_pygfo_18235 {
        padding:15px 0 0
    }
}

._loyaltyContainer_pygfo_18636 {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #242424;
    border-radius: 6px
}

._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -30px -30px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._loyaltyContainer_pygfo_18636 ._loaderBlock_pygfo_239 {
    display: block;
    height: 500px
}

._loyaltyContainer_pygfo_18636 ._loaderBlock_pygfo_239 ._loaderCentred_pygfo_1287 {
    position: relative
}

._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 {
    display: flex;
    justify-content: center;
    box-sizing: content-box;
    width: 100%;
    margin: 10px auto 45px 0;
    padding: 0;
    border-bottom: 1px solid #2b2b2b;
    border-radius: 0
}

._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 ._btn_pygfo_499 {
    margin-bottom: -1px;
    margin-left: 25px;
    padding: 15px 0;
    color: #d8d8d8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: background-color .2s ease-in-out,color .2s ease-in-out
}

._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 ._btn_pygfo_499:first-child {
    margin-left: 0
}

._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 ._btn_pygfo_499:hover,._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 ._btn_pygfo_499:focus,._loyaltyContainer_pygfo_18636 ._navBlock_pygfo_18686 ._btn_pygfo_499._active_pygfo_796 {
    color: #eee;
    border-bottom: 1px solid #e26700
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 {
    height: calc(100% - 95px)
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266._isLoading_pygfo_7269 ._list_pygfo_5153 {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    pointer-events: none
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative;
    min-height: 250px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153._isLoader_pygfo_15009 {
    min-height: 500px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153._isLoader_pygfo_15009 ._loaderCentred_pygfo_1287 {
    position: absolute
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: #d8d8d8;
    font-size: 18px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 h4 {
    font-size: 24px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    font-size: 18px;
    text-align: center
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 ._spinnerBlock_pygfo_7301 {
    position: absolute;
    top: calc(50% - 2.5rem);
    left: 25%;
    display: block;
    width: 50%;
    opacity: .75;
    pointer-events: none
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #3b3b3b;
    transform: translateZ(0);
    transition: box-shadow 3ms,border-top-color .1s
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 span {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 span svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 span {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 span svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    margin-left: 0
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._logItem_pygfo_18813 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    margin-left: 0
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._logItem_pygfo_18813 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    font-size: 14px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    overflow: visible;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:active,._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:focus,._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:hover {
    border: 0;
    outline: none
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335,._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 {
    display: flex;
    align-items: center
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 img {
    width: 100%;
    height: 100%;
    border-radius: 5px
}

@media (max-width: 1050px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
        width:35px;
        height: 35px;
        margin-right: 8px
    }
}

@media (max-width: 950px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
        display:none
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    display: block;
    overflow: hidden;
    color: #fff;
    line-height: 1.5;
    white-space: nowrap
}

@media (max-width: 480px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
        font-size:14px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
    display: block;
    max-width: 480px;
    overflow: hidden;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: .5
}

@media (max-width: 1100px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
        font-size:12px
    }
}

@media (max-width: 600px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
        font-size:11px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: right
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 {
    display: flex;
    align-items: center;
    color: #d8d8d8;
    white-space: nowrap
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779._win_pygfo_9742 {
    color: #2dc53a
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
    position: relative;
    top: 1px;
    margin-left: 2px
}

@media (max-width: 600px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
        font-size:14px
    }
}

@media (max-width: 480px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
        font-size:13px
    }
}

@media (max-width: 480px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 {
        font-size:14px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 {
    display: flex;
    justify-content: flex-end;
    width: 200px;
    margin-left: auto;
    color: #fff
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462>span {
    padding: 0 5px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-left: auto
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 130px;
    height: 34px;
    margin-left: auto;
    text-align: center;
    background-color: #ffffff1a;
    border-radius: 34px;
    cursor: default
}

@media (max-width: 450px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 button {
        font-size:12px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._success_pygfo_7496 {
    color: #2dc53a;
    background-color: #62ca5b1a
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._canceled_pygfo_7500 {
    color: #efde5c;
    background-color: #caae5b1a
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._waiting_pygfo_7504 {
    color: #e26700;
    background-color: #5b99ca1a
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._error_pygfo_3990 {
    color: #efde5c;
    background-color: #caae5b1a
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500 {
    z-index: 1;
    color: #615918;
    background-color: #f5e249;
    cursor: pointer
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500:hover,._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500:focus {
    background-color: #e4d345
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500 svg {
    position: relative;
    margin-right: 8px;
    font-size: .8em
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 {
    display: flex;
    justify-content: flex-end;
    margin-left: auto
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 {
    position: relative;
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #e26700;
    border-radius: 4px 0 0 4px;
    cursor: help
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 svg {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    transform: translate(-50%,-50%);
    fill: #fff
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 svg {
        font-size:14px
    }
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 {
        width:30px;
        height: 30px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
    height: 34px;
    padding: 0 15px;
    font-weight: 400;
    border-radius: 0 4px 4px 0
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        height:30px
    }
}

@media (max-width: 600px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        padding:0 8px
    }
}

@media (max-width: 400px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        padding:0 6px;
        font-size: 11px
    }
}

@media (max-width: 1100px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 {
        width:180px
    }
}

@media (max-width: 600px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemStatus_pygfo_7462 {
        width:125px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592>span {
    padding: 3px 8px;
    border-radius: 50px
}

@media (max-width: 700px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 {
        display:none
    }
}

@media (max-width: 1100px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 {
        padding:15px 0
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
    width: 100%;
    height: auto;
    max-height: 0;
    margin-left: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534._open_pygfo_625 {
    max-height: 200px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul {
    padding: 15px 0;
    color: #d8d8d8;
    list-style: none
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li {
    margin-bottom: 5px
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span {
    display: inline-flex;
    align-items: center
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span svg {
    margin: 3px 2px 0;
    font-size: .9em
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span:first-child {
    margin-right: 5px;
    font-weight: 400
}

@media (max-width: 480px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul {
        padding:0 10px 5px
    }
}

@media (max-width: 1100px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
        font-size:13px
    }
}

@media (max-width: 480px) {
    ._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
        margin-left:-20px;
        font-size: 12px
    }
}

._loyaltyContainer_pygfo_18636 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131:first-child {
    border-top: none
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0 0;
    list-style: none
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 {
    display: flex;
    align-items: center
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
    max-width: 45px;
    height: 40px;
    margin-right: 8px;
    padding: 0 6px;
    text-align: center
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
        max-width:40px;
        height: 35px
    }
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    margin-left: -1px;
    padding: 0 12px;
    color: #d8d8d8;
    line-height: 1.25;
    background: none;
    border: 1px solid #3b3b3b;
    border-radius: 5px;
    cursor: pointer
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:hover {
    color: #fff
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 svg {
    display: block;
    width: 12px;
    height: 12px
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:first-child svg {
    margin-right: 3px
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:last-child svg {
    margin-left: 3px;
    transform: scale(-1)
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212>span {
    display: flex;
    align-items: center;
    line-height: 0
}

._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212[disabled] {
    opacity: .5;
    pointer-events: none
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
        height:35px
    }
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._pager_pygfo_7188 {
        padding:30px 15px
    }
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 {
    display: flex;
    width: 100%;
    height: 320px;
    margin-top: 20px;
    background: #2b2b2b;
    border-radius: 6px
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 {
    width: 60%;
    height: 100%;
    border-right: 1px solid hsla(0,0%,59.2%,.087)
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 {
    display: flex;
    height: 50%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131._borderTop_pygfo_19227 {
    border-top: 1px solid hsla(0,0%,59.2%,.087)
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 {
    display: flex;
    align-items: center;
    width: 100%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649._borderRight_pygfo_19235 {
    border-right: 1px solid hsla(0,0%,59.2%,.087)
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 {
    position: relative;
    width: 100%;
    text-align: center
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 svg {
    width: 30px;
    height: 30px;
    color: #d8d8d8
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._num_pygfo_6259 {
    margin: 7px 0 5px;
    color: #fff;
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1.25em
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._text_pygfo_4368 {
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 {
    width: 40%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 {
    display: flex;
    height: 50%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131._full_pygfo_1406 {
    height: 100%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 {
    display: flex;
    align-items: center;
    width: 100%
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._currency_pygfo_2522 {
    color: #d8d8d8;
    font-size: 30px
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 {
    position: relative;
    width: 100%;
    text-align: center
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 svg {
    width: 30px;
    height: 30px;
    color: #d8d8d8
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._num_pygfo_6259 {
    margin: 5px 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.2em
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._text_pygfo_4368 {
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._btnBlock_pygfo_19303 {
    display: flex;
    max-width: 180px;
    height: 100%;
    margin: auto
}

._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._btnBlock_pygfo_19303 ._btn_pygfo_499 {
    justify-content: center;
    width: 100%;
    max-width: 180px;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 13px
}

@media (max-width: 800px) {
    ._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 {
        flex-direction:column;
        height: auto
    }

    ._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 {
        width: 100%
    }

    ._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 {
        padding: 30px 0
    }

    ._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 {
        width: 100%;
        border-top: 1px solid hsla(0,0%,59.2%,.087)
    }

    ._loyaltyContainer_pygfo_18636 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 {
        padding: 30px 0
    }
}

._loyaltyContainer_pygfo_18636 ._description_pygfo_308 {
    align-items: center;
    justify-content: center;
    width: 95%;
    margin-bottom: -15px;
    padding: 30px 20px 0;
    color: #d8d8d8;
    font-size: 14px;
    border-radius: 0
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 ._description_pygfo_308 {
        width:100%;
        padding-bottom: 15px
    }
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
    margin: 10px -5px 0;
    padding-bottom: 5px;
    overflow: hidden
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 {
    display: block;
    box-sizing: border-box;
    width: 30%;
    max-width: 135px;
    height: auto;
    text-align: center;
    background-color: #2d333f;
    border-right: 5px solid #242424;
    border-left: 5px solid #242424;
    opacity: .5
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131._current_pygfo_3041 {
    opacity: 1
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131._arrow_pygfo_5299 {
    width: auto;
    background-color: transparent
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 svg {
    position: relative;
    top: calc(50% - .5em);
    transform: rotate(180deg) scale(1.3)
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 img {
    width: 85%;
    margin-top: 10px
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 ._expmeter_pygfo_19389 {
    margin-top: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 14px
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 ._cashbackTitle_pygfo_19395 {
    display: block;
    margin-top: 10px;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    text-overflow: ellipsis
}

._loyaltyContainer_pygfo_18636 ._levelsBlock_pygfo_19352 ._item_pygfo_131 ._cashbackValue_pygfo_19403 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    font-size: 14px
}

@media (max-width: 900px) {
    ._loyaltyContainer_pygfo_18636 {
        padding:15px
    }

    ._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._loyaltyContainer_pygfo_18636 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._partnerContainer_pygfo_19425 {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0;
    background: #242424;
    border-radius: 5px
}

._partnerContainer_pygfo_19425 ._loaderBlock_pygfo_239 {
    text-align: center
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 {
    width: 30%;
    padding: 25px 0;
    background: #2b2b2b
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 {
    padding-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #3b3b3b
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #373e4e;
    border-radius: 5px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._avatar_pygfo_2784>div {
    position: relative!important;
    width: 88px!important;
    height: 88px!important
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446._active_pygfo_796 ._actionsBlock_pygfo_19461,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446:focus ._actionsBlock_pygfo_19461,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446:hover ._actionsBlock_pygfo_19461 {
    visibility: visible;
    opacity: 1
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #232833a6;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s linear
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translate(-50%,-50%)
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label svg,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button svg {
    font-size: 12px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label._avatarUpload_pygfo_19500,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button._avatarUpload_pygfo_19500 {
    background-color: #e26700
}

@media (max-width: 1050px) {
    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label {
        width:22px;
        height: 22px
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button svg,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label svg {
        font-size: 10px
    }
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    margin: auto;
    font-size: 15px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._btnName_pygfo_17397 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._btnName_pygfo_17397 svg {
    position: relative;
    top: .05em;
    margin-left: 5px;
    font-size: 13px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266._active_pygfo_796 ._btnName_pygfo_17397 {
    display: none
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._navLabel_pygfo_19542 {
    height: 48px;
    padding: 0
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 {
    position: relative;
    box-sizing: border-box
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416:hover ._btnDropdown_pygfo_5437,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416:active ._btnDropdown_pygfo_5437 {
    background-color: #242424
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 {
    display: inline-block;
    height: 48px;
    padding: .375rem .75rem;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    background-color: #242424;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437._open_pygfo_625 {
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 5px #202020
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 {
    display: flex;
    align-items: center;
    color: inherit
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._navIcon_pygfo_19581 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 6px;
    background: #ffffff14;
    border-radius: 3px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._navIcon_pygfo_19581 svg {
    font-size: 1.3em;
    opacity: .3
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097 {
    display: flex;
    width: 14px;
    height: 14px;
    margin-left: .45em;
    transition: transform .2s ease-out
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097 svg {
    width: 100%;
    height: 100%;
    fill: #7f8596
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097._open_pygfo_625 {
    transform: rotate(-180deg)
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1000;
    display: none;
    float: left;
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
    margin: 0;
    color: #212529;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #242424;
    background-clip: padding-box;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 5px #202020
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201._open_pygfo_625 {
    display: block
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201:first-child {
    border-radius: 0
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131 {
    display: block;
    clear: both;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    text-align: inherit;
    background-color: initial;
    border-bottom: 1px solid #3d414a
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:hover,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:focus {
    color: #fff;
    background-color: #2c3240
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:not(._active_pygfo_796),._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:not([disabled]) {
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:first-child {
    border-radius: 0
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._partnerMobileNav_pygfo_19536 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:last-child {
    border-bottom: 1px solid transparent
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navLabel_pygfo_19542 {
    height: 50px;
    color: #d8d8d8;
    line-height: 14px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navLabel_pygfo_19542,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 {
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-size: 14px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 {
    height: 52px;
    color: #d8d8d8;
    border-bottom: 1px solid #3b3b3b;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 ._navIcon_pygfo_19581 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 6px;
    background: #ffffff14;
    border-radius: 3px
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 ._navIcon_pygfo_19581 svg {
    color: #fff;
    font-size: 1.3em;
    opacity: .3
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:last-child {
    border-bottom: 0
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670._active_pygfo_796 {
    color: #fff;
    background: #242424;
    border-bottom: 1px solid transparent
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:hover ._navIcon_pygfo_19581 svg,._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670._active_pygfo_796 ._navIcon_pygfo_19581 svg {
    opacity: 1
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 {
    position: relative;
    width: 70%;
    min-height: 500px;
    padding: 25px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._caption_pygfo_281 {
    margin-bottom: 25px;
    color: inherit;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._alert_pygfo_4613 {
    position: relative;
    margin-bottom: 1.5em;
    padding: 15px;
    font-size: 13px;
    background: #191d25f2;
    border: 1px solid #e86376;
    border-radius: 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 {
    height: calc(100% - 95px)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266._isLoading_pygfo_7269 ._list_pygfo_5153 {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    pointer-events: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative;
    min-height: 250px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153._isLoader_pygfo_15009 {
    min-height: 400px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: #d8d8d8;
    font-size: 18px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._empty_pygfo_635 h4 {
    font-size: 24px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    font-size: 18px;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._loaderBlock_pygfo_239 ._spinnerBlock_pygfo_7301 {
    position: absolute;
    top: calc(60% - 2.5rem);
    left: 25%;
    display: block;
    width: 50%;
    opacity: .75;
    pointer-events: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #3b3b3b;
    transform: translateZ(0);
    transition: box-shadow 3ms,border-top-color .1s
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 span {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 span svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 span {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 span svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    margin-left: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    z-index: 1;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._headItem_pygfo_18777 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 svg {
    margin-bottom: 1px;
    margin-left: 7px;
    fill: #d8d8d8
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._logItem_pygfo_18813 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    margin-left: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131._logItem_pygfo_18813 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    font-size: 14px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    overflow: visible;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:active,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:focus,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319:hover {
    border: 0;
    outline: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 {
    display: flex;
    align-items: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839>div {
    font-family: Rubik,Arial,sans-serif!important
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 img {
    width: 100%;
    height: 100%;
    border-radius: 5px
}

@media (max-width: 1050px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
        width:35px;
        height: 35px;
        margin-right: 8px
    }
}

@media (max-width: 950px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemAvatar_pygfo_18839 {
        display:none
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
    display: block;
    overflow: hidden;
    color: #fff;
    line-height: 1.5;
    white-space: nowrap
}

@media (max-width: 480px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoCaption_pygfo_7368 {
        font-size:14px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
    display: block;
    max-width: 480px;
    overflow: hidden;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: .5
}

@media (max-width: 1100px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
        font-size:12px
    }
}

@media (max-width: 600px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemRight_pygfo_7335 ._itemInfo_pygfo_7361 ._infoComment_pygfo_7391 {
        font-size:11px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: right
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 {
    display: flex;
    align-items: center;
    color: #d8d8d8;
    white-space: nowrap
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779._win_pygfo_9742 {
    color: #2dc53a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
    position: relative;
    top: 1px;
    margin-left: 2px
}

@media (max-width: 600px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
        font-size:14px
    }
}

@media (max-width: 480px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 svg {
        font-size:13px
    }
}

@media (max-width: 480px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._itemAmount_pygfo_7419 ._value_pygfo_779 {
        font-size:14px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 {
    display: flex;
    justify-content: flex-end;
    width: 200px;
    margin-left: auto;
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472>span {
    padding: 0 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-left: auto
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 130px;
    height: 34px;
    margin-left: auto;
    text-align: center;
    background-color: #ffffff1a;
    border-radius: 34px;
    cursor: default
}

@media (max-width: 450px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 button {
        font-size:12px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._success_pygfo_7496 {
    color: #2dc53a;
    background-color: #62ca5b1a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._canceled_pygfo_7500 {
    color: #efde5c;
    background-color: #caae5b1a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._waiting_pygfo_7504 {
    color: #e26700;
    background-color: #5b99ca1a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._error_pygfo_3990 {
    color: #efde5c;
    background-color: #caae5b1a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500 {
    z-index: 1;
    color: #615918;
    background-color: #f5e249;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500:hover,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500:focus {
    background-color: #e4d345
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._btnStatus_pygfo_7472 ._cancel_pygfo_7500 svg {
    position: relative;
    margin-right: 8px;
    font-size: .8em
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 {
    display: flex;
    justify-content: flex-end;
    margin-left: auto
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 {
    position: relative;
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #e26700;
    border-radius: 4px 0 0 4px;
    cursor: help
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 svg {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    transform: translate(-50%,-50%);
    fill: #fff
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 svg {
        font-size:14px
    }
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._timer_pygfo_4688 {
        width:30px;
        height: 30px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
    height: 34px;
    padding: 0 15px;
    font-weight: 400;
    border-radius: 0 4px 4px 0
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        height:30px
    }
}

@media (max-width: 600px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        padding:0 8px
    }
}

@media (max-width: 400px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 ._cancelBtn_pygfo_7526 ._btn_pygfo_499 {
        padding:0 6px;
        font-size: 11px
    }
}

@media (max-width: 1100px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 {
        width:180px
    }
}

@media (max-width: 600px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemLeft_pygfo_7335 ._btnStatus_pygfo_7472 {
        width:125px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592>span {
    padding: 3px 8px;
    color: #fff;
    border-radius: 50px
}

@media (max-width: 700px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 ._itemDate_pygfo_7592 {
        display:none
    }
}

@media (max-width: 1100px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemHeader_pygfo_7319 {
        padding:15px 0
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
    width: 100%;
    height: auto;
    max-height: 0;
    margin-left: 0;
    overflow: hidden;
    -webkit-transition: max-height .3s ease;
    transition: max-height .3s ease
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534._open_pygfo_625 {
    max-height: 200px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul {
    padding: 15px 0;
    color: #d8d8d8;
    list-style: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li {
    margin-bottom: 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span {
    display: inline-flex;
    align-items: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span svg {
    margin: 3px 2px 0;
    font-size: .9em
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul li span:first-child {
    margin-right: 5px;
    font-weight: 400
}

@media (max-width: 480px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 ul {
        padding:0 10px 5px
    }
}

@media (max-width: 1100px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
        font-size:13px
    }
}

@media (max-width: 480px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131 ._itemContent_pygfo_5534 {
        margin-left:-20px;
        font-size: 12px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._withPager_pygfo_7266 ._list_pygfo_5153 ._item_pygfo_131:first-child {
    border-top: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0 0;
    list-style: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 {
    display: flex;
    align-items: center;
    color: inherit
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
    max-width: 45px;
    height: 40px;
    margin-right: 8px;
    padding: 0 6px;
    text-align: center
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._inputBlock_pygfo_7195 ._inputField_pygfo_7199 {
        max-width:40px;
        height: 35px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    margin-left: -1px;
    padding: 0 12px;
    color: #d8d8d8;
    line-height: 1.25;
    background: none;
    border: 1px solid #3b3b3b;
    border-radius: 5px;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:hover {
    color: #fff;
    background-color: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 svg {
    display: block;
    width: 12px;
    height: 12px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:first-child svg {
    margin-right: 3px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212:last-child svg {
    margin-left: 3px;
    transform: scale(-1)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212>span {
    display: flex;
    align-items: center;
    line-height: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212[disabled] {
    opacity: .5;
    pointer-events: none
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 ._pagerBtn_pygfo_7212 {
        height:35px
    }
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._players_pygfo_19734 ._pager_pygfo_7188 {
        padding:30px 15px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._empty_pygfo_635 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: #d8d8d8;
    font-size: 18px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._empty_pygfo_635 h4 {
    font-size: 24px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._copyTooltip_pygfo_1254 {
    position: relative;
    top: -75px;
    right: 0;
    bottom: 50px;
    width: 100px;
    color: inherit;
    background-color: #00000080;
    pointer-events: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._panel_pygfo_20255 {
    display: flex
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._panel_pygfo_20255 ._btn_pygfo_499 {
    height: 30px;
    line-height: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._panel_pygfo_20255 ._btn_pygfo_499:not(:first-child) {
    margin-left: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 {
    margin-top: 25px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 {
    margin-bottom: 12px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 label {
    display: inline-flex;
    align-items: center;
    margin-bottom: .65em;
    color: #d8d8d8;
    font-size: 13px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 input {
    font-size: 1em
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 {
    position: relative
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 button {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 34px;
    margin-right: 6px;
    padding: 0 15px;
    color: #d8d8d8;
    text-align: center;
    background: #2b2b2b;
    border-radius: 3px;
    transform: translateY(-50%);
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._newBlock_pygfo_20265 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 button:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 {
    margin-top: 25px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 {
    position: relative;
    display: block;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312._isLoader_pygfo_15009 {
    min-height: 400px;
    overflow: hidden
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table {
    width: 100%;
    text-align: left;
    border-collapse: collapse
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    padding: 10px 0;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
    text-transform: uppercase;
    border-bottom: 1px solid #2b2b2b
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    width: 20%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td:first-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th:first-child {
    text-align: left
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td:last-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th:last-child {
    text-align: right
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr {
    border-bottom: 1px solid #3b3b3b
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr:last-child {
    border-bottom: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr:last-child td {
    border-bottom: 1px solid transparent
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td {
    min-width: 110px;
    padding: 20px 10px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .2px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._noItems_pygfo_20370 {
    padding: 40px 0;
    color: #d8d8d8;
    font-size: 16px;
    text-align: center!important
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:first-child {
    padding-left: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child {
    padding-right: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 {
    min-width: 130px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 button {
    padding: 3px 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 button:not(:first-child) {
    margin-left: 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 {
    display: flex;
    align-items: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button {
    padding: 0;
    background-color: initial;
    border: 0;
    outline: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:last-child {
    color: #545b70;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:last-child:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:first-child {
    display: block;
    margin: 2px 0 -1px;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 14px;
    transition: all .3s ease
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:first-child:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div {
    height: 24px;
    white-space: nowrap
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._active_pygfo_796 {
    color: #2dc53a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._expired_pygfo_20428 {
    color: #e86376
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th {
    width: 20%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:first-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th:first-child {
    text-align: left
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._campgains_pygfo_20232 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th:last-child {
    text-align: right
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._panel_pygfo_20255 {
    display: flex;
    margin-bottom: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._panel_pygfo_20255 ._btn_pygfo_499 {
    height: 30px;
    line-height: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._panel_pygfo_20255 ._btn_pygfo_499:not(:first-child) {
    margin-left: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._empty_pygfo_635 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: #d8d8d8;
    font-size: 18px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._empty_pygfo_635 h4 {
    font-size: 24px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 {
    margin-top: 25px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 {
    position: relative;
    display: block;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312._isLoader_pygfo_15009 {
    min-height: 400px;
    overflow: hidden
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table {
    width: 100%;
    text-align: left;
    border-collapse: collapse
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    padding: 10px 0;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
    text-transform: uppercase;
    border-bottom: 1px solid #2b2b2b
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    width: 16.6%;
    padding: 10px;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td:last-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th:last-child {
    text-align: right
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr {
    border-bottom: 1px solid #3b3b3b
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr:last-child {
    border-bottom: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr:last-child td {
    border-bottom: 1px solid transparent
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td {
    min-width: 110px;
    padding: 20px 10px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .2px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._noItems_pygfo_20370 {
    padding: 40px 0;
    color: #d8d8d8;
    font-size: 16px;
    text-align: center!important
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:first-child {
    padding-left: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child {
    padding-right: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 {
    min-width: 130px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 button {
    padding: 3px 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td._control_pygfo_700 button:not(:first-child) {
    margin-left: 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 {
    display: flex;
    align-items: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button {
    padding: 0;
    background-color: initial;
    border: 0;
    outline: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:last-child {
    color: #545b70;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:last-child:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:first-child {
    display: block;
    margin: 2px 0 -1px;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 14px;
    transition: all .3s ease
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td ._link_pygfo_4647 div button:first-child:hover {
    color: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div {
    height: 24px;
    white-space: nowrap
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._active_pygfo_796 {
    color: #2dc53a
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._expired_pygfo_20428 {
    color: #e86376
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th {
    width: 16.6%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child,._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th:last-child {
    text-align: right
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._campgainsSelector_pygfo_20595 {
    display: flex;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-bottom: 20px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._campgainsSelector_pygfo_20595 button {
    margin-top: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._stats_pygfo_9007 ._campgainsSelector_pygfo_20595 button:not(:last-child) {
    margin-right: 10px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
    font-size: 14px;
    background: #2b2b2b;
    border-radius: 6px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 {
    width: 50%;
    margin-left: auto
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 {
    margin: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 input {
    height: 44px;
    padding: 0 12px;
    font-size: 1em;
    border-right: 0;
    border-radius: 5px 0 0 5px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 ._inputGroupAppend_pygfo_10171 {
    position: relative;
    display: flex;
    border-radius: 0 5px 5px 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 ._inputGroupAppend_pygfo_10171 ._btn_pygfo_499 {
    background: #e26700;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 ._inputGroupAppend_pygfo_10171 ._btn_pygfo_499 ._icon_pygfo_431 {
    fill: #fff
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 ._inputGroupAppend_pygfo_10171 ._copyTooltip_pygfo_1254 {
    right: 0;
    bottom: 50px;
    width: 100px;
    color: inherit;
    background-color: #00000080;
    pointer-events: none
}

@media (max-width: 1099px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 {
        flex-direction:column
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._form_pygfo_628 {
        width: 100%;
        margin: 0
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._text_pygfo_4368 {
        margin-bottom: 15px
    }
}

@media (max-width: 900px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 {
        margin:20px 0;
        padding: 15px
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._linkForm_pygfo_20607 ._from_pygfo_20678 ._formRow_pygfo_4297 ._inputGroup_pygfo_10158 ._inputGroupAppend_pygfo_10171 ._btn_pygfo_499 {
        position: relative;
        padding: 0 20px;
        font-size: 17px
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 {
    display: flex;
    width: 100%;
    height: 320px;
    background: #2b2b2b;
    border-radius: 6px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 {
    width: 60%;
    height: 100%;
    border-right: 1px solid rgba(151,151,151,.0862745098)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 {
    display: flex;
    height: 50%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131._borderTop_pygfo_19227 {
    border-top: 1px solid rgba(151,151,151,.0862745098)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 {
    display: flex;
    align-items: center;
    width: 100%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649._borderRight_pygfo_19235 {
    border-right: 1px solid rgba(151,151,151,.0862745098)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 {
    position: relative;
    width: 100%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 svg {
    width: 30px;
    height: 30px;
    color: #d8d8d8
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._num_pygfo_6259 {
    margin: 7px 0 5px;
    color: #fff;
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1.25em
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._text_pygfo_4368 {
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 {
    width: 40%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 {
    display: flex;
    height: 50%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131._full_pygfo_1406 {
    height: 100%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 {
    display: flex;
    align-items: center;
    width: 100%
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._currency_pygfo_2522 {
    color: #d8d8d8;
    font-size: 30px
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 {
    position: relative;
    width: 100%;
    text-align: center
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 svg {
    width: 30px;
    height: 30px;
    color: #d8d8d8
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._num_pygfo_6259 {
    margin: 5px 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.2em
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._text_pygfo_4368 {
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._btnBlock_pygfo_19303 {
    display: flex;
    max-width: 180px;
    height: 100%;
    margin: auto
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 ._wrap_pygfo_649 ._block_pygfo_5499 ._btnBlock_pygfo_19303 ._btn_pygfo_499 {
    justify-content: center;
    width: 100%;
    max-width: 180px;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 13px
}

@media (max-width: 800px) {
    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 {
        flex-direction:column;
        height: auto
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 {
        width: 100%
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._left_pygfo_931 ._item_pygfo_131 {
        padding: 30px 0
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 {
        width: 100%;
        border-top: 1px solid rgba(151,151,151,.0862745098)
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._general_pygfo_20607 ._statsForm_pygfo_19210 ._right_pygfo_940 ._item_pygfo_131 {
        padding: 30px 0
    }
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formLabel_pygfo_20824 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 {
    position: relative
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 {
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input {
    display: none
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input:checked+._label_pygfo_292:before {
    background: #e26700
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input:checked+._label_pygfo_292:after {
    left: calc(100% - 15px)
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292 {
    position: relative;
    display: block;
    width: 33px;
    height: 10px;
    cursor: pointer
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292:before {
    display: block;
    width: 100%;
    height: 100%;
    background: #d8d8d82e;
    border-radius: 5px;
    transition: all .3s;
    content: ""
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292:after {
    position: absolute;
    top: calc(50% - 9px);
    left: -3px;
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 4px;
    transition: all .3s;
    content: ""
}

._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809:nth-child(odd) {
    background-color: #2c323f
}

@media (max-width: 1050px) {
    ._partnerContainer_pygfo_19425 {
        display:block
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 {
        width: 100%;
        padding: 0;
        border-radius: 5px 5px 0 0
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 {
        display: flex;
        align-items: center;
        padding: 15px
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 {
        width: 60px;
        height: 60px;
        margin: 0 15px 0 0;
        padding: 3px
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._avatar_pygfo_2784>div {
        width: 52px!important;
        height: 52px!important
    }

    ._partnerContainer_pygfo_19425 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 {
        max-width: 100%;
        margin: 0
    }

    ._partnerContainer_pygfo_19425 ._partnerContent_pygfo_19712 {
        width: 100%;
        padding: 15px
    }
}

._privacyContainer_pygfo_20912 {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: #242424;
    border-radius: 6px
}

._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -25px -25px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 {
    display: flex;
    flex-wrap: wrap;
    color: inherit
}

._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 h2 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px
}

._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 h2:first-child {
    margin-top: 20px
}

._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 p {
    width: 100%;
    font-weight: 400;
    font-size: 16px
}

._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 p:first-child {
    margin-top: 20px;
    color: #d8d8d8
}

@media (max-width: 1100px) {
    ._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 p {
        font-size:14px
    }
}

@media (max-width: 480pxpx) {
    ._privacyContainer_pygfo_20912 ._privacyBlock_pygfo_20955 p {
        font-size:13px
    }
}

@media (max-width: 900px) {
    ._privacyContainer_pygfo_20912 {
        padding:15px
    }

    ._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._privacyContainer_pygfo_20912 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._promoContainer_pygfo_21003 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

._promoContainer_pygfo_21003._isLoader_pygfo_15009 {
    display: block;
    height: 85vh
}

._promoContainer_pygfo_21003._isLoader_pygfo_15009 ._loaderCentred_pygfo_1287 {
    position: relative
}

._promoContainer_pygfo_21003 strong {
    font-weight: 500
}

._promoContainer_pygfo_21003 ._mb-grid_pygfo_21019 {
    margin-bottom: 30px
}

._promoContainer_pygfo_21003 ._row_pygfo_5344 {
    height: 100%
}

@media (min-width: 992px) {
    ._promoContainer_pygfo_21003 ._row_pygfo_5344 ._order-1_pygfo_21026 {
        margin-bottom:0
    }
}

._promoContainer_pygfo_21003 ._order-5_pygfo_21030,._promoContainer_pygfo_21003 ._order-4_pygfo_21030 {
    margin-bottom: 0
}

._promoContainer_pygfo_21003 ._gainedBlock_pygfo_21033 {
    opacity: .7
}

._promoContainer_pygfo_21003 ._gainedBlock_pygfo_21033 ._gained_pygfo_21033 {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding: 15px;
    background: #219a1a;
    border-radius: 4px
}

._promoContainer_pygfo_21003 ._gainedBlock_pygfo_21033 ._gained_pygfo_21033 img {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 15px
}

._promoContainer_pygfo_21003 ._gainedBlock_pygfo_21033 ._gained_pygfo_21033 span {
    font-size: 12px;
    line-height: 18px
}

._promoContainer_pygfo_21003 ._noAccountBlock_pygfo_21057 ._noAccount_pygfo_21057 {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding: 15px;
    background: #202020;
    border-radius: 4px
}

._promoContainer_pygfo_21003 ._noAccountBlock_pygfo_21057 ._noAccount_pygfo_21057._colummBlock_pygfo_21068 {
    flex-direction: column
}

._promoContainer_pygfo_21003 ._noAccountBlock_pygfo_21057 ._noAccount_pygfo_21057._colummBlock_pygfo_21068 a {
    color: inherit
}

._promoContainer_pygfo_21003 ._noAccountBlock_pygfo_21057 ._noAccount_pygfo_21057 span {
    font-size: 12px;
    line-height: 18px
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: inherit;
    background-color: #242424;
    border-radius: 4px
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._title_pygfo_5990 {
    max-width: 300px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._title_pygfo_5990>strong {
    color: #ffc107;
    white-space: nowrap
}

@media (max-width: 575px) {
    ._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._title_pygfo_5990 {
        margin-bottom:15px;
        font-size: 15px;
        line-height: 22px
    }
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._text_pygfo_4368 {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 13px;
    line-height: 19px
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._text_pygfo_4368._small_pygfo_3376 {
    margin-bottom: 0;
    color: #d8d8d8;
    font-size: 12px;
    line-height: 18px
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._btnAction_pygfo_12844 {
    display: block!important;
    width: 100%;
    margin-top: 20px!important;
    color: inherit;
    font-size: 15px;
    line-height: 26px;
    text-align: center
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._btn_pygfo_499 {
    margin-top: auto
}

@media (max-width: 900px) {
    ._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 ._btn_pygfo_499 {
        display:flex;
        height: 40px
    }
}

._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: ""
}

@media (max-width: 991px) {
    ._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 {
        padding:25px
    }
}

@media (max-width: 767px) {
    ._promoContainer_pygfo_21003 ._promoBlock_pygfo_21078 {
        padding:20px
    }
}

._promoContainer_pygfo_21003 ._infoLinkBlock_pygfo_21159 {
    background-color: #242424
}

._promoContainer_pygfo_21003 ._infoLinkBlock_pygfo_21159:before {
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    opacity: .5
}

._promoContainer_pygfo_21003 ._infoLinkBlock_pygfo_21159 ._title_pygfo_5990 {
    max-width: 1000px
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172:before {
    background: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    opacity: .5
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172:after {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 70%;
    background-image: url(/assets/coins-CifuluJR.png);
    background-repeat: no-repeat;
    background-position: 90% 40%;
    background-size: contain;
    opacity: .7;
    content: ""
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    margin-top: 10px;
    margin-bottom: 25px
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194 {
    display: flex;
    align-items: center
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194:not(:first-child) {
    margin-top: 15px
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194 ._status_pygfo_21209 {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    margin-right: 12px;
    background: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0%206C0%202.68629%202.68629%200%206%200H18C21.3137%200%2024%202.68629%2024%206V18C24%2021.3137%2021.3137%2024%2018%2024H6C2.68629%2024%200%2021.3137%200%2018V6Z'%20fill='%23FB5252'/%3e%3cpath%20d='M7.2918%204.96419C6.71952%204.36499%205.77003%204.34298%205.17105%204.91504C4.57206%205.4871%204.55042%206.4366%205.1227%207.0358L9.87107%2012.0076L4.93934%2016.9393C4.35355%2017.5251%204.35355%2018.4749%204.93934%2019.0607C5.52513%2019.6464%206.47487%2019.6464%207.06066%2019.0607L11.9436%2014.1777L16.7082%2019.1664C17.2805%2019.7656%2018.23%2019.7876%2018.829%2019.2156C19.4279%2018.6435%2019.4496%2017.694%2018.8773%2017.0948L14.0651%2012.0562L19.0607%207.06066C19.6464%206.47487%2019.6464%205.52512%2019.0607%204.93934C18.4749%204.35355%2017.5251%204.35355%2016.9393%204.93934L11.9926%209.88612L7.2918%204.96419Z'%20fill='%231C2029'%20stroke='%231C2029'%20stroke-linecap='round'/%3e%3c/svg%3e") 50% no-repeat;
    background-size: 100%
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194 ._success_pygfo_7496 {
    background: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='24'%20height='24'%20rx='6'%20fill='%2369E781'/%3e%3cpath%20d='M6%206L12%2019L19%2010.6429'%20stroke='%231C2029'%20stroke-width='4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
    background-size: 100%
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194 ._info_pygfo_731 {
    background: url(/assets/info-CNf3B_gU.svg);
    background-size: 100%
}

._promoContainer_pygfo_21003 ._repostPromoBlock_pygfo_21172 ._steps_pygfo_21194 ._step_pygfo_21194 ._text_pygfo_4368 {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px
}

._promoContainer_pygfo_21003 ._groupPromoBlock_pygfo_21232 {
    background: #242424
}

._promoContainer_pygfo_21003 ._groupPromoBlock_pygfo_21232:before {
    background-image: url(/assets/group-CFQ6yLQi.png);
    background-repeat: no-repeat;
    background-position: 100% 40%;
    opacity: .9
}

._promoContainer_pygfo_21003 ._subscribePromoBlock_pygfo_21241 {
    background: #242424
}

._promoContainer_pygfo_21003 ._subscribePromoBlock_pygfo_21241:before {
    background-image: url(/assets/subscribe-C0lD9RVZ.png);
    background-repeat: no-repeat;
    background-position: 100% 40%;
    background-size: cover;
    opacity: .5
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._promoBlock_pygfo_21078 {
    align-items: normal;
    background: #242424
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 {
    position: relative;
    z-index: 0;
    width: 100%
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251:before {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    background: url("data:image/svg+xml,%3csvg%20width='25'%20height='22'%20viewBox='0%200%2025%2022'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.4958%2021.0885L0.333101%200.0221134L24.6585%200.0221155L12.4958%2021.0885Z'%20fill='%23fff'/%3e%3c/svg%3e") 50% no-repeat;
    background-size: 100%;
    content: ""
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 ._size_pygfo_21272 {
    width: 100%;
    padding-top: 100%
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 ._image_pygfo_4992 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url(/assets/wheel-Cdia5PKl.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    transition: -webkit-transform 10s cubic-bezier(.35,.07,.15,1);
    transition: transform 10s cubic-bezier(.35,.07,.15,1);
    transition: transform 10s cubic-bezier(.35,.07,.15,1),-webkit-transform 10s cubic-bezier(.35,.07,.15,1)
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28%;
    height: 28%;
    margin: auto;
    background: #2b2b2b;
    border: none;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: padding-top .1s ease-in-out
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 button[disabled] {
    cursor: not-allowed;
    opacity: .5
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 button:hover {
    color: inherit;
    background: #3b3b3b
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 button:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #47bcee;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    content: ""
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 button>span {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .25px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,.05)
}

@media (max-width: 575px) {
    ._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._wheel_pygfo_21251 {
        max-width:300px
    }
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._timer_pygfo_4688,._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._timer_pygfo_4688 ._text_pygfo_4368 {
    margin-bottom: 10px
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._timer_pygfo_4688 ._countdown_pygfo_21351 {
    display: flex;
    justify-content: center;
    max-width: 180px;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    background: #219a1a;
    border-radius: 4px
}

._promoContainer_pygfo_21003 ._wheelPromoBlock_pygfo_21251 ._timer_pygfo_4688 ._countdown_pygfo_21351 ._digit_pygfo_21362 {
    width: 26px;
    color: #fff;
    text-align: center
}

._promoContainer_pygfo_21003 ._wheelPromoWrapper_pygfo_21367 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -15px;
    margin-left: -15px
}

._promoContainer_pygfo_21003 ._wheelPromoLeft_pygfo_21374,._promoContainer_pygfo_21003 ._wheelPromoRight_pygfo_21374 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

._promoContainer_pygfo_21003 ._wheelPromoLeft_pygfo_21374 {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (min-width: 576px) {
    ._promoContainer_pygfo_21003 ._wheelPromoLeft_pygfo_21374 {
        flex:0 0 58.33333%;
        max-width: 58.33333%
    }
}

._promoContainer_pygfo_21003 ._wheelPromoRight_pygfo_21374 {
    margin-top: 1.5rem
}

@media (min-width: 576px) {
    ._promoContainer_pygfo_21003 ._wheelPromoRight_pygfo_21374 {
        flex:0 0 41.66666%;
        max-width: 41.66666%;
        margin-top: 0
    }
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403 {
    background: transparent
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403 ._promoBlock_pygfo_21078:before {
    background-image: url(/assets/telegram-BRgaDSXQ.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .5
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403 strong {
    color: #ffe801!important
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 {
    opacity: 1
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499 {
    width: 100%;
    background: transparent
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499 span {
    width: 100%
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499:hover {
    background: transparent
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499 ._gained_pygfo_21033 {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding: 15px;
    background: #219a1a;
    border-radius: 4px
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499 ._gained_pygfo_21033 img {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 15px
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403._gainedBlock_pygfo_21033 ._btn_pygfo_499 ._gained_pygfo_21033 span {
    font-size: 12px;
    line-height: 18px
}

._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403 ._promoBlock_pygfo_21078 {
    color: inherit
}

@media (min-width: 992px) {
    ._promoContainer_pygfo_21003 ._tgPromoBlock_pygfo_21403 ._promoBlock_pygfo_21078 {
        padding-top:50px
    }
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._promoBlock_pygfo_21078 {
    background: #1b2030;
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._promoBlock_pygfo_21078:before {
    height: 80%;
    background-image: url(/images/frosted_glass_gift_box1.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    opacity: .5
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    margin-bottom: 40px
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 19px 0 19px 5px
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194>span {
    margin-left: 40px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px
}

@media (max-width: 767px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194>span {
        margin-left:15px;
        font-size: 14px;
        line-height: 20px
    }
}

@media (max-width: 575px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194>span {
        margin-left:25px;
        font-size: 16px;
        line-height: 24px
    }
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194>img {
    display: block;
    width: 50px;
    height: 50px;
    opacity: 0
}

@media (max-width: 767px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194>img {
        width:36px;
        height: 36px
    }
}

._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #d8d8d8;
    font-weight: 900;
    font-size: 90px;
    content: attr(data-step)
}

@media (max-width: 767px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194:before {
        font-size:74px
    }
}

@media (min-width: 576px) and (max-width: 900px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 {
        flex-direction:row
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 {
        justify-content:space-between
    }

    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 ._steps_pygfo_21194 ._step_pygfo_21194 {
        margin-left: 0;
        padding: 14px 0 14px 25px
    }
}

@media (max-width: 1200px) {
    ._promoContainer_pygfo_21003 ._partnerPromoBlock_pygfo_21458 {
        order:6
    }
}

._promoContainer_pygfo_21003 ._achievementsPromoBlock_pygfo_21550 {
    background: #242424
}

._promoContainer_pygfo_21003 ._achievementsPromoBlock_pygfo_21550:before {
    background-image: url(/assets/achievements-BXAZvVwt.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

._promoContainer_pygfo_21003 ._tournamentsPromoBlock_pygfo_21559 {
    background: #242424
}

._promoContainer_pygfo_21003 ._tournamentsPromoBlock_pygfo_21559:before {
    background-image: url(/assets/tournaments-nXRgFyUK.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

._promoContainer_pygfo_21003 ._remainsPromoBlock_pygfo_21568 {
    background: #242424
}

._promoContainer_pygfo_21003 ._remainsPromoBlock_pygfo_21568:before {
    background-image: url(/assets/remains-CQbsoEK1.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

._promoContainer_pygfo_21003 ._reviewPromoBlock_pygfo_21577 {
    background: #242424
}

._promoContainer_pygfo_21003 ._reviewPromoBlock_pygfo_21577:before {
    background-image: url(/assets/review-D6resob3.svg);
    background-repeat: no-repeat;
    background-position: 100% 40%;
    opacity: .5
}

._promoContainer_pygfo_21003 ._loyaltyPromoBlock_pygfo_21586 ._promoBlock_pygfo_21078 {
    background: #1b2030;
}

._promoContainer_pygfo_21003 ._loyaltyPromoBlock_pygfo_21586 ._promoBlock_pygfo_21078:before {
    background-image: url(/images/ranks-nn.png);
    background-repeat: no-repeat;
    background-position: 95% 25%;
    background-size: auto;
    opacity: .5
}

._promoCol_pygfo_21597 {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width: 1500px) {
    ._promoCol_pygfo_21597._big_pygfo_3422 {
        flex:0 0 66.66666%;
        max-width: 66.66666%
    }

    ._promoCol_pygfo_21597._small_pygfo_3376 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%
    }
}

._promotionsContainer_pygfo_21617 {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: #242424;
    border-radius: 6px
}

._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -25px -25px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 {
    width: 33.33333%;
    margin-top: 30px;
    padding: 0 15px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 {
    position: relative;
    align-items: center;
    width: 100%;
    background: #2b2b2b;
    border-radius: 5px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._image_pygfo_4992 img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 {
    position: relative;
    align-items: center;
    padding: 15px;
    font-size: 13px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    color: #d8d8d8;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid hsla(0,0%,100%,.06)
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span {
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-transform: none
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span._ended_pygfo_21709 {
    color: #f54949
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span._active_pygfo_796 {
    color: #2dc53a
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span svg {
    margin-bottom: 2px
}

@media (min-width: 600px) and (max-width: 800px) {
    ._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span {
        font-size:12px
    }
}

@media (max-width: 480px) {
    ._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 span {
        font-size:12px
    }
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._info_pygfo_731 ._col_pygfo_14991 ._nubmer_pygfo_21728 {
    display: inline-block;
    padding-left: 22px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._date_pygfo_232 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    text-align: center;
    background: #2b2b2b;
    border-radius: 0 0 6px 6px
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._date_pygfo_232 ._time_pygfo_4688 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 11px;
    text-align: left;
    text-transform: uppercase
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._date_pygfo_232 ._time_pygfo_4688 span {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    text-transform: none
}

._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 ._box_pygfo_5166 ._date_pygfo_232 ._btn_pygfo_499 {
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 110px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    color: #fff;
    font-weight: 400;
    line-height: 40px;
    border: 1px solid hsla(0,0%,100%,.09)
}

@media (max-width: 1490px) {
    ._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 {
        width:50%
    }
}

@media (max-width: 600px) {
    ._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 {
        width:100%
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    ._promotionsContainer_pygfo_21617 ._promotionsBlock_pygfo_21660 ._item_pygfo_131 {
        width:100%
    }
}

@media (max-width: 900px) {
    ._promotionsContainer_pygfo_21617 {
        padding:15px
    }

    ._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._promotionsContainer_pygfo_21617 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._pwaBackground_pygfo_21801 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: #000000bf
}

._pwaModal_pygfo_21813 {
    position: absolute;
    top: 50%;
    z-index: 10001;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    color: #353639;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 30px);
    max-width: 360px;
    min-height: 50px;
    margin-bottom: 15px;
    background-color: #edf2ff;
    border-radius: 12px
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._close_pygfo_3728 {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    margin: -10px -10px 0 0;
    padding: 10px;
    color: #717171;
    font-size: 14px
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._image_pygfo_4992 {
    position: relative;
    flex: none;
    width: 100%
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._image_pygfo_4992 ._spacer_pygfo_6073 {
    display: block;
    width: 100%;
    padding-bottom: 65.2174%;
    content: ""
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._image_pygfo_4992 img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._title_pygfo_5990 {
    position: relative;
    margin: 15px 0 0;
    font-size: 20px;
    text-align: center
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._title_pygfo_5990:before,._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._title_pygfo_5990:after {
    position: absolute;
    top: 3px;
    display: block;
    width: 20px;
    height: 20px;
    content: ""
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._title_pygfo_5990:before {
    left: -30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAqCAMAAAD/A0kuAAABelBMVEUAAAD/vg3/qQf/gkbzWlLwU1DwU1H/xCvwU1DwVFH/1DD/yyjwU1DwU1DvVVX1UWJdleL/yyj/ySjwU1BCpvb/yyjwVFBCpvbwVFH/rRH/pABGqvd3meD/pwbyZUr/pQT/oQCDgMbwU1D/oAD/ogD/yyj/rgz/zCvyVVJEqPn9vy7/pAAqedRDpvbKHmBUcMJDpvbsQXuFVaFrZrT/yyjwU1D/yij8pyeIfsXxVFDuQXvxU1HwU1HuQXrzbEr/zCj/zi2dfsGFWaz6kzn/yynYTYm4YKHsQXt+cLr/uBfxYEz/rAtyYq9ebb17hM74mTnTJmebSpDSKWjVKWjmrEn/yyn/tRHwVFD/owBCpfX/yifsQHr/oADwU1DFGVz/thPlgD1IovHiNnNQnewZdtM2l+wge9aSdbu2YKHeRYIkgduLecHXTIlkkdxsjNd9gspDdMmWbrWgbbGqZ6q/W5zRUI68IWTMIWEsjOJtd8NuY6+TRo6ZOYHVk1G2QeFrAAAAWXRSTlMAFvEHJPPjw5rtDd/UujAO+ejNyJCFgHJUTjMcDuzLwLCqo4x9a1k5OCkpJ/779eHa2r6zr6yino+Nc29kX1RIHxwXEvPu7enh4NrY1c6/trOjnYR7e2dGRQv19gQAAAJmSURBVDjLhdMJV9pAEAfwtSGXgAgWCsilXAqtttajVutRe993m2Q3bQhnPWprtfd376wkmsBC/u8Rlvd+TIYZgiBcYAwxEg8gRt4Tecc6VqvISmiaEBZeJWTGOmLMWacgIUEWDhCec+EUvAQicQwbojWc+OqVWYQyG4gZgaxtFRfFChyTSWRhMbzJxD5BVCGiPZPUJFwiqhpl6whY/4rsnGDZr95BzGxFixW0RFyDHV0W0eDIROgePhQKCXiLkcF2hhCpe8phnEW+CTIErxMSh5vD6BL5fAmBlZhull52BJKIRtRwxZonv860l5SLpzPJqDTPuzOJ+eBSesexMWg/DPttRqaMZiSN8cPRXj1pT6s8SpcvWfYCxh9hM0MSJyTmsOpyn+AKZ3eT4P/qsOqbPpvDObubacI77b8HvTiP00n7d/qEJYf99MvY7sHVbNIxwTGHPTGUZxZiD8Vh9a+KYm4zcb/tmIqiTLkeqyD/KOLfhAYC/KrL1lpgjbvOLcIzv+FXwyPw3+F9LntsAN7Vbrq2IKGyqi7GCFlzWW2fFu5o989LT/BB+FAMi7IsuW1LgXzTNCjNTvrcHlF7oEHupZg2gTG27HeDNrEHtmNOMXEJMLW61qZWaWuQL4rJLk1bBgvbsBvW2nTW7IVkH6+80E8Of1K7S+0eXcw4GpjQk2b9c0NpUdsZP23nFhqc2/PN+u8axQfdW1xjO5sv6PqPGvw4yD58CUoPzStdP2yANWF+UNorC7R381iDtG4gzzxt1v/Q3o/oQLzzcg56p+ukpb3zeu4vDNIq7Z3rl+vNhuGBXHwe/QewZbRtc2nFdAAAAABJRU5ErkJggg==) no-repeat;
    background-size: 20px
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._title_pygfo_5990:after {
    right: -30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAqCAMAAAAd31JXAAABfVBMVEUAAAD/pwX/uRfHG17yVlT7dFfwVFFYmObvVFHwU1CEhdTwU1DwU1DxVFPxUlb/yyj/yin/tRj/xBzwU1D/yynwU1BDpvZDpff/yyn/zCr/pAD+nxf9vipHqfpQnevwU1D/oQD/yyjzYkv/yCnwVFD/oQD+ty+LfMP/zCj/ogr/ogDxU1HxVFH5vzP/ogBHqPgoedNjkd1pj9pCpvZbbr7sQXvvU1BlaLj5kTzwVFH/ogDvU1HxVFGMfMT/sxD/tBLxU1HuQnzuQnv0dEjxVFDzVlOIYrNKrf9PcsT/oACxZKVlZbXgSITsQHr/rAv/vBmEa7J7W6eNUZz0eUT/rwzRJmb/oACgRo7SKWaDgMj/yynTKmr/zCr/zCj/owBCpfX/yijsQHr/oADvU1D/uhfhckEcd9TlOXTBGFybcLWvZaeIe8MjgdvWS4lLn+85m+4zlOnEWJjeSIXkRH/hNXFui9V2h9A9eM62J2zNImNjg89/W6WNQoyjP4XIjmBZ401GAAAAX3RSTlMA9yb+Igns/eSHCfDZMBjo2hMMuLSqh3txPC8oHxn++PLf2dPKxbmQjIx9aFlOSyH+9+3o1cjDwq6dm5J5cXFiYV5KRkUpJA/o5+Pg4NvX1NDJycK/vq+sqqidkYFoW0eW0wUAAAJgSURBVDjLjdJ3W9pQFAbwU5GEEYaMliVUEGRbW2ud1Tpq994r49YAAoqCo/Oze29CSII3Prx/5Ul+z8nJewNDmd4ASsY5L+Uug4KD2/EYqLE7UJliwwhNa9c3pYn+WISWgBInSgHArstogUEOoGUrDTDJ33EpVn/bOIVGp/yajZF9E6FQZGwDMfbLNCIIPsB4V2sgJ+BkGA9l7JTgixrLciz6sfXTKORCE2DIAgpC4nt+DGhxrODFqsVitX80KKUsSreI88AHScpqDaJtiho85KBaKPwAgADANkKrYJmyOwVKEn4hk6+4GaXY2UtufR0AvE61gUWB5K3SwA3+ulnaX0rStbFBWelICHcdB6qNCD917CSnao9qBU6COXnBgEsIlcA6FUHH5DcMD5YrBobtq/9G7EBBrYBlKTuEXcnfewa8xHi0j4o/lpbN9jPPnxvwzo5eQDwbM49leb5p03E/s0DJDI/TNmLrPDvAtlkz4VU3h5eO+jNp94JXpw/EBhl8ZMJeBnH2AP79txAK6va52E1iy3ZNuIzQyhdBqJBjLOljRXGfJ1uIJuxk3DnfNwzCbk6zT0ScU4IbBgzUEg7a2B4nCd4Xe3WCJUm6T7Msf0IGH/EqtmFsZWcUoa2Mj6Re3yM7BCj2NgbKFmpxnbNz2/vCi3cJCt1U3s0eq/iwJctPvWCRu+q4uS62tT+y/OghWGUTkxOCT8Xar7rtDZGWY0ldLLaHZ3XbJztckbWmiNNmyZ6vB5KeOb6Bbe+fLM+74OqskW57eM+PQ5Lebaf11/YVRgjbacm37sFImR9ZwgWP6LbeiSVHOgAAAABJRU5ErkJggg==) no-repeat;
    background-size: 20px
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._text_pygfo_4368 {
    max-width: 240px;
    margin: 15px 0 0;
    font-size: 13px;
    text-align: center
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._button_pygfo_6122 {
    width: 100%;
    padding: 15px 15px 20px
}

._pwaModal_pygfo_21813 ._wrapper_pygfo_1414 ._button_pygfo_6122 button {
    display: block;
    width: 100%;
    max-width: 240px;
    height: 48px;
    margin: auto;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    background-color: #e26700;
    border-radius: 6px;
    outline: none
}

._pwaContainer_pygfo_21914 {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 20px;
    background: #202020
}

._pwaContainer_pygfo_21914 ._caption_pygfo_281 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    height: 42px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #323946
}

._pwaContainer_pygfo_21914 ._caption_pygfo_281 ._text_pygfo_4368 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: inherit;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .3px;
    text-transform: uppercase
}

._pwaContainer_pygfo_21914 ._caption_pygfo_281 ._text_pygfo_4368 svg {
    margin: 0 9px 0 -1px;
    font-size: 26px
}

._pwaContainer_pygfo_21914 ._caption_pygfo_281 ._btnLeft_pygfo_21949 {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 35px;
    padding: 0 15px 0 25px;
    color: inherit;
    background: #323946;
    border-radius: 6px;
    cursor: pointer
}

._pwaContainer_pygfo_21914 ._caption_pygfo_281 ._btnLeft_pygfo_21949 svg {
    position: absolute;
    top: 50%;
    left: 7px;
    margin-top: 1px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 {
    margin-bottom: 20px
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 ._head_pygfo_917 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 5px;
    color: inherit;
    font-weight: 500;
    font-size: 15px
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 ._head_pygfo_917 ._number_pygfo_6259 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    color: inherit;
    font-size: 13px;
    background-color: #e26700;
    border-radius: 3px
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 ._head_pygfo_917 ._iconIos_pygfo_21998 {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 6px;
    padding: 5px;
    background: #fff3;
    border-radius: 4px
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 ._head_pygfo_917 ._iconIos_pygfo_21998 svg {
    width: 20px;
    height: 20px
}

._pwaContainer_pygfo_21914 ._item_pygfo_131 ._bottom_pygfo_5296 {
    padding-left: 34px;
    color: #d8d8d8
}

._pwaContainer_pygfo_21914 ._alert_pygfo_4613 {
    color: inherit;
    padding: 15px;
    text-align: center;
    background: #4986f526;
    border: 1px solid #e26700;
    border-radius: 6px
}

._recoverySection_pygfo_22029 {
    position: relative
}

._recoverySection_pygfo_22029 ._block_pygfo_5499 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    height: 65vh;
    margin: auto;
    white-space: nowrap
}

._recoverySection_pygfo_22029 ._loader_pygfo_239 {
    height: 100px
}

._recoverySection_pygfo_22029 ._loader_pygfo_239 img {
    width: 80px;
    height: 80px
}

._recoverySection_pygfo_22029 ._text_pygfo_4368 {
    font-size: 28px
}

._responsibilityContainer_pygfo_22054 {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: #242424;
    border-radius: 6px
}

._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 {
    position: relative;
    margin: -25px -25px 0;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: #2b2b2b;
    border-radius: 6px 6px 0 0
}

._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 ._caption_pygfo_281 {
    position: relative;
    margin-top: -3px
}

._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px
}

._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
    position: relative;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 15px
}

._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652:after {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 30%;
    height: 300%;
    margin-left: -15%;
    background: #ffffff08;
    transform: rotate(25deg);
    content: ""
}

._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 {
    display: flex;
    flex-wrap: wrap;
    color: inherit
}

._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 h2 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px
}

._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 h2:first-child {
    margin-top: 20px
}

._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 p {
    width: 100%;
    font-weight: 400;
    font-size: 16px
}

._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 p:first-child {
    margin-top: 20px
}

@media (max-width: 1100px) {
    ._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 p {
        font-size:14px
    }
}

@media (max-width: 480pxpx) {
    ._responsibilityContainer_pygfo_22054 ._responsibilityBlock_pygfo_22097 p {
        font-size:13px
    }
}

@media (max-width: 900px) {
    ._responsibilityContainer_pygfo_22054 {
        padding:15px
    }

    ._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 {
        margin: -15px -15px 0;
        padding: 20px
    }

    ._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 ._caption_pygfo_281 h1 {
        font-size: 20px
    }

    ._responsibilityContainer_pygfo_22054 ._headerBlock_pygfo_10652 ._info_pygfo_731 {
        font-size: 13px
    }
}

._settingsContainer_pygfo_22144 {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0;
    background: #242424;
    border-radius: 5px
}

._settingsContainer_pygfo_22144 ._inputControl_pygfo_6521 {
    color: inherit!important;
    background-color: #202020!important;
    border: 2px solid transparent!important
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 {
    width: 30%;
    padding: 25px 0;
    background: #2b2b2b
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 {
    padding-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #3b3b3b
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #373e4e;
    border-radius: 5px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._avatar_pygfo_2784>div {
    position: relative!important;
    width: 88px!important;
    height: 88px!important;
    font-family: Rubik,Arial,sans-serif;
    border-radius: 5px!important
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446._active_pygfo_796 ._actionsBlock_pygfo_19461,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446:focus ._actionsBlock_pygfo_19461,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446:hover ._actionsBlock_pygfo_19461 {
    visibility: visible;
    opacity: 1
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #232833a6;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s linear
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translate(-50%,-50%)
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label svg,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button svg {
    font-size: 12px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label._avatarUpload_pygfo_19500,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button._avatarUpload_pygfo_19500 {
    background-color: #e26700
}

@media (max-width: 1050px) {
    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label {
        width:22px;
        height: 22px
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 button svg,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._actionsBlock_pygfo_19461 ._actions_pygfo_19461 label svg {
        font-size: 10px
    }
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    margin: auto;
    font-size: 15px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._btnName_pygfo_17397 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._btnName_pygfo_17397 svg {
    position: relative;
    top: .05em;
    margin-left: 5px;
    font-size: 13px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266._active_pygfo_796 ._btnName_pygfo_17397 {
    display: none
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 {
    position: relative;
    display: flex
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    color: #fff;
    font-size: 1em;
    background-color: initial;
    border: 2px solid transparent;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 input:not([readonly]):focus {
    border-color: #535d71
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 ._submit_pygfo_6605 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 15px;
    color: #d8d8d8;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 ._submit_pygfo_6605:hover,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 ._change_pygfo_4452 ._submit_pygfo_6605:focus {
    color: #fff
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._navLabel_pygfo_19542 {
    height: 48px;
    padding: 0
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 {
    position: relative;
    box-sizing: border-box
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416:hover ._btnDropdown_pygfo_5437,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416:active ._btnDropdown_pygfo_5437 {
    background-color: #242424
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 {
    display: inline-block;
    height: 48px;
    padding: .375rem .75rem;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    background-color: #242424;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437._open_pygfo_625 {
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 5px #202020
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 {
    display: flex;
    align-items: center;
    color: inherit
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._navIcon_pygfo_19581 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 6px;
    background: #ffffff14;
    border-radius: 3px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._navIcon_pygfo_19581 svg {
    font-size: 1.3em;
    opacity: .3
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097 {
    display: flex;
    width: 14px;
    height: 14px;
    margin-left: .45em;
    transition: transform .2s ease-out
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097 svg {
    width: 100%;
    height: 100%;
    fill: #7f8596
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._btnDropdown_pygfo_5437 ._btnContent_pygfo_1776 ._opener_pygfo_2097._open_pygfo_625 {
    transform: rotate(-180deg)
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1000;
    display: none;
    float: left;
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
    margin: 0;
    color: #212529;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #242424;
    background-clip: padding-box;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 5px #202020
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201._open_pygfo_625 {
    display: block
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201:first-child {
    border-radius: 0
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131 {
    display: block;
    clear: both;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    text-align: inherit;
    background-color: initial;
    border-bottom: 1px solid #3d414a
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:hover,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:focus {
    color: #fff;
    background-color: #2c3240
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:not(._active_pygfo_796),._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:not([disabled]) {
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:first-child {
    border-radius: 0
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._settingsMobileNav_pygfo_22294 ._dropdown_pygfo_2416 ._menu_pygfo_1201 ._item_pygfo_131:last-child {
    border-bottom: 1px solid transparent
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navLabel_pygfo_19542 {
    height: 50px;
    color: #d8d8d8;
    line-height: 14px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navLabel_pygfo_19542,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 {
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-size: 14px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 {
    height: 52px;
    color: #d8d8d8;
    border-bottom: 1px solid #3b3b3b;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 ._navIcon_pygfo_19581 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 6px;
    background: #ffffff14;
    border-radius: 3px
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670 ._navIcon_pygfo_19581 svg {
    color: #fff;
    font-size: 1.3em;
    opacity: .3
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:last-child {
    border-bottom: 0
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670._active_pygfo_796 {
    color: #fff;
    background: #242424;
    border-bottom: 1px solid transparent
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:hover {
    color: #fff
}

._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670:hover ._navIcon_pygfo_19581 svg,._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 div ._navItem_pygfo_19670._active_pygfo_796 ._navIcon_pygfo_19581 svg {
    opacity: 1
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 {
    position: relative;
    width: 70%;
    padding: 25px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._caption_pygfo_281 {
    margin-bottom: 25px;
    color: inherit;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._alert_pygfo_4613 {
    position: relative;
    margin-bottom: 1.5em;
    padding: 15px;
    font-size: 13px;
    background: #3b3b3b;
    border-radius: 5px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formLabel_pygfo_20824 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 {
    position: relative
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 {
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input {
    display: none
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input:checked+._label_pygfo_292:before {
    background: #e26700
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input:checked+._label_pygfo_292:after {
    left: calc(100% - 15px)
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292 {
    position: relative;
    display: block;
    width: 33px;
    height: 10px;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292:before {
    display: block;
    width: 100%;
    height: 100%;
    background: #d8d8d82e;
    border-radius: 5px;
    transition: all .3s;
    content: ""
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809 label ._formField_pygfo_4444 ._checkBox_pygfo_5846 input+._label_pygfo_292:after {
    position: absolute;
    top: calc(50% - 9px);
    left: -3px;
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 4px;
    transition: all .3s;
    content: ""
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._preferences_pygfo_20809 ._form-checkbox_pygfo_20809:nth-child(odd) {
    background-color: #2c323f
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyDescription_pygfo_22559 {
    margin-bottom: 25px;
    color: inherit;
    font-size: 14px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 {
    position: relative;
    min-height: 400px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 input,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 select {
    background-color: inherit
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564._isLoader_pygfo_15009 {
    min-height: 400px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._loaderBlock_pygfo_239 {
    text-align: center
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._submit_pygfo_6605 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding: 9px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    background: #e26700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .1s linear
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._submit_pygfo_6605:not([disabled]):focus,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._submit_pygfo_6605:not([disabled]):hover {
    background-color: #ee8f0d
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div {
    width: 100%
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div:first-child {
    margin-right: 20px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div label {
    display: inline-flex;
    align-items: center;
    margin-bottom: .65em;
    color: #d8d8d8;
    font-size: 13px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._inputSelect_pygfo_22614 {
    position: relative
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._inputSelect_pygfo_22614:after {
    position: absolute;
    right: .75em;
    bottom: 50%;
    width: 0;
    height: 0;
    border-color: #717787 transparent transparent;
    border-style: solid;
    border-width: 4px 4px 0;
    transform: translateY(50%);
    content: "";
    pointer-events: none
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._inputSelect_pygfo_22614 ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px!important;
    outline: none!important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._inputSelect_pygfo_22614 ._inputControl_pygfo_6521 option {
    color: #fff
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 {
    position: relative;
    display: inherit;
    width: inherit
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513._hasError_pygfo_6518 input,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513._hasError_pygfo_6518 label {
    border-color: #e86376!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    background-color: initial;
    border: 1px solid #2b2b2b;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._inputControl_pygfo_6521:not([readonly]):focus {
    border-color: #535d71!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380 {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 6px;
    padding: 1em;
    color: #e86376;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    background: #202020;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380:after {
    position: absolute;
    top: 100%;
    left: .5em;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #202020!important;
    content: ""
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._topRight_pygfo_6569 {
    top: auto;
    right: 0;
    bottom: 100%;
    left: auto
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._topRight_pygfo_6569:after {
    left: 50%;
    transform: translate(-50%)
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._visible_pygfo_1269 {
    visibility: visible;
    opacity: 1
}

@media (max-width: 500px) {
    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596 {
        flex-direction:column;
        margin: 0
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._colHalf_pygfo_22596>div {
        margin: 0 0 1em
    }
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 {
    margin-bottom: 1em
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._inputLabel_pygfo_22723 {
    display: inline-flex;
    align-items: center;
    margin-bottom: .65em;
    color: #d8d8d8;
    font-size: 13px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 label {
    color: inherit
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 label ._btnAppend_pygfo_22733 {
    color: inherit;
    background-color: #4c5363!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 label ._btnAppend_pygfo_22733:hover,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 label ._btnAppend_pygfo_22733:focus {
    color: #fff!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 label:hover ._btnAppend_pygfo_22733 {
    color: #fff!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 {
    position: relative;
    display: inherit;
    width: inherit
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513._hasError_pygfo_6518 input,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513._hasError_pygfo_6518 label {
    border-color: #e86376!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 label {
    position: relative;
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 0 0 15px;
    color: inherit;
    background-color: #202020;
    border-radius: 5px;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 label input[type=file] {
    position: absolute;
    z-index: -1;
    width: .1px;
    height: .1px;
    overflow: hidden;
    opacity: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 label ._btnAppend_pygfo_22733 {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    min-width: 80px;
    height: 34px;
    margin-right: 6px;
    padding: 0 15px;
    color: #d8d8d8;
    background: #4c5363;
    border-radius: 3px;
    transform: translateY(-50%);
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 ._tip_pygfo_3380 {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 6px;
    padding: 1em;
    color: #e86376;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    background: #202020;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 ._tip_pygfo_3380:after {
    position: absolute;
    top: 100%;
    left: .5em;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #202020!important;
    content: ""
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._topRight_pygfo_6569 {
    top: auto;
    right: 0;
    bottom: 100%;
    left: auto
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._topRight_pygfo_6569:after {
    left: 50%;
    transform: translate(-50%)
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 div ._inputFile_pygfo_22720 ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._visible_pygfo_1269 {
    visibility: visible;
    opacity: 1
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._message_pygfo_599 {
    font-size: 15px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._message_pygfo_599 ._caption_pygfo_281 {
    margin-bottom: .25em;
    font-weight: 400;
    font-size: 18px;
    text-transform: none
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._message_pygfo_599._failed_pygfo_22836 ._caption_pygfo_281 {
    color: #e86376
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._message_pygfo_599._process_pygfo_22839 ._caption_pygfo_281 {
    color: #e26700
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 ._message_pygfo_599._success_pygfo_7496 ._caption_pygfo_281 {
    color: #2dc53a
}

@media (max-width: 500px) {
    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564 {
        padding:0;
        background-color: initial
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564:after,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._verifyForm_pygfo_22564:before {
        display: none
    }
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 {
    position: relative
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153._isLoader_pygfo_15009 {
    min-height: 500px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 {
    position: relative;
    display: block;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table {
    width: 100%;
    text-align: left;
    border-collapse: collapse
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    padding: 10px 0;
    color: #d8d8d8;
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
    text-transform: uppercase;
    border-bottom: 1px solid #2b2b2b
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th {
    width: 20%;
    text-align: center
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td:first-child,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th:first-child {
    text-align: left
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr td:last-child,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table thead tr th:last-child {
    text-align: right
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr:last-child td {
    border-bottom: 1px solid transparent
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td {
    min-width: 110px;
    padding: 20px 10px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .2px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:first-child {
    padding-left: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child {
    padding-right: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div {
    white-space: nowrap
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._active_pygfo_796 {
    color: #2dc53a
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td div._expired_pygfo_20428 {
    color: #e86376
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th {
    width: 20%;
    text-align: center
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:first-child,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th:first-child {
    text-align: left
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr td:last-child,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._withPager_pygfo_7266 ._list_pygfo_5153 ._responsive_pygfo_20312 table tbody tr th:last-child {
    text-align: right
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 {
    margin-bottom: 25px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._loaderBlock_pygfo_239 {
    text-align: center
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div {
    width: 100%
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._inputLabel_pygfo_22723 {
    display: inline-flex;
    align-items: center;
    margin-bottom: .65em;
    color: #d8d8d8;
    font-size: 13px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 {
    position: relative;
    display: inherit;
    width: inherit
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513._hasError_pygfo_6518 ._inputControl_pygfo_6521 {
    border-color: #e86376!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    background-color: initial;
    border: 1px solid #2b2b2b;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 ._inputControl_pygfo_6521:not([readonly]):focus {
    border-color: #e26700
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380 {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 6px;
    padding: 1em;
    color: #e86376;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    background: #202020;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380._visible_pygfo_1269 {
    visibility: visible;
    opacity: 1
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._validationWrapper_pygfo_6513 ._tip_pygfo_3380:after {
    position: absolute;
    top: 100%;
    left: .5em;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #202020!important;
    content: ""
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    background-color: initial;
    border: 1px solid #2b2b2b;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._inputControl_pygfo_6521[type=submit] {
    color: #fff;
    font-size: 14px;
    background-color: #e26700!important;
    border: 0;
    cursor: pointer;
    transition: all .3s;
    -webkit-text-fill-color: #fff
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._inputControl_pygfo_6521[type=submit][disabled] {
    cursor: not-allowed;
    opacity: .8;
    pointer-events: none
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div ._inputControl_pygfo_6521[type=submit]:not(disabled):hover {
    color: inherit;
    background-color: #ee8f0d!important
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div:first-child {
    margin-right: 20px
}

@media (max-width: 500px) {
    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939 {
        flex-direction:column;
        margin: 0
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._securityContainer_pygfo_22933 ._inputHalf_pygfo_22939>div {
        width: 100%;
        margin-bottom: 10px
    }
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    color: inherit;
    background-color: transparent;
    border: 1px solid #2b2b2b;
    border-radius: 5px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 ._text_pygfo_4368 {
    position: relative;
    z-index: 1;
    padding-right: 15px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 button {
    position: relative;
    z-index: 1;
    margin-left: auto;
    padding: .375rem .75rem;
    white-space: nowrap
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 img {
    position: absolute;
    top: -100px;
    right: -30px;
    height: 280px;
    opacity: .1
}

@media (max-width: 500px) {
    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 {
        flex-direction:column;
        padding: 15px
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 ._text_pygfo_4368 {
        padding: 0 0 15px
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._twoFactor_pygfo_23053 button {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px
    }
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 {
    margin-bottom: 12px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 label {
    display: inline-flex;
    align-items: center;
    margin-bottom: .65em;
    color: #d8d8d8;
    font-size: 13px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 label svg {
    margin-left: 5px;
    font-size: 1em;
    fill: #2dc53a
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    background-color: initial;
    border: 1px solid #2b2b2b;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 {
    position: relative
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 ._inputControl_pygfo_6521 {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    color: #fff;
    font-size: 16px;
    background-color: initial;
    border: 1px solid #2b2b2b;
    border-radius: 5px!important;
    outline: none!important;
    -webkit-appearance: none;
    touch-action: manipulation
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 ._btnAppend_pygfo_22733 {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 34px;
    margin-right: 6px;
    padding: 0 15px;
    color: #d8d8d8;
    text-align: center;
    background: #2b2b2b;
    border-radius: 3px;
    transform: translateY(-50%);
    cursor: pointer
}

@media (max-width: 450px) {
    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 ._btnAppend_pygfo_22733 {
        min-width:55px
    }
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 ._btnAppend_pygfo_22733._approved_pygfo_23164 {
    color: #2dc53a!important;
    cursor: default
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputAppend_pygfo_20282 ._btnAppend_pygfo_22733:hover {
    color: #fff
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._inputEmail_pygfo_23171 {
    padding-left: 40px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._emailIcon_pygfo_23174 {
    position: absolute;
    top: 7px;
    left: 12px;
    color: inherit;
    font-size: 21px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._emailDescription_pygfo_23181 {
    display: block;
    margin-top: .65em;
    color: #aaaeb9;
    font-weight: 400;
    font-size: 12px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._inputRow_pygfo_6502 ._emailNoty_pygfo_4300 {
    display: block;
    margin-top: .65em;
    color: #e26700;
    font-weight: 400;
    font-size: 12px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097,._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._plus_pygfo_7101 {
    margin-bottom: 10px
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097 {
    display: flex;
    align-items: center;
    height: 38px;
    margin-left: 12px;
    padding: 0 20px;
    color: #fff;
    background: #2b2b2b;
    border-radius: 38px;
    cursor: pointer
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._vk_pygfo_23215 {
    background-color: #2787f5
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._vk_pygfo_23215:hover {
    background-color: #1f6fca
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._fb_pygfo_23221 {
    background-color: #3b5999
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._fb_pygfo_23221:hover {
    background-color: #2c4374
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._ok_pygfo_23227 {
    background-color: #db8a37
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._ok_pygfo_23227:hover {
    background-color: #c47626
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._gl_pygfo_23233 {
    background-color: #db4437
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._gl_pygfo_23233:hover {
    background-color: #c63024
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._st_pygfo_908 {
    background-color: #424242
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._st_pygfo_908:hover {
    background-color: #383838
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._tg_pygfo_21403 {
    background-color: #1e97ca
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._btnSocial_pygfo_4097._tg_pygfo_21403:hover {
    background-color: #1478a2
}

._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 ._socialContainer_pygfo_4090 ._plus_pygfo_7101 {
    display: flex;
    font-size: 34px;
    line-height: 30px
}

@media (max-width: 1050px) {
    ._settingsContainer_pygfo_22144 {
        display:block
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 {
        width: 100%;
        padding: 0;
        border-radius: 5px 5px 0 0
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 {
        display: flex;
        align-items: center;
        padding: 15px
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 {
        width: 60px;
        height: 60px;
        margin: 0 15px 0 0;
        padding: 3px
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._avatarBlock_pygfo_19446 ._avatar_pygfo_2784>div {
        width: 52px!important;
        height: 52px!important
    }

    ._settingsContainer_pygfo_22144 ._sidebar_pygfo_19436 ._head_pygfo_917 ._name_pygfo_266 {
        max-width: 100%;
        margin: 0
    }

    ._settingsContainer_pygfo_22144 ._settingsContent_pygfo_22470 {
        width: 100%;
        padding: 15px
    }
}

.faqItems-1{
background-color: #20273a;
border-radius: 15px;
}
.faqItems-2{
display:flex;
align-items:center;
justify-content: center;
}
.faqItems-3{
margin-bottom: 15px;
font-weight: bold;
}
.faqItems-4{
color: #0474ff;
}
.faqItems-5{
background-color: #20273a;
border-radius: 15px;
}

.providersSlots {
  background: #1b2030;
  border-radius: 15px;
  margin-top: -40px;
  padding: 40px 15px 70px 15px;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1200px) {
  .providersSlots {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 650px) {
  .providersSlots {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 450px) {
  .providersSlots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 370px) {
  .providersSlots {
    grid-template-columns: repeat(2, 1fr);
  }
}

.slots--notFound {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  font-weight: 600;
  font-size: 18px;
}

.providersSlots::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 55px;
  background: url(../shape-2.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(360deg);
  bottom: 0;
}

.providersSlots .provider {
  text-align: center;
  background: #171b28;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 75px;
  cursor: pointer;
}

.providersSlots .provider:hover {
  background: #284981;
  color: #3a7ce6;
}

.providersSlots .provider h4 {
  cursor: pointer;
}

.providersSlots .provider img {
  width: 100%;
  height: 100%;
  transition: .2s;
  object-fit: contain;
  filter: grayscale(3);
  opacity: .4;
}

.provider.active img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 725px) {
  .btn-up {
    right: 20px;
  }
}

.slots__container {
  background: #1b2030;
  border-radius: 15px;
}

.slotsLeftBox {
  display: flex;
  margin: 10px;
  align-content: center;
  align-items: center;
}

.slotsLeftBox img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.slotsLeftBox span {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 10px;
}

.slotsLoad {
  grid-column: 1 / -1;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headSlots {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  background: #1b2030;
  justify-content: space-between;
  border-radius: 15px;
  height: 70px;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.searchSlots {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 50px;
  border-radius: 15px;
  padding: 0 20px;
  background-color: #1f273b;
}

.searchSlots input {
  height: 40px;
  width: calc(100% - 35px);
  border: 0px;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
}

.searchSlots input::placeholder {
  color: #FFFFFF;
}

.active{
  color: #3a7ce6;
}

.encryption {
    padding: 5px 10px;
    border-radius: 8px;
    background: linear-gradient(45.87deg, #89C763 6.6%, #0E9347 102.94%);;
    color: #fff;
    font-weight: 500;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.footer__encryption {
    margin-top: 10px;
    margin-bottom: 10px;
}

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lock:before {
    content: "\f023";
}

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.license_info {
    display: flex;
    align-items: center;
    border: 1px solid #353538;
    border-radius: 12px;
    padding: 10px 10px;
    gap: 7px;
    max-width: 225px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #dad5d5;
}

.footer__rng-test{
font-size: 10px;
}


/* auth modal */  

.auth .vm--modal {
  width: 680px!important;
}

.vm--modal {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 20px 60px -2px rgba(27, 33, 58, 0.4);
}

.vm--modal {
  background: transparent!important;
  border-radius: 6px!important;
  bottom: inherit!important;
  box-shadow: inherit!important;
  left: inherit!important;
  overflow: hidden;
  right: inherit!important;
  top: inherit!important;
  width: -moz-fit-content!important;
  width: fit-content!important;
}

.auth__content {
    --tw-bg-opacity: 1;
    background-color: rgb(30 36 47 / 95%);
    display: flex;
    /* min-width: 360px; */
}

.auth__close {
  --tw-text-opacity: 1;
  align-items: center;
  color: rgb(255 255 255);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
  width: 48px;
}

.auth__image {
  background-position: 50%;
  background-size: cover;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 480px;
  width: 48%;
}

.auth__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background: #0f212e;
}

.auth__top_d{
  background: #0d1b25;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  align-content: center;
}

.auth__top {
  display: flex;
  flex-direction: column;
}

.auth__title {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 2.25rem;
    padding-bottom: .75rem;
    position: relative;
}

.auth__title:before {
  --tw-bg-opacity: 1;
  --tw-content: "";
  background-color: rgb(2 125 234);
  border-radius: 9999px;
  bottom: 0;
  content: var(--tw-content);
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.auth__top>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(1.25rem*var(--tw-space-y-reverse));
  margin-top: calc(1.25rem*(1 - var(--tw-space-y-reverse)));
}

.auth__socials {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.auth__socials button {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  align-items: center;
  background-color: rgb(2 125 234 / 81%);
  border-radius: 6px;
  color: rgb(255 255 255/var(--tw-text-opacity));
  display: flex;
  font-size: 1.5rem;
  height: 48px;
  justify-content: center;
  line-height: 2rem;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
  width: 48px;
}

.\!opacity-40 {
  opacity: .4!important;
}

.pointer-events-none {
  pointer-events: none;
}

.auth__or {
  --tw-text-opacity: 1;
  align-items: center;
  color: rgb(255 255 255/var(--tw-text-opacity));
  display: flex;
  font-size: 10px;
  font-weight: 500;
  justify-content: center;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

.auth__or:after, .auth__or:before {
  --tw-translate-y: -50%;
  --tw-gradient-from: #7767aa;
  --tw-gradient-to: rgba(119,103,170,0);
  --tw-gradient-stops: var(--tw-gradient-from),var(--tw-gradient-to);
  --tw-gradient-to: transparent;
  --tw-content: "";
  content: var(--tw-content);
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 40%;
}

.auth__or:before {
  background-image: linear-gradient(to left,var(--tw-gradient-stops));
  left: 0;
}

.auth__or:after {
  background-image: linear-gradient(to right,var(--tw-gradient-stops));
  right: 0;
}

.modal__form {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 15px;
  width: 100%;
  align-items: stretch;
}

.modal__form_span{
  color:#b1bad3;font-weight: bold;font-size: 12px;
}

.modal__input {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/var(--tw-text-opacity));
  position: relative;
  margin-bottom: 10px;
}

.modal__input input {
  background: #0f212e;
  border: 2px solid #1a2c38;
  color: white;
  height:38px;
  font-size: 12px;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  border-radius: 6px;
  border-width: 2px;
  line-height: 1.5rem;
  padding-left: 12px;
  padding-right: 12px;
  transition-duration: .2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
  width: 100%;
}

.modal__form-btn {
  align-items: center;
  display: flex;
  justify-content: center;
}

.modal__form-btn button {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(2 125 234);
  border-radius: 6px;
  color: rgb(255 255 255/var(--tw-text-opacity));
  font-size: 15px;
  height: 48px;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
  width: 100%;
}

.modal__form-txt {
  margin-top: 7px;
  font-size: 12px;
  line-height: 160%;
  text-align: center;
}

.modal__form-txt a {
  --tw-text-opacity: 1;
  color: rgb(48 119 247/var(--tw-text-opacity));
}

.auth__bottom{
  text-align: center;color: gray;font-size: 12px;padding: 20px 0
}

.auth__bottom ul {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.hidden {
  display: none;
}

.auth__tabs {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.auth__tabs button.active {
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  background-color: rgb(2 125 234);
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.auth__tabs button, .auth__tabs button:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.auth__tabs button {
  --tw-border-opacity: 1;
  align-items: center;
  border-color: rgb(207 0 0/var(--tw-border-opacity));
  border-radius: 6px;
  border-width: 1px;
  display: flex;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
}

.flex-col {
  flex-direction: column;
}

.flex {
  display: flex;
}

.confirm {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(39,45,57,.85)!important;
  padding: 25px;
  text-align: center;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.confirm .vue-dialog-content {
  padding: 64px 12px 12px;
}

.vue-dialog-content {
  flex: 1 0 auto;
  width: 100%;
  padding: 14px;
}

.confirm .vue-dialog-content-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  padding-bottom: 0;
}

.confirm .vue-dialog-content-title:before {
  --tw-translate-x: -50%;
  --tw-content: "";
  background: url(../alert.svg) no-repeat 50%/contain;
  content: var(--tw-content);
  height: 64px;
  left: 50%;
  position: absolute;
  top: 18px;
  transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 64px;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.p-\[16px_20px\] {
  padding: 16px 20px;
}

.bg-\[\#313648\] {
  --tw-bg-opacity: 1;
  background-color: rgb(49 54 72/var(--tw-bg-opacity));
}

.rounded-\[8px\] {
  border-radius: 8px;
}

.mb-\[10px\] {
  margin-bottom: 10px;
}

.items-center {
  align-items: center;
}

.space-x-2>:not([hidden])~:not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-left: calc(.5rem*(1 - var(--tw-space-x-reverse)));
  margin-right: calc(.5rem*var(--tw-space-x-reverse));
}

.\[\&_b\]\:font-\[500\] b {
  font-weight: 500;
}

.text-\[\#FDCD2D\] {
  --tw-text-opacity: 1;
  color: rgb(253 205 45/var(--tw-text-opacity));
}

.text-\[15px\] {
  font-size: 15px;
}

.confirm .vue-dialog-buttons {
  border-width: 0;
  padding-top: .5rem;
}

.confirm .vue-dialog-buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.vue-dialog-buttons {
  display: flex;
  flex: 0 1 auto;
  width: 100%;
  border-top: 1px solid #eee;
}

.confirm .vue-dialog-buttons button {
  background-color: transparent;
  border: 1px solid hsla(0,0%,100%,.08)!important;
  border-radius: 8px;
  flex: none!important;
  font-size: .875rem;
  height: 44px;
  line-height: 1.25rem;
  padding: 0 15px;
  position: relative;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-timing-function: cubic-bezier(0,0,.2,1);
  width: 128px;
}

.vue-dialog-button {
  font-size: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 40px;
  height: 40px;
  color: inherit;
  font: inherit;
  outline: none;
}

.confirm .vue-dialog-buttons>:not([hidden])~:not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-left: calc(.5rem*(1 - var(--tw-space-x-reverse)));
  margin-right: calc(.5rem*var(--tw-space-x-reverse));
}

.\!text-black {
  --tw-text-opacity: 1!important;
  color: rgb(0 0 0/var(--tw-text-opacity))!important;
}

.\!border-\[\#FDCD2D\] {
  --tw-border-opacity: 1!important;
  border-color: rgb(253 205 45/var(--tw-border-opacity))!important;
}

.\!bg-\[\#FDCD2D\] {
  --tw-bg-opacity: 1!important;
  background-color: rgb(253 205 45/var(--tw-bg-opacity))!important;
}

@media (max-width: 1520px) {
  .teatralSlot-btn{
    display: none !important;
  }
}
@media (max-width: 744px) {
  .auth__image {
    display: none;
  }
  .auth__inner {
    /* width: 100%; */
  }
}

.mobilec-pProfile{
  /*padding-right: 20px;*/
}

.mobile-short-logo{
  display: none;
}