@import "root.css";
@import "../../../common/components/InputOverflow/InputOverflow.css";

/* Normalize CSS Start */
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside{
  display: block;
}
html {
  height: 100%;
  width: 100%;
  min-width: 320px;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
input{
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}
button {
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  background-color: transparent;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
ul li {
  list-style: none;
  font-size: 16px;
  line-height: 1;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/* Normalize CSS End */
/*--------------------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.mobile-hidden {
  display: none;
}
.overflow-hidden{
  overflow: hidden;
}

.use-cookie{
  position: fixed;
  bottom: 0;
  transform: translateY(110%);
  width: 100vw;
  z-index: 2147483644;
  background-color: #000;
  padding: 10px;
  box-sizing: border-box;
  border-top: 2px solid #2c2c2c;
  overflow: hidden;
}
.use-cookie__container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
.use-cookie.use-cookie--show{
  transform: translateY(0);
}

.use-cookie__text{
  color: #80858C;
  font-size: 13px;
  line-height: 18px;
  text-align: start;
}
.use-cookie__text strong{
  color: var(--color-basic-white);
}
.use-cookie__link{
  text-decoration: underline;
  color: var(--color-basic-white);
}
.use-cookie__btn{
  min-width: 60px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 10px 0 10px 0;
}
/* GLOBAL */

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"),
  url("../fonts/Roboto-Bold.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"),
  url("../fonts/Roboto-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"),
  url("../fonts/Roboto-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"),
  url("../fonts/Roboto-Bold.ttf") format("ttf");
}
@media(min-width: 1110px){
  ::-webkit-scrollbar {
    width: 0.8em;
    height: 0.8em;
  }

  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--text-hover);
    border-radius: 5px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: var(--text-hover);
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
  }
}

body {
  position: relative;
  display: grid;
  font-family: "Roboto", "Arial", sans-serif;
  grid-template-rows: min-content 1fr min-content;
  align-content: start;
  min-height: 100%;
  margin: 0;
  background-color: var(--color-basic-black);
  overflow: hidden;
  color: var(--button-text-color);
}
html.popup-open {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100vw;
  height: -moz-available;
  height: -webkit-fill-available;
  height: fill-available;
}
html.popup-open body {
  display: initial;
  height: 100%;
  min-height: 100vh;
  position: initial !important;
}

.main{
  display: grid;
  grid-template-rows: min-content 1fr minmax(110px, min-content);
  padding-top: 50px;
}

.popup-open .main {
  min-height: unset;
  max-height: 100vh;
  filter: blur(5px);
  overflow: hidden;
}
.second-page .main{
  grid-template-rows: 1fr minmax(110px, min-content);
}

.second-page .header .header-nav__list{
  justify-content: space-between;
}

.wrapper{
  width:100%;
  margin:0 auto;
}

/*-MOBILE-*/
/*-Header-*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 50px;
  z-index: 1000;
  background-color:var(--header-gradient);
}
.popup-open .header{
  filter: blur(5px);
  position: fixed;
  width: 100%;
  z-index: 1999;
}

.header-nav-box{
  position: relative;
  padding: 0 3.125%;
  height: 100%;
}

.header-nav__list{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.header-nav__buttons--box{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-nav__item-logo{
  /*position: absolute;*/
  /*left: 3.125%;*/
  /*transform: translate(0, -2px);*/
  /*width: 60%;*/
  max-width: 140px;
  margin-right: auto;
}
#popup-login.active{
  display:block;
}
.header__logo{
  display: block;
  margin: 0 auto 0;
  width: 70px;
  height: 40px;
}

.second-page .header-nav__item-logo{
  /*position: initial;*/
}

.header-nav__item--mobile-burger,
.header-nav__item--mobile-sign{
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--color-basic-white);
  box-shadow: var(--header-mobile-burder-box-shadow);
}

.header-nav__item--mobile-sign.hidden,
.header-nav__item--mobile-burger.hidden,
.registration-banner-game.hidden,
.game-wrapper-bottom-item.hidden,
.header-nav__button--join-now.hidden,
.header-nav__item--user-greetings.hidden{
  display: none !important;
}
.header-nav__item--user-greetings{
  text-transform: uppercase;
  color: var(--color-basic-white);
  font-weight: 700;
  max-width: 170px;
  height: min-content;
}
.header-nav__item--user-greetings span{
  font-weight: 700;
  color: var(--game-gold-color);
  text-transform: uppercase;
  display: inline-block;
  word-break: break-all;
}
.header-nav__item--mobile-burger .header-nav-item__link,
.header-nav__item--mobile-sign .header-nav-item__link{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.header-nav__item--mobile-sign .header-nav-item__link{
  background-image: url(../img/icon-sign.svg);
  background-repeat: no-repeat;
  background-size: 22px ;
  background-position: left 8px center;
}

.header-nav__item--mobile-burger span:nth-child(1){
  top: 30%;
}

.header-nav__item--mobile-burger span:nth-child(2){
  top: 50%;
}

.header-nav__item--mobile-burger span:nth-child(3){
  top: 72%;
}
.header-nav-item-back__icon{
  display: block;
  /*background-image: url(../img/back-ring-arrow.svg);*/
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.header-nav__item-back{
  display: flex;
  align-items: center;
  color: var(--color-basic-white);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}
.header-nav-item-back__text{
  display: none;
}
.burger-solid{
  width: 24px;
  height: 4px;
  border-radius: 20px;
  background: var(--burger-sticks);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-nav__item--desktop{
  display: none;
}

.main__roulette{
  position: relative;
  min-height: 390px;
  background: url("../img/slide-mobile.webp") no-repeat center/cover;
}

.main__roulette:after{
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -1.5px;
  background-image: var(--gold-line-desk);
  pointer-events: none;
}

.registration__button-back,
.main-roulette-tagline__link,
.main-best-games__link,
.header-nav__button--join-now .header-nav-item__link,
.header-nav__button--login .header-nav-item__link{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  padding: 0 5px;
  text-align: center;
  color: var(--color-basic-white);
  border: 1px solid #D1B592;
  border-radius: 5px;
  background-color: var(--button-bg-1);
  box-shadow:var(--button-shadow-filter);
  text-transform: uppercase;
}
.header-nav__button--join-now .header-nav-item__link {
  background-color: var(--button-bg-2);
  border-color: var(--color-basic-white)
}

.header-nav__button--join-now {
  margin-right: 10px;
}

[lang=de] .header-nav__button--join-now .header-nav-item__link,
[lang=de] .header-nav__button--login .header-nav-item__link,
[lang=fr] .header-nav__button--join-now .header-nav-item__link,
[lang=fr] .header-nav__button--login .header-nav-item__link{
  font-size: 11px;
}

.header-nav__button--join-now .header-nav-item__link:hover,
.header-nav__button--login .header-nav-item__link:hover,
.main-roulette-tagline__link:hover,
.main-best-games__link:hover {
  background-color: var(--button-hover);
  color: var(--color-basic-black);
  background-image: none;
}

.main-inform-box__social #language  {
  display: flex;
}

#language.real-lang{
  position: relative;
  z-index: 2500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
  cursor: pointer;
}

#language #all-languages {
  position: fixed;
  z-index: 9000;
  display: none;
  width: 105px;
  margin-top: 30px;
  margin-left: 0;
  border-radius: 10px;
  background: #282522;
  overflow: hidden;
}

.language__container {
  margin-right: 10px;
}

.language__link {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-basic-white);
}

