/*style resetting*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*style resetting*/

body {
  font-family: "Cabin", sans-serif;
  color: #f3eff4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.auth_header {
  /*background: linear-gradient(90deg, #191819 39%, rgba(155, 79, 252, 0.8) 94.5%),*/
  /*linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));*/
  background: #ffffff;
  padding: 29px 0;
}
.auth_header_logo__wrapper {
  width: 325px;
  height: 70px;
  margin: 0 auto;
}
.auth_header_logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth_container_left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth_container_left img {
  width: 70%;
}
.auth_container_right {
  width: 40%;
  display: flex;
  align-items: center;
  /*border: 2px solid white;*/
}
.auth_container {
  font-family: "Poppins", sans-serif;
  background: #1f1f1f;
  min-height: 100vh;
}
.auth_row {
  display: flex;
  justify-content: center;
  gap: 95px;
  padding: 35px 10px;
  max-width: 1440px;
  margin: 0 auto;
}
.auth_btns {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.auth_form {
  width: 100%;
  margin-top: 40px;
}
.auth__header {
  margin-top: 20px;
  margin-bottom: 50px;
}
.auth__title {
  font-weight: 500;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 22px;
}
.auth__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}
.auth__link {
  text-decoration: none;
  font-weight: 600;
  color: gold;
  transition: all 0.3s ease-in-out;
}
.auth_field__container {
  margin-bottom: 40px;
  width: 90%;
}
.auth__label {
  font-size: 13px;
  margin-bottom: 15px;
  display: inline-block;
}
.auth__input {
  font-weight: 400;
  font-size: 16px;
  padding-left: 27px;
  padding-bottom: 7px;
  background-color: transparent;
  border: none;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 100%;
  box-sizing: border-box;
}
.auth__input:focus {
  outline: none;
}
.auth__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.auth_input__container {
  position: relative;
}
.auth_input__icon {
  position: absolute;
  left: 0;
  bottom: 11px;
  width: 15px;
}
.toggle_password {
  position: absolute;
  right: 7px;
  bottom: 7px;
}
.toggle_password:hover {
  cursor: pointer;
}
.auth_select {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 7px;
  width: 100%;
  color: #ffffff;
}
.auth_select:hover {
  cursor: pointer;
}
.select_arrow {
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 15px;
}
.select_arrow {
  cursor: pointer;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.auth__btn {
  width: 90%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 15px;
  border-radius: 10px;
  font-weight: 700;
  color: #ffffff;
  font-size: 17px;
  border: 2px solid white;
}
.auth__btn:hover {
  cursor: pointer;
  border: 2px solid gold;
  color: white;
}

.footer {
  position: relative;
  background-color: black;
}
.footer__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 50px 10px;
}
.footer__links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-family: Cabin;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer-info {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
.footer-info h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.remember__container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-bottom: 60px;
}
.remember__label {
  font-weight: 300;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.remember__label:hover {
  cursor: pointer;
}
.remember__input {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.remember__input:hover {
  cursor: pointer;
}
.auth__grey_text {
  text-align: center;
  font-size: 16px;
  color: #b5b5b5;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 30px;
}
.auth__additional_login {
  width: 90%;
}
.nonlogged_header {
  /*background: linear-gradient(90deg, #191819 39%, rgba(155, 79, 252, 0.8) 94.5%),*/
  /*linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));*/
  background-color: black;
  max-width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
}
.header_content {
  display: flex;
  max-width: 1440px;
  justify-content: space-between;
  width: 100%;
}
.nonlogged_header_logo__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nonlogged_header_logo {
  width: 70%;
  margin-top: 5px;
}

.link__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Cabin;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.authorization__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Cabin;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  text-wrap: nowrap;
}
.nonlogged_header__login_btn {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  font-size: 16px;
  border: 2px solid white;
  padding: 0px 15px;
  border-radius: 12px;
}

.nonlogged_header_items {
  display: flex;
  gap: 20px;
}

.nonlogged_header__item {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  font-size: 16px;
  border-radius: 12px;
}
.orange__btn {
  color: #f3eff4;
  display: inline-block;
  text-decoration: none;
  background-color: red;
  border-radius: 12px;
  font-size: 16px;
  padding: 2px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.orange__btn:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 8px red;
}
.register-btn {
  transition: all 0.3s ease-in-out;
}
.register-btn:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 8px red;
}

.orange__btn:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 8px red;
}

.btn_register_banner {
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block !important;
  text-wrap: nowrap;
}

.main {
  background: #1f1f1f;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main_banner__content {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.main_banner__title__img {
  position: absolute;
  top: 150px;
  left: 27%;
  z-index: 2;
}
.main_banner__girl {
  position: absolute;
  right: 5%;
  bottom: 1px;
}
.promotions_banner__girl {
  position: absolute;
  bottom: 0;
  right: 5%;
}
.main_banner__promotions h1 {
  margin-bottom: 96px;
}
.main_banner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
.main_banner__title h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 97px;
  padding-top: 400px;
  padding-left: 100px;
  color: #ffffff;
  text-shadow: 3px 3px 5px #000000;
  text-align: center;
}
.main_banner__title span {
  color: #ff760e;
}
.game_cards__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  overflow: hidden;
  padding: 5px;
}
.game_cards__wrapper img {
  width: 150px;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  font-family: "Cabin", sans-serif;
}
.title__medium {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
.game_types__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.game_type__card {
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  width: 180px;
  min-width: 180px;
  padding: 18px 0;
  transition: 0.8s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 240px;
  justify-content: space-between;
}
.game_type__card:hover {
  cursor: pointer;
  transform: scale(1.05);
  /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);*/
}
.game_type__card_lightblue {
  background-color: #1ea3e5;
}
.game_type__card_lightblue:hover {
  background-color: #1ea3e5;
  box-shadow: 15px 16px 15px rgba(30, 163, 229, 0.44);
}
.game_type__card_purple {
  background-color: #ba00ff;
}
.game_type__card_purple:hover {
  box-shadow: 15px 16px 15px rgba(188, 66, 182, 0.44);
}
.game_type__card_red {
  background-color: #e50047;
}
.game_type__card_red:hover {
  box-shadow: 15px 16px 15px rgba(239, 20, 60, 0.44);
}

.game_type__card_yellow {
  background-color: #ef143c;
}
.game_type__card_red:hover {
  box-shadow: 15px 16px 15px rgba(239, 20, 60, 0.44);
}
.game_type__card_green {
  background-color: #00ad25;
}
.game_type__card_green:hover {
  box-shadow: 15px 16px 15px rgba(29, 172, 60, 0.44);
}
.game_type__card_blue {
  background-color: #007aff;
}
.game_type__card_blue:hover {
  box-shadow: 15px 16px 15px rgba(27, 17, 220, 0.44);
}
.game_type__card_orange {
  background-color: #f46606;
}
.game_type__card_orange:hover {
  box-shadow: 15px 16px 15px rgba(195, 91, 17, 0.44);
}

.game_type__card_yellow {
  background-color: #ffbc00;
}
.game_type__card_yellow:hover {
  box-shadow: 15px 16px 15px rgba(175, 127, 0, 0.44);
}

.title__small {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: #f3eff4;
  margin-bottom: 15px;
}
.title__small span {
  color: #ff760e;
}
.title__big {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
  margin-bottom: 0;
}
.style_games__wrapper {
  margin-bottom: 33px;
  max-width: 1440px;
  margin: 0 auto;
}
.title_join__wrapper {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 120px;
}
.title_join__logo {
  width: 140px;
  height: 30px;
}
.join__cards__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.join_card {
  position: relative;
  background: linear-gradient(67.19deg, #2a2727 2.14%, #d724ea 96.77%);
  padding: 65px 24px 25px;
  border-radius: 25px;
  width: 300px;
}
.join_card__img {
  position: absolute;
  left: 110px;
}
.join_card__img1 {
  top: -81px;
  left: 82px;
}
.join_card__img2 {
  top: -97px;
  left: 82px;
}
.join_card__img3 {
  top: -88px;
  left: 82px;
}
.join_card__img4 {
  top: -88px;
  left: 82px;
}
.join_card__img5 {
  top: -88px;
  left: 82px;
}
.join_card__img6 {
  top: -100px;
  left: 82px;
}
.join_card__content {
  text-align: center;
  color: #ffffff;
}
.join_card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
.join_card__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}

.stellar__content {
  display: flex;
  padding: 0 27px;
  align-items: center;
  justify-content: space-between;
}
.stellar__content__left {
  width: 40%;
  text-align: center;
}
.stellar__content__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: #f08034;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.stellar__content__subtitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #ffffff;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.purchases__img {
  position: absolute;
  left: 70px;
  bottom: -4px;
}
.purchases__content {
  text-align: center;
  width: 75%;
  padding-top: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.purchases__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 97px;
}
.purchases__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 45px;
  margin-bottom: 73px;
  width: 80%;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#app {
  display: flex;
  height: 100%;
  flex: 1;
}

.menu {
  width: 300px;
  color: white;
  position: absolute;
  background: black;
  z-index: 101;
  border-bottom-right-radius: 12px;
  position: fixed;
}
.menu__logo {
  width: 180px;
  height: 18px;
  margin-top: 23px;
  margin-left: 67px;
  margin-bottom: 9px;
}
.menu__logo__img {
  width: 100%;
  height: 100%;
}
.content {
  flex: 1;
  transition: margin-left 0.9s;
}

.toggle_menu__btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: none;
}
.toggle_menu__btn__img {
  width: 40px;
  height: 40px;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  position: fixed;
}

.toggle_menu__btn__img:hover {
}

