@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&family=Roboto:wght@400;700&display=swap');

body {
   overflow-x: hidden;
   min-height: 100vh;
   background: #0B0C21;
   font-family: 'Poppins', sans-serif;
   font-size: 14px;
   font-weight: 400;
   line-height: 1.35;
   color: #fff;
   text-align: left;
}

p {
   margin-top: 20px;
   width: 100%;
}

.title+p,
p:first-child {
   margin-top: 0;
}

ul,
ol {
   text-align: left;
   width: 100%;
}

li {
   position: relative;
}

/* Title */
h1,
h2,
h3,
h4 {
   display: block;
   position: relative;
   width: 100%;
   font-weight: 700;
   line-height: 1.2;
   color: #fff;
   text-transform: uppercase;
}

.title {
   margin-bottom: 20px;
}

h1.title,
.title.general {
   font-size: 30px;
   line-height: 1.6;
   margin-bottom: 17px;
}

h2,
.title.high {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border: 1px solid #FFD400;
   border-radius: 14px;
   font-size: 28px;
   line-height: 1.16;
   padding: 12px;
}

h3,
.title.middle {
   font-size: 20px;
}

h4,
.title.mini {
   font-size: 20px;
   text-transform: none;
}

/* Article */
article,
.article {
   font-size: 14px;
   font-weight: 400;
   line-height: 1.35;
   text-align: left;
}

article>*+*,
.article>*+* {
   margin-top: 20px;
}

article ul li,
.article ul li {
   padding-left: 18px;
}

article ol li,
.article ol li {
   padding-left: 21px;
}

article li+li,
.article li+li {
   margin-top: 8px;
}

ol>li {
   counter-increment: ol;
}

article ul>li:before,
.article ul>li:before,
article ol>li:before,
.article ol>li:before {
   display: inline-block;
   position: absolute;
   font: inherit;
   z-index: 1;
}

article ul>li:before,
.article ul>li:before {
   content: "";
   background-color: #FFD400;
   border-radius: 50%;
   width: 6px;
   height: 6px;
   top: 6px;
   left: 0;
}

article ul ul>li:before,
.article ul ul>li:before {
   background-color: rgba(0, 0, 0, 0);
   border: 1.5px solid #FFD400;
}

article ul ul,
.article ul ul,
article ul ol,
.article ul ol {
   margin-top: 8px;
}

article ol>li:before,
.article ol>li:before {
   content: counter(ol)'.';
   left: 8px;
   top: 0;
}

p a,
article li a,
.article li a,
.keyword {
   color: #FCC211;
}

/* Button */
.button {
   background: url('../img/button.svg') no-repeat center / cover;
   display: inline-block;
   font-weight: 700;
   font-size: 18px;
   color: #fff;
   line-height: 1;
   text-align: center;
   white-space: nowrap;
   height: auto;
   width: auto;
   min-width: 264px;
   margin-top: 32px;
   padding: 30px 20px;
   position: relative;
}

.button:hover {
   -webkit-transform: scale(1.05);
   -ms-transform: scale(1.05);
   transform: scale(1.05);
}

.button img,
.button span {
   display: inline-block;
   vertical-align: middle;
}

.button img {
   margin-right: 10px;
}

.button span {
   text-align: left;
}

/* Special */
.image img,
.background img {
   display: block;
   position: relative;
   margin: auto;
}

.background {
   display: block !important;
   position: absolute !important;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
}

.background img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.js-expand-content {
   display: none;
   overflow: hidden;
}

.js-expand-content.expanded {
   height: 100%;
}

svg {
   display: inline-block;
   position: relative;
   vertical-align: inherit;
   fill: rgba(255, 255, 255, 1);
   line-height: 1;
}

use {
   fill: rgba(255, 255, 255, 1);
   fill-rule: evenodd;
   -webkit-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}

.path {
   fill: inherit;
   stroke: inherit;
   stroke-width: inherit;
}

/* Content */
.content,
.cover {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   width: 100%;
   overflow: hidden;
   position: relative;
}

.content {
   background: #1F2038;
   border-radius: 20px;
   max-width: 1163px;
   width: calc(100% - 20px);
   margin-top: 20px;
   padding: 20px;
}

.cover {
   padding-left: 20px;
   padding-right: 20px;
}

.main__buttons {
   display: none;
}

/* Header */
.header {
   background: #0B0C21;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 16px;
   overflow: visible;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   height: auto;
   margin-top: 0;
   padding-top: 13px;
   padding-bottom: 13px;
}

.logo img {
   display: block;
}

.header__logo {
   max-width: 152px;
}

.menu-button,
.header__menu .header__button {
   display: none;
}

