:root {
  --app-height: 100%;

  --green: #134d38;
  --greenLight: #21815f;
  --greenExtraLight: #283732;
  --gree4: #ffffff33;
  --whiteLight: #ffffff99;
  --white: #fff;
  --black: #0000;
  --yellow: #ffc804;
  --darkGray: #232323;
  --lightBlack: #141414;
  --loginBtn: #1a674b;
}

html {
  height: var(--app-height);
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}

body {
  height: var(--app-height);
  width: 100%;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}

#root {
  min-height: var(--app-height);
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@font-face {
  font-family: styrene;
  src: url("../fonts/StyreneAWeb-Medium.ttf");
  font-display: block;
}

body.light {
  background-color: #F0F3F8 !important;
}

body.dark {
  background-color: #35166E !important;
}

* {
  font-family: styrene !important;
}

a {
  text-decoration: none !important;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  cursor: pointer;
}

.container {
  padding: 0 20px;
}

/* Header */

header .settings {
  height: 60px;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
  background: var(--lightBlack);
}

header .settings .settingsInner {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
}

header .btnWrap {
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--white);
}

header .divider {
  width: 2px;
  height: 44px;
  background: var(--darkGray);
  margin: 0 16px;
}

header .colorsWrap.active {
  display: flex;
}
header .colorBtn.active img {
  border-color: #fff;
}

header .colorBtn img {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 2px;
}
header .colorBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
}

header .colorBtn.active .active {
  display: inline-flex;
}

header .colorBtn:not(.active) span:not(.active) {
  display: inline-flex;
}

header .layoutBtn {
  display: flex;
  cursor: pointer;
  width: 32px;
  height: 28px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 50px;
  background: var(--lightBlack);
}

header .layoutBtn.active {
  transition: 0.4s;
  background: var(--darkGray);
}

.header_bottom {
  width: 100%;
  height: 64px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  z-index: 1002;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px #00000040;
  background-color: #021c26;
  position: relative;
}

.header_bottom .header_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: 8px;
  padding: 0 16px;
  height: 100%;
}

header .logo a {
  color: var(--white) !important;
  text-decoration: none !important;
}

header .logo a h2 {
  font-size: 30px;
  margin: 0;
}

.header_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.header_bottom .header_inner > div {
  flex: 1;
}
.header_menu {
  min-width: 530px;
}
.header_menu ul {
  gap: 6px;
}
.header_menu ul li a {
  color: var(--white) !important;
  text-decoration: none !important;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 32px;
  height: 36px;
  font-size: 14px;
}

.header_menu > ul a {
  color: var(--white) !important;
  text-decoration: none !important;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px !important;
  border-radius: 32px;
  height: auto !important;
  font-size: 14px;
  min-height: auto !important;
  width: auto;
}
.header_menu > ul a.active {
  background: var(--greenLight) !important;
  color: var(--white) !important;
}

.header_menu ul li a img {
  width: 20px;
}