/*progress bar*/
.meter {
  box-sizing: content-box;
  height: 5px;
  position: relative;
  background: #555;
  border-radius: 25px;
  padding: 7px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: rgb(43, 194, 83);
  background-image: linear-gradient(
    center bottom,
    rgb(43, 194, 83) 37%,
    rgb(84, 240, 84) 69%
  );
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.orange > span {
  background-color: gold;
}
/*progress bar*/
.coin_status_panel {
  padding-left: 12px;
  padding-right: 25px;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 30px;
  margin-bottom: 10px;
  margin-bottom: 20px;
}
.coin_panel {
  border-radius: 6px;
  padding: 8px 8px 12px 4px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #161518;
  margin-bottom: 9px;
  width: 100%;
}
.coin_panel .progress__img {
  width: 40px;
  height: 40px;
}
.coin_panel__left {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coin_panel__right {
  width: 80%;
}
.sweepstake_coin__title {
  color: #007aff;
  margin-bottom: 3px;
}
.coretaker_coin__title {
  color: gold;
}
.buy_coins__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  ackground: transparent;
  padding: 11px 0;
  text-decoration: none;
  border: 2px solid white;
  color: white;
}
.buy_coins__btn:hover {
  cursor: pointer;
  color: gold !important;
}
.buy_coins__btn span {
  font-size: 14px;
  font-weight: 700;
}
.redeem__btn {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  text-decoration: none;
}

.embla__viewport {
  width: 100%;
}
.games {
  overflow: hidden;
  margin-bottom:15px;
}
.games__sidemenu {
  padding-left: 50px;
  padding-right: 25px;
  font-family: "Baloo Thambi 2", system-ui;
  padding-bottom: 80px;
  height: 100vh;
}
.games__sidemenu__item__wrapper {
  border-radius: 20px;
}
.games__sidemenu__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 7px;
  padding: 5px;
}
.games__sidemenu__item:hover {
  color: gold;
}
.games__sidemenu__item__wrapper:hover {
  text-shadow: 0px 0px 10px rgba(255, 223, 0, 0.8),
    2px 2px 2px rgba(255, 215, 0, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.profile__sidemenu {
  padding-left: 70px;
}
.profile__sidemenu__item__wrapper {
  border-radius: 15px;
}
.profile__sidemenu__item {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  gap: 10px;
  margin-bottom: 7px;
  padding: 5px;
}
.logged_header {
  background: black;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 17px 4px 38%;
  position: fixed;
  width: 100%;
  z-index: 99;
}

/*custom select for coin box*/
.coins__box {
  display: flex;
  gap: 5px;
  max-width: 455px;
  width: 455px;
}
.custom-select {
  position: relative;
  width: 80%;
  background: #1f1f1f;
  border-radius: 12px;
  display: inline-block;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.select-trigger:hover {
  opacity: 1;
  filter: brightness(1.4);
}

.option {
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.option:hover {
  opacity: 1;
  filter: brightness(1.4);
}

.select-icon img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.selected-value {
  flex-grow: 1;
  text-align: right;
  margin-right: 13px;
}
.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #2d2d2d;
  display: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 10;
}
.select-text-arrow {
  display: flex;
}
.dropdown-arrow {
  display: flex;
  align-items: center;
}
.option {
  padding: 10px 20px 10px 10px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
}

/*custom select for coin box*/
.coin_shop__btn__wrapper {
  width: 52px;
}
.coin_shop__btn {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: 100%;
  border: 2px solid white;
}

.coin_shop__btn:hover img path {
  fill: gold;
  stroke: gold;
}
.logged_header_actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.content-area {
  background: #1f1f1f;
  padding-bottom: 10px;
  height: 100%;
  width: 100%;
  min-height: 100vh;
  padding-top: 55px;
}
.content-area-gamesplay {
  background: #000000;
}
.logged__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.games_menu__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.games_menu__item_active a {
  text-shadow: 0px 0px 10px rgba(255, 223, 0, 0.8),
    2px 2px 2px rgba(255, 215, 0, 0.5);
  color: gold !important;
  cursor: pointer;
  transition: 0.6s;
}

.games_menu__item_active {
  border-color: gold !important;
}

.games_menu__item {
  background: #161518;
  border-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 110px;
  color: white;
  border: 2px solid white;
}
.games_menu__item:hover {
  border: 2px solid gold;
  cursor: pointer;
  transition: 0.6s;
}

.games_menu__item:hover .games_menu__item__link {
  transition: 0.6s;
}
.games_menu__item__icon_active {
  display: none;
  transition: 0.6s;
  border: none !important;
}
.games_menu__item:hover .games_menu__item__icon {
  display: none;
  transition: 0.6s;
}
.games_menu__item:hover .games_menu__item__icon_active {
  display: inline;
  border: 2px solid gold;
  transition: 0.6s;
}
.games_menu__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Actor;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  gap: 5px;
  transition: 0.6s;
}
.games_lists__container {
  display: flex;
  justify-content: center;
}
.games__list {
  margin-bottom: 15px;
}
.game_category__container {
  margin-bottom: 0px;
  max-width: 1440px;
}
.game_category__title {
  font-family: Cabin;
  font-size: 18px;
  font-weight: 400;
  padding: 8px;
  padding-left: 12px;
  padding-bottom:0px;
}
.logo__mobile__logged {
  display: none;
}
.bottom_menu__mobile {
  display: none;
}
.show_games__btn {
  display: none;
}
.profile__sidemenu__mobile {
  display: none;
}
.authorization__buttons__mobilemenu {
  display: none;
}
.promotions__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.promotion__card {
  /*background-image: url("/assets/img/1st.webp");*/
  /*background-repeat: no-repeat;*/
  /*!*background-size: contain;*!*/
  width: 29%;
  height: 490px;
  margin-bottom: 10px;
  /*display: flex;*/
  /*align-items: flex-end;*/
  /*padding-bottom: 20px;*/
  /*transition: .8s;*/
  position: relative;
}
.promotion__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.promotion-card-promotionpage {
  background-size: cover;
  background-position: center;
  height: 320px;
  width: 40%;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  color: #fcfcfc;
  filter: brightness(1);
  box-shadow: 5px 5px 8px #ffbc00;
  animation: pulsatingShadowGold 1.5s infinite alternate,
    brightnessShadowPulse 1.5s infinite alternate;
}
.promotion__card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.promomodal {
  max-width: 360px;
  min-width: 250px;
}
.promotion__card:hover {
  cursor: pointer;
  /*transform: scale(1.1);*/
  /*transition: .8s;*/
}
.promotion__content {
  position: absolute;
  bottom: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  text-shadow: 2px 2px 4px black;
  z-index: 1;
}
.promotion__title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.promotion__subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.promotion__get {
  font-size: 20px;
  margin-bottom: 15px;
}
.promotion__btn_get {
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid white;
  padding: 15px 0;
  border-radius: 10px;
  color: #ffffff;
  text-transform: uppercase;
  width: 60%;
  margin-bottom: 15px;
  transition: 0.8s;
}
.promotion__btn_get:hover {
  cursor: pointer;
  color: gold;
  border-color: gold;
  transition: 0.3s;
}
.promotion__btn_more {
  width: 60%;
  text-transform: uppercase;
  color: white;
  border: 2px solid white;
  font-size: 14px;
  background-color: transparent;
  border-radius: 5px;
  padding: 15px 0;
}
.promotion__btn_more:hover {
  cursor: pointer;
  color: gold;
  border-color: gold;
  transition: 0.3s;
}

.games_menu__wrapper {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #05131d;
  position: absolute;
  padding: 70px 40px;
  border: 1px solid #020e15;
  width: 80%;
  color: white;
}

.close {
  color: #aaa;
  position: absolute;
  top: 20px;
  right: 20px;
  /*float: right;*/
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #f3efef;
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
}

.modal-subtitle {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 22px;
  font-size: 22px;
}

.modal-description {
  text-align: center;
  font-size: 18px;
}

#js-contentwrapper {
  display: flex;
  justify-content: center;
}

.nonlogged_header__item:hover {
  color: gold;
}
.gameCategory__banner {
  background-repeat: no-repeat !important;
  position: relative;
  height: 400px;
  margin-bottom: 45px;
  border-radius: 0px;
  width: 100%;

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}


.gameCategory__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.gameCategory__small__img {
  position: absolute;
  /*top: -50%;*/
  /*transform: translateY(50%);*/
  left: 10%;
  width: 300px;
  bottom: 0px;
}

.gameCategory__banner__content {
  margin-right: 2%;
  color: white;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  z-index: 10;
}
.gameCategory__banner__content h3 {
  font-family: Cabin;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.gameCategory__banner__content p {
  font-family: Cabin;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.load_more__btn__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.load_more__btn {
  background: black;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #ffffff;
  padding: 11px 90px;
  border-radius: 6px;
  transition: 0.5s;
  border: 2px solid white;
}
.load_more__btn:hover {
  cursor: pointer;
  border: 2px solid gold;
  color: white;
}
.search_selects__wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 0px;
}
.providers_select__wrapper {
  width: 45%;
}
.providers_select__wrapper select {
  width: 100%;
  background-color: #1f1f1f;
}
.search_input__wrapper {
  width: 45%;
  position: relative;
}
.search_input__wrapper input {
  width: 100%;
  box-sizing: border-box;
}
.providers_item {
  position: relative;
  border-radius: 15px;
}
.providers_select,
.search_input {
  border: 2px solid #f3eff4;
  background-clip: padding-box;
  padding: 10px;
  font-size: 16px;
  color: white;
  background-color: transparent;
  width: 250px;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.search_input::placeholder {
  color: #ddd;
}

.providers_select {
  appearance: none;
  outline: none;
  padding-right: 40px;
}
.search_input {
  outline: none;
}
.providers_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(transparent, transparent),
    linear-gradient(45deg, #f3eff4, #f3eff4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}
.providers_select__wrapper::after,
.account_select__wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: white;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.providers_select__wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.providers_select {
  cursor: pointer;
}

.search_input__wrapper::after {
  content: "\1F50D";
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.search_input:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.games__container {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.games__container__main {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.games {
  gap: 10px;
  justify-content: center;
  width: 98vw;
  max-width: 1440px;
}
@media (max-width: 500px) {
  .games {
    width: 90vw;
  }
}

@media (max-width: 300px) {
  .games {
    width: 88vw;
  }
}
.games__lobby {
  justify-content: flex-start;
}
.game__container {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.game__container:hover {
  filter: brightness(1.3);
}
.games_profile__container {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom:-20px;
}
.game__img__wrapper {
  display: block;
  height: 150px;
  width: 100%;
  position: relative;
}
.game__overlay {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 91%;
  height: 100%;
  background-color: rgba(232, 139, 255, 0.4);
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  transition: 1s;
}
.game__overlay__btn {
  background: linear-gradient(133.68deg, #e88bff 0.24%, #9b4ffc 95.93%);
  font-size: 17px;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 5px;
  border-radius: 30px;
  font-weight: bold;
  width: 70%;
  text-align: center;
}
.game__container:hover .game__overlay {
  display: flex;
  transition: 1s;
}
.game__img {
  width: 140px;
  height: 115px;
  object-fit: cover;
  border-radius: 15px;
  margin-right: 15px;
  filter: brightness(1);
  animation: brightnessShadowPulse 1.5s infinite alternate;
}
.account__container {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
}
.account__title {
  font-size: 40px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 10px;
}
.account {
  display: flex;
  justify-content: center;
}
.form {
  width: 100%;
}
.row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.input__wrapper {
  width: 100%;
}
.input__wrapper__row {
  width: 100%;
}
.input__label {
  font-size: 20px;
}
.input__phone__wrapper {
  display: flex;
}
.input__phone__wrapper input {
  border-bottom: 2px solid #ffffff;
}
.input {
  width: 100%;
  outline: none;
  color: black;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: none;
  border-bottom: 2px solid #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  background: white;
  border-radius: 10px;
  margin-top: 5px;
  padding-left: 10px;
}
.input:disabled {
  color: rgba(128, 128, 128, 0.65);
  cursor: not-allowed;
  pointer-events: all !important;
}
.account_select:disabled {
  cursor: not-allowed;
  pointer-events: all !important;
}
.input::placeholder {
  color: gray;
}
.account_select__wrapper {
  width: 100%;
  margin-top: 10px;
}
.account_select {
  width: 100%;
}
.input_password__wrapper {
  position: relative;
}
.account_settings_phone__input {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
}
.account_settings_phone__input:disabled {
  border-bottom: 2px solid #ffffff;
  color: rgba(255, 255, 255, 0.75);
}
.toggle-password {
  position: absolute;
  right: 0;
  top: 8px;
  cursor: pointer;
  user-select: none;
}
.auth_input__container .toggle-password {
  top: 0;
  right: 8px;
}
.toggle-password svg {
  width: 24px;
  height: 24px;
}
.account__action_btn__wrapper {
  display: flex;
  justify-content: start;
  margin-top: 30px;
}
.account {
  padding: 10px;
  padding-right: 20px;
}
.account__action_btn {
  background: black;
  padding: 8px 17px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s;
}
.account__action_btn:hover {
  cursor: pointer;
  color: white;
  border: 2px solid gold;
}
.otp__wrapper {
  width: 430px;
  padding: 10px;
}
.otp_row {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 55px;
}
.account__otp_action_btn__wrapper {
  display: flex;
  align-items: flex-end;
}
.account__otp_action_btn__wrapper .account__action_btn {
  width: 120px;
  padding: 8px 3px;
}
.verified__title {
  font-size: 35px;
  text-align: center;
  display: none;
}
.support_row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-direction: column;
}
.support__form {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 700px;
}
.support_textarea {
  width: 100%;
  height: 100px;
}
.support_textarea__wrapper {
  width: 100%;
}
.redeem__descr {
  font-size: 20px;
}
.redeem__wrapper {
  width: 100%;
}
.redeem__balance {
  font-size: 40px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}
.redeem_coin__row {
  display: flex;
  justify-content: space-between;
}
.redeem_coin__wrapper {
  width: 49%;
}
.redeem_coin__title {
  font-size: 25px;
}
.redeem_coin {
  padding: 5px 10px 5px 5px;
  border-width: 4px;
  border-style: solid;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.redeem_coin__sc {
  border-color: #1074e3;
}
.redeem_coin__zc {
  border-color: #f9d92d;
}
.redeem_coin_img__wrapper {
  width: 50px;
  height: 50px;
}
.redeem_coin_img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.redeem_coin__balance {
  font-weight: bold;
  font-size: 20px;
}
.redeem_coins_amount {
  font-size: 18px;
  margin-top: 15px;
}
.redeem__requests__title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
.table__wrapper {
  font-family: Cabin, sans-serif;
  /*text-align: center;*/
}
.transcations_table__wrapper {
  width: 100%;
}
.table {
  border-collapse: collapse;
  width: 100%;
  color: #e0e0e0;
  background-color: #1a1b3b;
}
.note__column {
  text-align: right;
  width: 25%;
}
.date__column {
  width: 18%;
}
.table td,
.table th {
  border: 1px solid #ddd;
  padding: 8px;
  color: #e0e0e0;
  text-align: center;
  background-color: #1f1f1f;
}
#creditColumn {
  width: 20%;
}
#debitColumn {
  width: 20%;
}
#promotionName {
  width: 20%;
}
#promotionFcAmount,
#promotionGcAmount {
  width: 20%;
}
#promotionDate {
  width: 18%;
}
#creditColumn:hover,
#debitColumn:hover,
#dateColumn:hover,
#promotionDate:hover,
#promotionName:hover,
#promotionFcAmount:hover,
#promotionGcAmount:hover {
  cursor: pointer;
}
.settings_icon {
  height: 24px;
  width: 24px;
}
/* Different colors for even and odd rows */
.table tr:nth-child(even) {
  background-color: #24244a; /* Slightly darker shade for even rows */
}

.table tr:nth-child(odd) {
  background-color: #2f3064; /* Noticeably lighter shade for odd rows */
}

.table tr:hover {
  background-color: #444570; /* A lighter shade to indicate hover */
}

/* Header styling */
.table th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #1f1f1f; /* Purple header to match your accents */
  color: #fff;
  font-weight: bold;
}

#pagination-controls {
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

#pagination-controls label {
  font-size: 14px;
  margin-right: 8px;
}

#rowsPerPage {
  padding: 5px 10px;
  background-color: #1f1f1f;
  color: #ffffff;
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  font-size: 14px;
}
#rowsPerPage:hover {
  cursor: pointer;
}

