html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input {
  outline: none; }

button, a {
  outline: none;
  cursor: pointer; }

@font-face {
  font-family: LCD;
  font-display: swap;
  src: url(../fonts/LCDNova.woff2); }

@font-face {
  font-family: Bold;
  font-display: swap;
  src: url(../fonts/Ubuntu-Bold.woff); }

@font-face {
  font-family: Medium;
  font-display: swap;
  src: url(../fonts/Ubuntu-Medium.woff); }

@font-face {
  font-family: Regular;
  font-display: swap;
  src: url(../fonts/Ubuntu-Regular.woff); }

@font-face {
  font-family: Light;
  font-display: swap;
  src: url(../fonts/Ubuntu-Light.woff); }

html {
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape while allowing user zoom */ }

html.active {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  overflow: hidden; }
  html.active .top {
    padding-right: 17px; }
    html.active .top:before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
      top: 0;
      background-color: rgba(7, 16, 28, 0.75);
      z-index: 1; }

body {
  max-width: 100%;
  background-color: #010a1e;
  background-image: url(../img/bg1_min.png);
  background-size: auto;
  overflow-x: hidden; }

.popup_active {
  width: 100%;
  position: fixed;
  overflow: hidden; }

div#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
  background: #010a1e;
  transition: all .4s; }
  div#preloader.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear; }
  div#preloader.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear; }
  div#preloader .spinner {
    width: 60px;
    height: 60px;
    margin: auto;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

a, button {
  color: #fff;
  text-decoration: none;
  transition: all .4s; }
  a:hover, button:hover {
    text-decoration: underline;
    transition: all .4s; }

strong {
  font-family: 'Bold'; }

button#click {
  width: 34px;
  display: none;
  text-align: center; }
  button#click .mobile {
    display: none; }
  button#click .close {
    display: none; }
  button#click.active .close {
    display: inline-block; }
  button#click.active .open {
    display: none; }

.marquee {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  position: relative;
  margin: 0 20px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid rgba(38, 85, 134, 0.5);
  white-space: nowrap; }
  .marquee:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background-color: transparent;
    background-size: 15px 15px, 15px 15px, 3px 3px, 3px 3px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    background-image: linear-gradient(#1c2636 1px, transparent 1px), linear-gradient(90deg, #1c2636 1px, transparent 1px), linear-gradient(#1c2636 1px, transparent 1px), linear-gradient(90deg, #1c2636 1px, transparent 1px); }
  .marquee span {
    display: inline-block;
    padding-left: 100%;
    -webkit-animation: marquee 15s infinite linear;
    animation: marquee 15s infinite linear;
    font-family: 'LCD';
    line-height: 23px;
    font-size: 24px;
    color: #fc6; }
    .marquee span strong {
      color: #69f; }

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0); } }

@keyframes marquee {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(-100%, 0); } }