.header_button {
  margin-left: 0;
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

.header_button > a {
  color: var(--white) !important;
  text-decoration: none !important;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  border-radius: 9999px;
  text-align: center;
  min-height: 40px;
  font-family: styrene;
}

.header_button > a i {
  margin-right: 5px;
}

.header_button a:first-child svg {
  width: 20px;
  height: 20px;
}

.header_button > a:last-child svg {
  fill: var(--darkGray) !important;
}

.header_search {
  margin-left: 20px;
  margin-right: 20px;
}

.header_search a {
  text-decoration: none !important;
}

.header_search a i {
  color: #fff;
  font-size: 18px;
  position: relative;
  top: 3px;
}

.searchWrapper span.searchIcon i {
  color: var(--white);
  font-size: 18px;
}

.headerSearchClearBtn i {
  color: var(--white);
  font-size: 18px;
}

.header_search .headerSearchDropDown .headerSearchClearBtn img {
  width: 12px;
}
.header_search a svg {
  fill: var(--white);
}

.header_search .headerSearchDropDown {
  position: absolute;
  top: 70px;
  left: calc(50% + 32px);
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  max-width: 1140px;
  width: 100vw;
  min-width: 460px;
  border-radius: 5px;
  padding: 10px 15px;
  visibility: hidden;
  background-color: var(--green);
  z-index: 99;
}

.header_search .headerSearchDropDown .searchWrapper {
  position: relative;
  margin-top: 10px;
}

.headerSearchDropDown .searchMobileListWrp {
  position: absolute;
  top: 2px;
  left: 15px;
  color: var(--white);
}

.searchMobileListWrp {
  min-width: 88px;
  height: 37px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0 20px 20px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 24px;
  cursor: pointer;
}

.header_search .headerSearchDropDown input {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  padding-right: 40px;
  padding-left: 126px;
  margin-top: 0;
  font-weight: 700;
  font-size: 15px;
  outline: none;
  height: 40px;
  color: var(--white);
  background: var(--darkGray);
  border: 1px solid var(--greenLight);
}

.header_search .headerSearchDropDown .headerSearchClearBtn {
  width: 30px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.header_search .headerSearchDropDown .searchWrapper span.searchIcon {
  position: absolute;
  top: 12px;
  left: 100px;
  height: 16px;
}

.header_search .headerSearchDropDown .searchWrapper span.searchIcon svg {
  fill: var(--white);
}

.header_search .headerSearchDropDown .searchWrapper span.searchIcon svg circle {
  stroke: var(--white);
  fill: transparent;
}

.header_search .headerSearchDropDown .headerSearchClearBtn svg {
  fill: var(--white);
}

.haeder_lang > a i {
  color: var(--white);
  font-size: 16px;
}

.haeder_lang > a {
  display: flex;
  align-items: center;
}

.haeder_lang > a > img {
  width: 20px;
  margin-right: 5px;
}

.haeder_lang ul {
  right: 0;
  left: unset;
  min-width: 120px;
  max-width: 120px;
  background-color: var(--green);
  overflow-y: auto;
  padding: 5px 0;
  position: absolute;
  text-align: left;
  max-height: 350px;
  z-index: 9999;
  display: none;
}

.haeder_lang ul li {
  color: var(--white);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.42857143;
  cursor: pointer;
  padding: 3px 12px;
}

.haeder_lang ul li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.haeder_lang ul li > span img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.lang_popup {
  min-width: 120px !important;
  max-width: 120px !important;
  background-color: var(--green) !important;
  overflow-y: auto;
  padding: 5px 0;
  position: absolute;
  text-align: left;
  max-height: 350px !important;
  overflow-x: auto !important;
}

.lang_popup li {
  color: var(--white);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.42857143;
  cursor: pointer;
  padding: 3px 12px;
}

.lang_popup li img {
  width: 20px;
}
.header_lang > button i {
  color: var(--white);
  margin-left: 3px;
}

.header_search .headerSearchDropDown.active {
  visibility: visible;
}

.haeder_lang.active ul {
  display: block;
}

/* Login */

.header_button .sign-in {
  position: absolute;
  width: 280px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1), 0 7px 39px 12px rgba(21, 42, 71, 0.43);
  background-color: #fff;
  left: 0;
  transform: translateX(-70%);
  border-radius: 15px;
  z-index: 99;
  top: 100%;
  margin-top: 8px;
  display: none;
}

.header_button .sign-in.active {
  display: block;
}

.header_button .sign-in:after {
  display: block;
  content: "";
  position: absolute;
  top: -6px;
  left: 80%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #fff;
}

.header_button .sign-in__content {
  padding: 25px 20px 0 20px;
}

.header_button .sign-in__content .form__label {
  margin-top: 20px;
}

.header_button .sign-in__button {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #f5f5f5;
  margin: 20px 0 0 0;
}

.header_button .sign-in__link {
  color: green !important;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.forgot_pass {
  display: none;
}

.forgot_pass.active {
  display: block;
}

.login.hide {
  display: none;
}

button.login:disabled {
  background: darkgreen !important;
}

.header_button .sign-in__title {
  font-size: 16px;
  color: #3e4049;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.header_button .sign-in__back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 12px;
  color: #3e4049;
  display: block;
}

.header_button .sign-in__back:hover {
  color: #4da533;
}

.header_button .login-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.header_button .login-form__field {
  position: relative;
  width: 100%;
}

.header_button .login-form__field:not(:first-of-type) {
  margin-top: 20px;
}

.header_button .code-resend {
  width: 100%;
  font-size: 13px;
}

.header_button .code-resend button {
  display: inline-block;
  color: #4da533;
  font-weight: 500;
  font-size: inherit;
  line-height: inherit;
  margin: 0 5px;
  text-decoration: underline;
}

.header_button .code-resend button:hover {
  text-decoration: none;
}

.header_button .code-resend__timer {
  display: none;
  margin: 0 5px;
  white-space: nowrap;
  font-weight: 500;
}

.header_button .code-resend--button-disabled button {
  display: none;
}

.header_button .code-resend--button-disabled .code-resend__timer {
  display: inline-block;
}

.header_button .form__label a {
  transition: color 0.15s ease;
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 16.8px;
  font-size: 14px;
  font-weight: 400;
  color: #7ea8a2 !important;
}

.header_button .form__label {
  color: #3e4049;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  width: auto;
}

.header_button .sign-in__content .form__label {
  margin-top: 20px;
}

.header_button input {
  display: block;
  width: 100%;
  border-radius: 12px;
  /* height: 54px; */
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #edf0f0;
  line-height: 45px;
  padding: 0 40px 0 22px;
  color: #9b9b9f;
  font-size: 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  padding-left: 50px;
}

.header_button .form-input__icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf0f0;
  top: 13px;
  left: 12px;
}

.header_button .svg-icon {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  fill: currentColor;
  font-size: inherit;
  top: 0;
}

.header_button .form-input__icon--main .svg-icon {
  max-height: 100%;
  height: 16px;
  color: #6e82a2;
  transition: color 0.1s ease;
}

.header_button button.login {
  background: #4da533;
  color: var(--white);
  width: 100%;
  appearance: none;
  outline: none;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: 54px;
  border-radius: 12px;
  padding: 12px 16px 12px 16px;
  font-weight: 700;
  cursor: pointer;
  line-height: 19.2px;
}

.header_button .sign-in svg {
  width: 16px;
  height: 30px;
  fill: #505155;
}

/* End Login */

/* Signup */

/* .signup_modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  height: var(--app-height);
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(2px);
  display: none;
}

.signup_modal.active {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_modal_inner {
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 727px;
  position: relative;
  width: 100%;
}

.signup_modal .modal_close {
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  right: -20px;
  top: -20px;
  transition: transform 0.15s ease, opacity 0.15s ease;
} */

/* .signup_modal .modal_close i {
  font-size: 28px;
}
.signup_modal .inner_wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.signup_modal .bonus {
  width: 100%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border-radius: 3px 0 0 3px;
} */

/* .signup_modal .signup_form {
  max-width: 54%;
  padding: 24px;
  width: 100%;
} */

/* .signup_modal h3 {
  color: var(--darkGray);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.signup_modal h3 a {
  color: var(--green) !important;
  margin-left: 5px;
}
.bonus_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
} */

/* .signup_modal .bonus_item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  max-height: 150px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.bonus_item_image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  filter: blur(1px);
} */

/* .bonus_item_content {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 1;
  background: linear-gradient(90deg, #000 -15.28%, rgba(0, 0, 0, 0) 75.17%);
  color: var(--white);
} */

/* .bonus_item_content h4 {
  max-width: 50%;
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  line-height: 1.6;
}

.bonus_item_content p {
  max-width: 50%;
  font-weight: 700;
  color: var(--white);
  font-size: 12px;
  line-height: 1.33;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
} */

/* .signup_modal .bonus_item .radio_button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

.signup_modal .bonus_item .radio_button input {
  width: 22px;
  height: 22px;
  appearance: none;
  background: transparent;
  border: 2px solid #ccccccad;
  border-radius: 50%;
}

.signup_modal .bonus_item .radio_button input:checked {
  background: var(--green);
}

.signup_modal .bonus_item .radio_button input:checked {
  background: var(--green);
  border: 2px solid #ccccccbd;
} */

/* .signup_modal .signup_form .text p {
  text-align: center;
  margin: 10px 0px;
}

.signup_modal .signup_form .text p a {
  color: var(--green) !important;
}

.signup_modal .signup_form .text label {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
} */

/* .signup_modal .signup_form .text label span {
  margin-left: 10px;
} */

.button.register {
  outline: none;
  border: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: 48px;
  border-radius: 100px;
  padding: 5px 20px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
  width: 100%;
  background: var(--green);
  color: #fff;
  margin: 15px 0;
}

.signup-modal-body form > p {
  color: var(--darkGray);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  width: auto;
  margin-bottom: 15px;
}

.signup-modal-body form > p a {
  color: var(--green) !important;
}

.signup-modal-body .form-control {
  width: 100%;
  height: auto;
  line-height: 45px;
  min-height: 47px;
}
.signup-modal-body .form-control:hover {
  border-color: #ccc;
}

.signup-modal-body .form_group .form-input > div > div {
  box-shadow: none !important;
  background-color: #fff;
  border-color: #e2e8ee;
  width: 100%;
  border-radius: 24px;
  min-height: 47px;
}

.signup-modal-body div#react-select-3-placeholder {
  position: relative;
  top: 2px;
}