#rowsPerPage:focus {
  outline: none;
}

#pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 15px;
}

#pagination button {
  background-color: black;
  color: #ffffff;
  border: 2px solid white;
  padding: 8px 12px;
  margin: 0 4px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

#pagination button:hover {
  border: 2px solid gold;
  color: gold;
}

#pagination button:disabled {
  background-color: black;
  color: #999;
  border: 2px solid white;
  cursor: not-allowed;
}

#pageNumbers {
  font-size: 14px;
  color: #ffffff;
  margin: 0 8px;
}
.coin_shop__main_coin__names {
  display: flex;
  justify-content: space-between;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.coin_shop__wrapper {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 50px;
  font-family: "Cabin", sans-serif;

  max-width: 1150px;
  margin: 0 auto;
}
.coin_shop__main_row {
  border-radius: 20px;
  transition: 0.8s;
  position: relative;
  margin-bottom: 10px;
}
.coin_shop__main_row_1 {
  background: linear-gradient(135deg, #1f1f1f, gold);
}
.coin_shop__main_row_2 {
  background: linear-gradient(135deg, #1f1f1f, #ec5772);
}
.coin_shop__main_row_general {
  background: #303030;
}
.coin_shop__main_row__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coin_shop__main_row__content_column {
  width: 33%;
}
.coin_shop__main_row__content_column__left {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  padding-left: 15px;
}
.row_tip__wrapper {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 6px 14px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.best_deal {
  background-color: green;
}
.most_popular {
  background-color: red;
}
.coin_shop__main_row__content_column__middle {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  position: relative;
}
.coin_shop__main_row__content_column__middle_top__block {
  width: 100%;
  position: absolute;
  top: -30px;
  left: 0;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f, #3154c6);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 7px;
}
.coin_shop__main_row__content_column__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
}
.coin_shop_coin__wrapper {
  display: flex;
  gap: 10px;
  font-size: 30px;
  font-weight: bold;
  align-items: center;
}
.coin_shop_coin__wrapper img {
  width: 40px;
  height: 40px;
}
.coin_shop__amount {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.coin_shop__amount__main {
  font-size: 20px;
  font-weight: bold;
  background-color: #d32e45;
  display: inline-block;
  border-radius: 15px;
  margin-bottom: 7px;
}
.coin_shop__amount__main:hover {
  background-color: #a80823;
}
.coin_shop__amount__main a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
}
.coin_shop__amount__previous {
  font-size: 12px;
  color: #f3eff4;
}
.coin_shop__main_row:hover {
  transition: 0.8s;
  cursor: pointer;
  transform: scale(1.1);
}
.coin_shop__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
  text-align: center;
}
.order__row {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.order_summary__wrapper {
  width: 35%;
}
.available_banks {
  width: 60%;
}
.order_summary__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.order_summary__amount {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.coins__shop {
  font-size: 24px;
  margin-bottom: 10px;
}
.select_payment__text {
  font-size: 20px;
  margin-bottom: 7px;
}
.select_payment__text a {
  text-decoration: none;
  color: gold;
}
.banks__images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.bank__img {
}
.bank__img img {
  width: 120px;
  height: 65px;
  opacity: 0.3;
}
.payment_card.active {
  border: 3px solid green;
  border-radius: 10px;
  padding: 8px 5px;
}
.payment_card.active img {
  opacity: 1;
}
.place_order__btn {
  background: black;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 70px;
  border: 2px solid white;
  border-radius: 6px;
  transition: 0.7s;
}
.place_order__btn__wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.place_order__btn:hover {
  cursor: pointer;
  border: 2px solid gold;
  color: white;
}
.place_order__btn:disabled {
  opacity: 0.5;
  cursor: auto;
}
.place_order__btn:disabled:hover {
  background: gold;
}
.static_pages__title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
  padding-top: 20px;
}
.promotions__main_btn__wrapper {
  /*width: 100%;*/
  width: 80%;
  margin: 68px auto 0;
}
.promotions__main_btn {
  color: #ffffff;
  display: block;
  border-radius: 50px;
  background-color: #bc42b6;
  text-decoration: none;
  text-transform: uppercase;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  transition: 1s;
}
.promotions__main_btn:hover {
  transform: scale(1.1);
  box-shadow: 15px 16px 15px rgba(188, 66, 182, 0.44);
}
.support_icon__img {
  width: 40px;
}
.static_page__container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1440px;
  margin: 0 auto;
}
.notification_page__wrapper {
  border-radius: 30px;
  padding: 40px;
  width: 500px;
  margin: 100px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.notification_page__error {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 40px;
}
.notification_page__text {
  font-size: 30px;
  margin-bottom: 30px;
}
.notification_page__img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}
.forgot_password__form {
  border-radius: 30px;
  padding: 40px;
  width: 500px;
  margin-top: 50px;
}
.forgot_password__title {
  text-align: center;
  font-size: 26px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}
.forgot_password__text {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}
.forgot_password__logo {
  width: 200px;
  margin: 0 auto 30px;
  display: block;
}
.forgot_password__input {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  outline: none;
  padding: 10px 10px 5px 5px;
  font-size: 16px;
  box-sizing: border-box;
}
.forgot_password__input::placeholder {
  color: rgba(255, 255, 255, 0.71);
}
.forgot_password__input:disabled {
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}
.forgot_password__input__wrapper {
  width: 100%;
  margin-bottom: 15px;
}
.payment_card img {
  opacity: 0.5;
}
.payment_card.active img {
  opacity: 1;
}

.custom_select__container {
  position: relative;
  width: 100%;
  /*max-width: 500px;*/
  color: #f0f0f0;
  cursor: pointer;
}
.custom_select__container.crypto-select-redeem {
  max-width: 100%;
}
.selected_option {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #1f1f1f;
  border: 1px solid white;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.crypto_select__arrow {
  width: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.crypto-select-redeem .selected_option {
  background-color: #ffffff;
  color: #1b2b44;
}
.crypto_options {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #1f1f1f;
  border: 1px solid white;
  border-radius: 8px;
  z-index: 10;
  height: 300px;
  overflow: scroll;
}
.crypto-select-redeem .crypto_options {
  background-color: #ffffff;
  color: #1b2b44;
}
.crypto_option {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.crypto_option:hover {
  background-color: #8364dc;
}
.crypto-select-redeem .crypto_option:hover {
  background-color: #d3e1fa;
}

.crypto_option img.crypto_img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.crypto_option .crypto_name {
  font-size: 16px;
}

.crypto__select {
  display: none;
  position: relative;
}
.crypto-select-redeem {
  display: block;
}
.crypto_img {
  width: 24px;
  height: 24px;
}
.modal__payment {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.payement__iframe_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.payment__modal_iframe {
  width: 100%;
  height: 100%;
}
.modal__payment__title {
  font-weight: bold;
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
}
.modal__payment__content {
  background-color: #1f1f1f;
  width: 700px;
  height: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
}
.close_payment_modal {
  position: absolute;
  top: 20px;
  right: 20px;
}
.close_payment_modal:hover {
  cursor: pointer;
}
.redeem_amount__wrapper {
  display: flex;
  width: 100%;
}
.redeem_amount__name,
.redeem_amount__value {
  width: 10%;
  background-color: black;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.redeem_amount__input__wrapper {
  width: 100%;
  margin-left: 5px;
  margin-right: 5px;
}

.gameCategory__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.input__redeem {
  width: 100%;
  box-sizing: border-box;
}
.input__label__redeem {
  margin-bottom: 7px;
  display: inline-block;
}
.redeem_min_amount {
  font-weight: bold;
  color: #ffffff;
  text-decoration: underline;
  margin-top: 7px;
}
.redeem_amount__container {
  margin-bottom: 40px;
}
.redeem_options__wrapper {
  margin-bottom: 20px;
}
.redeem__select {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  outline: none;
  padding: 10px 0 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: block;
  width: 100%;
}
.red_asterisk {
  color: red;
}

.redeem__row {
  margin-bottom: 30px;
}
.redeem__row .input__wrapper {
  width: 100%;
}
#js-bankRedeemFields,
#js-cryptoRedeemFields {
  display: none;
}
.forbidden_location_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  justify-content: center;
}
.forbidden_location_content {
  color: #e2e2e2;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  text-shadow: 2px 2px 4px violet;
}
.forbidden_location_img {
  max-width: 360px;
  max-height: 500px;
}
.forbidden_location__title {
  text-align: center;
  font-weight: bold;
  font-size: 50px;
  text-transform: uppercase;
  color: #e2e2e2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px violet;
}
.forbidden_location_row {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}
/* Overlay */
.received_promos__modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal container */
.received_promos__modal_container {
  padding: 20px 60px 60px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  width: 80%;
  min-height: 445px;
  max-height: 645px;
  text-align: center;
}
.received_promos__modal_container h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
.received_promotion__btn {
  border-radius: 10px;
  border: none;
  padding: 5px 10px;
  color: #ffffff;
}
.received_promotion__btn:hover {
  cursor: pointer;
}

.received_promotion__item {
  border-radius: 20px;
  text-align: center;
}
.received_promotion__item .promotion__card {
  width: 100%;
}
.received_promotion__title {
  font-size: 30px;
  margin-bottom: 10px;
}
.received_promotion__subtitle {
  font-size: 25px;
}
.received_promotion__description {
  font-size: 20px;
  margin-bottom: 15px;
}
.received_promo__modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.received_promo__modal__content {
  background-color: #05131d;
  margin: 15% auto;
  padding: 20px 40px;
  border: 1px solid #020e15;
  width: 80%;
  color: white;
  position: relative;
}
.received_promo__modal_close {
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}
.received_promo__modal_close:hover {
  cursor: pointer;
}
.received_promos__modal_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.promotion_modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.promotion_modal__content {
  background-color: #1f1f1f;
  width: 700px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  color: #ffffff;
  text-align: center;
  padding: 50px;
  border-radius: 30px;
}
.promotion_modal__close {
  position: absolute;
  right: 25px;
  top: 25px;
  font-weight: bold;
}
.promotion_modal__close:hover {
  cursor: pointer;
}
.promotion_modal__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
.promotion_modal__subtitle {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.promotion__action__btns {
  width: 100%;
}
.btn__redirect {
  background: black;
  padding: 15px 10px;
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
  color: #ffffff;
  border: 2px solid white;
  border-radius: 12px;
  text-decoration: none;
}
.btn__redirect:hover {
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 1265px) {
  .liveCards_wrapper img {
    max-width: 1190px;
  }
}
@media (max-width: 1440px) {
  .game__img__wrapper {
  }
}

@media (max-width: 1220px) {
  .game__img__wrapper {
    height: 170px;
  }
}

@media (max-width: 1000px) {
  .game__img__wrapper {
    height: 130px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 130px);
    gap: 11px;
  }
}
@media (max-width: 900px) {
  .game__img__wrapper {
    height: 140px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 140px);
  }
}
@media (max-width: 800px) {
  .game__img__wrapper {
    height: 130px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 130px);
  }
}
@media (max-width: 1200px) {
  .auth_container_left {
    display: flex;
    align-items: center;
    width: 57%;
  }
  .auth_container_left img {
    width: 90%;
  }
  .main_banner__girl {
    right: 0;
  }
  .games {
    /*grid-template-columns: repeat(auto-fit, 23%);*/
  }
  .game__img__wrapper {
    /*height: 135px;*/
  }
  .purchases__title {
    font-size: 67px;
    line-height: 80px;
  }
  .purchases__banner {
    max-width: 1020px;
    background-size: contain;
  }
  .purchases__img {
    bottom: 71px;
  }
  .purchases__description {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .auth_input__container .toggle-password {
    right: 3px;
  }
  .gameCategory__banner {
    background-size: cover;
  }
  .gameCategory__banner__content h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .gameCategory__banner__content p {
    font-size: 26px;
  }
}

@media (max-width: 1040px) {
  .games_profile__container {
    margin-bottom:-8px;
  }
  .toggle_menu__btn {
    display: block;
  }
  .section-banners {
    margin-top: 45px;
  }
  .game_cards__wrapper {
    overflow: scroll;
    flex-wrap: nowrap;
    width: 100vw;
    justify-content: start;
  }
  .embla-games_buttons_area {
    display: none !important;
  }
  .embla-games_buttons_area_fullwidth {
    display: none !important;
  }
  .link__buttons {
    display: none;
  }
  .nonlogged_header {
    position: fixed;
    width: 100%;
    z-index: 99999;
  }
  .main_banners {
    margin-top: 60px;
  }
  .emblamobile {
    margin-top: 60px !important;
  }
}

@media (max-width: 1024px) {
  .promotion__title {
    font-size: 35px;
  }
  .promotion__subtitle {
    font-size: 18px;
  }
  .promotion__get {
    font-size: 18px;
  }
  .main_banner__title h1 {
    font-size: 60px;
    line-height: 75px;
    padding-left: 0;
  }
  .main_banner__title__img {
    left: 15%;
    z-index: 2;
  }
  .game__img__wrapper {
    /*height: 160px;*/
  }
  .games {
    /*grid-template-columns: repeat(auto-fit, 23%);*/
  }
  .select_payment__text {
    font-size: 14px;
  }
  .place_order__btn {
    padding: 15px 50px;
  }
  .order__row {
    gap: 20px;
  }
  .coin_shop__wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }
  .coin_shop_coin__wrapper {
    font-size: 18px;
  }
  .games__main.games {
    grid-template-columns: repeat(auto-fit, 21%);
  }
  /*.coin_shop__btn__wrapper {*/
  /*    width: 15%;*/
  /*}*/
  .coins__box {
    width: 300px;
  }
  .purchases__title {
    font-size: 30px;
    line-height: 40px;
  }
  .purchases__banner {
    max-width: 760px;
    background-size: contain;
    height: 320px;
  }
  .purchases__img {
    bottom: 13px;
    height: 320px;
  }
  .purchases__description {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 15px;
  }
  .purchases__content {
    padding-top: 25px;
    padding-right: 0;
  }
  .join__cards__wrapper {
    gap: 10px;
  }
  .join_card {
    width: 240px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .join_card__img1 {
    left: 56px;
  }
  .join_card__img2 {
    left: 56px;
  }
  .join_card__img3 {
    left: 56px;
  }
  .join_card__img4 {
    left: 56px;
  }
  .join_card__img5 {
    left: 56px;
  }
  .join_card__img6 {
    left: 56px;
  }
  .games_lists__container {
    margin-top: 40px;
  }

  .gameCategory__banner {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .gameCategory__banner__content {
    margin-top: 0;
  }

  .logged_header {
    padding-left: 40%;
  }
  .bank__img img {
    width: 90px;
    height: 55px;
  }
}

@media (max-width: 768px) {
  .auth_header_logo__wrapper {
    width: 230px;
    height: 49px;
  }
  .auth_header {
    padding: 18px 0;
  }
  .auth_row {
    gap: 0;
  }
  .auth__title {
    font-size: 25px;
  }
  .auth_container_left {
    display: none;
  }
  .auth_container_right {
    width: 100%;
  }
  .auth_field__container {
    width: 100%;
  }
  .auth__btn {
    width: 100%;
  }
  .auth__additional_login {
    width: 100%;
  }
  .auth_form {
    padding: 0 10px;
  }
  .logged_header {
    background: black;
    padding: 25px 10px 25px 19px;
  }
  .logged_header_actions {
    display: none;
  }
  .logo__mobile__logged {
    display: block;
  }
  .coins__box {
    max-width: 350px;
    width: 345px;
    justify-content: flex-end;
  }
  .select-trigger {
    padding: 5px;
  }
  .custom-select {
    background-color: #1a1a1a;
  }
  .games_menu__wrapper {
    /*display: none;*/
  }
  .games__list {
    display: none;
  }
  .bottom_menu__mobile {
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    padding: 10px;
  }
  .bottom_menu__mobile__item__link img {
    width: 38px;
    height: 40px;
  }
  .menu {
    position: fixed;
    top: 0px;
    background: black;
    height: 95%;
    z-index: 999;
  }
  .coin_status_panel {
    margin-top: 5px;
  }
  .show_games__btn {
    width: 100%;
    display: block;
    border: 2px solid gold;
    border-radius: 16px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    position: relative;
    background-color: transparent;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    text-transform: uppercase;
    margin-top: 27px;
  }
  .show_games__btn__arrow {
    position: absolute;
    bottom: 10px;
    right: 8px;
  }
  .games__sidemenu {
    display: none;
  }
  .sidemenu_profile__btn {
    display: none;
  }
  .profile__sidemenu__mobile {
    position: fixed;
    bottom: 60px;
    left: 20%;
    background-color: #191819;
    padding: 40px 18px 8px;
    z-index: 999;
  }
  .nonlogged_header {
    background: black;
  }
  .main_banner {
    height: 750px;
    padding-top: 60px;
    margin-bottom: 20px;
  }
  .main_banner__title h1 {
    padding-top: 125px;
    padding-left: 0;
    font-size: 30px;
    line-height: 36px;
  }
  .main_banner__title__img {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 90px;
  }
  .main_banner__girl {
    position: relative;
    bottom: 8px;
    left: 40%;
    transform: translateX(-50%);
    width: 300px;
    height: 500px;
  }
  .promotions_banner__girl {
    position: relative;
    bottom: 68px;
    left: 40%;
    transform: translateX(-50%);
    width: 300px;
    height: 500px;
  }
  .nonlogged_header__login_btn {
    display: none;
  }
  .nonlogged_header__register_btn {
    display: none;
  }

  .authorization__buttons__mobilemenu {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px 35px;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    z-index: 99999;
  }
  .authorization__btn {
    color: #f3eff4;
    display: inline-block;
    text-decoration: none;
    background-color: red;
    border-radius: 12px;
    font-size: 20px;
    padding: 8px 15px;
    text-transform: uppercase;
  }
  .authorization__btn_purple {
    background-color: transparent;
    border: 2px solid white;
  }
  .authorization__btn_orange {
    background-color: red;
  }
  .title__big {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
  }
  .game_cards__wrapper {
    padding: 0;
    display: flex;
  }
  .title__medium {
    font-size: 30px;
    line-height: 36px;
    margin-top: 12px;
  }
  .game_type__card {
    width: 180px;
    min-width: 180px;
    font-size: 18px;
  }
  .game_types__wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: scroll;
  }
  .title__small__mobile {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
  }
  .title__big__mobile {
    font-size: 24px;
    line-height: 29px;
  }
  .title_join__wrapper {
    gap: 10px;
  }
  .join__cards__wrapper {
    flex-direction: column;
    gap: 85px;
  }
  .join_card__img1 {
    left: 80px;
  }
  .join_card__img2 {
    left: 71px;
  }
  .join_card__img4 {
    left: 82px;
    top: -83px;
  }
  .join_card__img5 {
    top: -69px;
    left: 84px;
  }
  .join_card__img6 {
    top: -85px;
    left: 72px;
  }

  .stellar__content__title {
    font-size: 40px;
    line-height: 48px;
  }
  .stellar__content__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .stellar__content__left {
    width: 100%;
  }
  .purchases__banner {
    margin-top: 73px;
    margin-bottom: 0;
    height: 430px;
    background-position: center;
    background-size: cover;
  }
  .purchases__content {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .purchases__title {
    font-size: 30px;
    line-height: 36px;
  }
  .purchases__description {
    font-size: 14px;
    line-height: 17px;
    margin-top: 10px;
    width: 97%;
  }
  .purchases__img {
    height: 260px;
    width: 150px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main {
    padding-bottom: 25px;
  }
  .promotion__card {
    width: 48%;
    height: 500px;
  }
  .coin_shop__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .coin_shop_coin__wrapper {
    font-size: 19px;
    gap: 5px;
  }
  .coin_shop__main_coin__names {
    font-size: 30px;
  }
  .coin_shop_coin__wrapper img {
    width: 35px;
    height: 35px;
  }
  .coin_shop__amount__main {
    padding: 7px 18px;
  }
  .games {
    /*grid-template-columns: repeat(auto-fit, 30%);*/
  }

  .games__container__main {
    padding-left: 30px;
    padding-right: 30px;
  }
  .order_summary__title {
    font-size: 26px;
  }
  .order_summary__amount {
    font-size: 25px;
  }
  .order_summary__wrapper {
    width: 100%;
    padding-top: 20px;
  }
  .available_banks {
    width: 100%;
  }
  .games_lists__container {
    margin-top: 30px;
  }
  .games__main.games {
    grid-template-columns: repeat(auto-fit, 30%);
  }
  .coin_shop__btn__wrapper {
    width: 15%;
  }
  .logged_header {
    /*padding-left: 20%;*/
  }
  .join_card {
    width: 300px;
  }

  .gameCategory__small__img {
    display: block;
  }
  .gameCategory__banner {
    align-items: flex-end;
  }

  .gameCategory__banner__content h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .gameCategory__banner__content p {
    font-size: 26px;
  }
  .slots__banner.gameCategory__banner {
    padding-left: 220px;
  }

  .casual__banner.gameCategory__banner {
    padding-left: 220px;
  }

  .bingo__banner.gameCategory__banner {
    padding-left: 220px;
  }

  .roulettes__banner.gameCategory__banner {
    padding-left: 220px;
  }

  .table__banner.gameCategory__banner {
    padding-left: 220px;
  }

  .jackpots__banner.gameCategory__banner {
    padding-left: 210px;
  }

  .others__banner.gameCategory__banner {
    padding-left: 200px;
  }
  .redeem_coin__row {
    flex-direction: column;
  }
  .redeem_coin__wrapper {
    width: 100%;
    margin-bottom: 19px;
  }
  .modal__payment__content {
    width: 100%;
    height: 600px;
    padding: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .received_promos__modal_container {
    width: 80%;
    padding: 20px 0;
  }
  .received_promos__modal_container h2 {
    font-size: 25px;
  }
  .promotion_modal__content {
    width: 450px;
    padding: 20px;
  }
  .footer {
    padding-bottom: 100px;
  }
  .footer__links {
    justify-content: center;
  }
  .notification_page__wrapper {
    width: 350px;
    margin: 100px auto;
  }
  .notification_page__error {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .notification_page__text {
    font-size: 25px;
  }
  .payment__modal_iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .auth_header {
    background-color: #191819;
  }
  .section-searchbanner {
    margin-top:45px !important;
  }

  .otp__wrapper {
    width: 100%;
    padding: 10px;
  }
  .auth__subtitle {
    font-size: 14px;
  }

  .promotion__card {
    width: 93%;
  }

  .coin_shop__main_coin__names {
    font-size: 20px;
    padding-top: 20px;
  }

  .coin_shop_coin__wrapper {
    font-size: 12px;
  }

  .coin_shop__wrapper {
    padding: 0 15px;
  }

  .coin_shop__main_row__content_column__left,
  .coin_shop__main_row__content_column__middle {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .coin_shop__amount__main {
    font-size: 14px;
    padding: 1px 5px;
  }

  .row_tip__wrapper {
    font-size: 10px;
  }

  .coin_shop_coin__wrapper img {
    width: 25px;
    height: 25px;
  }

  .games {
    grid-template-columns: repeat(auto-fit, 48%);
  }

  .games__container__main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logged__container {
    padding-left: 15px;
    padding-right: 20px;
  }

  .order__row {
    flex-direction: column;
  }

  .game__img__wrapper {
    height: 183px;
  }

  .games_lists__container {
    margin-top: 20px;
  }

  .games__main.games {
    grid-template-columns: repeat(auto-fit, 48%);
  }

  .promotions__main_btn {
    font-size: 25px;
    padding-top: 33px;
    padding-bottom: 33px;
  }

  .coin_shop__main_row__content_column__middle_top__block {
    font-size: 13px;
    top: -27px;
  }

  .coins__box {
    width: 315px;
  }

  .logged_header {
    padding-left: 12px;
  }

  .coin_shop__amount__main a {
    padding: 10px 17px;
  }

  .gameCategory__banner__content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .gameCategory__banner__content p {
    font-size: 18px;
    line-height: 25px;
  }

  .gameCategory__banner {
    margin-bottom: 50px;
  }

  .account__title {
    font-size: 30px;
  }

  .redeem__descr {
    font-size: 16px;
  }

  .redeem__balance {
    font-size: 28px;
    margin-top: 20px;
  }

  .redeem_coin__title {
    font-size: 22px;
  }
  .redeem__requests__title {
    font-size: 25px;
  }
  .redeem_coin {
    padding: 1px 5px 1px 1px;
  }

  .table td,
  .table th {
    font-size: 10px;
  }
  .search_selects__wrapper {
    flex-direction: column;
  }
  .providers_select__wrapper {
    width: 100%;
  }

  .search_input__wrapper {
    width: 100%;
  }
  .search_input {
    box-sizing: border-box;
  }
  .search_input__wrapper::after {
    right: 13px;
  }
  .account__container {
    padding-left: 5px;
    padding-right: 5px;
  }
  #creditColumn,
  #debitColumn {
    width: 16%;
  }
  .otp_row .input__wrapper {
    width: 100%;
  }

  .account__action_btn {
    line-height: 20px;
    text-align: center;
  }
  .row {
    flex-wrap: wrap;
  }
  .input__wrapper {
    width: 100%;
  }
  .footer {
    padding: 15px;
  }
  .footer__links {
    justify-content: center;
  }
  .footer__links a {
    font-size: 15px;
  }
  .footer__logo {
    width: 200px;
  }
  .footer__logo img {
    width: 100%;
  }
  .modal__payment__content {
    width: 390px;
    height: 600px;
  }
  .bank__img img {
    width: 65px;
    height: 40px;
  }
  .received_promos__modal_container {
    width: 95%;
  }
  .received_promotion__item .promotion__card {
    width: 95%;
    margin: 0 auto;
  }
  .promotion_modal__content {
    width: 96%;
    padding: 20px 15px;
  }
  .promotion_modal__title {
    margin-bottom: 20px;
  }
  .promotion_modal__subtitle {
    margin-bottom: 15px;
  }
  .forbidden_location_img {
    width: 200px;
    max-width: 100%;
  }

  .game__img__wrapper {
    height: 120px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 120px);
  }
}
@media (max-width: 425px) {
  .game__img__wrapper {
    height: 100px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 100px);
  }
  .coin_shop__main_row__content_column__middle_top__block {
    font-size: 9px;
    top: -23px;
  }
  .custom-select {
    width: 198px;
  }
  .coins__box {
    width: 320px;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  right: -180px;
  width: 180px;
  height: 100%;
  background-color: #000;
  color: #fff;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 60px;
  align-items: center;
  justify-content: center;
}

.sidebar-item {
  text-decoration: none;
  color: #fff;
  margin: 15px 0;
  font-size: 18px;
}

.sidebar-item:hover {
  color: #ffa500;
}

.sidebar.active {
  right: 0;
  z-index: 10000;
}

body.no-scroll {
  overflow: hidden;
}

.main_banners {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  background-color: green;
  margin: 10px;
  border-radius: 18px;
  height: 250px;
}

.firstbanner {
  flex: 3;
  background-image: url("/assets/img/home_green_banner.webp");
  background-size: auto 450px;
  background-position: top -9px right;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 10px green;
  animation: pulsatingShadowGreen 1.5s infinite alternate;
}

.secondbanner {
  background-color: #007aff;
  flex: 1;
  background-image: url("/assets/img/home_blue_banner.webp");
  background-size: auto 266px;
  background-position: top -1px center;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 10px #240042;
  animation: pulsatingShadowPurple 1.5s infinite alternate;
}

.thirdbanner {
  background: #f46606;
  flex: 1;
  background-image: url("/assets/img/home_orange_banner.webp");
  background-size: auto 390px;
  background-position: top -15px center;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 10px #500f32;
  animation: pulsatingShadowViolet 1.5s infinite alternate;
}

.banner_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.banner_img_area {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.banner_img {
  width: 70%;
}

.banner_text_content {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
  z-index: 99;
  text-shadow: 2px 2px 4px black;
  border-radius: 12px;
}

.banner_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.banner__register {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.emblamobile {
  display: none;
}

@media (max-width: 1100px) {
  .firstbanner {
    background-size: auto 350px;
  }
  .game__img__wrapper {
    height: 145px;
  }
  .games {
    grid-template-columns: repeat(auto-fit, 145px);
  }

  .coin_shop__wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .firstbanner {
    flex: 1;
  }
  .banner_img {
    width: 100%;
  }
  .main_banners {
    display: none;
  }
  .emblamobile {
    display: block;
  }
}

.winner_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #302f32;
  width: 114px;
  height: 175px;
  margin: 0;
  padding: 10px;
  gap: 8px;
  border: 2px solid #c47a1b;
  border-radius: 8px;
  flex: 0 0 auto;
  box-shadow: 5px 5px 10px #c47a1b;
  animation: pulsatingShadow 1.5s infinite alternate;
}

.winner_title {
  font-size: 14px;
}

.winner_text {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  height: 40%;
}

.winner_paragraph {
  text-wrap: nowrap;
  overflow: hidden;
  margin-top: 1px;
}

.winner_img {
  width: 96px;
  height: 75px;
  align-self: center;
  border-radius: 4px;
}

.embla-winners {
  overflow: hidden;
  width: 100vw;
  position: relative;
  max-width: 1440px;
}
.embla-winners__viewport {
  overflow: hidden;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.embla-winners__container {
  display: flex;
  gap: 7px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  padding: 10px;
  padding-bottom: 20px;
}

.embla-winners__button {
  background: black;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 32px;
  z-index: 1;
  padding-left: 15px;
  padding-right: 12px;
  padding-bottom: 4px;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  opacity: 0.7;
}

.embla-winners__button:hover {
  opacity: 1;
}

.embla-winners__button--prev {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.embla-winners__button--next {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.embla-winners__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.embla-winners_buttons_area {
  position: absolute;
  top: 55px;
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 1440px;
}

.winner_paragraph.gc-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  display: inline-block;
  color: #ba8d10;
}

.winners_title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.winners_area {
}

.newgames_area {
  display: flex;
  flex-direction: row;
  align-items: start;
  width: 100vw;
  padding: 5px;
  max-width: 1440px;
  overflow: hidden;
  margin-bottom: -8px;
}
.newgames_content {
  display: flex;
  align-items: start;
  width: 100%;
}

.newgames_title {
  font-size: 24px;
  padding-left: 10px;
  margin-bottom: 2px;
  margin-top:10px;
}
.newgames-first {
  margin-right: 15px;
  width: 255px;
}

.overlay_first {
  width: 100%;
}

.newgames-sliders {
  flex: 2;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}

.embla-games__margin {
  margin-bottom:-44px;
}

.embla-games__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.embla-games__container {
  display: flex;
  gap: 7px;
  width: 45vw;
}

.game__container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-right: 4px;
}

.game__img__wrapper {
  width: 100%;
  height: 100%;
}

#first-game-img {
  height: 100%;
  width: 100%;
  min-height: 255px;
  min-width: 255px;
}
#second-game-img {
  height: 100%;
  width: 100%;
  min-height: 255px;
  min-width: 255px;
}
.game__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.game__container:hover .game__overlay {
  opacity: 1;
}

.game__overlay__btn {
  background: #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
}

.embla-games_buttons_area {
  position: absolute;
  top: 66px;
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 1435px;
}

.embla-games__button {
  background: black;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 32px;
  z-index: 1;
  padding-left: 15px;
  padding-right: 12px;
  padding-bottom: 4px;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  opacity: 0.7;
}

.embla-games__button:hover {
  opacity: 1;
}

.embla-winners__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.embla-games__button--prev {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.embla-games__button--next {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.embla-winners__viewport {
  overflow: hidden;
}

.embla-games_buttons_area_fullwidth {
  position: relative;
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 1440px;
  top: -58px;
}

.embla__buttons_games {
  position: relative;
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 1440px;
  top: -65px;
}

@media (max-width: 768px) {
  .embla-winners__viewport {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .embla-winners__button--next {
    display: none;
  }
}

@media (max-width: 800px) {
  #first-game-img {
    min-width: 260px;
    min-height: 260px;
  }
  #second-game-img {
    min-width: 260px;
    min-height: 260px;
  }
  .newgames-first {
    width: 260px;
  }
  .game__img {
    width: 130px;
    height: 118px;
  }
  .game__container {
    width: 120px;
  }
}

@media (max-width: 550px) {
  #first-game-img {
    min-width: 230px;
    min-height: 230px;
  }
  #second-game-img {
    min-width: 230px;
    min-height: 230px;
  }

  .newgames-first {
    width: 230px;
  }
  .game__img {
    width: 110px;
    height: 102px;
  }
  .game__container {
    width: 100px;
  }
}

@media (max-width: 364px) {
  #first-game-img {
    min-width: 230px;
    min-height: 230px;
  }
  #second-game-img {
    min-width: 230px;
    min-height: 230px;
  }
  .newgames-first {
    min-width: 100%;
    margin-bottom: 10px;
  }
  .newgames_area {
    flex-direction: column;
  }
  .embla-games__container {
    width: 100vw !important;
  }
}

.games-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
}

.game__wrapper {
  position: relative;
  width: 150px;
  height: 200px;
  z-index: 9999;
  animation: brightnessShadowPulse 1.5s infinite alternate;
}

.game__image {
  width: 180px;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

#unique-position-number {
  left: -50px;
}

.position-number {
  position: absolute;
  top: 55px;
  left: -82px;
  font-size: 200px;
  color: #1f1f1f;
  font-weight: bold;
  text-shadow: 0px -1px 3px gold;
  line-height: 1;
  z-index: -1;
  animation: colorChange 4s infinite alternate;
}

.newgames-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
}

@media (max-width: 1460px) {
  .embla-games__container {
    display: flex;
    gap: 10px;
    width: 50vw;
  }
  .games-container {
    max-width: 1220px;
  }
}

.topgames-scroll {
  margin-bottom: 80px;
}

@media (max-width: 1310px) {
  .game__image {
    width: 140px;
    height: 180px;
  }
  .position-number {
    top: 34px;
    left: -65px;
    font-size: 167px;
  }
  #unique-position-number {
    left: -40px;
  }
  .games-container {
    max-width: 1100px;
    margin-top: 5px;
  }
  .topgames-scroll {
    margin-bottom: 20px;
  }
}

@media (max-width: 1200px) {
  .games-container {
    max-width: 990px;
  }
  .game_types_area {
    width: 100vw;
  }
}

@media (max-width: 1070px) {
  .games-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 70px;
  }
  .newgames-container {
    overflow-x: scroll;
    overflow-y: hidden;
    padding-left: 40px;
    width: 100vw;
  }
}

