@import url('icons/css/myfont.css');

@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.ttf);
  font-weight: 700;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 36px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
}

input:not([type=checkbox]),
input:not([type=checkbox]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}


.header {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 30px;
 /* background-color: #333E3C; */
}
body.fixed-header {
  padding-top: 100px;
}
body.fixed-header .header {
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom-logo-link {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-btns .btn {
  width: 110px;
}
.header-btns .btn:last-child {
  margin-left: 15px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.menu a {
  padding: 5px;
  color: #fff;
  font-size: 15px;
}
.menu a:hover, .current-menu-item>a {
  opacity: 0.7;
}
.header .menu .menu-item-has-children {
  position: relative;
  .sub-menu {
    min-width: 350px;
    padding: 15px 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    display: none;
    li {
      margin-bottom: 10px;
    }
  }
}
.menu .menu-item-has-children>a {
  position: relative;
}
.menu .menu-item-has-children>a::after {
  content: '\f107';
  font-family: "myfont";
  margin-left: 5px;
  /*position: absolute;*/
  /*top: 50%;*/
  /*right: 0;*/
  /*transform: translateY(-50%);*/
}
.header .menu .menu-item-has-children:hover .sub-menu {
  display: block;
}
.menu li {
  margin-right: 20px;
  list-style-type: none;
  padding: 0;
}
.menu li:last-child {
  margin-right: 0;
}
.header-menu {
  .menu {
    display: block;
    li {
      margin-bottom: 15px;
    }
    li:last-child {
      margin-bottom: 0;
    }
  }
  position: relative;
}
.header-menu-title {
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
}
.header-menu-list {
  min-width: 350px;
  padding: 15px 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  display: none;
}
.header-menu:hover .header-menu-list {
  display: block;
}
.btn {
  border-radius: 8px;
  line-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-animation-name: puls;
  animation-name: puls;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.btn:hover {
  opacity: 0.8;
}

.btn-red {
  background-color: #D32222;
}

.btn-green {
  background-color: #149C44;
}

.btn.text__button {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
  line-height: 52px;
}

@-webkit-keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  height: 500px;
  border-radius: 12px;
  margin-top: 35px;
  padding: 0 50px;
  background-color: #a80043;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-img {
  max-width: 580px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-img img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.offer {
  max-width: 450px;
  width: 100%;
}
.offer-title {
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 35px;
}
.offer-desc {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.offer-btns {
  display: flex;
}
.offer-btns .btn:nth-child(2) {
  margin-left: 15px;
}
/*.offer-btn.btn {
  background-color: #149C44;
}*/
.offer-btns .btn {
  max-width: 290px;
  width: 100%;
  font-weight: 700;
  line-height: 52px;
}

.bonus-item {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.bonus-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bonus-item-text {
  margin-right: 15px;
}
.bonus-item-icon {
  max-width: 90px;
  margin-right: 15px;
}

.bonus-item-text {
  margin-right: 15px;
}

.slots .wrap {
  padding: 0 7px;
}
.slots-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slots .slot {
  width: 16.6666%;
  padding: 0 7px;
  margin-bottom: 15px;
}
.slots .slot img {
  display: block;
}
.slots .slot .inner {
  display: block;
  position: relative;
}
.slots .slot .inner:hover {
  opacity: 0.7;
}

/*.page-item {
  background-color: #333e3c;
}*/

.text-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.main-text-wrap {
 /* background: -webkit-gradient(linear, left top, left bottom, from(#232834), to(#0D1016));
  background: linear-gradient(180deg, #232834 0%, #0D1016 100%); */
  border-radius: 8px;
  padding: 35px 40px;
  position: relative;
}
/*.main-text-wrap::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}*/
.main-text-content {
  line-height: 1.5;
}
.main-text-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.main-text-content a, .page-text a {
  font-weight: 700;
}

.section {
  margin-bottom: 100px;
}

.footer {
  /*background-color: #1D2332;*/
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer .pay-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.footer .own {
  font-size: 13px;
  text-align: center;
}

.mobile-btn {
  width: 35px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
}
.mobile-btn .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.mobile-btn .top {
  top: 0;
}
.mobile-btn .middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-btn .bottom {
  bottom: 0;
}

.mobile-wrap {
  width: 300px;
  height: 100vh;
 /* background-color: #1D2332;*/
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 99;
}
.mobile-wrap.active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 0;
}
.mobile-body {
  padding: 70px 15px 15px 25px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 35px;
  right: 25px;
}
.mobile-wrap .menu {
  display: block;
  padding: 0;
}
.mobile-wrap .menu a {
  padding: 5px;
}
.mobile-wrap .menu>li {
  margin-bottom: 30px;
  list-style-type: none;
  .sub-menu {
    margin-top: 15px;
    padding-left: 15px;
    li {
      margin-bottom: 15px;
      a {
        font-size: 14px;
      }
    }
  }
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before,
.close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.fixed-bar {
  width: 100vw;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.fixed-bar .inner {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00CFA6;
  position: relative;
}
.fixed-bar .phone {
  width: 90px;
  position: absolute;
  left: 10px;
  bottom: -100px;
}
.fixed-bar-btn {
  padding: 0 15px;
}
.fixed-bar-btn .btn__icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.aviator-banner.banner {
  background-color: #DD003B;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aviator-banner .banner-img {
  width: 40%;
}

.text-block {
  margin-bottom: 50px;
}
.text-block-inner {
  background-color: #1D2332;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 18px;
  position: relative;
}
.text-block-inner::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.text-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-block-content .text {
  font-size: 16px;
  line-height: 1.5;
}

.app-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.app-banner .banner-img {
  width: 350px;
  position: absolute;
  bottom: 0;
  right: 20px;
}
.app-notice {
  font-size: 12px;
  margin-bottom: 15px;
}

.offer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offer-btns .app-btn.btn:last-child {
  margin-right: 0;
}

.app-btn.btn, .btn-ios.btn, .btn-android.btn {
  padding: 5px 25px;
  font-size: 12px;
  line-height: 1.3;
  margin-right: 25px;
  background-color: #D32222;
}
.app-btn.btn .btn__icon, .btn-ios.btn .btn__icon, .btn-android.btn .btn__icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.app-btn.btn .btn__text {
  font-size: 12px;
}

.bonus-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}

.bonus-banner .banner-img {
  max-width: 546px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 15px;
}

.btn.promo {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 52px;
}
.btn.promo .btn__icon {
  width: 25px;
  height: 25px;
  background-image: url("../img/copy.svg");
  background-size: cover;
  margin-left: 15px;
}

.btn.promo .btn__input {
  display: none;
}

.btn.promo.copy .btn__icon {
  background-image: url("../img/check.svg");
}

.bonus-btn {
  padding: 0 25px;
}

.rate-banner {
  background-color: #F92130;
  background-image: url("../img/casino.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50%;
}

.promo-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.promo-banner .offer {
  max-width: 610px;
}
.btn.promo {
  -webkit-animation-name: btnPuls;
          animation-name: btnPuls;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.main-text-content img, .text-block-content .text img {
  max-width: 100%;
  width: auto;
}

/* .apostas-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
} */

.apostas-banner.banner .banner-img {
  max-width: 600px;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.text-block-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.advant .wrap {
  padding: 0;
}

.advant-content {
  display: flex;
  justify-content: space-between;
}
.advant-item {
  width: 25%;
  padding: 0 15px;
}
.advant-item-content {
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.advant-item .item__icon {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
}
.advant-item .item__text {
  text-align: center;
  line-height: 1.3;
}
.faq-item {
  margin-bottom: 20px;
  padding: 30px 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.faq-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item-title {
  font-size: 18px;
}
.faq-item-icon {
  font-size: 25px;
  transform: rotate(0deg);
  transition: 0.3s;
}
.faq-item-answ {
  line-height: 1.3;
  margin-top: 15px;
  display: none;
}
.faq-item.active .faq-item-answ {
  display: block;
}
.faq-item.active .faq-item-icon {
  transform: rotate(180deg);
  transition: 0.3s;
}

.reviews .wrap {
  padding: 0;
}
.reviews-item {
  padding: 0 15px;
}
.reviews-item .inner {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 25px 15px;
}
.reviews-item .title__row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reviews-item .item__img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 150%;
  -moz-border-radius: 150%;
  border-radius: 150%;
  overflow: hidden;
  margin-right: 10px;
}
.reviews-item .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-item .item__name {
  font-size: 20px;
  font-weight: 700;
}
.reviews-item .item__text {
  line-height: 1.3;
}
.slider-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-nav-item {
  font-size: 45px;
  cursor: pointer;
}
.slider-nav-item.item__prev {
  transform: rotate(90deg);
}
.slider-nav-item.item__next {
  transform: rotate(-90deg);
}
.slider-nav .slick-next, .slider-nav .slick-prev {
  position: static;
}
.slider-nav .slick-dots {
  position: static;
}
.slider-nav .slick-dots li button {
  color: inherit;
}
.slider-nav .slick-dots li button::before {
  color: inherit;
  font-size: 10px;
}

.banner {
  background-size: cover;
  background-position: center center;
}
.banner.banner-dark::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.banner .offer {
  position: relative;
}
.language-switch ul {
  display: flex;
}
.language-switch li {
  list-style-type: none;
  margin-right: 15px;
}
.language-switch a {
  text-transform: uppercase;
}
.language-switch li.active {
  text-decoration: underline;
}
.footer {
  .lang-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer-item {
  ul {
    margin: 0;
    padding: 0;
  }
  li {
    list-style-type: none;
    margin-bottom: 10px;
  }
}
.author-content {
  display: flex;
}
.author-img {
  width: 150px;
  min-width: 150px;
  height: 150px;
  margin-right: 15px;
  img {
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 150%;
    -moz-border-radius: 150%;
    border-radius: 150%;
  }
}
.author-info-item {
  margin-bottom: 20px;
}
.author-title {
  font-size: 25px;
  font-weight: 700;
}
.author-position {
  font-weight: 700;
}
.author-social {
  a {
    margin-right: 10px;
  }
}
.social {
  a {
    font-size: 16px;
  }
}
.partner-item {
  padding: 0 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  img {
    max-width: 100px;
    width: auto;
    max-height: 150px;
    height: auto;
  }
}
.partners-row {
  .slick-arrow::before {
    content: '\f107';
    font-family: "myfont";
    font-size: 35px;
  }
  .slick-prev {
    transform: rotate(90deg) translate(0, -50%);
  }
  .slick-next {
    transform: rotate(-90deg) translate(0, -50%);
  }
}
.partners {
  .slider-nav {
    margin-top: 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}
.partners-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
#time {
  font-size: 16px;
}
.single-authors {
  .author-content {
    margin-bottom: 50px;
  }
}
.author-block {
  .author-title:hover {
    text-decoration: underline;
  }
}
.contacts-item {
  margin-bottom: 15px;
  font-size: 20px;
  a {
    font-size: 20px;
  }
}
.contacts-row {
  display: flex;
  justify-content: space-between;
}
.contacts-info {
  width: 25%;
}
.contacts-row .map {
  width: 70%;
  iframe {
    width: 100% !important;
  }
}
h1 {
  margin-bottom: 25px;
}


.wheel {
  width: 100%;
  height: 100%;
  display: block;
}
.wheel.active {
  display: block;
  transition: opacity 1s,visibility 1s;
}
.wheel-open-btn {
  width: 70px;
  height: 70px;
  position: fixed;
  left: 15px;
  bottom: 15px;
  cursor: pointer;
  animation: 20s linear infinite wheel-btn-rotate;
  z-index: 10;
}
@keyframes wheel-btn-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wheel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wheel-container {
  height: 90%;
  aspect-ratio: 1/1;
  position: relative;
}
.wheel-container.hide {
  display: none;
}
.wheel-container::before {
  content: '';
  display: block;
  width: 20px;
  height: 35px;
  background-image: url('../img/wheel_one.svg');
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.wheel-body {
  position: relative;
  -webkit-transform: rotate(0);
  transform: rotate(0)
}

.wheel-body.active {
  -webkit-animation: 6s cubic-bezier(.25,.75,.5,1.05) forwards wheel-rotate;
  animation: 6s cubic-bezier(.25,.75,.5,1.05) forwards wheel-rotate;
}
@keyframes wheel-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  80% {
    -webkit-transform: rotate(976deg);
    transform: rotate(976deg);
  }
  90% {
    -webkit-transform: rotate(964deg);
    transform: rotate(964deg);
  }
  100% {
    -webkit-transform: rotate(970deg);
    transform: rotate(970deg);
  }
}
.banner-img img.wheel-main {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-img .wheel-btn {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  animation: 1.4s infinite pulse-btn;
}
@keyframes pulse-btn {
  0% {
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%,-50%) scale(1.05);
    transform: translate(-50%,-50%) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
  }
}
.wheel-btn-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.wheel-btn-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wheel-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.wheel-modal {
  max-width: 725px;
  width: 90%;
  height: 0;
  /*background-image: url('../img/wheel_modal_bg.svg');*/
  /*background-size: cover;*/
  background-color: #bd1717;
  border-radius: 8px;
  border: 2px solid #05c473;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 1s,visibility 1s,opacity 1s,-webkit-transform 1s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.wheel-modal.active {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
  visibility: visible;
  height: auto;
}
.wheel-modal-close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -15px;
  right: -15px;
}
.wheel-modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}
.wheel-modal-bg.active {
  display: block;
}
.wheel-modal-img {
  max-width: 200px;
  margin: -40px auto 0;
}
.wheel-modal-price {
  background-color: #08a80b;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  padding: 3px 10px;
  margin: -50px auto 30px;
  display: inline-block;
}
.wheel-modal .price__row {
  display: flex;
  justify-content: center;
}
.wheel-modal-message {
  max-width: 450px;
  width: 100%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin: 0 auto 30px;
}
.wheel-modal-btn {
  max-width: 250px;
  width: 100%;
  padding: 5px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  border-radius: 4px;
  background-color: #08a80b;
  color: #fff;
  margin: 0 auto 30px;
  display: block;
  cursor: pointer;
}
.wheel-modal-btn:hover {
  background-color: #09a575;
}
.wheel-circle {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-radius: 150%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wheel-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 150%;
  position: relative;
  background: conic-gradient(
          #ff5733 0deg 45deg,
          #33ff57 45deg 90deg,
          #3357ff 90deg 135deg,
          #ff33a1 135deg 180deg,
          #a133ff 180deg 225deg,
          #33fff3 225deg 270deg,
          #fff333 270deg 315deg,
          #ff8c33 315deg 360deg
  );
}
.wheel-sector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 50%); /* Формируем сектор с помощью CSS-маски */
  transform-origin: 50% 50%;

}

.wheel-sector-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0; /* Точка вращения - центр колеса */

  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.wheel-sector-text:nth-child(1) {
  transform: rotate(22.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(2) {
  transform: rotate(67.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(3) {
  transform: rotate(112.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(4) {
  transform: rotate(157.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(5) {
  transform: rotate(202.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(6) {
  transform: rotate(247.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(7) {
  transform: rotate(292.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(8) {
  transform: rotate(337.5deg) translateY(-700%) translateX(-50%);
}





/* Adaptive */
@media (max-width: 1100px) {
  .header .nav {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
  .main-banner .girl {
    right: 0;
  }
  .offer {
    position: relative;
    z-index: 2;
  }
  .slots .slot {
    width: 25%;
  }
  .fixed-bar {
    display: none;
  }
}
@media (max-width: 1000px) {
  .bonus-banner .banner-img {
    display: none;
  }
  .banner {
    height: auto;
    display: block;
    padding: 100px 15px 0;
  }
  .offer {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
  .offer-title {
    text-align: center;
  }
  .offer-desc {
    text-align: center;
  }
  .offer-btns {
    justify-content: center;
  }
  .banner-img {
    margin: 0 auto;
  }
  .advant-content {
    flex-wrap: wrap;
  }
  .advant-item {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .aviator-banner {
    height: auto;
    display: block;
    padding-top: 30px;
  }
  .aviator-banner .banner-img {
    max-width: 350px;
    width: 100%;
    margin-top: 30px;
  }
  .app-banner .banner-img {
    display: none;
  }
  .partners-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 800px){
  .footer-row {
    display: block;
    margin-bottom: 0;
    .custom-logo-link {
      margin: 0 auto 25px;
    }
    li {
      text-align: center;
    }
  }
  .footer-item {
    margin-bottom: 25px;
  }

}
@media (max-width: 700px) {
  /*body {*/
  /*  padding-bottom: 50px;*/
  /*}*/
  body.fixed-header {
    padding-top: 132px;
  }
  .header .wrap {
    position: relative;
    padding-bottom: 50px;
  }
  .header .custom-logo-link {
    max-width: 100px;
  }
  .header-btns {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .offer {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  .offer-title {
    font-size: 35px;
  }
  .offer-btn {
    margin: 0 auto;
  }
  .text-block-inner {
    display: block;
    padding: 30px 10px;
  }
  .text-block-content {
    margin-bottom: 30px;
  }
  .text-block-item {
    width: 100%;
  }
  .text-title {
    font-size: 30px;
  }
  .bonus-banner {
    height: auto;
    padding: 30px 0;
  }
  .apostas-banner.banner {
    display: block;
    padding-top: 50px;
  }
  .apostas-banner.banner .banner-img {
    position: static;
  }
  .apostas-banner.banner {
    height: auto;
  }
  .bonus-item {
    padding: 30px 15px;
  }
  .bonus-item-content {
    display: block;
  }
  .bonus-item-icon {
    margin: 0 auto 25px;
  }
  .bonus-item-text {
    text-align: center;
    margin: 0 auto 25px;
  }
  .bonus-btn {
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
  }
  .partners-row {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-row {
    display: block;
  }
  .contacts-info {
    width: 100%;
    margin-bottom: 50px;
  }
  .contacts-row .map {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .slots .slot {
    width: 33.3333%;
  }
  .main-text-wrap {
    padding: 35px 15px;
  }
  .footer .pay-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pay-item {
    width: 25%;
  }
  .offer-btns {
    display: block;
  }
  .offer-btns .btn {
    margin: 0 auto 20px;
  }
  .offer-btns .btn:nth-child(2) {
    margin: 0 auto;
  }
  .section {
    margin-bottom: 60px;
  }

  .wheel-sector-text:nth-child(1) {
    transform: rotate(22.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(2) {
    transform: rotate(67.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(3) {
    transform: rotate(112.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(4) {
    transform: rotate(157.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(5) {
    transform: rotate(202.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(6) {
    transform: rotate(247.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(7) {
    transform: rotate(292.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(8) {
    transform: rotate(337.5deg) translateY(-500%) translateX(-50%);
  }

}

@media (max-width: 500px) {
  .app-btn.btn {
    padding: 5px 15px;
    margin-right: 15px;
  }
  .advant-item {
    width: 100%;
  }
  .author-content {
    display: block;
  }
  .author-img {
    margin: 0 auto 25px;
  }
}
@media (max-width: 400px) {
  .slots .slot {
    width: 50%;
  }
  .pay-item {
    width: 33.33333%;
  }
  .rate-banner {
    background-size: 65%;
  }
}