.signup-modal-body .react-tel-input .selected-flag:hover {
  border-radius: 24px 0 0 24px;
}

.signup-modal-body .react-tel-input .flag-dropdown.open .selected-flag {
  border-radius: 24px 0 0 24px;
}

.signup-modal-body .form_group input.form-input__input {
  display: block;
  width: 100%;
  border-radius: 24px;
  height: 47px;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #e2e8ee;
  line-height: 45px;
  padding: 0 40px 0 22px;
  color: #6e82a2;
  font-size: 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background-position-x: 85% !important;
  color: #3e4049;
}

.form_group.country_currency {
  display: flex;
  align-items: center;
}

.form_group.country_currency .form-input.currency {
  width: 115px;
  margin-left: 10px;
}

.form_group.country_currency .form-input:first-child {
  width: calc(100% - 125px);
}

.form_group.country_currency .form-input.currency span.muiltr-1u9des2-indicatorSeparator {
  display: none;
}

/* End Signup */

/* End Header */

/* Footer */
footer {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #021c26;
  padding-block: 32px;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 30px;
}

footer .container {
  max-width: 1170px !important;
}

.footer_logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 16px;
  margin: 24px auto;
  gap: 40px 60px;
  border-bottom: 1px solid #cccccc0f;
  padding-bottom: 20px;
  border-top: 1px solid #cccccc0f;
  padding-top: 20px;
}