@media (max-width: 420px) {
  .game_types__wrapper {
    justify-content: start;
    overflow: scroll;
  }
  .game_types__wrapper {
    flex-wrap: nowrap;
  }
}

.game_types_area {
  display: flex;
  justify-content: center;
  padding: 14px;
  flex-direction: column;
  color: white;
  background: #121113;
  margin-top: 20px;
  overflow: hidden;
}

.game_types_area h1 {
  font-size: 32px;
  text-align: center;
  padding-top: 15px;
}

.game_types_area p {
  font-size: 20px;
  text-align: center;
  padding-bottom: 15px;
}

.categoryTitle {
}
.img-bg-round {
  display: flex;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px black;
}
.game_type__card:nth-child(1) .img-bg-round {
  background: #462558;
}

.game_type__card:nth-child(2) .img-bg-round {
  background: #1e4372;
}

.game_type__card:nth-child(3) .img-bg-round {
  background: #0d561b;
}

.game_type__card:nth-child(4) .img-bg-round {
  background: #7e3700;
}

.game_type__card:nth-child(5) .img-bg-round {
  background: #7f0a24;
}

.game_type__card:nth-child(6) .img-bg-round {
  background: #a57d00;
}

.category-icon {
  width: 115px;
  position: relative;
}
.category-icon-live {
  width: 115px;
}

