* {
  box-sizing: border-box;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none !important;
}

.debug-block {
    display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: top !important;
}

ul,
ol {
  padding: 10px 10px 10px 20px;
}

a {
  transition: 0.2s;
  text-decoration: none;
  color: #d63741;
  display: inline-block;
  cursor: pointer;
}

a:hover,
a:active,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: #2a3546;
  border-radius: 2px;
}

html,
body {
  color: #1b1414;
  line-height: 1.5;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}

html.modal_open {
  overflow: hidden;
}

body {
  background-color: #fff;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 19px;
}

p {
  margin: 5px 0;
}

svg {
  vertical-align: top;
}

.stop__scroll {
  height: 100vh;
  overflow: hidden;
}

.container {
  max-width: 1584px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.header {
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  width: calc(100% - 240px);
  z-index: 20;
  background-color: #fff;
}

.header.active {
  width: 100%;
  left: 0;
}

.header .container {
  max-width: 1920px;
}

.fixed-header {
  padding: 16px 32px;
  height: 88px;
  max-width: 1584px;
  margin: 0 auto;
}

.fixed-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56%;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-logo {
  margin: 0 20px 0 0;
  position: relative;
}

.header-logo svg {
  max-width: 150px;
  max-height: 54px;
  width: 100%;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.head_menu_btn {
  cursor: pointer;
  opacity: .7;
  transition: .3s;
}

.head_menu_btn svg {
  fill: #000;
}

.head_menu_btn:hover {
  opacity: 1;
}

.header-menu a {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  margin: 0 35px 0 0;
}

.header-menu a:hover,
.header-menu a.active {
  color: #2f2fde;
}

.overflow-topmenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000070;
  display: none;
  z-index: 19;
}

.overflow-topmenu.active {
  /*    display: block;*/
}

.parent-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.no-login-header-btn,
.yes-login-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.no-login-header-btn {
  display: flex;
}

.yes-login-header-btn .notification {
  position: relative;
  margin-right: 8px;
}

.yes-login-header-btn .notification svg {
  width: 32px;
  height: 32px;
}

.yes-login-header-btn .notification::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #d63741;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.header-btn .btn.open-deposit {
  padding: 11px 16px;
}

.header-btn {
  display: flex;
  align-items: center;
}

.reg-btn {
  position: relative;
  margin-left: 16px;
}

.reg-btn.animation::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d63741;
  border-radius: 8px;
  z-index: -1;
  animation-name: btn-animation;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes btn-animation {
  from {
    /* width: calc(100%);
        height: calc(100%);
        border-radius: 8px;
        opacity: 1; */

    transform: scale(1);
    border-radius: 8px;
    opacity: 1;
  }

  to {
    /* width: calc(100% + 33px);
        height: calc(100% + 40px);
        border-radius: 25px;
        opacity: 0; */

    transform: scale(1.53);
    border-radius: 25px;
    opacity: 0;
  }
}

a.btn svg {
  fill: #fff;
  width: 17px;
  height: 17px;
  margin: 0px 5px 0 0;
  display: block;
  float: left;
}

.btn {
  color: #1B1414;
  font-weight: 400;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
  border-width: 0;
  cursor: pointer;
  transition: all .3s;
  align-items: center;
  background: rgba(27 20 20 / 0);
  border-color: transparent;
  border-radius: 8px;
  border-style: solid;
  display: flex;
  width: auto;
  font-size: 14px;
  min-height: 30px;
  outline: none;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  font-size: 12px;

}

.btn:hover {
  background: rgba(27 20 20 / .07);
}

.btn.parnter-btn {
  display: block;
  margin: 40px auto 20px;
  max-width: 290px;
  font-size: 14px;
  white-space: normal;
}

a.profile-btn {
  background-color: #202a39;
  padding: 10px 20px 11px;
  margin-right: 0;
  border-radius: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-left: 8px;
}

a.profile-btn svg {
  fill: #fff;
}

.profile-page__points {
  margin-bottom: 8px;
}

.laguage-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.btn-lang {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}