.footer_logos img {
  max-height: 42px;
}

.footer_images ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 16px;
  margin: 24px auto;
  gap: 20px 60px;
}

.footer_images ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.footer_images ul li img {
  opacity: 0.38;
}

.footer_images {
  border-bottom: 1px solid #cccccc0f;
  padding-bottom: 20px;
  margin: 30px 0;
}

.footer_logo h1 a {
  text-decoration: none !important;
  color: var(--white) !important;
}

.footer_logo h1 {
  font-size: 40px;
  font-weight: 500;
}

.footer_text p {
  color: #d8d8d8;
  font-weight: 400;
  line-height: 20px;
  font-size: 13px;
  margin-top: 20px;
}

.copyright p {
  color: var(--white);
  margin-top: 10px;
}

.footer_menu_wrapper {
  display: flex;
  justify-content: center;
}

.footer_menu {
  flex: 1;
  padding: 0 15px;
  margin-top: 10px;
}

.footer_menu > a {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  justify-content: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 24px;
  font-size: 14px;
}
.footer_menu > a i {
  display: none;
}
.footer_menu a {
  color: var(--white) !important;
}

footer .logo h2 {
  font-size: 40px;
  color: #fff;
}

.footer_menu ul > li > a {
  margin-bottom: 12px;
  line-height: 17px;
  display: flex;
  cursor: pointer;
  /* font-size: 14px; */
}

.haeder_lang {
  position: relative;
}