.category-icon-table {
  width: 145px;
}

.category-icon-scratch {
  width: 105px;
}

.startbanner {
  flex: 3;
  background-image: url(/assets/img/start-banner.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  width: 70%;
  background-color: #a13e51;
  margin-top: 30px;
  margin-bottom: 20px;
  max-width: 1000px;
  box-shadow: 5px 5px 8px #a13e51;
  animation: PulsatingShadowLightRed 1.5s infinite alternate;
}

.startbanner_content {
  height: 170px;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
}

.startbannerimage {
  width: 248px;
  position: relative;
  top: -17px;
}

.bannertexts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  z-index: 1;
}

.btn_help_banner {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  font-size: 16px;
  border: 2px solid white;
  padding: 8px 15px;
  border-radius: 10px;
  background: black;
}

@media (max-width: 650px) {
  .section-image-promotions {
    margin-top: 150px;
    margin-bottom: 0px;
    width: 290px;
  }
  .startbanner {
    width: 90%;
  }

  .startbanner_content {
    height: 250px;
  }

  .startbannerimage {
    position: absolute;
    width: 150px;
    top: 100px;
  }

  .bannertexts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;
  }
}

@media (max-width: 460px) {
  .startbannerimage {
    position: absolute;
    width: 145px;
    top: 125px;
  }
  .bannertexts {
    z-index: 99;
  }
}

