/* GET FONTS */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

/*----------------------------------------------
                    GLOBAL
------------------------------------------------*/
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none !important;
  list-style: none !important;
  color: inherit;
}

html[dir="rtl"],
html[dir="rtl"] #root,
html[dir="rtl"] body {
  font-family: "Rubik", sans-serif;
}

html[dir="ltr"],
html[dir="ltr"] #root,
html[dir="ltr"] body {
  font-family: "Poppins";
}

#root,
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  user-select: none;
  background-color: #111;
}

body::-webkit-scrollbar {
  cursor: pointer;
  width: 0.65rem;
  background: #2f3838;
}

body::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 0.65rem;
  background: #5a5a5a;
  border-radius: 0.3125rem;
}

#root {
  position: relative;
}

/* Global Media Query */
@media only screen and (max-width: 2600px) {
  html {
    font-size: 18px;
  }
}

@media only screen and (max-width: 2300px) {
  html {
    font-size: 17px;
  }
}

@media only screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1750px) {
  html {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1600px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1440px) {
  html {
    font-size: 13px;
  }
}

/*----------------------------------------------
                    Button
------------------------------------------------*/
.desktop_input {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  user-select: none;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  border-radius: 9.375rem;
  background: transparent;
  color: white;
}

html[dir="ltr"] .desktop_input {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

html[dir="rtl"] .desktop_input {
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  padding: 0.48rem 1.25rem;
}

.btn-primary {
  background-color: #c7a347 !important;
}

.pagenation-button {
  border: 0.18em solid #c7a347 !important;
  color: #ffffff;
}

.pagenation-button:hover {
  background: rgb(238 83 35 / 17%);
  color: #ffffff;
}

.pagenation-button:active {
  background: rgb(238 83 35 / 17%) !important;
  color: #ffffff !important;
}

.pagenation-button:disabled {
  color: #ccc;
}

/*----------------------------------------------
                Mobile Header
------------------------------------------------*/
.header_mobile {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #353535;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: none;
  z-index: 9999;
}

.header_mobile .header_site_info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header_site_info .sidebar_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.header_site_info .sidebar_btn span {
  display: inline-block;
  width: 25px;
  height: 3px;
  background: rgb(8, 86, 52);
  background: linear-gradient(90deg,
      rgba(8, 86, 52, 1) 0%,
      rgba(238, 127, 36, 1) 90%);
  border-radius: 0.2rem;
}

.header_mobile .header_site_info .header_logo {
  display: inline-block;
  width: 130px;
}

.header_mobile .header_site_info .header_logo img {
  width: 100%;
}

.header_mobile .header_user {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_user .user_auth {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.header_user .user_auth .button {
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  border: none;
  padding: 0.3rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_user .user_auth .button.register {
  background: -o-linear-gradient(top, #f7da79 0%, #a4802f 100%), #f4d676;
  background: linear-gradient(180deg, #f7da79 0%, #a4802f 100%), #f4d676;
  color: #111;
  font-weight: bold;
  height: 2.5rem;
  border-radius: 0.3rem;
}

.header_user .user_info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_user .user_info .user_balance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header_user .user_info .user_balance span {
  font-weight: 400;
  font-size: 1rem;
  color: #c7a347;
}

.header_user .user_info .user_balance .user_balance_lebel {
  color: #fff;
  font-weight: 600;
}

.header_user .user_info .user_menu_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  outline: none;
}

.header_user .user_info .user_menu_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dashboard_link_menu {
  position: absolute;
  top: 120%;
  z-index: 4;
  min-width: 160px;
  overflow: hidden;
  border-radius: 1rem;
  background-color: rgb(0 0 0 / 88%);
  border: 1px solid rgb(255 255 255 / 30%);
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
  -webkit-animation: reduceVertical 0.3s linear;
  animation: reduceVertical 0.3s linear;
}

html[dir="ltr"] .dashboard_link_menu {
  right: 0;
}

html[dir="rtl"] .dashboard_link_menu {
  left: 0;
}

.dashboard_link_menu.open {
  -webkit-animation: incraseVertical 0.3s linear forwards;
  animation: incraseVertical 0.3s linear forwards;
}

@keyframes incraseVertical {
  0% {
    opacity: 0;
    max-height: 0rem;
  }

  100% {
    opacity: 1;
    max-height: 215px;
  }
}

.dashboard_link_menu ul {
  margin: 0;
  padding: 0;
}

.dashboard_link_menu ul li a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem;
  border-bottom: 1px solid #515151;
}

.dashboard_link_menu ul li a img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain;
}

.dashboard_link_menu ul li a span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/*----------------------------------------------
                Mobile Footer
------------------------------------------------*/
.mobile_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #5f5f5f;
  z-index: 9999;
}

.mobile_footer .mobile_footer_menu {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile_footer .mobile_footer_menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile_footer .mobile_footer_menu li a {
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  width: 100%;
  color: #fff;
}

.mobile_footer .mobile_footer_menu li a.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#f3d675), to(#ab8835));
  background: -o-linear-gradient(top, #f3d675 0%, #ab8835 100%);
  background: linear-gradient(180deg, #f3d675 0%, #ab8835 100%);
  color: #000;
}

.mobile_footer .mobile_footer_menu li a img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.mobile_footer .mobile_footer_menu li a svg {
  width: 2rem;
  height: 2rem;
}

.mobile_footer .mobile_footer_menu li a span {
  font-size: 0.75rem;
  font-weight: 600;
}

/*----------------------------------------------
                Toastify
------------------------------------------------*/
.Toastify__toast-theme--light {
  background: #ffffff;
  color: #000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

html[dir="ltr"] .Toastify__toast-theme--light {
  border-radius: 0.5rem 0 0 0.5rem;
}

html[dir="rtl"] .Toastify__toast-theme--light {
  border-radius: 0 0.5rem 0.5rem 0;
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(90deg,
      rgba(8, 86, 52, 1) 0%,
      rgba(238, 127, 36, 1) 75%);
}

@media only screen and (max-width: 480px) {

  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 1rem;
    transform: translateX(0);
  }
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 65vw;
    padding: 0;
    margin: 0;
  }

  html[dir="ltr"] .Toastify__toast-container {
    right: 0;
    left: unset;
  }

  html[dir="rtl"] .Toastify__toast-container {
    left: 0;
    right: unset;
  }
}

/*----------------------------------------------
                Mobile Main Container
------------------------------------------------*/
.mobile_main_container {
  padding: 0 1rem;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: calc(100dvh - 65px);
}

.page_title {
  background: #5a5a5a;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 3.125rem;
  margin: 0 -1rem 0.5rem;
}

/*----------------------------------------------
                Desktop Slider
------------------------------------------------*/
.desktop_slider {
  margin-bottom: 1rem;
  user-select: none;
}

.desktop_slider .swiper {
  border-radius: 0;
  border: 1px solid #d06f1f8a;
}

.desktop_slider .swiper .swiper-slide {
  border-radius: 0;
  overflow: hidden;
}

.desktop_slider .swiper .swiper-slide img {
  max-height: 24.813rem;
  width: 100%;
}

.desktop_slider .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.desktop_slider .swiper-pagination-bullet {
  width: 0.288rem !important;
  min-width: 0.288rem !important;
  height: 0.288rem !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  margin: 0 0.144rem !important;
}

.desktop_slider .swiper-pagination-bullet-active {
  background: #ef5123 !important;
}

/*----------------------------------------------
                Home Page Container
------------------------------------------------*/
.home_page_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: stretch;
  margin: 0 -0.5rem;
}

.home_link {
  padding: 0.3rem;
}

.home_link a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 0;
  background: -o-linear-gradient(top, #F3D675 0%, #AB8835 100%);
  background: linear-gradient(180deg, #F3D675 0%, #AB8835 100%);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  border-radius: 5px;
}

.home_link.inline a {
  flex-direction: row;
  gap: 1rem;
}

.home_link img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.home_link.inline img {
  width: 40px;
  height: 40px;
}

.home_link img.Pragmatic {
  width: 175px;
  height: 76px;
}

.home_link span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/*----------------------------------------------
                Mobile Sidebar
------------------------------------------------*/
.overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 75%);
}

.mobile_sidebar {
  position: fixed;
  width: 280px;
  height: 100%;
  background-color: #000;
  top: 0;
  z-index: 100;
  transition: all 0.2s linear;
}

html[dir="ltr"] .mobile_sidebar {
  left: -280px;
}

html[dir="rtl"] .mobile_sidebar {
  right: -280px;
}

html[dir="ltr"] .mobile_sidebar.open {
  left: 0;
}

html[dir="rtl"] .mobile_sidebar.open {
  right: 0;
}

.mobile_sidebar .mobile_sidebar_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 74px;
}

.mobile_sidebar .mobile_sidebar_header img {
  width: 150px;
}

.mobile_sidebar .mobile_sidebar_header button {
  outline: none;
  background-color: rgb(255 255 255 / 12%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile_sidebar .mobile_sidebar_header button svg {
  width: 70%;
  height: 70%;
}

.mobile_sidebar .mobile_sidebar_list {
  height: calc(100% - 78px);
  overflow-y: auto;
  padding: 0;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  background-color: #141414;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #dddddd26;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_item.active {
  background-color: #252525;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_item span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_item.active span {
  color: #c7a347;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #86e9ff30;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section .section_header {
  margin: 0;
  text-align: center;
  background-color: #c7a347;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  color: #000;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section .lang_item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  padding-inline-start: 1rem;
  cursor: pointer;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section .lang_item img {
  width: 30px;
  height: 30px;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section .lang_item span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.mobile_sidebar .mobile_sidebar_list .mobile_sidebar_section .lang_item.active span {
  color: #c7a347;
}

/*----------------------------------------------
                User Skeleton
------------------------------------------------*/
.singleUserSkeletonContainer {
  display: block;
  width: 95px;
  height: 25px;
}

.singleUserSkeletonContainer .singleUserSkeleton {
  display: block;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------
        Coming Soon
------------------------------------------------*/
.coming_soon {
  width: 100%;
  min-height: calc(100dvh - 185px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
}

.coming_soon p {
  margin: 0;
}

.coming_soon a {
  text-decoration: none;
  color: #c7a347;
  font-size: 3rem;
}

/*----------------------------------------------
                Sport Iframe
------------------------------------------------*/
.sport_iframe {
  min-height: calc(100vh - (1.25rem + 115px + 1.875rem));
  height: calc(100vh - (1.25rem + 115px + 1.875rem));
  margin: -13px -1rem 0;
}

.sport_iframe .sport_iframe_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.sport_iframe .sport_iframe_header button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem 0.5rem 0 0;
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
  border: none;
  outline: none;
  color: #c7a347;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.sport_iframe .sport_iframe_header button svg {
  width: 100%;
  height: 100%;
}

.sport_iframe .singleIframeSkeletonContainer {
  display: block;
  width: 100%;
  height: calc(100dvh - 65px);
}

.sport_iframe .singleIframeSkeletonContainer .singleIframeSkeleton {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.sport_iframe .iframe {
  width: 100%;
  height: calc(100% - 39px);
  border-radius: 0;
  overflow: auto;
}

.sport_iframe .iframe>div>iframe {
  width: 100% !important;
  min-height: 100% !important;
}

/*----------------------------------------------
                Game Iframe
------------------------------------------------*/
.game_iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.game_iframe .game_iframe_header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  background: #01121e;
  height: 78px;
}

.game_iframe .game_iframe_header img {
  width: 185px;
}

.game_iframe .game_iframe_header button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem 0.5rem 0 0;
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
  border: none;
  outline: none;
  color: #c7a347;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.game_iframe .game_iframe_header button svg {
  width: 100%;
  height: 100%;
}

.game_iframe .singleIframeSkeletonContainer {
  display: block;
  width: 100%;
  height: calc(100% - 39px);
}

.game_iframe .singleIframeSkeletonContainer .singleIframeSkeleton {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.game_iframe .iframe {
  width: 100%;
  height: calc(100% - 78px);
  border-radius: 0;
  overflow: auto;
}

.game_iframe .iframe::-webkit-scrollbar {
  cursor: pointer;
  width: 0.2rem;
  background: #2f3838;
}

.game_iframe .iframe::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 0.2rem;
  background: #5a5a5a;
  border-radius: 0.3125rem;
}

.game_iframe .iframe div {
  width: 100%;
  overflow: auto;
}

.game_iframe .iframe div::-webkit-scrollbar {
  cursor: pointer;
  width: 0.2rem;
  background: #2f3838;
}

.game_iframe .iframe div::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 0.2rem;
  background: #5a5a5a;
  border-radius: 0.3125rem;
}

.game_iframe .iframe div iframe {
  width: 100% !important;
  min-height: 100% !important;
}

/*----------------------------------------------
                Modal Comp
------------------------------------------------*/
.modal_layout {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal_layout .modal_content {
  background: #111;
  border-radius: 0.625rem;
  position: relative;
  padding: 3.5rem;
}

/* Close Modal */
.modal_layout .modal_content .close_modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2.063rem;
  width: 1rem;
  height: 1rem;
  color: white;
  cursor: pointer;
}

html[dir="ltr"] .modal_layout .modal_content .close_modal {
  right: 2.125rem;
}

html[dir="rtl"] .modal_layout .modal_content .close_modal {
  left: 2.125rem;
}

.modal_layout .modal_content .close_modal svg {
  width: 100%;
  height: 100%;
}

/* Login Modal */
.modal_layout .login_modal {
  display: grid;
  grid-template-columns: 1fr;
}

.modal_layout .login_modal .modal_img {
  position: relative;
}

.modal_layout .login_modal .modal_img img {
  width: 24.875rem;
  height: 31rem;
  position: absolute;
  bottom: 0;
}

html[dir="ltr"] .modal_layout .login_modal .modal_img img {
  left: -2.5rem;
  border-top-right-radius: 80%;
}

html[dir="rtl"] .modal_layout .login_modal .modal_img img {
  right: -2.5rem;
  transform: rotateY(180deg);
  border-top-left-radius: 80%;
}

.modal_layout .login_modal .login_form_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal_layout .login_modal .login_form_container .login_title {
  margin-bottom: 2.375rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.modal_layout .login_modal .login_form_container .login_form {
  width: 17.75rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.login_form .desktop_input {
  border: 0.18em solid #c7a347;
}

.login_form .desktop_input:hover {
  background: rgb(238 83 35 / 17%);
}

/*----------------------------------------------
                Blure Container
------------------------------------------------*/
.blure_container {
  /* background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    -webkit-backdrop-filter: blur(0.313rem);
    backdrop-filter: blur(0.313rem); */
  z-index: 2;
}

.blure_container.slot {
  /* padding: 1.875rem;
    margin-bottom: 1.25rem; */
}

.blure_container.mb {
  /* margin-bottom: 1.25rem; */
}

.blure_container.top_win_container {
  /* padding: 1.25rem 1.875rem 1.8755rem 1.875rem; */
}

/* Top Win */
.top_win_container .top_win_header {
  display: flex;
  padding-bottom: 0.625rem;
  align-items: center;
  align-self: stretch;
  user-select: none;
}

.top_win_container .top_win_header .top_win_title {
  font-weight: 700;
  font-size: 2.4rem;
  color: white;
  white-space: nowrap;
  margin-inline-end: 1.25rem;
  margin-bottom: 0;
}

.top_win_container .top_win_header .top_win_separator {
  height: 1px;
  width: 100%;
  flex: 1 0 0;
  background: rgba(182, 186, 213, 0.2);
}

.top_win_container .top_win_body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.top_win_container .top_win_body .top_win_row {
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.625rem 0;
  user-select: text;
}

.top_win_container .top_win_body .top_win_row .top_win_col {
  display: flex;
  flex-direction: column;
  text-align: center;
}

html[dir="ltr"] .top_win_container .top_win_body .top_win_row .top_win_col.user {
  text-align: left;
}

html[dir="ltr"] .top_win_container .top_win_body .top_win_row .top_win_col.amount {
  text-align: right;
}

html[dir="rtl"] .top_win_container .top_win_body .top_win_row .top_win_col.user {
  text-align: right;
}

html[dir="rtl"] .top_win_container .top_win_body .top_win_row .top_win_col.amount {
  text-align: left;
  direction: ltr;
  justify-content: start;
}

.top_win_container .top_win_body .top_win_row .top_win_col span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.top_win_container .top_win_body .top_win_row .top_win_col.data span {
  color: #ffffff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top_win_container .top_win_body .top_win_row .top_win_col.amount.data {
  color: #c7a347;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-end;
}

.top_win_container .top_win_body .top_win_row .top_win_col.amount.data .currency {
  margin-inline-start: 5px;
}

.top_win_container .top_win_body .top_win_row .top_win_col.amount.data span:first-child {
  color: #c7a347;
  flex-direction: row;
}

.top_win_container .top_win_body .top_win_row .top_win_col.amount.data span:not(:first-child) {
  font-size: 0.75rem;
}

/*----------------------------------------------
                Slots
------------------------------------------------*/
.slots:not(:last-child) {
  margin-bottom: 2.5rem;
}

.slots:last-child {
  margin-bottom: 0;
}

.slots .slots_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  padding: 0;
  user-select: none;
}

.slots .slots_header .header_row {
  display: flex;
  align-items: center;
}

.slots_header .header_row .slot_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 0.5rem;
}

.slots_header .header_row .slot_icon img {
  width: 25px;
  height: 25px;
}

.slots_header .slots_title {
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  white-space: nowrap;
  text-transform: capitalize;
  margin: 0;
}

.slots_header .slots_separator {
  width: 100%;
  height: 1px;
  display: flex;
  background: rgba(182, 186, 213, 0.2);
  margin: 0 1.25rem;
}

.slots_header .slots_action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots_header .slots_action a {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-inline-end: 1rem;
  text-decoration: none;
}

.slots_header .slots_action .slots_action_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots_header .slots_action .slots_action_btn span {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.slots_header .slots_action .slots_action_btn span.slots_action_btn_prev {
  margin-inline-end: 0.313rem;
}

.slots_header .slots_action .slots_action_btn span.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slots_header .slots_action .slots_action_btn span svg {
  width: 100%;
  height: 100%;
}

/* Slot Body */
.slots .slots_body {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5rem;
  user-select: none;
}

/* Single Slot Game */
.slots_body .single_slots_game {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #c7a347;
}

.single_slots_game .single_slots_game_image {
  width: 100%;
  height: 7rem;
  background-image: url("/assets/img/preloader.gif");
  background-position: center;
  background-color: #ffffff0d;
  background-repeat: no-repeat;
  background-size: 80%;
  border: 1px solid #ffffff1a;
  border-radius: 0;
  overflow: hidden;
}

.single_slots_game .single_slots_game_image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.single_slots_game .single_slots_game_control {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #c7a347;
  height: 36%;
}

.single_slots_game .single_slots_game_control .game_play_btn {
  margin: 0px auto;
  width: 1.875rem;
  height: 1.875rem;
}

.single_slots_game .single_slots_game_control .game_play_btn svg {
  width: 100%;
  height: 100%;
}

.single_slots_game .single_slots_game_control .game_content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem;
}

.single_slots_game_control .game_content .game_info {
  align-items: flex-start;
  color: #ffffff;
}

.single_slots_game_control .game_content .game_info .game_name {
  max-width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1rem;
  display: -webkit-box;
  display: -moz-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

html[dir="rtl"] .single_slots_game_control .game_content .game_info .game_name {
  text-align: right;
  direction: ltr;
}

.single_slots_game_control .game_content .game_info .game_provider {
  font-size: 0.625rem;
  font-weight: 400;
  display: block;
}

.single_slots_game_control .game_content .game_fav {
  display: flex;
  min-width: 1.75rem;
  min-height: 1.75rem;
  max-width: 1.75rem;
  max-height: 1.75rem;
  cursor: pointer;
}

.single_slots_game_control .game_content .game_fav .game_fav_btn {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fdd834;
}

.single_slots_game_control .game_content .game_fav .game_fav_btn svg {
  width: 100%;
  height: 100%;
}

/* Main Slot Header */
.slot_main_header {
  background: #5a5a5a;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 3.125rem;
  margin: 0 -1rem;
  margin-bottom: 1rem;
}

/*----------------------------------------------
                Skeleton
------------------------------------------------*/
.singleSkeletonContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.singleSkeletonContainer .singleSkeleton {
  width: 100%;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/*----------------------------------------------
                Single Slot Skeleton
------------------------------------------------*/
.singleSlotSkeletonContainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5rem;
  user-select: none;
}

.singleSlotSkeleton {
  display: flex !important;
  width: 100%;
  height: 7rem;
  border-radius: 0.625rem !important;
}

/*----------------------------------------------
                Single Provider Skeleton
------------------------------------------------*/
.singleProvSkeletonContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem;
  user-select: none;
  margin-bottom: 3.75rem;
}

.singleProvSkeleton {
  display: flex !important;
  width: 100%;
  height: 10rem;
  border-radius: 0.625rem !important;
}

/*----------------------------------------------
                Single Filter Skeleton
------------------------------------------------*/
.singleFilterSkeletonContainer {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  width: 100%;
  overflow: auto;
}

.singleFilterSkeletonContainer .singleFilterSkeleton {
  flex-shrink: 0;
  width: 75px;
  height: 40px;
  border-radius: 5px;
}

/*----------------------------------------------
                Load More
------------------------------------------------*/
.load_more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.load_more .load_more_btn {
  flex: 0.3;
  border: 0.18em solid #c7a347;
  font-family: inherit;
  font-weight: 700;
  color: white;
}

html[dir="ltr"] .load_more .load_more_btn {
  padding: 0.725rem 1.25rem;
  font-size: 1rem;
}

html[dir="rtl"] .load_more .load_more_btn {
  padding: 0.725rem 1.25rem;
  font-size: 1rem;
}

.load_more .load_more_btn:hover {
  background: rgb(238 83 35 / 17%);
}

.load_more .load_more_btn.disabled {
  cursor: not-allowed;
}

.form-group .form-wrapper:first-child {
  margin-right: 20px;
}

.form-group .form-wrapper {
  width: 50%;
}

.form-wrapper {
  margin-bottom: 17px;
}

.form-control {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  padding: 0 20px;
  border-radius: 20px;
  font-family: muli-bold;
  overflow: none;
}

.form-control:focus {
  border: none;
  outline: 0.18em solid #c7a347;
}

.form-wrapper label {
  margin-bottom: 9px;
  display: block;
  color: #ffffff;
}

/*----------------------------------------------
                Server Error
------------------------------------------------*/
.error_container {
  width: 100%;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  -webkit-backdrop-filter: blur(0.313rem);
  backdrop-filter: blur(0.313rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.error_container .error_content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.error_container .error_content img {
  width: 35%;
}

.error_container .error_content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.error_container .error_content button {
  width: fit-content;
  border: 2px solid #c7a347;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.8rem;
  transition: all 0.5s linear;
}

.error_container .error_content button:hover {
  -webkit-animation: reconnect 2s linear infinite;
  animation: reconnect 2s linear infinite;
  background: rgb(238 83 35 / 17%);
}

@keyframes reconnect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-180deg);
  }
}

.mbsc-windows.mbsc-label {
  color: #fff;
}

/*----------------------------------------------
                Filter
------------------------------------------------*/
.filter_container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.filter_container.flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}

.filter_list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5em;
}

.filter_list::-webkit-scrollbar {
  cursor: pointer;
  width: 0.3rem;
  height: 0.3em;
  background: #2f3838;
}

.filter_list::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 0.3rem;
  height: 0.3em;
  background: #5a5a5a;
  border-radius: 0.5rem;
}

