* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #094F9A 0%, #072F54 32.81%, #040D1C 68.75%);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  min-height: 100%;
  position: relative;

}

.register__desc-price,.register__desc-text{
	unicode-bidi:bidi-override;
  }

body::-webkit-scrollbar {
  width: 1vmin;
}

body::-webkit-scrollbar-track {
  background: rgb(15, 41, 85);
}

body::-webkit-scrollbar-thumb {
  background: #fa5a00;
  border-radius: 30px;
}

.main {
  box-sizing: border-box;
  /* 05.12 */
  min-height: 100vh;
  overflow-x: hidden;
  background: url(../img/smokebg.png) right -30vmin top no-repeat;
  /* url(../img/smoke-1.png) right -23vmin top -4vmin no-repeat,
  url(../img/smoke.png) bottom -30vmin left -1vmin no-repeat; */
 background-size: 135%;
  background-attachment: fixed;
  overflow: hidden;

}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: calc(100vh - 50px);
  flex-grow: 1;
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 60px 0 20px;
}

.logo__img {
  max-height: 36px;
}

.info {
  text-transform: uppercase;
  margin-top: 100px;
  font-size: 16px;
  z-index: 1;
}

.info__title {
  font-style: italic;
  font-weight: 900;
  font-size: 4.1em;
  line-height: 100%;
  font-weight: 900;
  text-shadow: 0px 4px 29px rgba(255, 255, 255, 0.33);
  margin-bottom: -2%;
}

.info__currency {
  font-family: Roboto;
  font-style: italic;
  font-weight: 900;
  font-size: 9.8em;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFDB1C;
  text-shadow: 0px 0px 32px rgba(255, 221, 102, 0.76);
}

.info__currency--long-title {
  font-size: 6em;
}

.info__subtitle {
  font-style: italic;
  font-weight: normal;
  font-size: 1.75em;
  line-height: 127.69%;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.btn-group {
  margin-top: 35px;
  display: flex;
  justify-content:space-between;
  max-width: 520px;
}

.btn-group__item {

}

.btn {
  border: none;
  outline: none;
  border-radius: 47px;
  font-size: 1.3em;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 20px 42px;
  cursor: pointer;
  transition: transform 0.4s ease;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  flex: 1 0 47%;
  max-width: 47%;
}

.btn-group__item--casino {
  background: linear-gradient(180deg, #F25FFF 0%, #8F00FF 100%);
  box-shadow: 0px 4px 31px 1px #B800FF;
}

.btn-group__item--bets {
  background: linear-gradient(180deg, #FF5E00 0%, #FF3F00 100%);
  box-shadow: 0px 7px 30px 3px rgba(255, 78, 1, 0.66);
}


.info__btn {


}

.btn:hover {
  transform: scale(1.05);
}

/*info__switcher*/

/* Скрыть флажок HTML по умолчанию */

/* Ползунок */


/*end info__switcher*/



.flex-inner {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
}

.roulette-block {
  margin-right: -23%;
}

.roulette-block__img {
  position: absolute;
  right: -10%;
}

.roulette-block__img.mobile {
  display: none;
}


.info-line {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  /* margin-bottom: 35px; */
}

.info-line__store-link {
  text-decoration: none;
}

.info-line__store-link:nth-child(1) {
  margin-right: 13px;
}

.info-line__parthners-img {
  max-width: 100%;
}

.info-line__store {
margin-left: 20px;
}


.form-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  z-index: -10000;
  background: rgba(12, 17, 29, 0.7);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.form-bg.showing {
  animation: showing 0.6s linear forwards;
  opacity: 1;
  z-index: 1000;
  display: flex;
}


@keyframes showing {
  0% {

    opacity: 0;
  }

  100%{

    opacity: 1;
  }
}