.container-max {
  max-width: 1440px;
  margin: 0 auto;
}

.header-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 3.5rem;
  margin-top: 2rem;
}

.header-title {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

@media (min-width: 768px) {
  .header-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .header-title {
    font-size: 2.25rem;
  }
}

.svg-icon {
  width: 24px;
  height: 24px;
  margin: 5px;
}

#promotions-area {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  padding: 10px;
}

#promotions-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0rem 0 0.5rem;
}

.promotions-title {
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

@media (min-width: 768px) {
  .promotions-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .promotions-title {
    font-size: 2rem;
  }
}

#promotions-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  width: 99%;
}

.carousel-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin-bottom: 350px;
}

.carousel-button {
  background-color: white;
  color: black;
  width: 34px;
  height: 34px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.carousel-button:hover {
  background-color: #ca9730;
  color: white;
}

.hidden-sm {
  display: none;
}

.hidden {
  display: none;
}
@media (min-width: 640px) {
  .hidden-sm {
    display: flex;
  }

  #carousel-navigation {
    display: none;
  }
}

.icon {
  width: 24px;
  height: 24px;
  margin: 5px;
}

.carousel-viewport {
  overflow: hidden;
  width: 1230px;
  position: relative;
}

#carousel-container {
  display: flex;
}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  margin-right: 15px;
  box-sizing: border-box;
}