.filter_container.flex .filter_list {
  width: 100%;
}

.filter_container .search_box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5em;
  width: 100%;
  padding: 0;
}

.filter_container .search_box input {
  width: 175%;
  text-align: start;
  padding: 0.75rem 1.25rem;
  background: #d3d3d3;
  border: 1px solid #4e5667;
  border-radius: .3125rem;
  color: #111;
}

.filter_container .search_box button {
  background: -o-linear-gradient(top, #f3d675 0%, #ab8835 100%);
  background: linear-gradient(180deg, #f3d675 0%, #ab8835 100%);
  border-radius: .3125rem;
  padding: 0 .625rem;
  font-weight: 700;
  font-size: .975rem;
  color: #111;
  min-height: 2.9rem;
}

.filter_list .filter_item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.5em;
  flex-shrink: 0;
  min-width: 50px;
  min-height: 25px;
  background-color: transparent;
  border: 2px solid #c7a347;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.1s linear;
}

.filter_list .filter_item:last-child {
  margin-inline-end: 0.5em;
}

.filter_list .filter_item:hover {
  background-color: rgba(238, 82, 35, 0.3);
}

.filter_list .filter_item.active {
  background-color: #c7a347;
}

/*----------------------------------------------
                Profile
------------------------------------------------*/
.profile_page {
  display: flex;
  flex-direction: column;
}

.back_btn_container {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0.5rem 0;
}

.back_btn_container .back_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #111;
  background: -o-linear-gradient(top, #F3D675 0%, #AB8835 100%);
  background: linear-gradient(180deg, #F3D675 0%, #AB8835 100%);
  border-radius: 0.3rem;
  cursor: pointer;
}

.info_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.info_container .info_icon {
  width: 50px;
  font-size: 1rem;
  color: #c7a347;
}

.info_container .info_icon svg {
  width: 100%;
  height: 100%;
}

.info_container .user_info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
}

.info_container .user_info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 70%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 0.3rem;
}