.btn-lang a {
  background-color: #f2f2f2;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 12px;
  color: #858585;
  display: inline-block;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.btn-lang a:hover {
  box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.btn-lang a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
}

.btn-lang a:hover img,
.btn-lang.active a img {
  box-shadow: 0 0 0 4px #2f2fde;
}

.btn-lang a svg {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.btn-lang.active a svg {
  transform: scale(1, -1);
}

.btn-filled {
  background: #ffc400;
  color: #000;
  padding: 8px 16px;
}

.btn-filled:hover {
  background: #ffa300;
  border-color: #ffa300;
}

.btn-filled.red {
  background-color: #d63741;
  color: #fff;
}

.btn-filled.red:hover {
  background: #C9343D;
}

.btn-bordered {
  color: #1b1414;
  border: 1px solid #858585;
}

.btn-bordered:hover {
  color: #1b1414;
  background-color: rgba(27 20 20 / .07);
}

.open-lang {
  background-color: #f2f2f2;
  border-radius: 12px;
  display: none;
  overflow: hidden;
  font-size: 14px;
  width: 294px;
  margin: 0 auto;
  padding: 4px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.open-lang.active {
  display: block;
}

.open-lang a {
  font-size: 14px;
  padding: 8px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  color: #1b1414;
}

.open-lang a:hover {
  background-color: rgb(27 20 20/.04);
}

.open-lang a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
}

.reg-btn-topmenu {
  width: 100%;
  margin: 0 0 30px;
}

.h-header-balance {
  margin-right: 10px;
}

.h-header-balance {
  width: auto;
  font-size: 12px;
  line-height: 1.2;
}

.text-header-balance {
  font-weight: 500;
  cursor: pointer;
}

.text-header-balance span {
  color: #858585;
  font-weight: 300;
}

.yes-login-header-btn .btn {
  margin-right: 12px;
}

.header-vip {
  background: #5c33cf;
  width: 40px;
  height: 40px;
  outline: 1px solid #fff;
  border: 3px solid #D8D8D8;
  border-radius: 50%;
  cursor: pointer;
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}

.yes-login-header-btn a.btn svg {
  margin: 0;
}



.block-content {
  min-height: calc(100vh - 240px);
  display: flex;
}

.block-content.menu-open,
.footer.menu-open {
  /* padding-left: 232px; */
}



































.index-top {
  display: flex;
  justify-content: space-between;
  max-width: 1584px;
  margin: 0 auto 32px;
  padding: 0 32px;
  overflow: hidden;
}

.logged-out-banner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.logged-out-banner__text-block {
  width: calc(50% - 8px);
  max-width: 576px;
  padding-right: 56px;
}

.logged-out-banner__title {
  font-size: 48px;
  line-height: 56px;
  font-family: 'Lora', sans-serif;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.logged-out-banner__text {
  font-size: 20px;
  margin-bottom: 16px;
}

.logged-out-banner__sub {
  font-size: 14px;
  color: #858585;
  font-weight: 300;
}

.logged-out-banner img {
  width: calc(50% - 8px);
}

.logged-out-banner .btn {
  font-size: 16px;
  max-width: 185px;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  margin-left: 0;
}

.slides-btns {
  max-width: 256px;
  background-color: #f2f2f2;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
}

.slides-btns .item {
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 102px;
  border-bottom: 2px solid #e0e0e0;
  position: relative;
  cursor: pointer;
  font-family: 'Lora', sans-serif;
}

.slides-btns .item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: #d63741;
}

.slides-btns .item.active::after {
  animation: progress-animation infinite 8.2s linear;
}

@keyframes progress-animation {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.slides-btns .item img {
  width: 64px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 16px;
  background-color: rgb(233 215 211);
}


.index-slider {
  width: calc(100% - 256px);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
}

.index-slider .swiper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow: hidden;
  position: relative;
}

.index-slider .swiper-wrapper {
  height: 100% !important;
}

.index-slider .swiper-slide {
  background-color: rgb(233 215 211);
  background-size: auto 110%;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  transition: background-size .6s !important;
  overflow: hidden;
}

.index-slider .swiper-slide .img-wrap {
  align-self: flex-end;
}

.parent-swiper-pagination {
  position: absolute;
  width: 200px;
  top: 355px;
  right: auto;
  bottom: 0;
  left: calc(50% - 100px);
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  margin: 0 2px;
  border: 1px solid #b3b4b8;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #b3b4b8;
}

.bg-swiper-slide {
  max-width: 440px;
  width: 100%;
  margin-right: 16px;
  padding-left: 40px;
}

span.title-slide {
  font-size: 32px;
  font-weight: 400;
  z-index: 10;
  line-height: 1.12;
  width: 100%;
  display: block;
  font-family: 'Lora', sans-serif;
}

span.number-slide {
  font-size: 20px;
  margin-top: 32px;
  display: block;
}

.btn-slider {
  margin-top: 24px;
}

.btn-slider a,
.btn-slider small {
  max-width: 100%;
  padding: 8px 15px;
  background: #d63741;
  display: inline-block;
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
  cursor: pointer;
  border: none;
  outline: none;
  font: inherit;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 6px;
  transition: .25s ease-in-out;
}

.parent-swiper-navination {
  position: absolute;
  width: 90px;
  bottom: 20px;
  right: calc((100vw - 1560px) / 2);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.parent-swiper-navination .swiper-button-next,
.parent-swiper-navination .swiper-button-prev {
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-size: 12px 44px;
  position: static;
  background-image: none;
  margin-top: 0;
}

.parent-swiper-navination .swiper-button-next svg {
  transform: rotate(-90deg);
}

.parent-swiper-navination .swiper-button-prev svg {
  transform: rotate(90deg);
}

.parent-swiper-navination .swiper-button-next:hover,
.parent-swiper-navination .swiper-button-prev:hover {
  background-color: #000;
}

.parent-swiper-navination .swiper-button-next:hover svg,
.parent-swiper-navination .swiper-button-prev:hover svg {
  fill: #fff;
}

.parent-swiper-navination svg {
  fill: #2f2fde;
}













.list-anim-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 14px 0 14px;
  width: 100%;
}

.list-anim-btn .anim-btn {
  width: calc(25% - 9px);
  border-radius: inherit;
  background-color: rgba(20, 27, 46, .6);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 90px;
  position: relative;
  overflow: hidden;
}

.list-anim-btn .anim-btn:hover {
  background-color: rgba(20, 27, 46, 1);
}

.list-anim-btn .anim-btn div {
  padding: 20px;
  background-size: 64px 60px;
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}

.list-anim-btn .anim-btn:hover>div {
  transform: scale(1.03);
}

.list-anim-btn .anim-btn div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.list-anim-btn .anim-btn span {
  width: 100%;
  font-size: 24px;
  letter-spacing: .34px;
  font-weight: 600;
  line-height: 1;
}

.list-anim-btn .anim-btn small {
  width: 100%;
  font-size: 13px;
  letter-spacing: -.21px;
  margin-top: 3px;
}




.line-one-index-category {
  margin-top: -19px;
  margin-bottom: 15px;
  width: 100%;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background-image: linear-gradient(90deg, rgb(0, 183, 255) 0%, rgb(199, 0, 255) 50%, rgb(255, 187, 0) 100%);
}

.parent-banner-ihb {
  background-color: #1e283f;
  background-image: url(../img/betnew/home-banner.png);
  background-position: 100% 100%;
  background-size: 400px 100%;
  background-repeat: no-repeat;
  min-height: 202px;
}

.banner-ihb {
  margin-top: 28px;
}

.banner-ihb span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.banner-ihb a {
  height: 45px;
  border-radius: 8px;
  background-image: -webkit-linear-gradient(195deg, #00b7ff, #8d53e9);
  background-image: linear-gradient(255deg, #00b7ff, #8d53e9);
  padding: 0 15px;
  cursor: pointer;
  font-weight: 700;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-top: 25px;
  max-width: 200px;
}



.head-subcat {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}

.head-subcat-routers {
  width: calc(100% - 250px);
  margin-right: 30px;
  display: block;
  flex: 1 1 auto;
  overflow: hidden;
  border-radius: 6px;
  height: 32px;
}

.one-subcat-router {
  margin-right: 12px;
  display: block;
  float: left;
}

.head-subcat-routers a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  background: rgba(148, 166, 205, .15);
  padding: 0 11px;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  /* border: 1px solid rgba(0,0,0,0); */
  transition: .6s all ease;
}

.head-subcat-routers a div {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.head-subcat-routers a img {
  width: auto;
  height: 20px;
}

.head-subcat-routers a span {
  display: block;
  color: #7a7b91;
  color: #fff;
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  transition: .4s all ease;
}

.head-subcat-routers a:hover {
  background: rgba(148, 166, 205, .3);
}


.head-subcat-select {
  width: 170px;
  display: block;
  margin-left: 20px;
  position: relative;
}

.subcat-select {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 0 15px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.subcat-select:hover {
  background: #bfc8dc;
}

.head-subcat-select svg {
  fill: #2f2fde;
  width: 19px;
}

.subcat-select-img {
  display: flex;
}

.head-subcat-select.active .subcat-select svg.icon-arrow {
  transform: scale(1, -1);
}

.subcat-select-drop {
  background: #f3f5fc;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  margin-top: 10px;
  z-index: 4;
  max-height: 285px;
  overflow-y: scroll;
  display: none;
}

.head-subcat-select.active .subcat-select-drop {
  display: block;
}

.subcat-select-drop a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 10px;
  color: #000;
  font-size: 12px;
}

.subcat-select-drop a:hover {
  background-color: #bfc8dc;
}

.subcat-select-drop .img-select-drop {
  width: 50px;
  margin-right: 9px;
}

.subcat-select-drop .title-select-drop {
  width: calc(100% - 94px);
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}

.subcat-select-drop .col-select-drop {
  width: 35px;
  text-align: right;
}



.head-tabs {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 30px;
}

.jackpot-tabs {
  width: 500px;
  border: 2px solid #c5991e;
  border-radius: 14px;
  padding: 15px;
  min-height: 250px;
}

.h-jackpot-tabs {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.jackpot-tabs span {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.96px;
  text-shadow: 0 2px 87px #0c1820;
}

.h-jackpot-tabs svg {
  width: 15px;
  height: 15px;
  fill: #c5991e;
  margin: -2px 15px 0;
}

.summ-jackpot-tabs {
  background: radial-gradient(circle at -65% 157%, #c5991e, #b68100 7%, #fff29d 66%, #b57f00 113%, #c7940f 138%);
  font-size: 40px;
  font-weight: 900;
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 5px;
  margin-bottom: 15px;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jackpot-tabs .data-game-slide {
  display: none;
}

.head-tabs .index-slider {
  width: calc(100% - 515px);
}

.head-tabs .index-slider .swiper-slide {
  min-height: 250px;
}







.list-tabs-wrapper {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 0 15px;
  background-color: #f3f5fc;
  border-radius: 10px;
  margin-bottom: 30px;
}

.list-tabs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.list-tabs a.router-link {
  color: #000;
  padding: 5px;
  font-weight: 600;
  position: relative;
}

.list-tabs a.router-link+a.router-link {
  margin-left: 30px;
}

.list-tabs a.router-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  transform: scaleX(0.5);
  opacity: 0;
  height: 3px;
  border-radius: 4px;
  pointer-events: none;
  background-color: #2f2fde;
  transition: all 0.5s cubic-bezier(0.6, 0.1, 0.05, 1.5);
}

.list-tabs a.router-link:hover span,
.list-tabs a.router-link.active span {
  color: #2f2fde;
  transition: .3s !important;
}

.list-tabs a.router-link:hover::after,
.list-tabs a.router-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.list-tabs-wrapper .header-search {
  margin-left: auto;
}

.list-tabs-wrapper .header-search input[type="search"] {
  background-image: url(../img/betnew/search-blue.svg);
  max-width: 150px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 0 15px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: auto;
  background-position: right 15px center;
  opacity: 1;
  transition: 0s;
}

.list-tabs-wrapper .header-search:hover input[type="search"] {
  background-color: #bfc8dc;
  transform: none;
}






.head-one-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.head-one-category.filters {
  align-items: flex-end;
}

.h-one-category {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  font-family: 'Lora', sans-serif;
  color: #1b1414;
  user-select: none;
}

.head-one-category .view-all {
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  color: #1b1414;
  user-select: none;
}

.head-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.slide-head-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 34px;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}

.head-btn-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 28px;
  background-color: #353f59;
  color: #c6c6c6;
  border-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 12px;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  outline: none;
  display: inline-block;
  transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
  border-radius: 6px;
  padding-top: 0;
}

.head-btn-slide.left-slide {
  margin-left: 15px;
}

.head-btn-slide.right-slide {
  margin-left: 5px;
}

.head-btn-slide svg {
  fill: #fff;
  width: 21px;
  height: 28px;
}

.head-btn-slide:hover {
  /* background-color: #3e3ef4; */
}

.head-btn-slide:hover svg {
  fill: #fff;
}

.swiper.game-swiper {
  /* width: calc(100% - 29px); */
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  height: auto;
}

.game-swiper-wrapper.providers {
  max-width: 1520px;
  margin: 0 auto 20px;
}

.game-swiper-wrapper.providers .swiper-slide {
  padding: 0 15px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  background-color: #f2f2f2;
  border-radius: 8px;
}

.game-swiper-wrapper.providers img {
  max-width: 130px;
  max-height: 40px;
  opacity: .4;
}

.game-swiper-wrapper.providers a:hover img {
  opacity: 1;
}

.game-swiper-wrapper.providers img {
  max-width: 130px;
  max-height: 40px;
  opacity: .4;
}

.game-swiper-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.parent-game-swiper {
  display: flex;
  position: relative;
  margin-top: 15px;
}

.game-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(13% + 6px);
}

.game-swiper.dup3 .swiper-slide {
  width: 11%;
}

.game-swiper .swiper-button-next,
.game-swiper .swiper-button-prev {
  opacity: 0;
}

.game-swiper-wrapper .swiper-button-next svg,
.game-swiper-wrapper .swiper-button-prev svg {
  width: 10px;
  height: 10px;
}

.game-swiper-wrapper .swiper-button-next svg path,
.game-swiper-wrapper .swiper-button-prev svg path {
  stroke-width: 4px;
}

.game-swiper-wrapper .swiper-button-next,
.game-swiper-wrapper .swiper-button-prev {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
  border-radius: 50%;
  margin-top: 0;
}

.game-swiper-wrapper .swiper-button-next.hide-btn,
.game-swiper-wrapper .swiper-button-prev.hide-btn {
  display: none;
}

.game-swiper-wrapper .swiper-button-next {
  right: -13px;
  top: 63px;
}

.game-swiper-wrapper .swiper-button-prev {
  left: -13px;
  top: 63px;
}

.game-swiper-wrapper.providers .swiper-button-next {
  top: calc(50% - 13px);
}

.game-swiper-wrapper.providers .swiper-button-prev {
  top: calc(50% - 13px);
}

.game-swiper-wrapper .swiper-button-next:after,
.game-swiper-wrapper .swiper-rtl .swiper-button-prev:after,
.game-swiper-wrapper .swiper-button-prev:after,
.game-swiper-wrapper .swiper-rtl .swiper-button-next:after {
  content: none;
}

.themes-slides.game-swiper .swiper-slide {
  padding: 4px;
  padding-left: 22px;
  border-radius: 12px;
  min-height: 294px;
  min-width: 465px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.themes-slides .swiper-slide:nth-child(1) {
  background-color: rgba(255, 196, 0, 0.08);
}

.themes-slides .swiper-slide:nth-child(1):hover {
  background-color: rgba(255, 196, 0, 0.16);
}

.themes-slides .swiper-slide:nth-child(1)>.title {
  color: #ffc400;
}

.themes-slides .swiper-slide:nth-child(2) {
  background-color: rgba(244, 136, 149, 0.08);
}

.themes-slides .swiper-slide:nth-child(2):hover {
  background-color: rgba(244, 136, 149, 0.16);
}

.themes-slides .swiper-slide:nth-child(2)>.title {
  color: #f48895;
}

.themes-slides .swiper-slide:nth-child(3) {
  background-color: rgba(126, 126, 242, 0.08);
}

.themes-slides .swiper-slide:nth-child(3):hover {
  background-color: rgba(126, 126, 242, 0.16);
}

.themes-slides .swiper-slide:nth-child(3)>.title {
  color: #7e7ef2;
}

.themes-slides .swiper-slide:nth-child(4) {
  background-color: rgba(6, 65, 121, 0.08);
}

.themes-slides .swiper-slide:nth-child(4):hover {
  background-color: rgba(6, 65, 121, 0.16);
}

.themes-slides .swiper-slide:nth-child(4)>.title {
  color: #064179;
}

.themes-slides .swiper-slide:nth-child(5) {
  background-color: rgba(17, 139, 255, 0.08);
}

.themes-slides .swiper-slide:nth-child(5):hover {
  background-color: rgba(17, 139, 255, 0.16);
}

.themes-slides .swiper-slide:nth-child(5)>.title {
  color: #118bff;
}

.themes-slides .swiper-slide:nth-child(6) {
  background-color: rgba(235, 184, 56, 0.08);
}

.themes-slides .swiper-slide:nth-child(6):hover {
  background-color: rgba(235, 184, 56, 0.16);
}

.themes-slides .swiper-slide:nth-child(6)>.title {
  color: #ebb838;
}

.themes-slides .swiper-slide:nth-child(7) {
  background-color: rgba(124, 208, 148, 0.08);
}

.themes-slides .swiper-slide:nth-child(7):hover {
  background-color: rgba(124, 208, 148, 0.16);
}

.themes-slides .swiper-slide:nth-child(7)>.title {
  color: #7cd094;
}

.themes-slides .swiper-slide:nth-child(8) {
  background-color: rgba(159, 1, 2, 0.08);
}

.themes-slides .swiper-slide:nth-child(8):hover {
  background-color: rgba(159, 1, 2, 0.16);
}

.themes-slides .swiper-slide:nth-child(8)>.title {
  color: #9f0102;
}

.themes-slides .swiper-slide:nth-child(9) {
  background-color: rgba(255, 112, 0, 0.08);
}

.themes-slides .swiper-slide:nth-child(9):hover {
  background-color: rgba(255, 112, 0, 0.16);
}

.themes-slides .swiper-slide:nth-child(9)>.title {
  color: #ff7000;
}

.themes-slides .swiper-slide>.title {
  font-size: 25px;
  font-family: 'Lora', sans-serif;
  padding-top: 20px;
}

.themes-slides .parent-game-slide {
  width: 100%;
  position: absolute;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.themes-slides .data-game-slide {
    display: none;
}

.themes-slides .parent-game-slide a {
  width: 100%;
}

.themes-slides .parent-game-slide:nth-child(2),
.themes-slides .parent-game-slide:nth-child(3),
.themes-slides .parent-game-slide:nth-child(4) {
  max-width: 120px;
  right: 4px;
}

.themes-slides .parent-game-slide:nth-child(2) {
  top: 4px;
}

.themes-slides .parent-game-slide:nth-child(3) {
  top: 102px;
}

.themes-slides .parent-game-slide:nth-child(4) {
  bottom: 4px;
}

.themes-slides .parent-game-slide:nth-child(8),
.themes-slides .parent-game-slide:nth-child(7) {
  max-width: 152px;
  width: 33.9%;
}

.themes-slides .parent-game-slide:nth-child(8) {
  bottom: 4px;
  right: 292px;
}

.themes-slides .parent-game-slide:nth-child(7) {
  bottom: 66px;
  right: 132px;
}

.themes-slides .parent-game-slide:nth-child(5),
.themes-slides .parent-game-slide:nth-child(6) {
  max-width: 72px;
}

.themes-slides .parent-game-slide:nth-child(5) {
  bottom: 4px;
  right: 132px;
}

.themes-slides .parent-game-slide:nth-child(6) {
  bottom: 4px;
  right: 212px;
}

.game-slide {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
}

.game-slide a.open-reg {
  margin: 0 auto;
}

.provider-game-slide-img {
  position: absolute;
  z-index: 3;
  top: 5px;
  right: 5px;
  max-width: 75px;
  width: 60%;
}

.game-preview__btn-star {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  border: none;
  z-index: 2;
}

.game-preview__btn-star svg {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.game-preview__btn-star.star.favorite.in_favorites svg {
  fill: #ffb319;
}

.meta-game-slide {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
  width: 36px;
}

.meta-game-slide span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.meta-game-slide .new {
  background: #3e3ef4;
}

.meta-game-slide .top {
  background: #ffbb39;
  color: #131521;
}

.meta-game-slide .hot {
  background: #fd2d5e;
}

.hover-game-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: -2;
  opacity: 0;
  padding: 10px 15px;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.locked-game-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    text-align: center;
    font-size: 16px;
    padding: 20px 10px 10px;
    z-index: 9;
    color: #fff;
}

.locked-game-slide svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.hover-game-slide>* {
  z-index: 2;
}

.hover-game-slide .btn {
  font-size: 12px;
  padding: 3px 8px;
  margin: 5px;
  min-height: inherit;
}

.hover-game-slide a:not(.btn) {
  font-size: 12px;
  padding: 5px 20px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.hover-game-slide .h-game-btns .btn-play-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .4);
  border-radius: 50%;
  padding: 0;
  backdrop-filter: blur(4px);
}

.h-game-btns .btn-play-icon svg {
  width: 19px;
  height: 19px;
}

.hover-game-slide .btn-bordered {
  background-color: rgba(255, 196, 0, .0);
}

.hover-game-slide .btn-bordered:hover {
  background-color: rgba(255, 196, 0, .1);
}

.game-slide:hover .h-game-btns {
  opacity: 1;
}

.game-slide:hover .img-game-slide {
  transform: scale(1.2);
}

.game-slide:hover .hover-game-slide {
  background-color: rgba(0, 0, 0, .6);
  z-index: 4;
  opacity: 1;
}

.img-game-slide {
  position: relative;
  overflow: hidden;
  height: auto;
  padding-top: 75%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: .3s;
}

.img-game-slide.hide-img {
  background-image: none !important;
}

.parent-game-swiper .game-slide {
  border-radius: 16px 16px 0 0;
}

.parent-game-swiper .img-game-slide {
  padding-top: 135%;
}

.game-slide.slide-view-all:hover>.img-game-slide {
  filter: blur(0px);
}

.game-slide.slide-view-all:hover>.hover-game-slide {
  opacity: 0;
  z-index: -1;
}

.data-game-slide {
  background: none;
  border-radius: 0 0 10px 10px;
  padding: 8px 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: auto;
  position: relative;
  z-index: 17;
}

.provider-game-slide {
  color: #858585;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
}

.h-game-slide {
  font-size: 18px;
  width: 100%;
  font-family: 'Lora', sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}

.h-game-slide span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 32px)
}

.h-game-slide svg {
  width: 24px;
  height: 24px;
}

.h-game-slide .game-info-desc {
  margin-left: auto;
  cursor: pointer;
  display: flex;
}

.game-stat-dropdown__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  padding: 16px;
  z-index: 20;
  border-radius: 6px;
  width: 370px;
  box-shadow: 0 0 2px #0006;
  opacity: 0;
  pointer-events: none;
}

.game-stat-dropdown__wrapper.static {
  position: static;
  box-shadow: none;
  opacity: 1;
  pointer-events: all;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 32px;
}

.game-stat-dropdown__wrapper.static>div {
  background-color: #f2f2f2;
}

.game-stat-dropdown__wrapper.static::after,
.game-stat-dropdown__wrapper.static::before {
  content: none;
}

.game-stat-dropdown__wrapper.active {
  opacity: 1;
  pointer-events: all;
}

.game-stat-dropdown__wrapper::before {
  content: '';
  position: absolute;
  top: 100%;
  height: 16px;
  width: 100%;
  left: 0;
}

.game-stat-dropdown__wrapper.bottom::before {
  top: -20px;
}

.game-stat-dropdown__wrapper::after {
  content: '';
  position: absolute;
  left: calc(50% - 10px);
  bottom: -6px;
  width: 12px;
  height: 12px;
  background-color: #f2f2f2;
  transform: rotate(45deg);
}

.game-stat-dropdown__wrapper.left::after {
  left: calc(50% + 90px);
}

.game-stat-dropdown__wrapper.bottom::after {
  bottom: calc(100% - 6px);
  left: calc(50% - 5px);
}

.game-stat-dropdown__wrapper.bottom.left::after {
  left: calc(50% + 95px);
}

.game-stat-dropdown__wrapper .game-stat-dropdown {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-stat-dropdown__wrapper .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.game-stat-dropdown__wrapper .item:first-child {
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}

.game-stat-dropdown__wrapper .item span {
  margin-right: 4px;
  color: #858585;
}

.game-stat-dropdown__wrapper .item svg {
  margin-left: 4px;
  width: 16px;
  height: 16px;
}

.game-stat-dropdown__wrapper .item+.item {
  margin-left: 8px;
}

.game-stat-dropdown__wrapper .row {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.game-stat-dropdown__wrapper .row .title {
  color: #858585;
}

.h-game-btns {
  opacity: 0;
}

.parent-game-slide {
  width: 100%;
}

.mini-slider-win {
  width: calc(33.33% - 14px);
  max-height: 410px;
  padding: 85px 35px 40px;
  border-radius: 20px;
  position: relative;
  background-color: #f2f2f2;
}

.max-height {
  overflow: hidden;
  max-height: 280px !important;
}

.jack-ranks {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 50px;
}

.jack-rank {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: calc((100% - 450px) / 6);
  max-width: 258px;
  overflow: hidden;
  max-height: 450px;
  border-radius: 10px;
  box-shadow:
    0 5px 15px rgba(100, 100, 100, 0.8),
    /* Основная тень */
    0 -5px 15px rgba(100, 100, 100, 0.8),
    /* Верхняя тень */
    -5px 0 15px rgba(100, 100, 100, 0.8),
    /* Левая тень */
    5px 0 15px rgba(100, 100, 100, 0.8);
  /* Правая тень */
}

.jack-rank img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jack-rank__summ,
.jack-rank__title,
.jack-rank__bottom {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
  color: #1b1414;
  padding: 5px 10px;
  background-color: #d8e1e9;
  display: inline-block;
}

.jack-rank__summ {
  font-size: 18px;
  font-weight: 600;
}

.jack-rank__title {
  font-size: 16px;
  font-weight: 400;
}

.jack-rank__bottom {
  font-size: 16px;
  font-weight: 400;

}

.sides-blocks {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 150px;
  max-width: 99%;
}

.sides-blocks {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 150px;
  max-width: 99%;
}

.swiper-wins {
  overflow: hidden;
}

.swiper-wins .swiper-slide {
  height: 70px !important;
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.swiper-wins .mini-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}

.swiper-wins .mini-img img {
  object-fit: cover;
  height: 100%;
}

.swiper-wins .mini-desc {
  width: calc(100% - 70px);
}

.swiper-wins .mini-desc .name {
  max-width: 82px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.swiper-wins .mini-desc .summ {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  margin-left: auto;
}

.swiper-wins .mini-desc a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-wins .mini-desc a .text {
  max-width: 167px;
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.swiper-wins .mini-desc a:hover .text {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.jackpot-right-text {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-left: 30px;
  text-align: left;
  max-height: 410px;
}


.swiper-tournament-slider {
  overflow: hidden;
  position: relative;
  margin: 10px 0;
}

.swiper-tournament-slider .swiper-slide {
  min-height: 380px;
}

.swiper-tournament-slider .swiper-slide .main__item {
  margin: 0;
}

.swiper-tournament-slider .parent-swiper-navination {
  right: 40px;
  bottom: 40px;
}





.index-banner {
  margin: 10px 0;
  background-image: url(../img/betnew/banner1.jpg);
  min-height: 400px;
  padding: 20px 20px 20px 40%;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.index-banner .title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.jp-summ {
  font-size: 120px;
  font-weight: 700;
  position: relative;
  min-height: 180px;
  width: 640px;
}

.jp-summ .curr {
  font-size: 40px;
  text-transform: uppercase;
}

.jp-summ .main {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(90deg, rgba(246, 209, 64, 1) 30%, rgb(255 250 223) 44%, rgba(246, 209, 64, 1) 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jp-summ .shadow {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  text-shadow: 3px -3px #683c14, -3px -3px #683c14, -3px 3px #683c14, -3px -3px #683c14, 3px -2px #683c14, -3px -2px #683c14, -2px 3px #683c14, -2px -3px #683c14, 3px -1px #683c14, -3px -1px #683c14, -1px 3px #683c14, -1px -3px #683c14, 3px 0px #683c14, -3px 0px #683c14, 0px 3px #683c14, 0px -3px #683c14, 3px 1px #683c14, -3px 1px #683c14, 1px 3px #683c14, 1px -3px #683c14, 3px 2px #683c14, -3px 2px #683c14, 2px 3px #683c14, 2px -3px #683c14, 3px 3px #683c14, -3px 3px #683c14, 3px 3px #683c14, 3px -3px #683c14;
}


.list-game {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}

.list-game .parent-game-slide {
  width: calc(16.66% - 20px);
  margin: 10px;
  border-radius: 16px;
}

.parent-list-game .view-all {
  margin: 0;
}

.list-game.grid {
  display: grid;
  flex-grow: 1;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 16px;
  margin-left: 0;
  width: 100%;
}

.list-game.grid.other+.hidden-list {
  display: none;
}

.list-game.grid.other.hidden {
  display: none;
}

.list-game.grid.other.hidden+.hidden-list {
  display: block;
}

.list-game.grid.other.hidden+.hidden-list+.load-more-category {
  display: none;
}

.list-game.grid .parent-game-slide {
  width: 100%;
  margin: 0;
}

.list-game.active-filter .parent-game-slide {
  display: none;
}

.list-game.active-filter .parent-game-slide.checked {
  display: block;
}

.one-category.slider-one-cat {
  background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46, .6) 100%);
  padding: 15px;
  border-radius: 4px;
}



a.all-games {
  min-width: 120px;
  max-width: 120px;
  display: block;
  margin: 25px auto 0;
  text-align: center;
  color: rgb(198, 198, 198);
  background: rgb(31, 32, 43);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(36, 38, 49);
  border-image: initial;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

a.all-games:hover {
  color: #c6c6c6;
  background: #242631;
}



.the-content {
  margin: 32px 0 32px;
  font-size: 14px;
  background: #f2f2f2;
  border-radius: 8px;
  font-size: 13px;
  padding: 32px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-content:empty {
  margin: 0;
  padding: 0;
}

.the-content p {
  margin: 12px 0 8px;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
  margin: 12px 0 8px;
}

.the-content h1 {
  font-family: 'Lora', sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.the-content h2 {
  font-family: 'Lora', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.the-content h3 {
  font-size: 17px;
}

.the-content a {
  color: #1b1414;
  text-decoration: underline;
}

.the-content img {
  display: none;
}

.the-content ul,
.the-content ol {
  padding: 10px 10px 10px 40px;
}

.the-content .text {
  max-height: 192px;
  overflow: hidden;
}

.the-content .text.active {
  max-height: inherit;
}

.the-content .btn {
  color: #1b1414;
  font-size: 14px;
  background-color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  display: none;
  margin-top: 8px;
}

.the-content .btn:hover {
  background-color: #EFEEEE;
}

.the-content .btn.active {
  display: block;
}

iframe.index-iframe {
  margin-bottom: 0;
}

.tvbet_info {
  margin-top: 30px;
}

.full-width-page {
  width: 100%;
  padding-top: 88px;
  position: relative;
}

.game-page__wrapper {
  padding: 0 16px;
  border-radius: 8px;
}

.game-page__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.game-page__title>span {
  padding: 6px 12px;
  border-radius: 20px;
  background: #fff;
}

.game-page__title.hide-title span {
  display: none;
}

.game-page__title .level-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 12px;
  border-radius: 20px;
}

.game-page__title .level-block__title {
  display: flex;
  align-items: center;
}

.game-page__title .level-block__title svg {
  margin-right: 8px;
}

.game-page__title .level-block__wrapper {
  width: 160px;
  margin: 0px 8px;
  position: relative;
  height: 8px;
}

.game-page__title .level-block__wrapper:hover .progress-summ {
  display: block;
}

.game-page__title .level-block__wrapper .progress-summ {
  display: none;
  position: absolute;
  width: 68px;
  bottom: calc(100% + 8px);
  right: -34px;
  text-align: center;
  background-color: #ffb319;
  color: #fff;
  border-radius: 20px;
}

.game-page__title .level-block__wrapper .progress-summ::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ffb319;
  transform: rotate(45deg)
}

.game-page__title .level-block__wrapper .progress-summ::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: calc(100% + 8px);
  width: 100%;
}

.game-page__footer {
  display: flex;
  align-items: center;
}

.game-page__footer .btn:not(.red)  {
  background-color: #f2f2f2;
}

.game-page__footer .btn + .btn {
  margin-left: 15px;
}

.game-page__text-title {
  margin: 32px 0 16px;
  font-size: 20px;
  font-weight: 500;
}

.quick-deposit {
  position: relative;
}

.quick-deposit__dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  width: 364px;
  padding: 24px;
  background-color: #f2f2f2;
  border-radius: 12px;
  z-index: 9;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  display: none;
}

.quick-deposit__dropdown.active {
  display: flex;
}

.qr-field {
  max-width: 156px;
  margin: 0 auto 16px;
}

.quick-deposit__dropdown .title {
  font-size: 16px;
  color: #858585;
  margin-bottom: 8px;
}

.quick-deposit__dropdown input {
  background-color: #fff;
}

.quick-deposit__dropdown .btn {
  margin: 0 auto;
  display: inline-block;
  transition: .3s;
  font-size: 14px;
}

.quick-deposit__dropdown .btn:active {
  transform: scale(.85)
}

.quick-deposit__btn {
  padding: 11px 16px;
  font-size: 14px;
}

.left-aside {
  width: 270px;
  background-color: #141b2f;
  border-radius: 12px;
  display: none;
  pointer-events: none;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.wrapper-left-aside {
  position: fixed;
  width: 270px;
  height: calc(100vh - 94px);
  top: 79px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0;
  background-color: #141b2f;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 10;
}

.main-aside {
  min-height: calc(100vh - 190px);
}

#home .left-aside {
  display: none;
}

#home .main-aside {
  width: 100%;
}

.search-aside {
  width: 100%;
  margin: 0 0 25px;
  padding: 15px 15px 0 15px;
}

input[type="search"] {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACuUlEQVRIie2WTU8TQRjHf7MsJaSkNzkoMUY5mBQu6GW3SQMierR44APIgWiMNSZEP4ERiOFskC+wCfJyIiEYJXR3NfWiNPGiRiNi6q0XstLu46HTBBTaLQFP/E87b89vZp7Z/wyc6D9JNepQKBRipVIpIyIZoA/o0k3fgXdKqcVEIrGQTCZ/HxnY87ybIjIFnG8Q5xMwbtv2fFSwsV+liBiu606KyJyGvheRrGEYyXg83hGPxzvCMOwB7gMfgAvAC8/znojIvjH/1r4rdl13EhgHAiBrWdaMUio8aJK+74+JyDTQppSasCzrUdNgvb1zGnrdtu3XUVbgeV6/iCwDbcCwbdsL9frv2ZZCoRDTOQXIRoUCWJb1SkQe6OJUPp9vjQwulUoZdE4ty5qJCq1pc3PzGbABdAdBcCMyGBgGUEo9Pyin9TQyMlIBZnUxExkchmGfBq82C90VY0XHuBwZrJQ6DbC9vf3tsGCgNvZMZPBRyDTNhm74D1hEfgC0t7efPSy4UqnUxv6MDFZK5QHCMBw6LNgwjGs6lt8MeFF/jka1vt1yHKdFRG4BiMhSZHAikVigavi9vu+PNQvu6uq6DSSBz0EQ1L0w9oD11TauZzzteV5/VOj6+voA8FQXswMDA+XIYADbtueVUhNAm4gs53K5O47jtBwUwHGcFtd17xqGsQzEgKKIvG000X2Pvr5xHovIQ121AcyGYbiys7PzFSAWi50zDGNIREapbi9AEegENkRkMJVKFZsC1+S6bgaYArobLOALcK9cLr8xTfMl0NMI3vBnz+fzrdrwM0qpS1SfPgrYUkr5IrIUBMF8Lae5XK5TW25deCSXaVZra2unTNNcBXqBj+Vy+Uo6nd46dnAU+JF7dU3pdPqXiFylejAvmqa5uLv92MAAqVSqKCKDVJ/BleNknehA/QF7cy2MjI/mRAAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: 10px 50%;
  background-color: #1f2941;
  border: none;
  margin: 0;
  width: 100%;
  border-radius: 12px;
}

.header-search {
  max-width: 550px;
  width: 50%;
}

.header-search .search-fiealdwrap {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  position: relative;
}

.header-search .search-fiealdwrap svg {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.header-search .search-fiealdwrap input {
  margin-bottom: 0;
  border: none;
  width: calc(100% - 40px);
  margin-left: 6px;
  font-size: 16px;
  padding: 10px 0;
  background: none;
  outline: inherit;
  border: none;
}

.header-search .search-fiealdwrap input::placeholder {
  color: #858585;
}

.header-search .search-dropdown.active {
  display: block;
}

.header-search .search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  max-height: calc(100vh - 80px);
  background-color: #f2f2f2;
  padding: 8px;
  overflow: auto;
}

.header-search .search-filters {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d6cbcb #f2f2f2;
}

.header-search .search-filters .close-search {
  margin-left: auto;
  cursor: pointer;
  margin-right: 5px;
}

.header-search .search-filters .item {
  line-height: 24px;
  padding: 8px 16px;
  font-size: 14px;
  position: relative;
  font-weight: 500;
  margin-left: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.header-search .search-filters .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #d63741;
  transition: .3s;
}

.header-search .search-filters .item.active,
.header-search .search-filters .item:hover {
  color: #d63741;
}

.header-search .search-filters .item.active::after,
.header-search .search-filters .item:hover::after {
  width: 100%;
}

.search-dropdown .game-wrapper {
  display: flex;
}

.search-dropdown .game-wrapper+.game-wrapper {
  margin-top: 8px;
}

.search-dropdown .game-wrapper .locked-game-slide {
    position: static;
    flex-direction: row-reverse;
    margin-left: auto;
    background: none;
    padding: 10px;
}

.search-dropdown .game-wrapper .locked-game-slide svg {
    margin-bottom: 0;
    margin-left: 10px;
}

.search-dropdown .game-wrapper .game-name {
  font-weight: 500;
}

.search-dropdown .game-wrapper .game-provider {
  font-size: 10px;
  color: #858585;
  text-transform: uppercase;
}

.search-dropdown .game-wrapper .game-btns {
  margin-left: auto;
}

.search-dropdown .game-wrapper .game-btns .btn+.btn {
  margin-top: 8px;
}

.search-dropdown .game-wrapper .img-game-slide {
  max-width: 88px;
  height: 66px;
  border-radius: 8px;
  margin-right: 16px;
  padding-top: 0;
  width: 100%;
}

.search-dropdown .search-status {
  margin: 16px 0 8px;
}

.search-dropdown .search-status>div {
  display: none;
  text-transform: uppercase;
  color: #d63741;
  font-size: 10px;
  font-weight: 500;
}

.search-dropdown .search-status>div.active {
  display: block;
}

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

.block-topmenu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 240px;
  width: 100%;
  background-color: #f2f2f2;
  z-index: 21;
  padding: 0 20px;
  padding-bottom: 0;
}

.block-topmenu .topmenu-wrap {
  overflow-y: auto;
  padding: 20px 0;
  height: 100%;
}

.block-topmenu .sidebar-menu-btn {
  position: absolute;
  right: -12px;
  top: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.block-topmenu:hover .sidebar-menu-btn {
  opacity: 1;
  pointer-events: all;
}

.block-topmenu.active .sidebar-menu-btn {
  display: none;
}

.block-topmenu .sidebar-menu-btn svg {
  transform: rotate(180deg);
}

.block-topmenu.active {
  left: -240px;
}

.page-content.active {
  width: 100%;
}

.topmenu-wrap::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.topmenu-wrap::-webkit-scrollbar-thumb {
  width: 0px;
  background-color: #2a3546;
  border-radius: 2px;
}

.topmenu-wrap .logout-btn {
  background-color: #fff;
  margin-top: 16px;
  padding: 9.5px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #1b1414;
  width: 100%;
}

.topmenu-wrap .logout-btn:hover {
  background-color: #EFEEEE;
}

.block-topmenu .header-logo {
  margin: 0;
}

.block-topmenu .header-logo a {
  color: #1b1414;
}

.block-topmenu .header-logo img {
  max-width: 104px;
}

.block-topmenu .partner-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0 30px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.block-topmenu .partner-block .top-block {
  background-color: #fff;
  padding-bottom: 16px;
  padding: 8px;
  position: relative;
}

.block-topmenu .partner-block .top-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: calc(100% - 20px);
  margin-left: 8px;
  background-color: #e0e0e0;
}

.block-topmenu .partner-block .top-block a {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: #858585;
}

.block-topmenu .partner-block .top-block a img {
  width: 24px;
  height: 24px;
}

.block-topmenu .partner-block .top-block a .title {
  margin-top: 4px;
  font-size: 13px;
  color: #1B1414;
  font-weight: 600;
}

.block-topmenu .partner-block .top-block a .text {
  margin-left: 16px;
}

.block-topmenu .partner-block .btn-block {
  background-color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  padding-top: 10px;
}

.block-topmenu .partner-block .btn-block a {
  color: #585858;
}

.block-topmenu .header-menu {
  display: flex;
  flex-direction: column;
}

.block-topmenu .header-menu a {
  margin-right: 0;
}

.sidebar-menu-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}

.block-topmenu_head {
  display: none;
}

.block-topmenu_head svg,
.block-topmenu_head img:first-child {
  max-height: 33px;
}

.block-topmenu_head.active {
  display: flex;
  align-items: center;
  position: fixed;
  top: 23px;
  left: 26px;
}

.block-topmenu_head .sidebar-menu-btn {
  position: static;
  margin-left: 8px;
}

.block-topmenu_head .mobile-logo {
  display: none;
}

.one-menu.filled+.one-menu.filled {
  margin-top: 8px;
}

.one-menu a {
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  color: #1b1414;
  padding: 0px;
}

.one-open-menu {
  margin-bottom: 20px;
}

.one-open-menu.active {
  color: #d63741;
}

.one-menu a:hover {
  color: #d63741;
}

.one-menu a:hover img {
  transform: scale(1.1)
}

.one-menu.filled a {
  background-color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}

.one-menu.filled .img-one-menu {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
}

.one-menu.filled a span {
  color: #858585;
  font-weight: 400;
  margin-left: auto;
}

.img-one-menu {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background-color: rgb(27 20 20 / 4%);
  margin-right: 8px;
  border-radius: 50%;
}

.one-menu a img {
  width: 100%;
  transition: .3s;
}

.level-block {
  border-radius: 8px;
  background-color: #fff;
  padding: 8px 8px 16px;
  margin-bottom: 8px;
}

.level-block__title img {
  max-width: 24px;
}

.level-block__wrapper {
  margin: 8px 0;
  background-color: #f2f2f2;
  height: 4px;
  border-radius: 8px;
}

.level-block__inner {
  background-color: #d63741;
  height: 100%;
  border-radius: 8px;
  position: relative;
}

.level-block__progress {
  font-size: 12px;
  font-weight: 400;
}

.level-block__progress span {
  margin: 0 8px;
}

.list-menu-border {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  margin: 15px 0;
}

svg.icon-external {
  margin-left: 3px;
  margin-bottom: 0px;
  fill: #c6c6c6;
}

.one-menu a svg.svg-open {
  transform: rotate(90deg);
  position: absolute;
  right: 20px;
  margin-top: 1px;
}

.h-one-open-menu {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 300;
  margin: 16px 0;
}

.one-menu.open-menu .one-open-menu a {
  font-size: 16px;
  font-weight: 400;
}

.one-menu.open-menu {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.topmenu-line {
  width: 100%;
  background-color: #e0e0e0;
  width: 100%;
  height: 1px;
  margin: 10px auto;
}

.topmenu-else-links a {
  font-size: 12px;
  padding: 0px 8px;
  color: #858585;
  position: relative;
}

.topmenu-else-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  background-color: #858585;
  width: 2px;
  height: 2px;
}

.top-menu-profile-info {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.top-menu-profile-info>span {
  margin-right: 10px;
  background-color: #2f2fde;
  border-radius: 50%;
  width: 25px;
  display: flex;
}

.top-menu-profile-log-out {
  margin-left: auto;
  opacity: .7;
  height: 17px;
}

.top-menu-profile-log-out:hover {
  opacity: 1;
}

.top-menu-profile-log-out svg path {
  fill: #000;
  stroke: #000;
  stroke-width: 0.4;
}

.profile-btn-topmenu {
  margin: 30px 20px 20px;
}

.top-menu-profile-balance {
  margin: 20px 0;
}

.header .header-balance {
  padding: 0;
  margin-right: 12px;
}

.header-balance {
  border-radius: 10px;
  padding: 5px 15px;
  font-size: 12px;
}

.header-balance .login {
  color: #d63741;
  margin-bottom: 4px;
  font-weight: 500;
  cursor: pointer;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-btn-topmenu .btn {
  max-width: 130px;
  margin: 0 auto;
}

.profile-btn-topmenu .btn+.btn {
  margin-top: 10px;
}


.list-routers {
  font-size: 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
  margin-bottom: 15px;
  width: 100%;
}

.list-routers a {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 13px 15px;
  color: #fff;
  font-size: 12px;
  border-top: 1px solid rgba(38, 46, 72, .5);
}

.list-routers a:first-child {
  border-top: none;
}

.list-routers a:hover {
  background: rgba(38, 46, 72, .5);
}

.img-list-routers {
  width: 50px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.img-list-routers img {
  max-height: 20px;
}

.title-list-routers {
  width: calc(100% - 95px);
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
}

.h-aside {
  color: #7388b6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.12px;
  margin: 0 0 3px;
  opacity: .3;
  text-transform: uppercase;
  padding: 0 15px;
}

.list-routers.list-aside-cat .img-list-routers {
  width: 20px;
}

.list-routers.list-aside-cat .title-list-routers {
  width: calc(100% - 65px);
}

.rules.page_content h2 font {
  color: #1b1414;
}


























.modal-overflow {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  opacity: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
}

.modal-overflow.active {
  z-index: 100;
  opacity: 1;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal-container form.active {
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  z-index: 101;
  pointer-events: all;
}

.modal-win {
  display: none;
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-win.active {
  z-index: 102;
  display: block;
}

.close-small {
  width: 38px;
  height: 38px;
  border: none;
  font-weight: 300;
  font-size: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #c6c6c6;
  padding: 0;
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  z-index: 10;
  transition: color .1s ease-in-out;
  cursor: pointer;
}

.close-small svg {
  fill: #1b1414;
}

.parent-modal-win {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  height: 100%;
}

.img-modal-win {
  width: 50%;
  padding: 32px;
  background-color: #1a2131;
  background-image: url(../img/regbanner.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-height: 300px;
  text-align: center;
  display: none;
}

.content-modal-win {
  width: 100%;
  display: flex;
}

.content-modal-win .bottom-modal-text p a {
  color: #d63741;
}

.content-modal-win .text-check a {
  color: #d63741;
}

.content-modal-win .l-side {
  max-width: 380px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
}

.content-modal-win .l-side .modal-logo {
  max-width: 150px;
  display: flex;
  margin-bottom: 48px;
  color: #1b1414;
}

.content-modal-win .l-side .socials>div {
  display: flex;
}

.content-modal-win .or-block {
  text-transform: uppercase;
  color: #858585;
  font-size: 10px;
  display: flex;
  align-items: center;
  margin-top: 24px;
  white-space: nowrap;
}

.content-modal-win .or-block::before,
.content-modal-win .or-block::after {
  content: '';
  height: 1px;
  width: 100%;
  background-color: #e0e0e0;
}

.content-modal-win .or-block::before {
  margin-right: 8px;
}

.content-modal-win .or-block::after {
  margin-left: 8px;
}

.content-modal-win .r-side {
  background-image: url(../img/betnew/auth-background.svg);
  background-position: center;
  background-size: cover;
  width: calc(100% - 380px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #858585;
  position: relative;
}

.content-modal-win .r-side .pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none
}

.content-modal-win .r-side .banner {
  max-width: 560px;
  width: 37%;
  margin: 32px 73px;
}

.content-modal-win .r-side>.title {
  font-size: 48px;
  font-family: 'Lora', sans-serif;
  margin-bottom: 48px;
}

.content-modal-win .r-side .items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 732px;
}

.content-modal-win .r-side .item {
  width: calc(33.33% - 8px);
  display: flex;
  align-items: flex-start;
}

.content-modal-win .r-side .item img {
  width: 40px;
  margin-right: 12px;
}

.content-modal-win .r-side .item .text-wrap {
  width: calc(100% - 48px);
}

.content-modal-win .r-side .item .title {
  font-family: 'Lora', sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.content-modal-win .r-side .item .text {
  font-size: 12px;
}

.btn-modal-win {
  display: flex;
  align-items: center;
}

.one-btn-modal-win {
  display: flex;
  align-items: center;
  margin-right: 13px;
}

.one-btn-modal-win span {
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #4a3e6d;
  cursor: pointer;
  text-align: center;
  padding: 5px 10px;
}

.one-btn-modal-win span:hover {
  color: #4a3e6d;
}

.one-btn-modal-win.active span {
  border-radius: 14px;
  padding: 5px 10px;
  border-radius: 3rem;
  color: #fff;
  cursor: default;
  background-color: #3e3ef4;
  opacity: 1;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  vertical-align: middle;
  justify-content: flex-start;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
  border: 2px solid transparent;
}


.h-form-modal-win {
  font-size: 24px;
  width: 100%;
  line-height: 1;
  font-family: 'Lora', sans-serif;
  margin-bottom: 24px;
}

.form-modal-win select {
  border: none;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: 10px 50%;
  padding: 11px 16px;
  padding-left: 14px;
  background-color: #f2f2f2;
  box-shadow: inset 0px 0px 2px 3px rgb(0 0 0 / 5%);
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/svg/arrow-down.svg);
  background-position: center right 20px;
}

.form-modal-win select:hover {
  box-shadow: 0 0 0 2px rgb(224 224 224) inset;
}

input:not(.search-field) {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  transition: color .1s ease-in-out, border-color .1s ease-in-out;
  border-radius: 8px;
  padding: 11px 16px;
  width: 100%;
  margin-bottom: 10px;
  background-color: transparent;
  font-size: 16px;
  outline: none;
  font-weight: 400;
  color: #1b1414;
  box-shadow: 0 0 0 1px rgb(224 224 224) inset;
}

input:not(.search-field):hover {
  box-shadow: 0 0 0 2px rgb(224 224 224) inset;
}

input:not(.search-field):focus {
  box-shadow: 0 0 0 2px #d63741 inset;
}

.modal-win input {
  border: none;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: 10px 50%;
  padding-left: 14px;
  background-color: #f2f2f2;
  box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 16px;
}

.modal-win input:hover,
.modal-win input:active {
  box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.1);
  outline: none;
}

.modal-win input:focus,
.modal-win input:focus-visible {
  box-shadow: inset 0px 0px 2px 3px #d63741;
  outline: none;
}

::-webkit-input-placeholder {
  color: #858585;
}

:-moz-placeholder {
  color: #858585;
}

::-moz-placeholder {
  color: #858585;
}

:-ms-input-placeholder {
  color: #858585;
}

.login-form .forgot {
  display: flex;
  justify-content: flex-end;
}

#login .btn,
#reg .btn {
  width: 100%;
  padding: 11px 16px;
}

button.submit.disabled {
  pointer-events: none;
  opacity: 0.7;
}

.answer {
  text-align: center;
  margin: 10px 0 0;
  color: #4a3e6d;
}

.one-form-modal-win svg.svg-bg {
  width: 20px;
  height: 20px;
  fill: #c6c6c6;
  transition: fill .1s ease-in-out;
  position: absolute;
  margin-top: -42px;
  margin-left: 13px;
  left: calc(50% + 33px);
}

.pass-open {
  background-color: #3e3ef4;
  color: #fff;
  border-color: transparent;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 6px;
  position: absolute;
  left: calc(100% - 33px);
  top: -44px;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  outline: none;
  display: inline-block;
  transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
}

.pass-open svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

.pass-open.active svg:nth-child(1),
.pass-open svg:nth-child(2) {
  display: none;
}

.pass-open.active svg:nth-child(2) {
  display: inline-block;
}

.forgot a {
  font-size: 16px;
  color: #d63741;
}

.login-social {
  margin: 24px 0 24px;
  text-align: center;
}

.h-login-social {
  font-size: 13px;
  color: #4a3e6d;
  font-weight: 700;
  margin: 0 0 4px;
}

.bottom-modal-text {
  font-size: 14px;
  margin-top: 24px;
}

.bottom-modal-text p {
  margin-top: 8px;
  font-size: 12px;
}

.bottom-modal-text span {
  font-size: 14px;
  display: block;
  width: 100%;
  margin: 10px 0 0;
}

.bottom-modal-text span a {
  color: #d63741;
}

.one-form-modal-win input[type="checkbox"] {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  transition: background-color .1s ease-in-out;
  z-index: 991;
  box-shadow: rgb(133, 133, 133) 0px 0px 0px 1px inset;

}

.one-form-modal-win input[type="checkbox"]:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-image: url("data:image/svg+xml;utf8, %3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20style%3D%22color%3A%23FFFFFF%22%20class%3D%22sc-fXSgeo%22%3E%3Cpath%20d%3D%22M7%2014.941L13.667%2022%2025%2010%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  visibility: hidden;
  z-index: 992;
}

.one-form-modal-win input[type="checkbox"].active {
  background-color: #d63741;
  box-shadow: none;
}

.one-form-modal-win input[type="checkbox"].active:before {
  visibility: visible;
}

.one-form-modal-win__title {
  color: #858585;
  padding-bottom: 8px;
  font-size: 16px;
  user-select: none;
}

.one-form-modal-win__input {
  padding-right: 45px !important;
}

.one-form-modal-win__block {
  display: flex;
  width: 100%;
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 35%;
  right: 18px;
  transform: translateY(-50%);
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 1.2;
}

.margin-form-check {
  margin: 10px 0 8px;
}

.text-check {
  text-align: left;
}

.error-check {
  display: none;
  font-size: 11px;
  margin: 0 0 5px;
}

.error-check.active {
  display: block;
}


.modal-win#remind {
  width: 100%;
  left: 0;
  background: #fff;
}

.h-remind {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #4a3e6d;
  display: block;
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 24px 24px 0;
}

.content-remind {
  padding: 0;
  position: relative;
  z-index: 995;
}

#remind p {
  display: inline-block;
  color: #858585;
  font-size: 12px;
}

#remind .remind-form .one-form-modal-win {
  margin-bottom: 24px;
}

#remind .remind-form .answer {
  font-size: 12px;
  color: #858585;
}

#remind .remind-form .answer>div {
  display: none;
}

#remind .remind-form .answer>div.active {
  display: block;
}

.submit-remind {
  padding: 0;
}

.submit-remind button.submit {
  width: 100%;
  text-align: center;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
}

.history-remind {
  background-color: #2f2fde;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 36.5px;
  height: 36.5px;
  margin-right: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align: center;
}

.history-remind svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.history-remind:hover svg {
  fill: #fff;
}




























.footer {
  padding-bottom: 48px;
}

.footer-menus {
  padding-bottom: 16px;
  margin-top: 48px;
}

.footer-menus .container {
  max-width: 1552px;
  width: 100%;
  display: flex;
}

.footer-logo svg {
  max-height: 60px;
  width: 100%;
}

.footer-copyright {
  max-width: 220px;
  color: #858585;
  margin-right: 64px;
}

.footer-copyright .title {
  margin-bottom: 16px;
  font-size: 14px;
  color: #1b1414;
}

.footer-menu {
  width: 25%;
  max-width: 160px;
  margin-right: 64px;
}

.h-footer-menu {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-menu ul li {
  margin-bottom: 16px;
  width: 100%;
  display: flex;
}

.footer-menu ul li:last-child {
  margin-bottom: 0;
}

.footer-menu ul li a {
  color: #858585;
  font-size: 12px;
  cursor: pointer;
}

.footer-menu ul li a:hover {
  color: #d63741;
}

.footer-settings {
  margin-left: auto;
  min-width: 169px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .copyright_gambling_soft {
  color: #1b1414;
}

.footer .copyright_gambling_soft span {
  color: #1b1414;
}

.footer .copyright_gambling_soft a {
  color: #2f2fde;
  border-color: #2f2fde;
}

.footer .copyright_gambling_soft svg,
.footer .copyright_gambling_soft svg g {
  fill: #2f2fde !important;
}

.footer-pay-logo {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #f3f5fc;
  border-radius: 8px;
  padding: 20px 0;
  margin-bottom: 40px;
}

.footer-pay-logo img {
  max-width: 105px;
  max-height: 54px;
}

.footer-providers-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.footer-providers-logo .img-wrap {
  padding: 20px 10px;
  width: 200px;
  height: 75px;
  filter: contrast(.5);
  text-align: center;
}

.footer-providers-logo img {}


.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-copyright .copyright {
  padding: 0;
  width: 100%;
  font-size: 12px;
}

.exchange-rate {
  background-color: #f2f2f2;
  color: #858585;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
}

.block-bottom-links {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.block-bottom-links .item {
  margin-bottom: 16px;
}

.block-bottom-links .title {
  margin-bottom: 16px;
  font-size: 14px;
}

.block-bottom-links .item-img-block {
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-img-block-license {
  gap: 16px !important;
}

.license_18 {
  display: flex;
  align-items: center;
}

.block-bottom-links img,
.block-bottom-links svg {
  height: 40px;
}

.block-bottom-links img+img {
  margin-left: 4px;
}

.block-bottom-links .item:last-child svg {
  height: 16px;
}

.block-bottom-links .item:last-child img+svg,
.block-bottom-links .item:last-child svg+img {
  margin-left: 16px;
}


.hidden {
  display: none !important;
}

.open-menu-mobile,
.dropdown-left-aside {
  display: none;
}

.main.main_tournament {
  padding: 0;
}

.tournaments-bg .container {
  max-width: 1236px;
}

.lottery__tabitem {
  background: none;
  padding: 0;
  width: auto;
  font-weight: 500;
  margin: 0 20px;
  min-width: 250px;
}

.lottery__tabitem.lottery__tabitem_active {
  background: none;
  color: #2f2fde;
}

.main__item {
  background-color: #fff;
  background-size: cover;
  background-position: right center;
  padding: 20px;
  margin: 15px 0 20px;
  border-radius: 10px;
  position: relative;
}

.tours-slider {
  position: relative;
}

.main_tournament .tours-slider1 .swiper-slide {
  padding-bottom: 44px;
}

.tours-slider .swiper-button-next,
.tours-slider .swiper-button-prev {
  padding: 4px;
  border-radius: 8px;
  background-color: #f2f2f2;
  width: 32px;
  height: 32px;
  box-shadow: 0px 0px 2px 0px rgba(15, 22, 31, .5);
}

.tours-slider .swiper-button-next:hover,
.tours-slider .swiper-button-prev:hover {
  background-color: #dfdfdf;
}

.tours-slider .swiper-button-next.swiper-button-disabled,
.tours-slider .swiper-button-prev.swiper-button-disabled {
  opacity: .6;
}

.tours-slider .swiper-button-next {
  right: -16px;
}

.tours-slider .swiper-button-prev {
  left: -16px;
}

.tours-slider .swiper-button-next svg,
.tours-slider .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}

.tours-slider .swiper-button-next::after,
.tours-slider .swiper-button-prev::after {
  content: none;
}

.panel-sticker {
  background-color: #ffc400;
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 140px;
  text-align: center;
  border-radius: 10px 0 10px 0;
}

.tournament__title {
  margin-bottom: 16px;
  font-size: 18px;
  color: #858585;
}

.panel.panel_tournament {
  background-color: #f2f2f2;
  padding: 16px;
  max-width: 578px;
  border-radius: 12px;
}

.lottery__title h1 {
  margin-bottom: 24px;
}

.lottery__title h1 {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
}

.panel__header {
  background-color: #101010;
  border-radius: 12px;
  margin: 0;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

.panel__header img {
  height: 182px;
  width: 100%;
  object-fit: cover;
}

.pannel__sides {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.pannel__l-side {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
}

.pannel__l-side .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pannel__l-side .head-note {
  padding: 0 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 9px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
}

.pannel__l-side .head-note.soon {
  background-color: #5c33cf;
}

.pannel__l-side .head-note.active {
  background-color: #0cd664;
}

.pannel__l-side .panel__position {
  color: #858585;
  margin: 15px 0;
}

.pannel__l-side .panel__position:empty {
  margin: 0;
}

.pannel__l-side .tour-type {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(15, 22, 31, .1) 0px 0px 12px 0px;
  position: relative;
  cursor: pointer;
}

.pannel__l-side .tour-type:hover .tour-type__dropdown {
  display: block;
}

.tour-type__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% - 185px);
  width: 370px;
  background-color: rgb(0, 0, 0, .93);
  box-shadow: rgba(15, 22, 31, .1) 0px 0px 12px 0px;
  color: #858585;
  padding: 12px;
  border-radius: 4px;
}

.tour-type__dropdown::before {
  content: '';
  background-color: rgb(0, 0, 0, .93);
  position: absolute;
  top: -5px;
  left: calc(50% - 6px);
  display: block;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-radius: 2px;
  outline: 10px solid rgba(0, 0, 0, 0);
}

.tour-type__title {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tour-type__type {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.tour-type__type-desc {
  font-size: 14px;
  font-weight: 500;
}

.pannel__r-side {
  width: calc(50% - 8px);
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 16px;
}

.panel__title.panel__title_tournament.title {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Lora', sans-serif;
  margin-bottom: 18px;
  display: block;
  margin-top: auto;
}

.pannel__sides-bg {
  background: #fff;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
}

.pannel__sides-bg .l-side,
.pannel__sides-bg .r-side {
  display: flex;
  align-items: center;
}

.sides-line {
  background: #000;
  width: 2px;
  min-height: 100%;
  margin: 0 10px;
  align-self: stretch;
}

.pannel__sides-bg svg {
  margin-right: 10px;
}

.panel__prize {
  width: auto;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  display: block;
}

.panel__prize.large {
  text-align: center;
  padding: 20px 0;
}

.panel__prize.large .panel__countnote.title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.panel__prize.large .panel__countdown {
  justify-content: center;
}

.panel__prize.large .panel__countdown,
.panel__prize.large .panel__countbutton {
  font-size: 36px;
  color: #2f2fde;
}

.panel__countdown {
  padding-right: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: inherit;
  display: flex;
  align-items: flex-end;
  background-color: #f2f2f2;
  padding: 6px 8px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.panel__countnote.title {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #858585;
  margin-bottom: 8px;
}

.panel__countbutton {
  position: static;
  background: none;
  padding: 0;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 0 5px;
}

.panel__timer {
  width: auto;
  padding-left: 0;
}

.timer__table {
  min-width: 105px;
  width: 100%;
}

.timer__table .timer__row_digit {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.timer__table .timer__row_digit .timer__cell:not(.symbol) {
  background: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #858585;
  color: #1b1414;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 12px);
  height: 40px;
}

.timer__table .timer__row_digit .timer__cell.symbol {
  padding: 0 4px;
}

.timer__table .timer__row_digit .timer__cell.symbol {
  color: #1b1414;
}

.timer__table .timer__cell.symbol {
  padding: 0;
}

.timer__row.timer__row_caption {
  display: flex;
  align-items: center;
  margin-top: 4px;
  justify-content: space-between;
}

.timer__row.timer__row_caption .timer__cell:not(.symbol) {
  width: calc(25% - 12px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  text-transform: uppercase;
}

.timer__row.timer__row_caption .timer__cell.symbol {
  padding: 0 5px;
  color: rgba(0, 0, 0, 0);
  font-size: 8px;
  text-transform: uppercase;
}

.panel__info-button {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.panel__info-button .tournament-show {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-left: 16px;
  color: #1b1414;
}

.panel__info-button .opt-in {
  width: calc(100% - 56px);
  margin-right: auto;
}

.panel__info-button .opt-in span:last-child {
  display: none;
}

.panel__info-button .opt-in.active {
  background-color: rgba(0, 0, 0, 0);
  color: #858585;
  border: 1px solid #858585;
  pointer-events: none;
}

.panel__info-button .opt-in.active:hover {
  border: 1px solid #1b1414;
}

.panel__info-button .opt-in.active span:first-child {
  display: none;
}

.panel__info-button .opt-in.active span:last-child {
  display: block;
}

.tournament-details {
  display: flex;
}

.tournament-details__l-side {
  max-width: 796px;
  width: 67%;
}

.tournament-details__r-side {
  width: calc(33% - 16px);
  margin-left: auto;
}

.summary__block {
  margin: 16px 0;
}

.summary__content {
  color: #858585;
}

.summary__info {
  color: #858585;
}

.tournament-details__main-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 32px;
}

.tournament-details__header .panel.panel_tournament {
  border: none;
  max-width: 100%;
}

.tournament-details__header .pannel__sides-bg {
  margin-bottom: 0;
  margin-top: 20px;
}

.tournament-details__header .panel__caption {
  text-align: center;
  font-size: 14px;
}

.tournament-details__btns {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #f3f5fc;
}

.details__btn {
  margin: 0 10px;
  font-weight: 600;
  cursor: pointer;
}

.details__btn:hover {
  color: #2f2fde;
}

.leaderboard__slider.slider_leaderboard {
  background: #f3f5fc;
  margin-top: 0;
  overflow: hidden;
  border-radius: 12px;
}

.leaderboard__block {
  width: 100%;
  min-width: 290px;
  background-color: #f2f2f2;
  margin: 0 auto;
  padding: 12px;
}

.leaderbord__main-title {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 16px;
}

table.table.table_leaderboard {
  border-collapse: separate;
  border-spacing: 0 4px;
}

table.table.table_leaderboard td,
table.table.table_leaderboard th {
  border: none;
  font-size: 12px;
  padding: 0;
  vertical-align: middle;
}

table.table.table_leaderboard th {
  padding-bottom: 8px;
  font-weight: 400;
}

table.table.table_leaderboard td:first-child,
table.table.table_leaderboard th:first-child {
  padding-left: 8px;
}

table.table.table_leaderboard td:last-child,
table.table.table_leaderboard th:last-child {
  padding-right: 8px;
  text-align: right;
}

table.table.table_leaderboard td:nth-child(2),
table.table.table_leaderboard th:nth-child(2) {
  text-align: left;
}

table.table.table_leaderboard td span {
  display: inline-block;
  width: 24px;
  line-height: 24px;
  background-color: #f2f2f2;
  color: #858585;
  border-radius: 50%;
}

table.table.table_leaderboard tbody tr:first-child td span,
table.table.table_leaderboard tbody tr:nth-child(2) td span,
table.table.table_leaderboard tbody tr:nth-child(3) td span {
  height: 28px;
  color: rgba(0, 0, 0, 0);
  background-color: inherit;
  background-size: contain;
  background-position: center;
}

table.table.table_leaderboard tbody tr:first-child td span {
  background-image: url(../img/betnew/gold.svg);
}

table.table.table_leaderboard tbody tr:nth-child(2) td span {
  background-image: url(../img/betnew/silver.svg);
}

table.table.table_leaderboard tbody tr:nth-child(3) td span {
  background-image: url(../img/betnew/bronze.svg);
}

table.table.table_leaderboard td:nth-child(3) {
  color: #858585;
}

table.table.table_leaderboard .table__row td {
  background: #fff;
  height: 48px;
  vertical-align: middle;
}

table.table.table_leaderboard .table__row td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

table.table.table_leaderboard .table__row td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

table.table.table_leaderboard .table__row:nth-child(1) td {
  background-color: #ffe4ad;
}

table.table.table_leaderboard .table__row:nth-child(2) td {
  background-color: rgb(182 163 233 / 30%);
}

table.table.table_leaderboard .table__row:nth-child(3) td {
  background-color: rgba(233, 151, 151, 0.3);
}


.tournament-details__leaderboard,
.tournament-details__slider,
.tournament-details__summary,
.tournament-details__crosstitle.tournament-details__crosstitle_small.title {
  margin: 0;
}

.tournament-details__crosstitle.tournament-details__crosstitle_small.title {}

.items_tournament {
  display: flex;
  flex-wrap: wrap;
}

.items_tournament .list-game .parent-game-slide {
  width: calc((100% - 80px) / 4);
}

.tournament-details__summary .summary__block:first-child .summary__cell {
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  font-size: 18px;
}

.summary__cell {
  padding: 0 16px 8px 0;
}

.parent-search-list-game .list-game .parent-game-slide {
  width: calc(20% - 20px);
}

#search .data-game-slide {
  display: none;
}

.modal-win#search {
  background: rgba(0, 0, 0, .7);
  background-image: none;
}

.modal-win#search .search-field {
  position: relative;
  background-color: #fff;
  max-width: 1433px;
  width: 100%;
  margin: 40px auto;
  padding: 30px 50px 0;
  border-radius: 20px;
}

.modal-main-title {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-main-title .close-small {
  position: static;
}

.modal-main-title .close-small svg {
  width: 100%;
  height: 100%;
}

.parent-search-list-game {
  max-width: 100%;
}

.modal-win#search .search-field input {
  max-width: calc(100% - 40px);
  border: 2px solid rgba(0, 0, 0, .7);
  padding: 10px 35px 10px 10px;
  background-position: right 8px center;
  background-size: 18px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
}

.log-out-mobile {
  display: none;
}

.summary__item .summary__cell:first-child .summary__title.title {
  font-weight: 600;
}

.block-topmenu .change-theme-color {
  display: none;
}

.change-theme-color {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
}

.change-theme-color input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.change-theme-color input[type="checkbox"]:checked+span::after {
  left: calc(100% - 28px);
}

.change-theme-color input[type="checkbox"]:checked+span {
  background-color: #323232;
}

.change-theme-color>div {
  font-size: 10px;
  color: #858585;
  font-weight: 500;
}

.change-theme-color>div:first-child {
  color: #1b1414;
}

.dark-theme .change-theme-color>div:first-child {
  color: #858585;
}

.dark-theme .change-theme-color>div:last-child {
  color: #fff;
}

.change-theme-color>span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  height: 32px;
  padding: 4px;
  border-radius: 100px;
  background-color: #e0e0e0;
  position: relative;
  margin: 0 5px;
}

.change-theme-color>span::after {
  transition: all 0.3s linear;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transform: translate(0);
  background-color: #fff;
  transition: .3s;
}

.change-theme-color span span svg {
  width: 24px;
  height: 24px;

}

.game-slide-anim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.game-slide-anim svg {
  position: absolute;
  top: 0;
  left: 0;
}

.game-slide-anim svg+svg {
  display: none;
}

.ulogin-buttons-container {
  width: auto !important;
}

.ulogin-button-steam {
  margin-right: 0 !important;
}

.ulogin-dropdown-button {
  display: none !important;
}

.dup4-button {
  top: 50% !important;
  width: 32px !important;
  height: 32px !important;

  svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* body.dark-theme .page-content .support-content {
    background-color: #171824;
} */

body.dark-theme .page-content .support-content.user-support-block h1.page-title {
  color: #fff;
}

/* body.dark-theme .page-content form#add-support-reply {
  background: #171824;
} */

.page-content .support-content .block-submit-btn-win {
  justify-content: flex-end;
}

.page-content .support-content.user-support-block form#add-support-reply textarea[name=message] {
  resize: none;
}

.page-content .support-content .content-one-message {
  width: auto;
}

.page-content .support-content .one-message.User .content-one-message {
  width: auto;
}

.page-content .support-content .meta-one-message {
  justify-content: flex-start
}

.page-content .support-content .author-one-message {
  width: auto;
}

.page-content .support-content .info-one-message {
  width: auto;
  margin: 0 10px;
}

.boost-block {
  margin-bottom: 32px;
  position: relative;
  z-index: 11;
}

.boost-block__wrapper {
  background: linear-gradient(135deg, rgba(216, 193, 187, 1) 0%, rgba(180, 122, 105, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px 11px 32px;
  border-radius: 12px;
  color: #000;
  position: relative;
  user-select: none;
}

.boost-block__wrapper>img {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.boost-block__wrapper>img:nth-child(1) {
  left: 11.84%;
}

.boost-block__wrapper>img:nth-child(2) {
  left: 20%;
}

.boost-block__wrapper>img:nth-child(3) {
  right: 27.63%;
}

.boost-block__wrapper .l-side {
  position: relative;
  z-index: 2;
}

.boost-block__wrapper .l-side .text {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.boost-block__wrapper .l-side .title {
  font-size: 24px;
  font-family: 'Lora', sans-serif;
}

.boost-block__wrapper>.title {
  font-size: 48px;
  font-family: 'Lora', sans-serif;
  position: relative;
  z-index: 2;
}

.boost-block__wrapper .r-side {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.boost-block__wrapper .r-side>span {
  text-transform: uppercase;
  font-size: 9px;
  text-align: right;
  max-width: 45px;
  font-weight: 500;
  letter-spacing: 1px;
}

.boost-block__wrapper .r-side .timer {
  display: flex;
  align-items: center;
  margin: 0 12px;
}

.boost-block__wrapper .r-side .item {
  text-transform: uppercase;
  font-size: 8px;
  text-align: center;
  position: relative;
}

.boost-block__wrapper .r-side .symbol {
  padding: 0 2px;
  font-size: 11px;
}

.boost-block__wrapper .r-side .item span {
  position: absolute;
  top: calc(100% + 2px);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.boost-block__wrapper .r-side .item>div {
  width: 36px;
  height: 40px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
}

.boost-block__wrapper .show-games {
  position: relative;
}

.boost-block__wrapper .show-games>span {
  display: block;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.boost-block__wrapper .show-games>span:hover {
  background-color: #efeeee;
  border-radius: 8px;
}

.show-games__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: calc(50% - 160px);
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 35px -3px rgba(0, 0, 0, 0.2);
}

.show-games__dropdown.active {
  display: block;
}

.show-games__dropdown .title {
  background: linear-gradient(135deg, rgba(216, 193, 187, 1) 0%, rgba(180, 122, 105, 1) 100%);
  position: relative;
  font-size: 15px;
  color: #fff;
  font-family: 'Lora', sans-serif;
  overflow: hidden;
  min-height: 76px;
  display: flex;
  align-items: center;
}

.show-games__dropdown .title span {
  max-width: 142px;
  margin-left: 12px;
}

.show-games__dropdown .title img:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 211px;
  min-height: 153px;
}

.show-games__dropdown .title img:nth-child(3) {
  position: absolute;
  height: 68px;
  top: calc(50% - 34px);
  right: 56px;
}

.show-games__inner {
  padding: 24px 16px;
}

.show-games__inner .game-wrapper {
  display: flex;
  align-items: center;
}

.show-games__inner .game-wrapper+.game-wrapper {
  margin-top: 16px;
}

.show-games__inner .img-game-slide {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 16px;
  padding-top: 0;
}

.show-games__inner .game-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1b1414;
}

.show-games__inner .game-provider {
  color: #858585;
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.show-games__dropdown .bottom-btn {
  padding: 16px;
  color: #858585;
  border-top: 2px solid #f2f2f2;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.top-filters {
  display: flex;
  align-items: flex-end;
}

.top-filters__btn {
  display: none;
}

.top-filter {
  position: relative;
  z-index: 19;
}

.top-filter+.top-filter {
  margin-left: 4px;
}

.top-filter .text {
  color: #858585;
  padding-bottom: 8px;
}

.top-filter .title-block {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 12px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #858585;
  cursor: pointer;
  min-width: 188px;
}

.top-filters .title-block:hover {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.top-filters .title-block:active {
  border: 2px solid #d63741;
}

.top-filters .title-block svg {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  transition: .3s;
}

.top-filters .title-block .remove-selected {
  width: 15px;
  height: 15px;
  fill: #858585;
  cursor: pointer;
}

.top-filter.active.providers .title-block svg:not(.remove-selected) {
  transform: rotate(180deg)
}

.top-filter.providers .title-block {
  padding: 11px;
}

.top-filter.categories .title-block {
  border: 1px solid #000;
}

.top-filter .valNum {
  display: none;
}

.top-filter .default {
  margin-right: auto;
}

.top-filter .valNum.active {
  display: block;
  margin-right: auto;
}

.top-filter .valNum.active+.default {
  display: none;
}

.top-filters .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: calc(100% + 50px);
  padding: 4px;
  background-color: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0px 7px 20px 2px rgba(0, 0, 0, 0.32);
  max-height: calc(100vh - 300px);
  overflow: auto;
}

.top-filters .dropdown::-webkit-scrollbar {
  width: 3px;
  background: transparent;
}

.top-filters .dropdown::-webkit-scrollbar-thumb {
  width: 3px;
  background-color: #858585;
  border-radius: 2px;
}

.top-filter.active .dropdown {
  display: block;
}

.top-filter.categories .dropdown {
  padding: 12px;
}

.top-filter.categories .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.top-filter.categories .dropdown-item+.dropdown-item {
  margin-top: 8px;
}

.top-filter.categories .dropdown-item.active,
.top-filter.categories .dropdown-item:hover {
  background-color: #d63741;
  color: #fff;
  border: none;
  border: 1px solid #d63741;
}

.top-filter.categories .dropdown-item.active svg {
  display: block;
  stroke: #fff;
  margin-right: 8px;
}

.top-filter.categories .dropdown-item.revers svg {
  transform: rotate(180deg);
}

.top-filter.categories .dropdown-item svg {
  display: none;
}

.top-filter.providers .dropdown-item {
  padding: 8px;
  color: #858585;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.top-filter.providers .title-provider {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-filter.providers .title-provider img {
  max-height: 20px;
  max-width: 20px;
  margin-right: 5px;
  vertical-align: middle !important;
}

.top-filter.providers .dropdown-item.non-result {
  display: none;
}

.top-filter.providers .dropdown-item:hover {
  background-color: #1b14140a;
}

.top-filter.providers .checkbox {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border: 1px solid rgb(27 20 20 / 50%);
  border-radius: 4px;
}

.top-filter.providers .dropdown-item.active .checkbox {
  background-color: #d63741;
  border: 1px solid #d63741;
}

.top-filter.providers .checkbox svg {
  display: none;
}

.top-filter.providers.active .checkbox svg {
  display: block;
}

.top-filter.providers.active .provider-items {
  margin-left: auto;
}

.mobile-bottom-menu {
  display: none;
}

.block-topmenu .hellow-user {
  display: none;
}

.hellow-user {
  font-size: 24px;
  line-height: 28px;
}

.hellow-user a {
  font-size: 14px;
  color: #d63741;
}

.block-topmenu .change-theme-color {
  display: none;
}

.block-topmenu .laguage-wrapper {
  display: none;
}

.vip-panel__img {
  width: 140px;
  margin: 20px;
}

.block-topmenu .header-btn {
  display: none;
}

.block-topmenu_head .mobile-logo {
  color: #1b1414;
}

.vipclub__info.vipclub__info_open {
  border: 1px solid #d63741;
}

.side-pannel .block:hover,
.side-pannel .block.active {
  background-color: #d63741;
}

.wager-scale {
  margin-right: 12px;
}

.wager-scale__title {
  font-size: 12px;
  color: #d63741;
  font-weight: 500;
}

.wager-scale__wrap {
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin: 1px 0;
}

.wager-scale__inner {
  height: 100%;
  background: #d63741;
}

.wager-scale__percent {
  font-size: 12px;
  font-weight: 500;
}

.profile .wager-scale {
  margin-right: 0;
  display: flex;
  align-items: center;
  max-width: 320px;
  width: 100%;
}

.profile .wager-scale__title,
.profile .wager-scale__percent {
  color: inherit;
  font-size: 16px;
}

.profile .wager-scale__wrap {
  height: 8px;
  margin: 0 12px;
}

.load-more,
.load-more-category {
  max-width: 200px;
  margin: 20px auto 0;

}

.notification-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .2);
  display: none;
  align-items: center;
  justify-content: center;
}

.notification-popup.active {
  display: flex;
}

.notification-popup .notification-container {
  padding: 50px 32px 32px;
  background: linear-gradient(135deg, rgba(216, 193, 187, 1) 30%, rgba(180, 122, 105, 1) 100%);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2.4px 7.2px, rgba(0, 0, 0, 0.22) 0px 12.8px 28.8px;
  border-radius: 4px;
  position: relative;
}

.notification-popup.cashback .notification-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/betnew/small-confetti.svg);
}

.notification-popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  cursor: pointer;
}

.notification-popup .close:hover {
  background: #efeeee;
}

.notification-popup .close svg {
  width: 32px;
  height: 32px;
}

.notification-popup .title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.notification-popup .chasback-summ {
  margin-right: 5px;
  font-size: 18px;
}

.notification-popup .message {
  font-size: 16px;
}

.bonus-panel__desc-text {
  font-size: 12px;
  margin-top: 8px;
}

.bonus-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-panel__row span:nth-child(1) {
  color: #909090;
}

.bonus-panel__row span+span {
  margin-left: 10px;
}

/* JACKPOT MODAL */

.popup2.jackpot-modal {
    transform: scale(0) translate(-50%, -49%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    background-color: rgb(0 0 0 / 40%);
    background-image: url(../img/crypto-desctop.png);
    background-size: 900px;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    box-shadow: none;
    font-size: 26px;
    overflow: hidden;
    top: 0;
    left: 0;
    padding-bottom: 0;
}

.popup2.jackpot-modal.active {
    transform: scale(1);
}

.jackpot-modal__summ {
    font-size: 128px;
    line-height: 145px;
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    color: #54c12f;
    position: relative;
    z-index: 2;
}

.jackpot-modal__value {
    margin-right: 10px;
}

.popup2.jackpot-modal .popup__close {
    box-shadow: none;
}

/* JACKPOT MODAL */

.popup2.cashback-modal {
  padding: 40px 20px;
  background: linear-gradient(270deg, #421f87 0%, #7810af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}

.popup2.cashback-modal svg {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.popup2.cashback-modal>span {
  position: relative;
  z-index: 4;
}

.popup2.cashback-modal::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 200px;
  top: 0;
  right: 0;
  background-image: url(../img/small-confetti.svg);
  background-size: cover;
  pointer-events: none;
  opacity: .7;
}

.popup2.cashback-modal .chasback-summ {
  margin-right: 5px;
}

.enter-pin {
  padding: 2px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.jack-rank {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: calc((100% - 100px) / 6);
  max-width: 100%;
  overflow: hidden;
  max-height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: none;
}

.jack-rank__summ,
.jack-rank__title,
.jack-rank__bottom {
  padding: 0;
  background-color: unset;
  color: #fff;
}

.jack-rank__title {
  position: absolute;
  top: 10px;
  z-index: 1;
  text-align: left;
}

.jack-rank__title span {
  background: #d63741;
  padding: 5px 15px 5px 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 14px;
  font-weight: 400;
}

.jack-rank__summ {
  position: absolute;
  bottom: 21px;
  font-size: 30px;
  z-index: 1;
}

.jack-rank__bottom {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

a.jack-rank::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%);
}

.jackpot-page {
  max-width: 1584px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* SUPPORT */

.support-content__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 66vh;
}

.message-history {
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow: auto;
}

.one-message {
  display: flex;
  flex-direction: column;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: #f2f2f2;
  max-width: 300px;
}

.right-side-message {
  align-self: flex-end;
  background-color: #e0e0e0;
}

.left-side-message {
  align-self: flex-start;
}

.meta-one-message {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.author-one-message {
  display: flex;
  align-items: center;
}

.login-message {
  color: #808080;
  font-weight: bold;
}

.info-one-message {
  color: #808080;
  font-size: 12px;
}

.text-one-message {
  color: #000000;
  font-weight: 500;
  text-align: justify;
  word-wrap: break-word;
}

.chat_textarea {
  font-size: 16px;
  padding: 20px;
  border-radius: 20px;
  background-color: #f2f2f2;
  flex-grow: 1;
  border: none;
}

:focus-visible {
  outline: 0px;
}

.chat_textarea::placeholder {
  font-size: 16px;
  color: #1b1414;
}

.file_chat_left {
  height: 35px;
  width: 35px;
}

.file_chat_attachment {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background-color: #f2f2f2;
  border-radius: 20px;
}

.message_reply {
  margin-top: 30px;
}

.pass_btn {
  background: rgba(27 20 20 / .07);
}

.pass_btn:hover {
  background: transparent;
}

body.dark-theme .pass_btn {
  background: #d63741;
}

.file_chat_attachment input {
  order: 0;
  margin-bottom: 0;
  box-shadow: none;
  pointer-events: none;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
}

.file_chat_attachment input:hover {
  box-shadow: none;
}

.file_chat_btn {
  font-size: 16px;
}

.file_chat_btn svg {
  display: none;
}

.file_chat_attachment input[type="file"]::file-selector-button {
  display: none;
}

.file_chat_attachment_icon {
  cursor: pointer;
}

.file_chat_p {
  margin: 0 !important;
}

.popup2.jackpot-modal .popup__close svg {
  fill: white !important;
}

.bonuses-page {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bonuses-page .reg-btn {
  margin-left: 0;
}

.bonuses-page .bonus-panel__info {
  width: 100%;
}

.bonuses-page .bonus-panel__action {
  width: 100%;
  margin-left: 16px;
}

.tab-bonuses__gallery .tabs,
.bonuses-page .tabs {
    width: 100%;
    display: flex;
    margin: 20px 0;
}

.tab-bonuses__gallery .tab + .tab,
.bonuses-page .tab + .tab {
    margin-left: 20px;
}

.tab-bonuses__gallery .tab.active,
.bonuses-page .tab.active {
    
}

.tab-bonuses__gallery .tabs-content,
.bonuses-page .tabs-content {
    width: 100%;
}

.tab-bonuses__gallery .tab-content,
.bonuses-page .tab-content {
    display: none;
}

.tab-bonuses__gallery .tab-content.active,
.bonuses-page .tab-content.active {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tab-bonuses__gallery .tab-content.active .one-index-category,
.bonuses-page .tab-content.active .one-index-category {
    width: 100%;
}

.alert-success {
  display: none;
}

/* SUPPORT */

.popup_undefined.static-profile input#profileform-email,
.popup_undefined.static-profile input#profileform-phone {
  padding-right: 134px;
  text-overflow: ellipsis;
}

.another-win-jackpot {
  position: fixed;
  top: -60px;
  right: 0;
  max-width: 320px;
  background-color: #d63741;
  border-bottom-left-radius: 15px;
  padding: 10px 30px;
  transition: top .3s;
  z-index: 19;
}

.another-win-jackpot.active {
  top: 88px;
}

.another-win-jackpot span {
  font-weight: 700;
  font-size: 17px;
}

.search-dropdown-result:not(:empty) + .search-static-games{
  display: none;
}

.search-static-games .title{
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  font-weight: 600;
  color: #858585;
}

.poker-frame {
  width: 100%;
  min-height: 85vh;
}

.ulogin-button-google {
    display: inline-block;
    background: url("/templates/bitcasino/img/providers-32-classic.png?version=img.3.0.1") 0px -206px / 32px !important;
}

/* search checkbox */

.toggle-checkbox {
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    border-radius: 10px;
    white-space: nowrap;
    line-height: 20px;
    margin-left: 5px;
}

.toggle-checkbox:hover {
    box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper {
    width: 18px;
    height: 18px;
    margin-right: 3px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.checkbox-wrapper input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
}

.checkbox-wrapper input:checked + span {
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 6px;
    transform: rotate(-45deg);
    border-radius: 1px;
    border-color: #000;
    border-style: solid;
    border-width: 0 0 2px 2px;
    z-index: 992;
}

.search-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-block .toggle {
    min-width: 215px;
    margin-left: 5px;
    line-height: 20px;
    padding: 10px 30px 10px 10px;
    box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}

.search-block .toggle:hover {
    box-shadow: inset 0px 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.search-block .toggle::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 13px;
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(225deg);
    transition: 0.3s linear;
    border-top: 2px solid rgba(0, 0, 0, .7);
    border-left: 2px solid rgba(0, 0, 0, .7);
}

.search-block .toggle span {
    margin-left: auto;
}

.search-block .toggle svg {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 3px;
}

/* search checkbox */

/* dropdown search */


.toggle-content > div {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.toggle-content > div::-webkit-scrollbar {
    width: 3px;
    background: transparent;
}

.toggle-content > div::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: #858585;
    border-radius: 2px;
}

.toggle-content > div.active {
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
}

.toggle-content > div .toggle-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    cursor: pointer;
}

.toggle-content > div .toggle-item + .toggle-item {
    margin-top: 8px;
}

.toggle-content > div .toggle-item.active,
.toggle-content > div .toggle-item:hover {
    border-color: #d63741;
    color: #d63741;
}

.toggle-content > div .toggle-item:hover {}

.toggle-content > div .toggle-item.active svg {
    display: block;
    stroke: #fff;
}

.toggle-content > div .toggle-item.revers svg {
    transform: rotate(180deg);
}

.toggle-content > div .toggle-item svg {
    display: none;
}

.toggle-content > div .toggle-item {
    width: calc((100% - 100px) / 6);
    padding: 15px 0;
    border-bottom: 2px solid rgba(212, 225, 245, .6);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: inherit;
}

.toggle-content > div .toggle-item.active {
    border-bottom: 2px solid #d63741;
}

.toggle-content > div .toggle-item:empty {
    padding: 0;
    border-bottom: 2px solid rgba(212, 225, 245, .0);
    height: 0;
    margin: 0;
}

.toggle-content > div .title-provider {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toggle-content > div .title-provider img {
    max-height: 20px;
    max-width: 20px;
    margin-right: 5px;
    vertical-align: middle !important;
}

.toggle-content > div .amount {
    margin-left: auto;
}

.toggle-content > div .amount + .checkbox {
    margin-left: 8px;
}

.toggle-content > div .toggle-item.non-result {
    display: none;
}

.toggle-content > div .checkbox {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(157 148 148 / 50%);
    border-radius: 4px;
}

.toggle-content > div .toggle-item.active .checkbox {
    background-color: #fff;
    border: 1px solid #fff;
}

.toggle-content > div .checkbox svg {
    display: none;
}

.toggle-content > div.active .checkbox svg {
    display: block;
}

.top-filters .title-block .remove-selected {
    width: 15px;
    height: 15px;
    fill: #d63741;
    cursor: pointer;
}

.toggle-content > div .checkbox path {
    stroke-width: 4px;
    stroke: #ababab;
}

.toggle-content > div .toggle-item.active .checkbox path {
    stroke: #d63741;
}

.toggle-content > div.active .provider-items {
    margin-left: auto;
}

/* dropdown search */

@media screen and (max-width: 1820px) {
  .logged-out-banner {
    padding: 0 32px;
  }

  .logged-out-banner+.game-swiper-wrapper.providers {
    width: calc(100% - 64px);
  }
}

@media screen and (max-width: 1720px) {
  .block-topmenu_head.active {
    position: static;
  }
}

@media screen and (max-width: 1620px) {
  .jack-ranks {
    flex-wrap: wrap;
  }

  .jack-rank {
    margin-top: 20px;
    width: calc((100% - 40px) / 3);
  }

  .index-slider {
    width: calc(100% - 200px);
  }

  .index-slider .swiper-slide {
    position: relative;
    justify-content: flex-start;
  }

  .bg-swiper-slide {
    position: relative;
    z-index: 2;
  }

  .index-slider .swiper-slide .img-wrap {
    position: absolute;
    right: -100px;
    bottom: 0;
  }

  .slides-btns {
    max-width: 200px;
  }

  .slides-btns .item {
    padding: 0 12px;
  }

  .parent-swiper-navination {
    right: calc((100vw - 1130px) / 2);
  }

  .game-swiper.dup3 .swiper-slide {
    width: 13%;
  }

  .game-swiper .swiper-slide {
    width: calc(15% + 6px);
  }

  .one-index-category.one-row .parent-game-slide:nth-child(n+5),
  .one-index-category.two-rows .parent-game-slide:nth-child(n+9) {
    height: 0;
    pointer-events: none;
    overflow: hidden;
    margin: 0;
  }

  .footer-providers-logo .img-wrap {
    padding: 10px;
    width: auto;
    height: 70px;
  }

}

@media screen and (max-width: 1401px) {
  .mini-slider-win {
    width: calc(50% - 14px);
  }

  .jackpot-right-text {
    width: 50%;
  }

  .header-menu {
    display: none;
  }

  .header-left {
    width: 50%;
  }

  .game-swiper .swiper-slide {
    width: calc(22% + 6px);
  }

  .game-swiper.dup3 .swiper-slide {
    width: 15%;
  }

  .index-slider .swiper-slide .img-wrap {
    opacity: .2;
  }

  .boost-block__wrapper {
    flex-direction: column;
    padding-bottom: 24px;
  }

  .boost-block__wrapper>.title {
    order: 1;
  }

  .boost-block__wrapper .l-side {
    order: 2;
    text-align: center;
  }

  .boost-block__wrapper .r-side {
    order: 3;
    flex-wrap: wrap;
    max-width: 303px;
    justify-content: center;
  }

  .boost-block__wrapper .show-games {
    order: 1;
    width: 100%;
    text-align: center;
    margin: 12px 0;
  }

  .boost-block__wrapper .r-side>span {
    order: 2;
  }

  .boost-block__wrapper .timer {
    order: 3;
  }

  .boost-block__wrapper>img {
    height: auto
  }

  .boost-block__wrapper>img:nth-child(1) {
    left: -15%;
    height: 92px;
    top: 18px;
    z-index: 1;
  }

  .boost-block__wrapper>img:nth-child(2) {
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .boost-block__wrapper>img:nth-child(3) {
    right: 9.63%;
    height: 109px;
    width: 323px;
    top: 38px;
  }
}

@media screen and (max-width: 1170px) {
  .parent-swiper-navination {
    right: 20px;
  }

  .footer-pay-logo {
    padding: 10px 0;
  }

  .footer-pay-logo img {
    max-width: 100px;
    padding: 10px;
  }

  .footer-providers-logo .img-wrap {
    height: 50px;
  }
}

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

  .tour-type__dropdown {
    right: 0;
    left: inherit;
    width: 300px;
  }

  .header-search .search-dropdown {
    left: 0;
    right: auto;
    min-width: 500px;
  }

  .content-modal-win .r-side .items {
    flex-direction: column;
  }

  .content-modal-win .r-side .item {
    width: 100%
  }

  .content-modal-win .r-side .item+.item {
    margin-top: 16px;
  }

  .pannel__sides {
    flex-direction: column;
  }

  .pannel__r-side,
  .pannel__l-side {
    width: 100%;
  }

  .pannel__r-side {
    margin-top: 16px;
  }

  .game-swiper.dup3 .swiper-slide {
    width: 18%;
  }

  .TopSwiper .swiper-slide-active .img-wrap {
    bottom: -8%;
  }

  .full-width-page {
    padding-top: 70px;
  }

  .fixed-header {
    padding: 5px 20px;
    height: 70px;
  }

  .log-out-mobile {
    display: block;
  }

  .header-logo {
    max-width: inherit;
    width: auto;
    margin: 0;
  }

  .header-right .header-search {
    display: none;
  }

  .header-left {
    width: calc(50% + 47.5px);
    justify-content: space-between;
  }

  .header-menu a {
    margin: 0 9px 0 0;
    font-size: 13px;
  }

  span.title-slide {
    font-size: 30px;
  }

  .bg-swiper-slide {
    max-width: 100%;
  }

  .jackpot-tabs {
    width: 350px;
    min-height: 202px;
    padding-bottom: 8px;
  }

  .jackpot-tabs .list-game .parent-game-slide:nth-child(4) {
    display: none;
  }

  .jackpot-tabs .list-game .parent-game-slide {
    width: calc(33.33% - 20px);
  }

  .h-jackpot-tabs {
    margin-top: 0;
  }

  .jackpot-tabs span {
    font-size: 26px;
    letter-spacing: 0;
  }

  .summ-jackpot-tabs {
    font-size: 30px;
  }

  .head-tabs .index-slider {
    width: calc(100% - 365px);
  }

  .head-tabs .index-slider .swiper-slide {
    min-height: 202px;
  }

  .index-banner a {
    font-size: 14px;
  }

  .left-aside,
  .wrapper-left-aside {
    width: 200px;
  }

  .index-banner {
    background-position: right center;
    padding: 20px;
  }












  .footer-social {
    width: 145px;
  }

  .footer-social img {
    border-radius: 4px;
    margin: 0px 6px 0 0;
    width: 30px;
    height: 30px;
  }

  .footer-tournaments {
    width: calc(100% - 160px);
  }

  .footer-tournaments svg {
    height: 20px;
    margin: 0 2px 0 0;
  }

}

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

  .header-menu a {
    font-size: 13px;
    margin: 0 7px 0 0;
  }

  .list-anim-btn .anim-btn span {
    font-size: 18px;
  }

  .list-anim-btn .anim-btn small {
    font-size: 11px;
  }

}

@media screen and (max-width: 991px) {
    
    .popup2.jackpot-modal {
        font-size: 20px;
        background-size: 740px;
    }
    
    .jackpot-modal__summ {
        font-size: 100px;
        line-height: 104px;
    }
    
  .bonuses-page .bonus-panel__action {
    margin-left: 0;
    margin-top: 8px;
  }

  .wager-scale {
    display: none;
  }

  .cashback-notification {
    top: 100%;
    right: -15px;
    border-bottom-right-radius: 0;
  }

  .slides-btns .item {
    border-bottom: 0;
  }

  html body.dark-theme .slides-btns .item {
    border-bottom: 0;
  }

  .content-modal-win .r-side .items {
    display: none;
  }

  .content-modal-win .r-side .banner {
    margin: 32px 0;
    width: 80%;
  }

  .content-modal-win .r-side>.title {
    text-align: center;
    padding: 0 10px;
  }

  .tournament-details__main-title {
    display: none;
  }

  .tournament-details {
    display: block;
  }

  .tournament-details__l-side {
    width: 100%;
    max-width: 100%;
  }

  .tournament-details__r-side {
    width: 100%;
  }

  .panel__header {
    width: 100%;
  }

  .block-topmenu {
    left: -240px;
  }

  .block-topmenu.active {
    left: 0;
  }

  .header {
    width: 100%;
    left: 0;
  }

  .header.active {
    width: calc(100% - 240px);
    left: 240px;
  }

  .block-topmenu_head {
    display: flex;
    align-items: center;
    position: static;
  }

  .block-topmenu_head.active {
    display: none;
  }

  .block-topmenu .sidebar-menu-btn {
    display: none;
  }

  .block-topmenu.active .sidebar-menu-btn {
    opacity: 1;
    pointer-events: all;
    display: flex;
  }

  .page-content {
    width: 100%;
  }

  .page-content.active {
    width: calc(100% - 240px);
  }

  .index-top {
    padding: 0 15px;
    flex-wrap: wrap;
  }

  .index-slider {
    width: 100%;
    border-radius: 12px;
  }

  .index-slider .swiper-slide {
    background-color: #f2f2f2;
    flex-direction: column;
    min-height: inherit;
  }

  .bg-swiper-slide {
    order: 2;
    margin-right: 0;
    padding: 16px;
  }

  .index-slider .swiper-slide .img-wrap {
    position: static;
    background-color: #e9d7d3;
    order: 1;
    opacity: 1;
    max-height: 200px;
    width: 100%;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .index-slider .swiper-slide .img-wrap img {
    max-height: 200px;
  }

  .index-slider .swiper-slide span.number-slide {
    display: none;
  }

  .index-slider .swiper-slide span.title-slide {
    font-size: 18px;
    text-align: left;
  }

  .index-slider .swiper-slide .btn-slider>* {
    width: 100%;
  }

  .slides-btns {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
  }

  .slides-btns .item {
    background: #e0e0e0;
    border-radius: 50%;
    width: 8px;
    min-height: 8px;
    font-size: 0;
    padding: 0;
    color: rgb(0, 0, 0, 0);
    margin: 0 4px;
    border-bottom: none;
  }

  .slides-btns .item.active {
    background: #d63741;
  }

  .slides-btns .item>* {
    display: none;
    font-size: 0;
  }

  .slides-btns .item::after {
    content: none;
  }

  .slides-btns {
    width: 100%;
    max-width: 100%;
  }

  .h-game-slide span {
    max-width: 100%;
  }

  .h-game-slide .game-info-desc {
    display: none;
  }

  .hover-game-slide .btn {
    padding: 5px 10px;
  }

  .hover-game-slide {
    padding: 0;
  }

  .head-one-category .head-btn {
    display: none;
  }

  .list-tabs-wrapper .header-search {
    margin-left: 0;
    width: calc(100% - 190px);
  }

  .list-tabs-wrapper .header-search input[type="search"] {
    background-color: #f3f5fc;
    max-width: 100%;
    width: 100%;
  }

  .subcat-select {
    background-color: #f3f5fc;
  }

  .TopSwiper .swiper-slide-active .img-wrap {
    bottom: 0;
  }

  .list-tabs-wrapper {
    background: none;
    padding: 0;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .list-tabs {
    width: 100%;
    align-items: center;
    background-color: #f3f5fc;
    padding: 0 15px;
    margin-top: 10px;
    min-height: 60px;
    order: 1;
    border-radius: 10px;
  }

  .head-subcat-select {}

  .footer-pay-logo {
    flex-wrap: wrap;
  }

  .index-banner {
    padding: 25px;
    min-height: 200px;
  }

  .list-anim-btn {
    margin: 0;
  }

  .list-anim-btn .anim-btn {
    width: calc(50% - 8px);
    margin-bottom: 15px;
  }

  .one-index-category {
    width: 100%;
  }

  .fixed-header {
    padding: 0 15px;
  }

  .fixed-header .container {
    background-image: none;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .parent-header-btn {
    justify-content: space-between;
  }

  .no-login-header-btn,
  .yes-login-header-btn {
    justify-content: space-between;
  }

  .container {
    padding: 0 15px;
  }

  .header-menu {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 23px;
  }

  .header-menu a {
    width: 100%;
    font-size: 15px;
    margin: 0;
    padding: 7px 0 7px;
  }

  .header-menu a,
  .header-menu a:hover,
  .header-menu a.active {
    border-bottom: none;
  }

  .header-menu a:hover,
  .header-menu a.active {
    color: #0c6fd5;
  }

  .reg-btn-topmenu {
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 15px;
  }

  .reg-btn-topmenu,
  .reg-btn-topmenu .auth-btn {
    display: flex;
  }

  .left-aside {
    margin-bottom: 15px;
    position: relative;
    z-index: 9;
  }

  .left-aside,
  .wrapper-left-aside {
    width: 100%;
  }

  .wrapper-left-aside {
    top: 0;
    position: static;
    height: auto;
    margin-bottom: 10px;
    overflow-y: hidden;
  }

  .main-aside {
    width: 100%;
  }

  .search-aside {
    padding: 10px 10px 0 10px;
    margin: 0 0 10px;
  }

  .modal-win#search .search-field {
    padding: 20px 15px;
  }

  .parent-search-list-game .list-game .parent-game-slide {
    width: calc(25% - 20px);
  }

  .dropdown-left-aside {
    width: calc(100% - 20px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 10px;
  }

  .one-dropdown-left-aside {
    width: calc(50% - 5px);
  }

  .one-dropdown-left-aside .head-subcat-select {
    width: 100%;
  }

  .one-dropdown-left-aside .subcat-select {
    padding: 6px 3px 6px 5px;
  }

  .one-dropdown-left-aside .subcat-select-drop {
    width: 100%;
    left: 0;
    margin-top: 15px;
    border-radius: 12px;
  }

  .none-mobile {
    display: none;
  }

  input[type="search"] {
    padding: 10px 14px 10px 36px;
  }








  .footer {
    padding-left: 0;
  }

}

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

    .popup2.jackpot-modal {
        background-image: url(../img/crypto-mobile.png);
        background-size: 400px auto;
        font-size: 14px;
    }
    
    .jackpot-modal__summ {
        font-size: 50px;
        line-height: 54px;
    }
  
  .file_chat_btn.btn.btn-success {
    font-size: 0;
    color: rgba(0,0,0,0);
    background: none;
    border: none;
    min-width: inherit;
    padding: 0;
    margin-right: 20px;
    line-height: normal;
  }
  
  .file_chat_btn svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #000;
  }
  
  .file_chat_btn path {
    fill: #000;
  }
  
  .mini-slider-win {
    padding: 40px 15px 20px;
  }

  .jack-rank {
    width: calc((100% - 20px) / 2);
  }

  .sides-blocks {
    flex-direction: column;
    margin-top: 40px;
  }

  .mini-slider-win {
    width: 100%;
  }

  .jackpot-right-text {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  #reg.modal-win.active {
    overflow: auto;
  }

  .header .header-balance {
    display: none;
  }

  .yes-login-header-btn .notification {
    margin-right: 0;
  }

  .content-modal-win .r-side {
    display: none;
  }

  .content-modal-win .l-side {
    max-width: 100%;
    min-height: calc(100% + 100px);
  }

  .no-login-header-btn .header-btn {
    display: none;
  }

  .logged-out-banner {
    flex-direction: column;
    padding: 0 15px;
  }

  .logged-out-banner__text-block {
    order: 1;
    text-align: center;
    padding-right: 0;
    width: 100%;
  }

  .logged-out-banner .btn {
    margin: 0 auto 16px;
  }

  .logged-out-banner img {
    width: 100%;
  }

  body.dark-theme .footer-menu .h-footer-menu {
    background-color: #323232;
  }

  .block-topmenu .header-btn {
    display: flex;
  }

  .items_tournament .list-game .parent-game-slide {
    width: calc((100% - 60px) / 3);
  }

  .top-filters__btn {
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 8px;
    display: flex;
  }

  .top-filters__btn:hover {
    background-color: #f2f2f2;
  }

  body.dark-theme .top-filters__btn:hover {
    background-color: #323232;
  }

  .top-filters__btn svg {
    width: 32px;
    height: 32px;
  }

  .head-one-category.filters {
    flex-wrap: wrap;
    align-items: center;
  }

  .top-filters {
    width: 100%;
    flex-wrap: wrap;
    display: none;
  }

  .top-filters.active {
    display: flex;
  }

  .top-filter {
    width: 100%;
    margin-top: 8px;
  }

  .top-filter+.top-filter {
    margin-left: 0;
  }

  .top-filter.active {
    z-index: 20;
  }

  .top-filters .dropdown {
    width: 100%;
  }

  .support-content.user-support-block {
    padding: 0 15px !important;
  }

  .themes-slides.game-swiper .swiper-slide {
    min-width: 345px;
  }

  .themes-slides .parent-game-slide:nth-child(8) {
    display: none;
  }

  .footer-menus .container {
    flex-direction: column;
  }

  .footer-copyright {
    order: 1;
    margin-top: 16px;
  }

  .footer-copyright,
  .footer-menu {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .footer-menu {
    margin-top: 4px;
    cursor: pointer;
  }

  .footer-menu .h-footer-menu {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-menu .h-footer-menu::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #1b1414;
    border-right: 1px solid #1b1414;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-top: -8px;
  }

  .footer-menu.active .h-footer-menu::after {
    transform: rotate(225deg);
    margin-top: 6px;
  }

  body.dark-theme .footer-menu .h-footer-menu::after {
    border-bottom: 1px solid #858585;
    border-right: 1px solid #858585;
  }

  .footer-menu {
    max-height: 45px;
    overflow: hidden;
  }

  .footer-menu.active {
    max-height: inherit;
    margin-bottom: 12px;
  }

  .footer-menu ul li a {
    font-size: 14px;
  }

  .footer {
    padding-bottom: 86px;
  }

  .game-swiper-wrapper.providers {
    display: none;
  }

  .block-bottom-links {
    display: none;
  }

  .block-bottom-links {
    display: none;
  }

  .footer-settings {
    display: none;
  }

  .block-topmenu .change-theme-color {
    display: flex;
    margin: 16px 0 0;
  }

  .block-topmenu .btn-lang {
    max-width: 100%;
  }

  .block-topmenu .btn-lang a svg {
    margin-left: auto;
  }

  .block-topmenu .laguage-wrapper {
    margin-left: auto;
    margin-top: 16px;
    display: block;
  }

  .block-topmenu .open-lang {
    position: static;
    margin-top: 8px;
    width: 100%;
  }

  .header.active {
    width: 100%;
    left: 0;
    height: 0;
    overflow: hidden;
    z-index: 22;
  }

  .block-topmenu_head.active {
    display: flex;
    align-items: center;
    position: static;
  }

  .block-topmenu.active .sidebar-menu-btn {
    opacity: 0;
    pointer-events: none;
    display: none;
  }

  .page-content.active {
    width: 100%;
  }

  .block-topmenu.active {
    max-width: 100%;
    width: 100%;
    background-color: #fff;
  }

  .block-topmenu .header-logo {
    display: none;
  }

  .block-topmenu .hellow-user {
    display: block;
  }

  .block-topmenu .partner-block {
    padding: 0;
    border: none;
    margin: 8px 0;
  }

  .block-topmenu .partner-block .top-block::after {
    background-color: #e0e0e0;
  }

  .level-block,
  .one-menu.filled a,
  .block-topmenu .partner-block .btn-block,
  .block-topmenu .partner-block .top-block {
    background-color: #f2f2f2;
  }

  .level-block__wrapper {
    background-color: #fff;
  }

  .one-menu.open-menu .one-open-menu a {
    padding: 8px 12px;
    border-radius: 8px;
  }

  .one-open-menu {
    margin-bottom: 8px;
  }

  .one-menu.open-menu {
    border: none;
  }

  .topmenu-else-links a {
    font-size: 16px;
  }

  .the-content {
    padding: 16px;
  }

  .the-content .text {
    width: 100%;
  }

  .the-content ul,
  .the-content ol {
    padding: 10px 10px 10px 20px;
  }

  .the-content h1 {
    font-size: 20px;
  }

  .game-swiper-wrapper>.swiper-button-next,
  .game-swiper-wrapper>.swiper-button-prev {
    display: none;
  }

  .block-topmenu .topmenu-wrap {
    padding-bottom: 86px;
  }

  .topmenu-wrap .logout-btn {
    background-color: #f2f2f2;
  }



  .game-swiper.dup3 .swiper-slide {
    width: calc(41% + 6px);
  }

  .mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
  }

  .mobile-bottom-menu .userstat {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    width: calc(100% - 88px)
  }

  .mobile-bottom-menu .text-header-balance {
    margin-left: 12px;
  }

  .mobile-bottom-menu .open-deposit {
    margin-left: auto;
    padding: 8px 10px;
  }

  .mobile-bottom-menu .open-deposit::after {
    content: '+';
    display: block;
    margin-left: 8px;
  }

  .mobile-bottom-menu .show-search,
  .mobile-bottom-menu .open-menu {
    display: flex;
    cursor: pointer;
  }

  .mobile-bottom-menu .open-menu svg+svg {
    display: none;
  }

  .mobile-bottom-menu .open-menu.active svg {
    display: none;
  }

  .mobile-bottom-menu .open-menu.active svg+svg {
    display: flex;
  }

  .mobile-bottom-menu .show-search svg,
  .mobile-bottom-menu .open-menu svg {
    width: 32px;
    height: 32px;
  }

  .mobile-bottom-menu .header-vip {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }

  .boost-block__wrapper>.title {
    text-align: center;
  }

  .boost-block__wrapper {
    padding: 24px 12px;
  }

  .block-topmenu_head>*:not(.mobile-logo) {
    display: none;
  }

  .boost-block__wrapper>img:nth-child(2) {
    height: 70%;
  }

  .game-swiper .swiper-slide {
    width: calc(41% + 6px);
  }

  .block-topmenu_head .mobile-logo {
    display: block;
    height: 48px;
  }

  .block-topmenu_head svg {
    width: auto;
  }

  header .header-search {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;
    max-width: 100%;
  }

  header .header-search.active {
    display: block;
  }

  .header-search .search-dropdown {
    height: calc(100vh - 174px);
    min-width: inherit;
    width: 100vw;
  }

  header .yes-login-header-btn .header-btn {
    display: none;
  }

  .header-search .search-filters .item {
    margin-left: 0;
  }


  .list-game.grid {
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .parent-swiper-navination {
    display: none;
  }

  .TopSwiper .bg-swiper-slide {
    text-align: center;
  }

  .one-index-category.one-row .parent-game-slide:nth-child(n+5),
  .one-index-category.two-rows .parent-game-slide:nth-child(n+9) {
    height: auto;
    pointer-events: all;
    margin: 10px;
  }

  .list-game .parent-game-slide {
    width: calc(33.33% - 20px);
  }

  .h-one-category {
    font-size: 20px;
  }

  .line-one-index-category {
    margin-top: -14px;
    margin-bottom: 8px;
  }

  .parent-banner-ihb {
    background-size: 170px 95px;
  }

  .index-banner {
    margin-bottom: 15px;
    padding: 15px;
    min-height: 135px;
  }

  .jp-summ {
    font-size: 66px;
    line-height: 180px;
    text-align: center;
  }

  .jp-summ .shadow {
    right: 0;
  }

  .index-banner a,
  .index-banner small {
    font-size: 12px;
    min-height: 30px;
  }

  .list-anim-btn .anim-btn div {
    padding: 15px;
    background-size: 52px 50px;
    background-position: calc(100% - 15px) 50%;
  }

  .h-game-slide {
    font-size: 16px;
  }

  .the-content {
    margin: 30px 0 30px;
    font-size: 13px;
  }

  .parent-search-list-game .list-game .parent-game-slide {
    width: calc(33.33% - 20px);
  }

  .head-tabs {
    flex-wrap: wrap;
    margin: 0 0 15px;
  }

  .jackpot-tabs {
    width: 100%;
    border: 1px solid #c5991e;
    padding: 10px 10px 3px 10px;
    min-height: auto;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .h-jackpot-tabs svg {
    width: 11px;
    height: 11px;
    margin: -2px 6px 0;
  }

  .jackpot-tabs span {
    font-size: 17px;
  }

  .summ-jackpot-tabs {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .jackpot-tabs .list-game .parent-game-slide {
    width: calc(25% - 6px);
    margin: 3px;
  }

  .jackpot-tabs .list-game .parent-game-slide:nth-child(4) {
    display: flex;
  }

  .head-tabs .index-slider {
    width: 100%;
  }

  .head-tabs .index-slider .swiper-slide {
    border-radius: 12px;
  }

  .head-tabs .index-slider {
    margin: 0;
  }

  .list-tabs {
    white-space: nowrap;
    overflow: auto;
  }

  .list-tabs a.router-link {
    margin: 0 6px 0 0;
    font-size: 13px;
    font-weight: 450;
    padding: 0;
    border-bottom: none;
  }

  .list-tabs a.router-link:hover,
  .list-tabs a.router-link.active {
    border-bottom: none;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 17px;
  }

  .header-btn {
    width: 100%;
  }

  .btn-slider a,
  .btn-slider small {
    padding: 5px 12px;
  }

  .footer-social {
    width: 100%;
    margin-bottom: 12px;
  }

  .footer-tournaments {
    width: 100%;
  }

  .footer-tournaments svg {
    height: 14px;
    margin: 0;
  }


}

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

  .h-game-btns {
    margin-top: 15px;
  }

  .swiper-wins .swiper-slide {
    width: 70%;
    justify-content: flex-start;
  }

  .swiper-wins .mini-img {
    margin-right: 25px;
  }

  .swiper-wins .mini-desc {
    max-width: calc(100% - 85px);
  }

  .leaderboard__slider.slider_leaderboard::after {
    right: -74px;
  }

  .leaderboard__slider.slider_leaderboard::before {
    left: -80px;
  }
}

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

  /* .file_chat_attachment{
    flex-wrap: wrap;
  } */
  .chat_textarea {
    width: 100%;
  }

  .file_chat_left {
    margin-left: auto;
  }

  .header-left {
    width: auto;
  }

  .header-logo {
    margin-left: 20px;
  }
}

@media screen and (max-width: 560px) {
    .jackpot-modal__summ {
        font-size: 60px;
        line-height: 65px;
        display: inline-block;
    }
    .popup2.jackpot-modal {
        padding: 0px 30px;
        text-align: center;
    }
  .jack-rank {
    width: 100%;
  }

  .items_tournament .list-game .parent-game-slide {
    width: calc((100% - 40px) / 2);
  }

  .modal-win .close-small {
    top: 30px;
  }

  .modal-win {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .modal-win.active#remind {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .parent-modal-win {
    height: 100vh;
  }

  .h-game-btns {
    margin-top: auto;
  }

  .leaderboard__slider.slider_leaderboard::after,
  .leaderboard__slider.slider_leaderboard::before {
    content: none;
  }

  .index-banner {
    background-position: left 25% center;
    background-size: auto 100%;
  }

  .jp-summ {
    font-size: 34px;
    line-height: 100px;
    min-height: auto;
  }

  .jp-summ .curr {
    font-size: 20px;
  }

  .header-right {
    margin-left: 0;
  }

  .yes-login-header-btn .btn {
    margin-left: 0;
  }

  .swiper-wins .swiper-slide {
    width: 100%;
    padding: 0 0 0 10px;
  }

  .index-slider .swiper-slide .img-wrap {
    width: 100%;
    left: 0;
    opacity: .7;
  }

  span.number-slide {
    opacity: 1;
  }

  .list-game .parent-game-slide {
    width: calc(50% - 20px);
  }

  .parent-search-list-game .list-game .parent-game-slide {
    width: calc(50% - 20px);
  }

  .header-btn {
    justify-content: space-between;
  }

  .header-btn .auth-btn,
  .header-btn .reg-btn {
    width: calc(50% - 5px);
  }

  .yes-login-header-btn .btn.open-deposit,
  .yes-login-header-btn a.btn.open-deposit {
    width: 100%;
  }

  .footer-support {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    text-align: center;
    order: 1;
  }

  .footer-support .btn {
    max-width: 200px;
    margin: 20px auto 0;
  }

  .details__btn {
    text-align: center;
  }
}

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

  .logged-out-banner__title {
    font-size: 40px;
  }

  .panel__title.panel__title_tournament.title {
    font-size: 21px;
  }

  .main__item {
    padding: 30px 10px 10px;
  }

  .panel.panel_tournament {
    padding: 10px;
  }

  .panel__countnote.title {
    font-size: 11px;
  }

  .panel__countdown {
    font-size: 12px;
  }

  .panel__countbutton {
    font-size: 10px;
  }

  .pannel__sides-bg {
    padding: 5px;
    width: 100%;
    justify-content: space-evenly;
  }

  .pannel__sides-bg svg {
    margin-right: 5px;
  }

  .timer__table .timer__row_digit .timer__cell {
    font-size: 12px;
  }

  .sides-line {
    margin: 0 5px;
  }

  .panel__caption {
    font-size: 16px;
  }

  .themes-slides.game-swiper .swiper-slide {
    min-width: 100%;
  }
}

@media screen and (max-height: 480px) {
    .popup2.jackpot-modal {
        background-image: url(../img/crypto-desctop.png);
        background-size: auto 95%;
        min-height: auto;
    }
    .popup2.jackpot-modal {
        font-size: 14px;
    }
    .jackpot-modal__summ {
        font-size: 60px;
        line-height: 64px;
    }
}

@media screen and (max-width: 425px) {
    .popup2.jackpot-modal {
        background-size: 300px auto;
    }
    
  .h-game-btns {
    margin-top: 15px;
  }

  .themes-slides .parent-game-slide:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 370px) {
  .h-game-btns {
    margin-top: auto;
  }

  .list-game.grid {
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }

  .list-game.grid .parent-game-slide:first-child {
    grid-row: 1 / 1;
    grid-column: 1 / 1;
  }

  .yes-login-header-btn .btn.open-deposit,
  .yes-login-header-btn a.btn.open-deposit {
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 10px;
  }

  .head-subcat-select {
    margin-left: 10px;
    width: 150px;
  }

  .list-tabs-wrapper .header-search {
    width: calc(100% - 160px);
  }

  .list-tabs-wrapper .header-search input[type="search"] {
    padding: 0 10px;
    background-position: right 10px center;
  }

  .head-subcat-select .subcat-select {
    padding: 0 10px;
  }

  .header-logo {
    margin-left: 10px;
  }

  .list-game .parent-game-slide {
    width: 100%;
  }

  .parent-search-list-game .list-game .parent-game-slide {
    width: 100%;
  }

  .modal-main-title {
    padding-bottom: 20px;
  }

  .modal-win#search .search-field {
    padding: 20px 15px;
  }
}

.gam_bonus_activated {
  display: contents;
  text-align: center;
}

.deactivate-bonus.bonus-panel__button.button.button_shape_round {
  color: #fff;
  background: #fd2d5e;
  padding: 7px 11px;
  font-weight: 300;
  font-size: 13px;
  cursor: pointer;
  margin: 10px 0 0;
  width: auto;
  text-align: center;
  border-radius: 10px;
  font-weight: 500;
  align-self: center;
}

body.dark-theme {
  background-color: #101010;
  color: #fff;
}

body.dark-theme .header {
  background-color: #101010;
}

body.dark-theme .block-topmenu {
  background-color: #1e1e1e;
}

body.dark-theme .one-menu a {
  color: #fff;
}

body.dark-theme .one-menu a:hover {
  color: #d63741;
}

body.dark-theme .block-topmenu .header-logo a {
  color: #fff;
}

body.dark-theme .sidebar-menu-btn {
  background-color: #1e1e1e;
}

body.dark-theme .block-topmenu .partner-block {
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
}

body.dark-theme .block-topmenu .partner-block .btn-block {
  background-color: #101010;
}

body.dark-theme .block-topmenu .partner-block .top-block {
  background-color: #101010;
}

body.dark-theme .block-topmenu .partner-block .top-block a .title {
  color: #fff;
}

body.dark-theme .one-menu.filled a {
  background-color: #101010;
}

body.dark-theme .footer .copyright_gambling_soft span {
  color: #fff;
}

body.dark-theme .footer .copyright_gambling_soft svg,
body.dark-theme .footer .copyright_gambling_soft svg g {
  fill: #d63741 !important;
}

body.dark-theme .footer .copyright_gambling_soft a {
  color: #d63741;
  border-color: #d63741;
}

body.dark-theme .the-content {
  background-color: #1e1e1e;
}

body.dark-theme .btn {
  color: #fff;
}

body.dark-theme .the-content .btn {
  background-color: #525252;
}

body.dark-theme .the-content .btn:hover {
  background-color: #606060;
}

body.dark-theme .h-one-category {
  color: #fff;
}

body.dark-theme .game-swiper-wrapper .swiper-button-next,
body.dark-theme .game-swiper-wrapper .swiper-button-prev {
  background-color: #1e1e1e;
}

body.dark-theme .game-swiper-wrapper .swiper-button-next:hover,
body.dark-theme .game-swiper-wrapper .swiper-button-prev:hover {
  background-color: #303030;
}

body.dark-theme .open-lang {
  background-color: #1e1e1e;
}

body.dark-theme .header-search .search-fiealdwrap {
  background-color: #1e1e1e;
  border: 1px solid #323232;
}

body.dark-theme .header-search .search-dropdown {
  background-color: #1e1e1e;
}

body.dark-theme .header-search .search-fiealdwrap input {
  color: #fff;
}

body.dark-theme .header-search .search-filters {
  border-bottom: 1px solid #323232;
}

body.dark-theme .game-stat-dropdown__wrapper {
  background-color: #1e1e1e;
}

body.dark-theme .game-stat-dropdown__wrapper::after {
  background-color: #1e1e1e;
}

body.dark-theme .game-stat-dropdown__wrapper .item:first-child {
  background-color: #101010;
}

body.dark-theme .content-modal-win .l-side {
  background-color: #1e1e1e;
}

body.dark-theme .content-modal-win .l-side .modal-logo {
  color: #fff;
}

body.dark-theme .content-modal-win .r-side {
  background-image: none;
  background-color: #101010;
}

body.dark-theme .content-modal-win .or-block::before,
body.dark-theme .content-modal-win .or-block::after {
  background-color: #323232;
}

body.dark-theme .modal-win input {
  background-color: #101010;
}

body.dark-theme input:not(.search-field) {
  color: #fff;
}

body.dark-theme .close-small svg {
  fill: #fff;
}

body.dark-theme .slides-btns {
  background-color: #1e1e1e;
}

body.dark-theme .slides-btns .item {
  border-bottom: 2px solid #323232;
}

body.dark-theme .level-block {
  background-color: #101010;
}

body.dark-theme .level-block__wrapper {
  background: #323232;
}

body.dark-theme span.number-slide,
body.dark-theme span.title-slide {
  color: #1b1414;
}

body.dark-theme .header-vip {
  border: 3px solid #323232;
}

body.dark-theme .block-topmenu .partner-block .top-block::after {
  background-color: #323232;
}

body.dark-theme .popup2.popup_undefined {
  background-color: #1e1e1e;
}

body.dark-theme .popup2.popup_undefined .tab__action-wrapper {
  background-color: #323232;
}

body.dark-theme .popup2.popup_undefined .tab__action a.tab__item.tab__item_active {
  background-color: #101010;
}

body.dark-theme .popup2.popup_undefined .tab__action a.tab__item {
  color: #fff;
}

body.dark-theme .popup2.popup_undefined .payment__item.payitem:hover {
  background-color: #101010;
}

body.dark-theme .popup2.popup_undefined .payment__tooltip.payment__tooltip_open {
  background-color: #1e1e1e;
}

body.dark-theme .popup2.popup_undefined .pay-tooltip__summ label {
  background-color: #101010;
}

body.dark-theme .popup2.popup_undefined .pay-limits-wrapper {
  background-color: #101010;
}

body.dark-theme .popup2.popup_undefined .pay-limits-wrapper .pay-limits {
  color: #fff;
}

body.dark-theme .popup2.popup_undefined .enter-pin {
  border-top: 1px solid #323232;
}

body.dark-theme .popup2.popup_undefined .pay-tooltip__input.input input,
body.dark-theme .popup2.popup_undefined .form-pin input:hover {
  box-shadow: 0 0 0 2px #323232 inset;
}

body.dark-theme .popup2.popup_undefined .pay-tooltip__input.input input,
body.dark-theme .popup2.popup_undefined .form-pin input {
  box-shadow: 0 0 0 1px #323232 inset;
}

body.dark-theme .popup2.popup_undefined .history__row {
  background-color: #323232;
}

body.dark-theme .top-filter .title-block {
  background-color: #1e1e1e;
}

body.dark-theme .top-filters .dropdown {
  background-color: #1e1e1e;
}

body.dark-theme .top-filter.providers .checkbox {
  border: 1px solid rgb(255 255 255 / 20%);
}

body.dark-theme .top-filter.categories .dropdown-item {
  border: 1px solid #323232;
}

body.dark-theme .exchange-rate {
  background-color: #1e1e1e;
}

body.dark-theme .mobile-bottom-menu {
  background-color: #1e1e1e;
}

body.dark-theme .mobile-bottom-menu .userstat {
  background-color: #101010;
}

/* body.dark-theme .one-menu.open-menu .one-open-menu a{
    background-color: #101010;
} */

body.dark-theme .topmenu-wrap .logout-btn {
  background-color: #525252;
  color: #fff;
}

body.dark-theme .topmenu-wrap .logout-btn:hover {
  background-color: #606060;
}

body.dark-theme .block-topmenu .btn-lang a {
  background-color: #101010;
}

body.dark-theme .block-topmenu .open-lang {
  background-color: #101010;
}

body.dark-theme .block-topmenu .open-lang a {
  color: #fff;
}

body.dark-theme .block-topmenu_head .mobile-logo {
  color: #fff;
}

body.dark-theme .vip-panel {
  background-color: #1e1e1e;
}

body.dark-theme .vip-panel:before {
  background-color: #1e1e1e;
}

body.dark-theme .panel.panel_tournament {
  background-color: #1e1e1e;
}

body.dark-theme .tours-slider .swiper-button-next,
body.dark-theme .tours-slider .swiper-button-prev {
  background-color: #1e1e1e;
}

body.dark-theme .tours-slider .swiper-button-next:hover,
body.dark-theme .tours-slider .swiper-button-prev:hover {
  background-color: #323232;
}

body.dark-theme .pannel__r-side {
  background-color: #323232;
}

body.dark-theme .panel__countdown {
  background-color: #101010;
}

body.dark-theme .timer__table .timer__row_digit .timer__cell:not(.symbol) {
  background-color: #101010;
  color: #fff;
}

body.dark-theme .panel__info-button .tournament-show {
  background-color: #323232;
  color: #fff;
}

body.dark-theme .btn-lang a {
  background-color: #1e1e1e;
}

body.dark-theme .open-lang a {
  color: #fff;
}

body.dark-theme .pannel__l-side .tour-type {
  background-color: #323232;
}

body.dark-theme .leaderboard__block {
  background-color: #1e1e1e;
}

body.dark-theme table.table.table_leaderboard .table__row td {
  background-color: #323232;
}

body.dark-theme table.table.table_leaderboard td span {
  background-color: #101010;
}

body.dark-theme .profile__main {
  background-color: #1e1e1e;
}

body.dark-theme .tab__action.head_action a:hover,
body.dark-theme .tab__action.head_action a.tab__item.tab__item_active {
  color: #fff;
}

body.dark-theme .profile-details {
  border-bottom: 1px solid #323232;
}

body.dark-theme input:not(.search-field) {
  box-shadow: 0 0 0 1px #323232 inset;
}

body.dark-theme input:not(.search-field):hover {
  box-shadow: 0 0 0 2px #323232 inset;
}

body.dark-theme .password-icon path {
  fill: #fff;
}

body.dark-theme .password-icon line {
  stroke: #fff;
}

body.dark-theme .tab-bonuses__item {
  background-color: #1e1e1e;
}

body.dark-theme .bonus-panel__action {
  background-color: #323232;
}

body.dark-theme .vip__l-side {
  background-color: #1e1e1e;
}

body.dark-theme .vip__action {
  background-color: #1e1e1e;
}

body.dark-theme .vip__cell:nth-child(3) .vip__subtitle {
  color: #858585;
}

body.dark-theme .vip__profile-heading {
  background-color: #323232;
}

body.dark-theme .vip__botom-side {
  background-color: #323232;
}

body.dark-theme .vip__description-wrap {
  background-color: #323232;
}

body.dark-theme .vip__botom-side .course {
  color: #fff;
}

body.dark-theme .vip__profile-img .outer-rings {
  opacity: .06;
}

body.dark-theme .vip__profile-img .inner-circle {
  opacity: .2;
}

body.dark-theme .vip__min-desc .l-side span {
  color: #fff;
}

body.dark-theme .vip__min-desc .r-side .main-text {
  color: #fff;
}

body.dark-theme .vip__min-desc .l-side {
  border-right: 1px solid #606060;
}

body.dark-theme .game-stat-dropdown__wrapper.static>div {
  background-color: #1e1e1e;
}

body.dark-theme .game-stat-dropdown__wrapper.static {
  background: none;
}

body.dark-theme .quick-deposit__dropdown.active {
  background-color: #323232;
}

body.dark-theme .wager-scale__wrap {
  background-color: #323232;
}

body.dark-theme .payments-block {
  color: #fff;
}

body.dark-theme .payments-block .tabs .tab {
  color: #fff;
}

body.dark-theme .payments-block .tabs .tab.active {
  color: #1b1414;
}

body.dark-theme .footer-copyright .title {
  color: #fff;
}

body.dark-theme .notes-withdraw-tab {
  border-top: 1px solid #323232;
}

body.dark-theme .head-one-category .view-all {
  color: #fff;
}

body.dark-theme .modal-win#search .search-field {
  background-color: #1e1e1e;
}

body.dark-theme .modal-win#search .search-field input {
  color: #fff;
  background-color: #101010;
}

body.dark-theme .popup2 .js-close-popup svg {
  fill: #fff;
}

body.dark-theme .cashback-notification {
  background: #101010;
}

body.dark-theme .popup2 table tbody tr:nth-child(2n) td {
  background: #1e1e1e;
}

body.dark-theme .level-block,
body.dark-theme .one-menu.filled a,
body.dark-theme .block-topmenu .partner-block .btn-block,
body.dark-theme .block-topmenu .partner-block .top-block {
  background-color: #101010;
}

body.dark-theme #history .tab__action-wrapper {
  background: #1e1e1e;
}

body.dark-theme #history .tab__action a.tab__item {
  color: #fff;
}

body.dark-theme .popup2.popup_undefined .tab__action a.tab__item.tab__item_active,
body.dark-theme #history .tab__action a.tab__item.tab__item_active {
  background: #101010;
}

body.dark-theme .profile__main,
body.dark-theme .history__main {
  background: #1e1e1e;
}

body.dark-theme .popup2.popup_undefined .history__row,
body.dark-theme .history__main .history__row {
  background: #101010;
}

body.dark-theme .file_chat_attachment_icon {
  fill: white;
}

body.dark-theme .chat_textarea {
  background-color: #1e1e1e;
  color: #fff;
}

body.dark-theme .chat_textarea::placeholder {
  color: #fff;
}

body.dark-theme .file_chat_attachment {
  background-color: #1e1e1e;
}

body.dark-theme .rules.page_content h2 font {
  color: #fff;
}

body.dark-theme .mini-slider-win {
  background-color: #1e1e1e;
}

body.dark-theme .password-control.view {
  filter: invert(.8);
}

body.dark-theme .game-page__title>span {
  background: #1e1e1e;
}

body.dark-theme .top-pannel-arrow .arrow {
  filter: none;
}

body.dark-theme .game-page__footer .btn:not(.red) {
  background-color: #1e1e1e;
  color: inherit;
}

body.dark-theme .game-swiper-wrapper.providers .swiper-slide {
  background-color: #1e1e1e;
}

body.dark-theme .wheel__desc-block .modal__content {
  background: linear-gradient(to bottom, #ffff00f0 0%, #1b1b6ced 100%);
}






















/*  dark theme  */