.promotion-card {
  background-size: cover;
  background-position: center;
  height: 250px;
  width: 400px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  color: #fcfcfc;
  animation: brightnessShadowPulse 1.5s infinite alternate;
}

.promotion-info {
  text-shadow: 0 12px 18px rgba(0, 0, 0, 0.9);
}

.promotion-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.promotion-actions a {
  display: block;
  margin: 5px 0;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.signup {
  color: #f3eff4;
  display: inline-block;
  text-decoration: none;
  background-color: red;
  border-radius: 12px;
  font-size: 16px;
  padding: 2px 15px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.signup:hover {
  filter: brightness(1.2);
}

.newreleases-area {
  margin-top: 8px;
}

.readmore {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  font-size: 16px;
  border: 2px solid white;
  padding: 0px 15px;
  border-radius: 12px;
  background: black;
}

.promotion-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-shadow: 1px 2px 4px black;
}

@media (max-width: 1440px) {
  .carousel-container {
    width: 915px;
  }
}

@media (max-width: 930px) {
  .carousel-container {
    width: 713px;
  }
  .promotion-card {
    height: 200px;
    width: 298px;
  }
}

@media (max-width: 720px) {
  .startbannerimage {
    width: 200px;
    top: 23px;
  }
  .carousel-container {
    width: 610px;
  }
  .promotion-card {
    height: 200px;
    width: 250px;
  }
  .firstbanner {
    background-size: auto 364px;
  }
  .secondbanner {
    background-size: auto 380px;
    background-position: top 0px center;
  }
}

@media (max-width: 620px) {
  .carousel-container {
    width: 510px;
  }
  .promotion-card {
    height: 200px;
    width: 200px;
  }
}

.hidemobilebutton {
  display: none;
}

@media (max-width: 520px) {
  .carousel-container {
    width: 415px;
  }
  .hidemobilebutton {
    display: flex;
  }
  .hidedesktopbutton {
    display: none;
  }
}

@media (max-width: 500px) {
  .slider2responsive {
    width: 40%;
  }
}

@media (max-width: 400px) {
  .slider2responsive {
    width: 33%;
  }
}

@media (max-width: 363px) {
  .slider2responsive {
    width: 100%;
  }
  #second-game-img {
    padding-left: 0px !important;
  }
}

.slidersbuttonsmobile {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 420px) {
  .carousel-container {
    width: 100%;
  }
  .promotion-card {
    height: 30vh;
    width: 94vw;
  }
  .hidemobilebutton {
    display: flex;
  }
  .hidedesktopbutton {
    display: none;
  }
}

@media (max-width: 730px) {
  .promotion-actions a {
    padding: 8px 9px;
  }
}