.language__link:first-child {
  border-radius: 10px 10px 0 0;
}

.language__link:last-child {
  border-radius: 0 0 10px 10px;
}

.language__link:hover {
  background: var(--language-bg-hover);
  font-weight: 700;
}

.language {
  z-index: 9000;
  display: block;
  width: 20px;
  height: 20px;
  color: transparent;
  text-decoration: none;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  /*margin-right: 5px;*/
}
.language.fr {
  background-image: url(../../../common/img/flags/fr.svg);
}

.language.es {
  background-image: url(../../../common/img/flags/es.svg);
}

.language.de {
  background-image: url(../../../common/img/flags/de.svg);
}
.language.it {
  background-image: url(../../../common/img/flags/it.svg);
}
.language.en {
  background-image: url(../../../common/img/flags/en.svg);
}

#language.real-lang.en .language__link.en,
#language.real-lang.fr .language__link.fr,
#language.real-lang.es .language__link.es,
#language.real-lang.de .language__link.de,
#language.real-lang.it .language__link.it {
  display: none;
}

#language #arrow-languages {
  z-index: 9000;
  display: inline-block;
  float: left;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  margin-left: 5px;
  background: url(../img/arrow_languages.svg) no-repeat center/contain;
}

#language #all-languages .language {
  z-index: 9000;
  cursor: pointer;
  margin-right: 5px;
}

#language #current-language {
  z-index: 9000;
  display: inline-block;
  float: left;
  margin-top: 0;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
  width: 20px;
  height: 20px;
}
#language:hover {
  z-index: 9000;
}

#language:hover #all-languages {
  position: fixed;
  top: 11px!important;
  z-index: 9000;
  display: block;
}

#language:hover #arrow-languages {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

#language:hover #all-languages .language:hover {
  z-index: 9000;
}

/*-Main-*/
.main-roulette__box{
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 0;
}

.main-roulette__image-box{
  position: absolute;
  order: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /*background-image: url(../img/girl_bg_tablet.png);*/
  background-size: 318px auto;
  background-repeat: no-repeat;
  background-position: right -81px bottom;
  z-index: -1;
}

.main-roulette__image-box img{
  margin-top: 15px;
}

.main-roulette__box{
  color: white;
}

.main-roulette-tagline__text-1{
  font-family: "Roboto", "Arial", sans-serif;
  background-color: var(--tagline-text-bg-color);
  padding: 6px 6px 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  border-radius: 5px;
  filter: var(--tagline-text-shadow-filter);
  margin-bottom: 16px;
  margin-top: 9px;
  text-transform: uppercase;
  min-width: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.main-roulette__tagline{
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.main-roulette-tagline__text-tagline{
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: start;
  padding: 0 3.125%;
  margin-bottom: 5px;
  color: var(--color-basic-white);

}
.slide__text-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.85, 1);
  /*margin-left: -13px;*/
}

.slide__text-box br{
  margin: 10px;
}

.slide__welcome {
  background: var(--welcome-bg);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  margin: 0 0 15px;
  padding: 5px 12px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--color-basic-white);
}

.slide__big-phrase{
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 6px;
  text-transform: uppercase;
  text-align: center;
}

.slide__small-phrase{
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}

.main-roulette__tagline .gold{
  color: var(--about-us-link-hover);
}

.main-roulette-tagline__text-2{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 3.125%;
  margin-bottom: 17px;
  text-align: center;
  color: var(--text-color);
}

.main-roulette-tagline__link,
.main-best-games__link{
  font-weight: 700;
  font-size: 20px;
  line-height: 37px;
  padding: 4px 22px 0;
  min-width: 120px;
}
.main-roulette-tagline__link{
  margin: 10px auto 0;
}
.modal-btn,
.main-best-games__link{
  font-size: 13px;
  color: var(--color-basic-white);
}

[lang="fr"] .main-best-games__title{
  font-size: 18px;
}
.modal-btn:hover,
.registration__button-sbm:hover{
  color: var(--rgba-white-75);
}

/*.main-roulette-tagline__link:hover {*/
/*  background-image: none;*/
/*  color: var(--color-basic-black);*/
/*  text-shadow: var(--button-text-shadow);*/
/*  border-bottom: 2px solid var(--button-hover-border);*/
/*}*/
/*.main-roulette-tagline__link:hover{*/
/*  border: none;*/
/*}*/
.main-best-games__link{
  max-width: min-content;
  margin: 0 auto;
  white-space: nowrap;
  text-transform: uppercase;
  min-width: 120px;
}

.main__best-games{
  background-color: var(--best-games-bg);
  background-image: url(../img/bg_bottom_desktop.webp);
  background-size: cover;
  display: flex;
}

.main__best-games-title {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: var(--colored-text);
  margin: 25px 0 15px;
}

.main-best-games__box{
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.main-best-games__title{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--games-title-color);
  text-transform: uppercase;
  height: 40px;
  margin-bottom:25px;
}

.main-best-games__images{
  display: grid;
  grid-template-columns: repeat(2, 150px);
  grid-template-rows: repeat(4, 105px);
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 3.125%;
}
.main-best-games__provider{
  display: none;
}

.main-best-games__images .main-best-games-image__box{
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  height: 100%;
  cursor: pointer;
}

.main-best-games__images-row-1{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.main-best-games__images-row-1 img,
.main-best-games__images-row-2 img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-games-image);
}

.main-best-games__images img{
  border-radius: 10px 0 10px 0;
  border-bottom: 3px solid var(--game-bottom-border);
}

.main-best-games__image-btn{
  display: none;
  pointer-events: none;
}

.main__about-us-box{
  width: 100%;
  background:var(--about-us-bg-color);
  padding: 0 4.68%;
}

.main-about-us__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.main-about-us__item{
  position:relative;
  margin-right: 30px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-about-us__item:nth-child(3),
.main-about-us__item:nth-child(4){
  align-items: flex-start;
  height: 25px;
  margin: 0 18px;
}

.main-about-us__item::after{
  position: absolute;
  content: "";
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-color);
}

.main-about-us__item:nth-child(3)::after{
  top: 24%;
}

/* STEPS */
.main__steps {
  position: relative;
  background: var(--body-bg-color) no-repeat center/cover;
  border-top: 3px solid transparent;
  border-image: linear-gradient(270deg, #3C2F0A 0%, #BD8F1F 35.94%, #EBB127 53.12%, #B3871E 68.75%, #3C2F0A 100%) 1;
}
.main__steps::after,
.main__steps::before,
.main__perk::after,
.main__perk::before{
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/shine-left-mob.png);
  background-size: 251px auto;
  background-repeat: no-repeat;
  background-position: left top;
  pointer-events: none;
}

.main__steps::before,
.main__perk::before{
  width: 100%;
  top: 0;
  left: initial;
  right: 0;
  background-image: url(../img/shine-right-mob.png);
  background-position: right bottom;
  background-size: 269px auto;
}