.header__menu {
   margin: 0 auto 0 5.2%;
}

.header__menu ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 20px 40px;
}

.header__menu ul a {
   font-weight: 700;
   font-size: 14px;
   color: #fff;
}

.header__menu ul a:hover {
   color: #FFD400;
}

.header__button {
   border: 1px solid #FFD400;
   border-radius: 8px;
   font-weight: 700;
   line-height: 1.743;
   text-align: center;
   min-width: 132px;
   padding: 7px 10px;
}

.header__signup {
   background-color: #FFD400;
   color: #000;
}

.header__signup:hover {
   background-color: rgba(0, 0, 0, 0);
   color: #fff;
}

.header__login {
   color: #fff;
}

.header__login:hover {
   background-color: #FFD400;
   color: #000;
}

.header__lang {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 6px;
}

.header__lang img {
   display: block;
   border-radius: 50%;
   max-width: 24px;
   max-height: 24px;
}

.header__lang span {
   font-weight: 600;
   font-size: 14px;
   color: #fff;
   text-transform: uppercase;
}

/* Main */
.main {
   padding: 67px 0 0 257px;
}

/* Sidebar */
.sidebar {
   background: -o-linear-gradient(top, #0B0C21 0%, #08091C 20.16%, #0B0C21 100%);
   background: -webkit-gradient(linear, left top, left bottom, from(#0B0C21), color-stop(20.16%, #08091C), to(#0B0C21));
   background: linear-gradient(180deg, #0B0C21 0%, #08091C 20.16%, #0B0C21 100%);
   width: 237px;
   height: calc(100vh - 67px);
   padding: 0 15px 30px;
   position: fixed;
   top: 67px;
   left: 0;
   overflow: auto;
   z-index: 10;
}

.sidebar::-webkit-scrollbar {
   display: none;
}

.sidebar__menu {
   padding: 6px 0;
}

.sidebar__menu li a {
   display: block;
   font-weight: 500;
   font-size: 16px;
   color: #727489;
   line-height: 1.76;
   position: relative;
   padding: 8px 0 8px 34px;
}

.sidebar__menu li a img {
   max-width: 24px;
   max-height: 24px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 1px;
   margin: auto;
}

.sidebar__menu li a img:last-of-type {
   opacity: 0;
}

.sidebar__menu li a:hover img:last-of-type {
   opacity: 1;
}

.sidebar__menu li a:hover span {
   color: #FFD400;
}

.sidebar__menu-count {
   background-color: #FA5926;
   border-radius: 50%;
   font-size: 12px;
   color: #fff;
   text-align: center;
   line-height: 1.3;
   display: block;
   width: 16px;
   height: 16px;
   position: absolute;
   top: 4px;
   left: 17px;
}

.sidebar__menu:after {
   content: '';
   display: block;
   height: 1px;
   background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
   background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
   margin: 17px 0 20px;
}

.sidebar__links-button {
   font-weight: 700;
   font-size: 16px;
   color: #FFD400;
   line-height: 1.5;
   text-align: left;
   position: relative;
   white-space: normal;
   padding-right: 36px;
   width: 100%;
}

.sidebar__links-button:before {
   content: '';
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   width: 24px;
   height: 24px;
   position: absolute;
   top: 0;
   right: 0;
}

.sidebar__links-button.hide:before {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
}

.sidebar__links-list {
   margin-top: 13px;
}

.sidebar__links-list li+li {
   margin-top: 12px;
}

.sidebar__links-list a {
   font-size: 13px;
   color: #727489;
}

.sidebar__links-list a:hover {
   color: #FFD400;
   text-decoration: underline;
}

/* Main */
.content-main {
   width: calc(100% - 257px);
}

/* Prime */
.prime {
   border-radius: 0;
   margin-top: 0;
   padding: 72px 60px 67px;
}

.content.prime {
   width: 100%;
   max-width: 1183px;
}

.prime__img {
   position: absolute;
   bottom: 0;
   right: 0;
   max-height: 100%;
}

.prime__img img {
   display: block;
}

.prime__wrap {
   max-width: 645px;
   position: relative;
   z-index: 1;
}

/* breadcrumbs */
.breadcrumbs {
   margin-bottom: 16px;
}

.breadcrumbs>li {
   display: inline-block;
   padding: 0px;
}

.breadcrumbs>li:before {
   display: none;
}

.breadcrumbs>li a {
   display: inline-block;
   color: rgba(255, 255, 255, .8);
   font-weight: 500;
   text-transform: uppercase;
}

.breadcrumbs>li a:not([href]) {
   color: #fff;
}

.breadcrumbs>li a:not([href]),
.breadcrumbs>li a:not([href]) span {
   cursor: default;
}

.breadcrumbs>li:not(:last-child):after {
   content: '|';
   display: inline-block;
   position: relative;
   font: inherit;
   color: #fff;
   margin: 0px 12px;
}

.prime__title {
   margin-bottom: 17px;
}

.prime__title span {
   color: #FFD400;
}

.prime__text {
   line-height: 1.71;
}

.prime__button {
   margin-top: 32px;
}

/* Info */
.info__table {
   border: 1px solid #FFD400;
   border-radius: 15px;
   margin-top: 20px;
   width: 100%;
   overflow: hidden;
}

.info__table tr {
   font-size: 14px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
   padding: 12px 25px 12px 20px;
}

.info__table tr:nth-child(even) {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
}

.info__table th {
   width: 225px;
}

.info__table td {
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

.info__table td ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 6px;
}

.info__table td ul li {
   background: -o-linear-gradient(bottom, #14152D 0%, #45465E 100%);
   background: -webkit-gradient(linear, left bottom, left top, from(#14152D), to(#45465E));
   background: linear-gradient(0deg, #14152D 0%, #45465E 100%);
   border-radius: 3px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 8px;
   color: #fff;
   line-height: 1;
   text-transform: uppercase;
   padding: 5px 8px;
}

.info__table td ul li img {
   border-radius: 50%;
   max-width: 16px;
}

/* Pros Cons */
.info__pros-cons {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
   margin-top: 16px;
}

.pros-cons__item {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border: 1px solid #FFD400;
   border-radius: 15px;
   padding: 20px;
   width: calc(50% - 10px);
}

.pros-cons__item-title {
   line-height: 2;
   padding-left: 64px;
}

.pros-cons__item-title:before {
   content: '';
   border-radius: 3px;
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: cover;
   width: 40px;
   height: 40px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   margin: auto;
}

.pros__item .pros-cons__item-title:before {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%3E%3Crect%20width%3D%2240%22%20height%3D%2240%22%20rx%3D%223%22%20fill%3D%22url(%23paint0_linear_1364_7768)%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M28%2020C28%2021.104%2027.104%2022%2026%2022H22V26C22%2027.104%2021.104%2028%2020%2028C18.896%2028%2018%2027.104%2018%2026V22H14C12.896%2022%2012%2021.104%2012%2020C12%2018.896%2012.896%2018%2014%2018H18V14C18%2012.896%2018.896%2012%2020%2012C21.104%2012%2022%2012.896%2022%2014V18H26C27.104%2018%2028%2018.896%2028%2020Z%22%20fill%3D%22white%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_1364_7768%22%20x1%3D%2219.1451%22%20y1%3D%2240%22%20x2%3D%2219.1451%22%20y2%3D%228.33783e-07%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2314152D%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2345465E%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.cons__item .pros-cons__item-title:before {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%3E%3Crect%20x%3D%220.5%22%20width%3D%2240%22%20height%3D%2240%22%20rx%3D%223%22%20fill%3D%22%23FFD400%22%2F%3E%3Crect%20x%3D%220.5%22%20width%3D%2240%22%20height%3D%2240%22%20rx%3D%223%22%20fill%3D%22url(%23paint0_linear_1364_7793)%22%2F%3E%3Cpath%20d%3D%22M25.625%2018H14.375C13.3395%2018%2012.5%2018.8955%2012.5%2020C12.5%2021.1045%2013.3395%2022%2014.375%2022H25.625C26.6605%2022%2027.5%2021.1045%2027.5%2020C27.5%2018.8955%2026.6605%2018%2025.625%2018Z%22%20fill%3D%22white%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_1364_7793%22%20x1%3D%2219.6451%22%20y1%3D%2240%22%20x2%3D%2219.6451%22%20y2%3D%228.33783e-07%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2314152D%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2345465E%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.pros-cons__item-list {
   margin-top: 16px;
   padding-left: 64px;
}

.pros-cons__item-list li:before {
   background: -o-linear-gradient(bottom, #14152D 0%, #45465E 100%);
   background: -webkit-gradient(linear, left bottom, left top, from(#14152D), to(#45465E));
   background: linear-gradient(0deg, #14152D 0%, #45465E 100%);
}

/* Steps */
.steps__list {
   border: 1px solid #FFD400;
   border-radius: 15px;
   font-family: 'Roboto', sans-serif;
   padding: 20px;
   position: relative;
}

.steps__list:before {
   content: '';
   border-left: 1px dashed #FFD400;
   position: absolute;
   top: 20px;
   bottom: 20px;
   left: 39px;
}

.steps__list li {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border-radius: 8px;
   min-height: 38px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   padding-left: 54px;
}

.steps__list li:before {
   content: '0' counter(ol);
   background: -o-linear-gradient(bottom, #14152D 0%, #45465E 100%);
   background: -webkit-gradient(linear, left bottom, left top, from(#14152D), to(#45465E));
   background: linear-gradient(0deg, #14152D 0%, #45465E 100%);
   border: 1px solid #FFD400;
   border-radius: 3px;
   font-weight: 700;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   bottom: 0;
   left: 0;
   width: 38px;
}

.steps__list li+li {
   margin-top: 40px;
}

/* Article */
.bg-block {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border: 1px solid #FFD400;
   border-radius: 15px;
   padding: 20px;
   width: 100%;
}

.about__item-title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 10px;
}

.about__item-title img {
   max-width: 32px;
}

/* Offers */
.offers__list {
   margin-top: 20px;
}

.offers__list-item {
   border-radius: 15px;
   padding: 80px;
   overflow: hidden;
}

.offers__list-item+.offers__list-item {
   margin-top: 20px;
}

.offers__item-desc {
   max-width: 610px;
   position: relative;
}

.offers__item-desc ul li+li {
   margin-top: 14px;
}

.offers__item-desc ul ul {
   margin-top: 14px;
}

/* VIP */
.vip {
   padding: 80px;
}

.vip__desc {
   position: relative;
}

.vip__desc p,
.vip__desc .bg-block {
   max-width: 755px;
   width: 100%;
}

/* Slots */
ul.bg-block {
   padding: 14px;
}

ul.bg-block li:before,
.bg-block ul li:before {
   background: -o-linear-gradient(bottom, #14152D 0%, #45465E 100%);
   background: -webkit-gradient(linear, left bottom, left top, from(#14152D), to(#45465E));
   background: linear-gradient(0deg, #14152D 0%, #45465E 100%);
}

ul.bg-block>li+li,
ul.bg-block ul {
   margin-top: 14px;
}

ul.bg-block ul li:before {
   background: none;
   border: 2px solid #14152D;
}

.table {
   border: 1px solid #FFD400;
   border-radius: 15px;
   overflow: hidden;
   width: 100%;
}

.table thead {
   background-color: #FFD400;
}

.table thead th {
   font-weight: 700;
   font-size: 20px;
   color: #13151B;
   line-height: 1.1;
   text-transform: uppercase;
   padding: 9px 20px;
}

.table tbody tr:nth-child(odd) {
   background-color: rgba(255, 212, 0, 0.302);
}

.table tbody th,
.table td {
   line-height: 1.358;
   padding: 12px 20px;
}

.table tbody th .slots__table th,
.slots__table td {
   width: 20%;
}

/* Games */
.games__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 20px;
}

.games__list-item {
   border: 1px solid #FCC211;
   border-radius: 15px;
   overflow: hidden;
   padding: 20px;
   width: calc(50% - 10px);
}

.games__item-desc {
   position: relative;
}

.games__item-title {
   border-bottom: 1px solid #FCC211;
   padding-bottom: 8px;
}

.games__item-text {
   margin-top: 8px;
}

/* FAQ */
.faq__item {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border: 1px solid #FFD400;
   border-radius: 15px;
   overflow: hidden;
}

.faq__item+.faq__item {
   margin-top: 16px;
}

.faq-item__title {
   text-align: left;
   margin-bottom: 0;
   cursor: pointer;
   padding: 18px 55px 17px 16px;
}

.faq-item__title:before {
   content: '';
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   width: 24px;
   height: 24px;
   position: absolute;
   top: 17px;
   right: 16px;
}

.faq-item__desc {
   border-top: 1px solid #FFD400;
   line-height: 1.71;
   padding: 16px;
}

.faq__item.active .faq-item__title:before {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
}

/* Reviews */
.reviews__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 20px;
}

.reviews__list-item {
   background: -o-linear-gradient(left, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   background: -webkit-gradient(linear, left top, right top, from(rgba(255, 212, 0, 0.6)), to(rgba(255, 199, 0, 0)));
   background: linear-gradient(90deg, rgba(255, 212, 0, 0.6) 0%, rgba(255, 199, 0, 0) 100%);
   border: 1px solid #FCC211;
   border-radius: 15px;
   padding: 20px;
   width: calc(50% - 10px);
}

.reviews__item-rate {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 5px;
}

.reviews__item-rate img {
   max-width: 22px;
}

.reviews__item-name {
   font-weight: 700;
   font-size: 20px;
}

.reviews__item-text {
   margin-top: 16px;
}

/* Grade */
.grade__table th,
.grade__table td {
   width: 50%;
}

.grade__table th {
   border-right: 1px solid #FFD400;
}

/* Conclusion */
.conclusion {
   padding: 80px;
}

.conclusion__desc {
   position: relative;
   width: 100%;
}

.conclusion__text {
   max-width: 755px;
}

.app-buttons {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 32px;
}

.app-button {
   background-color: rgba(255, 212, 0, 0.141);
   border: 2px solid #FFD400;
   border-radius: 8px;
   -webkit-box-shadow: 0px -1px 20px 0px #FDCD0A99,
      inset 0px -1px 20px 0px #FDCD0A99;
   box-shadow: 0px -1px 20px 0px #FDCD0A99,
      inset 0px -1px 20px 0px #FDCD0A99;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   gap: 16px;
   font-weight: 500;
   font-size: 14px;
   color: #fff;
   line-height: 1.14;
   text-align: center;
   width: 240px;
   height: 64px;
   padding: 10px 32px;
}

.app-button:hover {
   background-color: rgba(255, 212, 0, 0.5);
}

/* Footer */
.footer {
   padding: 20px 40px 20px 277px;
}

.footer__logo {
   -webkit-filter: grayscale(100%);
   filter: grayscale(100%);
   max-width: 152px;
   opacity: .5;
   margin: 0 auto;
}

.footer__flags {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   gap: 20px;
   margin-top: 32px;
}

.footer__flags li {
   background: -o-linear-gradient(bottom, #14152D 0%, #45465E 100%);
   background: -webkit-gradient(linear, left bottom, left top, from(#14152D), to(#45465E));
   background: linear-gradient(0deg, #14152D 0%, #45465E 100%);
   border-radius: 8px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 8px;
   padding: 12px 20px;
}

.footer__flags li a {
   color: #fff;
   text-transform: uppercase;
}

.footer__flags li img {
   border-radius: 50%;
   max-width: 24px;
}

.footer__menu {
   margin: 32px 0px;
   width: 100%;
}

.footer__menu ul {
   border: 2px solid rgba(255, 255, 255, .1);
   border-radius: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   gap: 8px 16px;
   padding: 2px;
}

.footer__menu li a {
   display: block;
   font-weight: 500;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.502);
   line-height: 1;
   text-transform: uppercase;
   padding: 9px 17px;
}

.footer__menu li a:hover {
   background-color: #FFD400;
   border-radius: 100px;
   color: #000;
}

.footer__text {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   gap: 12px;
   position: relative;
}

.footer__desc {
   color: rgba(255, 255, 255, .5);
   line-height: 1.71;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* To top */
.to-top {
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M15.6546%2013.8103L15.6546%2013.8103L12.3522%2019.5309C12.3519%2019.5314%2012.3516%2019.5318%2012.3513%2019.5323C12.2505%2019.7054%2012.2025%2019.9042%2012.2132%2020.1043C12.224%2020.3049%2012.2933%2020.4979%2012.4127%2020.6595C12.532%2020.8211%2012.6961%2020.9441%2012.8847%2021.0134C13.0729%2021.0826%2013.2773%2021.0951%2013.4725%2021.0495C13.4729%2021.0494%2013.4732%2021.0494%2013.4736%2021.0493L17.875%2020.0382L17.8744%2030.5618C17.8744%2031.1255%2018.0983%2031.666%2018.4968%2032.0645C18.8953%2032.463%2019.4358%2032.6869%2019.9994%2032.6869C20.563%2032.6869%2021.1035%2032.463%2021.502%2032.0645C21.9005%2031.666%2022.1244%2031.1255%2022.1244%2030.5619V20.0382L26.5266%2021.049C26.7223%2021.0964%2026.9278%2021.0847%2027.1169%2021.0151C27.3061%2020.9455%2027.4704%2020.8213%2027.5888%2020.6581C27.708%2020.4971%2027.7772%2020.3047%2027.788%2020.1046C27.7988%2019.9039%2027.7504%2019.7046%2027.6487%2019.5314C27.6482%2019.5305%2027.6477%2019.5297%2027.6472%2019.5289L24.3458%2013.8103L23.9128%2014.0603L24.3458%2013.8103L20.8919%207.82776C20.8018%207.67095%2020.6719%207.54069%2020.5153%207.45012C20.3588%207.35953%2020.1811%207.31184%2020.0002%207.31184C19.8194%207.31184%2019.6417%207.35953%2019.4851%207.45011C19.3286%207.54069%2019.1987%207.67096%2019.1085%207.82776L15.6546%2013.8103ZM9.76562%200.5H30.2344C35.3369%200.5%2039.5%204.66302%2039.5%209.76562V30.2344C39.5%2035.337%2035.337%2039.5%2030.2344%2039.5H9.76562C4.66317%2039.5%200.5%2035.337%200.5%2030.2344V9.76562C0.5%204.66302%204.66317%200.5%209.76562%200.5Z%22%20fill%3D%22%23FFD400%22%2F%3E%3Cpath%20d%3D%22M15.6546%2013.8103L15.6546%2013.8103L12.3522%2019.5309C12.3519%2019.5314%2012.3516%2019.5318%2012.3513%2019.5323C12.2505%2019.7054%2012.2025%2019.9042%2012.2132%2020.1043C12.224%2020.3049%2012.2933%2020.4979%2012.4127%2020.6595C12.532%2020.8211%2012.6961%2020.9441%2012.8847%2021.0134C13.0729%2021.0826%2013.2773%2021.0951%2013.4725%2021.0495C13.4729%2021.0494%2013.4732%2021.0494%2013.4736%2021.0493L17.875%2020.0382L17.8744%2030.5618C17.8744%2031.1255%2018.0983%2031.666%2018.4968%2032.0645C18.8953%2032.463%2019.4358%2032.6869%2019.9994%2032.6869C20.563%2032.6869%2021.1035%2032.463%2021.502%2032.0645C21.9005%2031.666%2022.1244%2031.1255%2022.1244%2030.5619V20.0382L26.5266%2021.049C26.7223%2021.0964%2026.9278%2021.0847%2027.1169%2021.0151C27.3061%2020.9455%2027.4704%2020.8213%2027.5888%2020.6581C27.708%2020.4971%2027.7772%2020.3047%2027.788%2020.1046C27.7988%2019.9039%2027.7504%2019.7046%2027.6487%2019.5314C27.6482%2019.5305%2027.6477%2019.5297%2027.6472%2019.5289L24.3458%2013.8103L23.9128%2014.0603L24.3458%2013.8103L20.8919%207.82776C20.8018%207.67095%2020.6719%207.54069%2020.5153%207.45012C20.3588%207.35953%2020.1811%207.31184%2020.0002%207.31184C19.8194%207.31184%2019.6417%207.35953%2019.4851%207.45011C19.3286%207.54069%2019.1987%207.67096%2019.1085%207.82776L15.6546%2013.8103ZM9.76562%200.5H30.2344C35.3369%200.5%2039.5%204.66302%2039.5%209.76562V30.2344C39.5%2035.337%2035.337%2039.5%2030.2344%2039.5H9.76562C4.66317%2039.5%200.5%2035.337%200.5%2030.2344V9.76562C0.5%204.66302%204.66317%200.5%209.76562%200.5Z%22%20fill%3D%22url(%23paint0_linear_1374_466)%22%2F%3E%3Cpath%20d%3D%22M15.6546%2013.8103L15.6546%2013.8103L12.3522%2019.5309C12.3519%2019.5314%2012.3516%2019.5318%2012.3513%2019.5323C12.2505%2019.7054%2012.2025%2019.9042%2012.2132%2020.1043C12.224%2020.3049%2012.2933%2020.4979%2012.4127%2020.6595C12.532%2020.8211%2012.6961%2020.9441%2012.8847%2021.0134C13.0729%2021.0826%2013.2773%2021.0951%2013.4725%2021.0495C13.4729%2021.0494%2013.4732%2021.0494%2013.4736%2021.0493L17.875%2020.0382L17.8744%2030.5618C17.8744%2031.1255%2018.0983%2031.666%2018.4968%2032.0645C18.8953%2032.463%2019.4358%2032.6869%2019.9994%2032.6869C20.563%2032.6869%2021.1035%2032.463%2021.502%2032.0645C21.9005%2031.666%2022.1244%2031.1255%2022.1244%2030.5619V20.0382L26.5266%2021.049C26.7223%2021.0964%2026.9278%2021.0847%2027.1169%2021.0151C27.3061%2020.9455%2027.4704%2020.8213%2027.5888%2020.6581C27.708%2020.4971%2027.7772%2020.3047%2027.788%2020.1046C27.7988%2019.9039%2027.7504%2019.7046%2027.6487%2019.5314C27.6482%2019.5305%2027.6477%2019.5297%2027.6472%2019.5289L24.3458%2013.8103L23.9128%2014.0603L24.3458%2013.8103L20.8919%207.82776C20.8018%207.67095%2020.6719%207.54069%2020.5153%207.45012C20.3588%207.35953%2020.1811%207.31184%2020.0002%207.31184C19.8194%207.31184%2019.6417%207.35953%2019.4851%207.45011C19.3286%207.54069%2019.1987%207.67096%2019.1085%207.82776L15.6546%2013.8103ZM9.76562%200.5H30.2344C35.3369%200.5%2039.5%204.66302%2039.5%209.76562V30.2344C39.5%2035.337%2035.337%2039.5%2030.2344%2039.5H9.76562C4.66317%2039.5%200.5%2035.337%200.5%2030.2344V9.76562C0.5%204.66302%204.66317%200.5%209.76562%200.5Z%22%20stroke%3D%22%23FFD400%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_1374_466%22%20x1%3D%2219.1451%22%20y1%3D%2240%22%20x2%3D%2219.1451%22%20y2%3D%228.33783e-07%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2314152D%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2345465E%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   display: block;
   width: 40px;
   height: 40px;
   position: fixed;
   right: 20px;
   bottom: 20px;
   display: none;
   z-index: 100;
   opacity: .6;
}

.to-top:hover {
   opacity: 1;
}

/* MOBILE PAGE */
/* Bonuses */
.bonuses__table-col4 th,
.bonuses__table-col4 td {
   width: 25%;
}

.bonuses__table-col3 th,
.bonuses__table-col3 td {
   width: 33.3%;
}

/* Terms */
.terms {
   padding: 80px;
}

.terms__desc {
   position: relative;
   width: 100%;
}

.terms__desc-text {
   max-width: 610px;
}

/* Banner */
.banner {
   padding: 80px;
}

.banner__desc {
   position: relative;
   width: 100%;
}

.banner__desc .bg-block {
   max-width: 650px;
}

/* BONUS PAGE */
/* Prime */
.bonus .prime__wrap {
   max-width: 730px;
}

/* Install */
.install__item-title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 10px;
}

/* Types */
.types,
.web {
   padding: 80px;
}

.types__desc,
.web__desc {
   position: relative;
   width: 100%;
}

.types__desc p,
.web__desc p {
   max-width: 610px;
}
@media screen and (min-width:1440px) {
   .cover {
      padding-left: calc(50% - (1400px / 2));
      padding-right: calc(50% - (1400px / 2));
   }

   .main {
      padding-left: calc(50% - ((1440px - 257px - 257px) / 2));
      padding-right: calc(50% - (1440px / 2));
   }

   .sidebar {
      left: calc(50% - (1440px / 2));
   }

   .footer {
      padding-left: calc(50% - ((1440px - 277px - 277px) / 2));
      padding-right: calc(50% - ((1440px - 80px) / 2));
   }
}

@media screen and (min-width: 1025px) {
   .header__menu {
      display: block !important;
   }
}

@media (orientation: landscape) and (max-width:850px) {
   .header__menu {
      height: calc(100vh - 67px);
      overflow: auto;
   }
}

@media screen and (max-width: 1125px) {
   .header__menu {
      margin-left: auto;
   }

   .header__menu ul {
      gap: 20px;
   }
}

@media screen and (max-width: 1025px) {
   .header__logo {
      margin-right: auto;
   }

   .menu-button {
      display: block;
      border: 2px solid #FDCD0B;
      padding: 10px;
      border-radius: 8px;
      width: 40px;
      height: 40px;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
   }

   .menu-button svg {
      display: block;
      margin: auto;
   }

   .menu-button svg rect {
      -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      fill: #FFD400;
   }

   .menu-button.active svg rect:nth-child(1) {
      x: -2px;
      y: 6px;
      width: 20px;
      -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
      transform: rotate(225deg);
   }

   .menu-button.active svg rect:nth-child(2) {
      -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      -webkit-transform: scale(0, 2);
      -ms-transform: scale(0, 2);
      transform: scale(0, 2);
   }

   .menu-button.active svg rect:nth-child(3) {
      x: -2px;
      y: 6px;
      width: 20px;
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg);
   }

   .header__menu {
      background: #0B0C21;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 100;
      margin: 0;
      padding: 25px;
      text-align: center;
      display: none;
   }

   .header__menu ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
   }

   .main {
      padding-left: 0;
   }

   .content {
      width: calc(100% - 40px);
      margin-left: auto;
      margin-right: auto;
   }

   .sidebar {
      background: #1F2038;
      border-radius: 20px;
      height: auto;
      margin: 20px auto 0;
      width: calc(100% - 40px);
      padding: 10px 20px;
      position: static;
   }

   .sidebar__menu {
      display: none;
   }

   .sidebar__links-button:before {
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20%2012C20%2013.104%2019.104%2014%2018%2014H14V18C14%2019.104%2013.104%2020%2012%2020C10.896%2020%209.99999%2019.104%209.99999%2018V14H6.00001C4.89601%2014%204%2013.104%204%2012C4%2010.896%204.89601%2010%206.00001%2010H9.99999V6C9.99999%204.896%2010.896%204%2012%204C13.104%204%2014%204.896%2014%206V10H18C19.104%2010%2020%2010.896%2020%2012Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   }

   .sidebar__links-button.hide:before {
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17.125%2010H5.875C4.83953%2010%204%2010.8955%204%2012C4%2013.1045%204.83953%2014%205.875%2014H17.125C18.1605%2014%2019%2013.1045%2019%2012C19%2010.8955%2018.1605%2010%2017.125%2010Z%22%20fill%3D%22%23FFD400%22%2F%3E%3C%2Fsvg%3E");
   }

   .sidebar__links-list {
      display: none;
   }

   .footer {
      padding-left: 20px;
      padding-right: 20px;
   }
}

@media screen and (max-width: 850px) {

   h1,
   .title.general {
      font-size: 28px;
   }

   h2,
   .title.high {
      font-size: 24px;
   }

   .prime,
   .offers__list-item {
      padding: 20px;
   }

   .prime__wrap,
   .offers__item-desc {
      background-color: rgba(11, 12, 33, .7);
      border-radius: 15px;
      padding: 20px;
   }

   .pros-cons__item-list {
      padding-left: 0;
   }

   .vip,
   .conclusion,
   .terms,
   .banner,
   .types,
   .web {
      padding: 40px;
   }

   .table thead th {
      font-size: 16px;
   }

   .table thead th,
   .table tbody th,
   .table td {
      padding-left: 10px;
      padding-right: 10px;
   }
}

@media screen and (max-width: 650px) {

   h1,
   .title.general {
      font-size: 24px;
      line-height: 1.3;
   }

   h2,
   .title.high {
      font-size: 22px;
   }

   h3,
   .title.middle,
   h4,
   .title.mini {
      font-size: 18px;
   }

   .header>.header__button {
      display: none;
   }

   .header__menu .header__button {
      display: inline-block;
      margin: 20px 5px 0;
   }

   .prime__title {
      margin-bottom: 10px;
   }

   .prime__button {
      margin-top: 15px;
   }

   .info__table,
   .slots__table,
   .bonuses__table {
      overflow: auto;
   }

   .info__table::-webkit-scrollbar,
   .slots__table::-webkit-scrollbar,
   .bonuses__table::-webkit-scrollbar {
      height: 3px;
   }

   .info__table::-webkit-scrollbar-track,
   .slots__table::-webkit-scrollbar-track,
   .bonuses__table::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0);
   }

   .info__table::-webkit-scrollbar-thumb,
   .slots__table::-webkit-scrollbar-thumb,
   .bonuses__table::-webkit-scrollbar-thumb {
      background: #FFD400;
   }

   .info__table table,
   .bonuses__table table {
      width: 600px;
   }

   .info__table tr {
      padding-left: 10px;
      padding-right: 10px;
   }

   .info__table th {
      width: 190px;
   }

   .info__pros-cons {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
   }

   .pros-cons__item {
      width: 100%;
   }

   .slots__table table {
      width: 650px;
   }

   .games__list-item,
   .reviews__list-item {
      width: 100%;
   }

   .faq-item__title:before {
      top: 16px;
   }

   .footer__menu ul {
      border-radius: 30px;
   }

}

@media screen and (max-width: 450px) {

   h1,
   .title.general {
      font-size: 22px;
   }

   h2,
   .title.high {
      font-size: 20px;
   }

   h3,
   .title.middle,
   h4,
   .title.mini {
      font-size: 16px;
   }

   .header {
      padding-left: 10px;
      padding-right: 10px;
   }

   .button {
      min-width: 220px;
      padding-top: 23px;
      padding-bottom: 23px;
      margin-top: 20px;
   }

   .content-bar {
      padding-left: 10px;
      padding-right: 10px;
   }

   .content {
      padding: 15px;
   }

   .content,
   .sidebar {
      width: calc(100% - 20px);
   }

   .prime {
      padding: 0;
   }

   .prime__wrap {
      border-radius: 0;
   }

   .pros-cons__item,
   .steps__list,
   .bg-block,
   .games__list-item,
   .reviews__list-item {
      padding: 15px;
   }

   .pros-cons__item-title {
      padding-left: 55px;
   }

   .steps__list li {
      padding-left: 45px;
   }

   .offers__list-item {
      padding-left: 10px;
      padding-right: 10px;
   }

   .table thead th {
      font-size: 15px;
   }

   .faq-item__title {
      padding: 10px 45px 10px 10px;
   }

   .faq-item__title:before {
      top: 8px;
      right: 10px;
   }

   .faq-item__desc {
      padding: 10px;
   }

   .footer__flags {
      gap: 10px;
   }

   .footer__flags li {
      padding: 10px;
   }

   .footer__text {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
   }
}