/* End Footer */

/* Home Page */

.banner {
  position: relative;
  margin-top: 10px;
}

.banner img {
  border-radius: 12px;
  width: 100%;
}

/* .banner_bottom_slider_inner {
      display: flex;
  } */

.banner_bottom_slider_item {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 33.3333%;
  margin: 0 5px 0 0;
  cursor: pointer;
  background-color: var(--green);
}

.banner_bottom_slider_item .slider_middle {
  display: flex;
  flex-direction: column;
  flex: auto;
  margin: 1px 0;
  padding: 10px 0;
  background: var(--greenLight);
}

.banner_bottom_slider_item .slider_top svg {
  flex-shrink: 0;
  font-size: 13px;
  fill: var(--white);
  width: 15px;
  height: 15px;
  margin-left: 6px;
}

.banner_bottom_slider_item .slider_top .ftr-g-i-b-time-block {
  flex: auto;
  display: flex;
  align-items: center;
  margin: 0 10px;
  overflow: hidden;
}

span.ftr-g-i-b-time-bc {
  font-size: 11px;
  color: var(--white);
}

.ftr-g-i-head-bc {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 33px;
  padding: 0 10px;
  background: rgba(var(--b-sc), 0.1);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.ftr-g-i-head-bc i {
  color: var(--white);
  margin: 0 5px;
}

span.ftr-g-icon-bc {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--white);
  position: relative;
  top: 2px;
}

.market-group-holder-bc.ext-44 {
  display: flex;
  flex-shrink: 0;
}

.market-group-item-bc {
  height: 44px;
  overflow: hidden;
  width: 100%;
}

.sgm-market-g-i-cell-bc.market-bc {
  flex-direction: row;
  min-height: 34px;
  padding: 4px 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: rgba(var(--b-sc), 0.7);
  background: var(--gree4);
  word-break: break-word;
  position: relative;
  margin: 0 1px;
  transition: all 0.4s ease;
}

span.market-odd-bc {
  font-size: 12px;
  line-height: 14px;
  color: var(--yellow);
}

.sgm-market-g-i-cell-bc.market-bc:hover {
  background: var(--green);
}

.sgm-market-g-i-cell-bc.market-bc:hover span {
  color: var(--white);
}

.banner_bottom_slider_item .slider_middle .ftr-g-title-bc {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.banner_bottom_slider_item .slider_middle .ftr-g-title-bc i {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--white);
  margin-right: 5px;
}

span.ftr-g-i-title-bc {
  flex: auto;
  font-size: 13px;
  color: var(--white);
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ftr-g-i-b-opp-t-holder-bc {
  flex: auto;
  display: flex;
  align-items: center;
  min-height: 30px;
  margin-top: 16px;
}

.ftr-g-i-b-opp-title-bc {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--white);
  padding: 0 5px;
  text-align: center;
}