.main__perk{
  position: relative;
  background: var(--body-bg-color) no-repeat center/cover;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(270deg, #3C2F0A 0%, #BD8F1F 35.94%, #EBB127 53.12%, #B3871E 68.75%, #3C2F0A 100%) 1;
}
.main__steps .wrapper {
  padding: 35px 20px 44px;
}
.main__steps-title {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: var(--colored-text);
}
.main__steps-title span {
  display: block;
  color: var(--color-basic-white);
}
.main__steps-item {
  display: flex;
  align-items: flex-end;
}
.main__steps-item-img {
  width: 81px;
  height: 79px;
}
.main__steps-item-text {
  padding-bottom: 25px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.main__steps .main__steps-item-text {
  font-size: 20px;
}

.main__steps-arrow {
  display: none;
}

.main__perk {
  padding: 35px 0 30px;
}

.main__steps-item-img{
  width: 100px;
  height: 100px;
}

.main__perk .main__steps-item {
  align-items: center;
}

.main__perk .main__steps-item-text{
  padding-bottom: 0;
}

.marquee {
  display: flex;
  max-width: 100vw;
  overflow: hidden;
  user-select: none;
  background: var(--header-gradient);
  padding: 30px 0;
}

.swiper {
  width: 100%;
  height: 70px;
}

.marquee .swiper > .swiper-wrapper{
  transition-timing-function: linear;
}

.swiper-slide {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  width: 150px!important;
  height: 70px!important;
  background: var(--color-basic-black);
  margin: 0 5px;
  padding: 0 13px;
  border-radius: 10px;
}

.swiper-slide img {
  width: 100%;
}

/*OVERLAY*/
#overlay {
  display: none;
  z-index: 2000;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--rgba-black-85);
}

#overlay.active{
  display: block;
}

.mobile-inner-block.hide{
  display:none;
}
.pc-inner-block.hide{
  display:none;
}

.tooltip-red.hide{
  display:none;
}
/*POPUP BLOCKED COUNTRY*/
.popup-common.active{
  display: block;
  width: 300px;
  min-height: 315px;
  padding: 0;
}
.popup-common__logo{
  min-height: 60px;
  background: center/contain no-repeat url(../img/logo.svg);
}
.popup-common__text-box{
  padding: 60px 20px 20px;
}
.popup-common__text{
  color: var(--color-basic-white);
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
}

.popup-common .buttons {
  margin-top: 17px;
}
.popup-common .btn-ok {
  display: inline-block;
  background: #bc8c4e;
  border: 1px solid #d1b592;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
  text-align: center;
  min-width: 100px;
  min-height: 35px;
  color: var(--color-basic-white);
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  white-space: nowrap;
}
.btn-gold:hover {
  background-color: #bc8c4e;
  border: 1px solid #d1b592;
  box-shadow: 0 4px 4px black, inset 0 5px 5px #633e10, inset 0 -5px 5px #633e10;
}
/*POPUP LOGIN*/
#popup-login,
.popup-common{
  display: none;
  position: fixed;
  font-family: "Roboto", sans-serif;
  opacity: 1;
  z-index: 2001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  padding: 40px 0 0;
  background-color: var(--registration-popup-bg);
  box-shadow: 0 0 10px var(--rgba-black-25);
  text-align: center;
  line-height: normal;
  border-radius: 10px;
  box-sizing: border-box;
}
.popup-common {
  box-shadow: 0 0 20px rgba(14,11,11,0.9);
}
.popup-login__close {
  width: 26px;
  height: 26px;
  position: absolute;
  top: -13px;
  right: -13px;
  background-image: url(../img/times-white.svg), var(--btn-close-lg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px, contain, contain;
  border-radius: 50%;
}
.popup-login__close:hover {
  background-image: url(../img/times-white.svg), var(--btn-close-lg-hover);
}
#popup-login .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-basic-white);
  margin-bottom: 17px;
  text-align: center;
  text-transform: capitalize;
}
#popup-login form {
  padding: 0 10px;
}
#popup-login .field {
  position: relative;
  margin-bottom: 25px;
}
#popup-login .field__label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 7px;
}
#popup-login .field__label sup {
  color: #DF4B4B;
}
#popup-login .field__input {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  background-color: var(--registration-popup-input-bg);
  border: var(--registration-popup-input-border);
  border-radius: 5px;
}
#popup-login .field--without-icon {
  margin-bottom: 20px;
}
#popup-login::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -20px;
}
.popup-login__footer {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 0 0 10px 10px;
  height: 50px;
}
.frm-login-join {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 14px;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.frm-login_hav-acc {
  margin: 0;
}
#popup-login a.item,
#popup-registration a.item {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #418038;
  margin-left: 5px;
  border-bottom: 1px solid #4180384d;
}
@media (max-width: 1279px) {
  @media (max-height: 480px) and (orientation: landscape) {
    #popup-login {
      position: absolute !important;
      top: 0;
      transform: translateX(-50%);
      margin-top: 20px;
    }
  }
}
/*POPUP REGISTRATION*/

#popup-registration {
  display: none;
  font-family: "Roboto", sans-serif;
  position: absolute;
  opacity: 1;
  z-index: 2002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background-color: var(--registration-popup-bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: var(--color-basic-white);
  line-height: normal;
  border-radius: 10px;
  max-width: 630px;
}

.registration__container::-webkit-scrollbar {
  width: 0;
}

/* Track */
.registration__container::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.registration__container::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Handle on hover */
.registration__container::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

#popup-registration.active {
  display: block;
}

#popup-registration.not-centered {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

#popup-registration::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: -30px;
}
.popup-registration__close{
  width: 26px;
  height: 26px;
  position: absolute;
  top: -13px;
  right: -13px;
  background-image: url(../img/times-white.svg), var(--btn-close-lg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px, contain, contain;
  border-radius: 50%;
  border: 0;
}
.popup-registration__close:hover {
  background-image: url(../img/times-white.svg), var(--btn-close-lg-hover);
}
#popup-registration .registration-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 120px;
  background-image: url(../img/reg_popup_banner_bg_mob@2.webp);
  background-position: center;
  background-size: 101% auto;
  border-radius: 10px 10px 0 0;
  padding: 0 10px;
  box-sizing: border-box;
}

#popup-registration .registration-banner .line-1, #popup-registration .registration-banner .line-2 {
  display: block;
  width: 56%;
  color: var(--color-basic-white);
  text-transform: uppercase;
}

.locale_fr #popup-registration .registration-banner .line-1,
.locale_fr #popup-registration .registration-banner .line-2 {
  width: 60%;
}

.gold,
#popup-registration .registration-banner .line-1 b, #popup-registration .registration-banner .line-2 b {
  color: #ac8e68;
}

#popup-registration .registration-banner .line-1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 15px;
}

#popup-registration .registration-banner .line-1 b {
  font-weight: 700;
}

#popup-registration .registration-banner .line-2 {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.registration__big-loader{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url(../img/gif-load.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px auto;
  z-index: 1998;
}
.registration__big-loader.show{
  display: block;
}
#popup-registration .title{
  font-size: 20px;
  font-weight: 700;
  color: var(--color-basic-white);
  margin-bottom: 17px;
  text-align: center;
}
.field__input:-webkit-autofill,
input:-internal-autofill-selected{
  -webkit-text-fill-color: #000;
  color: #000;
  border: 1px solid var(--game-gold-color);
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}

.see-psw {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100%;
  border: none;
  padding: 0;
  background-image: url(../img/pass_eye.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  transition: .2s ease all;
  outline: none;
}
.see-psw.hidden {
  background-image: url(../img/pass_eye_crossed.svg);
  filter: invert(1);
}

#form{
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 25px 10px 0;
}

.registration-loader-box{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1998;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 5000;
}

.loader.hidden {
  display: none;
}

.registration-loader-box.hidden{
  display: none;
}