.info_container .user_info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 70%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 0.3rem;
}

.info_container .user_info span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.info_container .user_info .user_name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c7a347;
}

.info_container .user_balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info_container .user_balance .icon {
  font-size: 1.5rem;
  color: #c7a347;
}

.info_container .user_balance .balance {
  font-size: 1rem;
  font-weight: 600;
  color: #c7a347;
}

.info_container .user_balance .label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
}

.profile_page .link_list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.profile_page .link_list a {
  display: flex;
  width: 100%;
  text-decoration: none;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background-color: #5a5a5aa1;
  border-radius: 0.3rem;
}

.profile_page .link_list a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.profile_page .link_list a svg {
  width: 30px;
  height: 30px;
  color: #818285;
}

.profile_page .link_list a span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.lang_site {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 3rem;
}

.lang_site .single_lang {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border: 2px solid #c7a347;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  color: #fff;
}

.lang_site .single_lang.active {
  background: -o-linear-gradient(top, #F3D675 0%, #AB8835 100%);
  background: linear-gradient(180deg, #F3D675 0%, #AB8835 100%);
}

.lang_site .single_lang img {
  width: 25px;
  height: 25px;
}

.lang_site .single_lang span {
  font-size: 1rem;
  font-weight: 600;
}

/* New Style */
.iframe.play_sport_iframe {
  margin: -13px -1rem 0;
}

.btn {
  color: #fff !important;
}

.form_btn {
  border: none !important;
  background: -o-linear-gradient(top, #F3D675 0%, #AB8835 100%);
  background: linear-gradient(180deg, #F3D675 0%, #AB8835 100%);
}