img.ftr-g-i-b-opp-logo-bc {
  align-self: center;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.banner_bottom_slider_item .slider_top svg:nth-last-child(2) {
  width: 20px;
  height: 20px;
}

.banner_bottom_slider_item .slider_top svg:first-child {
  margin: 0;
}

.banner_bottom_slider_item .slider_middle .ftr-g-title-bc img {
  flex-shrink: 0;
  margin: 0 2px;
  width: 22px;
  height: 14px;
}

.banner_bottom_slider {
  margin-top: 30px;
  margin-bottom: 30px;
}

.banner button.slick-arrow {
  left: auto;
  right: 10px;
  top: 20px;
  z-index: 99;
  background: var(--black);
  border-radius: 50%;
}

.banner button.slick-arrow.slick-prev {
  right: 35px;
}

.banner button.slick-arrow::before {
  color: var(--white);
}

.games_images_inner {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.games_images_inner > a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.games_images_inner > a img {
  will-change: transform;
  flex-shrink: 0;
  order: 1;
  transition: 0.4s ease;
  max-width: 100%;
  border-radius: 4px;
  overflow-clip-margin: content-box;
  overflow: clip;
}

.page-view-more {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

h3.view-title-more.ellipsis {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 1px;
  flex: auto;
  text-transform: uppercase;
}

a.view-see-more {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--white) !important;
  margin-inline-start: 10px;
  margin-inline-end: 4px;
  font-size: 12px;
  line-height: 14px;
}

a.view-see-more i {
  color: var(--white);
}

.games_wrapper {
  margin-top: 20px;
}

.games-horiz-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
}

.casino-game-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 10 / 7;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.casino-game-item img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.casino-game-item i {
  color: var(--white);
}

.casino-game-item:hover img {
  filter: blur(2px);
}

.casino-game-item-block {
  padding: 10px 10px 30px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
}

.casino-game-icons {
  display: flex;
  justify-content: flex-end;
  color: var(--white);
  font-size: 16px;
}

h3.casino-game-item-label-bc {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}

.casino-game-buttons {
  display: flex;
  justify-content: center;
}

.casino-game-buttons button {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 15px;
}

.casino-game-buttons > .btn + .btn {
  margin-inline-start: 10px;
  transition: all 0.4s ease;
}

.casino-game-buttons > .btn:nth-child(2) {
  color: var(--white);
  border-color: var(--white);
}

.btn.a-outline {
  background: none;
  border: solid 1px var(--white);
  transition: all 0.4s ease;
}

.btn.a-color {
  color: var(--white);
  background: var(--green);
  transition: all 0.4s ease;
}

.casino-game-item > a i {
  position: relative;
  left: 10px;
  top: 9px;
  z-index: 9;
  opacity: 0;
  transition: all 0.4s ease;
}

.casino-game-item:hover .casino-game-item-block {
  opacity: 1;
}

.casino-game-item:hover > a i {
  opacity: 1;
}

.casino_game {
  margin-bottom: 20px;
}

.banner_bottom_slider .slick-slide {
  display: block;
  margin: 0 5px 0 0;
}

.banner_bottom_slider button.slick-arrow.slick-next {
  right: 10px;
}

.banner_bottom_slider button.slick-arrow.slick-prev {
  left: 10px;
  z-index: 99;
}

.banner_bottom_slider button.slick-arrow {
  width: 38px;
  height: 38px;
  background: var(--darkGray);
  border-radius: 4px;
}

.banner_bottom_slider .slick-track {
  display: flex;
}

.table_tabs .tabs_btn > div > div > div > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  min-height: 44px;
  padding: 8px 31px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  color: var(--white);
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-right: 16px;
}

.table_tabs .tabs_btn > div > div > div > button.Mui-selected {
  color: #ffffff;
  background: var(--green);
  border: 0;
}

.table_tabs .tabs_btn > div > div > div {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3px;
  border-radius: 25px;
  overflow: hidden;
  max-width: 100%;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  background-color: var(--greenExtraLight);
  border: 1px solid var(--green);
}

.table_tabs .tabs_btn span.MuiTabs-indicator {
  display: none;
}

.table_tabs .tabs_btn > div > div > div > button:hover {
  color: var(--white);
  background: var(--green);
}

/* .table_tabs table tbody tr.even {
      background: var(--green);
  } */

.table_tabs table tbody tr:nth-child(odd) {
  background: var(--green);
  height: auto;
}
.table_tabs table tbody tr:nth-child(odd):hover {
  background: var(--green);
}

.table_tabs table tbody tr td {
  border: 0;
}

.table_tabs table thead tr th {
  border: 0;
}

.table_tabs table thead tr th {
  border: 0;
  background: transparent;
}

.table_tabs table {
  width: 100%;
}

.table_tabs table th,
.table_tabs table td {
  color: var(--white);
  text-align: center;
  padding: 15px 15px;
}

.tabs_content {
  -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 24px #00000080;
  margin-top: 24px;
}

.tabs_content > div {
  padding: 0;
}

.table_tabs table th:first-child,
.table_tabs table td:first-child {
  text-align: left;
  padding-left: 30px;
}

.table_tabs .tabs_btn > div > div > div > button:last-child {
  margin-right: 0;
}

/* End Home Page */

/* Miscellaneous */