.registration-loader-box__inner{
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/gif-load.gif);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.popup-registration .registration__show-password {
  background-image: none;
  right: 1em;
  height: 1em;
  width: auto;
}
.popup-registration .hidden.registration__show-password, .popup-registration .registration__show-password {
  text-transform: uppercase;
  font-size: initial;
  height: 20px;
  width: 20px;
  right: 10px;
  box-sizing: border-box;
}
.registration__btn-box{
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}
.registration__btn-show-password,
.registration__btn-hide-password{
  background-image:url(../img/pass_eye.svg);
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}
.registration__btn-hide-password{
  background-image:url(../img/pass_eye_crossed.svg);
  filter: invert(1);
}

.popup-registration .registration__btn-show-password,
.popup-registration .hidden .registration__btn-hide-password {
  display: none;
}
.popup-registration .hidden .registration__btn-show-password,
.popup-registration .registration__btn-hide-password {
  display: block;
}
#popup-registration::-webkit-scrollbar {
  width:0;
  height: 0;
}

/*.forgot-password .field--correct .field__wrp-input input,*/
/*.popup-registration .field--correct .field__wrp-input  input,*/
/*.popup-registration--mobile .field--correct .field__wrp-input input{*/
/*  border: 2px solid var(--color-green--120);*/
/*}*/

.popup-login .field--error .field__input,
#popup-login .field--error .field__input:focus,
.forgot-password .field--error .field__input,
#popup-registration .field--error .field__input:not(.registration__phone-number),
.popup-registration--mobile .field--error .field__input{
  border: 2px solid var(--error-border);
  outline: none;
}

.tooltip-red{
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  font-size: 11px;
  text-align: left;
  line-height: 1;
  width: 100%;
  height: fit-content;
  word-break: break-word;
  z-index: 1;
  color: var(--error-border);
}

.tooltip-red.tooltip-red--password{
  top: calc(100% + 15px);
}

.password-indicator {
  background-color: #ababab;
  height: 5px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(100%);
  position: absolute;
  bottom: -5px;
  border-radius: 10px;
  overflow: hidden;
}
.password-indicator__progress {
  transition: .4s ease all;
  height: 100%;
}

[data-password-strength="very-weak"] {
  background-color: #EB4846;
  width: 20%;
}

[data-password-strength="weak"] {
  background-color: #ff9703;
  width: 40%;
}

[data-password-strength="medium"] {
  background-color:   #ffe403;
  width: 60%;
}

[data-password-strength="strong"] {
  background-color: #267a05;
  width: 80%;
}

[data-password-strength="very-strong"] {
  background-color: #267a05;
  width: 100%;
}

#popup-registration .field__input:not([type="tel"]):focus {
  padding: 0 0 0 9px;
}

@media(max-width: 650px){
  .header-nav__item--user-greetings{
    font-size: 14px;
  }
}

@media(max-width: 500px){
  .header-nav__item--user-greetings{
    display: none;
  }
}
.registration__fields-wrp {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: flex-end;
  grid-gap: 25px 10px;
  margin-bottom: 37px;
}

@media (max-width: 1024px){
  #popup-registration .registration__fields-wrp {

  }
}

@media (max-width: 420px){
  #popup-registration .registration__fields-wrp {

  }
}
/*.popup-registration .field--reg, .popup-registration--mobile .field--reg {*/
/*  margin-bottom: 0;*/
/*}*/
input, textarea, select, label {
  font: normal 1em/1.3em "Roboto",sans-serif;
}
.field__label {
  padding-right: 18px;
  display: block;
  position: relative;
  user-select: none;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
  font-family: 'Roboto', sans-serif;
  color: var(--color-basic-white);
}

.field__label sup{
  color: #DF4B4B;
}

.field__wrp-input {
  position: relative;
}

.select-container::before,
.field--country .field__wrp-input::before,
.field--currency .field__wrp-input::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 35px;
  height: 100%;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 16px;
  filter: invert(1);
  pointer-events: none;
  box-sizing: border-box;
}

.select-container.active::before {
  transform: rotate(180deg);
}

.field__input {
  display: block;
  border: var(--registration-popup-input-border);
  background-color: #fff;
  color: var(--color-basic-white);
  outline: none;
  padding: 0 10px;
  text-align: left;
  height: 41px;
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
}

#popup-registration .field__input, .popup-registration--mobile .field__input {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-basic-white);
  display: flex;
  align-items: center;
  background-color: var(--registration-popup-input-bg);
  border: var(--registration-popup-input-border);
  border-radius: 5px;
  padding: 0 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#popup-registration input[type="date"] {
  position: relative;
}

#popup-registration input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: transparent;
  background: transparent;
}

#popup-registration input[type="date"]::-webkit-inner-spin-button,
#popup-registration input[type="date"]::-webkit-clear-button {
  z-index: -10;
}

#popup-registration input[type="date"]::-webkit-input-placeholder {
  z-index: 99;
}

#popup-registration input[type="date"]:placeholder {
  z-index: 99;
}

#popup-registration input[type="date"]:not(.has-value):before {
  content: attr(placeholder);
  width: 100%;
  line-height: 1;
}

#popup-registration input[type="date"]:not(.has-value)::-webkit-datetime-edit {
  display: none;
}

#field--reg_birthday .field__wrp-input > span {
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  width: 28px;
  height: 41px;
  background-image: url(../img/datepicker-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  filter: invert(1);
  pointer-events: none;
  cursor: pointer;
}

#field--reg_birthday .field__wrp-input.open > span {
  background-image: url(../img/times.svg);
  background-position: center;
  background-size: 14px;
}

#popup-registration .field__mobile--focus, #popup-registration .field__mobile--focus:hover {
  /*border: 2px solid var(--focus-input-border);*/
  box-shadow: inset 0 0 1px var(--focus-input-outline);
  border-radius: 5px;
}

#profile__filed_birthday, #field--reg_birthday, #field--reg_short-form-birthday, #kyc-field--reg_short-form-birthday, #deposit-field--reg_short-form-birthday {
  position: relative;
}

.registration__flag-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-position: center;
  background-size: auto 22px;
}

.field__input--transparent {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: inherit;
  font-weight: 400;
  box-sizing: border-box;
  border-radius: 0 5px 5px 0;
  color: inherit;
  padding-left: 10px;
  padding-right: 0;
}
.field__input-phone-code {
  width: calc(100% - 22px);
  font-weight: 700;
}

.field--error #registration__phone-number.field__input,
#popup-registration #registration__phone-number.field__input{
  border: none;
}

.registration__phone-code {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink:0;
  width: auto;
  min-width: 70px;
  height: 100%;
  border-radius: 5px 0 0 5px;
  padding: 8px 10px 8px 9px;
  box-sizing: border-box;
  background: #F5F5F5;
}
#popup-registration .field__input.field__input--code-country{
  padding-left: 0;
}

.popup-registration__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.frm-login-have-acc{
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 14px;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.registration__checkbox-wrp {
  border: 0;
  padding: 0;
  margin-bottom: 20px;
}

.checkbox {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.checkbox__button {
  display: none;
}
.checkbox__label {
  color: var(--color-basic-white);
}

.checkbox__label.checkbox-unchecked{
  color: var(--color-red--140);
  animation: 1s linear 0s infinite  alternate checkbox-red;
}
@keyframes checkbox-red{
  from { color: var(--color-basic-white) } to { var(--color-red--140)) }
}
.registration__checkbox-label {
  color: var(--color-basic-white);
  font-size: 14px;
}
.registration__checkbox-label {
  font-size: 12px;
}
.checkbox {
  display: flex;
  align-items: center;
  margin: 9px 0;
}
.checkbox__button {
  display: none;
}
.checkbox__label {
  position: relative;
  padding-left: 23px;
  cursor: pointer;
  display: block;
  opacity: 1;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 16px;
  color: #C5C5C5;
}
.checkbox__label::before, .checkbox__label::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 1px;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}

