@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-family: "FrizQuadrataC";
  background: #0b1a1d;
  background-position: top center;
  background-size: auto;
  background-repeat: repeat-y;
  background-image: url("../images/bg.jpg");
  color: white;
}
a {
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
.n-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header-wrapper {
  background: #0b1a1d;
}
.header {
  position: relative;
}
.header-inner {
  width: 100%;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-inner {
    display: block;
  }
}
.logo {
  position: relative;
  z-index: 99999;
  display: inline-block;
}
.logo img {
  vertical-align: top;
}
@media screen and (max-width: 991px) {
  .logo {
    margin-left: 15px;
  }
}
.menu {
  display: inline-block;
  margin-bottom: 10px;
  order: 2;
}
.menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.menu ul li {
  display: inline-block;
  margin-right: 45px;
}
.menu ul li a {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  position: relative;
}
.menu ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  height: 2px;
  transition: 0.3s;
  background: #fdb812;
  bottom: -5px;
}
.menu ul li a:hover {
  text-decoration: none;
  color: #f7b412;
}
.menu ul li a:hover:after {
  width: 100%;
  margin-left: -50%;
}
@media screen and (max-width: 1200px) {
  .menu ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .menu ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .menu ul li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .menu ul li {
    display: block;
    text-align: center;
    border-bottom: 1px solid #fdb812;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .menu ul li {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .menu {
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
  }
}
#join-btn {
  font-size: 12px;
  color: #0b1a1d;
  font-family: "FrizQuadrataC-Bold";
  overflow: hidden;
  display: inline-block;
  letter-spacing: 2px;
  padding: 12px 0;
  width: 118px;
  text-align: center;
  background-image: url("../images/green-btn.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  text-transform: uppercase;
  position: relative;
  margin-left: 15px;
  vertical-align: middle;
  transition: transform 0.1s;
}
#join-btn:hover {
  color: black;
  box-shadow: 0 0 15px 5px rgba(128, 208, 76, 0.5),
    0 0 15px 5px rgba(128, 208, 76, 0.5) inset;
}
@media screen and (max-width: 991px) {
  #join-btn {
    display: block;
    margin: 0 auto;
  }
}
#login-btn {
  font-size: 12px;
  color: #0b1a1d;
  font-family: "FrizQuadrataC-Bold";
  overflow: hidden;
  display: inline-block;
  letter-spacing: 2px;
  padding: 13px 0;
  width: 118px;
  text-align: center;
  background-image: url("../images/orange-btn.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  text-transform: uppercase;
  position: relative;
  vertical-align: middle;
  transition: transform 0.1s;
}
#login-btn:hover {
  color: black;
  box-shadow: 0 0 15px 5px rgba(220, 149, 51, 0.5),
    0 0 15px 5px rgba(220, 149, 51, 0.5) inset;
}
@media screen and (max-width: 991px) {
  #login-btn {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
#buter {
  order: 9;
  position: absolute;
  z-index: 99999;
  right: 25px;
  top: 25px;
  width: 40px;
  height: 35px;
  display: none;
}
@media screen and (max-width: 991px) {
  #buter {
    display: block;
  }
}
#buter span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
/* Icon 3 */
#buter span:nth-child(1) {
  top: 0px;
}
#buter span:nth-child(2),
#buter span:nth-child(3) {
  top: 10px;
}
#buter span:nth-child(4) {
  top: 20px;
}
#buter.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
#buter.open span:nth-child(2) {
  transform: rotate(45deg);
}
#buter.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#buter.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.header-buttons {
  margin-right: 30px;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .header-buttons {
    display: block;
    margin-right: 0;
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
.mobile-container {
  width: calc(100% - 240px);
}
@media screen and (max-width: 991px) {
  .mobile-container {
    display: none;
  }
}
.mobile-container.open {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
  padding-bottom: 30px;
  background: #09110e;
  box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  top: 80px;
  overflow: auto;
}
.mobile-container-inner {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .mobile-container-inner {
    display: flex;
    flex-direction: column;
  }
}
.left-wrapper {
  display: flex;
  align-items: center;
  order: 2;
}
@media screen and (max-width: 991px) {
  .left-wrapper {
    flex-direction: column;
  }
}
.lang a {
  vertical-align: top;
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 16px;
  margin-right: 5px;
  display: inline-block;
  opacity: 0.7;
}
.lang a:hover {
  opacity: 1;
}
.lang a.active {
  opacity: 1;
  color: #fdb812;
}
.thin-border {
  position: relative;
  z-index: 999;
  height: 4px;
  box-shadow: 0 1px 15px 3px rgba(0, 0, 0, 0.25);
  background-image: url("../images/thin-border2.png");
  background-repeat: repeat-x;
  background-size: contain;
}
.download-link {
  padding-left: 15px;
  position: relative;
}
.download-link:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 0;
}
.download-link:hover:before {
  background-image: url("../images/arrow2.png");
}
.big-card {
  width: 72.5%;
  padding-bottom: 26%;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 1px 15px 3px rgba(0, 0, 0, 0.5);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .big-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 15px;
    background: none !important;
    padding-bottom: 0;
  }
}
.big-card-image {
  display: none;
}
@media screen and (max-width: 991px) {
  .big-card-image {
    display: block;
    width: 100%;
    height: auto;
  }
}
.main-cards {
  max-width: 1520px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .main-cards {
    display: block;
  }
}
.little-cards {
  width: 26.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .little-cards {
    width: 100%;
    height: 175px;
    flex-direction: row;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .little-cards {
    flex-direction: column;
    align-items: center;
    height: 350px;
  }
}
.little-card {
  width: 100%;
  height: 48%;
  position: relative;
  border-radius: 5px;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 1px 15px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  .little-card {
    max-width: 49%;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .little-card {
    margin-bottom: 15px;
    max-width: 320px;
  }
}
.left-top-border {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/left-top-border.png");
}
.left-bottom-border {
  position: absolute;
  width: 5px;
  height: 5px;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/left-bottom-border.png");
}
.right-top-border {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  right: 0;
  z-index: 99;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/right-top-border.png");
}
.right-bottom-border {
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/right-bottom-border.png");
}
.top-border {
  width: calc(100% - 10px);
  left: 5px;
  right: 5px;
  top: 0;
  height: 5px;
  position: absolute;
  background-position: 50% 50%;
  background-size: 100% 100%;
  z-index: 9999;
  background-repeat: no-repeat;
  background-image: url("../images/top-border.png");
}
.bottom-border {
  width: calc(100% - 10px);
  left: 5px;
  right: 5px;
  bottom: 0;
  height: 5px;
  position: absolute;
  background-position: 50% 50%;
  background-size: 100% 100%;
  z-index: 9999;
  background-repeat: no-repeat;
  background-image: url("../images/bottom-border.png");
}
.left-border {
  width: 5px;
  left: 0;
  top: 5px;
  bottom: 5px;
  height: calc(100% - 10px);
  z-index: 9999;
  position: absolute;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/left-border.png");
}
.right-border {
  width: 5px;
  right: 0;
  top: 5px;
  bottom: 5px;
  height: calc(100% - 10px);
  position: absolute;
  z-index: 9999;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/right-border.png");
}
.big-card__link {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .big-card__link {
    position: relative;
    z-index: 9;
  }
}
.players-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
}
.players-slider {
  width: 100%;
  text-align: left;
}
.player__game {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #a09e9d;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.player__info {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.player:first-of-type {
  margin-bottom: 30px;
}
.players {
  padding-right: 45px;
  padding-left: 45px;
}
@media screen and (max-width: 1280px) {
  .players {
    padding-right: 20px;
    padding-left: 20px;
  }
}
/*games*/
.games-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.games-wrapper {
  padding-bottom: 60px;
  padding-top: 30px;
  position: relative;
}
.games {
  overflow: hidden;
  margin-bottom: 60px;
}
.games-list {
  display: flex;
  flex-flow: row wrap;
}
.square {
  float: left;
  position: relative;
  width: calc(19% - 2px);
  padding-bottom: 19%;
  transition: 0.3s;
  margin: 0.5%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border: 1px solid transparent;
  background-size: 100% 100%;
}
.square:hover {
  box-shadow: 0 0 5px 1px rgba(255, 186, 18, 0.5);
  border: 1px solid #dc9533;
}
.square:hover .square__content {
  transform: translateY(0);
}
.square:hover .square__button-wrapper {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .square {
    width: calc(24% - 2px);
    padding-bottom: 24%;
  }
  .games-list {
    justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .square {
    width: calc(32% - 2px);
    padding-bottom: 32%;
  }
}
@media screen and (max-width: 480px) {
  .square {
    width: calc(49% - 2px);
    padding-bottom: 49%;
  }
}
.square__content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px;
  text-align: center;
  background: #0b1a1d;
  transition: 0.3s;
  transform: translateY(100%);
}
@media screen and (max-width: 480px) {
  .square__content {
    font-size: 12px;
    padding: 5px;
  }
}
.square__button-wrapper {
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  bottom: -1px;
  right: -1px;
  left: -1px;
  top: -1px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.square__button-wrapper a {
  font-size: 20px;
  color: #0b1a1d;
  font-family: "FrizQuadrataC-Bold";
  overflow: hidden;
  display: inline-block;
  letter-spacing: 2px;
  padding: 13px 0;
  width: 180px;
  text-align: center;
  background-image: url("../images/orange-btn.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  text-transform: uppercase;
  position: relative;
  vertical-align: middle;
  transition: transform 0.1s;
}
.square__button-wrapper a:hover {
  color: black;
  box-shadow: 0 0 15px 5px rgba(220, 149, 51, 0.5),
    0 0 15px 5px rgba(220, 149, 51, 0.5) inset;
}
/*tabs*/
.tabs-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 1410px) {
  .tabs-wrapper {
    margin-bottom: 0;
  }
}
.tabs {
  display: flex;
  padding-left: 0.5%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .tabs {
    flex-flow: row wrap;
    width: 100%;
  }
}
.tab {
  font-size: 14px;
  color: #fdfcfd;
  text-transform: uppercase;
  padding: 10px 25px;
  font-family: "Open Sans", sans-serif;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
}
.tab:not(.active):hover {
  color: white;
  background: rgba(0, 0, 0, 0.5);
}
.index-tabs .tab:not(.active):hover {
  color: white;
  background: #1c312f;
}
.tab:hover .sub-tab-wrapper {
  display: block;
}
@media screen and (max-width: 768px) {
  .tab:hover .sub-tab-wrapper {
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  .tab {
    padding: 5px 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    width: 32%;
    margin: 0.5%;
    text-align: center;
    border: 1px solid transparent;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
  }
  .tab:after {
    display: none;
  }
}
.tab.active {
  color: #102629;
  background: linear-gradient(to right, #80d675, #8fcb37);
  font-weight: bold;
}
.tab.active:after {
  width: 100%;
  margin-left: -50%;
}
@media screen and (max-width: 768px) {
  .tab.active {
    border: 1px solid #fdb812;
  }
}
.tab-all {
  font-size: 14px;
  color: #fdfcfd;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 991px) {
  .tab-all {
    padding: 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .tab-all {
    position: relative;
    right: auto;
  }
}
.sub-tab-wrapper {
  position: absolute;
  display: none;
  background: #18070a;
  box-shadow: 0 3px 15px 3px rgba(0, 0, 0, 0.5);
  z-index: 999;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
}
.sub-tab-wrapper:hover {
  display: block;
}
@media screen and (max-width: 768px) {
  .sub-tab-wrapper:hover {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .sub-tab-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    float: left;
    clear: both;
    padding-top: 15px;
    padding-bottom: 15px;
    top: auto;
    bottom: 0;
    box-shadow: none;
  }
}
.sub-tab {
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: white;
}
.sub-tab:hover {
  color: #fdb812;
}
@media screen and (max-width: 768px) {
  .sub-tab {
    width: 33%;
    padding: 0;
  }
}
.sub-tab.active {
  color: #fdb812;
}
@media screen and (max-width: 768px) {
  .tab-slots {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 0;
    padding-top: 15px;
    font-size: 18px;
    border: 1px solid #fdb812;
  }
}
.tab-slots > span {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tab-slots > span {
    border-bottom: 1px solid #fdb812;
    padding-bottom: 15px;
  }
}
.square__new {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 15px;
  border-bottom: 2px solid #4f0101;
  border-right: 1px solid #4f0101;
  background: linear-gradient(to bottom, #ec2026, #7d0404);
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-transform: uppercase;
  font-size: 20px;
  color: white;
}
@media screen and (max-width: 768px) {
  .square__new {
    font-size: 16px;
    padding: 5px 10px;
  }
}
.jackpot-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
}
.jackpot__title {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a8a29e;
}
.jackpot__sum {
  font-size: 60px;
  letter-spacing: -2px;
  font-family: "FrizQuadrataC-Bold";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(
    top,
    #efd100 0,
    #e2a233 38%,
    #f0c328 60%,
    #fff1a3 86%,
    #ffe13e 100%
  );
  background-size: 1em 1em;
  color: #f8b700;
}
@media screen and (max-width: 1300px) {
  .jackpot__sum {
    font-size: 45px;
  }
}
.games-desc {
  text-align: center;
  font-size: 32px;
  color: #dcecd9;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .games-desc {
    font-size: 26px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.games-button {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  display: table;
  margin: 0 auto;
}
#gamesApp .games-button {
  display: none;
}
.games-button a {
  color: #b28623;
  font-size: 20px;
  padding: 25px 65px;
  display: inline-block;
  background-image: url("../images/button.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3s;
}
.games-button a:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  z-index: -1;
  background: #b28623;
  transition: 0.3s;
  opacity: 0;
}
.games-button a:hover {
  color: black;
}
.games-button a:hover:after {
  opacity: 1;
}
.seo-blocks-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.seo-block {
  width: 23%;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .seo-block {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .seo-block {
    width: 100%;
  }
}
.seo-block__title {
  margin-top: -30px;
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
  transition: 0.6s;
  display: block;
}
.seo-block__title:hover {
  color: #f7b412;
}
.seo-block__desc {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 22px;
  margin-bottom: 15px;
  opacity: 0.8;
}
/*footer*/
.footer-wrapper {
  position: relative;
  padding-top: 60px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  .footer-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer-blocks {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer-blocks {
    flex-flow: row wrap;
  }
}
.footer-left {
  width: 320px;
}
@media screen and (max-width: 991px) {
  .footer-left {
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    order: 2;
  }
}
.footer-right {
  width: calc(100% - 450px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer-right {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 991px) {
  .footer-right {
    width: 100%;
    justify-content: space-around;
    order: 1;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .footer-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__link a {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-block;
}
.footer__link a:hover {
  text-decoration: underline;
}
.footer__logo {
  margin-bottom: 15px;
}
.footer__contacts {
  padding-left: 45px;
}
@media screen and (max-width: 991px) {
  .footer__contacts {
    padding-left: 0;
  }
}
.footer__chat {
  margin-top: 10px;
}
.footer__chat .live-support {
  display: inline-block;
  color: white;
  border: 1px solid white;
  font-size: 16px;
  padding: 15px 30px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  transition: 0.3s;
  cursor: pointer;
}
.footer__chat .live-support:hover {
  background: white;
  color: black;
}
.footer__title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .footer__title {
    margin-bottom: 5px;
  }
}
.footer__page a {
  color: #878b8b;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-block;
}
.footer__page a:hover {
  color: white;
}
@media screen and (max-width: 600px) {
  .footer__page a {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 600px) {
  .footer__page:last-of-type {
    margin-bottom: 30px;
  }
}
.footer__block {
  max-width: 33%;
}
@media screen and (max-width: 600px) {
  .footer__block {
    width: 100%;
  }
}
.footer-brands {
  display: flex;
  justify-content: space-between;
  max-width: 768px;
  margin: 0 auto;
  margin-top: 60px;
  align-items: center;
  flex-flow: row wrap;
}
.footer-brands img {
  margin: 5px;
}
.footer-brands__divider {
  width: 1px;
  height: 25px;
  background: #4b5353;
}
.footer-curacao {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  color: #4b5353;
  line-height: 14px;
}
/*faq*/
.faq-wrapper {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1280px) {
  .faq-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .faq-wrapper {
    text-align: center;
    padding: 0;
  }
}
.faq {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .faq {
    flex-direction: column;
  }
}
.faq-nav {
  width: 450px;
}
@media screen and (max-width: 1024px) {
  .faq-nav {
    width: 100%;
    margin-bottom: 30px;
  }
}
.faq-svitok {
  width: calc(100% - 450px);
  position: relative;
  padding: 35px 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .faq-svitok {
    width: 100%;
    padding: 0;
  }
}
.faq-title {
  margin: 0;
  font-size: 30px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .faq-title {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 24px;
    margin-top: 30px;
  }
}
.rulon {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 5px;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .rulon {
    display: none;
  }
}
.faq-info {
  background: #dab079;
  color: #121d23;
  padding: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .faq-info {
    padding: 30px 15px;
  }
}
.rulon2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .rulon2 {
    display: none;
  }
}
.faq-info-title {
  margin: 0;
  font-size: 30px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  line-height: 42px;
}
.faq-info-question {
  margin: 0;
  font-size: 14px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.faq-info-answer {
  margin: 0;
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 30px;
  font-family: "FrizQuadrataC";
}
.faq-nav-title {
  margin: 0;
  font-size: 18px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.faq-nav-title h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
}
.faq-nav-title span {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  display: inline-block;
}
.faq-nav-title span:after {
  content: "";
  position: absolute;
  z-index: 99;
  top: 6px;
  right: 0px;
  width: 13px;
  height: 7px;
  background-repeat: no-repeat;
  background-image: url("../images/arrow-open.png");
}
.faq-nav-title span:hover {
  color: #f7b412;
}
.faq-nav-title span.active:after {
  transform: rotate(180deg);
}
.faq-nav-link {
  color: #878b8b;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
  cursor: pointer;
}
.faq-nav-link:last-of-type {
  margin-bottom: 30px;
}
.faq-nav-link:hover {
  color: white;
}
.faq-nav-holder {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .faq-nav-title .terms-title {
    margin-top: 30px;
  }
  .faq-nav-holder {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.faq-nav-link-holder {
  width: 450px;
}
@media screen and (max-width: 1024px) {
  .faq-nav-link-holder {
    width: 100%;
  }
}
.faq-nav-inner {
  position: absolute;
  top: 15px;
}
@media screen and (max-width: 1024px) {
  .faq-nav-inner {
    position: relative !important;
    top: auto !important;
  }
}
.faq-nav-inner.active {
  position: fixed;
  max-width: 450px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .faq-nav-inner.active {
    max-width: 100%;
  }
}
/*privacy*/
.privacy-wrapper {
  position: relative;
  padding: 35px 50px;
  box-sizing: border-box;
  max-width: 991px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .privacy-wrapper {
    padding: 30px 0;
  }
}
.privacy-inner {
  background: #dab079;
  color: #121d23;
  padding: 60px;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .privacy-inner {
    padding: 30px 15px;
  }
}
.privacy-info-title {
  margin: 0;
  font-size: 20px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  margin-top: 45px;
}
.privacy-paragraph {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
}
/*.plaha-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
}
.plaha-title{
  text-transform: uppercase;
  font-family: "FrizQuadrataC-Bold";
  text-shadow: 1px 3px 0 black;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 3px;
  font-size: 20px;
  &:after{
    content: '';
    position: absolute;
    top:-15px;
    right:-60px;
    left:-50px;
    bottom:-30px;
    background-image: url('../images/plaha.png');
    background-repeat: no-repeat;
    background-size:100% 100%;
    background-position: 50% 50%;
    z-index: -1;
  }
}*/
.universal-title-wrapper {
  text-align: center;
}
.universal-title {
  text-align: center;
  display: inline-block;
  font-size: 60px;
  letter-spacing: 5px;
  font-family: "FrizQuadrataC";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0, #c9c9c9 100%);
  background-size: 100% 100%;
  margin: 0 auto;
  position: relative;
  color: #f5f5f5;
  padding-right: 5px;
  padding-left: 5px;
}
@media screen and (max-width: 1300px) {
  .universal-title {
    font-size: 45px;
    letter-spacing: 3px;
  }
}
.universal-title:after {
  background: 0 0;
  content: attr(data-text);
  display: inline-block;
  left: 5px;
  position: absolute;
  text-shadow: 0 0 2px transparent, 0 2px 5px #000;
  top: 0;
  z-index: -1;
}
.page-wrapper {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1280px) {
  .page-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .page-wrapper {
    text-align: center;
    padding: 30px 0;
  }
}
.privacy-info-subtitle {
  margin: 0;
  font-size: 16px;
  font-family: "FrizQuadrataC";
  margin-bottom: 30px;
  line-height: 28px;
}
.banking-info-title {
  margin: 0;
  font-size: 36px;
  text-align: center;
  font-family: "FrizQuadrataC";
  margin-bottom: 30px;
  margin-top: 50px;
  line-height: 34px;
}
.banking-paragraph {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  padding-left: 25px;
  padding-right: 15px;
  text-align: justify;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 1024px) {
  .banking-paragraph {
    padding: 0;
  }
}
.main-table-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #40403a;
  margin-bottom: 50px;
}
.main-table {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  border: 1px solid #c2965c;
  border-radius: 5px;
  line-height: normal;
}

@media screen and (max-width: 600px) {
  .main-table tr:last-of-type td {
    padding: 5px;
  }
}
.main-table th {
  background-image: url("../images/table-bg.jpg");
  background-repeat: repeat;
  color: #32210a;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  padding: 15px 15px;
  font-size: 16px;
}
.main-table th:first-of-type {
  border-left: none;
}
@media screen and (max-width: 600px) {
  .main-table th {
    padding: 5px;
    font-size: 12px;
  }
}
.main-table tr:nth-of-type(even) td {
  background: #fddcb3;
}
.main-table tr:nth-of-type(odd) td {
  background: #f4d1a6;
}
.main-table td {
  color: #32210a;
  padding: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 360px) {
  .main-table td img {
    max-width: 50px;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .main-table td {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 600px) {
  .main-table {
    font-size: 12px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
@media screen and (max-width: 400px) {
  .main-table {
    font-size: 10px;
  }
}
.contacts-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  margin-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 75px;
}
.contacts-block {
  width: 100%;
  max-width: 370px;
  text-align: center;
  margin: 15px;
  position: relative;
}
.contacts-block:last-of-type .contacts-block__title {
  background: #1a1f2b;
}
.contacts-block:last-of-type .contacts-block__desc {
  background-image: url("../images/contacts-bg2.jpg");
}
.contacts-blocks {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.contacts-block__title {
  padding-top: 35px;
  padding-bottom: 35px;
  background: #142a38;
  text-transform: uppercase;
  font-family: "FrizQuadrataC-Bold";
  letter-spacing: 3px;
  color: #d0d4d7;
  font-size: 18px;
  position: relative;
}
.contacts-block__title:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 7px;
  background-image: url("../images/contacts-line.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.contacts-block__desc {
  background-color: #111111;
  background-image: url("../images/contacts-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contacts-block__desc a {
  color: white;
  font-size: 26px;
}
@media screen and (max-width: 400px) {
  .contacts-block__desc a {
    font-size: 20px;
  }
}
.contacts-right {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  top: -10px;
  right: -10px;
  bottom: -14px;
  width: 27px;
  background-image: url("../images/contacts-right.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.contacts-left {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  top: -10px;
  left: -10px;
  bottom: -14px;
  width: 27px;
  background-image: url("../images/contacts-left.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.contacts-bottom {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  right: 17px;
  left: 17px;
  bottom: -8px;
  height: 14px;
  background-image: url("../images/contacts-bottom.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.contacts-top {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  right: 17px;
  left: 17px;
  top: -5px;
  height: 19px;
  background-image: url("../images/contacts-top.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.banking-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.banking-button {
  width: 30%;
  padding: 20px 15px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/buttons.jpg");
  background-repeat: no-repeat;
  background-size: 100% 200%;
  background-position: 0 100%;
  text-align: center;
  max-width: 210px;
  cursor: pointer;
  font-size: 15px;
  position: relative;
}
.banking-button:hover {
  background-position: 0 0;
}
.banking-button:nth-of-type(2):after,
.banking-button:first-of-type:after {
  content: "";
  position: absolute;
  z-index: 9;
  left: calc(100% + 30px);
  top: calc(50% - 3px);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: #a96938;
}
@media screen and (max-width: 991px) {
  .banking-button:nth-of-type(2):after,
  .banking-button:first-of-type:after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .banking-button {
    padding: 10px 5px;
    width: 33%;
    font-size: 14px;
  }
}
.banking-button.active {
  background-position: 0 0;
  font-family: "FrizQuadrataC-Bold";
}
.classes-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .classes-wrapper {
    flex-flow: row wrap;
    justify-content: space-around;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.classes-block {
  width: 16.2%;
  border: 2px solid #5d572b;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .classes-block {
    width: 32%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .classes-block {
    width: 48%;
  }
}
@media screen and (max-width: 360px) {
  .classes-block {
    width: 100%;
  }
}
.classes-block__top {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.classes-block__top img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.classes-block__divider {
  height: 20px;
  background: #76542e;
}
.classes-block__bottom {
  padding: 25px 5px;
  text-align: center;
  color: black;
  background: #f2dcab;
  height: 100%;
}
.classes-block__title {
  font-size: 18px;
  font-family: "FrizQuadrataC-Bold";
  color: #6f2d0d;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .classes-block__title {
    font-size: 16px;
  }
}
.classes-block__val {
  font-size: 14px;
}
.classes-block__line {
  display: inline-block;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(
    to right,
    transparent 0,
    #721d1d 20%,
    #721d1d 80%,
    transparent 100%
  );
  width: 115px;
  height: 1px;
}
.classes-block__subtitle {
  font-size: 12px;
  line-height: 22px;
  color: #312b1f;
  margin-bottom: 15px;
}
.classes-block__feature {
  font-size: 12px;
  color: #312b1f;
  margin-bottom: 5px;
  text-align: left;
}
.classes-block__feature ul {
  padding-left: 25px;
}
.classes-block__feature li {
  margin-bottom: 10px;
}
.classes-outer {
  margin: 0 auto;
  max-width: 1360px;
}
.games-input {
  margin-bottom: 30px;
  position: relative;
}
.games-input input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #8e9c97;
  border-radius: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 60px;
  outline: none;
  font-size: 18px;
  min-width: 345px;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 1280px) {
  .games-input {
    margin-left: 5px;
  }
}
@media screen and (max-width: 400px) {
  .games-input input {
    min-width: 100%;
  }
}
.games-input:before {
  content: "";
  position: absolute;
  top: 17px;
  left: 20px;
  pointer-events: none;
  width: 20px;
  height: 21px;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
}
.games-droplist {
  position: absolute;
  top: calc(100% + 5px);
  background: #0b0b0b;
  color: white;
  z-index: 9999;
  width: 100%;
  max-width: 345px;
  display: none;
}
@media screen and (max-width: 400px) {
  .games-droplist {
    min-width: 100%;
  }
}
.games-droplist.active {
  border: 1px solid #888e8e;
  overflow-x: hidden;
  max-height: 75vh;
  display: block;
  border-radius: 5px;
  box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.9);
}
.games-droplist:empty {
  display: none;
}
.games-droplist__single {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-content: center;
}
.games-droplist__single:hover {
  background: #1c1c1c;
}
@media screen and (max-width: 400px) {
  .games-droplist__single {
    padding: 10px;
  }
}
.games-droplist__image {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  margin-right: 15px;
}
.games-droplist__cat {
  color: #939393;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.games-droplist__name {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 400px) {
  .games-droplist__name {
    font-size: 16px;
  }
}
.games-droplist__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.promotion-tab-wrapper {
  display: inline-block;
  width: 25%;
  position: relative;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.promotion-tab-wrapper:after {
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: -15px;
}
.promotion-tab-wrapper:before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: #0e1b1a;
}
.promotion-tab-wrapper:hover:not(.active):after {
  bottom: 0;
  background-image: url("../images/promo-tab.png");
}
@media screen and (max-width: 450px) {
  .promotion-tab-wrapper {
    padding: 15px 0 5px 0;
  }
}
.promotion-tab-wrapper.active:after {
  background-image: url("../images/promo-tab-active.png");
}
.promotion-tab {
  text-align: center;
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "FrizQuadrataC";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0, #c9c9c9 100%);
  background-size: 100% 100%;
  margin: 0 auto;
  position: relative;
  color: #f5f5f5;
}
.promotion-tab:after {
  background: 0 0;
  text-transform: uppercase;
  content: attr(data-text);
  display: inline-block;
  left: 0;
  position: absolute;
  text-shadow: 0 0 2px transparent, 0 2px 5px #000;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .promotion-tab {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .promotion-tab {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.promotion-tabs {
  margin: 0 auto;
  width: 100%;
  max-width: 1170px;
  display: flex;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .promotion-tabs {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.promotion-wrapper {
  position: relative;
  padding: 35px 120px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .promotion-wrapper {
    padding: 0;
  }
}
.promotion-inner {
  background: #dab079;
  color: #121d23;
  padding: 60px;
  padding-top: 120px;
  padding-bottom: 100px;
  transition: 0.6s;
}
@media screen and (max-width: 1024px) {
  .promotion-inner {
    padding: 30px 15px;
  }
}
.promotion-tabinfo {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .promotion-tabinfo {
    flex-direction: column;
  }
}
.promotion-inner.in-action {
  transform: translateY(-85%);
}
.promotion-wrapper .rulon2 {
  transition: 0.6s;
}
.promotion-wrapper .rulon2.in-action {
  bottom: 75%;
}
.promotion-svitok {
  overflow: hidden;
}
.promotion__left {
  width: 45%;
}
.promotion__left img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .promotion__left img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .promotion__left {
    width: 100%;
  }
}
.promotion__right {
  width: 55%;
  text-align: center;
  padding-left: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .promotion__right {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
.promotion__title {
  font-size: 16px;
  color: #9c704e;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  display: table;
  margin: 0 auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .promotion__title {
    white-space: normal;
  }
  .promotion__text_mob {
    display: none;
  }
}
.promotion__title:after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: calc(50% - 5px);
  right: -25px;
  background-image: url("../images/decor.png");
}
.promotion__title:before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: calc(50% - 5px);
  left: -25px;
  background-image: url("../images/decor.png");
}
.promotion__slots {
  font-family: "FrizQuadrataC-Bold";
  color: #4a1e14;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 10px;
}
.promotion__text {
  font-size: 14px;
  color: #6e422d;
  line-height: 22px;
  margin-bottom: 10px;
}
.promotion__text b {
  font-family: "FrizQuadrataC-Bold";
}
.promotion__divider {
  margin-bottom: 45px;
}
.promotion__use {
  font-size: 12px;
  font-weight: normal;
  color: #4a1e14;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 5px;
}
.with-tabs {
  padding-top: 45px;
}

.promotion__code {
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  color: #4a1e14;
  font-size: 28px;
  letter-spacing: 5px;
  padding: 5px 20px;
  border: 1px dashed #7c5037;
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 5px;
  background: #e8bb88;
}
@media screen and (max-width: 370px) {
  .promotion__code {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
.promotion__on {
  font-family: "Open Sans", sans-serif;
  color: #4a1e14;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
}
.promotion__button {
  font-size: 16px;
  font-family: "FrizQuadrataC-Bold";
  text-shadow: 0 1px 1px black;
  color: white;
  padding-top: 20px;
  padding-bottom: 22px;
  width: 200px;
  display: inline-block;
  letter-spacing: 5px;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
  margin-bottom: 15px;
  transition: 0.3s;
  position: relative;
}
.promotion__button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: white;
  transition: 0.3s;
  opacity: 0;
}
.promotion__button:active {
  transform: perspective(1px) scale(0.98);
}
.promotion__button.welcome-btn {
  background-image: url("../images/promotion-btn-w.png");
}
.promotion__button.weekend-btn {
  background-image: url("../images/promotion-btn-2.png");
}
.promotion__button.monthly-btn {
  background-image: url("../images/promotion-btn-3.png");
}
.promotion__button.special-btn {
  background-image: url("../images/promotion-btn-4.png");
}
.promotion__button:hover {
  color: gold;
}
.promotion__button:hover:after {
  opacity: 0.1;
}
.promotion__decor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.promotion__decorline1 {
  width: calc(50% - 20px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #936748 50%,
    #936748 100%
  );
}
.promotion__decorline2 {
  width: calc(50% - 20px);
  height: 1px;
  background: linear-gradient(
    to left,
    transparent 0%,
    #936748 50%,
    #936748 100%
  );
}
.promotion__title-decor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.promotion__title-decorline1 {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #936748 50%,
    #936748 100%
  );
  margin-right: 45px;
}
.promotion__title-decorline2 {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to left,
    transparent 0%,
    #936748 50%,
    #936748 100%
  );
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .promotion__title-decorline1 {
    display: none;
  }
  .promotion__title-decorline2 {
    display: none;
  }
}
.promotion__terms {
  font-size: 12px;
  text-align: center;
  color: #7c5037;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
}

.promotion__changer-main {
  border: 2px solid #a27658;
  background: #f7ca98;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-bottom: 30px;
  position: relative;
}

[data-currenttab="monthly"] .promotion__slots {
  line-height: 1.15;
}
[data-currenttab="monthly"] .promotion__table-holder {
  padding: 10px 20px 5px;
}
[data-currenttab="monthly"] .promotion__table table td {
  padding: 7px 0px;
}

[data-currenttab="special"] .promotion__slots {
  line-height: 1.15;
}
[data-currenttab="special"] .with-tabs {
  padding-top: 15px;
}
[data-currenttab="special"] .promotion__on {
  margin-bottom: 20px;
}
[data-currenttab="special"] .promotion__changer-main {
  padding-bottom: 0;
}

.promotion__changer-tabs {
  display: flex;
  justify-content: space-between;
}
.promotion__changer-tab {
  border: 2px solid #a27658;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  /* width: calc(50% - 5px); */
  width: 100%;
  margin-right: 2px;
  font-family: "FrizQuadrataC-Bold";
  color: #4a1e14;
  font-size: 32px;
  padding-top: 5px;
  padding-bottom: 5px;
  transform: translateY(2px);
  background-image: url("../images/table-bg.jpg");
  background-repeat: repeat;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 480px) {
  .promotion__changer-tab {
    font-size: 22px;
  }
}
.promotion__changer-tab:last-child {
  margin-right: 0;
}
.promotion__changer-tab:not(.active):hover {
  cursor: pointer;
  background: #cb9862;
}

.promotion__changer-tab.active {
  background: #f7ca98;
}
.promotion__changer-tab.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  left: 0;
  right: 0;
  background: #f7ca98;
}
.promotion__changer-bottom {
  color: #fadbb8;
  background: #a27658;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.promotion__changer-bottom span {
  margin-left: 5px;
}

.promotion__table {
  background: #f7ca98;
  border: 2px solid #a27658;
  border-radius: 5px;
}
.promotion__table-title {
  padding: 5px 10px;
  font-size: 20px;
  font-family: "FrizQuadrataC-Bold";
  text-transform: uppercase;
  text-align: center;
  border-bottom: 2px solid #a27658;
  color: #4a1e14;
  letter-spacing: 3px;
  background-image: url("../images/table-bg.jpg");
  background-repeat: repeat;
}

.promotion__table table {
  text-align: center;
  width: 100%;
  border-spacing: 0;
}
.promotion__table table th {
  color: #4a1e14;
  font-family: "FrizQuadrataC-Bold";
  border-bottom: 2px solid #c59870;
  padding-bottom: 10px;
  font-size: 20px;
}
.promotion__table table td {
  padding: 8px 0;
  font-size: 20px;
  color: #4a1e14;
  width: 33%;
}

.promotion__table-holder {
  padding: 15px 20px 5px;
}
.bonus-td {
  font-family: "FrizQuadrataC-Bold";
  letter-spacing: 1px;
}

@media screen and (max-width: 500px) {
  .promotion__table table td {
    padding: 5px 0;
    font-size: 14px;
  }
  .promotion__table table th {
    padding: 5px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  .bonus-td {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.promotion__thin {
  font-family: "FrizQuadrataC";
  color: #886043;
}
.promotion__thin2 {
  font-family: "FrizQuadrataC";
}
.promotion__little {
  font-size: 18px;
  line-height: 1.2;
}
.promotion__small {
  font-size: 14px;
}
.promotion__changer-title {
  font-size: 16px;
  font-family: "FrizQuadrataC-Bold";
  color: #4a1e14;
  margin-top: 15px;
  margin-bottom: 30px;
}

.instant-wrapper {
  margin-bottom: 30px;
  margin-top: 30px;
}
.instant {
  text-align: center;
  background: linear-gradient(
    to left,
    transparent 0%,
    rgba(255, 186, 18, 0.25) 50%,
    transparent 100%
  );
}
@media screen and (max-width: 1200px) {
  .instant {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.instant-ie {
  display: inline-block;
  width: 100%;
  max-width: 1067px;
  border-radius: 5px;
}
.instant-ie iframe {
  width: 100%;
  max-width: 1067px;
  vertical-align: top;
}

/*modal*/
.modal-wrapper {
  position: fixed;
  display: none;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}

.modal-bg {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-outer {
  position: relative;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
}

.modal {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  padding-bottom: 100px;
}

.modal-content {
  position: relative;
  z-index: 9999;
  max-width: 600px;
  margin: 0 auto;
}
.modal-content__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-content__inner {
  background: #09110e;
  position: relative;
  z-index: 2;
  border: 1px solid #594c1f;
  padding: 45px 15px;
  box-sizing: border-box;
  font-size: 18px;
}
.modal-content__inner .bl {
  color: #be922d;
  font-size: 30px;
  display: block;
}
.modal-content small {
  color: #5f6462;
  font-size: 18px;
  display: block;
}
.modal-content span {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 24px;
}
.modal-content__close {
  position: absolute;
  z-index: 9;
  left: calc(100% + 15px);
  top: -18px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-content__close {
    left: calc(100% - 30px);
    top: 15px;
  }
  .modal-content__inner .bl {
    font-size: 24px;
  }
  .modal-content {
    max-width: 100%;
  }
}
.modal-content__close img {
  vertical-align: top;
}

.modalgo-content__inner {
  background: #09110e;
  position: relative;
  z-index: 2;
  border: 1px solid #594c1f;
  padding: 30px 15px;
  box-sizing: border-box;
  font-size: 18px;
}

.modalgo__title {
  font-size: 30px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .modalgo__title {
    font-size: 24px;
  }
}
.modalgo__buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.modalgo__yes {
  width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #09110e;
  background: #be922d;
  border: 1px solid #be922d;
  font-size: 20px;
  cursor: pointer;
  margin: 5px;
  transition: 0.6s;
}
.modalgo__yes:hover {
  background: #d2a641;
}

.modalgo__no {
  width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #be922d;
  background: transparent;
  border: 1px solid #be922d;
  font-size: 20px;
  cursor: pointer;
  margin: 5px;
  transition: 0.6s;
}
.modalgo__no:hover {
  background: rgba(190, 146, 45, 0.1);
}

.spinner {
  min-height: 25vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  margin: 5px;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*CHAT*/
.chat__close {
  position: absolute;
  z-index: 9;
  right: 0;
  top: -25px;
  cursor: pointer;
}
.chat-absolute {
  position: fixed;
  bottom: 15px;
  z-index: 999999;
  left: 15px;
  background: #09110e;
}
@media screen and (max-width: 768px) {
  .chat-absolute {
    right: 15px;
  }
}
#lcv2Stub:not(.open) {
  display: none;
}
#lcv2Stub:not(.open) ~ .chat__close {
  display: none;
}
#lcv2Stub ~ .chat__close {
  display: block;
}
#lcv2Stub.open {
  padding: 15px;
  min-width: 280px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #be922d;
  box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.25);
}
#lcv2Stub.open p {
  margin: 0 auto;
  font-size: 14px;
  color: white;
  margin-bottom: 15px;
}
#lcv2Stub.open input[type="submit"] {
  width: 160px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #09110e;
  background: #be922d;
  border: 1px solid #be922d;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: 0.6s;
  outline: none;
}
#lcv2Stub.open input[type="submit"]:hover {
  background: #d2a641;
}
#lcv2Stub.open #lcv2-email {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
  font-size: 14px;
  min-width: 250px;
  line-height: 20px;
}

.lcwindowBody {
  background: #0b1a1d;
  background-position: top center;
  background-size: auto;
  background-repeat: repeat-y;
  background-image: url(../images/bg.jpg);
  box-sizing: border-box;
}
.lcwindowBody h1 {
  color: white;
  text-align: center;
  text-shadow: 1px 1px 5px black;
}
.submit-lg {
  background: #be922d;
  cursor: pointer;
  color: black;
}
.submit-lg:hover {
  background: #d2a641;
}
.alert-content {
  background: #213534;
  color: white;
  border: 1px solid #be922d;
}
.submit-sm {
  border: none;
  background: #be922d;
  color: black;
  cursor: pointer;
  outline: none;
}
.submit-sm:hover {
  background: #d2a641;
}

.well-content {
  background: #09110e;
  color: white;
  border: 1px solid #be922d;
}
.chat-form .submit {
  background: #be922d;
  outline: none;
  color: black;
  cursor: pointer;
  height: 33px;
}
.chat-form .submit:hover {
  background: #d2a641;
}
.input-content input {
  border: 1px solid #fdb812;
  background: white;
  outline: none;
}
.chatWindowLogo {
  text-align: center;
}
#lcv2-accept {
  color: #09110e;
  background: #be922d;
  border: 1px solid #be922d;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: 0.6s;
  padding-top: 7px;
  width: 120px;
  padding-bottom: 7px;
}
#lcv2-decline {
  width: 120px;
  padding-top: 7px;
  padding-bottom: 7px;
  color: #be922d;
  background: transparent;
  border: 1px solid #be922d;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: 0.6s;
}
#lcv2-decline:hover {
  background: rgba(190, 146, 45, 0.1);
}

#lcv2-accept:hover {
  background: #d2a641;
}

.low-h1-title {
  font-size: 14px;
  text-align: center;
  color: white;
  opacity: 0.8;
  font-weight: 400;
}

.found-wrapper {
  text-align: center;
}
.found-img {
  margin-bottom: 60px;
}
.found-img img {
  max-width: 100%;
  height: auto;
}

.found-title {
  font-size: 80px;
  font-family: "FrizQuadrataC";
  font-weight: normal;
  margin-bottom: 15px;
}
.found-subtitle {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.found-buttons {
  margin-bottom: 60px;
}
.found-buttons a {
  font-size: 16px;
  color: #0b1a1d;
  font-family: "FrizQuadrataC-Bold";
  overflow: hidden;
  display: inline-block;
  letter-spacing: 3px;
  padding: 20px 0;
  width: 248px;
  text-align: center;
  background-image: url("../images/found-button.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
  text-transform: uppercase;
  position: relative;
  vertical-align: middle;
  transition: transform 0.1s;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.found-buttons a:hover {
  color: black;
  box-shadow: 0 0 15px 3px rgba(220, 149, 51, 0.5),
    0 0 15px 5px rgba(220, 149, 51, 0.5) inset;
}

@media screen and (max-width: 991px) {
  .found-img {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
  }
  .found-title {
    font-size: 40px;
  }
  .found-subtitle {
    font-size: 24px;
  }
  .found-buttons {
    margin-bottom: 0;
  }
}
.seo-block__desc-h1 {
  margin: 0;
  font-size: 14px;
  color: white;
  line-height: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

.banking-inner {
  background-color: #e8c187;
  background-image: url("../images/svitok-bg.jpg");
  background-repeat: repeat;
  color: #121d23;
  padding: 60px;
  padding-top: 120px;
  padding-bottom: 100px;
  border: 1px solid #462914;
}
@media screen and (max-width: 1024px) {
  .banking-inner {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 600px) {
  .banking-inner {
    padding: 30px 0;
  }
}

.banking-info {
  border: 2px solid #986b4a;
  background: #f7ca98;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #32210a;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 90px;
  padding-right: 25px;
  margin-bottom: 35px;
  position: relative;
  text-align: justify;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .banking-info {
    padding: 30px 15px;
    padding-left: 90px;
  }
}
.banking-info:after {
  content: "";
  position: absolute;
  top: 30px;
  left: 25px;
  width: 41px;
  height: 37px;
  background-image: url("../images/attention2.png");
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-size: contain;
}

.banking__changer-main {
  border: 2px solid #a27658;
  background: #f7ca98;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-bottom: 30px;
  position: relative;
}

.banking__changer-main a {
  font-weight: 600;
  color: #274ebc;
  text-decoration: underline;
}
.privacy-paragraph a {
  font-weight: 600;
  color: #274ebc;
  text-decoration: underline;
}
.banking__changer-tabs {
  display: flex;
  justify-content: space-between;
}
.banking__changer-tab {
  border: 2px solid #a27658;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: calc(50% - 5px);
  color: #4a1e14;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transform: translateY(2px);
  background: #c1915d;
  position: relative;
  text-align: center;
  z-index: 9;
}

.banking__changer-tab:not(.active):hover {
  cursor: pointer;
  background: #cb9862;
}

.banking__changer-tab.active {
  background: #f7ca98;
}
.banking__changer-tab.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  left: 0;
  right: 0;
  background: #f7ca98;
}
.banking__changer-inner {
  padding: 0 30px;
}

.banking-faq__title {
  font-family: "FrizQuadrataC-Bold";
  font-size: 18px;
  color: #4a1e14;
}
.responsible-faq__title {
  font-family: "FrizQuadrataC-Bold";
  font-size: 18px;
  color: #4a1e14;
}
.banking-faq {
  background: #fddcb3;
  border: 1px solid #c1915d;
  border-bottom: 3px solid #c49461;
  border-radius: 5px;
  padding: 20px 30px;
  padding-right: 50px;
  position: relative;
  cursor: pointer;
  text-align: left;
  margin-bottom: 20px;
}
.responsible-faq {
  background: #fddcb3;
  border: 1px solid #c1915d;
  border-bottom: 3px solid #c49461;
  border-radius: 5px;
  padding: 20px 30px;
  padding-right: 50px;
  position: relative;
  cursor: pointer;
  text-align: left;
  margin-bottom: 20px;
}
.banking-faq.active {
  background: #f7ca98;
}
.responsible-faq.active {
  background: #f7ca98;
}
.banking-faq:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 9px;
  background-image: url("../images/faq-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 25px;
  right: 15px;
}
.responsible-faq:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 9px;
  background-image: url("../images/faq-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 25px;
  right: 15px;
}
.banking-faq__desc {
  font-size: 18px;
  margin-top: 30px;
  line-height: 22px;
  color: #6d402e;
  display: none;
}
.responsible-faq__desc {
  font-size: 18px;
  margin-top: 30px;
  line-height: 22px;
  color: #6d402e;
  display: none;
}

/*terms*/
.simple-ul {
  list-style-type: disc;
}
.simple-ul li {
  font-size: 14px;
  display: list-item;
}
.simple-ul li:before {
  display: none;
}
.terms-block__desc {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
  text-align: justify;
  color: #32210a;
  font-family: "Open Sans", sans-serif;
}
.terms-block__desc ol {
  counter-reset: item;
  font-size: 14px;
  padding-left: 2em;
}
.terms-block__desc ol > li > ol {
  padding-left: 2em;
}
.terms-block__desc ol > li > ol > li > ol {
  padding-left: 3em;
}
@media screen and (max-width: 600px) {
  .terms-block__desc ol {
    padding-left: 1em;
  }
  .terms-block__desc ol > li > ol {
    padding-left: 1em;
  }
  .terms-block__desc ol > li > ol > li > ol {
    padding-left: 2em;
  }
}
@media screen and (max-width: 420px) {
  .terms-block__desc ol > li table th,
  .terms-block__desc ol > li table td {
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
  }
}
@media screen and (max-width: 390px) {
  .terms-block__desc ol > li table th,
  .terms-block__desc ol > li table td {
    font-size: 8px;
    font-family: "Open Sans", sans-serif;
  }
}
ol li {
  display: block;
  position: relative;
}
ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  position: absolute;
  right: 101%;
}
.terms-block__desc > ol > li:before {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
}
.terms-block__desc > .simple-ol > li:before {
  font-size: 14px;
  text-transform: none;
}

@media screen and (max-width: 390px) {
  .big-table th {
    font-size: 10px;
  }
}