div#fuse-settings-schemes {
  display: none;
}
.logo a {
  display: inline-block;
}
.header_lang > button {
  padding: 0;
  width: auto;
  height: auto;
  line-height: normal;
  min-height: auto;
  max-height: none;
  min-width: auto;
}

.header_lang > button p.uppercase {
  display: none;
}
.header_lang > button img {
  width: 20px;
}
/* End Miscellaneous */

@media (max-width: 991px) {
  .footer_menu_wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer_menu {
    flex: 0 0 33%;
    width: 33%;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .games_images_inner {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
  }

  .games_images_inner > a {
    width: 31%;
    margin: 0 1%;
  }
  .games-horiz-scroll {
    display: flex;
    grid-gap: 0;
    flex-wrap: wrap;
  }

  .games-horiz-scroll .casino-game-item-content {
    width: 31%;
    margin: 0 1% 10px;
  }
}

@media (max-width: 767px) {
  .footer_menu {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .footer_menu > ul {
    display: none;
  }

  .footer_menu ul > li > a {
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .footer_menu > a {
    margin-bottom: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .table_tabs .tabs_btn > div > div > div > button {
    margin-right: 6px;
    padding: 8px 15px;
    flex: 1;
  }

  .table_tabs .tabs_btn > div > div > div {
    width: 100%;
  }
  .footer_logos {
    margin: 32px auto;
    gap: 24px;
    max-width: 766px;
  }
  .games_images_inner > a {
    width: 48%;
  }

  .games-horiz-scroll .casino-game-item-content {
    width: 48%;
  }
  .footer_menu > a i {
    display: block;
    transition: all 0.4s ease;
  }
  .footer_menu.active > a i {
    transform: rotate(180deg);
  }

  .footer_menu.active > ul {
    display: block;
  }
}

button,
a {
  transition: all 0.15s ease-in;
}

img.carousel {
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none; /* Konqueror */
  -moz-user-drag: none; /* Firefox */
  -ms-user-drag: none; /* Internet Explorer/Edge */
  user-drag: none;
}

.custom-select {
  width: 100%;
}

.custom-select > div {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .custom-select > div {
    min-width: 215px;
  }
}

/* left side bar */
.sport-item .sport-item-icon {
  transition: all 0.15s ease-in;
}

/* left side bar */
.sport-item:not(:hover) .sport-item-icon[data-selected="false"] {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.up-trend-box {
  position: absolute;
  top: 0;
  right: 0;
  border: 0.6rem solid transparent;
  border-top: 0.6rem solid #8ed786;
  border-right: 0.6rem solid #8ed786;
  animation: 0.3s 10 ease-in alternate trend-animation;
}

.down-trend-box {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0.6rem solid transparent;
  border-bottom: 0.6rem solid #ff9466;
  border-right: 0.6rem solid #ff9466;
  animation: 0.3s 10 ease-in alternate trend-animation;
}

@keyframes trend-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

iframe#webpack-dev-server-client-overlay {
  display: none !important;
}

/* Afficate page style begin */
.animation-button::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #28f09c;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
  pointer-events: none;
}

.animation-button:hover {
  filter: drop-shadow(0 0 35px #22e994);
}

.animation-button:hover::before {
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
  }
}

.screen-line1 {
  animation: line1 40s linear infinite;
}

@keyframes line1 {
  50% {
    transform: rotateX(360deg);
  }
}

.screen-line2 {
  animation: line2 30s ease infinite;
}

@keyframes line2 {
  50% {
    transform: rotateZ(-90deg);
  }
}

.screen-line3 {
  animation: line3 35s linear infinite;
}

@keyframes line3 {
  50% {
    transform: rotateY(-90deg);
  }
}

.screen-light {
  animation: light 60s linear infinite;
}

@keyframes light {
  50% {
    transform: rotate(360deg);
  }
}

.screen-shine {
  animation: shine 10s linear infinite;
}

@keyframes shine {
  50% {
    opacity: 0;
  }
}

.screen-shine-small {
  animation: shine-small 40s linear infinite;
}

@keyframes shine-small {
  10% {
    transform: translate(10px, 20px);
  }
  20% {
    transform: translate(-10px, 40px);
  }
  50% {
    transform: translate(-5px, 20px);
  }
  70% {
    transform: translate(15px, 10px);
  }
}

.screen-stones {
  animation: stones 40s linear infinite;
}

@keyframes stones {
  10% {
    transform: translate(25px, -10px);
  }
  35% {
    transform: translate(-20px, 10px);
  }
  50% {
    transform: translate(25px, 25px);
  }
  75% {
    transform: translate(15px, 15px);
  }
}

.screen-ball-chip {
  animation: ball-chip 20s linear infinite;
}

@keyframes ball-chip {
  20% {
    transform: translate(15px, -20px);
  }
  25% {
    transform: translate(-10px, -20px);
  }
  40% {
    transform: translate(15px, 25px);
  }
  75% {
    transform: translate(25px, 15px);
  }
}

.screen-box {
  animation: box 40s linear infinite;
}

@keyframes box {
  15% {
    transform: translate(15px, -10px);
  }
  45% {
    transform: translate(-25px, -40px);
  }
  75% {
    transform: translate(15px, -10px);
  }
}

/* Afficate page style end */

.react-tel-input .flag-dropdown {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.muiltr-13cymwt-control,
.muiltr-t3ipsp-control {
  border-radius: 9999px !important;
}

.horizontal-scroll-box:hover button {
  opacity: 100;
}


.casino-sidebar-sm {
  background-color: white;
  z-index: 1010;
  position: fixed;
  height: var(--app-height);
  max-height: var(--app-height) !important;
  top: 0;
  left: -300px;
  opacity: 0;
  transition: all .3s;
}

.casino-sidebar-sm[data-visible] {
  left: 0;
  opacity: 1;
}

.custom-loader {
  width: 4px;
  height: 4px;
  color: #9CA2B0;
  border-radius: 50%;
  box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
  transform: translateX(-38px);
  animation: d1 0.5s infinite alternate linear;
}

@keyframes d1 {
  50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
  100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
}


.loader-expand {
  font-size:48px;
  color: #FFF;
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  background-color: currentcolor;
  position: relative;
  border-radius: 50%;
  transform: rotateX(-60deg) perspective(1000px);
}
.loader-expand:before,
.loader-expand:after {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  animation: flowerFlow 1s ease-out infinite;
}
.loader-expand:after {
  animation-delay: .4s;
}

@keyframes flowerFlow {
  0% {
    opacity: 1;
    transform: rotate(0deg);
    box-shadow: 0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor,
    0 0 0 -.5em currentcolor;
  }
  100% {
    opacity: 0;
    transform: rotate(180deg);
    box-shadow: -1em -1em 0 -.35em currentcolor,
    0 -1.5em 0 -.35em currentcolor,
    1em -1em 0 -.35em currentcolor,
    -1.5em 0 0 -.35em currentcolor,
    1.5em -0 0 -.35em currentcolor,
    -1em 1em 0 -.35em currentcolor,
    0 1.5em 0 -.35em currentcolor,
    1em 1em 0 -.35em currentcolor;
  }
}

.loader-text {
  font-size: 48px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: inline-block;
  color: #ED6C02;
  letter-spacing: 2px;
  position: relative;
  box-sizing: border-box;
}
.loader-text::after {
  content: 'Betting';
  position: absolute;
  left: 0;
  top: 0;
  color: #2C374F;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
  animation: animloader-text 6s linear infinite;
}

@keyframes animloader-text {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

.loader-line {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 20px;
  margin-top: 10px;
  position: relative;
  background: currentColor;
  color: #FFF;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}
.loader-line::after,
.loader-line::before {
  content: '';  
  box-sizing: border-box;
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 20px;
  animation: animloader1 0.3s  0.45s  linear infinite alternate;
}
.loader-line::before {
  left: -20px;
  animation-delay: 0s;
}

@keyframes animloader {
  0% {
    height: 40px;
    transform: translateY(0);
  }
  100% {
    height: 10px;
    transform: translateY(30px);
  }
}

@keyframes animloader1 {
  0% {
    height: 48px;
  }
  100% {
    height: 4.8px;
  }
}
    