.checkbox__label::after{
  width: 16px;
  height: 16px;
  top: 1px;
  background-image: none;
  opacity: 1;
  border: 1px solid #D1B592;
  box-shadow: inset 0 1px 3px rgba(255,255,255, 1);
  border-radius: 3px;
  box-sizing: border-box;
}
#popup-registration .checkbox__button:checked + .checkbox__label::after{
  background-color: var(--color-checkbox);
  background-image: url(../img/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border: 0;
  box-shadow: none;
}
.first_button, .form-cc__btn-reload-payment, .second_button {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0.15em 10px;
  outline: none;
  border: none;
  border-radius: 5px;
  -webkit-appearance: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}
.registration__button-sbm:disabled{
  filter: grayscale(1);
}
.second_button {
  background-image: var(--button-bg-img);
  color: var(--color-basic-black);
  text-shadow: var(--button-text-shadow);
}
.second_button:hover{
  background-color: var(--button-hover);
  background-image: none;
}
.form-cc__btn-reload-payment, .first_button {
  background-color: var(--button-bg-1);
  text-shadow: var(--button-text-shadow);
  color: var(--color-basic-white);
}

.registration__button-back,
.popup-login__button-sbm,
.registration__button-sbm {
  min-height: 35px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 13px;
  color: var(--color-basic-white);
  text-shadow: none;
  border: 0;
  min-width: 100px;
  margin: 0;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

.registration__button-back{
  background-color: var(--button-bg-2);
  border: 1px solid var(--color-basic-white);
  box-shadow: none;
}
.popup-login__button-sbm {
  margin: auto auto 20px;
}
.registration__terms {
  text-decoration: none;
  color: var(--about-us-link-hover);
}

.popup-registration__footer {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 0 0 10px 10px;
  height: 50px;
}

/*END POPUP REGISTRATION*/


/*Popup Game*/


.popup-game-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 50px;
  padding-top: 3vw;
  overflow-y: auto;
}

.popup-game, .popup-game-mobile {
  background-image: url(../img/game_bg.png);
  background-position: center top;
  background-size: cover;
  background-color: var(--game-popup-bg);
  z-index: 4000;
}

.iframe-game-mobile-wrap {
  display: none;
  width: 100%;
  height: 100%;
}

.iframe-game-mobile {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 15px);
}
.close-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  border: 2px solid darkgrey;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}

.close-button--popup-game-mobile {
  position: fixed;
  right: 10px;
  top: 10px;
}

.close-button {
  border: none;
  background-image: var(--bg-second-button);
}
.popup-game-mobile_title {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  color: var(--first-color);
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1em;
  font-weight: 400;
  padding: 0 38px;
}
@media (max-width: 576px){
  .popup-game_inner-wrp {
    padding-bottom: 40px;
  }
}

.popup-game_inner-wrp {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.close-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  border: 2px solid darkgrey;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}

.close-button--popup-game-mobile {
  position: fixed;
  right: 10px;
  top: 10px;
}

.close-button {
  border: none;
  background-image: var(--bg-second-button);
}

.close-button_icon::before, .close-button_icon::after {
  content: " ";
  position: absolute;
  width: 2px;
  background-color: #000;
  height: 67%;
}

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

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

#popup-game .registration-banner-game b, .reg-popup-game__info b {
  color: var(--first-color);
}

b, strong {
  font-weight: bolder;
}

#popup-game .registration-banner-game, .reg-popup-game__info {
  border: 2px solid var(--game-popup-description-border);
  background-color: rgba(0,0,0, 0.9);
  border-radius: 10px;
}

#popup-game.hide{
  display:none;
}

.close-button_icon {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-game-mobile--btn {
  margin: 4px 0;
  min-width: 222px;
  min-height: 36px;
  max-width: 269px;
  width: 100%;
  box-sizing: border-box;
}

.popup-game-mobile_info-wrp {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.popup-game-mobile_first-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
  width: auto;
  height: 100%;
}

.popup-game-mobile_second-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  height: 100%;
}

.popup-game-mobile_img {
  width: 100%;
  min-height: 125px;
  max-width: 250px;
}

#popup-game .registration-banner-game.mob {
  padding: 5px;
  min-width: calc(100% - 20px);
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  margin: 40px 0 0;
  line-height: 18px;
  max-width: 350px;
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  color: var(--color-basic-white);
}
.popup-game-mobile_ratio-wrp {
  display: flex;
  align-items: center;
  margin: 1rem auto;
}
.popup-game-mobile_ratio {
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  position: relative;
  padding-left: 32px;
  margin-right: 10px;
}
.popup-game-mobile_ratio span {
  white-space: pre-wrap;
}
.popup-game-mobile--volatility::after {
  background-image: url(../img/volatility.svg);
}

.popup-game-mobile_ratio::after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 27px;
  height: 25px;
}

.popup-game-mobile--rtp::after {
  background-image: url(../img/rtp.svg);
}

.popup-game-mobile_ratio {
  color: #fff;
  font-size: 11px;
  line-height: 1em;
  position: relative;
  padding-left: 32px;
  margin-right: 10px;
}

@media(max-width: 1110px){

  @media (max-width: 576px){
    .popup-game-mobile_second-section {
      margin: 0;
      width: 100%;
      justify-content: flex-start;
      flex-grow: 1;
    }
  }

  @media (max-width: 576px){
    .popup-game-mobile {
      padding: 40px 0;
    }
  }

  @media (max-width: 576px){
    .popup-game-mobile {
      min-height: 100vh;
    }
  }

  @media (max-width: 799px){
    #popup-game {
      overflow-y: scroll;
    }
  }
  @media (max-width: 576px){
    .popup-game-mobile_info-wrp {
      justify-content: end;
      flex-direction: column;
      align-items: center;
      flex-grow: 1;
      min-height: min-content;
      gap: 20px;
    }
  }

  @media (max-width: 576px){
    .popup-game-mobile_first-section {
      padding: 0 39px;
    }
  }
  @media (max-width: 576px){
    #popup-game .registration-banner-game.mob {
      margin: 0;
    }
  }
}


@media(min-width: 365px){
  .main-about-us__item:nth-child(3){
    align-items: center;
    height: 41px;
    margin: 0 18px 0 0;
  }

  .main-about-us__item:nth-child(3)::after{
    top: 50%;
  }

  .main__payments{
    background-color: var(--color-basic-black);
  }

  .main__payments-content {
    gap: 10px;
    column-gap: 14px;
  }

  .main__payments svg,
  .main__payments img {
    transform: scale(1.5);
  }

  .main-roulette-tagline__text-1{
    margin-bottom: 15px;
  }
}

@media(min-width: 451px){
  .main-about-us__item:nth-child(3),
  .main-about-us__item:nth-child(4){
    align-items: center;
    height: 51px;
  }

  .main-about-us_list .main-about-us__item{
    margin: 0 14px;
  }

  .main-about-us__item:nth-child(4)::after{
    top: 50%;
  }
}

@media(min-width: 474px){
  .main-about-us_list .main-about-us__item{
    margin: 0 18px;
  }
}