.links_border {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2px;
  background-color: #1c8bba;
  border-radius: 6px;
  border: none; }
  .links_border:before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    left: -2px;
    top: -2px;
    background: linear-gradient(to bottom, #d4d7de 0%, #d4d7de 8%, #a1b5ce 23%, #4e6286 50%, #617a9c 58%, #7088b0 69%, #3f577b 100%);
    border-radius: 6px;
    z-index: -1; }
  .links_border:not(:first-child) {
    margin-left: 11px; }
  .links_border.transparent {
    background-color: transparent; }
  .links_border.input {
    width: 200px;
    margin: 0;
    border-bottom: 2px solid #3f577b;
    border-top: 2px solid #d4d7de;
    background-image: linear-gradient(to bottom, #d4d7de 0%, #d4d7de 8%, #a1b5ce 23%, #4e6286 50%, #617a9c 58%, #7088b0 69%, #3f577b 100%);
    background-position: 0 0, 100% 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 2px 100%;
    border-radius: 6px; }
    .links_border.input:not(:first-child) {
      margin-left: 9px; }
    .links_border.input:before {
      right: 0;
      background-image: linear-gradient(to bottom, #d4d7de 0%, #d4d7de 8%, #a1b5ce 23%, #4e6286 50%, #617a9c 58%, #7088b0 69%, #3f577b 100%);
      background-position: 100% 0, 0 0;
      background-color: transparent;
      background-repeat: no-repeat;
      background-size: 2px 100%;
      border-radius: 6px; }
    .links_border.input input {
      width: 100%;
      height: 100%;
      padding: 0 8px;
      background-color: transparent;
      border: none;
      border-radius: 6px;
      font-family: 'Regular';
      font-size: 16px;
      color: #455d81; }
      .links_border.input input::-webkit-input-placeholder {
        color: #455d81; }
      .links_border.input input::-moz-placeholder {
        color: #455d81; }
      .links_border.input input:-ms-input-placeholder {
        color: #455d81; }
      .links_border.input input::-ms-input-placeholder {
        color: #455d81; }
      .links_border.input input::placeholder {
        color: #455d81; }
  .links_border.orange {
    background-color: #f07f07; }
  .links_border span {
    padding: 0 25px;
    text-transform: uppercase;
    font-family: 'Bold';
    font-size: 16px; }

h2.text, span.text {
  font-family: 'Medium';
  background: linear-gradient(to top, #839bc2 0%, #c7dcff 51%, #e6f0ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: uppercase;
  font-size: 25px; }

.container {
  max-width: 1200px;
  margin: 0 auto; }
  .container.text {
    max-width: 1156px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 46px auto 96px;
    padding: 30px 20px 46px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(38, 85, 134, 0.5);
    border-radius: 12px; }
    .container.text *, .container.text * * {
      color: #b2c3d9; }
    .container.text h2 {
      margin: 0;
      font-family: 'Medium';
      font-size: 23px; }
    .container.text h3 {
      margin: 22px 0 0;
      font-family: 'Medium';
      font-size: 23px; }
    .container.text ul.ico {
      display: flex;
      flex-flow: row wrap;
      list-style-position: inside; }
    .container.text ul li {
      font-family: 'Regular';
      line-height: 23px;
      font-size: 17px; }
    .container.text p {
      margin: 0 0 50px;
      font-family: 'Regular';
      letter-spacing: -0.4px;
      line-height: 22px;
      text-align: left;
      font-size: 17px;
      color: #b2c3d9; }
      .container.text p:last-child {
        margin: 0; }
    .container.text .img {
      text-align: center;
      margin: 0 0 20px 0; }
      .container.text .img.left {
        float: left;
        margin: 0 10px 0 0; }
      .container.text .img.right {
        float: right;
        margin: 0 0 0 10px; }
      .container.text .img img {
        max-width: 100%;
        display: inline-block; }
    .container.text .content {
      width: 860px; }
      .container.text .content p:not(:first-child) {
        margin: 50px 0 22px; }
    .container.text .sidebar {
      width: 274px; }
      .container.text .sidebar .jackpot {
        height: 160px;
        display: block;
        position: relative;
        margin: 15px 0 0;
        border: 1px solid #265586;
        border-radius: 6px; }
        .container.text .sidebar .jackpot img {
          width: 100%;
          height: 100%;
          border-radius: 6px; }
        .container.text .sidebar .jackpot a {
          width: 78%;
          height: 43px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          left: 50%;
          top: 47%;
          transform: translateX(-50%);
          z-index: 1;
          text-decoration: none; }
          .container.text .sidebar .jackpot a span {
            font-family: 'Medium';
            font-size: 30px;
            color: #d98d27; }
      .container.text .sidebar .block_users h2, .container.text .sidebar .block_bonus h2 {
        margin: 30px 0 20px; }
      .container.text .sidebar .users {
        height: auto; }
        .container.text .sidebar .users .chl-winners-wrapper {
          height: 263px;
          padding: 1px;
          overflow: hidden; }
          .container.text .sidebar .users .chl-winners-wrapper ul {
            height: 20000em;
            position: relative;
            margin: 0;
            transition: all 0s;
            list-style: none; }
        .container.text .sidebar .users .item {
          width: calc(100% - 4px);
          height: 60px;
          position: relative;
          bottom: 0;
          left: 0;
          top: 0;
          transform: translateX(0);
          display: flex;
          align-items: center;
          flex-flow: row nowrap;
          justify-content: flex-start;
          margin-bottom: 2px;
          padding: 2px;
          background-color: #0d0e1a; }
          .container.text .sidebar .users .item img {
            width: auto;
            height: 100%;
            border-radius: 0; }
          .container.text .sidebar .users .item .desc {
            height: 100%;
            display: flex;
            flex-flow: column;
            justify-content: space-around;
            margin-left: 3px; }
            .container.text .sidebar .users .item .desc span {
              font-family: 'Regular';
              font-size: 14px; }
              .container.text .sidebar .users .item .desc span.name {
                font-size: 16px;
                color: #69f; }
              .container.text .sidebar .users .item .desc span.pay {
                text-transform: uppercase;
                color: #c90; }
              .container.text .sidebar .users .item .desc span.game {
                color: #ccc; }
      .container.text .sidebar .bonus {
        height: 208px; }
        .container.text .sidebar .bonus a {
          width: 234px;
          height: 52px;
          bottom: 23px;
          top: auto;
          border-radius: 6px;
          transition: all .4s; }
          .container.text .sidebar .bonus a:hover {
            bottom: 20px; }
          .container.text .sidebar .bonus a:before {
            content: '';
            height: 100%;
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            top: 0;
            background: linear-gradient(to bottom, red 0%, #be0000 100%);
            border: 1px solid #ff0000;
            border-radius: 6px;
            z-index: 1; }
          .container.text .sidebar .bonus a:after {
            content: '';
            height: 100%;
            position: absolute;
            bottom: -6px;
            right: -1px;
            left: -1px;
            background-color: #690000;
            border-bottom: 1px solid #5f0000;
            border-radius: 0 0 6px 6px;
            box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.75); }
          .container.text .sidebar .bonus a span {
            z-index: 2;
            font-family: 'Regular';
            font-size: 22px;
            color: #fff; }
        .container.text .sidebar .bonus .span {
          width: 100%;
          display: flex;
          flex-flow: column;
          align-items: center;
          position: absolute;
          top: 30%; }
          .container.text .sidebar .bonus .span span {
            font-family: 'Regular';
            font-size: 22px;
            color: #ecc761; }
            .container.text .sidebar .bonus .span span:first-child {
              margin-bottom: 10px;
              color: #eb8014; }
    .container.text .banner {
      position: relative;
      margin: 15px 0 35px; }
      .container.text .banner img {
        max-width: 100%; }
      .container.text .banner .links_border {
        width: 249px;
        position: absolute;
        bottom: 37px;
        left: 39px;
        margin: 0; }
        .container.text .banner .links_border:before {
          z-index: 0; }
        .container.text .banner .links_border:after {
          content: '';
          width: 100%;
          height: 100%;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          top: 0;
          background-color: #1c8bba;
          border-radius: 6px; }
        .container.text .banner .links_border span {
          color: #fff;
          z-index: 1; }
    .container.text .search {
      height: 40px;
      display: flex;
      align-items: center;
      flex-flow: row nowrap;
      justify-content: space-between;
      padding: 0 10px 0 8px;
      background-color: #132235;
      border-radius: 6px; }
      .container.text .search input {
        flex: 1 0 auto;
        padding: 0 10px 0 0;
        background-color: transparent;
        border: none;
        border-radius: 0;
        font-family: 'Regular';
        font-size: 16px;
        color: #455d81; }
        .container.text .search input::-webkit-input-placeholder {
          color: #455d81; }
        .container.text .search input::-moz-placeholder {
          color: #455d81; }
        .container.text .search input:-ms-input-placeholder {
          color: #455d81; }
        .container.text .search input::-ms-input-placeholder {
          color: #455d81; }
        .container.text .search input::placeholder {
          color: #455d81; }
      .container.text .search button {
        width: 19px;
        height: 19px;
        background-image: url("../img/search.png");
        background-color: transparent;
        background-repeat: no-repeat;
        border: none;
        border-radius: 0; }
    .container.text .catalog {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between; }
      .container.text .catalog .item {
        width: 200px;
        height: 150px;
        position: relative;
        margin-top: 20px;
        border: 1px solid #265586;
        border-radius: 6px;
        overflow: hidden;
        cursor: pointer; }
        .container.text .catalog .item:hover:before {
          background: linear-gradient(to bottom, rgba(12, 17, 23, 0.8) 0%, rgba(12, 17, 23, 0.8) 20%, rgba(12, 17, 23, 0.8) 100%); }
        .container.text .catalog .item:hover .button {
          opacity: 1; }
        .container.text .catalog .item:before {
          content: '';
          width: 100%;
          height: 100%;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          top: 0;
          background: linear-gradient(to bottom, rgba(12, 17, 23, 0) 0%, rgba(12, 17, 23, 0) 20%, rgba(12, 17, 23, 0.8) 100%); }
        .container.text .catalog .item img {
          width: 100%; }
        .container.text .catalog .item > span {
          position: absolute;
          bottom: 9px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1;
          font-family: 'Regular';
          white-space: nowrap;
          font-size: 15px;
          color: #fff; }
        .container.text .catalog .item .button {
          width: 100%;
          height: 100%;
          display: flex;
          flex-flow: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          top: 0;
          transition: all .4s;
          cursor: default;
          opacity: 0;
          z-index: 1; }
          .container.text .catalog .item .button a {
            width: 148px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            background-color: rgba(0, 0, 0, 0.4);
            border: 1px solid #fff;
            border-radius: 6px;
            transition: all .4s;
            text-decoration: none; }
            .container.text .catalog .item .button a:hover {
              transform: translateY(3px); }
            .container.text .catalog .item .button a:last-of-type {
              border: 1px solid #f07f07; }
              .container.text .catalog .item .button a:last-of-type span {
                color: #f07f07; }
            .container.text .catalog .item .button a span {
              font-family: 'Regular';
              font-size: 14px;
              color: #c2d4d9; }

.container_fluid.top {
  position: relative;
  background-color: rgba(55, 73, 104, 0.25);
  z-index: 3; }
  .container_fluid.top .container {
    height: 50px;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative; }
  .container_fluid.top button, .container_fluid.top a {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer; }
    .container_fluid.top button:hover, .container_fluid.top a:hover {
      text-decoration: none; }
    .container_fluid.top button span, .container_fluid.top a span {
      font-family: 'Regular';
      font-size: 14px;
      color: #08ba86; }
  .container_fluid.top a.android {
    width: 203px;
    flex: 0 0 203px;
    height: 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    border: 1px solid #08ba86;
    border-radius: 6px; }
    .container_fluid.top a.android img {
      width: 24px; }
    .container_fluid.top a.android span {
      position: relative;
      margin-left: 10px;
      padding-left: 9px; }
      .container_fluid.top a.android span:before {
        content: '';
        width: 1px;
        height: 22px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: #08ba86; }
  .container_fluid.top .lang {
    display: flex;
    flex-flow: row nowrap; }
    .container_fluid.top .lang a.android {
      width: 94px;
      flex: 0 0 94px;
      border-color: #c2d4d9; }
      .container_fluid.top .lang a.android:not(:first-child) {
        margin-left: 10px; }
      .container_fluid.top .lang a.android.active {
        border-color: #34a4df; }
        .container_fluid.top .lang a.android.active span {
          color: #34a4df; }
      .container_fluid.top .lang a.android span {
        margin: 0;
        padding: 0;
        color: #c2d4d9; }
        .container_fluid.top .lang a.android span:before {
          display: none; }

.container_fluid.logo {
  height: 104px;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.75);
  border-top: 2px solid rgba(38, 85, 134, 0.5);
  border-bottom: 2px solid rgba(38, 85, 134, 0.5); }
  .container_fluid.logo .container {
    width: 1200px;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between; }
  .container_fluid.logo a.logo_link {
    max-width: 413px;
    display: block; }
    .container_fluid.logo a.logo_link img {
      width: 100%;
      height: auto; }
  .container_fluid.logo form {
    display: flex;
    flex-flow: row nowrap; }

.container_fluid.menu {
  height: 50px;
  box-shadow: none;
  border-top: none;
  background-color: rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(38, 85, 134, 0.5); }
  .container_fluid.menu ul {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around; }
    .container_fluid.menu ul li.active a {
      color: #f07f07; }
    .container_fluid.menu ul li a {
      font-family: 'Regular';
      text-transform: uppercase;
      font-size: 16px;
      color: #fff; }

.container_fluid.footer {
  height: 70px;
  border-top: 2px solid rgba(38, 85, 134, 0.5); }

.container_fluid.copyright {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .container_fluid.copyright span {
    font-family: 'Regular';
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #5677a4; }
    .container_fluid.copyright span.tablet {
      display: none; }

@media (max-width: 1240px) {
  button#click {
    display: block;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none; }
    button#click.active .close.mobile {
      display: none; }
  body {
    background-image: none; }
  .wrap {
    position: relative; }
    .wrap:before, .wrap:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      right: 0;
      left: 0;
      background-repeat: repeat no-repeat;
      background-size: auto;
      z-index: -1; }
    .wrap:before {
      height: 1024px;
      top: 0;
      background-image: url(../img/bg1_min_tablet.png);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-position: top; }
    .wrap:after {
      bottom: 0;
      background-image: url(../img/bg1_min_tablet_bottom.png);
      background-position: bottom; }
  .links_border {
    height: 40px; }
    .links_border.input input {
      font-size: 18px; }
    .links_border span {
      font-size: 18px; }
  h2.text {
    text-transform: none;
    letter-spacing: -1px; }
  .container {
    width: calc(100% - 40px);
    margin: 0 20px; }
    .container.text {
      width: calc(100% - 74px);
      position: relative;
      margin: 46px 20px 96px;
      padding: 30px 15px 46px; }
      .container.text h2.text span {
        display: none; }
      .container.text .content {
        width: 100%; }
      .container.text .block {
        width: calc(100% - 245px); }
      .container.text .sidebar {
        width: 230px;
        position: absolute;
        right: 15px; }
        .container.text .sidebar h2.text {
          text-align: center; }
        .container.text .sidebar .jackpot {
          height: 134px; }
          .container.text .sidebar .jackpot a {
            top: 44%; }
            .container.text .sidebar .jackpot a span {
              font-size: 26px; }
        .container.text .sidebar .users {
          height: inherit; }
        .container.text .sidebar .bonus {
          height: 187px; }
          .container.text .sidebar .bonus a {
            width: 190px;
            height: 42px;
            top: auto; }
            .container.text .sidebar .bonus a span {
              font-size: 20px; }
          .container.text .sidebar .bonus .span span {
            font-size: 19px; }
            .container.text .sidebar .bonus .span span:first-child {
              margin-bottom: 8px; }
      .container.text .banner {
        margin: 15px 0 65px; }
        .container.text .banner .links_border {
          width: calc(100% - 4px);
          position: relative;
          bottom: 0;
          left: 0;
          margin: 12px 2px 2px; }
      .container.text .catalog {
        justify-content: space-around; }
        .container.text .catalog:after {
          content: '';
          width: 202px;
          position: relative;
          display: block;
          margin: 0 6px; }
        .container.text .catalog .item {
          margin: 20px 6px 0; }
          .container.text .catalog .item:before {
            z-index: -999; }
          .container.text .catalog .item > span {
            width: 100%;
            bottom: 0;
            padding-bottom: 9px;
            text-align: center; }
          .container.text .catalog .item:hover:before {
            z-index: 0; }
          .container.text .catalog .item:hover .button {
            display: flex; }
          .container.text .catalog .item .button {
            display: none;
            opacity: 1;
            transform: translateY(-10px); }
            .container.text .catalog .item .button a {
              width: 178px;
              height: 42px;
              margin-bottom: 11px;
              transform: translateY(-5px); }
              .container.text .catalog .item .button a:hover {
                transform: translateY(-5px); }
              .container.text .catalog .item .button a:last-of-type {
                margin-bottom: 0; }
              .container.text .catalog .item .button a span {
                font-size: 18px; }
  .container_fluid.top .container {
    height: 54px; }
  .container_fluid.top a.android {
    width: 200px;
    flex: 0 0 200px; }
  .container_fluid.logo {
    height: 96px; }
    .container_fluid.logo .container {
      width: calc(100% - 100px);
      margin: 0 50px; }
      .container_fluid.logo .container .click {
        position: relative;
        outline: none; }
        .container_fluid.logo .container .click:before {
          content: '';
          width: 1px;
          height: 50px;
          position: absolute;
          left: -50px;
          top: 50%;
          background-color: #183351;
          transform: translateY(-50%); }
  .container_fluid.menu {
    height: 288px;
    background-color: transparent; }
    .container_fluid.menu form, .container_fluid.menu ul {
      display: none; }
    .container_fluid.menu .active#menu {
      display: flex; }
    .container_fluid.menu .active#forms {
      display: flex; }
    .container_fluid.menu ul {
      height: 100%;
      flex-flow: column;
      align-items: center;
      justify-content: space-around; }
      .container_fluid.menu ul li {
        width: 100%;
        text-align: center; }
        .container_fluid.menu ul li a {
          width: 100%;
          display: block;
          padding: 23px 0 22px;
          font-size: 20px; }
    .container_fluid.menu form {
      width: 520px;
      flex-flow: row wrap;
      justify-content: space-between;
      margin: 0 auto; }
      .container_fluid.menu form .links_border {
        flex: 0 0 100%;
        margin: 0 0 15px; }
        .container_fluid.menu form .links_border:last-child {
          margin: 0; }
        .container_fluid.menu form .links_border.input {
          flex: 0 0 49%;
          margin: 0 0 35px; }
  .container_fluid.footer {
    height: 473px; }
    .container_fluid.footer ul {
      display: flex; }
      .container_fluid.footer ul li a {
        padding: 26px 0;
        line-height: normal; }
        .container_fluid.footer ul li a span {
          display: block; }
  .container_fluid.copyright {
    height: 70px;
    display: flex;
    flex-flow: column;
    align-items: center; }
    .container_fluid.copyright span.desktop {
      display: none; }
    .container_fluid.copyright span.tablet {
      display: inline; } }

@media (max-width: 767px) {
  button#click {
    width: 22px;
    height: 18px; }
    button#click:before {
      height: 34px;
      left: -14px; }
    button#click .tablet {
      display: none; }
    button#click .mobile {
      display: block; }
      button#click .mobile.close {
        display: none; }
    button#click.active {
      display: flex;
      align-items: center;
      justify-content: center; }
      button#click.active .close.tablet {
        display: none; }
      button#click.active .close.mobile {
        display: inline-block; }
  .wrap:before {
    background-image: url(../img/bg1_min_mobile.png); }
  .wrap:after {
    background-image: url(../img/bg1_min_mobile_bottom.png); }
  .container {
    width: calc(100% - 24px);
    margin: 0 12px; }
  h2.text, span.text {
    line-height: normal;
    text-align: center;
    font-size: 20px; }
  .links_border span {
    font-size: 16px; }
  .container.text {
    width: calc(100% - 42px);
    flex-flow: column;
    margin: 20px 12px 45px;
    padding: 250px 9px 623px; }
    .container.text h2, .container.text h3 {
      font-size: 20px; }
    .container.text p {
      font-size: 16px; }
    .container.text .img.left, .container.text .img.right {
      float: none;
      margin: 0 0 20px; }
    .container.text .block {
      width: 100%; }
    .container.text .content {
      width: 100%; }
    .container.text .sidebar {
      position: static; }
      .container.text .sidebar > div {
        width: 274px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%); }
    .container.text .block_jackpot {
      top: 15px; }
      .container.text .block_jackpot .jackpot {
        height: 160px; }
        .container.text .block_jackpot .jackpot a {
          top: 47%; }
    .container.text .block_users {
      bottom: 272px; }
      .container.text .block_users h2.text {
        margin: 0 0 12px; }
    .container.text .block_bonus {
      bottom: 10px; }
      .container.text .block_bonus h2.text {
        margin: 0 0 12px; }
    .container.text .catalog .item .button a {
      width: 168px;
      height: 38px;
      margin-bottom: 13px;
      transform: translateY(-3px); }
      .container.text .catalog .item .button a span {
        font-size: 16px; }
  .container_fluid.top .container {
    height: 50px; }
    .container_fluid.top .container .marquee {
      display: none; }
    .container_fluid.top .container .lang a.android {
      width: 38px;
      max-width: 38px;
      margin-left: 7px; }
      .container_fluid.top .container .lang a.android span {
        max-width: 25px;
        overflow: hidden;
        letter-spacing: 1.1px;
        text-overflow: clip;
        white-space: nowrap; }
  .container_fluid.logo {
    height: 70px; }
    .container_fluid.logo .container {
      width: calc(100% - 26px);
      margin: 0 14px 0 12px; }
    .container_fluid.logo a.logo_link {
      width: calc(100% - 50px);
      max-width: 255px;
      margin: 0 0 -6px; }
  .container_fluid.menu {
    height: 253px; }
    .container_fluid.menu form .links_border {
      width: calc(100% - 4px);
      height: 36px;
      flex: 0 0 auto;
      margin: 2px auto 11px;
      padding: 0; }
      .container_fluid.menu form .links_border:last-child {
        margin: 2px auto; }
      .container_fluid.menu form .links_border.input {
        width: 100%;
        flex: 0 0 auto;
        margin-bottom: 9px; }
    .container_fluid.menu ul li a {
      padding: 17px 0;
      font-size: 18px; }
  .container_fluid.footer {
    height: 395px; }
    .container_fluid.footer ul li a {
      padding: 22px 0; }
  .container_fluid.copyright {
    height: 66px; }
    .container_fluid.copyright span.tablet {
      font-size: 13px; } }
