@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Regular.woff"), url("../fonts/WorkSans-Regular.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Medium.woff"), url("../fonts/WorkSans-Medium.woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Bold.woff"), url("../fonts/WorkSans-Bold.woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: white;
}

a,
button,
.hero-cards__item,
.info span,
.sitebar__link,
svg,
#full-screen {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: unset;
  vertical-align: baseline;
  cursor: pointer;
}

button {
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

svg rect {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  fill: #ffffff;
}

strong {
  font-weight: 600;
}

body {
  font-family: "Work Sans", sans-serif;
  display: flex;
  flex-direction: column;
}

body,
html {
  min-height: 100vh;
}

li a:hover button {
  color: rgb(240, 136, 0) !important;
}

.btn {
  width: 100%;
  max-width: 172px;
  padding: 12px 32px 12px 32px;
  gap: 0px;
  border-radius: 12px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 19.6px;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(180deg, rgb(255, 201, 28) 0%, rgb(240, 136, 0) 70%);
  cursor: pointer;
  transition: all 0.2s !important;
}
.btn:hover {
  filter: brightness(0.7);
}

.btn_sitebar {
  padding: 10px 0;
  background-color: inherit;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  background-color: #383838;
}
.btn_sitebar span {
  background: -webkit-linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.btn_sitebar:hover {
  filter: brightness(0.7);
}

.web-wraper-header {
  min-height: 95px;
}

.web-wraper-header,
.web-wraper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 16px;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.slick-slider {
  margin-bottom: 16px;
}

.slick-slide {
  margin-right: 20px !important;
  /* Adjust this value to change the margin */
}

.slick-list {
  margin-left: 20px !important;
  /* Adjust this value to match the margin set above */
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-prev {
  left: -10px !important;
}
.slick-prev:before {
  background-image: url("../img/icons/arrow-prev.svg");
  background-size: 25px 25px;
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "" !important;
}

.slick-next {
  right: -5px !important;
}
.slick-next:before {
  background-image: url("../img/icons/arrow-next.svg");
  background-size: 25px 25px;
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "" !important;
}

.header {
  background-color: rgb(44, 44, 44);
  min-height: 89px;
}
.header__logo {
  height: auto;
  max-width: 300px;
  display: flex;
  max-height: 100px;
}
.header__menu {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 30;
  flex-direction: column;
  text-align: center;
  width: 100%;
  left: 0;
  background-color: rgb(44, 44, 44);
  height: 100vh;
}
.header__menu .links {
  margin: 0 auto;
}
.header__menu .links li a,
.header__menu .games-link li a {
  display: block;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.77px;
  letter-spacing: -0.02em;
}
.header__menu .links li a:hover,
.header__menu .games-link li a:hover {
  color: rgb(240, 136, 0);
}
.header__menu .games-link {
  display: none;
  position: absolute;
}
.header__menu #games {
  position: relative;
}
.header__menu #games svg {
  animation: spin 3s infinite;
  transform: rotate(90deg);
  margin-left: 5px;
}
.header__menu #games .svg-active {
  transform: rotate(180deg);
}
.header__menu .games-link {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
  max-width: 1600px;
  background-color: rgb(33, 33, 33);
  padding: 20px 0;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 100;
  top: 6%;
  left: 0;
  width: 100%;
  gap: 10px;
  z-index: -1;
}
.header__menu .games-link a {
  padding: unset !important;
}
.header__menu .games-link.active {
  display: grid;
  opacity: 1;
  z-index: 100;
  height: 100vh;
  padding: 20px 0 300% 0;
}
.header__sl-nav {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  padding: 10px;
  width: fit-content;
  position: relative;
  font-size: 13px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.header__sl-nav li a:hover {
  color: unset !important;
}
.header__sl-nav .dp-arrow {
  height: 7px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.header__sl-nav .drop-list {
  display: none;
}
.header__sl-nav .active-drop,
.header__sl-nav .drop-list {
  position: absolute;
  top: 57px;
  right: -4px;
  background: #fff;
  width: max-content;
  padding-top: 0;
  z-index: 1;
}
.header__sl-nav .sl-flag,
.header__sl-nav .flag {
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.header__sl-nav .flag {
  margin-right: 6px;
  object-fit: cover;
}
.header__sl-nav .dp-arrow-active {
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header__sl-nav .triangle {
  display: none;
  position: absolute;
  top: 44px;
  right: 30px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: 0 0;
}
.header__sl-nav .show-triangle {
  display: block;
}
.header__sl-nav .triangle:after {
  content: "";
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0 0;
}
.header__sl-nav .drop-list li {
  position: relative;
  text-align: left;
  background: 0 0;
  padding: 6px 15px;
  z-index: 2;
  font-size: 15px;
  color: #000;
}
.header__sl-nav i ul li span {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.5px;
  text-align: left;
  padding-left: 5px;
}
.header__sl-nav .block-active a,
.header__sl-nav .block-active a:hover,
.header__sl-nav li ul li span.active,
.header__sl-nav li ul li span:hover {
  color: #000;
}
.header__sl-nav .sl-flag {
  display: inline-block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  position: relative;
  top: 2px;
  overflow: hidden;
}
.header__sl-nav__flag {
  margin-right: 5px;
}
.header__sl-nav .flag-de {
  background: url("../img/en-flag.svg") center center/contain;
}
.header__sl-nav .flag-austria {
  background-size: contain !important;
  background: url("../img/it-flag.svg");
}
.header__sl-nav .it-tittle {
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin: 50px 0 15px;
}
.header__sl-nav .block-active {
  padding: 5px 5px;
  display: block !important;
}
.header__sl-nav .block-active li:hover {
  background: #f3f3f3;
}
.header__sl-nav .block-active li:active {
  background: #e1e1e1;
}
.header__sl-nav .active-drop,
.header__sl-nav ul,
.header__sl-nav .triangle:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: block;
}
.header__sl-nav .active-drop,
.header__sl-nav ul {
  position: absolute;
  top: 27px;
  right: -4px;
  background: #fff;
  width: max-content;
  padding-top: 0;
  z-index: 1;
}
.header .show {
  display: flex;
  align-items: center;
}
.header__menu-button {
  display: block;
  padding: 10px;
  width: 40px;
  height: 40px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 15px;
}
.header .active svg rect:nth-child(1) {
  x: -2px;
  y: 6px;
  width: 20px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.header .active svg rect:nth-child(2) {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0, 2);
  -moz-transform: scale(0, 2);
  -o-transform: scale(0, 2);
  transform: scale(0, 2);
}
.header .active svg rect:nth-child(3) {
  x: -2px;
  y: 6px;
  width: 20px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

main {
  overflow: hidden;
  background-color: rgb(33, 33, 33);
  height: 100%;
}
main h1 {
  font-size: 34px;
}
main .single {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  justify-content: center;
}
main .single .text-container {
  padding: 0 16px;
  z-index: 2;
  margin: 0 auto;
  max-width: 1600px;
  text-align: center;
}
main .single h1,
main .single p {
  color: #fff;
}
main .single p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: center;
  margin-bottom: 20px;
}
main .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  filter: blur(10px);
  background-size: cover;
  background-position: center;
}
main .content {
  padding: 16px;
  /* Core styles/functionality */
  /* Visual styles */
  /* Arrow animation */
}
main .content h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 39.88px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
}
main .content h3,
main .content h4 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  line-height: 32.84px;
  letter-spacing: -0.02em;
  text-align: center;
}
main .content h4 {
  font-size: 24px;
}
main .content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  font-weight: 500;
}
main .content a {
  color: #1766FF;
}
main .content__video-block {
  position: relative;
  cursor: pointer;
}
main .content__video-block .video-link {
  display: flex;
  max-height: 434px;
  margin-bottom: 24px;
}
main .content__video-block .video-link img {
  object-fit: cover;
}
main .content__video-block img:first-child {
  filter: brightness(0.7);
}
main .content__video-block .ytb-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
main .content__pic {
  height: 44vw;
  object-fit: cover;
  max-height: 434px;
  width: 100%;
  margin-bottom: 24px;
}
main .content__pic__original {
  height: unset;
}
main .content__best-offers-container,
main .content #popupCasinoList,
main .content .casinoCards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
main .content__best-offers-container span:not(:has(span)):not(.btn),
main .content #popupCasinoList span:not(:has(span)):not(.btn),
main .content .casinoCards span:not(:has(span)):not(.btn) {
  border: 2px solid green;
  display: none;
}
main .content__best-offers-container span span,
main .content #popupCasinoList span span,
main .content .casinoCards span span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .content__best-offers-container .best-offer,
main .content #popupCasinoList .best-offer,
main .content .casinoCards .best-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(44, 44, 44);
  color: #fff;
  padding: 15px 30px;
  border-radius: 16px;
  height: 100%;
  width: 100%;
}
main .content__best-offers-container .best-offer__title,
main .content #popupCasinoList .best-offer__title,
main .content .casinoCards .best-offer__title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.15px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 13px;
  min-height: 45px !important;
}
main .content__best-offers-container .best-offer__image,
main .content #popupCasinoList .best-offer__image,
main .content .casinoCards .best-offer__image {
  padding: 19px 26px;
  margin-bottom: 13px;
}
main .content__best-offers-container .best-offer__image img,
main .content #popupCasinoList .best-offer__image img,
main .content .casinoCards .best-offer__image img {
  height: 51px;
}
main .content__best-offers-container .best-offer__content,
main .content #popupCasinoList .best-offer__content,
main .content .casinoCards .best-offer__content {
  margin-bottom: auto;
}
main .content__best-offers-container .best-offer span:nth-child(1),
main .content__best-offers-container .best-offer span:nth-child(2),
main .content #popupCasinoList .best-offer span:nth-child(1),
main .content #popupCasinoList .best-offer span:nth-child(2),
main .content .casinoCards .best-offer span:nth-child(1),
main .content .casinoCards .best-offer span:nth-child(2) {
  height: 100%;
}
main .content__best-offers-container .best-offer:not(:has(span span)),
main .content #popupCasinoList .best-offer:not(:has(span span)),
main .content .casinoCards .best-offer:not(:has(span span)) {
  display: none;
}
main .content__best-offers-container__cards-pic,
main .content #popupCasinoList__cards-pic,
main .content .casinoCards__cards-pic {
  width: 100%;
}
main .content__best-offers-container__name,
main .content #popupCasinoList__name,
main .content .casinoCards__name {
  text-align: center;
  font-size: 14px;
}
main .content__best-offers-container #casinoCards li,
main .content #popupCasinoList #casinoCards li,
main .content .casinoCards #casinoCards li {
  transition: 0.2s ease;
}
main .content__best-offers-container #casinoCards li a,
main .content #popupCasinoList #casinoCards li a,
main .content .casinoCards #casinoCards li a {
  display: block;
}
main .content__best-offers-container #casinoCards li h4,
main .content #popupCasinoList #casinoCards li h4,
main .content .casinoCards #casinoCards li h4 {
  transition: 0.2s ease;
  color: #000;
  margin-bottom: unset;
}
main .content__best-offers-container #casinoCards li:hover,
main .content #popupCasinoList #casinoCards li:hover,
main .content .casinoCards #casinoCards li:hover {
  filter: brightness(0.7);
}
main .content__best-offers-container #casinoCards li:hover h4,
main .content #popupCasinoList #casinoCards li:hover h4,
main .content .casinoCards #casinoCards li:hover h4 {
  transform: scale(1.1);
}
main .content #popupCasinoList {
  display: flex;
  justify-content: center;
}
main .content .tab {
  margin-bottom: 15px;
}
main .content .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
main .content .tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
  background: rgb(44, 44, 44);
  border-radius: 0 0 16px 16px;
  color: #fff;
}
main .content .tab input:checked ~ .tab__content {
  max-height: 10rem;
}
main .content .accordion {
  overflow: hidden;
}
main .content .tab__label {
  border-radius: 16px;
  justify-content: space-between;
  padding: 1rem;
  transition: all 2s;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.46px;
  letter-spacing: -0.02em;
}
main .content .tab__label,
main .content .tab__close {
  display: flex;
  color: white;
  background: rgb(44, 44, 44);
  cursor: pointer;
}
main .content .tab__label::after {
  content: url("../img/icons/arrow-drop.svg");
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
main .content .tab input:checked + .tab__label::after {
  transform: rotate(180deg);
}
main .content input:checked + label {
  border-radius: 16px 16px 0 0;
  transition: all 0s;
}
main .content .tab__content p {
  margin: 0;
  padding: 1rem;
}
main .content .tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
main .content .accordion--radio {
  --theme: var(--secondary);
}
main .content .tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  25% {
    transform: translateY(0.25rem);
  }
  75% {
    transform: translateY(-0.25rem);
  }
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) {
  padding-left: 16px;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) ol {
  margin-top: 15px;
  padding-left: 10px;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) ol li {
  list-style: unset;
  padding-left: 28px;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) ol li ul {
  margin-top: 8px;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) ol li::before {
  font-size: 20px;
  top: 2px;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) li {
  list-style: none;
  font-size: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: -0.05em;
  text-align: left;
  list-style-type: disc;
}
main .contant-main ul:not(#casinoAllList):not(#casinoCards) li:before {
  font-size: 30px;
  vertical-align: middle;
  line-height: 20px;
  position: absolute;
  left: 0;
}
main .contant-main ol ul {
  margin-top: 15px;
}
main .contant-main ol ul li {
  padding: unset;
}
main .contant-main ol ul li::before {
  content: unset;
}
main .contant-main ol li {
  counter-increment: item;
  margin-bottom: 5px;
  font-size: 14px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: -0.05em;
  text-align: left;
}
main .contant-main ol li:before {
  margin-right: 10px;
  content: counter(item);
  content: counter(item) ". ";
  border-radius: 100%;
  color: #2c2c2c;
  width: 10px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.5px;
  text-align: left;
  left: 2px;
  position: absolute;
  top: -2px;
  transform: translate(0, 0);
}
main .contant-main p img {
  width: 100%;
}
main .game {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 6px;
  padding: 3px;
  background-image: linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
  min-height: 303px;
}
main .game h1 {
  font-family: Work Sans;
  font-size: 28px;
  font-weight: 700;
  line-height: 32.84px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #ffffff;
  padding: 6px 0;
  background-color: rgb(44, 44, 44);
  border-radius: 4px 4px 0 0;
  position: relative;
  margin-bottom: unset;
}
main .game h1 img {
  position: absolute;
  right: 10px;
  top: 35%;
  z-index: 10;
  cursor: pointer;
}
main .game__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
main .game__frame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 47px 3px 3px;
  z-index: 10;
}
main .game__bg {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.4);
  border-radius: 0 0 4px 4px;
}
main .game__button {
  font-family: "Inter", sans-serif;
  z-index: 2;
  display: flex;
  width: 100%;
  padding: 15px 0;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  line-height: 22.4px;
  letter-spacing: -0.02em;
  display: none;
}
main .game__button:nth-child(2) {
  margin-bottom: 15px;
  max-width: 272px;
}
main .game__button:nth-child(3) {
  max-width: 216px;
}
main .game-fullscrn {
  width: 100% !important;
  height: 58vh;
}
main .prime {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
main .prime__rotate {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
main .prime__rotate img {
  max-width: 60px;
  width: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
main .pime-fullscrn {
  padding-bottom: 100vh;
  position: absolute;
  background-color: rgb(44, 44, 44);
  left: 0;
  top: 0;
  z-index: 50;
  max-width: unset !important;
  width: 100%;
  position: fixed;
  padding-bottom: 100vh !important;
  gap: 5px !important;
}
main .carousel {
  width: 100%;
  min-height: 241px;
}
main .carousel__item {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background-color: rgb(44, 44, 44);
  padding: 20px 29px !important;
}
main .carousel__item img {
  max-height: 98px;
  margin-bottom: 18px;
}
main .carousel__item .item {
  padding: 20px;
}
main .carousel__item .item__title {
  font-family: "Work Sans", sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.15px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 18px;
}
main .info {
  background-color: rgb(44, 44, 44);
  border-radius: 15px;
  width: 100%;
  border-radius: 16px;
  padding: 1px;
  background-image: linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
}
main .info span {
  display: block;
  font-family: Work Sans;
  font-size: 24px;
  font-weight: 700;
  line-height: 23.46px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  background-color: rgb(44, 44, 44);
  border-radius: 16px;
}
main .info span svg {
  margin-left: 15px;
}
main .info span .svg-active {
  transform: rotate(180deg);
}
main .info .active {
  display: flex;
}
main .info .border-active {
  border-radius: 16px 16px 0 0;
}
main .info table {
  width: 100%;
  display: none;
}
main .info tbody {
  width: 100%;
}
main .info tr {
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgb(240, 136, 0);
  background-color: rgb(44, 44, 44);
}
main .info tr:first-child {
  border-top: 1px solid rgb(240, 136, 0);
}
main .info tr:last-child {
  border: unset;
  border-radius: 0 0 16px 16px;
}
main .info tr td {
  font-size: 14px;
  line-height: 22.5px;
  text-align: left;
  padding: 15px;
  width: 50%;
}
main .info tr td:first-child {
  font-weight: 700;
}
main .info tr td:last-child {
  font-weight: 400;
  background: -webkit-linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: end;
}
main .table_main tr:first-child {
  border-radius: 16px 16px 0 0;
}
main .table_main table {
  display: flex;
}
main .info-full-scrn {
  display: none !important;
}
main .hero-cards {
  background-image: linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
  border-radius: 6px;
  padding: 3px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
main .hero-cards img {
  width: 100vw;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
main .hero-cards li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
main .hero-cards li:hover .link {
  filter: brightness(0.7);
}
main .hero-cards li:has(ul) {
  display: flex;
  color: #fff;
  background-color: rgb(44, 44, 44);
  padding: 13px 10px;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}
main .hero-cards li:has(ul) a {
  display: flex;
}
main .hero-cards li:has(ul):last-child {
  border-bottom: unset;
}
main .hero-cards li:has(ul):hover button {
  filter: brightness(0.7);
}
main .hero-cards li:has(ul):active button {
  filter: brightness(0.5);
}
main .hero-cards .hero-cards_item-full-scrn {
  background-color: unset;
  border-bottom: unset !important;
}
main .hero-cards .link {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.46px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3px;
  text-align: start;
  width: 100%;
  color: #fff;
  text-align: center;
}
main .hero-cards .link::after {
  content: "";
  position: absolute;
  inset: 0;
}
main .hero-cards .right-fullscrn {
  display: none;
}
main .slider-links {
  border: 2px solid red;
}
main .slider-links .slick-prev {
  left: 2px !important;
}
main .slider-links .slick-next {
  right: 6px !important;
}
main .hero-cards-fullscrn {
  background: unset;
}
main .block-fullscrn {
  display: flex;
  flex-direction: row;
  width: 100%;
}
main .contant-wraper {
  background-color: #fff;
}
main .contant-wraper .sitebar {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 0 16px 16px;
  gap: 25px;
}
main .contant-wraper .sitebar__info-title {
  font-family: Work Sans;
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 23.46px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000;
  text-align: center;
  margin-bottom: 15px;
}
main .contant-wraper .sitebar__block {
  top: 30px;
  border-radius: 16px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) {
  border: 1px solid rgb(240, 136, 0);
  background-color: #383838;
  border-radius: 8px;
  padding: 0 15px 15px 15px;
  margin-bottom: 15px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: unset !important;
  background-color: rgb(44, 44, 44);
  padding: 13.5px 15px;
  border-radius: 8px 8px 0 0;
  margin: 0 -15px 10px -15px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header__block .star {
  width: 13px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header__block .logo {
  width: 126px;
  object-fit: contain;
  margin-right: 10px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header__block p {
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header .star-container {
  display: flex;
  justify-content: space-between;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) .header .star-container .star {
  display: flex;
  width: 15px;
  height: 15px;
  background-image: url("../img/icons/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 3px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 21.11px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) ul {
  margin-right: auto;
  margin-left: 20px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) ul li {
  list-style-image: url(../img/icons/check.svg);
  padding-inline-start: 0.5ch;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: -0.05em;
  margin-bottom: 7px;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) ul li::before {
  margin-right: 15px;
  top: 3px;
  position: relative;
}
main .contant-wraper .sitebar #popularCasino li:has(ul) div:nth-child(4) {
  background-image: linear-gradient(rgb(255, 201, 28), rgb(240, 136, 0));
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-top: 15px;
}
main .web-wraper-main table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
  margin-bottom: 15px;
}
main .web-wraper-main table thead tr th {
  padding: 15px 0;
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
main .web-wraper-main table,
main .web-wraper-main td,
main .web-wraper-main th {
  border: 0.5px solid;
}
main .web-wraper-main tbody {
  width: 100%;
}
main .web-wraper-main tbody tr td {
  padding: 15px 0;
  flex: 1;
  text-align: center;
}
main h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 49.27px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 8px;
  text-align: center;
}

footer {
  background-color: rgb(44, 44, 44);
}
footer .footer__content {
  background-color: rgb(44, 44, 44);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px 16px 16px;
}
footer .footer__content p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.05em;
  text-align: center;
  color: #fff;
  margin: 0 -16px -16px;
  padding: 16px;
  width: 100vw;
}
footer .footer__logo {
  height: auto;
  max-width: 300px;
  display: flex;
  margin-bottom: 24px;
}
footer .footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
footer .footer__menu .menu__head_link {
  font-weight: 900;
  font-size: 16px;
}
footer .footer__menu .menu__head_link:hover {
  color: #fff !important;
}
footer .footer__menu a {
  color: #fff;
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: -0.05em;
  text-align: left;
}
footer .footer__moderation-title {
  font-family: "Work Sans", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.46px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}
footer .footer__moderation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}
footer .footer__moderation li {
  display: flex;
  height: 35px;
}

.to-top {
  position: fixed;
  bottom: 40px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 10em;
  z-index: 1;
  background: linear-gradient(180deg, rgb(255, 201, 28) 0%, rgb(240, 136, 0) 70%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 121px 16px !important;
}
.not-found h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 32.84px;
  letter-spacing: -0.02em;
  text-align: center;
}
.not-found h1,
.not-found img {
  margin-bottom: 24px;
}
.not-found .btn {
  max-width: 202px !important;
  padding: 15px 0 !important;
}

.popup-container {
  display: none;
  padding: unset !important;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  display: none;
  max-width: unset !important;
  overflow-y: auto;
}
.overlay .popup {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px;
  border-radius: 5px;
  box-sizing: border-box;
  background: #212121;
  color: #fff;
  border: 2px solid #FFC91C;
  margin: 50px 0;
  max-width: 300px;
}
.overlay h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.11px;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration-skip-ink: none;
  margin-bottom: 15px;
}
.overlay .close-btn {
  position: absolute;
  right: -30px;
  top: -35px;
}
.overlay #popupCasinoList li span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overlay #popupCasinoList .best-offer {
  padding: 16px !important;
  max-width: 248px;
}
.overlay #popupCasinoList .best-offer__image {
  padding: unset !important;
}
.overlay #popupCasinoList .best-offer__title {
  font-size: 16px !important;
  min-height: unset !important;
}

/* Visible state */
.overlay.visible {
  display: flex;
  opacity: 1;
}

@media (min-width: 834px) {
  main .contant-main {
    padding-top: 16px;
  }
  main .content {
    padding: 0 30px;
  }
  main .content h2,
  main .content h3,
  main .content h4 {
    text-align: start;
    margin-bottom: 8px;
  }
  main .content p {
    font-size: 16px;
    text-align: justify;
  }
  main .contant-main ol li,
  main .contant-main ul:not(#casinoAllList):not(#casinoCards) li {
    font-size: 16px;
  }
  main .contant-wraper .sitebar {
    padding: 0 30px 30px;
  }
  main .game h1 {
    font-size: 34px;
  }
  main .prime {
    padding: 18px;
  }
  main .prime__rotate {
    display: none;
  }
  main .carousel {
    min-height: unset;
  }
  main .carousel__item {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 29px !important;
  }
  main .carousel .item__title, main .carousel .item__pic {
    margin-bottom: unset;
  }
  main .faq {
    margin-bottom: 15px;
  }
  main .faq h2 {
    font-size: 34px;
  }
  main .faq .tab__label {
    font-size: 24px;
  }
  footer .footer__content {
    padding: 26px 30px 0px 16px;
  }
  footer .footer__content p:nth-of-type(1) {
    line-height: 23px;
    margin: 0 -30px;
    padding: 30px 30px 20px;
  }
  footer .footer__content p:nth-of-type(2) {
    padding: unset;
    margin: unset;
    width: 100vw;
    padding-bottom: 26px;
  }
  footer .footer__menu {
    display: unset;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
  footer .footer__menu .menu__head_link {
    font-size: 20px;
  }
  footer .footer__menu a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .web-wraper-header {
    padding: 12px 80px;
  }
  .header__menu-button {
    display: none;
  }
  .header__menu {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: unset;
  }
  .header__menu ul {
    display: flex;
    justify-content: center;
    height: unset;
    margin: 0;
  }
  .header__menu .games-link {
    top: 122%;
    left: -80px;
    width: 107%;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
  }
  .header__menu .games-link.active {
    justify-content: start;
    height: unset;
    padding: 20px 0;
  }
  main .web-wraper-main {
    background-color: #fff;
  }
  main .single {
    align-items: center;
    align-content: center;
    min-height: 300px;
    padding: unset;
  }
  main .single .text-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
    text-align: start;
    width: 100%;
  }
  main .single h1 {
    text-align: start;
  }
  main .single p {
    text-align: start;
    font-size: 16px;
    width: calc(100% - 363px);
    text-align: justify;
  }
  main .content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0 25px 0;
  }
  main .content__best-offers-container {
    max-width: 952px;
    gap: 30px;
    max-width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
  main .content__best-offers-container .best-offer__title {
    min-height: 85px !important;
  }
  main .content .popup {
    margin: unset;
    padding: 28px !important;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
  }
  main .content .popup h5 {
    font-size: 34px;
    line-height: 39.88px;
    letter-spacing: -0.02em;
  }
  main .content .popup #popupCasinoList {
    display: flex;
    justify-content: center;
  }
  main .content .popup #popupCasinoList .best-offer {
    max-width: 272px !important;
  }
  main .content .popup #popupCasinoList .best-offer__image img {
    height: 89px !important;
  }
  main .content .popup #popupCasinoList .best-offer__title {
    font-size: 24px !important;
  }
  main .contant-main {
    padding-top: 0;
    width: 75%;
  }
  main .contant-main ol li {
    font-size: 16px;
  }
  main .contant-main ul:not(#casinoAllList):not(#casinoCards) {
    padding-left: 22px !important;
  }
  main .contant-main ul:not(#casinoAllList):not(#casinoCards),
  main .contant-main ol {
    margin-bottom: 25px;
  }
  main .contant-main ul:not(#casinoAllList):not(#casinoCards) li,
  main .contant-main ol li {
    margin-bottom: 15px !important;
  }
  main .contant-wraper {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 80px;
    gap: 25px;
  }
  main .contant-wraper .sitebar {
    display: flex;
    max-width: 343px;
    padding: unset;
  }
  main .prime {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px 80px;
    gap: 25px;
    overflow: scroll;
  }
  main .prime::-webkit-scrollbar {
    display: none;
  }
  main .prime .game {
    order: 1;
    min-height: 614px;
  }
  main .prime .game-fullscrn {
    width: 86.5% !important;
    height: 80vh;
  }
  main .prime .hero-cards {
    order: 3;
  }
  main .prime .carousel {
    order: 2;
  }
  main .prime .info {
    order: 4;
  }
  main .game {
    width: 80%;
    margin: 0 auto;
  }
  main .game h1 {
    font-size: 28px;
    line-height: 44.57px;
  }
  main .game #full-screen {
    top: 16px;
  }
  main .game #full-screen.full {
    top: 20px;
  }
  main .game__banner {
    height: 100%;
  }
  main .game__frame {
    padding: 59px 3px 3px;
  }
  main .game__button {
    display: flex;
  }
  main .hero-cards {
    display: flex;
    flex-direction: row;
    max-width: unset;
    margin: unset;
    justify-content: space-around;
  }
  main .hero-cards img {
    margin-bottom: unset;
  }
  main .hero-cards li:has(ul) {
    width: 100% !important;
    padding: 20px 10px;
    justify-content: flex-start;
  }
  main .hero-cards .link {
    display: none;
  }
  main .hero-cards-fullscrn li:has(ul) {
    height: 24%;
    padding: unset;
  }
  main .hero-cards-fullscrn img {
    width: 100%;
    max-height: unset;
  }
  main .block-fullscrn {
    width: 13%;
    flex-direction: column;
  }
  main .faq .tab__label {
    font-size: 28px;
  }
  footer .footer {
    background-color: rgb(44, 44, 44);
  }
  footer .footer__content {
    padding: 25px 80px 0 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .footer__content p {
    text-align: justify;
    margin: 0 auto;
    margin: 0 -80px !important;
    width: 100vw;
    text-align: center;
  }
  footer .footer__content p:nth-of-type(1) {
    padding: 16px 80px 16px;
  }
  footer .footer__content p:nth-of-type(2) {
    padding-bottom: 16px;
  }
  footer .footer__menu a {
    margin-bottom: 10px;
  }
  footer .footer__menu .menu__head_link {
    margin-bottom: 16px;
  }
  footer .footer__moderation-title {
    text-align: start;
  }
  footer .footer__moderation {
    justify-content: flex-start;
  }
  footer .footer__logo, footer .footer__menu, footer .footer__moderation-container {
    width: 33.33%;
  }
  footer .footer__logo {
    width: 20%;
    max-width: unset;
  }
  .to-top {
    right: 80px;
  }
}