.elMenu {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: 0.4s 0.1s;
}
.elMenu .elItems {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}
.elMenu .elItems::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.elMenu .elItems > * {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: max-content;
  cursor: pointer;
}
.elMenu .elItems .search {
  display: none;
}
.elMenu .elContent {
  position: relative;
}
.elMenu .elContent .content {
  display: none;
}
.elMenu .elContent .content.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.elMenu .elContent .elError {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.elMenu .elPreloader {
  position: absolute;
  left: 0;
  display: none;
  width: 100%;
}
.elMenu .elClock {
  display: none;
}
.elMenu.loading .elPreloader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.elMenu.clock-on .elItems {
  width: calc(100% - 100px);
}
.elMenu.clock-on .elClock {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100px;
  text-align: center;
}
@media only screen and (min-width: 320px) {
  .drag-slider.all-nav .ds-nav {
    display: flex;
  }
  .drag-slider.all-dots .ds-dots {
    display: flex;
  }
  .drag-slider.all-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.all-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (min-width: 1921px) {
  .drag-slider.wd-nav .ds-nav {
    display: flex;
  }
  .drag-slider.wd-dots .ds-dots {
    display: flex;
  }
  .drag-slider.wd-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.wd-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1920px) {
  .drag-slider.d-nav .ds-nav {
    display: flex;
  }
  .drag-slider.d-dots .ds-dots {
    display: flex;
  }
  .drag-slider.d-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.d-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .drag-slider.tl-nav .ds-nav {
    display: flex;
  }
  .drag-slider.tl-dots .ds-dots {
    display: flex;
  }
  .drag-slider.tl-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.tl-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .drag-slider.t-nav .ds-nav {
    display: flex;
  }
  .drag-slider.t-dots .ds-dots {
    display: flex;
  }
  .drag-slider.t-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.t-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 576px) {
  .drag-slider.m-nav .ds-nav {
    display: flex;
  }
  .drag-slider.m-dots .ds-dots {
    display: flex;
  }
  .drag-slider.m-scroll .ds-track {
    padding: 0 0 8px 0;
  }
  .drag-slider.m-scroll .ds-track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
}

.drag-slider {
  display: grid;
  height: 0;
  opacity: 0;
  align-items: center;
  overflow: hidden;
  grid: auto/auto 1fr auto;
  transition: 0.1s 0.1s;
}
.drag-slider.active {
  height: auto;
  opacity: 1;
}
.drag-slider.scrolling {
  pointer-events: none;
}
.drag-slider .ds-track {
  position: relative;
  display: grid;
  overflow-x: auto;
  overflow-y: hidden;
  width: auto;
  cursor: pointer;
  z-index: 0;
  grid-template-columns: auto;
  grid-auto-columns: unset;
  grid-auto-flow: column;
  grid-column: 2/3;
  gap: 0;
  scrollbar-width: none;
}
.drag-slider .ds-track:before, .drag-slider .ds-track:after {
  display: none;
  content: "";
  grid-row: 1/-1;
  width: 0;
}
.drag-slider .ds-track .ds-item > * {
  box-sizing: border-box;
}
.drag-slider .ds-track .ds-item.hiden {
  display: none;
}
.drag-slider .ds-track::-webkit-scrollbar-track {
  background-color: rgba(133, 133, 133, 0.1);
}
.drag-slider .ds-track::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: rgba(133, 133, 133, 0.1);
}
.drag-slider .ds-track::-webkit-scrollbar-thumb {
  background-color: rgba(133, 133, 133, 0.3);
}
.drag-slider .ds-nav {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.drag-slider .ds-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.drag-slider .ds-nav.blocked {
  opacity: 0.5;
  cursor: not-allowed;
}
.drag-slider .ds-dots {
  display: none;
  justify-content: center;
  margin: 5px 0;
  z-index: 1;
  grid-column: 1/-1;
}
.drag-slider .ds-dots .ds-dot {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  background: linear-gradient(45deg, #321695, #5aff64);
  border: 2px solid #c5c5c5;
  border-radius: 100%;
  cursor: pointer;
}
.drag-slider .ds-dots .ds-dot.active {
  background: linear-gradient(45deg, #9a1d1d, #e2890c);
  border: 2px solid #fffafc;
}
.drag-slider.less .ds-track {
  display: grid;
  justify-content: center;
}
.drag-slider.less .ds-nav, .drag-slider.less .ds-dots {
  display: none !important;
}
.drag-slider.nav-over {
  grid: auto/0 1fr 0;
}
.drag-slider.loop .ds-dots {
  display: none;
}
.drag-slider ~ .drag-slider {
  margin: 2rem 0 0 0;
}
.drag-slider img {
  width: 100%;
  height: auto;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow: auto;
  position: relative;
  height: auto;
  overflow-x: hidden;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

* {
  outline: 0 !important;
}

input:-webkit-autofill, input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 50px #fff;
}

table {
  border-spacing: 0px;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border-radius: 0;
  background: #333333;
  position: relative;
  overflow: hidden;
  border: 1px solid #494949;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 32px 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
  color: #ffffff;
  height: 38px;
  user-select: none;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 38px;
  line-height: 38px;
  color: #ffffff;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
  box-shadow: none;
  background: none;
  min-width: 30px;
}
.selectric .button:after {
  content: "";
  position: absolute;
  top: -5px;
  right: 15px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  line-height: 1;
  border: solid #999999;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 1px;
  transform: rotate(45deg);
}

.selectric-left .label {
  text-align: left;
}

.selectric-right .label {
  text-align: right;
}

.selectric-center .label {
  text-align: center;
}

.selectric-circular .selectric {
  border-radius: 20px;
}
.selectric-circular .selectric-items {
  border-radius: 20px;
}

.selectric-hover .selectric .button {
  color: #e6e6e6;
}
.selectric-hover .selectric .button:after {
  border-top-color: #e6e6e6;
}

.selectric-open {
  z-index: 9;
}
.selectric-open .selectric {
  background: #333333;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333333;
  border: 1px solid #494949;
  border-top: none;
  border-bottom: none;
  z-index: -1;
  box-shadow: 0 5px 10px 0 black;
  transition: 0.2s box-shadow ease;
  overflow-x: hidden;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-items .selectric-scroll::-webkit-scrollbar {
  width: 12px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.selectric-items .selectric-scroll::-webkit-scrollbar-thumb {
  background-color: #FDD835;
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 6px;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  padding: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s all ease;
  border-bottom: 1px solid #494949;
}
.selectric-items li:last-child {
  border-bottom: none;
}
.selectric-items li.highlighted {
  color: #FDD835;
}
.selectric-items li:hover {
  color: #FDD835;
}
.selectric-items li.selected {
  color: #FFBF19;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: auto;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * # Semantic UI 2.4.2 - Flag
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
/*******************************
             Flag
*******************************/
i.flag {
  display: inline-block;
  width: 16px;
  height: 11px;
  line-height: 11px;
  vertical-align: baseline;
  margin: 0em 0.5em 0em 0em;
  text-decoration: inherit;
  speak: none;
  font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Sprite */
i.flag:before {
  display: inline-block;
  content: "";
  background: url("./images/flags.png") no-repeat -108px -1976px;
  width: 16px;
  height: 11px;
}

/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
/*******************************
         Theme Overrides
*******************************/
i.flag.ad:before,
i.flag.andorra:before {
  background-position: 0px 0px;
}

i.flag.ae:before,
i.flag.united.arab.emirates:before,
i.flag.uae:before {
  background-position: 0px -26px;
}

i.flag.af:before,
i.flag.afghanistan:before {
  background-position: 0px -52px;
}

i.flag.ag:before,
i.flag.antigua:before {
  background-position: 0px -78px;
}

i.flag.ai:before,
i.flag.anguilla:before {
  background-position: 0px -104px;
}

i.flag.al:before,
i.flag.albania:before {
  background-position: 0px -130px;
}

i.flag.am:before,
i.flag.armenia:before {
  background-position: 0px -156px;
}

i.flag.an:before,
i.flag.netherlands.antilles:before {
  background-position: 0px -182px;
}

i.flag.ao:before,
i.flag.angola:before {
  background-position: 0px -208px;
}

i.flag.ar:before,
i.flag.argentina:before {
  background-position: 0px -234px;
}

i.flag.as:before,
i.flag.american.samoa:before {
  background-position: 0px -260px;
}

i.flag.at:before,
i.flag.austria:before {
  background-position: 0px -286px;
}

i.flag.au:before,
i.flag.australia:before {
  background-position: 0px -312px;
}

i.flag.aw:before,
i.flag.aruba:before {
  background-position: 0px -338px;
}

i.flag.ax:before,
i.flag.aland.islands:before {
  background-position: 0px -364px;
}

i.flag.az:before,
i.flag.azerbaijan:before {
  background-position: 0px -390px;
}

i.flag.ba:before,
i.flag.bosnia:before {
  background-position: 0px -416px;
}

i.flag.bb:before,
i.flag.barbados:before {
  background-position: 0px -442px;
}

i.flag.bd:before,
i.flag.bangladesh:before {
  background-position: 0px -468px;
}

i.flag.be:before,
i.flag.belgium:before {
  background-position: 0px -494px;
}

i.flag.bf:before,
i.flag.burkina.faso:before {
  background-position: 0px -520px;
}

i.flag.bg:before,
i.flag.bulgaria:before {
  background-position: 0px -546px;
}

i.flag.bh:before,
i.flag.bahrain:before {
  background-position: 0px -572px;
}

i.flag.bi:before,
i.flag.burundi:before {
  background-position: 0px -598px;
}

i.flag.bj:before,
i.flag.benin:before {
  background-position: 0px -624px;
}

i.flag.bm:before,
i.flag.bermuda:before {
  background-position: 0px -650px;
}

i.flag.bn:before,
i.flag.brunei:before {
  background-position: 0px -676px;
}

i.flag.bo:before,
i.flag.bolivia:before {
  background-position: 0px -702px;
}

i.flag.br:before,
i.flag.brazil:before {
  background-position: 0px -728px;
}

i.flag.bs:before,
i.flag.bahamas:before {
  background-position: 0px -754px;
}

i.flag.bt:before,
i.flag.bhutan:before {
  background-position: 0px -780px;
}

i.flag.bv:before,
i.flag.bouvet.island:before {
  background-position: 0px -806px;
}

i.flag.bw:before,
i.flag.botswana:before {
  background-position: 0px -832px;
}

i.flag.by:before,
i.flag.belarus:before {
  background-position: 0px -858px;
}

i.flag.bz:before,
i.flag.belize:before {
  background-position: 0px -884px;
}

i.flag.ca:before,
i.flag.canada:before {
  background-position: 0px -910px;
}

i.flag.cc:before,
i.flag.cocos.islands:before {
  background-position: 0px -962px;
}

i.flag.cd:before,
i.flag.congo:before {
  background-position: 0px -988px;
}

i.flag.cf:before,
i.flag.central.african.republic:before {
  background-position: 0px -1014px;
}

i.flag.cg:before,
i.flag.congo.brazzaville:before {
  background-position: 0px -1040px;
}

i.flag.ch:before,
i.flag.switzerland:before {
  background-position: 0px -1066px;
}

i.flag.ci:before,
i.flag.cote.divoire:before {
  background-position: 0px -1092px;
}

i.flag.ck:before,
i.flag.cook.islands:before {
  background-position: 0px -1118px;
}

i.flag.cl:before,
i.flag.chile:before {
  background-position: 0px -1144px;
}

i.flag.cm:before,
i.flag.cameroon:before {
  background-position: 0px -1170px;
}

i.flag.cn:before,
i.flag.china:before {
  background-position: 0px -1196px;
}

i.flag.co:before,
i.flag.colombia:before {
  background-position: 0px -1222px;
}

i.flag.cr:before,
i.flag.costa.rica:before {
  background-position: 0px -1248px;
}

i.flag.cs:before,
i.flag.serbia:before {
  background-position: 0px -1274px;
}

i.flag.cu:before,
i.flag.cuba:before {
  background-position: 0px -1300px;
}

i.flag.cv:before,
i.flag.cape.verde:before {
  background-position: 0px -1326px;
}

i.flag.cx:before,
i.flag.christmas.island:before {
  background-position: 0px -1352px;
}

i.flag.cy:before,
i.flag.cyprus:before {
  background-position: 0px -1378px;
}

i.flag.cz:before,
i.flag.czech.republic:before {
  background-position: 0px -1404px;
}

i.flag.de:before,
i.flag.germany:before {
  background-position: 0px -1430px;
}

i.flag.dj:before,
i.flag.djibouti:before {
  background-position: 0px -1456px;
}

i.flag.dk:before,
i.flag.denmark:before {
  background-position: 0px -1482px;
}

i.flag.dm:before,
i.flag.dominica:before {
  background-position: 0px -1508px;
}

i.flag.do:before,
i.flag.dominican.republic:before {
  background-position: 0px -1534px;
}

i.flag.dz:before,
i.flag.algeria:before {
  background-position: 0px -1560px;
}

i.flag.ec:before,
i.flag.ecuador:before {
  background-position: 0px -1586px;
}

i.flag.ee:before,
i.flag.estonia:before {
  background-position: 0px -1612px;
}

i.flag.eg:before,
i.flag.egypt:before {
  background-position: 0px -1638px;
}

i.flag.eh:before,
i.flag.western.sahara:before {
  background-position: 0px -1664px;
}

i.flag.gb.eng:before,
i.flag.england:before {
  background-position: 0px -1690px;
}

i.flag.er:before,
i.flag.eritrea:before {
  background-position: 0px -1716px;
}

i.flag.es:before,
i.flag.spain:before {
  background-position: 0px -1742px;
}

i.flag.et:before,
i.flag.ethiopia:before {
  background-position: 0px -1768px;
}

i.flag.eu:before,
i.flag.european.union:before {
  background-position: 0px -1794px;
}

i.flag.fi:before,
i.flag.finland:before {
  background-position: 0px -1846px;
}

i.flag.fj:before,
i.flag.fiji:before {
  background-position: 0px -1872px;
}

i.flag.fk:before,
i.flag.falkland.islands:before {
  background-position: 0px -1898px;
}

i.flag.fm:before,
i.flag.micronesia:before {
  background-position: 0px -1924px;
}

i.flag.fo:before,
i.flag.faroe.islands:before {
  background-position: 0px -1950px;
}

i.flag.fr:before,
i.flag.france:before {
  background-position: 0px -1976px;
}

i.flag.ga:before,
i.flag.gabon:before {
  background-position: -36px 0px;
}

i.flag.gb:before,
i.flag.uk:before,
i.flag.united.kingdom:before {
  background-position: -36px -26px;
}

i.flag.gd:before,
i.flag.grenada:before {
  background-position: -36px -52px;
}

i.flag.ge:before,
i.flag.georgia:before {
  background-position: -36px -78px;
}

i.flag.gf:before,
i.flag.french.guiana:before {
  background-position: -36px -104px;
}

i.flag.gh:before,
i.flag.ghana:before {
  background-position: -36px -130px;
}

i.flag.gi:before,
i.flag.gibraltar:before {
  background-position: -36px -156px;
}

i.flag.gl:before,
i.flag.greenland:before {
  background-position: -36px -182px;
}

i.flag.gm:before,
i.flag.gambia:before {
  background-position: -36px -208px;
}

i.flag.gn:before,
i.flag.guinea:before {
  background-position: -36px -234px;
}

i.flag.gp:before,
i.flag.guadeloupe:before {
  background-position: -36px -260px;
}

i.flag.gq:before,
i.flag.equatorial.guinea:before {
  background-position: -36px -286px;
}

i.flag.gr:before,
i.flag.greece:before {
  background-position: -36px -312px;
}

i.flag.gs:before,
i.flag.sandwich.islands:before {
  background-position: -36px -338px;
}

i.flag.gt:before,
i.flag.guatemala:before {
  background-position: -36px -364px;
}

i.flag.gu:before,
i.flag.guam:before {
  background-position: -36px -390px;
}

i.flag.gw:before,
i.flag.guinea-bissau:before {
  background-position: -36px -416px;
}

i.flag.gy:before,
i.flag.guyana:before {
  background-position: -36px -442px;
}

i.flag.hk:before,
i.flag.hong.kong:before {
  background-position: -36px -468px;
}

i.flag.hm:before,
i.flag.heard.island:before {
  background-position: -36px -494px;
}

i.flag.hn:before,
i.flag.honduras:before {
  background-position: -36px -520px;
}

i.flag.hr:before,
i.flag.croatia:before {
  background-position: -36px -546px;
}

i.flag.ht:before,
i.flag.haiti:before {
  background-position: -36px -572px;
}

i.flag.hu:before,
i.flag.hungary:before {
  background-position: -36px -598px;
}

i.flag.id:before,
i.flag.indonesia:before {
  background-position: -36px -624px;
}

i.flag.ie:before,
i.flag.ireland:before {
  background-position: -36px -650px;
}

i.flag.il:before,
i.flag.israel:before {
  background-position: -36px -676px;
}

i.flag.in:before,
i.flag.india:before {
  background-position: -36px -702px;
}

i.flag.io:before,
i.flag.indian.ocean.territory:before {
  background-position: -36px -728px;
}

i.flag.iq:before,
i.flag.iraq:before {
  background-position: -36px -754px;
}

i.flag.ir:before,
i.flag.iran:before {
  background-position: -36px -780px;
}

i.flag.is:before,
i.flag.iceland:before {
  background-position: -36px -806px;
}

i.flag.it:before,
i.flag.italy:before {
  background-position: -36px -832px;
}

i.flag.jm:before,
i.flag.jamaica:before {
  background-position: -36px -858px;
}

i.flag.jo:before,
i.flag.jordan:before {
  background-position: -36px -884px;
}

i.flag.jp:before,
i.flag.japan:before {
  background-position: -36px -910px;
}

i.flag.ke:before,
i.flag.kenya:before {
  background-position: -36px -936px;
}

i.flag.kg:before,
i.flag.kyrgyzstan:before {
  background-position: -36px -962px;
}

i.flag.kh:before,
i.flag.cambodia:before {
  background-position: -36px -988px;
}

i.flag.ki:before,
i.flag.kiribati:before {
  background-position: -36px -1014px;
}

i.flag.km:before,
i.flag.comoros:before {
  background-position: -36px -1040px;
}

i.flag.kn:before,
i.flag.saint.kitts.and.nevis:before {
  background-position: -36px -1066px;
}

i.flag.kp:before,
i.flag.north.korea:before {
  background-position: -36px -1092px;
}

i.flag.kr:before,
i.flag.south.korea:before {
  background-position: -36px -1118px;
}

i.flag.kw:before,
i.flag.kuwait:before {
  background-position: -36px -1144px;
}

i.flag.ky:before,
i.flag.cayman.islands:before {
  background-position: -36px -1170px;
}

i.flag.kz:before,
i.flag.kazakhstan:before {
  background-position: -36px -1196px;
}

i.flag.la:before,
i.flag.laos:before {
  background-position: -36px -1222px;
}

i.flag.lb:before,
i.flag.lebanon:before {
  background-position: -36px -1248px;
}

i.flag.lc:before,
i.flag.saint.lucia:before {
  background-position: -36px -1274px;
}

i.flag.li:before,
i.flag.liechtenstein:before {
  background-position: -36px -1300px;
}

i.flag.lk:before,
i.flag.sri.lanka:before {
  background-position: -36px -1326px;
}

i.flag.lr:before,
i.flag.liberia:before {
  background-position: -36px -1352px;
}

i.flag.ls:before,
i.flag.lesotho:before {
  background-position: -36px -1378px;
}

i.flag.lt:before,
i.flag.lithuania:before {
  background-position: -36px -1404px;
}

i.flag.lu:before,
i.flag.luxembourg:before {
  background-position: -36px -1430px;
}

i.flag.lv:before,
i.flag.latvia:before {
  background-position: -36px -1456px;
}

i.flag.ly:before,
i.flag.libya:before {
  background-position: -36px -1482px;
}

i.flag.ma:before,
i.flag.morocco:before {
  background-position: -36px -1508px;
}

i.flag.mc:before,
i.flag.monaco:before {
  background-position: -36px -1534px;
}

i.flag.md:before,
i.flag.moldova:before {
  background-position: -36px -1560px;
}

i.flag.me:before,
i.flag.montenegro:before {
  background-position: -36px -1586px;
}

i.flag.mg:before,
i.flag.madagascar:before {
  background-position: -36px -1613px;
}

i.flag.mh:before,
i.flag.marshall.islands:before {
  background-position: -36px -1639px;
}

i.flag.mk:before,
i.flag.macedonia:before {
  background-position: -36px -1665px;
}

i.flag.ml:before,
i.flag.mali:before {
  background-position: -36px -1691px;
}

i.flag.mm:before,
i.flag.myanmar:before,
i.flag.burma:before {
  background-position: -73px -1821px;
}

i.flag.mn:before,
i.flag.mongolia:before {
  background-position: -36px -1743px;
}

i.flag.mo:before,
i.flag.macau:before {
  background-position: -36px -1769px;
}

i.flag.mp:before,
i.flag.northern.mariana.islands:before {
  background-position: -36px -1795px;
}

i.flag.mq:before,
i.flag.martinique:before {
  background-position: -36px -1821px;
}

i.flag.mr:before,
i.flag.mauritania:before {
  background-position: -36px -1847px;
}

i.flag.ms:before,
i.flag.montserrat:before {
  background-position: -36px -1873px;
}

i.flag.mt:before,
i.flag.malta:before {
  background-position: -36px -1899px;
}

i.flag.mu:before,
i.flag.mauritius:before {
  background-position: -36px -1925px;
}

i.flag.mv:before,
i.flag.maldives:before {
  background-position: -36px -1951px;
}

i.flag.mw:before,
i.flag.malawi:before {
  background-position: -36px -1977px;
}

i.flag.mx:before,
i.flag.mexico:before {
  background-position: -72px 0px;
}

i.flag.my:before,
i.flag.malaysia:before {
  background-position: -72px -26px;
}

i.flag.mz:before,
i.flag.mozambique:before {
  background-position: -72px -52px;
}

i.flag.na:before,
i.flag.namibia:before {
  background-position: -72px -78px;
}

i.flag.nc:before,
i.flag.new.caledonia:before {
  background-position: -72px -104px;
}

i.flag.ne:before,
i.flag.niger:before {
  background-position: -72px -130px;
}

i.flag.nf:before,
i.flag.norfolk.island:before {
  background-position: -72px -156px;
}

i.flag.ng:before,
i.flag.nigeria:before {
  background-position: -72px -182px;
}

i.flag.ni:before,
i.flag.nicaragua:before {
  background-position: -72px -208px;
}

i.flag.nl:before,
i.flag.netherlands:before {
  background-position: -72px -234px;
}

i.flag.no:before,
i.flag.norway:before {
  background-position: -72px -260px;
}

i.flag.np:before,
i.flag.nepal:before {
  background-position: -72px -286px;
}

i.flag.nr:before,
i.flag.nauru:before {
  background-position: -72px -312px;
}

i.flag.nu:before,
i.flag.niue:before {
  background-position: -72px -338px;
}

i.flag.nz:before,
i.flag.new.zealand:before {
  background-position: -72px -364px;
}

i.flag.om:before,
i.flag.oman:before {
  background-position: -72px -390px;
}

i.flag.pa:before,
i.flag.panama:before {
  background-position: -72px -416px;
}

i.flag.pe:before,
i.flag.peru:before {
  background-position: -72px -442px;
}

i.flag.pf:before,
i.flag.french.polynesia:before {
  background-position: -72px -468px;
}

i.flag.pg:before,
i.flag.new.guinea:before {
  background-position: -72px -494px;
}

i.flag.ph:before,
i.flag.philippines:before {
  background-position: -72px -520px;
}

i.flag.pk:before,
i.flag.pakistan:before {
  background-position: -72px -546px;
}

i.flag.pl:before,
i.flag.poland:before {
  background-position: -72px -572px;
}

i.flag.pm:before,
i.flag.saint.pierre:before {
  background-position: -72px -598px;
}

i.flag.pn:before,
i.flag.pitcairn.islands:before {
  background-position: -72px -624px;
}

i.flag.pr:before,
i.flag.puerto.rico:before {
  background-position: -72px -650px;
}

i.flag.ps:before,
i.flag.palestine:before {
  background-position: -72px -676px;
}

i.flag.pt:before,
i.flag.portugal:before {
  background-position: -72px -702px;
}

i.flag.pw:before,
i.flag.palau:before {
  background-position: -72px -728px;
}

i.flag.py:before,
i.flag.paraguay:before {
  background-position: -72px -754px;
}

i.flag.qa:before,
i.flag.qatar:before {
  background-position: -72px -780px;
}

i.flag.re:before,
i.flag.reunion:before {
  background-position: -72px -806px;
}

i.flag.ro:before,
i.flag.romania:before {
  background-position: -72px -832px;
}

i.flag.rs:before,
i.flag.serbia:before {
  background-position: -72px -858px;
}

i.flag.ru:before,
i.flag.russia:before {
  background-position: -72px -884px;
}

i.flag.rw:before,
i.flag.rwanda:before {
  background-position: -72px -910px;
}

i.flag.sa:before,
i.flag.saudi.arabia:before {
  background-position: -72px -936px;
}

i.flag.sb:before,
i.flag.solomon.islands:before {
  background-position: -72px -962px;
}

i.flag.sc:before,
i.flag.seychelles:before {
  background-position: -72px -988px;
}

i.flag.gb.sct:before,
i.flag.scotland:before {
  background-position: -72px -1014px;
}

i.flag.sd:before,
i.flag.sudan:before {
  background-position: -72px -1040px;
}

i.flag.se:before,
i.flag.sweden:before {
  background-position: -72px -1066px;
}

i.flag.sg:before,
i.flag.singapore:before {
  background-position: -72px -1092px;
}

i.flag.sh:before,
i.flag.saint.helena:before {
  background-position: -72px -1118px;
}

i.flag.si:before,
i.flag.slovenia:before {
  background-position: -72px -1144px;
}

i.flag.sj:before,
i.flag.svalbard:before,
i.flag.jan.mayen:before {
  background-position: -72px -1170px;
}

i.flag.sk:before,
i.flag.slovakia:before {
  background-position: -72px -1196px;
}

i.flag.sl:before,
i.flag.sierra.leone:before {
  background-position: -72px -1222px;
}

i.flag.sm:before,
i.flag.san.marino:before {
  background-position: -72px -1248px;
}

i.flag.sn:before,
i.flag.senegal:before {
  background-position: -72px -1274px;
}

i.flag.so:before,
i.flag.somalia:before {
  background-position: -72px -1300px;
}

i.flag.sr:before,
i.flag.suriname:before {
  background-position: -72px -1326px;
}

i.flag.st:before,
i.flag.sao.tome:before {
  background-position: -72px -1352px;
}

i.flag.sv:before,
i.flag.el.salvador:before {
  background-position: -72px -1378px;
}

i.flag.sy:before,
i.flag.syria:before {
  background-position: -72px -1404px;
}

i.flag.sz:before,
i.flag.swaziland:before {
  background-position: -72px -1430px;
}

i.flag.tc:before,
i.flag.caicos.islands:before {
  background-position: -72px -1456px;
}

i.flag.td:before,
i.flag.chad:before {
  background-position: -72px -1482px;
}

i.flag.tf:before,
i.flag.french.territories:before {
  background-position: -72px -1508px;
}

i.flag.tg:before,
i.flag.togo:before {
  background-position: -72px -1534px;
}

i.flag.th:before,
i.flag.thailand:before {
  background-position: -72px -1560px;
}

i.flag.tj:before,
i.flag.tajikistan:before {
  background-position: -72px -1586px;
}

i.flag.tk:before,
i.flag.tokelau:before {
  background-position: -72px -1612px;
}

i.flag.tl:before,
i.flag.timorleste:before {
  background-position: -72px -1638px;
}

i.flag.tm:before,
i.flag.turkmenistan:before {
  background-position: -72px -1664px;
}

i.flag.tn:before,
i.flag.tunisia:before {
  background-position: -72px -1690px;
}

i.flag.to:before,
i.flag.tonga:before {
  background-position: -72px -1716px;
}

i.flag.tr:before,
i.flag.turkey:before {
  background-position: -72px -1742px;
}

i.flag.tt:before,
i.flag.trinidad:before {
  background-position: -72px -1768px;
}

i.flag.tv:before,
i.flag.tuvalu:before {
  background-position: -72px -1794px;
}

i.flag.tw:before,
i.flag.taiwan:before {
  background-position: -72px -1820px;
}

i.flag.tz:before,
i.flag.tanzania:before {
  background-position: -72px -1846px;
}

i.flag.ua:before,
i.flag.ukraine:before {
  background-position: -72px -1872px;
}

i.flag.ug:before,
i.flag.uganda:before {
  background-position: -72px -1898px;
}

i.flag.um:before,
i.flag.us.minor.islands:before {
  background-position: -72px -1924px;
}

i.flag.us:before,
i.flag.america:before,
i.flag.united.states:before {
  background-position: -72px -1950px;
}

i.flag.uy:before,
i.flag.uruguay:before {
  background-position: -72px -1976px;
}

i.flag.uz:before,
i.flag.uzbekistan:before {
  background-position: -108px 0px;
}

i.flag.va:before,
i.flag.vatican.city:before {
  background-position: -108px -26px;
}

i.flag.vc:before,
i.flag.saint.vincent:before {
  background-position: -108px -52px;
}

i.flag.ve:before,
i.flag.venezuela:before {
  background-position: -108px -78px;
}

i.flag.vg:before,
i.flag.british.virgin.islands:before {
  background-position: -108px -104px;
}

i.flag.vi:before,
i.flag.us.virgin.islands:before {
  background-position: -108px -130px;
}

i.flag.vn:before,
i.flag.vietnam:before {
  background-position: -108px -156px;
}

i.flag.vu:before,
i.flag.vanuatu:before {
  background-position: -108px -182px;
}

i.flag.gb.wls:before,
i.flag.wales:before {
  background-position: -108px -208px;
}

i.flag.wf:before,
i.flag.wallis.and.futuna:before {
  background-position: -108px -234px;
}

i.flag.ws:before,
i.flag.samoa:before {
  background-position: -108px -260px;
}

i.flag.ye:before,
i.flag.yemen:before {
  background-position: -108px -286px;
}

i.flag.yt:before,
i.flag.mayotte:before {
  background-position: -108px -312px;
}

i.flag.za:before,
i.flag.south.africa:before {
  background-position: -108px -338px;
}

i.flag.zm:before,
i.flag.zambia:before {
  background-position: -108px -364px;
}

i.flag.zw:before,
i.flag.zimbabwe:before {
  background-position: -108px -390px;
}

/*******************************
         Site Overrides
*******************************/
.active_bonus_bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.active_bonus_bar .bonus_image {
  display: block;
  width: 60px;
}
.active_bonus_bar .bonus_image img {
  display: block;
  width: 100%;
  max-width: 60px;
}
.active_bonus_bar .bonus_progress_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.active_bonus_bar .bonus_progress_wrap .bonus_progress_title {
  font-size: 16px;
  color: #999999;
  display: block;
}
.active_bonus_bar .bonus_progress_wrap .progress_wrap {
  width: 100%;
}
.active_bonus_bar .bonus_progress_wrap .progress_wrap .progress {
  width: 100%;
  height: 5px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #444444;
}
.active_bonus_bar .bonus_progress_wrap .progress_wrap .progress .progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #FFFFFF;
}
.active_bonus_bar .bonus_progress_wrap .progress_wrap .progress .progress-bar.animate {
  transition: 0.2s background-color ease;
  background-color: #009688;
}
.active_bonus_bar .bonus_progress_wrap .tooltip_wrap {
  display: none;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear-arrow {
  0% {
    opacity: 0;
    transform: translate(-10%, -10%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0%) rotate(45deg);
  }
}
@keyframes blink2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes appear-delay {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }
  50% {
    opacity: 0;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes progress2 {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.bonuses_gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 0;
}
.bonuses_gallery > .item {
  display: block;
  width: 100%;
  padding: 10px;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery > .item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.bonuses_gallery > .item .bonus_wrap {
  color: #999999;
  border: 1px solid #333333;
  border-radius: 20px;
  height: 100%;
  padding: 40px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: 0.2s all ease;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery > .item .bonus_wrap {
    padding: 20px;
  }
}
.bonuses_gallery > .item .bonus_wrap:hover {
  border-color: #007d71;
}
.bonuses_gallery > .item .bonus_wrap.active {
  background: #132927;
  border-color: #007d71;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery > .item .bonus_wrap {
    flex-direction: column;
  }
}
.bonuses_gallery > .item .bonus_wrap .bonus_about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s opacity ease;
  background: #1e1e1e;
  color: #FFFFFF;
  padding: 40px 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery > .item .bonus_wrap .bonus_about {
    padding: 20px 20px;
  }
}
.bonuses_gallery > .item .bonus_wrap .bonus_about .close_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  font-size: 12px;
  cursor: pointer;
  color: #999999;
  transition: 0.2s all ease;
}
.bonuses_gallery > .item .bonus_wrap .bonus_about .close_button:hover {
  color: #FFFFFF;
}
.bonuses_gallery > .item .bonus_wrap .bonus_about .bonus_description {
  margin: auto;
}
.bonuses_gallery > .item .bonus_wrap.show_about .bonus_about {
  visibility: visible;
  opacity: 1;
  z-index: unset;
}
.bonuses_gallery .bonus_image {
  width: 200px;
  max-width: 200px;
  padding: 0;
  margin: 0;
}
.bonuses_gallery .bonus_image > img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.bonuses_gallery .bonus_other {
  flex: 1;
  padding-left: 20px;
  align-self: start;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery .bonus_other {
    padding-left: 0;
  }
}
.bonuses_gallery .bonus_title {
  color: #FDD835;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  margin: 14px 0;
}
.bonuses_gallery .bonus_about_button {
  text-align: center;
  margin: 5px 0;
}
.bonuses_gallery .bonus_about_button > .link_button {
  color: #999999;
}
.bonuses_gallery .bonus_actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  margin: 14px 0;
}
.bonuses_gallery .bonus_actions > .column {
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery .bonus_actions {
    flex-direction: column;
    align-items: center;
  }
  .bonuses_gallery .bonus_actions > .column {
    margin-bottom: 20px;
  }
}
.bonuses_gallery .bonus_actions > .column:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 576px) {
  .bonuses_gallery .bonus_actions > .column:not(:first-child) {
    margin-left: 0;
  }
}
.bonuses_gallery .active_bonus_bar {
  margin: 12px 0;
  text-align: center;
}
.bonuses_gallery .active_bonus_bar .bonus_progress_wrap {
  margin: 0 auto;
  max-width: 200px;
}
.bonuses_gallery .active_bonus_bar .bonus_progress_wrap .bonus_progress_title {
  margin: 0 auto;
}
.bonuses_gallery .bonus_timer {
  margin: 14px 0;
}
.bonuses_gallery .bonus_timer .timer__title {
  text-transform: none;
  color: #999999;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  margin: 0 0 2px 0;
}
.bonuses_gallery .bonus_timer .timer__body {
  color: #999999;
  font-size: 24px;
  margin: 0;
}
.bonuses_gallery .bonus_timer .timer__labels {
  text-transform: none;
  color: #999999;
  font-size: 12px;
  margin: 0;
}
.bonuses_gallery .bonus_description {
  margin: 14px 0;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #999999;
}
.bonuses_gallery .bonus_error {
  color: #F44336;
  font-size: 12px;
  line-height: 12px;
  margin: 8px 0 0 0;
}

.button {
  background: #333333;
  color: #FFFFFF;
  font-family: "LatoWeb", Arial, "ALS Rubl", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0 1em;
  margin: 0;
  min-width: 130px;
  border: none;
  display: inline-block;
  transition: 0.2s all ease;
  white-space: nowrap;
  user-select: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-shadow: none;
  box-shadow: none;
  position: relative;
}
.button:hover {
  background-color: #383838;
}
.button.small {
  font-size: 14px;
  line-height: 30px;
  height: 30px;
}
.button.big {
  font-size: 18px;
  line-height: 50px;
  height: 50px;
}
.button.primary {
  background: #FDD835;
  color: #222222;
}
.button.primary:hover, .button.primary:active, .button.primary:focus {
  background-color: #fee268;
}
.button.secondary {
  background: #009688;
  color: #FFFFFF;
}
.button.secondary:hover, .button.secondary:active, .button.secondary:focus {
  background-color: #00c9b6;
}
.button.fluid {
  display: block;
  width: 100%;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.button.no-bold {
  font-weight: 400;
}
.button.loading {
  color: transparent !important;
  position: relative;
  cursor: default;
  text-shadow: none !important;
  pointer-events: none !important;
  transition: all 0s linear, opacity 0.1s ease;
}
.button.loading:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0 0 -0.64285714em;
  width: 1em;
  height: 1em;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.15);
}
.button.loading:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0 0 -0.64285714em;
  width: 1em;
  height: 1em;
  -webkit-animation: button-spin 0.6s linear;
  animation: button-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: rgba(253, 216, 53, 0.75) transparent transparent;
  border-style: solid;
  border-width: 0.2em;
  -webkit-box-shadow: 0 0 0 1px transparent;
  box-shadow: 0 0 0 1px transparent;
}
.button:disabled, .button.disabled {
  cursor: default;
  opacity: 0.5;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
}
.button.label {
  cursor: default;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
}
.button.compact {
  display: inline-block;
  width: auto;
  min-width: auto;
  padding-left: 1em;
  padding-right: 1em;
}
.button.file_select_button {
  max-width: 250px;
  line-height: 44px;
}
.button .icon {
  font-size: 1em;
  position: relative;
}
.button .icon > i {
  vertical-align: middle;
}
.button .important {
  position: absolute;
  background: linear-gradient(180deg, red, #7b0000);
  border: 1px solid #a50000;
  border-radius: 50%;
  top: 0;
  right: 0;
  padding: 6px;
  transform: translate(50%, -45%);
}

.link_button, .sign-up-form__link {
  color: #999999;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  transition: 0.2s all ease;
  cursor: pointer;
}
.link_button:hover, .link_button:focus, .sign-up-form__link:hover, .sign-up-form__link:focus {
  color: #FDD835;
}
.link_button:disabled, .link_button.disabled, .sign-up-form__link:disabled, .sign-up-form__link.disabled {
  cursor: default;
  opacity: 0.5;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

@-webkit-keyframes button-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes button-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.card-list {
  padding: 30px 0 0;
}
.card-list .card-list__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.card-list .card-list__tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 150px;
  margin: 5px;
  padding: 0 10px;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 25px;
  color: #FFFFFF;
  transition: 180ms ease;
  -webkit-tap-highlight-color: transparent;
}
.card-list .card-list__tabs .tab:hover, .card-list .card-list__tabs .tab:focus {
  color: #1E1E1E;
  border-color: #FDD835;
  background-color: #FDD835;
}
.card-list .card-list__tabs .tab.active {
  color: #FDD835;
  border-color: #FDD835;
}
.card-list .card-list__tabs .tab.active:hover, .card-list .card-list__tabs .tab.active:focus {
  color: #1E1E1E;
}
.card-list .card-list__tabs .tab:not(:first-child) {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .card-list .card-list__tabs {
    margin-bottom: 10px;
  }
}
.card-list .container {
  max-width: 1380px;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.card-list .card-list__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 0;
}
.card-list .card-list__content .card-holder {
  width: 50%;
  max-width: 660px;
  margin: 0 0 40px;
  padding: 0 15px;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card-list__content .card-holder {
    margin: 0 0 15px;
    padding: 5px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card-list__content .card-holder {
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .card-list .card-list__content .card-holder {
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card-list__content {
    justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card-list__content {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .card-list .card-list__content {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }
}
.card-list .card-list__content > .no-activities {
  margin: 40px auto 50px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card-list__content > .no-activities {
    margin: 25px auto 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .card-list .card-list__content > .no-activities {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1400px) {
  .card-list .card-list__content > .no-activities {
    margin: 0 auto;
  }
}
.card-list .card {
  height: 100%;
  background-color: #282828;
  transition: 180ms ease;
}
.card-list .card.active .card__img .status_holder:before, .card-list .card.active .card__img .status_holder:after {
  border-bottom-color: #255524;
  border-left-color: #255524;
}
.card-list .card.active .card__img .status_holder .status {
  background-color: #009688;
}
.card-list .card.finished .card__img > img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.card-list .card.finished .card__img .status_holder:before, .card-list .card.finished .card__img .status_holder:after {
  border-bottom-color: #662722;
  border-left-color: #662722;
}
.card-list .card.finished .card__img .status_holder .status {
  background-color: #F44336;
}
.card-list .card.finished .card__body {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.card-list .card.pending .card__img .status_holder:before, .card-list .card.pending .card__img .status_holder:after {
  border-bottom-color: #285283;
  border-left-color: #285283;
}
.card-list .card.pending .card__img .status_holder .status {
  background-color: #2187FF;
}
.card-list .card .card__img {
  position: relative;
  width: 100%;
}
.card-list .card .card__img .image_holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .card-list .card .card__img .image_holder {
    height: unset;
  }
}
.card-list .card .card__img img {
  height: 100%;
  width: auto;
}
@media only screen and (max-width: 576px) {
  .card-list .card .card__img img {
    height: unset;
    width: 100%;
  }
}
.card-list .card .card__img .status_holder {
  position: absolute;
  top: -5px;
  right: -5px;
  height: 110px;
  width: 110px;
  overflow: hidden;
}
.card-list .card .card__img .status_holder:before, .card-list .card .card__img .status_holder:after {
  content: "";
  position: absolute;
  border-width: 3px;
  border-style: solid;
  border-bottom-color: #255524;
  border-left-color: #255524;
}
.card-list .card .card__img .status_holder:before {
  top: -1px;
  left: 8px;
}
.card-list .card .card__img .status_holder:after {
  right: -1px;
  bottom: 8px;
}
.card-list .card .card__img .status_holder .status {
  position: absolute;
  top: 21px;
  right: -62px;
  display: flex;
  height: 36px;
  width: 200px;
  background-color: #009688;
  z-index: 2;
  transform: rotate(45deg);
}
.card-list .card .card__img .status_holder .status .text {
  display: block;
  margin: auto;
  text-transform: uppercase;
  font-size: 12px;
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.card-list .card .card__body {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 10px 20px 15px;
}
.card-list .card .card__body .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: max-content;
  text-align: center;
}
.card-list .card .card__body .info .card__type {
  font-size: 18px;
  color: #FFFFFF;
}
.card-list .card .card__body .info .card__title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
  color: #FDD835;
}
.card-list .card .card__body .info .prizepool {
  margin-bottom: 15px;
  color: #FFFFFF;
}
.card-list .card .card__body .info .prizepool .prizepool__label {
  font-weight: 300;
  font-size: 18px;
}
.card-list .card .card__body .info .prizepool .prizepool__amount {
  font-weight: 600;
  font-size: 40px;
  color: #FDD835;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card .card__body .info .prizepool .prizepool__amount {
    font-size: 32px;
  }
}
@media screen and (width: 768px) {
  .card-list .card .card__body .info .prizepool .prizepool__amount {
    font-size: 38px;
  }
}
.card-list .card .card__body .timer {
  margin: 0 0 15px;
  line-height: 1;
  color: #FFFFFF;
}
.card-list .card .card__body .timer .timer__label {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 13px;
}
.card-list .card .card__body .timer .timer__digits {
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.card-list .card .card__body .timer .timer__digits > span {
  display: inline-block;
  width: 25px;
  margin: 0 4px;
  text-align: center;
}
.card-list .card .card__body .timer .timer__content {
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.card-list .card .card__body .timer .timer__content > span {
  display: inline-block;
  width: 25px;
  margin: 0 4px;
  text-align: center;
}
.card-list .card .card__body .button_wrap {
  margin-top: auto;
  text-align: center;
}
.card-list .card .card__body .prizes {
  width: 160px;
  margin: 0 25px 0 40px;
  text-align: center;
  font-size: 16px;
  color: #FDD835;
}
.card-list .card .card__body .prizes .prizes__label {
  font-weight: 700;
}
.card-list .card .card__body .prizes.prizes_tournaments .image {
  width: 70%;
}
.card-list .card .card__body .prizes.prizes_lotteries .image {
  width: 95%;
}
@media only screen and (max-width: 767px) {
  .card-list .card .card__body .prizes.prizes_lotteries .slick-slide:not(.slick-current) .prize__title {
    height: 1em;
  }
}
.card-list .card .card__body .prizes .prizes__list .prize {
  opacity: 0;
  transition: 180ms ease;
}
.card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px 0 10px;
  border: 5px solid #333333;
  border-radius: 50%;
}
.card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper .number {
  margin-bottom: -10px;
  font-weight: 900;
  font-size: 50px;
  color: #FDD835;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper .number {
    font-size: 38px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper .number {
    font-size: 40px;
  }
}
@media screen and (width: 768px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper .number {
    font-size: 40px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper {
    width: 140px;
    height: 140px;
  }
}
@media screen and (width: 768px) {
  .card-list .card .card__body .prizes .prizes__list .prize .prize__wrapper {
    width: 140px;
    height: 140px;
  }
}
.card-list .card .card__body .prizes .prizes__list .prize .prize__title {
  font-weight: 700;
  text-transform: uppercase;
}
.card-list .card .card__body .prizes .prizes__list.slick-initialized .prize {
  opacity: 1;
}
.card-list .card .card__body .prizes .btn-slick {
  position: absolute;
  top: 27%;
  font-size: 21px;
  cursor: pointer;
}
.card-list .card .card__body .prizes .btn-slick.prev {
  left: -25px;
}
.card-list .card .card__body .prizes .btn-slick.next {
  right: -25px;
}
.card-list .card .card__body .prizes .btn-slick .icon {
  display: block;
  line-height: 40px;
  color: #FDD835;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card .card__body .prizes .btn-slick {
    top: 23%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card .card__body .prizes .btn-slick {
    top: 23%;
  }
}
.card-list .card .card__body .prizes .prizes__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.card-list .card .card__body .prizes .prizes__dots li {
  width: 12px;
  height: 12px;
  margin: 4px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #000;
  cursor: pointer;
}
.card-list .card .card__body .prizes .prizes__dots li.slick-active {
  background-color: #FDD835;
}
.card-list .card .card__body .prizes .prizes__dots button {
  visibility: hidden;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .card-list .card .card__body .prizes {
    width: 120px;
    margin: 0 15px 0 25px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .card-list .card .card__body .prizes {
    width: 140px;
    margin: 0 15px 0 25px;
  }
}
@media screen and (width: 768px) {
  .card-list .card .card__body .prizes {
    width: 140px;
    margin: 0 15px 0 25px;
  }
}
@media only screen and (max-width: 576px) {
  .card-list .card .card__body .prizes {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 576px) {
  .card-list .card .card__body {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .card-list {
    padding: 20px 0 0;
  }
}

.cashbox_history {
  display: block;
  width: 100%;
  padding: 0 0;
  color: #999999;
  border-spacing: 0;
}
.cashbox_history table {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  background: none;
  position: relative;
}
.cashbox_history table th {
  font-size: 14px;
  text-transform: none;
  line-height: 17px;
  font-weight: 600;
  padding: 12px;
  text-align: left;
  color: #FFFFFF;
}
.cashbox_history table td {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  padding: 12px;
  text-align: left;
}
.cashbox_history table tbody tr {
  border: 1px solid #3c3c3c;
}
.cashbox_history table .empty {
  text-align: center;
  margin: 0 auto;
}
.cashbox_history .payment_amount {
  text-align: right;
  min-width: 115px;
}
@media only screen and (max-width: 767px) {
  .cashbox_history .payment_amount {
    padding-left: 0;
    min-width: unset;
  }
}
.cashbox_history .payment_status {
  color: #999999;
}
.cashbox_history .payment_status_pending {
  color: #FDD835;
}
.cashbox_history .payment_status_completed {
  color: #009688;
}
.cashbox_history .payment_status_canceled {
  color: #F44336;
}
.cashbox_history .payment_status_chargeback {
  color: #F44336;
}
.cashbox_history .payment_status_failed {
  color: #F44336;
}
.cashbox_history .payment_status_refused {
  color: #F44336;
}
.cashbox_history .payment_status_rejected {
  color: #F44336;
}
@media only screen and (max-width: 767px) {
  .cashbox_history {
    padding: 13px 0;
  }
  .cashbox_history table {
    display: table;
  }
  .cashbox_history table thead {
    display: none;
  }
  .cashbox_history table tbody tr {
    border-left: none;
    border-right: none;
    display: block;
    padding: 20px 20px;
    position: relative;
  }
  .cashbox_history table td {
    font-size: 14px;
    text-align: right;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .cashbox_history table td:before {
    float: left !important;
    content: attr(data-label);
    text-transform: none;
    color: #FFFFFF;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .cashbox_history .cancel_withdraw {
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 0;
    transform: translateY(-50%);
  }
  .cashbox_history .cancel_withdraw:before {
    display: none;
  }
}
.cashbox_history .cancel_withdraw .cancel_withdraw_button {
  right: 0;
  bottom: 0;
  background: none;
  border: none;
  font-size: 30px;
  color: #aaaaaa;
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease all;
}
.cashbox_history .cancel_withdraw .cancel_withdraw_button i {
  display: block;
  color: inherit;
}
.cashbox_history .cancel_withdraw .cancel_withdraw_button:hover {
  color: #FDD835;
}
.cashbox_history .pagination {
  margin: 15px auto;
}

.profile_cashbox {
  max-width: 630px;
  margin: 0 auto;
  padding: 20px 0;
}
.profile_cashbox .cashbox_content {
  color: #999999;
}
.profile_cashbox .player_balance {
  text-align: center;
  display: block;
  margin: 10px 0;
  font-size: 14px;
}
.profile_cashbox .link {
  color: #FDD835;
  text-decoration: underline;
}
.profile_cashbox .link:hover {
  text-decoration: none;
}

.tabmenu_cashbox {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: row;
  height: 36px;
  align-items: center;
  padding: 0 5px;
  margin: 10px auto 30px;
}
.tabmenu_cashbox > .item {
  flex: 1;
  background: none;
  text-align: center;
  height: 100%;
  padding: 0 5px;
  margin: 0;
  border: none;
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .tabmenu_cashbox > .item {
    padding: 0 4px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 420px) {
  .tabmenu_cashbox > .item {
    padding: 0 3px;
    font-size: 11px;
  }
}
.tabmenu_cashbox > .item > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: 700;
  line-height: 36px;
  transition: 0.2s all ease;
  text-transform: none;
  border-radius: 18px;
  color: #999999;
  border: 1px solid #999999;
}
.tabmenu_cashbox > .item.active > a, .tabmenu_cashbox > .item > a:hover {
  color: #FDD835;
  border-color: #FDD835;
}
@media only screen and (max-width: 576px) {
  .tabmenu_cashbox {
    padding: 0 20px;
  }
}

.deposit_tooltip {
  display: block;
  margin: 12px auto;
  text-align: center;
  max-width: 600px;
  padding: 0 10px;
}
.deposit_tooltip .icon {
  font-size: 36px;
  color: #FDD835;
  margin: -10px 0 15px;
}
.deposit_tooltip .icon > i {
  display: block;
}
.deposit_tooltip .header {
  font-size: 14px;
  margin: 5px 0;
}
.deposit_tooltip .text {
  font-size: 14px;
  text-transform: none;
  text-align: center;
  display: flex;
  justify-content: center;
}
.deposit_tooltip .text .profile_button a {
  color: #FDD835;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  transition: 0.2s all ease;
  cursor: pointer;
}
.deposit_tooltip .text .profile_button a:hover {
  text-decoration: none;
}
.deposit_tooltip .text .step_one {
  margin: 5px 0;
  text-align: left;
}
.deposit_tooltip .text .step_two {
  text-align: left;
}
.deposit_tooltip .text .step_two .point span {
  margin-right: 0;
}
.deposit_tooltip .text .number {
  display: inline-block;
  width: 27px;
  height: 27px;
  line-height: 27px;
  margin-right: 8px;
  border-radius: 50%;
  background: #FDD835;
  font-size: 15px;
  color: #1E1E1E;
  text-align: center;
}

.payment__gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}
.payment__gallery.disabled {
  pointer-events: none;
  filter: grayscale(0.95);
}
.payment__gallery .empty {
  margin: 20px 0;
}
.payment__gallery .item {
  box-sizing: border-box;
  position: relative;
  background: none;
  width: 180px;
  height: 140px;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: 0.2s all ease;
  margin: 20px 10px 0 10px;
}
.payment__gallery .item .pay_image {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  height: 100px;
  transition: 0.2s all ease;
}
.payment__gallery .item .pay_image > .image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.payment__gallery .item:hover .pay_image {
  box-shadow: 0 0 0 5px #999999;
}
.payment__gallery .item.active .pay_image {
  box-shadow: 0 0 0 5px #FDD835;
}
.payment__gallery .item .footer {
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #999999;
  background: none;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.payment__gallery .item .footer .text {
  opacity: 0.75;
}
.payment__gallery .item .form {
  display: none;
  opacity: 0;
}
.payment__gallery .item .disabled_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background: rgba(30, 30, 30, 0.9);
  color: #FFFFFF;
  text-align: center;
}
.payment__gallery .item .disabled_overlay .icon {
  display: block;
  font-size: 60px;
  text-align: center;
}
.payment__gallery .item .disabled_overlay .caption {
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}
.payment__gallery .payment__item.item.active:after {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(100% + 0px);
  left: calc(50% - 7px);
  background: #2c2c2c;
  transform: rotate(45deg);
  box-shadow: none;
  z-index: 2;
  border-top: 1px solid #FDD835;
  border-left: 1px solid #FDD835;
  animation: appear-arrow 0.4s ease;
}
.payment__gallery .form.active {
  opacity: 1;
  transition: 0.2s opacity ease;
  width: 100%;
  max-width: 580px;
  border: 1px solid #FDD835;
  border-radius: 10px;
  height: auto;
  margin: 10px 10px 20px 10px;
  color: #999999;
  background: #2c2c2c;
  cursor: default;
  z-index: 1;
  font-size: 1rem;
  animation: appear 0.2s ease;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .payment__gallery .form.active {
    max-width: 80%;
  }
}
.payment__gallery .form.active .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 5px;
}
.payment__gallery .form.active .currency {
  line-height: 40px;
  padding-right: 5px;
}
.payment__gallery .form.active .message.error {
  margin: 10px auto;
  padding: 0 10px;
  color: #F44336;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.payment__gallery .form.active .message.error .icon {
  display: inline;
}
.payment__gallery .form.active .message.error .text {
  display: inline;
}
.payment__gallery .form.active .container {
  display: block;
  width: 100%;
  padding: 10px 10px;
  max-width: 560px;
}
.payment__gallery .form.active .row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 8px 0;
}
.payment__gallery .form.active .row > .column {
  display: block;
  flex: 1;
}
.payment__gallery .form.active .row .column_inputs {
  flex: 1;
  margin-right: -5px;
}
.payment__gallery .form.active .row_submit {
  text-align: center;
}
@media (max-width: 631px) {
  .payment__gallery .form.active {
    max-width: 410px;
  }
  .payment__gallery .form.active > .container {
    padding: 20px 10px;
  }
  .payment__gallery .form.active > .container > .row {
    display: block;
  }
}
@media (max-width: 421px) {
  .payment__gallery .form.active {
    margin-right: 20px;
    margin-left: 20px;
  }
  .payment__gallery .form.active .form-group {
    display: block;
  }
  .payment__gallery .form.active .form-group .control-label {
    display: block;
    width: auto;
  }
}

.categories_menu {
  width: 100%;
  background: #1C1C1C;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.categories_menu .list {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 40px;
  cursor: grab;
}
.categories_menu .list.owl-grab {
  cursor: grabbing;
}
.categories_menu .list .item {
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}
.categories_menu .list .item a {
  color: inherit;
  transition: 0.2s all ease;
  text-decoration: none;
}
.categories_menu .list .item.active {
  color: #FDD835;
}
.categories_menu .list .item:not(.active) a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .categories_menu .list .item a:hover {
    text-decoration: none;
  }
}
.categories_menu .list.slider {
  display: block;
  opacity: 0;
}
.categories_menu .list.slider.owl-loaded {
  opacity: 1;
}
.categories_menu .list.slider .item {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .categories_menu .list.slider {
    display: flex;
    padding: 0 25px;
  }
  .categories_menu .list.slider.owl-loaded {
    opacity: 1;
    transition: 0.2s all ease;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .categories_menu .list.slider {
    display: flex;
    padding: 0 25px;
  }
  .categories_menu .list.slider.owl-loaded {
    opacity: 1;
    transition: 0.2s all ease;
  }
}
@media only screen and (max-width: 768px) {
  .categories_menu .list.slider {
    display: flex;
    padding: 0 25px;
  }
  .categories_menu .list.slider.owl-loaded {
    opacity: 1;
    transition: 0.2s all ease;
  }
}
@media only screen and (max-width: 767px) {
  .categories_menu .list.slider {
    display: flex;
    padding: 0 25px;
  }
  .categories_menu .list.slider.owl-loaded {
    opacity: 1;
    transition: 0.2s all ease;
  }
}
@media only screen and (max-width: 576px) {
  .categories_menu .list.slider {
    padding: 0;
  }
}

@media only screen and (min-width: 993px) and (max-width:1200px), (min-width: 769px) and (max-width: 992px), (max-width: 768px) {
  .ask-widget-button,
.webim_button,
.webim-html-button-element {
    display: none !important;
  }

  #chat-widget-container {
    visibility: hidden !important;
  }
  #chat-widget-container.open {
    visibility: visible !important;
  }

  #olark-wrapper .olark-launch-button[aria-expanded=false] {
    display: none !important;
  }

  [data-product=web_widget] + div > #launcher {
    visibility: hidden !important;
  }
}
.webim-button-slider {
  top: 40% !important;
}

.error_page .ask-widget-button,
.error_page .webim_button,
.error_page .webim-html-button-element {
  display: none !important;
}
.error_page #chat-widget-container {
  visibility: hidden !important;
}
.error_page #chat-widget-container.open {
  visibility: visible !important;
}
.error_page #olark-wrapper .olark-launch-button[aria-expanded=false] {
  display: none !important;
}
.error_page [data-product=web_widget] + div > #launcher {
  visibility: hidden !important;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

html, body {
  font-family: "LatoWeb", Arial, "ALS Rubl", sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 0;
  border: none;
  min-height: 100%;
  height: 100%;
  width: 100%;
  max-width: 100%;
  background: #1E1E1E;
  color: #FFFFFF;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.divided-title {
  position: relative;
  width: 100%;
  text-align: center;
}
.divided-title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
  z-index: 0;
}
.divided-title .divided-title__text {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #1E1E1E;
  z-index: 1;
}

.dropdown-button {
  position: relative;
}
.dropdown-button:not(.languages_dd) {
  display: block;
}
.dropdown-button.open {
  z-index: 3;
}
.dropdown-button.default .button {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  overflow: hidden;
  padding: 0 45px 0 15px;
  text-align: left;
  color: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  transition: 0.2s all ease;
}
.dropdown-button.default .icon-dd {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  text-align: center;
  font-size: 0;
}
.dropdown-button.default .icon-dd:after {
  content: " ";
  width: 20px;
  height: 20px;
  border: 4px solid #FFFFFF;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  line-height: 50px;
}
.dropdown-button.default .menu {
  position: absolute;
  z-index: 1;
  background: #fff;
  width: 100%;
  margin-top: -1px;
  border: 1px solid #E5E5E5;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.dropdown-button.default .menu > .item {
  position: relative;
  line-height: 45px;
  transition: 0.2s all ease;
}
.dropdown-button.default .menu > .item:hover {
  background: #f1f1f1;
}
.dropdown-button.default .menu > .item > a {
  padding: 0 15px;
  display: block;
  width: 100%;
  color: #FFFFFF;
}
.dropdown-button.default .menu > .item > a:hover, .dropdown-button.default .menu > .item > a.active {
  color: #FDD835;
}
.dropdown-button.checkbox .dd__link {
  position: relative;
  padding-left: 42px !important;
}
.dropdown-button.checkbox .dd__link:before {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 1px;
  position: absolute;
  left: 14px;
  top: 12px;
  border: 1px solid #94a1ae;
  background-color: transparent;
}
.dropdown-button.checkbox .dd__link:after {
  content: " ";
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 1px;
  position: absolute;
  left: 18px;
  top: 16px;
  background: #FDD835;
}
.dropdown-button.checkbox .dd__link.active:after {
  display: block;
}
.dropdown-button.radio .dd__link {
  position: relative;
  padding-left: 42px !important;
}
.dropdown-button.radio .dd__link:before {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 12px;
  border: 1px solid #94a1ae;
  background-color: transparent;
}
.dropdown-button.radio .dd__link:after {
  content: " ";
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 19px;
  top: 17px;
  background: #FDD835;
}
.dropdown-button.radio .dd__link.active:after {
  display: block;
}

.dropdown-button.form-control .dd__button {
  background: #f1f1f1;
  height: 38px;
  border: 1px solid #94a1ae;
  padding: 0 42px 0 15px;
  line-height: 38px;
  color: #FFFFFF;
  z-index: 2;
  text-transform: none;
  font-weight: 300;
  font-size: 14px;
}
.dropdown-button.form-control .dd__button .icon {
  width: 27px;
  height: 100%;
  background-color: #FDD835;
}
.dropdown-button.form-control .dd__button .icon:after {
  position: absolute;
  top: 14px;
  left: 8px;
  display: block;
  height: 0;
  width: 0;
  line-height: 1;
  border-width: 6px;
  border-top-color: #1E1E1E;
  transition: 200ms ease;
}
.dropdown-button.form-control.open {
  z-index: 5;
}
.dropdown-button.form-control.open .dd__button {
  border-color: #FDD835;
}
.dropdown-button.form-control .menu {
  background-color: #f1f1f1;
  z-index: 1;
  max-height: 210px;
  overflow: auto;
}
.dropdown-button.form-control .menu::-webkit-scrollbar-track {
  background-color: #D8D8D8;
}
.dropdown-button.form-control .menu::-webkit-scrollbar {
  width: 27px;
  background-color: transparent;
}
.dropdown-button.form-control .menu::-webkit-scrollbar-thumb {
  background-color: #C2C2C2;
}
.dropdown-button.form-control .menu > .item {
  font-size: 14px;
  line-height: 38px;
}
.dropdown-button.form-control .menu > .item a {
  color: white;
}
.dropdown-button.form-control .menu > .item.active a, .dropdown-button.form-control .menu > .item a:hover {
  color: #FFFFFF;
}

.dropdown {
  position: relative;
}
.dropdown__toggle {
  cursor: pointer;
}
.dropdown.open .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown-content {
  position: absolute;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  min-width: 280px;
  padding-top: 10px;
  padding-bottom: 20px;
  border: 1px solid #333333;
  background-color: #222;
  transition: 0.2s all ease;
}
.dropdown-content.center {
  top: 100%;
  left: 50%;
  transform: translatex(-50%);
}
.dropdown-content.right {
  top: 100%;
  right: 0%;
}
.dropdown-content .separator {
  position: relative;
  display: block;
  padding: 10px 0;
}
.dropdown-content .separator:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
}
.dropdown-content.sidebar_dropdown {
  width: auto;
  min-width: 280px;
  position: fixed;
  display: none;
  top: 70px !important;
  left: 242px !important;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .dropdown-content.sidebar_dropdown {
    display: flex;
  }
}
.dropdown-content.sidebar_dropdown::before {
  display: none;
}

.embed-responsive-game {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 50px 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive-game::before {
  display: block;
  content: "";
  padding-top: 50%;
}
.embed-responsive-game .embed-responsive-item,
.embed-responsive-game iframe,
.embed-responsive-game embed,
.embed-responsive-game object,
.embed-responsive-game video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media only screen and (max-width: 1200px) {
  .embed-responsive-game .embed-responsive-item,
.embed-responsive-game iframe,
.embed-responsive-game embed,
.embed-responsive-game object,
.embed-responsive-game video {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    width: 100vw;
    height: 100vh;
  }
}
@media only screen and (max-width: 1200px) {
  .embed-responsive-game.has_panic_button {
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    width: 100vw;
    height: 100%;
  }
  .embed-responsive-game.has_panic_button .embed-responsive-item,
.embed-responsive-game.has_panic_button iframe,
.embed-responsive-game.has_panic_button embed,
.embed-responsive-game.has_panic_button object,
.embed-responsive-game.has_panic_button video {
    top: unset;
    height: calc(100% - 40px);
  }
}

/* Webfont: Lato-Light */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-Light.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Light.woff2") format("woff2"), url("fonts/Lato-Light.woff") format("woff"), url("fonts/Lato-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-LightItalic */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-LightItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-LightItalic.woff2") format("woff2"), url("fonts/Lato-LightItalic.woff") format("woff"), url("fonts/Lato-LightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Regular */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-Regular.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.woff") format("woff"), url("fonts/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Italic */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-Italic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Italic.woff2") format("woff2"), url("fonts/Lato-Italic.woff") format("woff"), url("fonts/Lato-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Bold */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-Bold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Bold.woff2") format("woff2"), url("fonts/Lato-Bold.woff") format("woff"), url("fonts/Lato-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-BoldItalic */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-BoldItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-BoldItalic.woff2") format("woff2"), url("fonts/Lato-BoldItalic.woff") format("woff"), url("fonts/Lato-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Black */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-Black.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Black.woff2") format("woff2"), url("fonts/Lato-Black.woff") format("woff"), url("fonts/Lato-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-BlackItalic */
@font-face {
  font-family: "LatoWeb";
  src: url("fonts/Lato-BlackItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Lato-BlackItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-BlackItalic.woff2") format("woff2"), url("fonts/Lato-BlackItalic.woff") format("woff"), url("fonts/Lato-BlackItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
/* Rouble */
@font-face {
  font-family: "ALS Rubl";
  src: url("fonts/rouble.otf"), url("fonts/rouble.ttf");
}
.form {
  color: inherit;
}
.form .form-group {
  position: relative;
}
.form .form-group input.hidden {
  display: none;
}
.form .form-group input:-webkit-autofill, .form .form-group input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 50px #333333;
  -webkit-text-fill-color: #FFFFFF;
  transition: 5000s ease background-color;
}
.form .form-group .control-label {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
.form .form-group .control-placeholder {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
.form .form-group.left {
  text-align: left;
}
.form .form-group.center {
  text-align: center;
}
.form .form-group.right {
  text-align: right;
}
.form .form-group .form-control {
  display: block;
  width: 100%;
  border: 1px solid #494949;
  font-size: 16px;
  padding: 0 15px;
  height: 40px;
  border-radius: 0;
  background-color: #333333;
  box-shadow: none;
  font-weight: 400;
  line-height: 18px;
  color: #FFFFFF;
  caret-color: #FFFFFF;
}
.form .form-group .form-control.center {
  text-align: center;
}
.form .form-group .form-control.circular {
  border-radius: 20px;
}
.form .form-group .form-control.has-icon {
  padding-right: 40px;
}
.form .form-group .form-control.no-border {
  border: none;
}
.form .form-group > .icon {
  height: 40px;
  width: 40px;
  padding: 0;
  line-height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  color: #999999;
  font-size: 16px;
  text-align: center;
}
.form .form-group > button.icon {
  cursor: pointer;
}
.form .form-group .control-label ~ .icon {
  top: 20px;
}
.form .form-group .help-block {
  display: block;
  font-size: 14px;
  text-align: left;
  min-height: 16px;
  margin-top: 2px;
}
.form .form-group .currency-label {
  position: absolute;
  height: 28px;
  line-height: 28px;
  right: 15px;
  bottom: 24px;
  padding: 0 0 0 0;
}
.form .form-group.center > .control-label {
  text-align: center;
}
.form .form-group.center > .form-control {
  text-align: center;
}
.form .form-group.center > .help-block {
  text-align: center;
}
.form .form-group input.form-control:disabled {
  opacity: 0.5;
}
.form .form-group.has-error .help-block {
  color: #F44336;
}
.form .form-group.has-error .form-control {
  border-color: #F44336;
}
.form .form-group.checkbox label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}
.form .form-group.checkbox label .checkbox {
  display: block;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border: 1px solid #494949;
  background: rgba(73, 73, 73, 0.5);
  margin-right: 0.5em;
  position: relative;
  border-radius: 5px;
}
.form .form-group.checkbox label .radio {
  display: block;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border: 1px solid #494949;
  background: rgba(73, 73, 73, 0.5);
  margin-right: 0.5em;
  position: relative;
  border-radius: 50%;
}
.form .form-group.checkbox label .text {
  padding: 5px 0 3px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}
.form .form-group.checkbox label:hover {
  border-color: #494949;
}
.form .form-group.checkbox label input + .checkbox:before {
  content: " ";
  display: block;
  width: 26%;
  height: 50%;
  position: absolute;
  top: 7%;
  left: 30%;
  opacity: 0;
  transform: rotate(45deg);
  border-right: 3px solid #999999;
  border-bottom: 3px solid #999999;
  transition: 0.2s all ease;
}
.form .form-group.checkbox label input + .radio:before {
  content: " ";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  transition: 0.2s all ease;
  border-radius: 50%;
  background: #4CAF50;
}
.form .form-group.checkbox label input:checked + .checkbox:before, .form .form-group.checkbox label input:checked + .radio:before {
  opacity: 1;
}
.form .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.form .row > .column {
  flex: 1;
  position: relative;
}
.form .row > .form-group {
  flex: auto;
}
.form .file-select {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.form .file-select .form-control {
  display: inline-flex;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: calc(100% - 40px);
}
.form .file-select .form-control .control-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 26px;
  margin-right: 16px;
  padding: 4px;
  background: white;
  border-radius: 2px;
}
.form .file-select .form-control .control-logo > img,
.form .file-select .form-control .control-logo > svg {
  max-width: 100%;
  max-height: 100%;
}
.form .file-select .form-control > .control-placeholder {
  overflow: hidden;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.form .file-select .form-control > .icon {
  margin-left: auto;
  font-size: 24px;
  transition: 0.1s all ease;
  width: 16px;
}
.form .file-select.show_files .form-control > .icon {
  transform: scaleY(-1);
}
.form .file-select .control-button {
  display: inline-flex;
  flex: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  text-align: center;
  color: #FDD835;
  background: none;
  transition: 0.2s all ease;
  cursor: pointer;
}
.form .file-select .control-button:hover {
  color: #FFFFFF;
}
.form .file-select .control-button.disabled {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  opacity: 0.5;
  cursor: default;
  pointer-events: none !important;
}
.form .file-select .control-button > .icon {
  font-size: 32px;
}
.form .file-select .help-block {
  width: 100%;
}
.form .file-select .hint-block {
  width: 100%;
}
.form .file-select .files_list {
  display: none;
  width: 100%;
  padding: 20px 0;
  text-align: left;
}
.form .file-select .files_list .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 5px 0;
}
.form .file-select .files_list .item:not(:last-child) {
  border-bottom: 1px solid #494949;
}
.form .file-select .files_list .item .name {
  display: block;
  flex: 1 0 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.form .file-select .files_list .item .status {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 0 auto;
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
}
.form .file-select .files_list .item .actions {
  display: block;
  margin-left: 8px;
  font-size: 24px;
}
.form .file-select .files_list .item .actions button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  color: #777;
  background: none;
  border: none;
  transition: 0.2s all ease;
  cursor: pointer;
}
.form .file-select .files_list .item .actions button:hover {
  color: #FDD835;
}
.form .file-select .files_list .item .actions .disabled,
.form .file-select .files_list .item .actions :disabled {
  opacity: 0.5;
  pointer-events: none;
}

.form_container {
  width: 100%;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
.form_container.small {
  max-width: 300px;
}

.game_item {
  display: block;
  position: relative;
  border: none;
  background-color: none;
  width: 100%;
  font-size: 14px;
  padding-bottom: 3em;
}
.game_item > .image {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.game_item > .image:before {
  display: block;
  content: " ";
  height: 0;
  padding-top: 100%;
}
.game_item > .image > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.5s all ease;
}
.game_item > .image:hover > img {
  transform: scale(1.05);
}
.game_item > .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  transition: 0.2s all ease;
}
.game_item .game_caption {
  display: block;
  position: absolute;
  bottom: 1em;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: none;
  font-size: inherit;
  line-height: 1.5em;
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game_item:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.game_item:hover .category_image_wrap:not(.dropsandwins) {
  opacity: 0;
}
.game_item .button_real {
  font-size: 80px;
  color: #FDD835;
  width: 80px;
  height: 80px;
  line-height: 1em;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: 0.2s all ease;
  opacity: 0.9;
}
.game_item .button_real .caption {
  font-size: inherit;
}
.game_item .button_real:hover {
  transform: scale(1.05);
  opacity: 1;
}
.game_item .category_image_wrap {
  position: absolute;
  overflow: hidden;
  transition: 0.2s all ease;
}
.game_item .category_image_wrap .category_image {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: 0 1px;
}
.game_item .category_image_wrap.dropsandwins {
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  overflow: hidden;
}
.game_item .category_image_wrap.dropsandwins .category_image {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  margin: 0;
}
.game_item .category_image_wrap.categories {
  top: 5px;
  padding: 0 12px;
}
.game_item .category_image_wrap.categories .category_image {
  height: 20px;
}

.game-sidebar {
  min-height: 270px;
  max-width: 100%;
}
.game-sidebar .home-view-sidebar {
  background: none;
  max-height: 270px;
  overflow: hidden;
}
.game-sidebar .home-view-sidebar .home-view-sidebar__title {
  margin: 0;
  line-height: 60px;
  padding: 0 10px;
  background-color: #2b2b2b;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-sidebar .home-view-sidebar .winner-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 8px 5px 5px;
  margin: 5px 10px;
  border-radius: 0;
  transition: background-color 0.2s ease;
  background: #141414;
}
.game-sidebar .home-view-sidebar .winner-item:hover {
  background-color: #444444;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__image-container {
  position: relative;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 72px;
  min-height: 1px;
  border-radius: 0px;
  border: 1px solid #FDD835;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__image-container .winner-item__image {
  width: 100%;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__image-container .winner-item__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.47), 0 2px 3px rgba(6, 23, 42, 0.26);
  visibility: hidden;
  transition: background-color 0.1s ease;
  opacity: 0;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__image-container .winner-item__image-overlay .winner-item__button {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 2em;
  padding: 0 10px;
  min-height: auto;
  height: auto;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content {
  -ms-flex: 1;
  flex: 1;
  margin-left: 15px;
  font-size: 14px;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content .winner-item__win-amount {
  color: #ffe400;
  font-weight: 700;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content .winner-item__username {
  font-size: 15px;
  font-weight: 400;
  color: #3c90f0;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content .winner-item__game {
  color: #fff;
  text-transform: uppercase;
}
.game-sidebar .home-view-sidebar .winner-item .winner-item__content .winner-item__time {
  display: inline-block;
  margin-right: 4px;
  color: #01ff25;
  display: none;
}
.game-sidebar .home-view-sidebar .winner-item:hover .winner-item__image-overlay {
  background-color: rgba(0, 0, 0, 0.63);
  opacity: 1;
  visibility: visible;
}
.game-sidebar .event__sidebar {
  color: #FFFFFF;
  margin: 10px 0;
}
.game-sidebar .event__sidebar .header {
  margin: 0;
  line-height: 60px;
  padding: 0 10px;
  background-color: #2b2b2b;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px;
  padding: 25px 0 10px 0;
}
.game-sidebar .event__sidebar.event_tournament .header {
  background-image: url("./images/bg/header_event_tournament.svg");
  background-position: 50% 0;
  background-repeat: no-repeat;
}
.game-sidebar .event__sidebar.event_lottery .header {
  background-image: url("./images/bg/header_event_lottery.png");
  background-position: 50% 0;
  background-repeat: no-repeat;
}
.game-sidebar .event__sidebar > a {
  display: block;
  width: 100%;
  margin: 10px 0;
  text-align: center;
}
.game-sidebar .event__sidebar .image {
  width: 200px;
  margin: 10px auto;
}
.game-sidebar .event__sidebar .image > img {
  width: 100%;
  display: block;
}
.game-sidebar .event__sidebar .push_up {
  margin-top: -30px;
}
.game-sidebar .event__sidebar .prize_pool {
  display: inline-block;
  line-height: 36px;
  min-width: 170px;
  padding: 0 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffc532, #cf6600);
  font-size: 24px;
  font-weight: 700;
  color: #1E1E1E;
  text-align: center;
}
.game-sidebar .event__sidebar .prize_pool > :nth-child(2) {
  font-weight: 400;
}
.game-sidebar .event__sidebar .player_place {
  margin: 10px 0;
  text-align: center;
  font-size: 12px;
}
.game-sidebar .event__sidebar .player_place > .place {
  font-size: 1.5em;
  color: #FDD835;
  text-decoration: underline;
}
.game-sidebar .event__sidebar .text {
  margin: 10px 0;
  text-align: center;
  font-size: 10px;
}

.games_filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.games_filters .search_wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}
.games_filters .search_wrap.right {
  justify-content: flex-end;
}
.games_filters .search_wrap.spread {
  justify-content: space-between;
}
.games_filters .search_wrap .w300 {
  width: 300px;
}
.games_filters .search_wrap .w250 {
  width: 250px;
}
.games_filters .search_wrap .wide {
  flex: 1;
}
.games_filters .search_wrap .button_clear {
  margin-left: 10px;
}
.games_filters > .search_wrap {
  grid-row-start: 1;
  grid-column: 3/3;
}
.games_filters .tags_dd_wrap {
  display: block;
  grid-row-start: 1;
}
.games_filters .tags_dd_wrap .tags_dd {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  background: none;
  border-color: #333333;
  transition: 0.2s all ease;
  cursor: pointer;
}
.games_filters .tags_dd_wrap .tags_dd:hover {
  background: #333333;
}
.games_filters .tags_dd_wrap .tags_dd.active {
  color: #FDD835;
  background: #333333;
}
.games_filters .tags_dd_wrap .tags_dd.active .icon {
  transform: rotate(90deg);
}
.games_filters .tags_block {
  height: 0;
  visibility: hidden;
  z-index: 1;
  position: relative;
  transition: 0.2s all ease;
  grid-row-start: 2;
  grid-column: 1/-1;
}
.games_filters .tags_block .tags_block_wrap {
  position: absolute;
  top: -3px;
  left: -3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% + 4px);
  padding-left: 3px;
  background: #1E1E1E;
  border-radius: 20px;
  max-height: 0;
  transition: 0.3s all ease;
  overflow: hidden;
}
.games_filters .tags_block .tags_block_wrap .search_wrap {
  padding-top: 3px;
}
.games_filters .tags_block.active {
  visibility: visible;
  opacity: 1;
}
.games_filters .tags_block.active .tags_block_wrap {
  max-height: 380px;
}
.games_filters .tags_list_wrap {
  padding: 10px;
  border: 1px solid #333333;
  background: #222;
  border-radius: 20px;
  min-height: 40px;
  margin-top: 10px;
  flex: 1;
}
.games_filters .scroll_wrap {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
}
.games_filters .scroll_wrap::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.games_filters .scroll_wrap::-webkit-scrollbar-thumb {
  background-color: #FDD835;
  border-radius: 6px;
}
.games_filters .tags_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.games_filters .tags_list .tag_item {
  border: none;
  background: none;
  display: inline-flex;
  color: #999999;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.games_filters .tags_list .tag_item i.checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 1px #666666 inset;
  margin-right: 5px;
  border: none;
  position: relative;
}
.games_filters .tags_list .tag_item i.checkbox:after {
  content: "";
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease;
  top: 25%;
  bottom: 25%;
  left: 25%;
  right: 25%;
}
.games_filters .tags_list .tag_item i.checkbox.radio {
  border-radius: 50%;
}
.games_filters .tags_list .tag_item i.checkbox.radio:after {
  border-radius: 50%;
  background: #FDD835;
}
.games_filters .tags_list .tag_item.active {
  color: #FDD835;
}
.games_filters .tags_list .tag_item.active i.checkbox:after {
  visibility: visible;
  opacity: 1;
}
.games_filters .tags_list .tag_item.disabled {
  color: #4d4d4d;
  pointer-events: none !important;
}
.games_filters .tags_list .tag_item.disabled i.checkbox {
  border-color: #4d4d4d;
}
.games_filters .providers_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  padding: 1px;
  gap: 1px;
}
.games_filters .providers_list .item {
  width: unset;
  height: 86px;
}
.games_filters .providers_list .provider_item {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  cursor: pointer;
  padding: 10px;
  border: none;
  box-shadow: 0 0 0 1px #333333;
}
.games_filters .providers_list .provider_item > img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  transition: 0.2s all ease;
}
.games_filters .providers_list .provider_item:hover {
  filter: brightness(1.1);
}
@media only screen and (max-width: 576px) {
  .games_filters .providers_list .provider_item:hover {
    filter: none;
  }
}
.games_filters .providers_list .provider_item.active {
  box-shadow: inset 0px 0px 0px 1px #FDD835;
}
.games_filters .button_clear {
  transition: none;
}
@media only screen and (max-width: 768px) {
  .games_filters > .search_wrap {
    grid-column: 1/-1;
  }
  .games_filters .tags_dd_wrap {
    grid-column: 1/-1;
    grid-row-start: unset;
  }
  .games_filters .tags_block {
    grid-row-start: unset;
  }
}
@media only screen and (max-width:1200px) {
  .games_filters .tags_block {
    grid-column: 1/-1;
  }
}

.games_tags_wrap {
  font-size: 14px;
}
.games_tags_wrap .menu_tags {
  display: inline;
}
.games_tags_wrap .menu_tags .item {
  display: inline;
}
.games_tags_wrap .clear_wrap {
  display: none;
}
.games_tags_wrap .clear_wrap.active {
  display: inline;
}
.games_tags_wrap .game_tag {
  border: none;
  background: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  border-radius: 13px;
  box-shadow: 0 0 0 1px #655301;
  line-height: 18px;
  padding: 4px 8px;
  margin: 0 5px 10px 0;
  font-weight: 600;
  color: #FDD835;
}
.games_tags_wrap .game_tag .caption {
  display: block;
}
.games_tags_wrap .game_tag .remove {
  display: block;
  cursor: pointer;
}
.games_tags_wrap .game_tag .remove:hover {
  color: #FFFFFF;
}
.games_tags_wrap .game_tag .remove > i {
  display: block;
}
.games_tags_wrap .button_clear {
  border: none;
  background: none;
  display: inline-block;
  text-decoration: underline;
  color: #999999;
  cursor: pointer;
  transition: 0.2s all ease;
}
.games_tags_wrap .button_clear:hover {
  color: #FDD835;
}

.games_grid {
  margin: 16px 0 16px -16px;
  width: calc(100% + 16px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  min-height: 200px;
}
.games_grid .empty, .games_grid .notfound {
  width: 100%;
  padding-left: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
}
.games_grid > .item {
  width: 16.6666666667%;
  margin-bottom: 16px;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 1199px) {
  .games_grid > .item {
    width: 25%;
  }
}
@media only screen and (max-width: 991px) {
  .games_grid > .item {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 575px) {
  .games_grid > .item {
    width: 50%;
  }
}
.games_grid .loader_overlay {
  background: transparent;
}
.games_grid .loading {
  margin: 10px auto;
  padding-left: 16px;
}

.games_search {
  margin-left: 15px;
  padding: 0;
  position: relative;
}
.games_search .form {
  height: 75px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.games_search .form .form-group {
  width: 100%;
}
.games_search .form .form-group .form-control {
  padding-right: 35px;
}
.games_search .dd__content {
  position: absolute;
  top: 100%;
  top: calc(100% - 10px);
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0;
  min-height: 50px;
  overflow: hidden;
  background: #1E1E1E;
  border: 1px solid #333333;
  border-radius: 20px;
  visibility: hidden;
  opacity: 0;
}
.games_search .dd__content .dd__scroll {
  max-height: 300px;
  overflow-y: auto;
}
.games_search .dd__content .dd__scroll::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.games_search .dd__content .dd__scroll::-webkit-scrollbar-thumb {
  background-color: #FDD835;
  border-radius: 6px;
}
.games_search.open .dd__content {
  visibility: visible;
  opacity: 1;
}
.games_search input[type=search]::-webkit-search-decoration,
.games_search input[type=search]::-webkit-search-cancel-button,
.games_search input[type=search]::-webkit-search-results-button,
.games_search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.games_search .game_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  margin: 0;
}
.games_search .game_item:not(:first-child) {
  border-top: 1px solid #333333;
}
.games_search .game_item .image {
  width: 50px;
  margin-right: 15px;
}
.games_search .game_item .caption {
  color: #999999;
  flex: 1;
}
.games_search .game_item:hover {
  background-color: #FDD835;
}
.games_search .game_item:hover .caption {
  color: #1E1E1E;
}
.games_search .empty {
  text-align: center;
  padding: 15px;
  color: #999999;
}

.header_banners {
  display: block;
  max-width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  color: #1E1E1E;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 576px) {
  .header_banners {
    box-shadow: none;
  }
}
.header_banners .text {
  color: #1E1E1E;
  margin: 16px 0;
}
.header_banners .button_container {
  margin: 16px 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .header_banners .container {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header_banners .container {
    padding: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .header_banners {
    background: #1E1E1E;
    color: #FFFFFF;
  }
  .header_banners .text {
    color: #FFFFFF;
  }
}
@media only screen and (max-width: 768px) {
  .header_banners {
    background: #1E1E1E;
    color: #FFFFFF;
  }
  .header_banners .text {
    color: #FFFFFF;
  }
}
.header_banners .list {
  display: flex;
  flex-direction: row;
  width: auto;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s all ease;
}
.header_banners .list.slick-initialized {
  opacity: 1;
  display: block;
  overflow: initial;
}
@media only screen and (max-width: 576px) {
  .header_banners .list .slick-arrow {
    display: none !important;
  }
}
.header_banners .list .item {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .header_banners .list .item {
    height: 600px;
  }
}
.header_banners .list .item .text_banner_mob {
  color: #FDD835;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 28, 28, 0.9)), to(rgba(34, 34, 34, 0)));
  background-image: linear-gradient(90deg, rgba(28, 28, 28, 0.9), rgba(34, 34, 34, 0));
  padding: 0 50px;
}
.header_banners .list .item .image {
  height: auto;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
.header_banners .list .item .image img {
  display: block;
  width: 100%;
}
.header_banners .list .item .image > .img {
  background-position: 0 0;
  width: 100%;
  height: 347px;
}
.header_banners .list .item .image .text_banner {
  color: #FDD835;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
  min-height: 300px;
  height: 380px;
  padding: 40px 30px 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 28, 28, 0.9)), to(rgba(34, 34, 34, 0)));
  background-image: linear-gradient(90deg, rgba(28, 28, 28, 0.9), rgba(34, 34, 34, 0));
}
@media only screen and (min-width: 1200px) {
  .header_banners .list .item .image .text_banner {
    height: 600px;
  }
}
.header_banners .list .item .image .bunner_button {
  height: 50px;
  line-height: 50px;
  min-width: 180px;
  font-weight: 600;
  font-size: 18px;
}
.header_banners .list .item .header {
  text-align: center;
}
.header_banners .list .item .header .title {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 5px 0;
}
.header_banners .list .item .header .title_name {
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  margin: 5px 0;
}
.header_banners .list .item .overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 5%;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .header_banners .list .item .overlay {
    position: static;
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 0;
  }
  .header_banners .list .item .overlay > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header_banners .list .item .overlay > div > * {
    margin: 0 20px;
    flex: auto;
  }
  .header_banners .list .item .overlay > div > *:nth-child(2) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header_banners .list .item .overlay {
    position: static;
    width: 100%;
    height: auto;
    margin: 10px 0;
    padding: 0;
  }
  .header_banners .list .item .overlay > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header_banners .list .item .overlay > div > * {
    margin: 0 20px;
    flex: auto;
  }
  .header_banners .list .item .overlay > div > *:nth-child(2) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .header_banners .list .item .overlay {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    margin: 10px 0;
    padding: 0;
  }
  .header_banners .list .item .overlay > div {
    display: block;
    text-align: center;
  }
  .header_banners .list .item .overlay > div > * {
    margin: 0;
    flex: 1;
  }
}
.header_banners .list .item .overlay .title {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 5px 0;
}
.header_banners .list .item .overlay .title_name {
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  margin: 5px 0;
}
.header_banners .list .item .overlay .prize_amount {
  font-size: 16px;
  line-height: 16px;
  margin: 5px 0;
}
.header_banners .slick-dots li button {
  border: 0;
  background: #fff;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.header_banners .slick-dots li button:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  font-family: "Airal", sans-serif;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header_banners .slick-active button:before {
  background: #FDD835;
  opacity: 1 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
.header_banners .slick-dots {
  position: relative;
  padding: 0;
  margin: 0;
  height: 0;
  top: -35px;
  list-style: none;
  display: block;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 576px) {
  .header_banners .banners_slick .slick-track {
    display: flex;
    align-items: stretch;
  }
  .header_banners .banners_slick .slick-slide {
    height: auto;
  }
  .header_banners .banners_slick .slick-slide > * {
    height: 100%;
  }
  .header_banners .banners_slick .slick-slide > * > * {
    height: 100%;
  }
  .header_banners .banners_slick .slick-slide .item .image {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .header_banners .banners_slick .slick-slide .item .image .text_banner_mob {
    height: 100%;
  }
  .header_banners .banners_slick .slick-slide .item .image .text_banner_mob .text_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  .header_banners .banners_slick .slick-slide .item .image .text_banner_mob .bunner_button {
    margin-top: auto;
    flex: 0;
  }
}

.header_desktop {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 75px;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  background-color: #222;
  top: 0;
  left: 240px;
  width: calc(100% - 240px);
}
.header_desktop + div {
  height: 75px;
}
@media only screen and (max-width: 767px) {
  .header_desktop {
    display: none;
  }
  .header_desktop + div {
    display: none;
  }
}
.header_desktop .row {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .header_desktop .row {
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .header_desktop .row {
    flex-wrap: nowrap;
    align-items: center;
  }
}
.header_desktop .row.right {
  justify-content: flex-end;
  text-align: center;
}
.header_desktop .row.right > .column {
  text-align: right;
}
.header_desktop .row.divider {
  background: #383838;
  opacity: 0.5;
  height: 2px;
  width: 100%;
  margin: 7px auto;
}
.header_desktop .navigation {
  justify-content: space-between;
  margin: 15px 0;
}
.header_desktop .column.left {
  width: 300px;
}
.header_desktop .column.right {
  text-align: right;
  margin-left: auto;
}
.header_desktop .header_logo {
  width: 185px;
}
.header_desktop .header_logo .logo {
  width: 100%;
}
.header_desktop .header_logo .logo > img {
  width: 100%;
  display: block;
}
.header_desktop .header_nav {
  flex: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .header_desktop .header_nav {
    flex-wrap: nowrap;
    align-items: center;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .header_desktop .header_nav {
    flex-wrap: nowrap;
    align-items: center;
  }
}
.header_desktop .header_nav .active_bonus_bar {
  margin-right: 30px;
  margin-top: -10px;
}
@media screen and (max-width: 1300px) {
  .header_desktop .header_nav .active_bonus_bar {
    display: none;
  }
}
.header_desktop .header_nav .active_bonus_bar .bonus_progress_wrap {
  line-height: 30px;
}
.header_desktop .header_nav .player-balance {
  position: relative;
  margin-right: 30px;
}
.header_desktop .header_nav .player-balance .label {
  color: #999999;
}
.header_desktop .header_nav .player-balance > button {
  height: 75px;
  background: none;
  border: none;
  color: #FFFFFF;
  position: relative;
}
.header_desktop .header_nav .player-balance > button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #333333;
  border-left: 12px solid transparent;
  visibility: hidden;
}
.header_desktop .header_nav .player-balance:hover button::after {
  visibility: visible;
}
.header_desktop .header_nav .player-balance:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.header_desktop .header_nav .player-balance .balance-block {
  cursor: pointer;
}
.header_desktop .header_nav .player-balance .bonus_dd {
  padding: 20px;
  text-align: center;
}
.header_desktop .header_nav .player-balance .bonus_dd .active_bonus_bar {
  margin: 0 auto 30px;
}
.header_desktop .header_nav .player-balance .bonus_dd .active_bonus_bar .bonus_progress_title {
  margin: 0 auto;
  font-size: 18px;
  color: #FFFFFF;
}
.header_desktop .header_nav .player-balance .bonus_dd .info {
  margin: 10px 0;
  font-size: 14px;
  color: #999999;
}
@media screen and (max-width: 1300px) {
  .header_desktop .header_nav .player-balance {
    display: none;
  }
}
.header_desktop .profile_button {
  position: relative;
}
.header_desktop .profile_button .button_profile {
  margin-left: 10px;
  color: #989898;
  background: none;
  border: none;
  position: relative;
  height: 75px;
  cursor: pointer;
}
.header_desktop .profile_button .button_profile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #333333;
  border-left: 12px solid transparent;
  visibility: hidden;
}
.header_desktop .profile_button .button_profile i {
  font-size: 40px;
  line-height: 37px;
  transition: 0.2s all ease;
}
.header_desktop .profile_button .button_profile:hover i {
  color: #FDD835;
}
.header_desktop .profile_button.open button::after {
  visibility: visible;
}
.header_desktop .profile_button .link_button {
  min-width: 160px;
  padding: 0 10px;
  color: #FFFFFF;
  text-decoration: none;
}
.header_desktop .profile_button .logout-link .button {
  min-width: 160px;
}

.header_mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header_mobile {
    display: block;
  }
}
.header_mobile .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_mobile .header_logo {
  display: flex;
  justify-content: center;
}
.header_mobile .header_logo .logo {
  width: 40px;
  margin-left: 10px;
}
.header_mobile .header_logo .logo img {
  width: 100%;
}
.header_mobile .player_balance {
  font-size: 10px;
  color: #999999;
  text-align: center;
}
.header_mobile .player_balance .value {
  font-size: 16px;
  color: #009688;
  font-weight: bold;
}
.header_mobile .hamburger {
  display: flex;
  align-items: center;
  flex: 1;
}
.header_mobile .hamburger .hamburger_line div {
  width: 3px;
  height: 3px;
  background-color: #fff;
  margin-left: 0;
  margin-bottom: 6px;
  border-radius: 4px;
}
.header_mobile .hamburger .hamburger_line div:first-child {
  width: 22px;
}
.header_mobile .hamburger .hamburger_line div:nth-child(2) {
  width: 15px;
}
.header_mobile .hamburger .hamburger_line div:last-child {
  width: 30px;
  margin-bottom: 0;
}
.header_mobile .header_nav {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.header_mobile .header_nav.as_user .column {
  flex-basis: 100%;
}
.header_mobile .header_nav .row {
  flex: 1;
}
@media screen and (max-width: 568px) {
  .header_mobile .header_nav .row .caption {
    font-size: 14px;
  }
}
@media screen and (max-width: 385px) {
  .header_mobile .header_nav .row {
    flex-basis: 100%;
  }
}
.header_mobile .header_nav .column {
  flex: 1;
  margin: 0 5px;
}
.header_mobile .header_nav .column button {
  display: flex;
  justify-content: center;
  min-width: auto;
  width: 100%;
}
.header_mobile .header_nav .column button i {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .header_mobile .header_nav .column button {
    font-size: 16px;
  }
}
.header_mobile .header_nav .column .invert_content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.header_mobile .header_nav .column .invert_content .caption {
  font-weight: bold;
  font-size: 26px;
}
.header_mobile .header_nav .bonus-wrap {
  width: 100%;
  margin-top: 4px;
  padding: 4px 10px;
  border: 1px solid #3f4a5d;
  border-radius: 3px;
  background-image: linear-gradient(180deg, #1c385b, #0e1f3d 81%, #0e1f3d);
  font-size: 13px;
  align-items: center;
}
.header_mobile .header_nav .bonus-wrap .active_bonus {
  width: 100%;
}
.header_mobile .header_nav .bonus-wrap .active_bonus .progress {
  flex: 1;
}
.header_mobile .header_nav .bonus-wrap .column {
  margin: 0;
}
.header_mobile .header_nav__button {
  display: inline-block;
  height: 30px;
  font-size: 0.9rem;
  line-height: 30px;
  padding: 0 1em;
  border: 1px solid #3f4a5d;
  border-radius: 3px;
  background: linear-gradient(180deg, #1c385b, #0e1f3d 81%, #0e1f3d);
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.2s all ease;
  vertical-align: top;
}
.header_mobile .header_nav__button:hover {
  border-color: #93d1ff;
}
.header_mobile .header_nav__button .balance_amount {
  color: #FDD835;
}
.header_mobile .header_nav__button.button_profile {
  line-height: 1em;
  min-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header_mobile .header_nav__button.button_profile .icon {
  font-size: 1.5em;
  opacity: 0.25;
  margin-right: 0.25em;
}
.header_mobile .header_nav__button.button_profile .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.header_mobile .header_nav__button.button_profile .caption .login {
  min-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  display: inline-block;
}
.header_mobile .header_nav__button.button_profile .caption .caption {
  font-size: 0.9em;
  opacity: 0.25;
  margin-top: 0.25em;
}

.languages {
  width: 160px;
}

.languages_dd {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.languages_dd.open .icon {
  transform: scaleY(-1);
}
.languages_dd .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
  width: 160px;
  padding: 8px 37px 8px 10px;
  line-height: 1;
  color: #FFFFFF;
  border: 1px solid #333333;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  z-index: 2;
  transition: 180ms ease;
}
.languages_dd .button:hover {
  border-color: #FDD835;
}
.languages_dd .menu {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 320px;
  margin-bottom: -1px;
}
.languages_dd .menu .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
  width: 160px;
  margin-top: -1px;
  padding: 8px 0 8px 10px;
  line-height: 1;
  color: #FFFFFF;
  border: 1px solid #333333;
  background-color: #1E1E1E;
  z-index: 1;
  transition: 180ms ease;
}
.languages_dd .menu .item:nth-child(2n) {
  margin-left: -1px;
}
.languages_dd .menu .item:hover {
  border-color: #FDD835;
  z-index: 3;
}
.languages_dd .menu .dd__link {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px;
  line-height: 1;
  color: inherit;
}
.languages_dd .flag {
  overflow: hidden;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.languages_dd .flag img {
  display: block;
  width: auto;
  height: 24px;
  margin-left: -25%;
}
.languages_dd .flag svg {
  display: block;
  width: 36px;
  height: 24px;
  margin-left: -25%;
}
.languages_dd .caption {
  margin-left: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}
.languages_dd .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  text-align: center;
  transition: 180ms ease;
}
.languages_dd .icon:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 4px;
  display: block;
  width: 7px;
  height: 7px;
  line-height: 1;
  border: 1px solid transparent;
  border-top-color: #999999;
  border-left-color: #999999;
  transform: rotate(-135deg);
}

.loader_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.75);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal > .loader_overlay {
  position: fixed;
}

#main_loader {
  position: fixed;
  z-index: 5;
  background: #FFFFFF;
}
#main_loader .logo {
  width: 275px;
  max-width: 100%;
  margin: -15% auto 40px auto;
}
#main_loader .logo > img {
  max-width: 100%;
}
#main_loader + .page_wrap {
  visibility: hidden;
}

.loader {
  display: block;
}
.loader > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  box-shadow: 0 0 1px 0px #FDD835;
  border-radius: 3px;
  background-color: #FDD835;
  animation: blink2 0.75s ease-in-out alternate infinite;
}
.loader > span:nth-child(2) {
  animation-delay: 120ms;
}
.loader > span:nth-child(3) {
  animation-delay: 240ms;
}
.loader > span:nth-child(4) {
  animation-delay: 360ms;
}

@media screen and (max-width: 576px) {
  .tablet.only:not(.mobile) {
    display: none !important;
  }

  .desktop.only:not(.mobile) {
    display: none !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 992px) {
  .mobile.only:not(.tablet) {
    display: none !important;
  }

  .desktop.only:not(.tablet) {
    display: none !important;
  }
}
@media screen and (min-width: 993px) {
  .mobile.only:not(.desktop) {
    display: none !important;
  }

  .tablet.only:not(.desktop) {
    display: none !important;
  }
}
.multilevel_lottery {
  margin-left: -16px;
  display: block;
}
.multilevel_lottery .list {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
}
.multilevel_lottery .list > .level_item {
  width: 33.33%;
  padding-left: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .multilevel_lottery .list > .level_item {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .multilevel_lottery .list > .level_item {
    width: 100%;
  }
}
.multilevel_lottery .list > .level_item.description {
  width: 100%;
}
.multilevel_lottery .card {
  background: #282828;
  border-radius: 10px;
  text-align: center;
  padding: 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.multilevel_lottery .card > .title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FDD835;
  margin: 0 0 10px 0;
}
.multilevel_lottery .card .description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: none;
  color: #FFFFFF;
  margin: 10px 0;
}
.multilevel_lottery .card .prizes_wrap {
  margin: 0 0 10px 0;
}
.multilevel_lottery .card .prizes_wrap .title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 10px 0 -10px 0;
}
.multilevel_lottery .card .prizes_wrap .image {
  display: block;
  margin: 0 auto;
  width: 300px;
  max-width: 100%;
}
.multilevel_lottery .card .prizes_wrap .image > img {
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .multilevel_lottery .card .prizes_wrap .image {
    width: 230px;
  }
}
.multilevel_lottery .card .prizes_wrap .slick-slider {
  position: relative;
}
.multilevel_lottery .card .prizes_wrap .slick-slider .slick-arrow {
  color: #FDD835;
  font-size: 50px;
  width: 20px;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: absolute;
  top: 50%;
}
.multilevel_lottery .card .prizes_wrap .slick-slider .slick-prev {
  left: 0 !important;
}
.multilevel_lottery .card .prizes_wrap .slick-slider .slick-next {
  right: 0 !important;
}
.multilevel_lottery .card .player_progress {
  display: block;
  width: 100%;
}
.multilevel_lottery .card .player_progress .progress_row {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.multilevel_lottery .card .player_progress .player_status {
  color: #F15722;
  font-size: 14px;
  text-align: center;
  margin: 5px 0;
}
.multilevel_lottery .card .player_progress .player_status.success {
  color: #76BC3E;
}
.multilevel_lottery .card .player_progress .icon_ok {
  color: #76BC3E;
  height: 30px;
  width: 30px;
  line-height: 33px;
  font-size: 22px;
  display: block;
  margin: 0 auto;
  background: #141414;
  border-radius: 50%;
}
.multilevel_lottery .card .player_progress .progress_box {
  flex: 1;
  height: 22px;
  margin-right: 10px;
  padding: 0;
}
.multilevel_lottery .card .player_progress .progress_box .progress {
  width: 100%;
  height: 100%;
  background: #141414;
  border: 1px solid #F15722;
  padding: 5px;
  border-radius: 11px;
}
.multilevel_lottery .card .player_progress .progress_box .fill {
  display: block;
  height: 100%;
  background: #F15722;
  border-radius: 6px;
}
.multilevel_lottery .card .player_progress .tooltip_wrap {
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  position: relative;
}
.multilevel_lottery .card .player_progress .tooltip_wrap .con-tooltip {
  border: 1px solid #F15722;
  color: #F15722;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.multilevel_lottery .card .player_progress .tooltip_wrap .con-tooltip:hover > .tooltip {
  visibility: visible;
  opacity: 1;
}
.multilevel_lottery .card .button_row {
  margin: auto 0 10px 0;
  text-align: center;
}
.multilevel_lottery .card_description {
  padding: 32px 16px;
  margin: 0;
  border: 1px solid #383838;
  background: #282828;
  border-radius: 10px;
  position: relative;
}
.multilevel_lottery .card.active:after {
  content: " ";
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(100% + 1px);
  left: calc(50% - 21px);
  border-top: 1px solid #383838;
  border-left: 1px solid #383838;
  background: #282828;
  transform: rotate(45deg);
  z-index: 1;
}

.page_footer .footer__head {
  background-color: #2D2D2D;
}
.page_footer .footer__head .footer__menu {
  min-height: 100px;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__head .footer__menu {
    flex-direction: column;
    padding: 30px 0;
  }
}
.page_footer .footer__head .footer__menu > .item {
  margin: 10px 17px;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  transition: 180ms ease;
}
@media only screen and (max-width: 1400px) {
  .page_footer .footer__head .footer__menu > .item {
    margin: 5px 10px;
  }
}
.page_footer .footer__head .footer__menu > .item:hover {
  color: #FDD835;
}
.page_footer .footer__head .footer__menu > .item .link {
  color: inherit;
}
.page_footer .footer__body {
  padding: 65px 15px;
}
.page_footer .footer__body .footer__payments, .page_footer .footer__body .footer__providers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page_footer .footer__body .footer__payments > .item, .page_footer .footer__body .footer__providers > .item {
  display: flex;
  align-items: center;
  width: 120px;
  height: 50px;
  padding: 5px 10px;
}
.page_footer .footer__body .footer__payments > .item .caption, .page_footer .footer__body .footer__providers > .item .caption {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page_footer .footer__body .footer__payments > .item img, .page_footer .footer__body .footer__providers > .item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.page_footer .footer__body .footer__payments {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
.page_footer .footer__body .footer__payments:before, .page_footer .footer__body .footer__payments:after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
}
.page_footer .footer__body .footer__payments:before {
  display: none;
  top: 0;
}
.page_footer .footer__body .footer__payments:after {
  bottom: 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_footer .footer__body .footer__payments {
    margin: 30px 0 25px;
    padding: 25px 0;
  }
  .page_footer .footer__body .footer__payments:before {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .page_footer .footer__body .footer__payments {
    margin: 30px 0 25px;
    padding: 25px 0;
  }
  .page_footer .footer__body .footer__payments:before {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body .footer__payments {
    margin: 30px 0 25px;
    padding: 25px 0;
  }
  .page_footer .footer__body .footer__payments:before {
    display: block;
  }
}
.page_footer .footer__body .footer__providers {
  position: relative;
}
.page_footer .footer__body .footer__providers:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
  display: none;
}
.page_footer .footer__body .footer__providers > .item {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_footer .footer__body .footer__providers {
    padding: 0 0 25px;
  }
  .page_footer .footer__body .footer__providers:after {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .page_footer .footer__body .footer__providers {
    padding: 0 0 25px;
  }
  .page_footer .footer__body .footer__providers:after {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body .footer__providers {
    padding: 0 0 25px;
  }
  .page_footer .footer__body .footer__providers:after {
    display: block;
  }
}
.page_footer .footer__body .footer__information {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 70px;
  padding-bottom: 10px;
}
.page_footer .footer__body .footer__information .other {
  display: flex;
  margin-right: 20px;
}
.page_footer .footer__body .footer__information .other a:not(:first-child) {
  margin-left: 15px;
}
.page_footer .footer__body .footer__information .other a .image {
  height: 40px;
}
.page_footer .footer__body .footer__information .other a .image img {
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body .footer__information .other {
    margin-right: 0;
  }
  .page_footer .footer__body .footer__information .other a {
    margin: 0 5px !important;
  }
}
.page_footer .footer__body .footer__information .description {
  flex-grow: 1;
  margin-right: 20px;
  font-weight: 700;
  font-size: 12px;
  color: #999999;
}
.page_footer .footer__body .footer__information .description p {
  margin: 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_footer .footer__body .footer__information .description {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .page_footer .footer__body .footer__information .description {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body .footer__information .description {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_footer .footer__body .footer__information {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .page_footer .footer__body .footer__information {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 35px;
  }
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body .footer__information {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 35px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_footer .footer__body {
    padding: 30px 10px 90px;
  }
}
@media only screen and (max-width: 768px) {
  .page_footer .footer__body {
    padding: 30px 10px 90px;
  }
}
@media only screen and (max-width: 576px) {
  .page_footer .footer__body {
    padding: 30px 10px 90px;
  }
}
.page_footer .languages.tablet {
  margin: 0 auto;
}
@media only screen and (max-width: 576px) {
  .page_footer .languages.tablet .languages_dd .menu {
    justify-content: center;
    right: unset;
  }
}

.page_header {
  margin: 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_header {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .page_header {
    padding-top: 0px;
  }
}
.page_sidebar {
  color: #fff;
  background: #222222;
  box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.5);
  text-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  left: 0;
  top: 0;
  text-align: center;
  width: 240px;
  height: 100%;
  position: fixed;
  transition: 0.2s all ease;
  z-index: 12;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.page_sidebar .sidebar_head {
  background-color: #222222;
  position: relative;
  padding-top: 25px;
  padding-bottom: 40px;
}
.page_sidebar .sidebar_head > * {
  position: relative;
}
.page_sidebar .sidebar_head > .texture {
  background-image: url("./images/bg/texture.png");
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.page_sidebar .sidebar_head .slick_items_rewards {
  width: 100%;
  position: relative;
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
}
.page_sidebar .sidebar_head .slick_items_rewards.slick-initialized {
  display: block;
  opacity: 1;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item {
  padding: 0 50px;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item {
  position: relative;
  padding-top: 30px;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item .ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  height: auto;
  width: auto;
  overflow: initial;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item .ribbon span {
  position: relative;
  left: 0;
  top: 10px;
  transform: rotate(0deg);
  width: auto;
  background: none;
  color: #009688;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item .ribbon:before, .page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item .ribbon:after {
  display: none;
}
.page_sidebar .sidebar_head .slick_items_rewards .rewards_item .item .action_wrap {
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .page_sidebar .sidebar_head {
    padding-top: 14px;
  }
}
.page_sidebar .close_button {
  display: none;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .page_sidebar .close_button {
    display: block;
    position: absolute;
    top: 14px;
    right: 0;
  }
}
.page_sidebar .close_button .close-button {
  color: #FDD835;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 5px;
}
.page_sidebar .close_button .close-button span {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 17px;
  color: #FDD835;
  margin-left: 5px;
}
.page_sidebar .sidebar_divider {
  background-color: transparent;
  background-image: url("./images/bg/sidebar_gradient.png");
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 0;
  position: relative;
  top: -40px;
  height: 40px;
}
.page_sidebar .sidebar_main {
  background-color: #222222;
  background-image: url("./images/bg/sidebar_gradient.png");
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: -40px;
  margin-top: -40px;
}
.page_sidebar .sidebar_main .sidebar_transparent_btn {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 6px 10px;
  color: #FFFFFF;
  border-radius: 35px;
  border: 2px solid transparent;
  font-size: 20px;
  line-height: 24px;
  transition: 0.2s all ease;
}
.page_sidebar .sidebar_main .sidebar_transparent_btn:hover {
  border-color: #444444;
  color: #FDD835;
}
@media only screen and (max-width: 1200px) {
  .page_sidebar .sidebar_main .sidebar_transparent_btn {
    display: flex;
  }
}
.page_sidebar .rewards-dropdown {
  cursor: pointer;
}
.page_sidebar .rewards-dropdown .arrow_dropdown {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 31px;
  padding-top: 5px;
  padding-left: 5px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #009688;
  font-size: 12px;
  color: #333333;
  display: none;
  cursor: pointer;
  transition: 0.2s all ease;
}
@media screen and (min-width: 768px) {
  .page_sidebar .rewards-dropdown .arrow_dropdown {
    display: block;
  }
}
.page_sidebar .rewards-dropdown .arrow_dropdown:hover {
  background-color: #00635a;
}
.page_sidebar .rewards-dropdown .arrow_dropdown i {
  font-size: 30px;
  transform: rotate(-90deg);
  display: block;
}
.page_sidebar .rewards-dropdown .btn-slick_home {
  height: 40px;
  background-color: #009688;
}
.page_sidebar .rewards-dropdown .btn-slick_home.next {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.page_sidebar .rewards-dropdown .btn-slick_home.prev {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.page_sidebar .rewards-dropdown .btn-slick_home > .icon {
  color: #000;
  opacity: 0.5;
}
.page_sidebar .link {
  color: #FFFFFF;
  text-shadow: none;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
}
.page_sidebar .link > .icon {
  display: block;
  font-size: 30px;
}
.page_sidebar .header {
  font-weight: 300;
  font-size: 12px;
  margin-bottom: -8px;
}
.page_sidebar > .hello {
  padding: 15px 0;
  text-align: center;
}
.page_sidebar > .logo {
  padding: 30px 50px 0;
  display: block;
  transition: none;
  min-height: 80px;
}
.page_sidebar > .logo > img {
  max-width: 100%;
}
.page_sidebar > .logo > .logo_main {
  display: block;
  opacity: 1;
}
.page_sidebar > .logo > .logo_min {
  display: none;
}
.page_sidebar .login {
  margin: 23px 0;
  padding: 0 10px;
}
.page_sidebar .login .row {
  margin: 12px 0;
}
.page_sidebar .login .button .icon {
  display: none;
}
.page_sidebar .player {
  margin: 23px 0;
  padding: 0 10px;
}
.page_sidebar .player .row {
  margin: 12px 0;
}
.page_sidebar .player .text .player_title {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0px 0px 4px #fff;
}
.page_sidebar .player .text .player_name {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0px 0px 4px #fff;
}
.page_sidebar .player .balance {
  margin: 10px 0;
  display: block;
}
.page_sidebar .player .balance .balance_number span {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px #FFFFFF;
}
.page_sidebar .player .balance .balance_title {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 4px #fff;
}
.page_sidebar .player .balance .balance_money {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 4px #fff;
}
.page_sidebar .player .bonus {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_sidebar .player .bonus .bonus_title {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 4px #fff;
  margin-right: 5px;
}
.page_sidebar .player .bonus .percent {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 4px #fff;
  margin-right: 5px;
}
.page_sidebar .social-links .item {
  display: inline-block;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #276B41;
  line-height: 30px;
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
}
.page_sidebar .social-links .item:hover {
  color: #FDD835;
  text-shadow: 0 0 4px #FFFFFF;
}
@media screen and (min-width: 1300px) {
  .page_sidebar .sidebar-bonus-bar {
    display: none;
  }
}
.page_sidebar .sidebar-bonus-bar .active_bonus_bar {
  width: 50%;
  margin: 0 auto;
}
.page_sidebar .sidebar-bonus-bar .button_cancel {
  margin: 10px 0;
}
.page_sidebar .sidebar-bonus-bar .bonus_progress_wrap {
  align-items: center;
  width: 50%;
  line-height: 30px;
}
.page_sidebar .menu {
  padding: 20px 30px;
}
.page_sidebar .menu .item {
  position: relative;
  margin-bottom: 15px;
}
.page_sidebar .menu .item > a {
  display: block;
  font-size: 20px;
  width: 100%;
  color: #fff;
  border-radius: 35px;
  border: 2px solid transparent;
  text-align: center;
  line-height: 24px;
  padding: 6px 10px;
  transition: 0.2s all ease;
}
.page_sidebar .menu .item > a:hover {
  border-color: #444444;
  color: #FDD835;
}
.page_sidebar .menu .item.active > a {
  border-color: #444444;
  color: #FDD835;
}
.page_sidebar .menu .item.active:before {
  opacity: 1;
}
.page_sidebar .menu .item.highlighted {
  color: #1E1E1E;
  background: #FDD835 !important;
}
.page_sidebar .menu .item.highlighted:before {
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .page_sidebar .menu {
    padding: 20px 30px 0;
  }
}
.page_sidebar .profile_menu .item {
  margin-bottom: 20px;
}
.page_sidebar .profile_menu .item.active a {
  color: #FDD835;
}
@media only screen and (max-width: 767px) {
  .page_sidebar .profile_menu .item {
    margin-bottom: 0;
  }
  .page_sidebar .profile_menu .item a {
    margin: 0;
  }
}
.page_sidebar .promotions {
  width: 100%;
  box-sizing: border-box;
  margin: 30px auto 5px;
  padding: 0 7px;
}
@media only screen and (max-width: 768px) {
  .page_sidebar .promotions {
    margin: 7px auto 6px;
  }
}
.page_sidebar .promotions__content {
  border: 1px solid #FFF500;
  box-shadow: 0px 0px 4px #FFF500;
  border-radius: 3px;
}
.page_sidebar .promotions__header {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF500;
}
.page_sidebar .promotions__header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  height: 1px;
  width: 90%;
  background-color: #FFF500;
  box-shadow: 0px 0px 4px #FFF500;
  border-radius: 3px;
}
.page_sidebar .promotions__list .item {
  position: relative;
  height: 106px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 8px 12px 2px;
}
.page_sidebar .promotions__list .item__image {
  min-width: 70px;
  width: 70px;
  margin-right: 6px;
}
.page_sidebar .promotions__list .item__image .image {
  width: 60px;
  margin: 0 auto;
}
.page_sidebar .promotions__list .item__image .price {
  font-weight: 700;
  font-size: 11px;
  color: #FFF500;
}
@media only screen and (max-width: 768px) {
  .page_sidebar .promotions__list .item__image .price {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .page_sidebar .promotions__list .item__image {
    width: 79px;
    margin-right: 10px;
  }
}
.page_sidebar .promotions__list .item__info {
  text-align: left;
  font-size: 12px;
  color: #FFFFFF;
}
.page_sidebar .promotions__list .item__info .label_uppercase {
  text-transform: uppercase;
}
.page_sidebar .promotions__list .item__info .data {
  color: #FFF500;
}
.page_sidebar .promotions__list .item__info > div {
  margin-bottom: 4px;
}
.page_sidebar .promotions__list .link_promotions {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #FFF;
  text-decoration: underline;
  text-transform: none;
}
.page_sidebar .promotions__list .more {
  margin: 0px auto 9px;
}
.page_sidebar .promotions__list .more .arrow_down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #FFF500;
  border-right: 1px solid #FFF500;
  transform: rotate(45deg);
  cursor: pointer;
}
.page_sidebar .promotions .slick-current {
  position: relative;
}
.page_sidebar .promotions .slick-current:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  height: 1px;
  width: 90%;
  background-color: #FFF500;
  box-shadow: 0px 0px 4px #FFF500;
  border-radius: 3px;
}
.page_sidebar .language {
  margin: 23px 0;
}
.page_sidebar .language .caption {
  opacity: 0.5;
  font-size: 14px;
}
.page_sidebar.hidden {
  display: none;
}
.page_sidebar .help-link {
  margin: 10px 0 23px;
}
.page_sidebar .help-link a {
  transition: 0.2s all ease;
  text-decoration: none;
  color: #31B679;
}
.page_sidebar .help-link a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 4px #FFFFFF;
  text-decoration: none;
}
.page_sidebar .logout-link a {
  transition: 0.2s all ease;
  text-decoration: none;
  color: #31B679;
}
.page_sidebar .logout-link a .icon {
  margin-bottom: 5px;
}
.page_sidebar .logout-link a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 4px #FFFFFF;
  text-decoration: none;
}
.page_sidebar .player_balance_wrap {
  display: none;
}
@media screen and (max-width: 1300px) {
  .page_sidebar .player_balance_wrap {
    display: block;
  }
  .page_sidebar .player_balance_wrap .money_wrap {
    display: flex;
    justify-content: space-around;
  }
  .page_sidebar .player_balance_wrap .player-balance {
    width: 50%;
    position: relative;
    font-size: 14px;
    padding: 5px 0;
  }
  .page_sidebar .player_balance_wrap .player-balance:first-child:after {
    content: "";
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 100%;
    width: 1px;
    height: 120%;
    background-image: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
  }
  .page_sidebar .player_balance_wrap .player-balance .label {
    font-weight: 600;
    font-size: 14px;
    color: #999999;
  }
}
.page_sidebar .profile_items {
  display: none;
}
@media only screen and (max-width: 767px) {
  .page_sidebar .profile_items {
    display: block;
  }
}
.page_sidebar .profile_items button, .page_sidebar .profile_items a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #999999;
  text-decoration: none;
  line-height: 40px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .page_wrap .page_sidebar {
    transform: translateX(-150%);
  }
}
.page_wrap .page_sidebar ~ .page_main,
.page_wrap .page_sidebar ~ .page_header,
.page_wrap .page_sidebar ~ .page_footer {
  padding-left: 240px;
}
@media only screen and (max-width: 767px) {
  .page_wrap .page_sidebar ~ .page_main,
.page_wrap .page_sidebar ~ .page_header,
.page_wrap .page_sidebar ~ .page_footer {
    padding-left: 0;
  }
}

body.menu_open {
  overflow: hidden;
}
body.menu_open .page_wrap .page_sidebar {
  transform: translateX(0);
}

.next-prev-pagination {
  list-style-type: none;
  margin: 20px auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.next-prev-pagination > li {
  padding: 0 6px;
}

.pagination {
  width: 100%;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination > li {
  height: 25px;
  width: 25px;
  margin: 3px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  color: #FFFFFF;
  background-color: #444444;
  transition: 180ms ease;
}
.pagination > li:not(.active):hover {
  color: #1E1E1E;
  background-color: #eee;
}
.pagination > li.active {
  background-color: #FDD835;
  color: rgba(0, 0, 0, 0.7);
}
.pagination > li.disabled {
  cursor: default;
  color: #999999;
}
.pagination > li.prev, .pagination > li.next {
  width: unset;
  background-color: unset;
  color: #999999;
}
.pagination > li.prev:hover, .pagination > li.next:hover {
  color: #eee;
  background-color: unset;
}
.pagination > li.prev.disabled:hover, .pagination > li.next.disabled:hover {
  cursor: default;
  color: #999999;
}
.pagination > li.prev {
  margin-right: 11px;
}
.pagination > li.next {
  margin-left: 11px;
}
.pagination > li > * {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.progress-circle {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  margin: 30px auto 20px;
}
.progress-circle .label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #999999;
  background: #222222;
  border: 2px solid #333333;
  border-radius: 15px;
  z-index: 2;
}
.progress-circle.large {
  width: 140px;
  height: 140px;
}
.progress-circle.orange .circle {
  stroke: #FDD835;
}
.progress-circle.blue .circle {
  stroke: #2187FF;
}
.progress-circle.green .circle {
  stroke: #009688;
}
.progress-circle.green .label {
  color: #009688;
}
.progress-circle .chart {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(60.27% 60.27% at 50% 50%, #3C3C3C 0%, #1A1A1A 100%);
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.1);
}
.progress-circle .chart .circle-bg {
  fill: none;
  stroke: #333333;
  stroke-width: 1.3;
}
.progress-circle .chart .circle {
  fill: none;
  stroke-width: 1.3;
}
.progress-circle .chart .circle.animated {
  animation: progress 1s ease-out forwards;
}
.progress-circle .circle-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.25;
  font-size: 90px;
  color: #999999;
}
.progress-circle .circle-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progress-circle .circle-content .money {
  font-weight: 600;
  font-size: 24px;
}
.progress-circle .circle-content .caption {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.rewards-dropdown .circle-animate {
  position: relative;
}
.rewards-dropdown .circle-animate:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #FDD835;
  box-shadow: 0px 0px 10px 1px #FDD835;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation-fill-mode: forwards;
  animation: fadeOut 1s;
  opacity: 0;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.promo_hero_title {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
}

.promo_hero_description {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
}

.promo_item_wrap {
  margin-left: -20px;
  margin-right: -20px;
  padding: 60px 0;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .promo_item_wrap {
    display: flex;
  }
}
.promo_item_wrap .slick-track {
  padding: 100px 0 0;
}
@media screen and (min-width: 992px) {
  .promo_item_wrap .slick-track {
    padding: 150px 0 0;
  }
}
@media screen and (max-width: 1199px) {
  .promo_item_wrap .slick-track {
    display: flex;
  }
  .promo_item_wrap .slick-track .slick-slide {
    display: flex;
    height: auto;
  }
  .promo_item_wrap .slick-track .slick-slide .promo_item {
    min-height: auto;
  }
  .promo_item_wrap .slick-track .slick-slide .promo_item .promo_content {
    flex: unset;
    flex-grow: 1;
    justify-content: unset;
  }
  .promo_item_wrap .slick-track .slick-slide .promo_item .promo_content > .title {
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .promo_item_wrap .slick-track .slick-slide .promo_item .promo_content > .description {
    margin-bottom: 30px;
  }
  .promo_item_wrap .slick-track .slick-slide .promo_item .promo_content > .action {
    margin-top: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .promo_item_wrap {
    margin-top: 100px;
    margin-bottom: -200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .promo_item_wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .promo_item_wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.promo_item_wrap .promo_item_single {
  display: flex;
  min-height: 100%;
  flex-wrap: wrap;
  flex: 0 0 100%;
  max-width: 620px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .promo_item_wrap .promo_item_single {
    min-height: unset;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .promo_item_wrap .promo_item_single {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 200px;
  }
}
@media only screen and (min-width: 1400px) {
  .promo_item_wrap .promo_item_single {
    flex: 0 0 50%;
    max-width: 620px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .promo_item_wrap .promo_item_single {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .promo_item_wrap .promo_item_single {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 576px) {
  .promo_item_wrap .promo_item_single {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.promo_item_wrap .promo_item_single .overlay {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: 0.2s all ease;
}
.promo_item_wrap .promo_item_single .overlay .title {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
  font-size: 30px;
}
@media only screen and (max-width: 576px) {
  .promo_item_wrap .promo_item_single .overlay .title {
    line-height: 35px;
  }
}
.promo_item_wrap .promo_item_single .overlay.visible {
  visibility: visible;
  opacity: 1;
}
.promo_item_wrap .promo_item {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 1px solid #333333;
  border-radius: 20px;
  transition: 0.2s all ease;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .promo_item_wrap .promo_item {
    min-height: 320px;
  }
}
.promo_item_wrap .promo_item .overlay {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 30px;
  text-align: center;
  transition: 0.2s all ease;
  border-radius: 20px;
}
.promo_item_wrap .promo_item .overlay .button_wrap {
  margin-top: 10px;
}
.promo_item_wrap .promo_item.show_about .overlay {
  visibility: visible;
  opacity: 1;
}
.promo_item_wrap .promo_item.show_about .images {
  visibility: hidden;
  opacity: 0;
  transition: 0.1s all ease;
}
.promo_item_wrap .promo_item .images {
  display: block;
  width: 174px;
  height: 174px;
  position: relative;
  transition: 1s all ease;
  margin: -90px auto 0;
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .promo_item_wrap .promo_item .images {
    margin: -150px auto 0;
    padding-top: 0;
    width: 280px;
    height: 280px;
  }
}
.promo_item_wrap .promo_item .images .image_item {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 100%;
  transition: 0.2s all ease;
  border-radius: 50%;
}
.promo_item_wrap .promo_item .promo_content {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  padding: 0 25px 20px;
}
.promo_item_wrap .promo_item .promo_content .title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #FDD835;
}
.promo_item_wrap .promo_item .promo_content .label {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin: 10px 0;
}
.promo_item_wrap .promo_item .promo_content .description {
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: #999999;
}
.promo_item_wrap .promo_item .promo_content .action {
  display: flex;
  justify-content: center;
}
.promo_item_wrap .promo_item .promo_content .action .button:not(:first-child) {
  margin-left: 11px;
}
@media only screen and (max-width: 576px) {
  .promo_item_wrap .promo_item .promo_content .action .button {
    min-width: 120px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .promo_item_wrap .promo_item .promo_content .action {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .promo_item_wrap .promo_item .promo_content .action {
    justify-content: center;
  }
}
.promo_item_wrap .promo_item:hover {
  border: 1px solid #FDD835;
  box-shadow: 0px 0px 10px 1px #FDD835;
}
.promo_item_wrap.carousel_small {
  margin-left: 0;
  margin-right: 0;
  padding: 0 22px;
  display: none;
}
@media screen and (max-width: 1199px) {
  .promo_item_wrap.carousel_small {
    display: block;
  }
}
.promo_item_wrap.carousel_small .page_games .btn-slick_home.prev {
  top: 60%;
}
.promo_item_wrap.carousel_small .page_games .btn-slick_home.next {
  top: 60%;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .promo_item_wrap.carousel_small {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .promo_item_wrap.carousel_small {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0;
  }
}

.ribbon {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 110px;
  width: 110px;
  overflow: hidden;
}
.ribbon > div, .ribbon > span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  background-color: #009688;
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: block;
  position: absolute;
  z-index: 1;
  width: 154px;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.5);
}
.ribbon.top-left {
  animation: fadein 0.8s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ribbon.top-left:before {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom-color: #00635a;
  top: -4px;
  left: 87px;
  width: 0;
  height: 0;
}
.ribbon.top-left:after {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-right-color: #00635a;
  top: 87px;
  left: -4px;
  width: 0;
  height: 0;
}
.ribbon.top-left > div, .ribbon.top-left > span {
  left: -42px;
  top: 20px;
  transform: rotate(-45deg);
}
.ribbon.red > div, .ribbon.red > span {
  background-color: #F44336;
}
.ribbon.red:before {
  border-bottom-color: #ea1c0d;
}
.ribbon.red:after {
  border-right-color: #ea1c0d;
}
.ribbon.yellow > div, .ribbon.yellow > span {
  background-color: #987c02;
}
.ribbon.yellow:before {
  border-bottom-color: #655301;
}
.ribbon.yellow:after {
  border-right-color: #655301;
}

.scroller {
  display: none;
  z-index: 199;
  cursor: pointer;
  position: fixed;
  bottom: 20%;
  right: 10px;
  width: 44px;
  height: 44px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.32);
  color: #fff;
  background: #101010;
  text-align: center;
  transition: 0.3s all ease;
  opacity: 0.8;
  border: 2px solid #444444;
  box-sizing: border-box;
  border-radius: 50%;
  line-height: 42px;
}
.scroller:hover {
  transform: scale(1.05);
}
.scroller__icon {
  font-size: 22px;
  line-height: 42px;
}
@media only screen and (max-width: 400px) {
  .scroller {
    bottom: 180px;
    width: 34px;
    height: 34px;
  }
  .scroller__icon {
    font-size: 15px;
    line-height: 33px;
  }
}

.sidebar_rewards_list {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease;
  position: fixed;
  top: 70px;
  left: 240px;
  max-width: calc(100% - 240px);
  z-index: 11;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px;
  margin: 0px;
  display: none;
}
@media screen and (min-width: 992px) {
  .sidebar_rewards_list {
    display: flex;
  }
}
.sidebar_rewards_list.active {
  visibility: visible;
  opacity: 1;
  z-index: 12;
}
.sidebar_rewards_list > .item {
  width: 182px;
  height: 250px;
  background: #282828;
  padding: 5px;
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.sidebar_rewards_list > .item .reward_actions {
  display: block;
  margin: 10px auto;
  text-align: center;
  max-width: 130px;
}
.sidebar_rewards_list > .item .reward_actions .action_wrap {
  margin-bottom: 5px;
}
.sidebar_rewards_list > .item .reward_actions .action_wrap .label {
  animation: fadein 0.8s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mscroll {
  flex-flow: row nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
}
.mscroll > * {
  flex: 1 0 auto;
}

.drag-slider::-webkit-scrollbar-track, .mscroll::-webkit-scrollbar-track {
  background-color: #0E0E0E;
}
.drag-slider::-webkit-scrollbar, .mscroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #0E0E0E;
}
.drag-slider::-webkit-scrollbar-thumb, .mscroll::-webkit-scrollbar-thumb {
  background: rgba(133, 133, 133, 0.2);
}

.static_menu_wrap {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 11;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .static_menu_wrap {
    display: flex;
  }
}
.static_menu_wrap .static_menu_item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009688;
  width: 100%;
  position: relative;
  text-align: center;
  height: 75px;
}
.static_menu_wrap .static_menu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 100%;
  background: #00776C;
}
.static_menu_wrap .static_menu_item .static_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #C4C4C4;
  border: 0;
  background: none;
}
.static_menu_wrap .static_menu_item .static_button i {
  font-size: 40px;
}
.static_menu_wrap .static_menu_item .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #C4C4C4;
}
.static_menu_wrap .static_menu_item .hamburger i {
  font-size: 40px;
}

.tabmenu_categories {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .tabmenu_categories {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 576px) {
  .tabmenu_categories {
    justify-content: flex-start;
  }
}
.tabmenu_categories .item {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  transition: 0.2s all ease;
}
.tabmenu_categories .item .icon {
  font-size: 2em;
  line-height: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .tabmenu_categories .item .icon {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .tabmenu_categories .item .icon {
    display: none;
  }
}
.tabmenu_categories .item .caption {
  line-height: 2rem;
  vertical-align: middle;
}
.tabmenu_categories .item:hover {
  color: #FFBF19;
}
@media only screen and (max-width: 767px) {
  .tabmenu_categories .item {
    font-size: 14px;
  }
}

.header__confirm-email {
  min-height: 42px;
  background: #0088cc;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 103;
}
@media only screen and (max-width: 767px) {
  .header__confirm-email {
    display: none !important;
  }
}
.header__confirm-email .confirm-email__link {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  margin-right: 10px;
  color: #FFFFFF;
}
.header__confirm-email .confirm-email__txt {
  width: 100%;
  margin: 0 auto;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__confirm-email .confirm-email__close {
  position: absolute;
  right: 35px;
  top: 19px;
  color: #fff;
}
.header__confirm-email .confirm-email__btn {
  background-color: transparent;
  text-align: center;
  display: flex;
  color: #08D2FF;
  text-transform: uppercase;
  border-radius: 3px;
  margin: 5px;
  position: relative;
  padding: 5px 10px;
  text-shadow: none;
  border: 3px solid #08D2FF;
  align-items: center;
  transition: 0.2s all ease;
}
.header__confirm-email .confirm-email__btn i {
  font-size: 25px;
  color: #fff;
  padding-left: 5px;
  transition: 0.2s all ease;
}
.header__confirm-email .confirm-email__btn:hover {
  background-color: #fff;
  color: #0167b1;
}
.header__confirm-email .confirm-email__btn:hover i {
  color: #000;
}

.header__confirm-email.mobile_telegram {
  min-height: 42px;
  background: transparent;
  border-radius: 4px;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 103;
  border: 2px solid #0088cc;
}
@media only screen and (max-width: 767px) {
  .header__confirm-email.mobile_telegram {
    display: block !important;
  }
}
.header__confirm-email.mobile_telegram .confirm-email__link {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
  margin-right: 0px;
  margin: 5px 0;
}
.header__confirm-email.mobile_telegram .confirm-email__txt {
  width: 100%;
  margin: 0 auto;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header__confirm-email.mobile_telegram .confirm-email__btn {
  display: flex;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  margin: 0;
  position: relative;
  top: 1px;
  padding: 5px 10px;
  text-shadow: none;
  border: 3px solid #0088cc;
  background: #0088cc;
  align-items: center;
  transition: 0.2s all ease;
  width: 100%;
}
.header__confirm-email.mobile_telegram .confirm-email__btn i {
  font-size: 25px;
  color: #fff;
  padding-left: 5px;
  transition: 0.2s all ease;
}

.terms_wrap > .title {
  text-align: center;
  margin: 15px 0;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
}
.terms_wrap > .version {
  margin: 15px 0;
  text-align: center;
  color: #FFFFFF;
}
.terms_wrap > .content {
  margin: 15px 0;
  padding: 0;
}
.terms_wrap h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  color: #FDD835;
}
.terms_wrap table {
  display: inline-block;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  margin: 30px auto 0;
}
.terms_wrap table th, .terms_wrap table td {
  vertical-align: top;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #999999;
}
.terms_wrap table th {
  font-weight: 600;
  color: #FFFFFF;
}
.terms_wrap table td {
  font-weight: 400;
  color: #999999;
}

.timer {
  margin: 10px 0;
  display: block;
  text-align: center;
  color: #FFFFFF;
}
.timer .timer__title {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #ffbf19;
}
.timer .timer__body {
  font-size: 30px;
  font-weight: 700;
}
.timer .timer__body > span {
  display: inline-block;
  width: 42px;
}
.timer .timer__labels {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #ffbf19;
}
.timer .timer__labels > span {
  display: inline-block;
  width: 42px;
}

.panic_wrap {
  display: flex;
  flex-flow: column nowrap;
}
.panic_wrap .tooltip {
  position: relative;
  text-align: center;
}
.panic_wrap .tooltip > .icon {
  margin: 0 4px;
  opacity: 0.5;
}
.panic_wrap .tooltip .text {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 200px;
  margin: 12px 0;
  padding: 8px;
  font-size: 14px;
  background: #1E1E1E;
  border: 1px solid #FDD835;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s all ease;
  transition-delay: 0.3s;
  z-index: 100;
}
.panic_wrap .tooltip .text .icon {
  position: absolute;
  right: 0;
  bottom: 0px;
  font-size: 30px;
  color: #FDD835;
  width: 38px;
  height: 10px;
  margin: 0;
  text-align: center;
}
.panic_wrap .tooltip:hover > .icon {
  color: #FDD835;
  opacity: 1;
}
.panic_wrap .tooltip:hover .text {
  opacity: 1;
  transition: 0.2s all ease;
}

@media only screen and (max-width: 1200px) {
  .panic_wrap {
    flex-flow: row nowrap;
    align-items: center;
  }
  .panic_wrap .tooltip > .icon {
    margin-left: 8px;
  }
  .panic_wrap .tooltip .text {
    top: 100%;
    margin-right: -8px;
    bottom: unset;
  }
  .panic_wrap .tooltip .text .icon {
    bottom: unset;
    top: 0;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 576px) {
  .modal_after_reg .popup > .content {
    padding-top: 0;
  }
}
.modal_after_reg .popup .popup_body .message h2 {
  margin: 1rem 0 0.5em 0;
}
.modal_after_reg .popup_icon {
  margin: 0 !important;
}

.modal_change_password .popup > .content {
  min-height: 320px;
  padding: 0 20px;
}
.modal_change_password .form {
  flex: 1;
  width: 100%;
  height: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  text-align: center !important;
}
.modal_change_password .form .row {
  margin: 10px 0;
}
.modal_change_password .form .form-group {
  min-height: 90px;
}

.modal_confirm_phone .popup > .content {
  min-height: auto;
  padding: 20px;
}
.modal_confirm_phone .popup .popup_actions {
  margin: 15px 0 0 0;
}
.modal_confirm_phone .popup .popup_actions .button {
  margin: 5px 0;
}
.modal_confirm_phone .form {
  flex: 1;
  max-width: 440px;
  height: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.modal_confirm_phone .form .form-control {
  text-align: left;
}
.modal_confirm_phone .row {
  max-width: 260px;
  display: block;
  margin: 10px auto;
}
.modal_confirm_phone .message {
  margin: 10px auto;
  font-size: 16px;
  color: #999999;
}
.modal_confirm_phone .timer {
  color: #FDD835;
  font-size: 42px;
  font-weight: 400;
}
.modal_confirm_phone .button.link {
  line-height: 48px;
  margin: 20px 0;
  font-weight: 500;
}

.modal.confirm_modal .popup_content {
  text-align: center;
}
.modal.confirm_modal .popup_actions {
  flex-direction: row;
  justify-content: center;
}
.modal.confirm_modal .popup_actions > .button_row {
  margin: 5px 7px;
}
.modal.confirm_modal.confirm_bonus .popup_content .header {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 30px;
  color: #FDD835;
}
.modal.confirm_modal.confirm_bonus .popup_content .description {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}
.modal.confirm_modal.confirm_bonus .popup_actions {
  flex-direction: column;
  justify-content: center;
  margin: 15px 0 0 0;
}
.modal.confirm_modal.confirm_bonus .popup_actions > .button_row {
  width: 100%;
  max-width: 200px;
  margin: 10px auto;
}

body.modal_open {
  overflow: hidden;
  padding-right: 15px;
}
body.modal_open .page_wrap {
  filter: blur(2px);
}
@media only screen and (max-width: 768px) {
  body.modal_open .page_wrap {
    position: fixed;
  }
}

.modal_overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.85);
  z-index: 12;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 12;
}
@media screen and (max-height: 800px) {
  .modal {
    justify-content: start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .modal {
    justify-content: start;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.modal.no_animation .popup {
  animation: none !important;
}
.modal .popup {
  position: relative;
  height: auto;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #333333;
  background: #222222;
  animation: appear 0.5s ease;
}
@media only screen and (max-width: 576px) {
  .modal .popup {
    width: 100%;
  }
}
.modal .popup > .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  color: #FDD835;
  border-bottom: 1px solid #333333;
}
.modal .popup > .header .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  padding: 0 35px;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 576px) {
  .modal .popup > .header .title {
    font-size: 1rem;
  }
}
.modal .popup > .header .close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #999999;
  border: none;
  background: none;
  transition: 0.2s all ease;
  cursor: pointer;
}
.modal .popup > .header .close:hover, .modal .popup > .header .close:focus, .modal .popup > .header .close:active {
  color: #FFFFFF;
}
.modal .popup > .content {
  background: none;
  color: #FFFFFF;
  min-height: 400px;
  padding: 20px 50px;
}
@media only screen and (max-width: 576px) {
  .modal .popup > .content {
    padding-top: 40px;
  }
}
@media screen and (max-height: 450px) {
  .modal .popup > .content {
    min-height: 320px;
  }
}
.modal .popup > .content.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal .popup > .content.row {
  display: flex;
  flex-direction: row;
}
.modal .popup > .content.center {
  text-align: center;
}
.modal .popup .popup_content {
  display: block;
  width: 100%;
  font-size: 1.25rem;
}
.modal .popup .popup_content > .title {
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  color: #FDD835;
}
.modal .popup .popup_icon {
  display: block;
  padding: 0;
  margin: 0 0 15px;
  text-align: center;
  font-size: 48px;
  color: #FDD835;
}
.modal .popup .popup_icon > * {
  display: block;
}
.modal .popup .popup_icon .green-icon {
  color: #4CAF50;
}
.modal .popup .popup_icon .red-icon {
  color: #F44336;
}
.modal .popup .popup_icon .red-yellow {
  color: #FDD835;
}
.modal .popup .popup_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}
.modal .popup .popup_body .message {
  margin: 0;
  text-align: center;
}
.modal .popup .popup_body .message h2, .modal .popup .popup_body .message h3, .modal .popup .popup_body .message h4 {
  color: #FDD835;
  margin: 1em 0 0.5em 0;
}
.modal .popup .popup_body .message a {
  color: #FDD835;
  text-decoration: underline;
}
.modal .popup .popup_body .message a:hover {
  text-decoration: none;
}
.modal .popup .popup_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 30px 0 0 0;
  padding: 10px 0;
}
.modal .popup .popup_actions > .button_row {
  display: block;
  margin: 0 0 8px 0;
  text-align: center;
}
.modal.exit_lobby_modal .popup_actions {
  margin: 10px 0 0;
}
.modal.exit_lobby_modal .popup_content {
  text-align: center;
}
.modal.exit_lobby_modal .hot_game {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FDD835;
  margin: 5px 0;
}
.modal .games_gallery > .list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.modal .games_gallery > .list > .item {
  margin: 5px;
  width: 33%;
}
@media only screen and (max-width: 576px) {
  .modal .games_gallery > .list > .item {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .modal .games_gallery > .list {
    flex-direction: column;
  }
}

.modal_demo_game .popup_text {
  flex: 1;
  height: 100%;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px 25px;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enter_phone_play_modal .popup > .content {
  padding: 0;
}
.enter_phone_play_modal .popup .popup_content {
  padding: 0;
  text-align: center;
}
.enter_phone_play_modal .lottery_block {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.enter_phone_play_modal .lottery_block > .image {
  width: 100%;
}
.enter_phone_play_modal .lottery_block > .image > img {
  width: 100%;
}
.enter_phone_play_modal .lottery_block .title {
  margin: 10px 0;
  color: #FDD835;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0 30px;
}
.enter_phone_play_modal .lottery_block .description {
  margin: 5px 0;
  color: #FFFFFF;
  text-transform: none;
  font-size: 1.15rem;
  padding: 0 20px;
}
.enter_phone_play_modal .lottery_block .prizes {
  margin: 0;
}
.enter_phone_play_modal .lottery_block .prizes .title {
  margin: 10px 0;
  color: #FDD835;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0 30px;
}
.enter_phone_play_modal .lottery_block .prizes .prizes-slider {
  padding: 0 20px;
}
.enter_phone_play_modal .lottery_block .prizes .prize_item .image {
  width: 100%;
  max-width: 137px;
  margin: 0 auto;
}
.enter_phone_play_modal .lottery_block .prizes .prize_item .image > img {
  display: block;
  width: 100%;
}
.enter_phone_play_modal .lottery_block .prizes .prize_item .caption {
  max-width: 137px;
  font-size: 0.9rem;
  margin: 0 auto;
}
.enter_phone_play_modal .form_block {
  margin: 5px 0 5px 0;
  padding: 0 20px;
  width: 510px;
  max-width: 100%;
}
.enter_phone_play_modal .form_block .title {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #FFFFFF;
}
.enter_phone_play_modal .form_block .form {
  text-align: left;
}
.enter_phone_play_modal .form_block .form > .row {
  flex-wrap: wrap;
}
.enter_phone_play_modal .form_block .form .form-group .form-control {
  background: #1E1E1E;
}
.enter_phone_play_modal .form_block .form .form-group .selectric {
  background: #1E1E1E;
}
.enter_phone_play_modal .form_block .form .field-enterphoneform-phonecode {
  width: 10%;
  margin-right: 1%;
}
.enter_phone_play_modal .form_block .form .field-profile-form-phone {
  width: 25%;
  margin-right: 1%;
}
.enter_phone_play_modal .form_block .form .button_save {
  width: 40%;
}
.enter_phone_play_modal .form_block .form .button_save > .button {
  height: 49px;
  line-height: 49px;
}
@media only screen and (max-width: 576px) {
  .enter_phone_play_modal .form_block .form .field-enterphoneform-phonecode {
    width: 30%;
    margin-right: 1%;
  }
  .enter_phone_play_modal .form_block .form .field-profile-form-phone {
    width: 69%;
    margin-right: 0;
  }
  .enter_phone_play_modal .form_block .form .button_save {
    margin-top: 10px;
    width: 100%;
  }
}
.enter_phone_play_modal .to_game_block {
  margin: 5px 0;
}
.enter_phone_play_modal .timer_block {
  margin: 0;
}
.enter_phone_play_modal .timer_block .timer .countdown__title {
  font-size: 1.25rem;
  margin: 5px 0;
  color: #FFFFFF;
}
.enter_phone_play_modal .timer_block .timer .countdown__body {
  font-size: 28px;
  margin: 5px 0;
  color: #FDD835;
}

.modal_forgot_password .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal_forgot_password .form .form-group {
  width: 100%;
}
.modal_forgot_password .message {
  width: 100%;
  max-width: 420px;
  margin: 90px auto 0;
  padding: 0 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}

.modal_has_active_campaign .popup > .content {
  color: #FFFFFF;
  min-height: unset;
}
.modal_has_active_campaign .popup > .content.row {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 576px) {
  .modal_has_active_campaign .popup > .content.row {
    flex-direction: column;
  }
}
.modal_has_active_campaign .column_image {
  width: 290px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: auto !important;
}
.modal_has_active_campaign .column_image .image {
  width: 100%;
  display: block;
}
.modal_has_active_campaign .column_image .image > img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.modal_has_active_campaign .column_body {
  width: 400px;
  padding: 10px 10px;
  display: block;
  text-align: center;
  flex: auto !important;
}
.modal_has_active_campaign .column_body .title {
  display: block;
  width: 100%;
  padding: 0 20px;
  margin: 0 0 20px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #FDD835;
}
.modal_has_active_campaign .column_body .text {
  display: block;
  width: 100%;
  padding: 0 10px;
  margin: 20px 0;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  color: #FFFFFF;
}
.modal_has_active_campaign .column_body .button_row {
  display: block;
  width: 100%;
  padding: 0 10px;
  margin: 10px 0;
}
.modal_has_active_campaign .column_body .button_link {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-decoration: underline;
  color: #FDD835;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.modal_has_active_campaign .column_body .button_link:hover {
  text-decoration: none;
}
@media only screen and (max-width: 576px) {
  .modal_has_active_campaign .popup > .content.row {
    display: block;
    padding: 20px 0;
  }
  .modal_has_active_campaign .column_image {
    width: 100%;
    max-width: 204px;
    margin: 0 auto;
  }
  .modal_has_active_campaign .column_body {
    padding: 0 10px;
    width: 100%;
  }
  .modal_has_active_campaign .column_body .title {
    margin-top: 10px;
  }
}

.nonwagerablebet_modal .message {
  padding: 0 40px;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
  color: #FFFFFF;
}

.modal_postreg_limit .popup > .content {
  text-align: center;
  min-height: auto;
  padding: 40px 20px;
}
.modal_postreg_limit .block_text {
  margin: 10px auto;
}
.modal_postreg_limit .block_duration {
  margin: 10px auto;
  width: 400px;
  max-width: 100%;
}
.modal_postreg_limit .radio_menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.modal_postreg_limit .radio_menu > label {
  padding: 0 10px;
}
.modal_postreg_limit .input_holder {
  margin: 10px auto;
  width: 200px;
  max-width: 100%;
  text-align: center;
}
.modal_postreg_limit .button_row {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .modal_postreg_limit .popup {
    border-radius: 0;
  }
  .modal_postreg_limit .popup .content {
    padding: 15px 10px;
  }
}

.modal_postreg .popup {
  width: 100%;
  max-width: 768px;
}
.modal_postreg .postreg-bonus {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
.modal_postreg .postreg-bonus .label {
  max-width: 450px;
  margin: 0 auto 15px;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
}
.modal_postreg .postreg-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #132927;
  border-radius: 20px;
  border: 1px solid #009688;
}
.modal_postreg .postreg-card .image {
  display: block;
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #333333;
}
.modal_postreg .postreg-card .info {
  padding: 0 55px;
  text-align: center;
}
.modal_postreg .postreg-card .info .title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 30px;
  color: #FDD835;
}
.modal_postreg .postreg-card .info .text {
  font-weight: 600;
  color: #999999;
}
.modal_postreg .postreg-card .info .button-holder {
  width: 100%;
  margin: 25px auto 10px;
}
.modal_postreg .postreg-card .info .link_button {
  font-size: 14px;
  color: #FDD835;
}
.modal_postreg .postreg_games {
  text-align: center;
}
.modal_postreg .postreg_games .title {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #FDD835;
}
.modal_postreg .postreg_games .postreg_games_inner {
  margin: 0 -10px;
  padding-bottom: 10px;
}
.modal_postreg .postreg_games .postreg_games_inner .game_item {
  padding: 0 10px;
}
.modal_postreg .postreg_games .postreg_games_inner .game_caption {
  display: none;
}
@media only screen and (max-width: 767px) {
  .modal_postreg .popup {
    border-radius: 0;
  }
  .modal_postreg .popup .content {
    padding: 15px 10px;
  }
  .modal_postreg .postreg-bonus {
    margin: 0 auto 12px;
  }
  .modal_postreg .postreg-bonus .label {
    font-size: 16px;
  }
  .modal_postreg .postreg-card {
    flex-direction: column;
    align-items: center;
    padding: 12px 40px;
  }
  .modal_postreg .postreg-card .image {
    width: 160px;
    height: 160px;
    margin-bottom: 4px;
  }
  .modal_postreg .postreg-card .info {
    padding: 0;
  }
  .modal_postreg .postreg-card .info .title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .modal_postreg .postreg-card .info .button-holder {
    margin: 18px 0 5px;
  }
  .modal_postreg .postreg-card .info .button-holder .button {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }
  .modal_postreg .postreg_games .title {
    margin: 12px 0;
    padding: 0 20px;
    font-size: 15px;
    line-height: 21px;
  }
}

.modal_pre_play .popup > .content {
  padding: 0;
}
.modal_pre_play .balance_wrap {
  width: 280px;
  margin: 0 auto;
  text-align: center;
}
.modal_pre_play .balance_wrap .money_wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.modal_pre_play .balance_wrap .player-balance {
  width: 50%;
  display: block;
  padding: 15px 5px;
}
.modal_pre_play .balance_wrap .player-balance:not(:first-child) {
  border-left: 1px solid #333333;
}
.modal_pre_play .balance_wrap .player-balance .label {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #999999;
}
.modal_pre_play .balance_wrap .player-balance .value {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
}
.modal_pre_play .warning_wrap {
  margin: 10px auto;
  padding: 10px;
  text-align: center;
  color: #F44336;
}
.modal_pre_play .separator {
  padding: 0;
}
.modal_pre_play .button_wrap {
  margin: 15px auto;
  width: 200px;
  max-width: 100%;
  padding: 0;
  text-align: center;
}
.modal_pre_play .game_info {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.modal_pre_play .game_info .game_item {
  margin: 5px auto;
  padding: 0;
}
.modal_pre_play .game_info .game_item .image {
  width: 100%;
  max-width: 232px;
  max-height: 232px;
  margin: 0 auto;
}
.modal_pre_play .game_info .game_item .image img {
  position: static;
  width: 100%;
  max-height: 100%;
}
.modal_pre_play .game_info .game_item .image:before {
  display: none;
}
.modal_pre_play .game_info .description {
  color: #FFC107;
  text-align: center;
  padding: 8px 20px;
}
.modal_pre_play .game_info .description p {
  padding: 0;
  margin: 0;
}
.modal_pre_play .play_buttons {
  display: block;
  margin: 15px;
}
.modal_pre_play .favorite_wrap {
  margin: 0 0 15px 0;
}
.modal_pre_play .fav_link {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
}
.modal_pre_play .fav_link .icon {
  text-align: center;
  font-size: 32px;
}
.modal_pre_play .fav_link .caption {
  text-align: center;
  font-size: 14px;
  line-height: 17px;
}
.modal_pre_play .button_cashbox_wrap {
  margin: 10px 0;
}

.document_load {
  width: 100%;
  color: #999999;
}
@media only screen and (max-width: 576px) {
  .document_load {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.document_load .documents_list {
  width: 100%;
  padding: 1px 0;
}
.document_load .documents_footer {
  width: 100%;
  padding: 1px 0;
}
.document_load .documents_hint {
  width: 100%;
  margin: 30px 0;
  text-align: left;
}
.document_load .documents_actions {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}
.document_load .divider {
  height: 1px;
  margin: 30px 0;
  background: #777;
}
.document_load .document_block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 30px 0;
}
.document_load .document_block .logo {
  width: 50px;
  margin-right: 30px;
  font-size: 50px;
}
.document_load .document_block .description {
  flex: 1;
  max-width: calc(100% - 80px);
}
.document_load .document_block .description .description_title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.document_load .document_block .description .description_label {
  margin-bottom: 8px;
}
.document_load .document_block .description .status_label {
  margin-bottom: 8px;
}
@media only screen and (max-width: 576px) {
  .document_load .document_block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .document_load .document_block .logo {
    margin-right: 0;
  }
  .document_load .document_block .description {
    flex: auto;
    width: 100%;
    max-width: 100%;
  }
}

.modal_profile {
  justify-content: start;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 576px) {
  .modal_profile {
    padding: 0;
  }
}
.modal_profile .popup {
  width: 760px;
}
@media only screen and (max-width: 576px) {
  .modal_profile .popup {
    margin-top: 0;
    min-height: min-content;
  }
  .modal_profile .popup > .content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
  }
}
.modal_profile .popup .popup_actions {
  display: block;
  text-align: center;
}
.modal_profile .popup .popup_actions .submit {
  margin-top: 15px;
}
.modal_profile .popup > .header {
  height: 50px;
  padding: 0 50px;
}
.modal_profile .popup > .header > .tab_menu {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 530px;
  margin: 0 auto;
}
.modal_profile .popup > .header > .tab_menu > .item {
  width: auto;
  flex: 0;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  transition: 0.2s all ease;
}
@media only screen and (max-width: 576px) {
  .modal_profile .popup > .header > .tab_menu > .item {
    font-size: 16px;
  }
}
.modal_profile .popup > .header > .tab_menu > .item > a {
  display: block;
  width: 100%;
  transition: 0.2s all ease;
  color: #999999;
  padding: 0 10px;
  text-transform: none;
}
.modal_profile .popup > .header > .tab_menu > .item > a:hover, .modal_profile .popup > .header > .tab_menu > .item > a:focus, .modal_profile .popup > .header > .tab_menu > .item > a:active {
  color: #FDD835;
}
.modal_profile .popup > .header > .tab_menu > .item > a.disabled {
  opacity: 0.5;
}
@media only screen and (max-width: 576px) {
  .modal_profile .popup > .header > .tab_menu > .item > a {
    padding: 0 10px;
    min-width: auto;
  }
}
.modal_profile .popup > .header > .tab_menu > .item.active > a {
  color: #FDD835;
}
.modal_profile .profile_form {
  width: 100%;
}
.modal_profile .profile_form .form {
  padding: 20px 40px 20px 40px;
}
.modal_profile .profile_form .form .row {
  margin: 10px 0;
}
.modal_profile .profile_form .form .row > .column {
  padding: 0 10px;
}
@media only screen and (max-width: 576px) {
  .modal_profile .profile_form .form {
    padding: 20px 15px 20px 15px;
  }
  .modal_profile .profile_form .form > .row {
    display: block;
    margin: 15px 0;
  }
  .modal_profile .profile_form .form > .row > .column {
    display: block;
    margin: 15px 0;
  }
}
.modal_profile .profile_form .form .title_caption {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  margin: 10px 0 0 0;
}
.modal_profile .profile_form .form .description {
  text-align: center;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #FDD835;
}
.modal_profile .profile_form .form .field-profileform-phonecode .selectric-scroll {
  max-height: 260px;
}
.modal_profile .contact_info_item {
  position: relative;
  min-height: 98px;
}
.modal_profile .contact_info_item .status {
  position: absolute;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  left: 10px;
  right: 10px;
  bottom: 4px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  .modal_profile .contact_info_item .status {
    line-height: 30px;
  }
}
.modal_profile .contact_info_item .status .label {
  font-size: inherit;
}
.modal_profile .contact_info_item .status .action {
  color: #FDD835;
  font-size: inherit;
  text-align: right;
  text-decoration: underline;
}
.modal_profile .contact_info_item .status .action:hover, .modal_profile .contact_info_item .status .action:active {
  text-decoration: none;
}
.modal_profile .contact_info_item .status .warn {
  color: #F44336;
}
.modal_profile .contact_info_item .status .ok {
  color: #009688;
}
.modal_profile .contact_info_item .status .ok .image {
  display: inline-block;
  width: 13px;
  margin-left: 2px;
}
.modal_profile .contact_info_item .status .ok .image img {
  width: 100%;
}
.modal_profile .divider {
  display: block;
  height: 10px;
}
.modal_profile .divider.invisible {
  visibility: hidden;
}
.modal_profile .change_password_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .modal_profile .change_password_button {
    margin: 20px 0;
  }
}
.modal_profile .profile_bonuses .bonuses_title {
  display: block;
  font-size: 16px;
  margin: 10px 0;
  padding: 0 20px;
  text-align: center;
  color: #888888;
  text-transform: none;
  font-weight: 400;
}
.modal_profile .profile_bonuses .bonuses_title_more {
  display: block;
  font-size: 16px;
  margin: 10px 0;
  padding: 0 20px;
  text-align: center;
  color: #FDD835;
  text-transform: none;
  font-weight: 400;
}
.modal_profile .deposit-iframe {
  min-height: 200px;
  position: relative;
  overflow-y: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal_profile .deposit-iframe iframe {
  min-height: 700px;
  overflow: hidden;
}
.modal_profile .cashbox_content > .popup_content {
  flex: 1;
  padding: 0 20px;
}
.modal_profile .cashbox_content > .popup_content .message {
  margin: 15px 0;
}
.modal_profile .cashbox_content > .popup_content .button_row {
  margin: 15px 0;
}

.modal_reality_check .title {
  margin-top: 0;
  line-height: 28px;
  font-size: 24px;
}
.modal_reality_check .timer .timer__digits {
  font-size: 60px;
}
.modal_reality_check .info {
  font-weight: 600;
  font-size: 14px;
}

.modal_reset_password .popup > .content {
  min-height: 320px;
  padding: 20px;
}
.modal_reset_password .form {
  width: 100%;
  height: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center !important;
}
.modal_reset_password .form .row {
  margin: 0;
  display: block;
}
.modal_reset_password .popup_actions {
  margin: 5px 0 0 0 !important;
}

.modal_select_reward .popup > .content {
  padding: 20px 0px;
}
.modal_select_reward .subtitle {
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  padding: 0 40px;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item.slick-current .item {
  background: #132927;
  border: 1px solid #009688;
}
@media only screen and (max-width: 576px) {
  .modal_select_reward .slick_items_rewards_modal .rewards_item.slick-current .item {
    background: #222222;
    border: 1px solid #333333;
  }
}
.modal_select_reward .slick_items_rewards_modal .rewards_item {
  padding: 20px 0;
}
@media only screen and (max-width: 576px) {
  .modal_select_reward .slick_items_rewards_modal .rewards_item {
    padding: 20px;
  }
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item {
  background: #333333;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 20px;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item .images {
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #333333;
  border-radius: 50%;
  background-image: -webkit-radial-gradient(50% 50%, circle, rgba(60, 60, 60, 0.75), #1a1a1a);
  background-image: radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.75), #1a1a1a);
  box-shadow: 0 10px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.2s all ease;
  align-items: center;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item .images img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item .reward__info .title {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #FDD835;
  margin: 10px 0;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item .reward__info .text {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #999999;
  margin: 10px 0;
}
.modal_select_reward .slick_items_rewards_modal .rewards_item .item .action_wrap {
  text-align: center;
}
.modal_select_reward .slick_items_rewards_modal .slick-slide {
  transform: scale(0.9);
  transition: 0.2s transform ease;
  filter: blur(2px);
}
.modal_select_reward .slick_items_rewards_modal .slick-slide.slick-current {
  transform: scale(1);
  transition: 0.2s transform ease;
  filter: blur(0);
}
.modal_select_reward .btn-slick_home {
  height: 40px;
  background-color: #009688;
  cursor: pointer;
}
.modal_select_reward .btn-slick_home.slick-disabled {
  background-color: #333333;
}
.modal_select_reward .btn-slick_home.next {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.modal_select_reward .btn-slick_home.prev {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.modal_select_reward .btn-slick_home > .icon {
  color: #000;
  opacity: 0.5;
}

.modal_self_suspend {
  text-align: center;
}
.modal_self_suspend .content {
  align-items: center;
}
.modal_self_suspend .content .form {
  padding: 10px;
  color: #1E1E1E;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal_self_suspend .content .form .row.preset {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px auto 20px auto;
}
.modal_self_suspend .content .form .row.preset .item {
  margin: 0 20px;
}
@media only screen and (max-width: 576px) {
  .modal_self_suspend .content .form .row.preset .item {
    margin: 0 5px;
  }
}
.modal_self_suspend .content .form .row.custom .form-group.checkbox {
  margin: 0 auto;
  max-width: 200px;
}
.modal_self_suspend .content .form .row.custom .form-group.checkbox label {
  display: flex;
  flex-direction: row;
}
.modal_self_suspend .content .form .row.custom .form-group.checkbox label .radiobox {
  min-width: 20px;
  margin: 10px;
}
.modal_self_suspend .content .header_main {
  margin: 10px auto;
  text-align: center;
  width: 80%;
  font-size: 22px;
}
.modal_self_suspend .content .text_main {
  margin: 10px auto;
  text-align: center;
  width: 100%;
  font-size: 16px;
}
.modal_self_suspend .content .header_radio {
  margin: 10px auto;
  text-align: center;
  width: 85%;
  font-size: 18px;
}
.modal_self_suspend .content .header_custom {
  margin: 10px auto;
  text-align: center;
  width: 85%;
  font-size: 18px;
}
.modal_self_suspend .content .text {
  margin: 20px auto;
}

.modal_signin .popup > .content {
  padding: 80px 15px 15px 15px;
  min-height: auto;
}
.modal_signin .popup input:-webkit-autofill, .modal_signin .popup input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 50px #1E1E1E;
  -webkit-text-fill-color: #FFFFFF;
  transition: 5000s ease background-color;
}
@media only screen and (max-width: 576px) {
  .modal_signin .popup input:-webkit-autofill, .modal_signin .popup input:-webkit-autofill:focus {
    -webkit-text-fill-color: #1E1E1E;
    -webkit-box-shadow: inset 0 0 0 50px #faffbd;
  }
}
.modal_signin .popup .form .row {
  margin: 15px 0;
}
.modal_signin .popup .form .row > .column {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 576px) {
  .modal_signin .popup .form .row {
    display: block;
  }
  .modal_signin .popup .form .row > .column {
    min-width: 100%;
    margin: 20px 0;
    display: block;
  }
}
.modal_signin .popup .form .submit_button {
  margin-top: 20px;
  margin-bottom: 70px;
  text-align: center;
}
.modal_signin .popup .forgot_password_link {
  position: absolute;
  top: 0;
  right: 2px;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  text-decoration: underline;
  transition: 0.2s all ease;
}
.modal_signin .popup .forgot_password_link:hover, .modal_signin .popup .forgot_password_link:focus {
  color: #FDD835;
}
.modal_signin .popup .text_label {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.modal_signin .popup .text_label.left {
  text-align: left;
}
.modal_signin .popup .text_label.right {
  text-align: right;
}
.modal_signin .popup .registration_link {
  color: #FDD835;
  transition: 0.2s all ease;
}
.modal_signin .popup .registration_link:hover {
  text-decoration: underline;
}
.modal_signin .pass_holder {
  position: relative;
}

.modal_signup {
  justify-content: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal_signup .popup {
  width: 600px;
}
.modal_signup .popup > .content {
  padding: 20px 20px 40px;
  min-height: auto;
  display: block;
  margin: 0;
  text-align: center;
}
.modal_signup .popup .header_block {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto 20px;
  text-align: center;
}
.modal_signup .popup .header_1 {
  color: #FFFFFF;
  text-shadow: 0 0 7px #FDD835;
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.modal_signup .popup .header_2 {
  color: #FFFFFF;
  text-shadow: 0 0 7px #FDD835;
  margin: 3px 0 0;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.modal_signup .popup .header_3 {
  color: #FDD835;
  text-shadow: 0 0 7px #FDD835;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.modal_signup .popup .header_4 {
  width: 100%;
  max-width: 360px;
  padding: 0 10px;
  margin: 10px auto 0;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
}
@media only screen and (max-width: 576px) {
  .modal_signup .popup .header_4 {
    padding: 0;
  }
}
.modal_signup .popup .tabs_nav {
  width: 100%;
  max-width: 360px;
  padding: 0 10px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal_signup .popup .tabs_nav > .item {
  flex: none;
  user-select: none;
  cursor: pointer;
}
.modal_signup .popup .tabs_nav > .item.step {
  display: block;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border: 2px solid #999999;
  color: #999999;
  border-radius: 24px;
  font-size: 24px;
  font-weight: 500;
}
.modal_signup .popup .tabs_nav > .item.divider {
  height: 0px;
  border-bottom: 2px dashed #999999;
  flex: 1;
  margin: 0 6%;
  opacity: 0.5;
}
.modal_signup .popup .tabs_nav > .item.active {
  border-color: #FDD835;
  color: #FDD835;
  opacity: 1;
}
.modal_signup .popup .tabs_nav > .item.disabled {
  cursor: default;
  opacity: 0.5;
}
.modal_signup .popup .tabs_nav > .item.complete {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  opacity: 1;
  border-color: #009688;
  color: #009688;
}
.modal_signup .popup .tabs_nav > .item.complete .icon, .modal_signup .popup .tabs_nav > .item.complete .icon-check {
  display: block;
}
.modal_signup .popup .tab_content {
  display: none;
}
.modal_signup .popup .tab_content.active {
  display: block;
}
.modal_signup .popup .form {
  color: #999999;
}
.modal_signup .popup .form .form-group {
  margin: 5px 0;
}
.modal_signup .popup .form .form-group.align-top label {
  align-items: flex-start;
  text-align: left;
}
.modal_signup .popup .form .form-group.align-top .checkbox {
  margin-top: 2px;
}
.modal_signup .popup .form .form-group .selectric .button:after {
  right: 0;
}
.modal_signup .popup .form .row {
  margin: 5px 0;
}
.modal_signup .popup .form .row > .form-group {
  margin: 0;
}
.modal_signup .popup .submit_button {
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .modal_signup .popup > .content {
    width: 100%;
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 10px;
  }
}
.modal_signup .links_holder {
  margin-top: 40px;
  margin-bottom: -25px;
}
.modal_signup .links_holder .signup_link {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: rgba(153, 153, 153, 0.5);
  transition: 0.2s all ease;
}
.modal_signup .links_holder .signup_link:hover {
  color: #FDD835;
}

@media only screen and (max-width: 576px) {
  .modal_terms_updated .popup .content {
    padding: 15px 25px;
  }
}
.modal_terms_updated .popup .link_holder {
  margin-bottom: 45px;
}

.modal_terms {
  justify-content: start;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 576px) {
  .modal_terms {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.modal_terms .popup {
  width: 900px;
}
.modal_terms .popup .content h3 {
  margin-top: 60px;
}
.modal_terms .popup .content .document-content__text {
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .modal_terms .popup .content {
    padding: 15px;
  }
}
.modal_terms .popup .popup_content {
  height: 800px;
  max-height: 75vh;
  overflow: auto;
  padding: 0 15px;
  font-size: 14px;
  color: #999999;
}
.modal_terms .popup .popup_content::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.modal_terms .popup .popup_content::-webkit-scrollbar-thumb {
  background-color: #FDD835;
  border-radius: 6px;
}

.app_page .page_wrap .page_main .container {
  max-width: 1240px;
}
.app_page .content {
  position: relative;
  display: flex;
  min-height: 675px;
  padding-bottom: 20px;
  background: url("./images/app/app_bg.png") right top 30px no-repeat;
  background-size: 450px auto;
  color: #FFFFFF;
}
.app_page .content .text_content {
  flex: 1;
  padding-top: 50px;
  text-align: center;
}
.app_page .content .qr_content {
  width: 468px;
}
.app_page .content .main_title {
  margin-bottom: 25px;
  font-size: 48px;
  line-height: 58px;
  font-weight: bold;
  text-transform: uppercase;
}
.app_page .content .subtitle {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
}
.app_page .content .title,
.app_page .content .text_title {
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
}
.app_page .content .title {
  margin-bottom: 40px;
}
.app_page .content .text_title {
  margin-bottom: 10px;
}
.app_page .content .text {
  font-size: 14px;
  line-height: 17px;
  margin: 20px 0;
  text-align: left;
}
.app_page .content .link {
  text-decoration: underline;
  color: #FDD835;
}
.app_page .content .highlighted {
  color: #FDD835;
}
.app_page .content .android_logo {
  position: absolute;
  right: -1px;
  top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  min-height: 100px;
  padding: 0 18px;
  background: #009688;
  color: #1E1E1E;
  border-radius: 10px;
}
.app_page .content .android_text {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  width: min-intrinsic;
  width: -moz-min-content;
  width: min-content;
  text-align: center;
  text-transform: uppercase;
}
.app_page .content .qr_code {
  position: absolute;
  right: 194px;
  top: 389px;
  padding: 18px;
  border-radius: 10px;
  background: #FFFFFF;
}
.app_page .content .icon {
  display: block;
  margin: -4px 0;
  font-size: 48px;
}
.app_page .content .icon.mob {
  margin: -9px 0;
  color: #009688;
}
.app_page .content .app_link {
  min-width: 210px;
  margin-bottom: 40px;
}
.app_page .mobile_item {
  display: none;
}
@media only screen and (max-width: 1450px) {
  .app_page .content .main_title {
    font-size: 38px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px), (min-width: 769px) and (max-width: 992px), (max-width: 768px) {
  .app_page .content {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    text-align: center;
    background: none;
  }
  .app_page .content .qr_content {
    display: none;
  }
  .app_page .content .main_title {
    margin-bottom: 34px;
    font-size: 30px;
    line-height: 36px;
  }
  .app_page .content .subtitle {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 29px;
  }
  .app_page .content .title,
.app_page .content .text_title {
    font-size: 16px;
    line-height: 19px;
  }
  .app_page .content .title {
    margin-bottom: 25px;
  }
  .app_page .content .text_title {
    margin-bottom: 18px;
  }
  .app_page .desktop_item {
    display: none;
  }
  .app_page .mobile_item {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .app_page .content .subtitle {
    margin-bottom: 20px;
  }
  .app_page .content .title {
    margin-bottom: 20px;
  }
}

.page_calendar .container {
  width: 765px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.page_calendar h1.page_title {
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #FDD835;
  text-align: center;
}
.page_calendar .prizepool {
  text-align: center;
  color: #FDD835;
  margin: 20px 0;
}
.page_calendar .prizepool .title {
  margin: 2px 0;
  font-size: 1.5rem;
}
.page_calendar .prizepool .money {
  margin: 2px 0;
  font-size: 2.1rem;
  font-weight: 500;
}
.page_calendar .active_period {
  margin: 20px;
  font-size: 10px;
  color: #FFFFFF;
  text-align: center;
}
.page_calendar .active_period .columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .page_calendar .active_period .columns {
    display: block;
  }
}
.page_calendar .active_period .columns > .column {
  flex: 1;
}
@media only screen and (max-width: 576px) {
  .page_calendar .active_period .columns > .column {
    margin: 10px 0;
    display: block;
  }
}
.page_calendar .active_period .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.page_calendar .active_period .subtitle {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}
.page_calendar .active_period .date {
  font-size: 18px;
  font-weight: 400;
}
.page_calendar .description {
  margin: 30px 0;
}
.page_calendar .description .title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #FDD835;
  margin: 20px 0;
}
.page_calendar .description .content {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFFFFF;
}
@media only screen and (max-width: 576px) {
  .page_calendar .description .content {
    text-align: center;
  }
}
.page_calendar .calendar_header {
  background: #2b2b2b;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.9rem;
  font-weight: 700;
}
.page_calendar .calendar_slider {
  position: relative;
}
.page_calendar .calendar_slider .calendar_slider_week {
  overflow: hidden;
  opacity: 0;
  height: 67px;
  transition: 0.2s all ease;
  position: relative;
}
.page_calendar .calendar_slider .calendar_slider_week.slick-initialized {
  overflow: unset;
  opacity: 1;
}
.page_calendar .calendar_slider .calendar_slider_day {
  background: #2b2b2b;
  height: 67px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  padding: 0;
  margin-right: 3px;
  box-sizing: border-box;
}
.page_calendar .calendar_slider .calendar_slider_day:hover {
  border-color: #FDD835;
}
@media only screen and (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .page_calendar .calendar_slider .calendar_slider_day:hover {
    border-color: transparent;
  }
}
.page_calendar .calendar_slider .calendar_slider_day.today {
  border-color: #FFFFFF;
}
.page_calendar .calendar_slider .calendar_slider_day.active {
  border-color: #FDD835;
  background: #FDD835;
  color: #1E1E1E;
}
.page_calendar .calendar_slider .calendar_slider_day .name {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
}
.page_calendar .calendar_slider .calendar_slider_day .day {
  display: block;
  font-size: 22px;
  font-weight: 700;
}
.page_calendar .calendar_slider .slick-arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 67px;
  width: 27px;
  text-align: center;
  position: absolute;
  color: #FFFFFF;
  font-size: 25px;
  cursor: pointer;
  transition: 0.2s all ease;
}
.page_calendar .calendar_slider .slick-arrow:hover {
  color: #b3b3b3;
}
.page_calendar .calendar_slider .slick-arrow.prev {
  top: 0;
  left: -33px;
}
.page_calendar .calendar_slider .slick-arrow.next {
  top: 0;
  right: -34px;
}
.page_calendar .cards_list_wrap {
  margin-left: -10px;
  margin-right: -10px;
}
.page_calendar .cards_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: normal;
  padding: 10px 0;
}
.page_calendar .cards_list > .item {
  width: calc(33.33% - 20px);
  display: block;
  margin: 10px 10px;
}
.page_calendar .cards_list > .item.fluid {
  width: 100%;
}
.page_calendar .cards_list > .item.description {
  padding: 0;
}
@media only screen and (max-width: 576px) {
  .page_calendar .cards_list > .item {
    width: calc(100% - 20px);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page_calendar .cards_list .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #2b2b2b;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s all ease;
  position: relative;
}
.page_calendar .cards_list .card:hover {
  border-color: #FDD835;
}
.page_calendar .cards_list .card.active {
  border-color: #FDD835;
}
.page_calendar .cards_list .card.active:after {
  display: block;
  content: " ";
  width: 10px;
  height: 10px;
  background: #1E1E1E;
  position: absolute;
  top: calc(100% + 17px);
  left: calc(50% - 5px);
  transform: rotate(45deg);
  border-left: 2px solid #FDD835;
  border-top: 2px solid #FDD835;
}
.page_calendar .cards_list .card .image {
  margin: 0 auto 5px auto;
  display: block;
  width: 100%;
  height: 134px;
}
.page_calendar .cards_list .card .image > img {
  display: block;
  margin: 0 auto;
  height: 100%;
  max-width: 100%;
}
.page_calendar .cards_list .card .title {
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin: 6px 0 auto 0;
}
.page_calendar .cards_list .card .prizepool {
  color: #FDD835;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  margin: 5px 0;
}
.page_calendar .cards_list .card .prizepool .money {
  margin: 2px 0;
  font-size: 22px;
  font-weight: 400;
}
.page_calendar .cards_list .card .finish_date {
  color: #FFFFFF;
  font-size: 16px;
  text-transform: none;
  text-align: center;
  font-weight: 400;
  margin: 5px 0;
}
.page_calendar .cards_list .card .button_row {
  text-align: center;
}
.page_calendar .cards_list .card .button_more {
  padding: 0 15px;
  line-height: 2.5em;
  height: 2.5em;
}
.page_calendar .cards_list .card_description {
  padding: 10px 10px;
  border: 2px solid #FDD835;
  background: #1E1E1E;
  border-radius: 6px;
}
.page_calendar .cards_list .card_description > .title {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: left;
  color: #FFFFFF;
  font-weight: 400;
  margin: 10px 0;
}
.page_calendar .cards_list .card_description > .button_row {
  text-align: left;
  margin: 10px 0;
}
.page_calendar .calendar_end_wrap {
  margin: 20px auto;
  text-align: center;
}
.page_calendar .calendar_end_wrap .timer {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  background: #2b2b2b;
  color: #FFFFFF;
  border-radius: 6px;
  text-transform: none;
  min-width: 205px;
}
.page_calendar .calendar_end_wrap .timer .countdown__title {
  font-size: 1rem;
  margin-bottom: 5px;
}
.page_calendar .calendar_end_wrap .timer .countdown__body {
  margin: 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #FDD835;
}
.page_calendar .calendar_end_wrap .timer .timer__content {
  font-size: 1rem;
  font-weight: 500;
}
.page_calendar .calendar_end_wrap .timer .timer__content > span {
  width: 42px;
  display: inline-block;
}
.page_calendar .leaderboard_wrap {
  margin: 40px 0 20px 0;
}
.page_calendar .leaderboard_wrap > .title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #FDD835;
  margin: 20px 0;
}
.page_calendar .leaderboard_wrap .qualification {
  margin: 20px 0;
  text-align: center;
  color: #00fce4;
  font-size: 16px;
  font-weight: 500;
}
.page_calendar .leaderboard_wrap .grid-view table {
  width: 100%;
  border-collapse: collapse;
}
.page_calendar .leaderboard_wrap .grid-view table thead tr {
  border-bottom: 1px solid #FFFFFF;
}
.page_calendar .leaderboard_wrap .grid-view table thead th {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 8px 0;
}
.page_calendar .leaderboard_wrap .grid-view table tbody tr {
  border-top: 1px solid #FFFFFF;
  display: none;
}
.page_calendar .leaderboard_wrap .grid-view table tbody tr.current_player {
  color: #FDD835;
}
.page_calendar .leaderboard_wrap .grid-view table tbody tr.always_visible {
  display: table-row;
}
.page_calendar .leaderboard_wrap .grid-view table tbody td {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 8px 0;
}
.page_calendar .leaderboard_wrap .grid-view.show_all tbody tr {
  display: table-row !important;
}
@media only screen and (max-width: 576px) {
  .page_calendar .leaderboard_wrap .grid-view {
    overflow-y: auto;
  }
  .page_calendar .leaderboard_wrap .grid-view table {
    min-width: 560px;
  }
  .page_calendar .leaderboard_wrap .grid-view table th, .page_calendar .leaderboard_wrap .grid-view table td {
    padding-right: 20px !important;
  }
}
.page_calendar .cashbox_button_wrap {
  margin: 40px 0;
  text-align: center;
}
.page_calendar .leaderboard_more_wrap {
  text-align: center;
  margin: 20px 0;
}
.page_calendar .leaderboard_more_wrap > a {
  display: inline-block;
  color: #FDD835;
  font-size: 16px;
  font-weight: 500;
}
.page_calendar .empty {
  padding-top: 25px;
  margin: 0 auto;
}
@media only screen and (max-width: 576px) {
  .page_calendar .empty {
    text-align: center;
  }
}

.page_wrap {
  height: auto;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.page_wrap .page_header {
  display: block;
  width: 100%;
  margin: 0;
  background: #222222;
}
.page_wrap .page_main {
  width: 100%;
  margin: 0 0 auto 0;
}
@media only screen and (max-width: 767px) {
  .page_wrap .page_main {
    margin-left: 0px;
  }
}
.page_wrap .page_footer {
  width: 100%;
}

#ask_info .ask-widget-button {
  top: 30% !important;
  width: 90px;
  right: -91px;
  height: 44px;
  padding-top: 6px;
  letter-spacing: 0.5px;
  border-radius: 100px;
  font-size: 14px;
}
#ask_info .ask-widget-button:after {
  content: "";
  width: 17px;
  height: 17px;
  margin-left: 8px;
  margin-top: -5px;
  background: url("./images/icons/chat.svg") no-repeat top left;
  background-size: 100% 100%;
  transform: rotate(-90deg);
}

.btn-slick_home {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 30px;
  height: 100px;
  font-size: 40px;
  border: 0;
  z-index: 1;
  color: #999999;
  background-color: #444;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.btn-slick_home:before {
  display: none;
}
.btn-slick_home:hover, .btn-slick_home:focus {
  color: #cccccc;
}
.btn-slick_home.prev {
  left: 0 !important;
  padding: 0 5px 0 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.btn-slick_home.prev > .icon {
  transform: rotate(90deg);
}
.btn-slick_home.next {
  right: 0 !important;
  padding: 0 0 0 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.btn-slick_home.next > .icon {
  transform: rotate(-90deg);
}
.btn-slick_home > .transform__arrow {
  font-size: 40px;
  margin-left: -10px;
  transform: rotate(-90deg) translate(-15px, 16px);
}
@media only screen and (max-width: 768px) {
  .btn-slick_home {
    width: 25px;
    height: 60px;
  }
}

.low_balance {
  display: none !important;
}
.low_balance .icon i {
  font-size: 43px;
}

.game_page .low_balance {
  display: block !important;
}

#header-tooltip {
  display: none !important;
}

.separator {
  position: relative;
  display: block;
  padding: 10px 0;
}
.separator:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(270deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
}

.table-leaderboard .slick-dots {
  position: relative;
  bottom: 0;
}

.modal_open .static_menu_wrap {
  display: none;
}

.webim-button-slider {
  z-index: 9 !important;
}

.slick_items_rewards_modal {
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
}
.slick_items_rewards_modal.slick-initialized {
  display: block;
  opacity: 1;
}

.error_page {
  background: #1E1E1E;
  color: #FFFFFF;
}
.error_page.not_found {
  background: url("./images/bg/404.png") no-repeat center center;
  background-size: 100% auto;
}
.error_page.not_found .type {
  margin: 20px 0 0;
  font-size: 140px;
  letter-spacing: 10px;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .error_page.not_found .type {
    font-size: 90px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page.not_found .type {
    margin: 15px 0 0;
    font-size: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .error_page.not_found {
    background: none;
  }
}
.error_page.maintenance {
  background: url("./images/bg/maintenance.png") no-repeat center center;
  background-size: 100% auto;
}
.error_page.maintenance .type {
  margin: 20px 0;
  font-size: 50px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page.maintenance .type {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .error_page.maintenance {
    background: none;
  }
}
.error_page .error .error__container {
  width: 100%;
  min-height: 100vh;
  display: flex;
}
.error_page .error .error__container .info {
  width: 100%;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 0 20px 50px;
  text-align: center;
}
.error_page .error .error__container .info .type {
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #FDD835;
}
.error_page .error .error__container .info .description {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #FDD835;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page .error .error__container .info .description {
    margin: 0 0 10px;
  }
}
.error_page .error .error__container .info .text {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
}
.error_page .error .error__container .info .button {
  margin: 30px 0 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page .error .error__container .info .button {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .error_page .error .error__container .info {
    padding: 20px 0;
  }
}
.error_page .error .error__container .logo {
  width: 55px;
}
.error_page .error .error__container .logo > img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page .error .error__container .logo {
    width: 40px;
  }
}
.error_page .error .error__container .help_btn_holder {
  width: 100%;
  max-width: 320px;
  margin: 30px auto 0;
  text-align: center;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .error_page .error .error__container .help_btn_holder {
    margin: 10px auto 0;
  }
}
.error_page .error .error__container .help_btn_holder .help_btn {
  display: inline-block;
  text-transform: uppercase;
  color: #FDD835;
  text-decoration: underline;
  cursor: pointer;
}
.error_page .error .error__container .help_btn_holder .help_btn:hover {
  text-decoration: none;
}
.error_page .error .error__container .help_btn_holder .image {
  display: block;
  width: 46px;
  margin: 0 auto 7px;
}
.error_page .error .error__container .help_btn_holder .caption {
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: inherit;
}

.game_page {
  background: #1E1E1E;
}
.game_page .page_main {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.game_page .game_wrap {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.game_page .game_controls {
  display: block;
  padding: 10px 10px;
}
.game_page .game_controls .game_controls_action {
  margin-bottom: 10px;
}
.game_page .game_controls_action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 28px;
  text-align: center;
  color: #FDD835;
  background: none;
  background: #333333;
  border: none;
  border-radius: 20px;
  box-shadow: none;
  transition: 0.2s all ease;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .game_page .game_controls_action {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.game_page .game_controls_action:hover {
  color: #FFFFFF;
}
.game_page .game_categories_wrap {
  position: fixed;
  bottom: 0;
  left: 240px;
  width: calc(100% - 240px);
  transition: all 0.2s ease;
  z-index: 6;
}
.game_page .game_categories_wrap .close_button {
  display: none;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 30px;
  margin: 0 auto;
  text-align: center;
  background: #3c3c3c;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  cursor: pointer;
}
.game_page .game_categories_wrap + div {
  width: 100%;
  height: 50px;
}
.game_page .gameplay_nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 25px;
  font-size: 14px;
  background-color: #333333;
}
.game_page .gameplay_nav .close {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  width: 50px;
  height: 25px;
  font-size: 12px;
  background: #3c3c3c;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  transition: 0.5s all ease;
  transform: translatex(-50%);
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}
.game_page .gameplay_nav.open .close {
  top: -22px;
  visibility: visible;
  opacity: 1;
}
.game_page .gameplay_nav > .item .content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  height: 280px;
  padding: 20px;
  background: #1E1E1E;
  transition: 2s all ease;
}
.game_page .gameplay_nav > .item .content > .loader_overlay {
  background: rgba(30, 30, 30, 0.5);
}
.game_page .gameplay_nav > .item .link {
  display: block;
  width: 100%;
  padding: 0 20px;
  line-height: 24px;
  font-size: 16px;
  color: #999;
  transition: 0.2s all ease;
}
.game_page .gameplay_nav > .item .link:hover {
  color: #FDD835;
}
.game_page .gameplay_nav > .item.active .link {
  color: #FDD835;
}
.game_page .gameplay_nav > .item.active .content {
  display: block;
  transition: 2s all ease;
}
.game_page .gameplay_nav .clock {
  margin-left: auto;
  padding: 0 20px;
  font-size: 16px;
  color: #999;
}
.game_page .gameplay_nav.open {
  margin-top: -300px;
  transition: all 0.2s ease;
}
.game_page .gameplay_nav .games-slider .item {
  padding: 10px;
}
@media (max-width: 1700px) {
  .game_page .gameplay_nav .games-slider .item .image {
    height: 170px;
  }
}
.game_page .gameplay_nav .game_item .title {
  margin: 3px 0;
  font-size: 12px;
  text-align: center;
  color: white;
}
.game_page .gameplay_nav .game_item .image:before {
  padding-top: 75%;
}
.game_page .gameplay_nav .game_item .image > img {
  border-radius: 0;
}
.game_page .gameplay_nav .btn-slick_home.prev {
  top: 40%;
  left: -20px !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.game_page .gameplay_nav .btn-slick_home.next {
  top: 40%;
  right: -20px !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.game_page .menu_wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 240px);
}
.game_page .elMenu {
  padding: 25px 0 0 0;
  transition: 0.5s;
  box-sizing: content-box;
}
.game_page .elMenu .elItems {
  padding: 0 25px;
  background-color: #333;
}
.game_page .elMenu .elItems .item a {
  display: block;
  width: 100%;
  padding: 0 20px;
  line-height: 50px;
  font-size: 16px;
  color: #999;
  transition: 0.2s all ease;
}
.game_page .elMenu .elItems .item a:hover {
  color: #FDD835;
}
.game_page .elMenu .elItems .item.active a {
  color: #FDD835;
}
.game_page .elMenu .elContent {
  width: 100%;
  height: 250px;
  padding: 20px 0;
  background: #1e1e1e;
}
.game_page .elMenu .elContent .ds-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100px;
  font-size: 40px;
  color: #999;
  background-color: #444 !important;
}
.game_page .elMenu .elContent .ds-nav > * {
  transform: rotate(90deg);
}
.game_page .elMenu .elContent .ds-nav.ds-prev {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.game_page .elMenu .elContent .ds-nav.ds-next {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.game_page .elMenu .elContent .game_item {
  padding: 10px 10px 40px 10px;
}
.game_page .elMenu .elClose {
  position: absolute;
  top: 0px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  width: 50px;
  height: 25px;
  padding: 3px 0 0 0;
  font-size: 12px;
  background: #3c3c3c;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  transition: 0.5s all ease;
  transform: translatex(-50%);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}
.game_page .elMenu .elClock {
  background-color: #333;
  padding: 0 20px;
  line-height: 50px;
  font-size: 16px;
  color: #999;
}
.game_page .elMenu.open .elClose {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.game_page .games-slider .slick-track {
  margin: 0;
}
.game_page .in_game_description {
  padding: 8px 20px;
  text-align: center;
  color: #ffc107;
}
.game_page .in_game_description p {
  margin: 0;
  padding: 0;
}
.game_page .panic_button_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #1E1E1E;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}
.game_page .panic_button_header .close_game_wrap {
  flex: 1;
}
.game_page .panic_button_header .clock_wrap {
  margin-left: 10px;
}
@media only screen and (max-width: 1200px) {
  .game_page .panic_button_header {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 1200px) {
  .game_page {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .game_page .page_sidebar, .game_page .page_header, .game_page .static_menu_wrap, .game_page .menu_wrap {
    display: none;
  }
  .game_page .gameplay_nav, .game_page .page_footer, .game_page .game_controls {
    display: none;
  }
  .game_page .page_main, .game_page .game, .game_page .game_wrap {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}

.page_games .row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.page_games .row > .column {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .page_games .row {
    display: block;
    flex-direction: column;
  }
  .page_games .row > .column {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .page_games .row {
    display: block;
  }
}
.page_games .games_page_head_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 50px 0 30px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .games_page_head_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .games_page_head_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .page_games .games_page_head_wrap {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }
  .page_games .games_page_head_wrap .description {
    text-align: center !important;
  }
}
.page_games .games_page_head_wrap .title {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
  margin: 0;
  line-height: 1;
}
.page_games .games_page_head_wrap .description {
  line-height: 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  color: #FFFFFF;
}
.page_games .games_filter_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .games_filter_row .search_wrap {
    width: 49%;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .games_filter_row .search_wrap {
    width: 49%;
  }
}
.page_games .games_filter_row .all_games_wrap {
  flex: 1;
  margin-left: 20px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .games_filter_row .all_games_wrap {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .games_filter_row .all_games_wrap {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .games_filter_row .all_games_wrap .all_game {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .games_filter_row .all_games_wrap .all_game {
    width: 100%;
  }
}
.page_games .games_filter_row .field-search_games_terms .form-control {
  line-height: 18px;
  font-size: 15px;
}
.page_games .games_filter_row .providers_wrap .form-group, .page_games .games_filter_row .providers_wrap .selectric-wrapper, .page_games .games_filter_row .providers_wrap .selectric {
  height: 40px;
}
.page_games .games_filter_row .providers_wrap .button {
  color: #999999;
}
.page_games .games_filter_row .no-border {
  border: none;
}
.page_games .games_filter_row .no-border .selectric, .page_games .games_filter_row .no-border .form-control {
  border: none;
}
.page_games .games_filter_wrap {
  margin: 45px 0 50px;
}
.page_games .providers_wrap {
  max-width: 100%;
  min-width: 260px;
}
.page_games .providers_wrap .selectric-wrapper .selectric .label {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #999999;
}
.page_games .providers_wrap .selectric-wrapper .selectric-items {
  top: calc(100% + 5px);
  text-align: center;
}
.page_games .providers_wrap .selectric-wrapper .selectric-items li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 4px 10px;
}
.page_games .providers_wrap .selectric-wrapper .selectric-items li > svg {
  max-width: 84px;
  height: auto;
  max-height: 100%;
}
.page_games .providers_wrap .selectric-wrapper .selectric-items li > img {
  max-width: 84px;
  height: auto;
  max-height: 100%;
  filter: brightness(0%) invert(50%);
}
.page_games .providers_wrap .selectric-wrapper .selectric-items li.selected svg *, .page_games .providers_wrap .selectric-wrapper .selectric-items li:hover svg * {
  fill: #FDD835 !important;
}
.page_games .providers_wrap .selectric-wrapper .selectric-items li.selected img, .page_games .providers_wrap .selectric-wrapper .selectric-items li:hover img {
  filter: brightness(0%) invert(94%) sepia(17%) saturate(2360%) hue-rotate(329deg) brightness(109%) contrast(98%);
}
.page_games .providers_wrap .selectric-wrapper .selectric-items .selectric-hide-select select.form-control {
  opacity: 1;
}
.page_games .providers_wrap .selectric-above .selectric-items {
  top: auto;
  bottom: calc(100% + 5px);
}
.page_games .providers_wrap select.form-control {
  opacity: 0;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .providers_wrap {
    width: 49%;
    min-width: 40%;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .providers_wrap {
    width: 49%;
    min-width: 40%;
    margin-left: 5px;
  }
}
.page_games .huge_title {
  margin: 10px 0;
  line-height: 60px;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #FDD835;
}
.page_games .button_providers {
  position: relative;
  padding: 0 15px;
  text-align: left;
}
.page_games .button_providers .icon {
  position: absolute;
  top: 0;
  right: 15px;
  float: right;
  padding: 0 0px;
  font-size: 20px;
  transition: 0.2s all ease;
}
.page_games .button_providers.open .icon {
  transform: scaleY(-1);
}
.page_games .games_all_btn {
  padding-bottom: 60px;
  text-align: center;
}
.page_games .rewards {
  max-width: 100%;
  padding: 60px 40px 120px;
  background: #222222;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .page_games .rewards {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1199px) {
  .page_games .rewards {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page_games .rewards {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .rewards .rewards__header {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .rewards .rewards__header {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 576px) {
  .page_games .rewards .rewards__header {
    padding: 0 20px;
  }
}
.page_games .rewards .title {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
  margin: 0 0 10px;
}
.page_games .rewards .description {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
  padding: 0 10px;
}
@media only screen and (min-width: 1200px) {
  .page_games .rewards .description {
    padding: 0 200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .page_games .rewards .rewards__holder {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .page_games .rewards .rewards__holder {
    margin-right: 0;
    margin-left: 0;
  }
}
.page_games .rewards .reward_item_wrap {
  width: 100%;
  max-width: 1280px;
  margin: 60px auto 0;
}
.page_games .rewards .reward_item_wrap .slick_items_rewards {
  padding: 10px 0;
}
@media screen and (max-width: 1199px) {
  .page_games .rewards .reward_item_wrap .slick_items_rewards {
    padding: 0 22px;
  }
}
@media only screen and (max-width: 576px) {
  .page_games .rewards .reward_item_wrap .slick_items_rewards {
    padding: 0;
  }
}
.page_games .rewards .reward_item_wrap .slick_items_rewards > div {
  display: block;
}
.page_games .rewards .reward_item_wrap .rewards_item {
  max-width: 400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 1199px) {
  .page_games .rewards .reward_item_wrap .rewards_item {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .page_games .rewards .reward_item_wrap .rewards_item {
    max-width: 400px;
  }
}
@media only screen and (max-width: 576px) {
  .page_games .rewards .reward_item_wrap .rewards_item {
    max-width: 380px;
  }
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 70px 25px 60px;
  text-align: center;
  background-color: #222;
  border: 1px solid #333333;
  border-radius: 20px;
  transition: 0.2s all ease;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .page_games .rewards .reward_item_wrap .rewards_item .reward_content {
    padding: 50px 15px 30px;
  }
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content .reward_img {
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #333333;
  border-radius: 50%;
  background-image: -webkit-radial-gradient(50% 50%, circle, rgba(60, 60, 60, 0.75), #1a1a1a);
  background-image: radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.75), #1a1a1a);
  box-shadow: 0 10px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.2s all ease;
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content .reward_img img {
  width: 90px;
  max-width: 100%;
  transition: 0.2s all ease;
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content .reward__title {
  margin: 40px 0 10px;
  line-height: 29px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content .reward__description {
  line-height: 21px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #999999;
}
.page_games .rewards .reward_item_wrap .rewards_item .reward_content .reward_action {
  margin: 30px 0;
}
.page_games .rewards .reward_item_wrap .rewards_item:hover .reward_content {
  border: 1px solid #FDD835;
  box-shadow: 0px 0px 10px 1px #FDD835;
}
.page_games .rewards .reward_item_wrap .rewards_item:hover .reward_img {
  border: 5px solid #FDD835;
}
.page_games .rewards .reward_item_wrap .rewards_item:hover .reward_img img {
  width: 100px;
}
.page_games .jackpot_wrap {
  padding: 60px 0 120px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .jackpot_wrap {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .jackpot_wrap {
    padding: 60px 0;
  }
}
.page_games .jackpot_wrap .game_item .image {
  margin-bottom: 10px;
}
.page_games .jackpot_wrap .game_item .game_caption {
  font-size: 18px;
  color: #FDD835;
}
.page_games .jackpot_wrap .jackpot_total {
  position: relative;
  margin: 0 0 30px;
  line-height: 1;
  text-align: center;
  color: #FDD835;
}
.page_games .jackpot_wrap .jackpot_total svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.page_games .jackpot_wrap .jackpot_total svg circle {
  display: block;
  fill: #ffd414;
}
.page_games .jackpot_wrap .jackpot_total .label {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
}
.page_games .jackpot_wrap .jackpot_total .number {
  font-size: 33px;
  font-weight: 900;
}
.page_games .jackpot_wrap .jackpot_action {
  text-align: center;
}
.page_games .ready_wrap {
  padding: 60px 0 120px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .ready_wrap {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .ready_wrap {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .ready_wrap .ready__header {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .ready_wrap .ready__header {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 576px) {
  .page_games .ready_wrap .ready__header {
    padding: 0 20px;
  }
}
.page_games .ready_wrap .ready_title {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
}
.page_games .ready_wrap .ready_amount {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
}
.page_games .ready_wrap .item_ready_play_wrap {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 0;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item {
  text-align: center;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item .ready_content .ready_img {
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #333333;
  border-radius: 50%;
  background-image: -webkit-radial-gradient(50% 50%, circle, rgba(60, 60, 60, 0.75), #1a1a1a);
  background-image: radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.75), #1a1a1a);
  box-shadow: 0 10px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.2s all ease;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item .ready_content .ready_img img {
  width: 50%;
  transition: 0.2s all ease;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item .ready_content .ready__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
  color: #FDD835;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item .ready_content .ready__description {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item:hover .ready_img {
  border: 5px solid #FDD835;
}
.page_games .ready_wrap .item_ready_play_wrap .ready_item:hover .ready_img img {
  width: 60%;
}
.page_games .ready_wrap .ready_action {
  text-align: center;
}
.page_games .promo_hero {
  padding: 60px 0 90px;
  background: #222222;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .page_games .promo_hero {
    padding: 60px 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page_games .promo_hero {
    padding: 60px 0 30px;
  }
}
.page_games .slick_items_rewards .reward {
  margin: 0 auto;
}
.page_games .btn-slick_home.prev {
  top: 50%;
}
.page_games .btn-slick_home.next {
  top: 50%;
}

.home .card-list .card-list__title {
  margin: 0 0 30px 0;
  font-weight: 600;
  text-align: center;
}
.home .card-list .card-list__title .title {
  display: block;
  margin-bottom: 10px;
  line-height: 60px;
  font-size: 50px;
  color: #FDD835;
}
.home .card-list .card-list__title .subtitle {
  display: block;
  line-height: 24px;
  font-size: 20px;
  font-style: normal;
}
.home .card-list .card-list__content {
  justify-content: center;
}
.home .jackpot_wrap .jackpot_total .label {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
}
.home .jackpot_wrap .jackpot_total .number {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
  line-height: 36px;
  font-size: 30px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .home .jackpot_wrap {
    padding: 60px 0 25px;
  }
}
@media only screen and (max-width: 768px) {
  .home .jackpot_wrap {
    padding: 60px 0 25px;
  }
}
.home .rewards .rewards__grid {
  padding: 0;
}
.home .rewards .rewards__grid .slick_items_rewards .slick-track {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
}
.home .rewards .rewards__grid .slick_items_rewards .slick-track .rewards_item {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.home .rewards .rewards__grid .slick_items_rewards .slick-track .rewards_item .reward {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.home .rewards .rewards__grid .slick_items_rewards .slick-track .rewards_item .reward .reward__buttons {
  margin-top: auto;
}
.home .rewards .slick_items_rewards .slick-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 20px 0;
}
@media only screen and (max-width: 576px) {
  .home .rewards .slick_items_rewards .slick-track {
    padding: 0;
  }
}
.home .rewards .slick_items_rewards .slick-track .rewards_item {
  height: auto;
}
.home .rewards .slick_items_rewards .slick-track .rewards_item .reward__description {
  margin-bottom: 30px;
}
.home .rewards .slick_items_rewards .slick-track .rewards_item .reward_action {
  margin: auto 0 0;
}
.home .rewards .plans__list {
  margin-bottom: 0 !important;
}

.limits_page {
  padding-bottom: 70px;
}
.limits_page .title {
  width: 100%;
  margin: 70px 0 5px;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: #FDD835;
}
.limits_page .subtitle {
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #999999;
}
.limits_page .divided-title {
  margin: 70px 0 50px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .limits_page .form.block_type .radio_menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .limits_page .form.block_type .radio_menu > label {
    max-width: 100%;
  }
  .limits_page .form.block_type .radio_menu > label:not(:first-child) {
    margin-top: 30px;
    margin-left: 0;
  }
  .limits_page .form.block_type .radio_menu > label .text {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .limits_page .form.block_type .radio_menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 30px;
  }
  .limits_page .form.block_type .radio_menu > label {
    max-width: 100%;
  }
  .limits_page .form.block_type .radio_menu > label:not(:first-child) {
    margin-top: 30px;
    margin-left: 0;
  }
  .limits_page .form.block_type .radio_menu > label .text {
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .limits_page .form.block_type .radio_menu {
    padding: 0;
  }
}
.limits_page .form.block_duration .radio_menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  grid-auto-flow: column;
  gap: 20px;
  margin: 20px auto;
  padding: 0 20px;
  justify-content: center;
  justify-items: center;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .limits_page .form.block_duration .radio_menu {
    grid-template-columns: repeat(2, 50%);
    grid-auto-flow: unset;
  }
}
.limits_page .form.block_duration .radio_menu > label {
  width: 120px;
  margin: 0;
}
.limits_page .form.block_duration .radio_menu > label .radio {
  margin-right: 16px;
}
.limits_page .form.block_time .radio_menu {
  justify-content: space-evenly;
}
.limits_page .form.block_time .radio_menu > label {
  width: auto;
  max-width: unset;
}
.limits_page .form.block_time .radio_menu > label .text {
  width: auto;
  max-width: unset;
}
@media only screen and (max-width: 576px) {
  .limits_page .form.block_time .radio_menu {
    max-width: 400px;
    flex-wrap: wrap;
  }
  .limits_page .form.block_time .radio_menu > label {
    width: 50%;
    max-width: 170px;
    padding: 10px;
    margin-left: 0;
  }
}
.limits_page .radio_menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.limits_page .radio_menu > label {
  width: 100%;
  max-width: 250px;
}
.limits_page .radio_menu > label:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .limits_page .radio_menu > label:not(:first-child) {
    margin-left: 15px;
  }
}
.limits_page .radio_menu > label .radio {
  margin-right: 20px;
}
.limits_page .radio_menu > label .text {
  width: 100%;
  max-width: 200px;
  font-weight: 600;
  font-size: 16px;
}
.limits_page .radio_menu > label .text .caption {
  margin-bottom: 10px;
  font-size: 20px;
  color: #FFFFFF;
}
.limits_page .radio_menu > label .text .description {
  font-size: 14px;
  color: #999999;
}
.limits_page .input_holder {
  width: 100%;
  max-width: 355px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.limits_page .input_holder .form-group {
  width: 100%;
  margin-bottom: 10px;
}
.limits_page .date_picker {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.limits_page .date_picker > .form-group {
  width: 49%;
}
.limits_page .submit_button_row {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.limits_page .grid-view {
  overflow-x: auto;
}
@media only screen and (min-width: 993px) {
  .limits_page .grid-view::-webkit-scrollbar {
    height: 5px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
  }
  .limits_page .grid-view::-webkit-scrollbar-thumb {
    background-color: #454545;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 576px) {
  .limits_page .grid-view {
    overflow: visible;
  }
}
.limits_page .table-bordered {
  width: calc(100% - 2px);
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
}
.limits_page .table-bordered tbody > tr {
  height: 50px;
  border: 1px solid #333333;
  background-color: #222222;
}
.limits_page .table-bordered th, .limits_page .table-bordered td {
  padding: 0 20px;
  text-align: left;
}
.limits_page .table-bordered th {
  padding-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}
.limits_page .table-bordered td {
  font-weight: 400;
  font-size: 12px;
  color: #AAAAAA;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .limits_page .table-bordered {
    width: 100%;
  }
  .limits_page .table-bordered thead {
    display: none;
  }
  .limits_page .table-bordered tbody tr {
    display: block;
    height: auto;
    padding: 20px 10px;
  }
  .limits_page .table-bordered tbody tr:not(:first-child) {
    border-top: none;
  }
  .limits_page .table-bordered td {
    text-align: right;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 14px;
  }
  .limits_page .table-bordered td:before {
    width: 30%;
    content: attr(data-label);
    float: left !important;
    padding-right: 5px;
    text-align: left;
    text-transform: none;
    font-weight: 600;
    color: #FFFFFF;
  }
  .limits_page .table-bordered td.actions {
    margin-top: 10px;
  }
  .limits_page .table-bordered td.actions:before {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .limits_page .table-bordered {
    width: 100%;
    max-width: 500px;
  }
  .limits_page .table-bordered thead {
    display: none;
  }
  .limits_page .table-bordered tbody tr {
    display: block;
    height: auto;
    padding: 20px 10px;
  }
  .limits_page .table-bordered tbody tr:not(:first-child) {
    border-top: none;
  }
  .limits_page .table-bordered td {
    text-align: right;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 14px;
  }
  .limits_page .table-bordered td:before {
    width: 30%;
    content: attr(data-label);
    float: left !important;
    padding-right: 5px;
    text-align: left;
    text-transform: none;
    font-weight: 600;
    color: #FFFFFF;
  }
  .limits_page .table-bordered td.actions {
    margin-top: 10px;
  }
  .limits_page .table-bordered td.actions:before {
    display: none;
  }
}
.limits_page .suspend_grid .description {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}
.limits_page .suspend_grid .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 40px;
}
.limits_page .grid-view {
  margin: 40px 0;
}
.limits_page .terms {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}
.limits_page .terms .title_terms {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #AAAAAA;
}
.limits_page .terms .list {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #AAAAAA;
}

.lottery_view {
  padding-bottom: 30px;
}
.lottery_view .row {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .lottery_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .lottery_view .row.row-reverse .column {
    width: 100%;
  }
  .lottery_view .row.row-reverse .column.left {
    border: none;
  }
  .lottery_view .row.row-reverse .column.right {
    border: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .lottery_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .lottery_view .row.row-reverse .column {
    width: 100%;
  }
  .lottery_view .row.row-reverse .column.left {
    border: none;
  }
  .lottery_view .row.row-reverse .column.right {
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .lottery_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .lottery_view .row.row-reverse .column {
    width: 100%;
  }
  .lottery_view .row.row-reverse .column.left {
    border: none;
  }
  .lottery_view .row.row-reverse .column.right {
    border: none;
  }
}
.lottery_view .row .column {
  width: 50%;
}
.lottery_view .row .column.left {
  border: 2px solid #2E2E2E;
  padding: 10px 30px;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .lottery_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .lottery_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .lottery_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .lottery_view .row .column.left {
    padding: 5px 30px;
  }
}
.lottery_view .row .column.right {
  border: 2px solid #2E2E2E;
  border-left: none;
  padding: 30px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .lottery_view .row .column.right {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .lottery_view .row .column.right {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .lottery_view .row .column.right {
    padding: 5px 30px;
  }
}
.lottery_view .page_banner .image img {
  width: 100%;
}
.lottery_view .status {
  position: absolute;
  right: 0;
  top: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .lottery_view .status {
    position: relative;
    top: 0;
    margin: 10px 0;
  }
}
.lottery_view .status.active {
  color: #009688;
}
.lottery_view .status.pending {
  color: #2187FF;
}
.lottery_view .status.finished {
  color: #F44336;
}
.lottery_view .lottery_title {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .lottery_view .lottery_title {
    margin-top: 0px;
  }
}
.lottery_view .lottery_title span {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}
.lottery_view .lottery_title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
  color: #FDD835;
  text-align: center;
  margin: 0;
}
.lottery_view .lottery_prize_pool {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .lottery_view .lottery_prize_pool {
    margin-bottom: 5px;
  }
}
.lottery_view .lottery_prize_pool .label {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}
.lottery_view .lottery_prize_pool .prize-amount .prize-pool {
  font-style: normal;
  font-weight: 600;
  font-size: 44px;
  line-height: 53px;
  color: #FDD835;
}
.lottery_view .info {
  width: 100%;
  overflow-x: auto;
}
.lottery_view .info .info_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
  overflow: hidden;
}
.lottery_view .info .info_list.slick-initialized {
  display: block;
  opacity: 1;
  overflow: initial;
}
.lottery_view .info .info_list .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  font-weight: 400;
  font-size: 16px;
  background: #2E2E2E;
}
.lottery_view .info .info_list .item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 2px;
  height: 100%;
  background: #1E1E1E;
}
.lottery_view .info .info_list .item:last-child:after {
  display: none;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .lottery_view .info .info_list .item {
    height: 70px;
  }
}
.lottery_view .info .info_list .item .label {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
}
.lottery_view .info .info_list .item .active {
  color: #4CAF50;
}
.lottery_view .info .info_list .item .non-active {
  color: #FFFFFF;
}
.lottery_view .description_lottery .description {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
  margin: 10px 0;
  text-align: center;
}
.lottery_view .description_lottery .lottery_action {
  margin: 20px auto;
  text-align: center;
}
.lottery_view .prizes__dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .lottery_view .prizes__dots {
    margin: -10px 0 0;
  }
}
.lottery_view .prizes__dots li {
  width: 12px;
  height: 12px;
  margin: 5px 4px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #000;
  cursor: pointer;
}
.lottery_view .prizes__dots li.slick-active {
  background-color: #FDD835;
}
.lottery_view .prizes__dots button {
  visibility: hidden;
}
.lottery_view .btn-slick {
  position: absolute;
  top: 35%;
  cursor: pointer;
  font-size: 30px;
  z-index: 2;
}
.lottery_view .btn-slick.prev {
  left: 80px;
}
.lottery_view .btn-slick.next {
  right: 80px;
}
.lottery_view .btn-slick .icon {
  color: #FDD835;
}
@media screen and (max-width: 1550px) {
  .lottery_view .btn-slick.prev {
    left: 0px;
  }
  .lottery_view .btn-slick.next {
    right: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .lottery_view .btn-slick {
    top: 30%;
  }
}
.lottery_view .slider-wrap .label {
  font-style: normal;
  font-weight: 700;
  font-size: 25.0498px;
  line-height: 30px;
  color: #FDD835;
  text-align: center;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  .lottery_view .slider-wrap .label {
    margin: 5px 0;
  }
}
.lottery_view .slider-wrap .lottery-slider {
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
}
.lottery_view .slider-wrap .lottery-slider.slick-initialized {
  display: block;
  opacity: 1;
}
.lottery_view .slider-wrap .lottery-slider .table-slider__item img {
  margin: 0 auto;
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #333333;
  border-radius: 50%;
  background-image: -webkit-radial-gradient(50% 50%, circle, rgba(60, 60, 60, 0.75), #1a1a1a);
  background-image: radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.75), #1a1a1a);
  box-shadow: 0 10px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.2s all ease;
  width: 300px;
  height: 300px;
}
@media only screen and (max-width: 576px) {
  .lottery_view .slider-wrap .lottery-slider .table-slider__item img {
    width: 180px;
    height: 180px;
  }
}
.lottery_view .slider-wrap .lottery-slider .table-slider__item .title {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FDD835;
  text-align: center;
  margin: 15px 0;
}
@media only screen and (max-width: 576px) {
  .lottery_view .slider-wrap .lottery-slider .table-slider__item .title {
    font-size: 14px;
    margin: 10px 0;
  }
}

.promo_page {
  padding: 60px 0;
}
.promo_page .card_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: -25px;
  padding: 100px 0 290px;
}
.promo_page .card_list > .item {
  width: 100%;
  max-width: 50%;
  margin: 0 0 40px;
  padding: 0 25px;
}

.rewards_stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 900px;
  padding: 80px 12px;
  text-align: center;
}
.rewards_stub .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  color: #FDD835;
}
.rewards_stub .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #FFFFFF;
}
.rewards_stub .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.rewards_stub .row .column {
  padding: 12px;
  flex-basis: 420px;
}
.rewards_stub .cards {
  width: 100%;
  padding-top: 23px;
}
.rewards_stub .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #333333;
}
.rewards_stub .card.description_card {
  justify-content: center;
}
.rewards_stub .card.rewards_card {
  min-height: 500px;
  padding: 30px 20px;
  background: url("./images/rewards/stub/bg.png") no-repeat top center;
  background-size: cover;
}
.rewards_stub .card .text {
  text-align: left;
}
.rewards_stub .reward_items {
  display: flex;
  margin-top: auto;
  justify-content: space-around;
}
.rewards_stub .reward_items .item {
  padding: 0 4px;
  flex: 1;
}
.rewards_stub .reward_items .item .image {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  object-fit: cover;
}
.rewards_stub .reward_items .item .caption {
  margin-top: 10px;
  font-size: 18px;
  line-height: 22px;
}
@media only screen and (max-width: 576px) {
  .rewards_stub .card.rewards_card {
    min-height: 430px;
    padding: 30px 15px;
  }
  .rewards_stub .reward_items .item .image {
    width: 80px;
    height: 80px;
  }
  .rewards_stub .reward_items .item .caption {
    font-size: 16px;
    line-height: 1;
  }
}

.rewards {
  width: 100%;
}
.rewards .rewards__grid {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 0;
}
.rewards .rewards__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 30px;
}
.rewards .rewards__row .overview {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-basis: 540px;
  padding: 20px;
}
.rewards .rewards__row .overview .overview__content {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row .overview .overview__content {
    max-width: 450px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1360px) {
  .rewards .rewards__row .overview {
    justify-content: flex-end;
    flex-basis: 440px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards .rewards__row .overview {
    justify-content: flex-end;
    width: unset;
    max-width: 440px;
    flex-basis: unset;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards .rewards__row .overview {
    flex-basis: unset;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row .overview {
    flex-basis: unset;
  }
}
.rewards .rewards__row .tiles {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-basis: 660px;
  padding: 20px;
}
.rewards .rewards__row .tiles .tiles__content {
  width: 100%;
  max-width: 520px;
  text-align: center;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards .rewards__row .tiles .tiles__content {
    max-width: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row .tiles .tiles__content {
    max-width: 400px;
  }
}
.rewards .rewards__row .tiles .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards .rewards__row .tiles .list {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row .tiles .list {
    justify-content: center;
  }
}
.rewards .rewards__row .tiles .list.disabled .tile__content .image {
  filter: grayscale(100%);
}
.rewards .rewards__row .tiles .list.disabled .tile__content.active .image {
  filter: grayscale(0);
}
@media only screen and (min-width: 1201px) and (max-width: 1360px) {
  .rewards .rewards__row .tiles {
    justify-content: flex-start;
    flex-basis: 380px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards .rewards__row .tiles {
    justify-content: flex-start;
    width: 100%;
    max-width: 380px;
    flex-basis: unset;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards .rewards__row .tiles {
    flex-basis: unset;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row .tiles {
    flex-basis: unset;
  }
}
.rewards .rewards__row .reward {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards .rewards__row {
    padding: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards .rewards__row {
    flex-direction: column;
  }
  .rewards .rewards__row .divider {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewards__row {
    flex-direction: column;
    padding: 0;
  }
  .rewards .rewards__row .divider {
    display: none;
  }
}
.rewards .rewards__column {
  margin-top: 85px;
}
.rewards .rewards__column .description {
  width: 100%;
  max-width: 820px;
  margin: 55px auto 0;
  padding: 0 20px;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
}
.rewards .head {
  margin-bottom: 40px;
  text-align: center;
}
.rewards .head .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}
.rewards .text {
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}
.rewards .reward {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  padding: 60px 55px;
  border: 1px solid #333333;
  border-radius: 20px;
  background-color: #222222;
}
.rewards .reward .reward__progress {
  margin-bottom: 40px;
}
.rewards .reward .reward__info {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}
.rewards .reward .reward__info .title {
  margin-bottom: 10px;
  font-size: 24px;
  color: #FFFFFF;
}
.rewards .reward .reward__info .text {
  font-size: 16px;
}
.rewards .reward .reward__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
}
.rewards .reward .reward__buttons > .button {
  margin: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1370px) {
  .rewards .reward .reward__buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards .reward {
    padding: 60px 25px;
  }
}
@media only screen and (max-width: 576px) {
  .rewards .reward {
    padding: 60px 25px;
  }
}
.rewards .bonus_tile {
  margin-bottom: 40px;
  width: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-weight: 600;
  border-radius: 15px;
  background-color: #222222;
  box-shadow: 0 0 0 2px #333333;
}
.rewards .bonus_tile .icon {
  font-size: 50px;
  line-height: 1;
  color: #FDD835;
}
.rewards .bonus_tile .icon i {
  display: block;
}
.rewards .bonus_tile .text {
  width: 100%;
  max-width: 222px;
  margin: 7px auto 0;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
}
.rewards .bonus_tile .progress, .rewards .bonus_tile .grid {
  width: 100%;
  max-width: 310px;
  margin: auto;
}
.rewards .bonus_tile .progress {
  width: 100%;
  margin-bottom: 20px;
}
.rewards .bonus_tile .progress .bonus_info {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}
.rewards .bonus_tile .progress .progress_bar {
  width: 100%;
  border-radius: 5px;
  background-color: #333333;
}
.rewards .bonus_tile .progress .progress_bar .fill {
  height: 5px;
  border-radius: 5px 0 0 5px;
  background-color: #009688;
}
.rewards .bonus_tile .grid .grid__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 3px 0;
  font-weight: 600;
  font-size: 14px;
  color: #999999;
}
.rewards .bonus_tile .grid .grid__row .label {
  margin-right: 10px;
}
.rewards .tile {
  max-width: 180px;
  margin-bottom: 30px;
  padding: 0 10px;
}
.rewards .tile .tile__content {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 15px;
  background-color: #222222;
}
.rewards .tile .tile__content.active .money {
  color: #009688;
}
.rewards .tile .tile__content .caption {
  font-size: 14px;
  color: #999999;
}
.rewards .tile .tile__content .price {
  font-size: 24px;
  color: #FFFFFF;
}
.rewards .tile .tile__content .overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  color: #FDD835;
  background: rgba(0, 0, 0, 0.75);
  transition: 180ms ease;
}
.rewards .tile .tile__content .button_claim {
  margin-top: 20px;
}
.rewards .tile .tile__content:not(.game_item) {
  box-shadow: 0 0 0 2px #333333;
}
.rewards .tile .tile__content.game_item {
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition: 180ms ease;
}
.rewards .tile .tile__content.game_item .overlay:hover {
  opacity: 1;
}
.rewards .tile .tile__content.game_item.active {
  box-shadow: 0 0 0 2px #FDD835;
}
.rewards .tile .tile__label {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 576px) {
  .rewards .tile {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 374px) {
  .rewards .tile {
    max-width: 150px;
    margin-bottom: 10px;
    padding: 0 5px;
  }
  .rewards .tile .tile__content {
    width: 140px;
    height: 140px;
  }
}
.rewards.plans .plans__head {
  margin-bottom: 55px;
  padding: 0 20px;
  text-align: center;
  line-height: 1;
}
.rewards.plans .plans__head .title {
  margin-bottom: 15px;
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
  color: #FFFFFF;
}
@media only screen and (max-width: 576px) {
  .rewards.plans .plans__head .title {
    font-size: 24px;
  }
}
.rewards.plans .plans__head .subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #999999;
}
@media only screen and (min-width: 1400px) {
  .rewards.plans .plans__head {
    padding: 0 33px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards.plans .plans__head {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 576px) {
  .rewards.plans .plans__head {
    padding: 0 30px;
  }
}
.rewards.plans .plans__list {
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 90px;
  padding: 0 15px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .rewards.plans .plans__list {
    display: flex;
  }
}
.rewards.plans .plans__list .reward {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 10px 5px;
  padding: 60px 17px;
}
@media only screen and (min-width: 1400px) {
  .rewards.plans .plans__list .reward {
    margin: 10px 18px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards.plans .plans__list .reward {
    margin: 10px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards.plans .plans__list .reward {
    margin: 10px;
  }
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .rewards.plans .plans__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards.plans .plans__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .rewards.plans .plans__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .rewards.plans .plans__list {
    margin-bottom: 47px;
  }
}
.rewards.plans .plans__list_slider {
  display: none;
}
@media screen and (max-width: 1199px) {
  .rewards.plans .plans__list_slider {
    display: block;
  }
}
.rewards.plans .plans__list_slider .slick_items_rewards {
  padding: 0 22px;
}
@media only screen and (max-width: 576px) {
  .rewards.plans .plans__list_slider .slick_items_rewards {
    padding: 0;
  }
}
.rewards.plans .plans__description {
  padding: 0 20px;
  color: #888888;
}
.rewards.plans .plans__description .description {
  margin: 50px 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.rewards.plans .plans__description .info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.rewards.plans .plans__description .info .info__card {
  width: 100%;
  max-width: 615px;
  text-align: left;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 45px 35px;
}
.rewards.plans .plans__description .info .info__card:first-child {
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .rewards.plans .plans__description .info .info__card:first-child {
    margin-right: 0;
  }
}
.rewards.plans .plans__description .info .info__card .title {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
}
.rewards.plans .plans__description .info .info__card .text {
  line-height: 19px;
  font-weight: 400;
  font-size: 14px;
}
.rewards.plans .plans__description .info .info__card .list {
  margin-top: 35px;
  padding: 0;
  list-style-type: none;
}
.rewards.plans .plans__description .info .info__card .list .list__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.rewards.plans .plans__description .info .info__card .list .list__item:not(:first-child) {
  margin-top: 12px;
}
.rewards.plans .plans__description .info .info__card .list .list__item .point {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 27px;
  width: 27px;
  height: 27px;
  margin-right: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 50%;
  background: #333333;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .rewards.plans .plans__description .info .info__card {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .rewards.plans .plans__description .info .info__card:not(:first-child) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .rewards.plans .plans__description .info .info__card {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .rewards.plans .plans__description .info {
    flex-direction: column;
    align-items: center;
  }
}
.rewards.plans .slick_items_rewards .slick-track {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
}
.rewards.plans .slick_items_rewards .slick-track .rewards_item {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  padding: 10px;
}
.rewards.plans .slick_items_rewards .slick-track .rewards_item .reward {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.rewards.plans .slick_items_rewards .slick-track .rewards_item .reward .reward__buttons {
  margin-top: auto;
}
.rewards .amount_select_list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.rewards .amount_select_list .amount_item {
  margin: 5px;
}
.rewards .amount_select_list .amount_item input:checked + .button {
  color: #1E1E1E;
  background-color: #FDD835;
}
.rewards .amount_select_list .amount_item .button {
  min-width: 60px;
  background-color: #444444;
}
.rewards .amount_no_fs {
  margin: 0 0 30px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #FDD835;
}

.divider.vertical {
  width: 1px;
  background: linear-gradient(180deg, rgba(68, 68, 68, 0), #444 50%, rgba(68, 68, 68, 0));
}

.static_page {
  width: 100%;
  padding: 80px 20px;
  font-size: 14px;
  line-height: 19px;
  color: #999999;
}
.static_page .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.static_page .container h3 {
  margin: 60px 0 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  color: #FDD835;
}
.static_page .container p {
  margin: 0 0 30px;
}
.static_page .container a {
  color: #ffcc00;
}
.static_page .container a:hover {
  color: #FDD835;
}
.static_page .container ol, .static_page .container ul {
  margin: 30px 0;
}
.static_page .container ol > li, .static_page .container ul > li {
  margin: 5px 0;
  font-size: 14px;
}
.static_page .container ol > li a, .static_page .container ul > li a {
  color: #FFFFFF;
}
@media only screen and (max-width: 576px) {
  .static_page .container ol, .static_page .container ul {
    padding: 0 0 0 20px;
  }
}
.static_page .title {
  margin: 0;
  font-weight: 600;
  font-size: 30px;
  color: #FDD835;
}
.static_page .paragraphs {
  margin: 30px 0;
}
.static_page .paragraphs > ul {
  padding: 0;
  list-style-type: none;
}
.static_page .paragraphs > ul > li {
  margin: 5px 0;
  font-size: 16px;
}
.static_page .paragraphs > ul > li a {
  color: #fee268;
  transition: 180ms ease;
}
.static_page .paragraphs > ul > li a:hover {
  text-decoration: underline;
}
.static_page table {
  display: inline-block;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.static_page table th, .static_page table td {
  vertical-align: top;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #999999;
}
.static_page table th {
  font-weight: 600;
  color: #FFFFFF;
}
.static_page table td {
  font-weight: 400;
  color: #999999;
}
@media only screen and (max-width: 576px) {
  .static_page {
    padding: 30px 10px;
  }
}

.tournaments_view {
  padding-bottom: 30px;
}
.tournaments_view .row {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .tournaments_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .tournaments_view .row.row-reverse .column {
    width: 100%;
  }
  .tournaments_view .row.row-reverse .column.left {
    border: none;
  }
  .tournaments_view .row.row-reverse .column.right {
    border: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .tournaments_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .tournaments_view .row.row-reverse .column {
    width: 100%;
  }
  .tournaments_view .row.row-reverse .column.left {
    border: none;
  }
  .tournaments_view .row.row-reverse .column.right {
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .tournaments_view .row.row-reverse {
    flex-direction: column-reverse;
  }
  .tournaments_view .row.row-reverse .column {
    width: 100%;
  }
  .tournaments_view .row.row-reverse .column.left {
    border: none;
  }
  .tournaments_view .row.row-reverse .column.right {
    border: none;
  }
}
.tournaments_view .row .column {
  width: 50%;
}
.tournaments_view .row .column.left {
  border: 2px solid #2E2E2E;
  padding: 30px;
}
@media only screen and (min-width: 993px) and (max-width:1200px) {
  .tournaments_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .tournaments_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .tournaments_view .row .column.left {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .tournaments_view .row .column.left {
    padding: 5px 30px;
  }
}
.tournaments_view .row .column.right {
  border: 2px solid #2E2E2E;
  border-left: none;
  padding: 30px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .tournaments_view .row .column.right {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .tournaments_view .row .column.right {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .tournaments_view .row .column.right {
    padding: 5px 30px;
  }
}
.tournaments_view .page_banner .image img {
  width: 100%;
}
.tournaments_view .status {
  position: absolute;
  right: 0;
  top: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tournaments_view .status {
    position: relative;
    top: 0;
    margin: 10px 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.tournaments_view .status.active {
  color: #009688;
}
.tournaments_view .status.pending {
  color: #2187FF;
}
.tournaments_view .status.finished {
  color: #F44336;
}
.tournaments_view .tournaments_title {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tournaments_view .tournaments_title {
    margin-top: 0px;
  }
}
.tournaments_view .tournaments_title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
  color: #FDD835;
  text-align: center;
  margin: 0;
}
.tournaments_view .tournaments_title span {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #FDD835;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}
.tournaments_view .tournaments_prize_pool {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
.tournaments_view .tournaments_prize_pool .label {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}
.tournaments_view .tournaments_prize_pool .prize-amount .prize-pool {
  font-style: normal;
  font-weight: 600;
  font-size: 44px;
  line-height: 53px;
  color: #FDD835;
}
.tournaments_view .info {
  width: 100%;
  overflow-x: auto;
}
.tournaments_view .info .info_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
  overflow: hidden;
}
.tournaments_view .info .info_list.slick-initialized {
  display: block;
  opacity: 1;
  overflow: initial;
}
.tournaments_view .info .info_list .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  font-weight: 400;
  font-size: 16px;
  background: #2E2E2E;
}
.tournaments_view .info .info_list .item:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 2px;
  height: 100%;
  background: #1E1E1E;
}
.tournaments_view .info .info_list .item:last-child:after {
  display: none;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .tournaments_view .info .info_list .item {
    height: 70px;
  }
}
.tournaments_view .info .info_list .item .label {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
}
.tournaments_view .info .info_list .item .active {
  color: #4CAF50;
}
.tournaments_view .info .info_list .item .non-active {
  color: #FFFFFF;
}
.tournaments_view .description_tournaments .description {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
  margin: 10px 0;
  text-align: center;
}
.tournaments_view .description_tournaments .tournaments_action {
  margin: 20px auto;
  text-align: center;
}
.tournaments_view .prizes__dots {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.tournaments_view .prizes__dots li {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #000;
  cursor: pointer;
}
.tournaments_view .prizes__dots li.slick-active {
  background-color: #FDD835;
}
.tournaments_view .prizes__dots button {
  visibility: hidden;
}
.tournaments_view .btn-slick {
  position: absolute;
  top: 35%;
  cursor: pointer;
}
.tournaments_view .btn-slick.prev {
  left: 80px;
}
.tournaments_view .btn-slick.next {
  right: 80px;
}
.tournaments_view .btn-slick .icon {
  color: #FDD835;
}
@media screen and (max-width: 1550px) {
  .tournaments_view .btn-slick.prev {
    left: 0px;
  }
  .tournaments_view .btn-slick.next {
    right: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .tournaments_view .btn-slick {
    top: 30%;
  }
}
.tournaments_view .tablet_body {
  margin: 30px 0;
}
.tournaments_view .tablet_body .table-leaderboard {
  width: 100%;
}
.tournaments_view .tablet_body .table-leaderboard .leaderbord_slider {
  display: flex;
  opacity: 0;
  transition: 0.2s all ease;
}
.tournaments_view .tablet_body .table-leaderboard .leaderbord_slider.slick-initialized {
  display: block;
  opacity: 1;
}
.tournaments_view .tablet_body .table-leaderboard .table {
  width: 100%;
}
.tournaments_view .tablet_body .table-leaderboard .table thead tr {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
  text-align: left;
}
.tournaments_view .tablet_body .table-leaderboard .table thead tr th {
  border-bottom: 1px solid #3A3A3A;
  padding: 10px 0;
}
.tournaments_view .tablet_body .table-leaderboard .table thead tr th:last-child {
  text-align: right;
}
.tournaments_view .tablet_body .table-leaderboard .table tbody td {
  border-bottom: 1px solid #3A3A3A;
  padding: 10px 0;
  width: 25%;
}
.tournaments_view .tablet_body .table-leaderboard .table tbody td:last-child {
  text-align: right;
}
.tournaments_view .tablet_body .table-leaderboard .table tbody tr:last-child td {
  border: none;
}
.tournaments_view .description {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FDD835;
  margin: 10px 0;
  text-align: center;
}
.tournaments_view .game_list_wrap .title {
  font-size: 18px;
  line-height: 22px;
  color: #FDD835;
  margin: 40px 10px 0;
  text-align: center;
}
.tournaments_view .game_list_wrap .next_page_button {
  display: block;
  width: 100%;
  text-align: center;
}

/*# sourceMappingURL=app.css.map*/