.main-about-us__item:last-child::after{
  width: 0;
  height: 0;
  background-color: transparent;
}
.main-about-us__link{
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.main-about-us__link:hover{
  color: var(--about-us-link-hover);
}

.main__payments-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 3% 30px;
  overflow: hidden;
  pointer-events: none;
  gap: 5px;
  column-gap: 25px;
  margin: 0 auto;
}

@media(min-width:620px){
  .main-best-games__images{
    display: grid;
  }

  .main-best-games__images .main-best-games-image__box:nth-child(5),
  .main-best-games__images .main-best-games-image__box:nth-child(6){
    display: block;
  }

  .header-nav__item--user-greetings{
    max-width: 230px;
  }
}

@media(min-width: 540px){
  .main-best-games__images{
    display: grid;
    /*grid-template-columns: repeat(6, 150px);*/
    /*grid-template-rows: 16.81vw 16.81vw;*/
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 3.125%;
  }
  #popup-registration .registration-banner{
    background-image: url(../img/reg_popup_banner_bg@2.webp);
    background-size: cover;
  }

}

@media(min-width: 650px){
  .main__roulette {
    min-height: 200px;
    background: url(../img/girl_bg_desktop.webp) no-repeat 90% bottom/60%, url(../img/collage_bg_origin.webp) no-repeat center/cover;
  }

  .slide__text-box {
    align-items: flex-start;
    transform: scale(0.85, 1);
    margin-left: -27px;
  }
  .slide__big-phrase {
    text-align: left;
  }
  .main-roulette__box{
    position: relative;
    flex-direction: row;
  }

  .main-roulette-tagline__text-1{
    margin-top: 0;
    margin-bottom: 17px;
  }

  .main-roulette-tagline__text-2{
    margin-bottom: 20px;
  }
  .main-roulette__tagline:before{
    content: none;
  }

  .main-roulette__image-box{
    min-width: 170px;
    background-size: 319px auto;
    background-position: bottom right;
    order: 1;
  }

  .main-roulette__image-box img{
    margin-top:0;
  }

  .main .main-roulette__tagline{
    padding-left: 3.125%;
    justify-content: center;
    align-items: flex-start;
    flex-basis: 52%;
    order: 0;
  }

  .main-roulette-tagline__text-tagline{
    text-align: left;
    padding: 0;
  }

  .main .main-roulette-tagline__link{
    align-self: flex-start;
    min-width: 140px;
    margin-left: 0;
  }

  .main-roulette-tagline__text-2 {
    padding: 0;
    text-align: start;
  }

  .main__payments {
    column-gap: 16px;
  }
  .main-roulette-tagline__text-tagline {
    font-size: 25px;
    line-height: 30px;
  }
  #popup-registration .registration-banner{
    height: 150px;
  }

  #popup-registration .registration-banner .line-1,
  #popup-registration .registration-banner .line-2{
    text-transform: uppercase;
  }

  [lang="fr"] #popup-registration .registration-banner .line-1,
  #popup-registration .registration-banner .line-1,
  #popup-registration .registration-banner .line-2 {
    font-size: 20px;
    margin-bottom: 20px;
    width: 290px;
  }

  #popup-registration .registration-banner .line-2{
    margin: 0;
  }
}
.main__inform-box{
  position: relative;
  background-color: var(--body-bg-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 25px 0;
  overflow: hidden;
}

.main-inform-box__social .wrapper {
  padding: 0 10px;
}
.main-inform-box__social #language:hover #all-languages {
  position: absolute;
}
.popup-open .main-inform-box__social{
  min-height: unset;
  height: unset;
}
.social__logo{
  width: 80px;
  height: 45px;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.social__title{
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  color: #7D7D7D;
  margin-top: 5px;
  text-align: left;
}
.social__text{
  font-size: 11px;
  line-height: 15px;
  color: var(--footer-bg-social-small-text);
  text-align: center;
  padding: 0 10px 10px;
  margin-top: 20px;
}
/*-Footer-*/

.footer{
  background: var(--footer-bg-color);
  padding: 15px 0 10px;
}

.footer__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer__img-wrapper:first-child {
  margin-right: 10px;
}
.popup-open .footer {
  display: none;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.footer__text{
  color: var(--footer-text);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 45px;
  text-align: center;
}
.footer__box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer__box a{
  position: relative;
  color: var(--color-basic-white);
  font-size: 11px;
  line-height: 15px;
  text-align: center;
}
.footer__box a:hover{
  color: var(--about-us-link-hover);
}
.footer__box span{
  display: block;
  width: 4px;
  height: 4px;
  background-color: #a3a3a3;
  border-radius: 50%;
  margin: 0 10px;
}

.main-info {
  width: 100%;
  max-width: 440px;
}
.main__inform-content-item {
  margin-top: 20px;
}
.main__inform-content-item .flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.main__inform-content-item .flex .main__inform-content-link {
  width: 50%;
}
.main__inform-content-title {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-basic-white);
  margin-bottom: 5px;
}
.main__inform-content-link {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-decoration: underline;
  padding: 7px 0;
  color: #7D7D7D;
}
.main__inform-content-link:hover {
  color: var(--about-us-link-hover);
}
/*-TABLET-*/
@media (max-width:767px){
  .language__container {
    order: -1;
  }
}
@media (min-width:768px){
  .header__logo {
    display: block;
    margin: 24px auto 0;
    width: 90px;
    height: 50px;
  }
  .header-nav__item-back{
    font-size: 15px;
  }
  .header-nav-item-back__text{
    display: block;
  }

  #language.real-lang{
    height: 61px;
    margin-left: 20px;
  }

  .language__container {
    margin: 0;
    height: 61px;
  }

  #language #all-languages {
    margin-top: 50px;
  }

  #language #current-language {
    width: 30px;
    height: 30px;
    margin-top: 13px;
  }

  #language .language {
    margin-right: 5px;
  }

  #language #arrow-languages {
    margin-top: 22px;
    width: 20px;
    height: 20px;
  }

  #game-7, #game-8,#game-9, #game-10 ,#game-11, #game-12 {
    display:block;
  }

  .wrapper{
    width:100%;
    margin:0 auto;
  }
  /*-Header-*/
  .header{
    height: 80px;
  }
  .header-nav-box{
    padding: 0 4.5572916%;
  }

  .header-background::after{
    height: 43px;
  }

  .header-background::before{
    height: 43px;
  }
  .header__logo{
    width: 140px;
    height: 80px;
    margin: 0 auto 0;
    padding-left: 4px;
  }

  [lang="es"] .header-nav__button--join-now .header-nav-item__link,
  [lang="es"] .header-nav__button--login .header-nav-item__link,
  .header-nav__button--join-now .header-nav-item__link,
  .header-nav__button--login .header-nav-item__link{
    font-size: 15px;
  }

  #popup-registration .registration-banner .line-1,
  .locale_fr #popup-registration .registration-banner .line-1 {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
  }

  #popup-registration .registration-banner .line-2 {
    width: 30%;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }

  .locale_fr #popup-registration .registration-banner .line-1 {
    width: 48%;
  }

  .locale_fr #popup-registration .registration-banner .line-2 {
    width: 30%;
  }

  /*-Main-*/
  .main {
    padding-top: 80px;
  }
  .main-roulette__box{
    min-height: 366px;
  }

  .slide__welcome{
    font-size: 18px;
    padding: 10px 15px;
  }

  .main-roulette__image-box{
    height: 366px;
    background-image: url(../img/girl_bg_desktop.webp);
    background-size: 589px auto;
    background-position: bottom  right;
    margin-top: auto;
  }

  .main-roulette__image-box:after{
    background-size: auto 366px;
  }

  .main__roulette {
    background: url(../img/girl_bg_desktop.webp) no-repeat bottom/100%, url(../img/collage_bg_origin.webp) no-repeat center/cover;
  }

  .main-roulette__image-box img{
    margin-top: 0;
    margin-right: 18px;
    box-sizing: border-box;
    width: 279px;
  }

  .main .main-roulette__tagline{
    padding-left: 4.5572916%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 52%;
    margin-top: 40px;
  }

  .main-roulette-tagline__text-1{
    display: block;
    margin-bottom: 15px;
    min-width: 107px;
    text-align: center;
  }

  .main-roulette-tagline__text-tagline{
    text-align: left;
    padding: 0;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .main .main-roulette-tagline__link{
    margin-bottom: 57px;
  }
  .slide__big-phrase{
    font-size: 36px;
    line-height: 36px;
  }

  .slide__small-phrase{
    font-size: 30px;
    line-height: 30px;
  }
  .main-roulette-tagline__text-2 {
    padding: 0;
    margin-bottom: 20px;
  }

  .main .main-roulette-tagline__link{
    min-width: 160px;
    margin-left: 0;
  }

  .main__steps {
    background: var(--body-bg-color) no-repeat center/cover;
  }

  .main__perk {
    padding: 45px 0 50px;
  }

  .main__steps-item {
    align-items: center;
  }

  .main__steps-item-text:not(.main__perk .main__steps-item-text) {
    padding-bottom: 0;
    padding-top: 20px;
    text-align: center;
  }

  .main__perk .main__steps-item {
    max-width: 192px;
    width: 100%;
  }

  .main__perk .main__steps-item-text {
    text-align: center;
  }

  .main__steps-title, .main__best-games-title {
    font-size: 30px;
  }

  .main__best-games-title {
    margin: 40px 0 35px;
  }

  .main__steps-title span {
    display: inline-block;
  }

  .main__perk .main__steps-item-img{
    width: 160px;
    height: 160px;
  }

  .main__steps-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main__perk .main__steps-content {
    align-items: stretch;
  }

  .main .main-best-games__link{
    padding-top: 2px;
    padding-bottom: 1px;
  }

  .main-best-games__box{
    padding-top: 20px;
    padding-bottom: 35px;
  }

  .main-best-games__title{
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 22px;
  }

  .main-best-games__images{
    grid-template-columns: repeat(4, 150px);
    grid-template-rows: repeat(3, 105px);
    /*grid-template-columns: minmax(160px, 150px) minmax(160px, 150px)  minmax(160px, 150px) minmax(160px, 150px) minmax(143px, 150px) minmax(143px, 150px);*/
    /*grid-template-rows:  14.97395833333vw 14.97395833333vw;*/
    padding:0 4.55729116%;
    gap: 10px;
    margin-bottom: 34px;
    row-gap: 30px;
  }
  .main-best-games__image-btn-container{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    position: absolute;
    top:0;
    left:0;
    opacity: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    display: none;
  }

  .main-best-games__images .main-best-games-image__box:hover .main-best-games__image-btn-container{
    opacity: 1;
    transition: background-size 0.3s ease-in-out,
    background-position 0.3s ease-in-out;
    /*background-size: 60%;*/
    background-repeat: no-repeat;
    background-position: top center;
  }

  .main-best-games__images-row-2{
    display: block;
  }

  .main-best-games__image-btn{
    position: absolute;
    content: "";
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    min-width: 70px;
    line-height: 15px;
    padding: 0 5px;
    color: var(--color-basic-white);
    border: 1px solid #D1B592;
    border-radius: 5px;
    background-color: var(--button-bg-1);
    box-shadow:var(--button-shadow-filter);
    text-transform: uppercase;
  }

  .main-best-games__provider {
    position: absolute;
    display: block;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 105px;
    width: 100%;
    height: 30px;
  }
  .main-best-games__provider img {
    background-color: transparent;
    border-bottom: none;
    border-radius: 0;
  }

  .main-best-games__images .main-best-games-image__box:hover .main-best-games__image-btn{
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .main__best-games {
    background-color: var(--best-games-bg);
    background-image: url(../img/bg_bottom_desktop.webp);
  }

  .main-about-us__list{
    column-gap: 29px;
  }
  .main-about-us__list .main-about-us__item{
    margin: 0;
  }
  .main__about-us-box{
    padding: 0 4.55729116%;
  }
  .main__payments{
    padding: 32px 4.9% 30px;
    max-width: 820px;
    gap: 10px;
    column-gap: 19px;
  }

  /*-Footer-*/
  .footer__box span{
    margin: 0 20px;
  }
  .footer__box a{
    font-size: 13px;
  }

  .main__steps-item-text {
    font-size: 13px;
  }

  .main__steps .main__steps-item  {
    width: 25%;
  }

  .main__steps-item-img:not(.main__perk .main__steps-item-img) {
    margin-left: 25px;
  }

  .main__steps-arrow {
    display: block;
    width: 100%;
    max-width: 44px;
    height: 15px;
    background: url("../img/arrow-right.svg") no-repeat center/cover;
    margin-top: -16px;
  }

  .main__steps-item {
    flex-direction: column;
  }

  .footer__content {
    position: relative;
    padding: 0 10px;
    width: 100%;
    justify-content: center;
  }

  .footer__content .wrapper {
    max-width: 970px;
  }

  .footer__img {
    position: absolute;
    left: 10px;
    margin-bottom: 0;
  }
}

@media(min-width: 820px){
  .main__payments{
    max-width: 100%;
  }
}

@media(min-width: 950px){
  body {
    background-size: auto 435px;
    background-position: center top 80px;
  }
  .main-roulette__image-box img{
    width: 354px;
    margin-top: -36px;
    margin-right: 62px;
  }

  .main-roulette__box{
    min-height: 435px;
  }

  .main-roulette__image-box{
    height: 435px;
    background-size: 695px auto;
    background-position: bottom right;
  }

  .main-roulette__image-box:after{
    background-size: auto 435px;
  }

  .main-roulette__image-box:before{
    bottom: -23px;
  }

}

@media(min-width: 1020px){
  body {
    background-size: auto 435px;
    background-position: center top 80px;
  }
  .main-roulette__image-box img {
    width: 410px;
    margin-top: 11px;
    margin-right: 62px;
  }

  .main-roulette-tagline__text-1 {
    margin-bottom: 22px;
  }

  .main-roulette-tagline__text-tagline{
    font-size: 40px;
    margin-bottom: 25px;
  }

  .main-roulette-tagline__text-2 {
    margin-bottom: 30px;
  }
  [lang=de] .header-nav__button--join-now .header-nav-item__link,
  [lang=de] .header-nav__button--login .header-nav-item__link,
  [lang=fr] .header-nav__button--join-now .header-nav-item__link,
  [lang=fr] .header-nav__button--login .header-nav-item__link{
    font-size: 15px;
  }
}

/*-DESKTOP-*/
@media (min-width:1110px){
  .mobile-br {
    display: none;
  }

  .mobile-hidden {
    display: block;
  }
  .wrapper{
    width: 100%;
    max-width:960px;
    margin: 0 auto;
    padding: 0;
  }
  /*-Header-*/
  .header-nav__item--mobile-burger,
  .header-nav__item--mobile-sign{
    display: none;
  }

  .header::before{
    height: 80px;
  }

  .header-nav__list{
    justify-content: flex-end;
    margin: 0;
    height: 78px;
  }

  .header-nav__list.flex-start{
    justify-content: flex-start;
  }

  .header-nav-item__link{
    color: #fff;
    padding: 0 5px 0 0;
    transition: 0.1s all ease-in-out;
  }

  .header-nav-item__link:hover{
    color: var(--text-hover);
  }

  .header-nav__item:nth-child(3){
    margin-right: 18px;
  }

  .header-nav__item:nth-child(4){
    margin-right: auto;
  }

  .header-nav__item:nth-child(6){
    margin-right: 0;
  }
  .header-nav__button--login .header-nav-item__link,
  .header-nav__button--join-now .header-nav-item__link{
    min-width: 100px;
    padding: 0 15px;
    min-height: 40px;
    font-size: 15px;
  }

  .header__logo-link{
    display: block;
    width: 100%;
    height: 100%;
  }

  .header-nav__item--desktop.header-nav__button--join-now:not(.hidden){
    display: block;
  }
  /*-Main-*/

  .main__roulette{
    min-height: 506px;
    background: url("../img/girl_bg_desktop.webp") no-repeat 70%, url("../img/collage_bg_origin.webp") no-repeat center/cover;
  }

  .main-roulette__box{
    flex-direction: row;
    background: none;
    width: 1100px;
  }

  .main-roulette__box:after{
    content: none;
  }

  .main-roulette__tagline{
    order: 0;
    align-items: flex-start;
  }

  .main-roulette__image-box{
    order: 1;
    position: absolute;
    right: -114px;
    top: 0;
    height: 506px;
    width: 800px;
    margin: 0;
    padding: 0;
    background-image: url(../img/girl_bg_desktop.webp);
    background-position: center;
    background-size: auto 506px;
  }
  .main-roulette__image-box img{
    width: 518px;
    margin-top: 10px;
    margin-right: 0;
    margin-left: -3px;
  }

  .main .main-roulette__tagline{
    padding-left: 0;
    flex-basis: 58%;
    margin: 95px 0 0 0;
  }
  .slide__text-box {
    transform: scale(0.85, 1);
    margin-left: -42px;
  }
  .slide__big-phrase{
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 10px;
  }

  .slide__small-phrase{
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .main__steps::after,
  .main__perk::after{
    background-image: url(../img/shine-left.png);
    background-size: 321px auto;
  }
  .main__steps::before,
  .main__perk::before{
    background-image: url(../img/shine-right.png);
    background-size: 319px auto;
  }
  .main-roulette-tagline__text-1{
    margin-bottom: 19px;
  }

  .main-roulette-tagline__text-tagline{
    font-size: 50px;
    line-height: 51px;
  }
  .slide__small-phrase{
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .main-roulette-tagline__text-2{
    line-height: 45px;
  }

  .main .main-roulette-tagline__link{
    align-self: flex-start;
    padding: 11px 27px;
    min-width: 170px;
    font-size: 30px;
  }

  .locale_fr .main .main-roulette-tagline__link {
    font-size: 28px;
  }

  .main-best-games__box{
    padding-top: 44px;
    padding-bottom: 39px;
  }

  .main-best-games__title{
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 25px;
  }

  .main-best-games__images{
    grid-template-columns: repeat(6, 150px);
    grid-template-rows: repeat(2, 105px);
    margin-bottom: 51px;
  }

  .main__best-games {
    background-color: var(--best-games-bg);
    background-image: url(../img/bg_bottom_desktop.webp);
  }

  .main-best-games__image-btn-container{
    display: block;
  }

  .main-about-us__list{
    gap: 35px;
    height: 58px;
  }

  .main__payments{
    display: flex;
    padding: 16px 0 17px;
    transform: none;
    max-width: 100%;
    column-gap: 22px;
  }

  .main-payments__box-1 svg,
  .main-payments__box-1 img,
  .main-payments__box-2 svg,
  .main-payments__box-2 img,
  .main-payments__box-3 svg,
  .main-payments__box-3 img{
    margin-right: 5px;
  }
  /*-Footer-*/
  .footer__text{
    padding-left: 0;
    padding-top: -1px;
  }

  .registration__fields-wrp{
    grid-gap: 20px 15px;
  }

  .popup-game {
    min-height: -webkit-min-content;
    min-height: -moz-min-content;
    min-height: min-content;
  }

  .popup-game {
    display: block;
    position: absolute;
    margin-left: 0;
    width: 100%;
    height: 100%;
    top: 55px;
  }

  #popup-game .panel-info .close {
    float: right;
    margin-left: 7px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    background-image: url(../img/times-white.svg), var(--btn-close-lg);
  }

  #popup-game .panel-info .game-name {
    font-size: 24px;
    line-height: 28px;
    color: var(--game-popup-title-color);
    margin-bottom: 10px;
    display: block;
  }

  .popup-game .panel-game {
    position: relative;
    float: left;
    margin-left: 17px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--color-darkgrey--250);
    background-color: var(--color-basic-black);
    width: calc(100% - 360px);
    height: 90vh;
  }
  #popup-game .panel-game .game-container {
    background-image: url(../img/gif-load.gif);
    background-size: 160px 120px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
  }

  .popup-game .panel-info {
    float: right;
    width: 300px;
    max-height: 91vh;
    margin-right: 18px;
    margin-top: 19px;
  }

  .panel-info__container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #popup-game .panel-info .game-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-basic-white);
    margin-bottom: 5px;
    font-weight: 400;
    display: block;
    overflow-y: auto;
  }

  .game-iframe, #iframe {
    z-index: 9999;
    display: inline;
    width: 100%;
    height: 100%;
  }

  #popup-game #game-data .game-volatility {
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 3px;
    margin-left: 0;
    text-align: center;
    padding-left: 33px;
    color: var(--color-basic-white);
    z-index: 50;
    width: auto;
    height: 35px;
    font-size: 14px;
    background: url(../img/volatility.svg) no-repeat top left;
  }

  #popup-game .panel-info .game-info .game-rtp {
    margin-bottom: 1px;
    margin-left: 0;
    text-align: center;
    padding-left: 33px;
    display: inline-flex;
    align-items: baseline;
    color: var(--color-basic-white);
    z-index: 50;
    width: auto;
    height: 35px;
    font-size: 14px;
    background: url(../img/rtp.svg) no-repeat top left;
  }

  #popup-game .registration-banner-game {
    width: auto;
    padding: 10px;
    text-align: center;
    color: var(--color-basic-white);
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-height: 140px;
  }

  .main__inform-content, .main__inform-links {
    display: flex;
    justify-content: space-between;
  }

  .main__inform-content-item:first-child {
    margin-right: 20px;
  }

  .main__payments-content {
    gap: 25px;
  }

  .main__inform-content-item {
    margin-top: 0;
    min-width: 160px;
  }

  .main__inform-content-link {
    padding: 5px 0;
  }
}

@media (min-width: 2100px) {
  .main__roulette{
    background: url(../img/girl_bg_desktop.webp) no-repeat 56%, url(../img/collage_bg_origin.webp) no-repeat center/cover;
  }

  .locale_fr .main .main-roulette-tagline__link {
    font-size: 30px;
  }
}
@media(min-height: 1500px) and (min-width: 2100px) {
  .main__steps{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

input:-webkit-autofill, select:-webkit-autofill{
  box-shadow: inset 0 0 0 50px var(--registration-popup-input-bg) !important;
  -webkit-text-fill-color: var(--color-basic-white) !important;
}

.free-chips--hidden {
  display: none;
}
