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

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.aligncenter {
    display: block;
    margin: 5px auto 20px;
	border-radius:10px;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
iframe {
  max-width: 100%;
}
a {
  text-decoration: none;
  outline: none;
  color: #9f8fff;
  transition: color 150ms linear;
}
a:hover {
  color: #735cfc;
}
hr {
  display: none;
}
input[type="submit"] {
  appearance: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  line-height: 1.1;
  color: #f3f3f3;
}
h1.left,
h2.left,
h3.left,
h4.left,
h5.left,
h6.left,
.h1.left,
.h2.left,
.h3.left,
.h4.left,
.h5.left,
.h6.left {
  text-align: left;
}
h1.right,
h2.right,
h3.right,
h4.right,
h5.right,
h6.right,
.h1.right,
.h2.right,
.h3.right,
.h4.right,
.h5.right,
.h6.right {
  text-align: right;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}
h1,
.h1 {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 15px;
}
h1:last-child,
.h1:last-child {
  margin-bottom: 0;
}
h2,
.h2 {
  font-size: 24px;
}
h2:last-child,
.h2:last-child {
  margin-bottom: 0;
}
h1:first-child,
h2:first-child {
  margin-top: 0;
}
h3,
.h3 {
  font-size: 20px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5 {
  font-size: 20px;
}
h6,
.h6 {
  font-size: 18px;
}
p {
  margin: 0 0 10px;
}
p:last-of-type {
  margin-bottom: 0;
}
em,
i,
cite {
  font-style: italic;
}
strong,
b {
  font-weight: bold;
}
ol,
ul {
    color: inherit;
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
select,
input,
textarea,
button {
    outline: none;
    font: inherit;
}
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
th,
td {
  padding: 10px;
}
blockquote {
  display: table;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px 30px;
  text-align: center;
  background: linear-gradient(250deg, rgba(129, 8, 224, 0.3) 30%, rgba(255, 57, 176, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid #df2dbd;
  margin: 20px auto;
}
blockquote p {
  margin: 0;
}
cite {
  display: table;
  padding: 10px 25px;
  background: #370872;
  border-radius: 16px;
  border-left: 5px solid #77fc17;
  border-right: 5px solid #77fc17;
  margin: 20px auto;
}
cite p {
  margin: 0;
}
.clear:after {
  content: "";
  display: block;
  clear: both;
}
body {
  display: flex;
  flex-direction: column;
  font: 16px Roboto, sans-serif, system-ui;
  line-height: 1.5;
  color: #fff;
  min-width: 320px;
  background: linear-gradient(90deg, #101726 0%, #301414 100%);
  min-height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.nav-closed .wrapper {
  padding-left: 60px;
}
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-left: 250px;
  transition: padding 0.2s ease-in-out;
}
.menu-overlay {
  display: none;
}
.container {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1630px;
}
[data-link] {
  cursor: pointer;
}
@keyframes shine {
  0% {
      transform: skewY(-45deg) translateX(0);
  }
  50%,
  100% {
      transform: skewX(-45deg) translateX(20em);
      transition: all 0.6s ease-in-out;
  }
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 110px;
  padding: 5px 20px;
  background: linear-gradient(250deg, #adff00 0%, #00ea25 100%);
  box-shadow: none;
  border: none;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -4.5em;
  display: block;
  height: 100%;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  animation: shine 2.5s infinite;
}
.btn:hover {
  background: linear-gradient(250deg, #cdff63 0%, #55ff70 100%);
  box-shadow: 0 0 15px rgba(71, 197, 0, 0.8);
  border: none;
}
.btn.btn-violet {
  background: linear-gradient(210deg, #8108e0 0%, #ff39b0 100%);
  color: #fff;
}
.btn.btn-violet:hover {
  background: linear-gradient(210deg, #8108e0 0%, #ff39b0 100%);
  box-shadow: 0 0 15px #df2dbd;
}
.btn.btn-alt {
  background: transparent;
  border: 2px solid #df2dbd;
  color: #fff;
}
.btn.btn-alt:before {
  display: none;
}
.btn.btn-alt:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(250deg, rgba(129, 8, 224, 0.3) 30%, rgba(255, 57, 176, 0.3) 100%);
  transition: all 0.3s linear;
  opacity: 0;
  z-index: -1;
}
.btn.btn-alt:hover {
  box-shadow: none;
}
.btn.btn-alt:hover:after {
  opacity: 1;
}
.btn.no-shine:before {
  display: none;
}
.btn-daddy-skachat {
  background-color: transparent;
  border: none;
  margin-top: 10px;
}

.ref-btn-wrap {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.ref-btn-wrap .btn {
    min-width: 200px;
    min-height: 40px;
    font-size: 16px;
}

.header {
  position: sticky;
  top: 0;
  display: flex;
  padding: 10px 0;
  height: 60px;
  background: linear-gradient(90deg, #101726 0%, #301414 100%);
  z-index: 100;
}
.header .container {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  flex: 0 0 auto;
}
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-right .btn {
  min-height: 40px;
}
.mob-signin {
  display: none;
}

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background: linear-gradient(95deg, #101726 0%, #301414 170%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: translate3d(0, 0, 0);
  will-change: width;
  transition: width 0.2s ease-in-out;
  overflow: hidden;
  z-index: 100;
}

.main-navigation.closed {
  width: 60px;
}
.main-navigation.closed .nav-hidden {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: none;
}
.main-navigation.closed .nav-header {
  padding: 21px;
}
.main-navigation.closed .nav-btn {
  transform: scaleX(1);
}
.main-navigation.closed .nav-list {
  margin: 0;
}
.main-navigation.closed .nav-item {
  padding: 5px 15px;
}
.main-navigation.closed .nav-item i {
  margin: 0;
}
.main-navigation .nav-hidden {
  opacity: 1;
  visibility: visible;
  transition: all 1s ease-out;
}
.main-navigation .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  height: 60px;
}
.main-navigation .nav-header .caption {
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
}

.main-navigation .nav-btn {
  flex: 0 0 auto;
  display: block;
  background: url("/img/nav-btn.svg") center no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  transform: scaleX(-1);
  cursor: pointer;
}

.main-navigation .nav-wrap {
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
}
.main-navigation .nav-wrap::-webkit-scrollbar {
  width: 5px;
  background: #2a1b2c;
}
.main-navigation .nav-wrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #57425f;
}
.main-navigation .nav-wrap:hover::-webkit-scrollbar-thumb {
  background: #57425f;
}
.main-navigation .btns-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 25px;
}
.main-navigation .btns-wrap .btn {
  min-height: 40px;
}
.main-navigation .btns-wrap .btn:before {
  display: none;
}
.main-navigation .nav-list {
  margin-top: 20px;
}
.main-navigation .nav-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  padding: 5px 25px;
  min-height: 40px;
  white-space: nowrap;
}
.main-navigation .nav-item:hover {
  background: #3d2740;
}
.main-navigation .nav-item i {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}


.content-text {
  padding: 30px;
}
.content-text a {
  font-weight: bold;
}
.content-text table {
  text-decoration: none;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid #6f53a7;
  overflow: hidden;
  width: 100%;
  margin: 20px 0;
}
.content-text table thead th {
  font-size: 14px;
  font-weight: bold;
  background: #532d86;
  border-bottom: 1px solid #6f53a7;
  vertical-align: middle;
}
.content-text table td {
  font-size: 13px;
}
.content-text table td,
.content-text table th {
  padding: 10px;
  line-height: 1.3;
}
.content-text table tbody tr:nth-of-type(odd) {
  background: #3b2860;
}
.content-text table tbody tr:nth-of-type(even) {
  background: #2e2147;
}
.content-text ul,
.content-text ol {
  text-align: left;
  margin: 15px 0;
}
.content-text ul li,
.content-text ol li {
  margin-bottom: 8px;
}
.content-text ul li:last-of-type,
.content-text ol li:last-of-type {
  margin-bottom: 0;
}
.content-text ul {
  padding-left: 15px;
}
.content-text ul li {
  position: relative;
  padding-left: 20px;
}
.content-text ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(315deg, #df2dbd, #7629d7);
}
.content-text ol {
  padding-left: 30px;
}
.content-text ol li::marker {
  color: #77fc17;
}

.faq-list {
    margin: 15px 0 0;
}
.accord-block {
    margin-bottom: 8px;
    border-radius: 12px;
    padding: 25px 32px;
    background: #312034;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s linear;
}
.accord-block:hover {
    background: #3f2743;
}
.accord-block:last-of-type {
    margin-bottom: 0;
}
.accord-block.open {
    background: #3d2740;
}
.accord-block.open .accord-block-header .icon:after {
    visibility: hidden;
    opacity: 0;
}
.accord-block.open .accord-block-header .icon:before {
    background: #fff;
}
.accord-block .accord-block-header {
    position: relative;
    padding-right: 32px;
    color: #fff;
    font-size: 16px;
    user-select: none;
}
.accord-block .accord-block-header .icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}
.accord-block .accord-block-header .icon:before,
.accord-block .accord-block-header .icon:after {
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    visibility: visible;
    opacity: 1;
}
.accord-block .accord-block-header .icon:before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}
.accord-block .accord-block-header .icon:after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}
.accord-block .accord-block-content {
    display: none;
}
.accord-block .accord-block-text {
    padding-top: 20px;
}

/*FOOTER*/

.footer-wrap {
    display:flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    align-items: unset;
    text-align: unset;
}

.footer-left {
    flex-direction: column;
    display: flex;
    width: 486px;
    margin-right: 54px;
}

.footer-right {
    display:flex;
    flex-direction: row;
    gap:10px;
}

.footer-right_list {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: left;
    min-width: 110px;
    max-width: 150px;
}



/*ICONS*/
i {
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}
i.right {
    margin-right: 0;
    margin-left: 10px;
}
i.nav-rocket {
    background-image: url("/img/icons/nav-rocket.svg");
}
i.nav-diamond {
    background-image: url("/img/icons/nav-diamond.svg");
}
i.nav-crown {
    background-image: url("/img/icons/nav-crown.svg");
}
i.nav-star {
    background-image: url("/img/icons/nav-star.svg");
}
i.nav-new {
    background-image: url("/img/icons/nav-new.svg");
}
i.nav-coins {
    background-image: url("/img/icons/nav-coins.svg");
}
i.nav-medal {
    background-image: url("/img/icons/nav-medal.svg");
}
i.nav-gift {
    background-image: url("/img/icons/nav-gift.svg");
}
i.nav-trophy {
    background-image: url("/img/icons/nav-trophy.svg");
}
i.nav-doc {
    background-image: url("/img/icons/nav-doc.svg");
}
i.nav-chat {
    background-image: url("/img/icons/nav-chat.svg");
}
i.nav-cashout {
    background-image: url("/img/icons/nav-cashout.svg");
}
i.icon-clock {
    background-image: url("/img/icons/icon-clock.svg");
}
i.winner-arrow {
    background-image: url("/img/icons/winner-arrow.svg");
}
i.cat-star {
    background-image: url("/img/icons/cat-star.svg");
}
i.cat-new {
    background-image: url("/img/icons/cat-new.svg");
}


/*MEDIA*/
@media (max-width: 1630px) {
    .main-banners .banner-item {
        min-height: 220px;
        line-height: 1.2;
        font-weight: normal;
    }
    .main-banners .banner-info {
        max-width: 70%;
    }
    .main-banners .banner-title {
        font-size: 20px;
        font-weight: bold;
        text-transform: none;
    }
    .main-banners .banner-text {
        font-size: 18px;
    }
    .main-banners .banner-adv-text {
        font-size: 18px;
    }
    .winners-block {
        padding: 40px 15px 15px;
        min-height: 220px;
    }
    .winners-block .caption {
        padding: 8px 13px;
    }
    .winners-block .winner-item {
        padding: 7px 15px;
    }
    .winners-block .slot-logo {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .winners-block .slot-title {
        font-size: 14px;
    }
    .winners-block .slot-prize {
        font-size: 14px;
    }
    .four-blocks .fb-item {
        gap: 10px;
        padding: 7px;
    }
    .four-blocks .fb-image {
        flex: 0 0 55px;
        margin: 0 5px;
    }
    .four-blocks .fb-title {
        font-size: 16px;
    }
    .four-blocks .fb-text {
        margin-top: 8px;
    }
    .bonuses-list .bonus-item {
        max-height: 280px;
    }
    .bonuses-list .bonus-info {
        padding: 40px 20px 20px;
    }
    .bonuses-list .bonus-type {
        padding: 8px 13px;
    }
    .bonuses-list .bonus-title {
        font-size: 24px;
        line-height: 1.3;
    }
    .bonuses-list .promocode .code {
        font-size: 24px;
        line-height: 1.3;
    }
    .bonuses-list .promocode .code:after {
        width: 18px;
        height: 18px;
    }
    .bonuses-list .bonus-image {
        flex: 0 0 210px;
    }
}
@media (max-width: 1420px) {
    body.nav-opened {
        overflow: hidden;
    }
    .wrapper {
        padding-left: 60px;
    }
    .menu-overlay {
        position: fixed;
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        transform: translateZ(0);
        background: rgba(29, 26, 28, 0.6);
        transition: 0.2s;
        visibility: hidden;
        opacity: 0;
        cursor: pointer;
        z-index: 99;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .main-navigation:not(.opened) {
        width: 60px;
    }
    .main-navigation:not(.opened) .nav-hidden {
        width: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: none;
    }
    .main-navigation:not(.opened) .nav-header {
        padding: 21px;
    }
    .main-navigation:not(.opened) .nav-btn {
        transform: scaleX(1);
    }
    .main-navigation:not(.opened) .nav-list {
        margin: 0;
    }
    .main-navigation:not(.opened) .nav-item {
        padding: 5px 15px;
    }
    .main-navigation:not(.opened) .nav-item i {
        margin: 0;
    }
}
@media (max-width: 1130px) {
    .bonuses-list {
        gap: 15px;
    }
    .bonuses-list .bonus-item {
        flex: 1 1 100%;
    }
}
@media (max-width: 1023px) {
    .top-blocks {
        flex-direction: column;
    }
    .main-banners {
        flex: 0 0 auto;
    }
    .winners-block {
        flex: 0 0 auto;
    }
    .four-blocks {
        flex-wrap: wrap;
    }
    .four-blocks .fb-item {
        flex: 1 1 calc(50% - 5px);
        flex-direction: row-reverse;
        padding: 10px 30px;
    }
    .four-blocks .fb-image {
        margin: 0;
    }
    .four-blocks .fb-text {
        margin-top: 3px;
    }
    .content-text {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    body.nav-closed .wrapper {
        padding-left: 0;
        padding:0px 10px;
    }
    .wrapper {
        padding-left: 0;
        padding: 0 5px;
    }
	
	.content-text img {
		float: none;
        text-align: center;
        margin: 0 auto 20px;
	}
	
    blockquote {
        padding: 10px 15px;
        margin: 15px auto;
    }
    cite {
        padding: 10px 15px;
        margin: 15px auto;
    }
    .site-logo {
        margin-left: 50px;
    }
    .main-navigation:not(.opened) {
        width: 0;
        overflow: visible;
    }
    .main-navigation:not(.opened) .nav-item i {
        opacity: 0;
        margin-right: 15px;
        visibility: hidden;
        transition: none;
    }
    .main-navigation .nav-item i {
        opacity: 1;
        visibility: visible;
        transition: all 1s ease-out;
    }
    .four-blocks .fb-item {
        padding: 10px 20px;
    }
    .four-blocks .fb-image {
        flex: 0 0 50px;
    }
    .slots-block {
        margin: 15px 0 0;
    }
    .slots-block .slots-category {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .slots-block .slots-list {
        gap: 10px;
    }
    .bonuses-list {
        gap: 10px;
    }
    .bonuses-list .bonus-title {
        font-size: 20px;
    }
    .bonuses-list .promocode .code {
        font-size: 20px;
    }
    .bonuses-list .bonus-info {
        gap: 15px;
    }
    .content-text {
        padding: 20px 0;
    }
    .content-text table thead th {
        font-size: 13px;
    }
    .content-text table td,
    .content-text table th {
        padding: 5px 7px;
        line-height: 1.2;
    }
    .content-text table td {
        font-size: 12px;
    }
    .table-wrap {
        margin: 15px 0;
        overflow: scroll;
    }
    .table-wrap table {
        margin: 0;
    }
    .footer-links .fl-item {
        font-size: 14px;
    }
    .footer-paysys {
        gap: 15px;
        margin: 20px 0;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 10px;
        text-align: center;
    }
	
	.footer-wrap {
		display:inherit;
	}
	
	.footer-left {
		width:100%;
		margin-right:0px;
		margin-bottom: 30px;
	}
	
}
@media (max-width: 640px) {
    .main-banners .banner-img {
        opacity: 0.5;
    }
    .main-banners .banner-info {
        max-width: 100%;
    }
    .main-banners .banner-text {
        font-size: 16px;
    }
    .main-banners .banner-adv-text {
        font-size: 16px;
    }
    .main-banners .splide__pagination {
        bottom: 15px;
    }
    .main-banners .splide__pagination__page {
        margin: 4px;
    }
    .main-banners .splide__pagination__page.is-active {
        transform: none;
        opacity: 1;
    }
    .four-blocks .fb-item {
        position: relative;
        display: block;
        padding: 10px 55px 10px 15px;
    }
    .four-blocks .fb-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .four-blocks .fb-image {
        position: absolute;
        width: 50px;
        height: 50px;
        top: 50%;
        right: 3px;
        transform: translateY(-50%);
    }
    .four-blocks .fb-title {
        font-size: 12px;
    }
    .four-blocks .fb-text {
        font-size: 10px;
        line-height: 1.2;
    }
	
	.footer-right {
		flex-wrap: wrap;
	} 
	
	.footer-right_list {
		min-width: 25%;
    	max-width: 100%;
    	flex: 1;
	}
}
@media (max-width: 560px) {
    h1,
    .h1 {
        font-size: 26px;
    }
    h2,
    .h2 {
        font-size: 22px;
    }
    h3,
    .h3 {
        font-size: 20px;
    }
    .header-right .btn {
        display: none;
    }
    .mob-signin {
        flex: 0 0 auto;
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
        background: url("/img/icons/icon-signin.svg") no-repeat;
        background-size: contain;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        font-size: 0;
        line-height: 1;
        text-indent: -9999px;
        overflow: hidden;
        z-index: 1;
        cursor: pointer;
    }
    .winners-block .winner-item {
        padding: 7px 10px;
    }
    .winners-block .slot-prize i {
        width: 20px;
        height: 20px;
        margin: 0;
    }
    .bonuses-list .bonus-item {
        flex-direction: column-reverse;
        max-height: 100%;
        text-align: center;
    }
    .bonuses-list .bonus-image {
        flex: 1 1 auto;
        height: 200px;
    }
    .bonuses-list .bonus-info {
        padding: 15px;
    }
    .bonuses-list .promocode .code {
        justify-content: center;
    }
    .bonuses-list .btn-wrap {
        justify-content: center;
    }
    .accord-block {
        padding: 15px 20px;
    }
    .accord-block .accord-block-header {
        font-size: 15px;
        line-height: 1.3;
    }
    .accord-block .accord-block-text {
        padding-top: 15px;
    }
}
@media (max-width: 420px) {
    .bonuses-list .bonus-image {
        height: 160px;
    }
    .slots-block .slot-item {
        max-width: calc(50% - 5px);
    }
    .slots-block .slot-title {
        font-size: 14px;
    }
    .slots-block .btn-play {
        width: 46px;
        height: 46px;
    }
    .slots-block .btn-play:before {
        width: 20px;
        height: 20px;
    }
}