@media (max-width: 620px) {
  .promotion-actions a {
    padding: 7px 4px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .promotion-actions a {
    padding: 10px 15px;
    font-size: 18px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1f1f1f;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 440px;
  width: 100%;
  max-height: 100%;
  text-align: center;
  position: relative;
  margin: 5px;
}

.modal-image {
  width: 100%;
  height: 300px;
  border-radius: 5px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
  color: white;
}

.modal-description {
  font-size: 1rem;
  margin: 10px 0;
  color: white;
  padding: 8px;
}

.close-modal {
  position: absolute;
  top: -2px;
  right: 10px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: yellow;
}

.titles-area h1 {
  font-size: 32px;
  text-align: center;
  padding-top: 15px;
}

.titles-area p {
  font-size: 20px;
  text-align: center;
  padding-bottom: 15px;
}

.infocards-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 5px;
  gap: 18px;
  flex-wrap: wrap;
}

.infocard {
  background-color: #121113;
  width: 380px;
  height: 359px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding-bottom: 0px;
  box-shadow: 5px 5px 12px #ffbc00;
  animation: pulsatingShadowGold 1.5s infinite alternate;
}

.infocard-gold-first {
  background-image: url(/assets/img/firstcardbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.infocard-gold-first::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.infocard-gold-second {
  background-image: url(/assets/img/secondcardbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.infocard-gold-second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.infocard-gold-third {
  background-image: url(/assets/img/thirdcardbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.infocard-gold-third::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.bluecard {
  box-shadow: 5px 5px 8px #007aff;
  animation: pulsatingShadowBlue 1.5s infinite alternate;
  background-image: url(/assets/img/nextlevelbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.bluecard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.orangecard {
  box-shadow: 5px 5px 8px #f46606;
  animation: pulsatingShadowOrange 1.5s infinite alternate;
  background-image: url(/assets/img/orangecardbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.orangecard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.redcard {
  box-shadow: 5px 5px 8px #e50047;
  animation: pulsatingShadowRed 1.5s infinite alternate;
  background-image: url(/assets/img/redcardbackground.webp);
  background-position: top -508px left -340px;
  background-repeat: no-repeat;
  background-size: auto 23rem;
  background-position: top 0px left -211px;
}

.redcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.infocard-text {
  color: white;
  z-index: 1;
  text-shadow: 2px 2px 4px black;
}

.infocard-title {
  color: white;
  font-size: 22px;
  padding-bottom: 5px;
  font-weight: 700;
}
.infocard-info {
  color: white;
  line-height: 20px;
}
.infocard-image {
  width: 230px;
}
.infocard-image-altwidth {
  width: 270px;
}

.infocard-image-goldarea {
  width: 150px;
}

.infocard-image-goldarea-altwidth {
  width: 195px;
}

@media (max-width: 410px) {
  .infocard-image {
    width: 200px;
  }
  .infocard-image-altwidth {
    width: 100%;
  }

  .infocard-image-goldarea {
    width: 120px !important;
  }

  .infocard-image-goldarea-altwidth {
    width: 140px;
  }
}

.joinbanner-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.joinbanner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1180px;
  width: 100%;
  background-color: #ffbc00;
  margin-top: 30px;
  color: white;
  text-shadow: 2px 2px 4px black;
  margin-bottom: 30px;
  height: 339px;
  border-radius: 20px;
  background-image: url("/assets/img/joinbannerbackground.webp");
  background-position: top -241px right;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 8px #ffbc00;
  animation: pulsatingShadowGold 1.5s infinite alternate;
  position: relative;
}
.joinbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 20px;
}
.joinbanner-text-area {
  width: 50%;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
  height: 70%;
  z-index: 1;
}

.joinbanner-title {
  font-size: 29px;
  font-weight: 800;
}
.joinbanner-text {
  font-size: 20px;
  line-height: 25px;
}
.joinbanner-img-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: purple;
  margin-top: 30px;
  margin-right: 60px;
  width: 240px;
  height: 240px;
  margin-bottom: 30px;
  border-radius: 100%;
  box-shadow: 5px 5px 8px #a13e51;
  animation: PulsatingShadowLightRed 1.5s infinite alternate;
}
.joinbanner-img {
  position: relative;
  width: 100%;
}

.signupbanner {
  padding-top: 10px;
  padding-bottom: 7px;
  box-shadow: 2px 2px 4px black;
}

@media (max-width: 670px) {
  .firstbanner {
    background-size: auto 350px;
  }
}

@media (max-width: 610px) {
  .joinbanner-text-area {
    z-index: 99999;
    color: white;
    width: 100%;
    padding-right: 20px;
    padding-left: 30px;
    text-shadow: 1px 1px 1px black;
  }
  .joinbanner-img-area {
    position: absolute;
    width: 280px;
    height: 280px;
    filter: brightness(0.5);
  }
}

@media (max-width: 300px) {
  .joinbanner-img-area {
    width: 220px;
    height: 220px;
    left: 9%;
  }
  .infocard-info {
    line-height: 18px;
  }
  .infocard-title {
    font-size: 20px;
  }
  .promotion-actions a {
    padding: 10px 12px;
  }
}

.casinoabout-purplebanner {
  background-color: purple;
  box-shadow: 5px 5px 8px #a13e51;
  animation: PulsatingShadowLightRed 1.5s infinite alternate;
  background: url("/assets/img/purplebannerbackground.webp") 0% 0% / cover;
  background-position: top -0px right -145px;
  background-repeat: no-repeat;
  position: relative;
}
.casinoabout-purplebanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.casinoabout-purplebanner-content {
  z-index: 2;
  text-shadow: 2px 2px 4px black;
}
.casinoabout-blackbanner-content {
  z-index: 2;
  text-shadow: 2px 2px 4px black;
}
.casinoabout-blackbanner {
  background-color: black;
  box-shadow: 5px 5px 8px #ffbc00;
  animation: pulsatingShadowGold 1.5s infinite alternate;
  background: url("/assets/img/aboutbanner.webp") 0% 0% / cover;
  background-position: top -0px right -330px;
  background-repeat: no-repeat;
  position: relative;
}
.casinoabout-blackbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 20px;
}
.casinoabout-banner {
  display: flex;
  width: 95%;
  border-radius: 25px;
  margin-top: 25px;
  padding: 10px 24px 0px 24px;
}
.casinoabout-title {
  margin-bottom: 30px;
  font-size: 32px;
  color: white;
  font-weight: bold;
  padding-top: 20px;
}
.casinoabout-text {
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 20px;
}
.casinoabout-image {
  width: 160px;
}

.casinoabout-image-gold {
  width: 176px;
  margin-right: 10px;
}

.casinoabout-banners {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.embla-games__container-margin {
  margin-bottom:22px;
}
@media (max-width: 1040px) {
  .casinoabout-image {
    width: 220px;
  }
  .casinoabout-image-gold {
    width: 220px;
  }
  .embla-games__margin {
    margin-bottom:4px;
  }
}

@media (max-width: 900px) {
  .casinoabout-image {
    display: none;
  }
  .casinoabout-image-gold {
    display: none;
  }
}

@media (max-width: 1300px) {
  .promotion-card-promotionpage {
    width: 45%;
  }
}

@media (max-width: 430px) {
  .joinbanner-img-area {
    left: 6%;
  }
  .casinoabout-title {
    font-size: 24px;
    text-align: center;
  }
  .casinoabout-text {
    font-size: 18px;
    text-align: center;
  }
}

a:hover {
  border-color: gold;
  color: white;
}

.section-banners {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.section-gamesbanner {
  background-color: #d24f84;
  box-shadow: 5px 5px 10px #d24f84;
  background: url("/assets/img/gamesBackground.webp") 0% 0% / cover;
  background-repeat: no-repeat;
  animation: pulsatingShadowGames 1.5s infinite alternate;
}

.section-searchbanner {
  background-color: #d24f84;
  box-shadow: 5px 5px 10px #d24f84;
  background: url("/assets/img/searchbanner.webp") 0% 0% / cover;
  background-repeat: no-repeat;
  margin-bottom: 0px !important;
  animation: pulsatingShadowGames 1.5s infinite alternate;
  margin-top:10px;
}

.section-purplebanner {
  background-color: #ba00ff;
  box-shadow: 5px 5px 8px #a13e51;
  animation: PulsatingShadowLightRed 1.5s infinite alternate;
}

.section-greenbanner {
  background-color: #00ad25;
  box-shadow: 5px 5px 10px green;
  background: url(/assets/img/contactusBackground.webp) 0% 0% / cover;
  background-repeat: no-repeat;
  animation: pulsatingShadowGreen 1.5s infinite alternate;
}

.section-banner {
  display: flex;
  width: 100%;
  border-radius: 0px;
  margin-bottom: 40px;
  height: 450px;
  justify-content: space-around;
  gap: 50px;
  position: relative;
}
.section-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 20px;
  z-index: 1;
  text-shadow: 2px 2px 8px black;
}

.section-title {
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: bold;
  color: white;
  padding-top: 20px;
}

.section-text {
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 20px;
}

.section-image {
  width: 345px;
  margin-top: -80px;
  margin-bottom: -65px;
}

.section-image-promotions {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 450px;
}

.section-image-contactus {
  margin-top: 60px;
  margin-bottom: 0px;
  width: 400px;
}

.games-section-image {
  width: 360px;
  margin-top: 72px;
  margin-bottom: 0px;
}

.search-section-image {
  width: 320px;
  margin-top: 130px;
  margin-bottom: 0px;
}

@media (max-width: 840px) {
  .games-section-image {
    width: 320px;
    margin-top: 90px !important;
    margin-bottom: 0px !important;
  }
  .search-section-image {
    width: 300px;
    margin-top: 160px !important;
    margin-bottom: 0px !important;
}
  .section-image {
    margin-top: -40px;
    margin-bottom: -50px;
  }
  .promotion-card-promotionpage {
    width: 48%;
  }
  .section-image-promotions {
    margin-top: 90px;
    margin-bottom: 0px;
    width: 350px;
  }
  .section-image-contactus {
    margin-top: 95px;
    margin-bottom: 0px;
    width: 350px;
  }
  .section-banner {
    gap: 0px;
  }
  .section-title {
    margin-bottom: 18px;
  }
  .section-text {
    font-size: 18px;
  }
}

@media (max-width: 690px) {
  .section-title {
    font-size: 43px;
  }
}

@media (max-width: 640px) {
  .games-section-image {
    width: 260px;
    margin-top: 177px !important;
    margin-bottom: 0px;
    right: 18px;
  }
  .search-section-image {
    width: 260px;
    margin-top: 210px !important;
    margin-bottom: 0px;
    left: 18px;
}
  .section-title {
    margin-bottom: 180px;
  }
  .section-image {
    width: 260px;
    margin-top: 9px;
    position: absolute;
    filter: brightness(0.8);
    right: 8px;
  }
  .promotion-card-promotionpage {
    width: 100%;
  }
  .section-image-promotions {
    margin-top: 80px;
  }
  .section-image-contactus {
    margin-top: 109px;
    width: 340px;
  }
  .banner-content {
    z-index: 9;
    align-items: center;
  }
  .section-title {
    text-align: center;
  }
  .section-text {
    font-size: 18px;
    text-align: center;
  }
}

.promotions-text {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1440px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 25px;
}

.toggle_menu__btn-loggedOn {
  position: absolute;
  display: flex !important;
  margin-top: 10px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .toggle_menu__btn-loggedOn {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .menu {
    width: 100%;
  }
}

@media (max-width: 345px) {
  .coins__box {
    width: 255px;
  }
}

.scroll-container {
  padding-left: 5px;
}

@media (max-width: 570px) {
  .gameCategory__small__img {
    display: none;
  }
  .gameCategory__banner {
    padding-left: 0px !important;
    align-items: center !important;
  }
}

@media (max-width: 400px) {
  .otp_row {
    flex-direction: column;
    align-items: center;
  }
}

.card-close-btn {
  position: absolute;
  right: 0px;
  padding: 8px;
  font-size: 32px;
  padding-top: 0px;
}
.card-close-btn:hover {
  text-shadow: 2px 2px 2px black;
  color: gold;
}

.search__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1440px;
}
.searchgame__container {
  width: 140px;
  height: 115px;
}

.coretaker-minilogo {
  padding-left: 8px;
  width: 42px;
}

@media (max-width: 385px) {
  .coins__box {
    width: 240px;
  }
  .coin_shop__btn {
    width: 40px;
  }
}

@media (max-width: 320px) {
  .coins__box {
    width: 200px;
    padding-right: 10px;
  }
}

.my_profile_white {
  color: #ffffff !important;
}

@media (max-width: 800px) {
  .searchgame__container {
    width: 120px;
  }
}

.game-container-list {
  width: 140px;
}

@media (max-width: 550px) {
  .searchgame__container {
    width: 100px;
  }
  .game-container-list {
    width: 105px;
  }
}

.load-more-button {
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 20px;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.load-more-button:hover {
  border: 2px solid gold;
  color: gold;
  cursor: pointer;
}

@media (max-width: 580px) {
  .embla-games__container {
    width: 45vw;
  }
}

@media (max-width: 470px) {
  .embla-games__container {
    width: 40vw;
  }
}

@media (max-width: 420px) {
  .embla-games__container {
    width: 30vw;
  }
}

@media (max-width: 364px) {
  #first-game-img {
    min-width: 96vw;
  }
  #second-game-img {
    min-width: 96vw;
  }
  .embla-games__container-margin {
    margin-bottom:2px;
  }
}

.box {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s, transform 0.4s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.progress {
  animation: colorChange 4s infinite alternate;
}

.sweep_coin {
  box-shadow: #007aff 0px 4px 8px;
  border-radius: 100%;
}

.golden_coin {
  box-shadow: gold 0px 4px 8px;
  border-radius: 100%;
}

.meter {
  animation: colorChange 4s infinite alternate;
}

.lobby__banner {
  animation: pulsatingShadowGradientViolet 1.5s infinite alternate;
  background: url("/assets/img/lobbybanner.webp") 0% 60% / cover;
}

.slots__banner {
  animation: pulsatingShadowGradientGoldViolet 1.5s infinite alternate;
  background: url("/assets/img/slotsbanner.webp") 0% 60% / cover;
}

.casual__banner {
  animation: pulsatingShadowGradientBlueDark 1.5s infinite alternate;
  background: url("/assets/img/casualbanner.webp") 0% 60% / cover;
}

.roulettes__banner {
  animation: pulsatingShadowGradientGreen 1.5s infinite alternate;
  background: url("/assets/img/roulettebanner.webp") 0% 60% / cover;
}

.table__banner {
  animation: pulsatingShadowGradientBlueLight 1.5s infinite alternate;
  background: url("/assets/img/tablebanner.webp") 0% 60% / cover;
}

.bingo__banner {
  animation: pulsatingShadowGradientPurple 1.5s infinite alternate;
  background: url("/assets/img/bingobanner.webp") 0% 60% / cover;
}
.jackpots__banner {
  animation: pulsatingShadowGradientOrange 1.5s infinite alternate;
  background: url("/assets/img/jackpotbanner.webp") 0% 60% / cover;
}
.others__banner {
  animation: pulsatingShadowGradientRed 1.5s infinite alternate;
  background: url("/assets/img/othersbanner.webp") 0% 60% / cover;
}

.game_cards__wrapper img {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s ease-in-out;
}

.game_cards__wrapper img.visible {
  opacity: 1;
  animation: boing 0.8s ease forwards;
}

.whiteborderbtn {
  transition: all 0.5s ease-in-out;
}

.whiteborderbtn:hover {
  border: 2px solid gold !important;
  color: gold !important;
  box-shadow: gold 3px 3px 8px;
}

.nonlogged_header__item:hover {
  transition: all 0.3s ease-in-out;
  color: gold;
  text-decoration: none;
  text-shadow: 0px 0px 10px rgba(255, 223, 0, 0.8),
    2px 2px 2px rgba(255, 215, 0, 0.5);
}
.footer__links a:hover {
  transition: all 0.3s ease-in-out;
  color: gold;
  text-decoration: none;
  text-shadow: 0px 0px 10px rgba(255, 223, 0, 0.8),
    2px 2px 2px rgba(255, 215, 0, 0.5);
}
.logged_header_action__btn__img {
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}

.logged_header_action__btn__img:hover {
  filter: brightness(1.6);
}

#show-eye-icon {
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}

#show-eye-icon:hover {
  opacity: 1;
}

.social_btn__wrapper {
  opacity: 0.7;
  filter: brightness(0.6);
  transition: all 0.3s ease-in-out;
}

.social_btn__wrapper:hover {
  opacity: 1;
  filter: brightness(1.5);
}

.coin_shop__amount__main {
  transition: all 0.3s ease-in-out;
}

.coin_shop__amount__main:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 8px red;
}

.menulogo_desktop {
  padding-bottom: 0px;
  margin-top: 20px;
  width: 208px;
  margin-left: 65px;
  position: fixed;
  height: 24px;
  z-index: 101;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menulogo_desktop {
    display: none;
  }
  .menu__logo {
    margin-left: 50px;
  }
}

.toggle_menu_loggedout {
  top: 0px;
  right: 2px;
}

@media (max-width: 1040px) {
  .toggle_menu_loggedout {
    top: 8px;
  }
  .authorization__buttons {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .toggle_menu_loggedout {
    top: 1px;
  }
}

@media (max-width: 650px) {
  .section-image-promotions {
    margin-top: 156px;
    margin-bottom: 0px;
    width: 290px;
  }
  .startbannerimage {
    width: 240px;
    top: 89px;
    right: 20px;
  }
}

@media (max-width: 330px) {
  .section-title {
    font-size: 38px;
  }
  .banner-content {
    padding: 3px;
  }
}

@media (max-width: 340px) {
  .joinbanner-img-area {
    width: 220px;
    height: 220px;
    left: 16%;
  }
  .section-image-contactus {
    margin-top: 179px;
    width: 270px;
    right: 15px;
  }
}

@media (max-width: 300px) {
  .startbannerimage {
    position: absolute;
    width: 170px;
    top: 148px;
    right: 17px;
  }
  .bannertexts {
    z-index: 99;
  }
}
