@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Black.ttf');
    font-weight: 900;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Light.ttf');
    font-weight: 300;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    font-family: 'Fira Sans', sans-serif;
}

.messages-container.isopen {
    display: flex;
}
.messages-container {
    display: none;
    overflow: hidden;
    position: fixed;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 50;
    /* pointer-events: none; */
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.landing-first {
    background-image: url("../img/bg.png");
}

.landing-second {
    background-image: url("../img/landing2/bg.jpg");
}

.landing-third {
    background-image: url("../img/landing3/landing3-bg.jpg");
    background-position: top;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
}

a {
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.logo {
    position: relative;
    width: 15.365vw;
    margin-bottom: 30px;
}

.main {
    padding: 60px 0;
    height: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__content {
    display: flex;
    height: 100%;
}

.main__content-inner {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 50%;
    z-index: 1;
}

.main__content-text {
    position: relative;
}

.main__title {
    font-size: 2.917vw;
    line-height: 1;
    background: linear-gradient(180deg, #E9661C 30%, #FFC20E 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.title__big {
    font-size: 4.375vw;
}

.main__subtitle {
    margin-bottom: 50px;
}

.main__desc {
    color: #fff;
    font-size: 2.500vw;
    margin-bottom: 4vh;
    font-weight: 700;
}

.main__link {
    border-radius: 8px;
    background: #FF7E00;
    color: #F4FBE0;
    font-size: 1.667vw;
    font-weight: 700;
    display: inline-block;
    padding: 2.39vh 3.854vw;
    transition: opacity .7s ease;
}

/* .main__link:hover {
    opacity: .7;
} */

.main__content-image {
    position: absolute;
    right: 12vw;

}

.octopus {
    display: none;
    position: absolute;
    left: -14vw;
    bottom: -5vw;
    width: 15.052vw;
}

/* .landing-first .slot__machine {
    width: 22vw;
} */
.btn {
    cursor: pointer;
}
.reg_through {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    color: #000;
}
.reg_through:hover {
    color: #FF7E00;
}
.reg_through.active {
    color: #FF7E00;
    text-decoration: underline;
}
.signup_form_hidden {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* custom dropdown */
.select-container {  
    /* padding: 0 15px; */
      display: grid;
      grid-template-columns: 1fr;
      /* place-items: center; */
  }
  .select-box {
    display: flex;
    width: 100%;
    flex-direction: column;
      position: relative;
  }
  
  .select-box .options-container {
    max-height: 0;
    width: calc( 100% - 12px);
    opacity: 0;
    transition: all 0.4s;
    overflow: hidden;
    border-radius: 5px;
    border: solid 1px #dcdfe5;
    background-color: #d0d3c6;
    order: 1;
      position: absolute;
      top: 68px;
  }
  .country-box .options-container {
      top: 50px;
  }
  .select-box .options-container.bank {
    top: 50px;
  }
  .selected {
    background: #2f3640;
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    height: 64px;
    border-radius: 5px;
    border: solid 1px #dcdfe5;
    background-color: #d0d3c6;
    order: 0;
  }
  .selected-bank {
    background: #2f3640;
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    /* height: 64px; */
    border-radius: 5px;
    border: solid 1px #dcdfe5;
    background-color: #d0d3c6;
    order: 0;
  }
  
  
  .selected-bank::after, .selected::after {
      /* Font Awesome	 */
      content: "\f078";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      /* BG Img	 */
  /* 	content:  url("img/arrow-down.svg");	 */
      position: absolute;
      right: 15px;
      top: 50%;
      transition: transform .5s;
      transform: translateY(-50%);
  }
  .selected h3, .select-box label h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    color: #1f2949;
  }
  .selected h5, .select-box label h5{
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.83;
    color: #81878f;
  }
  .select-box .options-container.active {
    max-height: 240px;
    opacity: 1;
    overflow-y: scroll;
    z-index: 10;
  }

  .mobile-lang__icon {
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        flex: none;
	margin-right: 10px;
}
.mobile-lang__text {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #09253A;
}
.selected-bank::after, .selected::after {
	/* Font Awesome	 */
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	/* BG Img	 */
/* 	content:  url("img/arrow-down.svg");	 */
	position: absolute;
	right: 15px;
	top: 50%;
	transition: transform .5s;
	transform: translateY(-50%);
}
.blablabla {
    display: flex;
    justify-content: flex-start;
  }
  .blablabla .selected {
    min-width: 100px;
    margin-right: 8px;
    padding: 8px 6px 40px 6px;
    width: unset;
    height: 50px;
  }
  .blablabla .selected::after {
    right: 7px;
  }
  .options-container.active + .blablabla  .selected::after {
    transform: translateY(-50%) rotateX(180deg);
  }
  
  .select-box .options-container.active + .selected::after {
    transform: translateY(-50%) rotateX(180deg);
  }
  
  .select-box .options-container::-webkit-scrollbar {
    width: 8px;
    background: #0d141f;
    background: #81878f;
    background: #f1f2f3;
    border-radius: 0 5px 5px 0;
  }
  
  .select-box .options-container::-webkit-scrollbar-thumb {
    background: #525861;
    background: #81878f;
    border-radius: 0 5px 5px 0;
  }
  .select-box .option,
  .selected-bank, .selected {
    padding: 12px 24px;
    cursor: pointer;
  }
  
  .select-box .option:hover {
    background: #dcdfe5;
  }
  
  .select-box label {
    cursor: pointer;
  }
  
  .select-box .option .radio {
    display: none;
  }
  .lang-option {
    display: flex;
    padding-top: 5px;
  }
  .lang-option-hidden {
    display: none;
  }
  .country-selected-div {
    width: 35%;
    min-width: 130px;
  }

.gem-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45.052vw;
}

.gem-left-mobile {
    display: none;
}

.gem-right {
    position: absolute;
    top: 15vh;
    right: 6vw;
    width: 36.667vw;
}

.gem-right-mobile {
    display: none;
}

@keyframes slotMachine {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 100%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.element {
    animation: float 3s ease-in-out infinite;
}

.mobile-hidden {
    display: block;
}

span.mobile-hidden {
    display: inline-block;
}

.desktop-hidden {
    display: none;
}

.text-left {
    text-align: left;
}

.landing-second .octopus {
    left: -8vw;
    bottom: -2vw;
    width: 46.302vw;
}

.landing-second .main__desc {
    margin-top: 5vh;
}

.landing-third .main__content-text {
    text-align: center;
    margin-top: 5vh;
}

.landing-third .main__title .title__big {
    font-size: 4.375vw;
}

.slot__machine-block {
    position: relative;
}

.animation__slot {
    position: absolute;
    height: 60px;
    right: 21%;
    top: 425px;
    bottom: auto;
    overflow: hidden;
}

.slot__machine-win {
    display: none;
    position: absolute;
    right: 0;
    top: 22vh;
    z-index: 3;
    animation: zoomWin .5s linear;
}

.animation__octopus {
    position: absolute;
    left: -70%;
    bottom: 5vh;
    width: 100%;
    z-index: 1;
    height: 358px;
    background-image: url(../img/animation/octopus.png);
    background-position: 0 0;
    background-size: auto 358px;
}

.landing-third .main__content {
    justify-content: center;
    min-width: 280px;
}

.slot__machine-right {
    position: relative;
    align-self: flex-end;
}

.slot__machine-right-pers {
    position: absolute;
    left: -100%;
    bottom: 80px;
    width: 140.9%;
    z-index: 1;
    height: 350px;
    background-image: url(../img/animation/pers3.png);
    background-position: 0 0;
    background-size: auto 350px;
}

.reanimate-pers {
    animation: octopusAnimation 1s steps(3);
}

.landing-second .animation__slot {
    height: 84px;
    right: 101px;
    top: 425px;
    bottom: auto;
    overflow: hidden;
    transform: skew(-5deg, 1.6deg);
    z-index: 2;
}

.landing-second .animation__slot-item {
    width: 23px;
}

.landing-second .animation-you-win {
    position: absolute;
    right: 90px;
    top: 300px;
    z-index: 3;
    display: none;
    animation: zoomWin2 1.5s linear;
    opacity: 0;
}

.landing-second .main__content-image {
    right: 13vw;
    bottom: 12vh;
}

.combo-full {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    width: 225%;
    z-index: 1;
    height: 100%;
    background-image: url(../img/landing2/combofull.png);
    background-position: 0 0;
    background-size: auto 100%;
}

.animate {
    animation: octopusAnimation .5s steps(15);
}

.reanimate {
    animation: slide .1s linear 20;
}

.reanimate-octopus {
    animation: octopusAnimation 1s steps(3);
}

.slot__machine-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.landing-third .main .flex {
    display: flex;
    justify-content: space-between;
}

.slot__machine-left-wrap {
    position: relative;
}

.slot__machine-left .logo {
    margin-bottom: 0;
}

.landing-third .main__content-inner {
    max-width: 100%;
}

.landing-third .container {
    max-width: 90vw;
}

.landing-third .animation__slot-item {
    width: 31px;
}

.landing-third .slot__machine-win {
    right: 20px;
    top: 350px;
}

.slot__machine-left .animation__slot {
    height: 105px;
    left: 116px;
    top: 288px;
    transform: skew(6deg, -2deg);
}

.slot__machine-right .animation__slot {
    height: 76px;
    right: 82px;
    top: 477px;
}

.slot__machine-left .no-reanimate {
    animation: slide .1s linear infinite;
}

@media screen and (max-width: 1366px) {
    .landing-first .slot__machine {
        max-width: 260px;
    }

    .landing-first .slot__machine-win {
        top: 29vh;
        width: 220px;
    }

    .landing-first .animation__slot {
        height: 46px;
        top: 341px;
    }

    .landing-first .animation__octopus {
        width: 126%;
        left: -90%;
    }

    .landing-first .animation__slot-item {
        width: 19px;
    }

    .landing-second .animation__slot-item {
        width: 16px;
    }

    .landing-second .slot__machine {
        max-width: 270px;
    }

    .landing-second .animation__slot {
        height: 63px;
        right: 73px;
        top: 305px;
    }

    .landing-second .animation-you-win {
        right: 47px;
        top: 215px;
    }

    .landing-third .slot__machine-left-wrap .slot__machine {
        max-width: 360px;
    }

    .landing-third .slot__machine-right .slot__machine {
        max-width: 270px;
    }

    .slot__machine-right-pers {
        width: 380px;
        z-index: 1;
        height: 270px;
        background-image: url(../img/animation/pers3.png);
        background-position: 0 0;
        background-size: auto 270px;
    }

    .slot__machine-right .animation__slot {
        height: 60px;
        right: 57px;
        top: 368px;
    }

    .landing-third .animation__slot-item {
        width: 25px;
    }

    .landing-third .slot__machine-win {
        right: 10px;
        top: 280px;
        width: 240px;
    }

    .slot__machine-left .animation__slot {
        height: 82px;
        left: 90px;
        top: 223px;
        right: auto;
    }
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 767px) {
    html {
        overflow: unset;
    }

    body {
        height: unset;
        min-height: 100vh;
    }

    .landing-second {
        background-image: url(../img/landing2/bg-mobile.jpg);
        background-position: top;
    }

    .landing-third {
        background-image: url(../img/landing3/bg-mobile.jpg);
        background-position: bottom;
    }

    .mobile-hidden {
        display: none !important;
    }

    .desktop-hidden {
        display: block !important;
    }

    .main {
        padding-top: 30px;
    }

    .container {
        max-width: 320px !important;
        position: relative;
        padding: 0;
    }

    .main__content {
        flex-direction: column-reverse;
    }

    .main__content-image {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        right: 0;
        position: relative;
    }

    .slot__machine {
        width: 180px;
    }

    .logo {
        width: 100px;
        margin-bottom: 0px;
    }

    .slot__machine-block {
        margin-top: 50px;
    }

    .main__desc,
    .main__title {
        font-size: 20px;
    }

    .title__big {
        font-size: 48px;
    }

    .main__link {
        font-size: 28px;
        padding: 20px 40px;
    }

    .main__desc {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .main__content-inner {
        max-width: unset;
    }

    .landing-first .slot__machine {
        width: 147px;
    }

    .landing-first .animation__octopus {
        width: 238px;
        height: 260px;
        top: 190px;
        background-size: auto 260px;
        left: 0;
    }

    .landing-first .slot__machine-win {
        right: -10px;
        top: 130px;
        width: 140px;
    }

    .landing-second .animation-you-win {
        right: 0;
        top: 140px;
    }

    .landing-second .animation__slot {
        width: 67px;
        height: 39px;
        right: 45px;
        top: 206px;
    }

    .landing-second .animation__slot-item {
        width: 9px;
    }

    .landing-first .animation__slot-item {
        width: 9px;
    }

    .landing-first .animation__slot {
        width: 62px;
        height: 30px;
        right: 30px;
        top: 188px;
    }

    .main__content-inner.text-left {
        text-align: center;
    }

    .slot__machine-left {
        display: none;
    }

    .landing-third .main__content-text {
        align-self: flex-start;
        text-align: left;
        margin-top: 0;
        margin-left: 20px;
    }

    .landing-third .animation__slot {
        width: 90px;
        height: 39px;
        right: 41px;
        top: 405px;
    }

    .landing-third .animation__slot-item {
        width: 13px;
    }

    .slot__machine-right {
        position: absolute;
    }

    .landing-third .main__title {
        display: flex;
        gap: 10px;
    }

    .landing-third .main__title .title__big {
        font-size: 42px;
    }

    .landing-third .main__desc {
        margin-top: 0;
    }

    .landing-third .main__link {
        text-align: center;
        width: 100%;
    }

    .landing-third .btn {
        /* position: fixed;
        bottom: 30px;
        left: 30px;
        right: 30px; */
    }

    .slot__machine-right .slot__machine {
        width: 180px;
        position: absolute;
        top: 160px;
        right: 0;
    }

    .landing-third .main .flex {
        flex-direction: column;
    }

    .landing-third .slot__machine-right {
        right: 0;
        width: 100%;
        bottom: 0;
        top: 0;
    }

    .slot__machine-right-pers {
        right: auto;
        left: -20px;
        width: 225px;
        height: 160px;
        top: 430px;
        background-size: auto 160px;
    }

    .landing-third .slot__machine-win {
        right: -20px;
        top: 330px;
        width: 200px;
    }

    .landing-third .animation__slot-item:not(:last-child) {
        margin-right: 2px;
    }

    .title__big {
        font-size: 36px;
    }

    .main__link {
        padding: 15px 20px;
    }

    .main__content-inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-third .main__content-inner.text-left {
        justify-content: flex-start;
    }

    .landing-third .main__desc {
        font-size: 18px;
    }

    .main__title span.desktop-hidden {
        display: inline-block !important;
    }

    .btn {
        z-index: 3;
    }

    .combo-full {
        left: auto;
        right: 0;
        bottom: 0;
        width: 320px;
        z-index: 1;
        height: 301px;
        background-size: auto 301px;
    }

    .landing-second .slot__machine-block {
        height: auto;
        width: auto;
        margin-top: 0;
    }

    .landing-second .main__content-image {
        right: 0;
        bottom: 0;
    }
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

@keyframes zoomWin {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomWin2 {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes octopusAnimation {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 100%;
    }
}