header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: var(--zHeader);
}

.top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background: #161419;
  padding: 12px 40px;
}

.top-navbar-list {
  display: flex;
  align-items: center;
}

.top-navbar-list .navbar-item {
  padding: 0 12px;
  height: auto;
}

.top-navbar-item-wrapper {
  position: relative;
}

.top-navbar-item-wrapper .navbar-menu-wrapper {
  top: 36px;
  left: -28px;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: none;
}

.top-navbar-item-wrapper .navbar-menu-content {
  background: #161419;
  border-radius: 0;
}

.top-navbar-item-wrapper .navbar-item-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.top-navbar-item-wrapper .navbar-item-content:hover .navbar-item-icon path,
.top-navbar-item-wrapper .navbar-item-content:hover .navbar-item-title {
  fill: #fff;
  fill-opacity: 1;
  color: #fff;
}

.top-navbar-item-wrapper .navbar-item-content.active .navbar-item-icon path,
.top-navbar-item-wrapper .navbar-item-content.active .navbar-item-title {
  color: #fff;
  fill: #fff;
}

.top-navbar-left {
  display: flex;
  align-items: center;
}

.top-navbar-left .locale-switch-options-list {
  top: 36px;
  left: -28px;
  padding: 8px 0;
  background: #161419;
}

.top-navbar-left .login,
.top-navbar-left .logout {
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.navbar {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  padding-right: 40px;
  text-decoration: none;
  color: inherit;
  line-height: var(--navbar-height);
}

.navbar-item,
.navbar-item-vip {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: inherit;
  height: 64px;
  transition: all 0.2s linear;
}

.navbar-item {
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-item-jackpass-wrapper {
  display: flex;
  align-self: center;
  padding: 0 8px;
  background: linear-gradient(
    90deg,
    #e2c1f9 0%,
    #febd8e 33%,
    #fbffe4 66%,
    #b6d0f7 100%
  );
  border-radius: 4px;
}

.navbar-item-jackpass {
  background: linear-gradient(
    90deg,
    #e2c1f9 0%,
    #febd8e 33%,
    #fbffe4 66%,
    #b6d0f7 100%
  );
  padding: 4px 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  border-radius: 4px;
}

.navbar-item-content-jackpass {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #28282d;
}

.navbar-item-title {
}

.navbar-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}

.navbar-item-content:hover .navbar-item-icon path,
.navbar-item-content:hover .navbar-item-title {
  color: #9b5ff5;
  fill: #9b5ff5;
}

.navbar-item-content.active .navbar-item-icon path,
.navbar-item-content.active .navbar-item-title {
  color: #9b5ff5;
  fill: #9b5ff5;
}

.navbar-item-content-vip:hover .navbar-item-title,
.navbar-item-content-vip.active .navbar-item-title {
  color: #f1c144;
}

.navbar-item-title-vip {
  color: #ddc07c;
}

.navbar-item-content:hover .navbar-item-title-vip {
  color: #f1c144;
}

/* .navbar-item-wrapper {
  position: relative;
} */

.navbar-menu-wrapper {
  position: absolute;
  top: 108px;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    backdrop-filter 0.3s ease;
  z-index: 5;
}

.navbar-item-title-wrapper:hover .navbar-menu-wrapper {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
}

.navbar-item-title-wrapper:not(:hover) .navbar-menu-wrapper:not(:hover) {
  transition:
    opacity 0.3s ease 0.1s,
    visibility 0.3s ease 0.3s,
    backdrop-filter 0.3s ease 0.3s;
}

.navbar-item-vip {
  display: flex;
  align-items: center;
}

.navbar-item-icon path {
  fill: rgba(255, 255, 255, 0.5);
  fill-opacity: 1;
}

.navbar-item-content-vip {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #f1c144;
}

.navbar-item-vip-icon {
  background-image: url(/vipStarIcon.svg);
  background-position: center;
  height: 12px;
  width: 12px;
  margin: 0 4px;
}

.navbar-item-content-vip:hover {
  color: rgba(238, 177, 21, 1);
}

.navbar-item-vip:hover .navbar-item-vip-icon {
  background-image: url(/vipStarIconHover.svg);
}

.navbar-item-vip:hover {
  color: rgba(238, 177, 21, 1);
}

.navbar-spacer {
  flex: 1 1 0;
}

a.navbar-item:hover {
  color: #8032ff;
}

.locale-switch-wrapper:hover {
  color: #fff;
}

.locale-switch {
  position: relative;
}

.locale-switch-options-list {
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    backdrop-filter 0.3s ease;
  z-index: 1000;
  position: absolute;
  top: 69px;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 145px;
}

.locale-switch-content:hover .locale-switch-options-list,
.active-list {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
}

.locale-switch-content:hover .locale-switch-selected-title,
.locale-switch-content:hover .locale-switch-icon-globe path,
.locale-switch-content:hover .locale-switch-icon-globe ellipse,
.locale-switch-content:hover .locale-switch-icon-arrow path {
  color: #9b5ff5;
  stroke: #9b5ff5;
}

.locale-switch-content:hover .locale-switch-icon-globe .globe-path {
  fill: #9b5ff5;
}

.locale-switch-selected.active .locale-switch-selected-title,
.locale-switch-selected.active .locale-switch-icon-globe path,
.locale-switch-selected.active .locale-switch-icon-globe ellipse,
.locale-switch-selected.active .locale-switch-icon-arrow path {
  color: #9b5ff5;
  stroke: #9b5ff5;
}

.locale-switch-selected.active .locale-switch-icon-globe .globe-path {
  fill: #9b5ff5;
}

.locale-switch-content:not(:hover) .locale-switch-options-list {
  transition:
    opacity 0.3s ease 0.1s,
    visibility 0.3s ease 0.3s,
    backdrop-filter 0.3s ease 0.3s;
}

.locale-switch-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.locale-switch-icon-globe {
  padding-right: 4px;
}

.locale-switch-selected-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-right: 8px;
}

.locale-switch-icon-arrow {
  width: 11px;
  height: 6.5px;
  transition: all 0.2s;
}

.locale-switch-selected.active .locale-switch-icon-arrow {
  transform: rotate(-180deg);
}

.locale-switch-selected.active .locale-switch-icon-arrow path {
  stroke: #9b5ff5;
}

.locale-switch-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  text-transform: capitalize;
  cursor: pointer;
}

.locale-switch-option img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.locale-switch-option-ch-icon {
  padding-right: 8px;
}

.locale-switch-option-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.navbar .cta-button {
  padding: 12px 24px;
  height: fit-content;
  cursor: pointer;
}

.navbar .signup {
  background-color: #d24128;
  transition: all 0.2s linear;
  border-radius: 4px;
}

.navbar .signup:hover {
  background: #8032ff;
  color: #fff !important;
}

.playnow,
.auth-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login,
.logout {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.playnow,
.login,
.logout {
  border-radius: 4px;
  transition: 0.2s all;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}

.playnow:hover,
.playnow:active {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}

.playnow img {
  transition: 0.2s all;
  margin-left: 18px;
  transform: rotate(0deg);
}

.playnow:hover img,
.playnow:active img {
  filter: invert(1);
}

.playnow img.opened {
  transform: rotate(180deg);
}

.playnow-select-popover {
  margin-top: 4px;
}

.playnow-select-options-list {
  border-radius: 4px;
}

.playnow-select-option {
  background: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
}

.playnow-select-option a {
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  color: #000;
}

.playnow-select-option img {
  margin-right: 10px;
  margin-bottom: -3px;
}

.playnow-select-option .menu-option-icons {
  display: inline-block;
  margin-right: 10px;
}

.playnow-select-option .menu-option-icons img {
  margin-right: 0;
}

.playnow-select-option .menu-option-icons img:not(:last-child) {
  margin-right: 4px;
}

.playnow-select-option .android-icon {
  filter: invert(100%);
  width: 16.67px;
  height: 20px;
}

.navbar .menu-button {
  width: 28px;
  position: relative;
  height: 20px;
  margin-left: 20px;
  display: none;
  transition: all 0.3s linear;
  cursor: pointer;
}

.navbar .menu-button.opened {
  transform: rotate(45deg);
}

.navbar .menu-button span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.3s linear;
}

.navbar .menu-button span:nth-child(1) {
  top: 0;
  transition-delay: 0.3s;
}

.navbar .menu-button span:nth-child(2),
.navbar .menu-button span:nth-child(3) {
  top: 9px;
}

.navbar .menu-button span:nth-child(3) {
  opacity: 0;
}

.navbar .menu-button span:nth-child(4) {
  top: 18px;
  transition-delay: 0.3s;
}

.menu-button.opened span:nth-child(1),
.menu-button.opened span:nth-child(4) {
  opacity: 0;
  transition: none;
}

.menu-button span:nth-child(2),
.menu-button span:nth-child(3) {
  top: 9px;
}

.menu-button.opened span:nth-child(3) {
  opacity: 1;
  transform: rotate(90deg);
}

.menu-button.opened span:nth-child(1),
.menu-button.opened span:nth-child(4) {
  opacity: 0;
  transition: none;
}

.navbar-item-leaderboard {
  background: linear-gradient(
    271.26deg,
    #631cc6 1.4%,
    #bd75f5 46.85%,
    #631cc6 87.6%
  );
  color: white;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

@media screen and (max-width: 1600px) {
  .navbar-menu-wrapper.left {
    right: 0;
  }

  .navbar-item-wrapper .center {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-menu-wrapper.right {
    left: 0;
  }
}

@media screen and (max-width: 1240px) {
  .locale-switch-options-list {
    top: 55px;
  }

  .active-list {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
  }

  .closed-list {
    opacity: 0 !important;
    visibility: hidden !important;
    backdrop-filter: blur(0) !important;
  }
}

@media screen and (max-width: 1200px) {
  .navbar-logo {
    padding-right: 20px;
  }

  .navbar-item {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }

  .navbar-item {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1100px) {
  .top-navbar {
    display: none;
  }

  .navbar-left {
    display: none;
    overflow: scroll;
  }

  .navbar-item-jackpass {
    margin: 8px auto;
    background: none;
  }

  .navbar-item-leaderboard {
    padding: 12px 0;
  }

  .navbar-left.opened {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: var(--zModal);
    padding: 25px 0 500px;
  }

  .navbar .menu-button {
    display: block;
  }

  .navbar-item-wrapper {
    width: 100%;
    padding: 0 15px;
  }

  .navbar-item-vip {
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    padding: 16px 0;
    border-radius: 8px;
    margin-bottom: 16px;
    height: auto;
  }

  .navbar-item-content-vip {
    font-size: 16px;
    font-weight: 400;
  }

  .navbar-item-jackpass-wrapper {
    margin: 4px 0 16px;
  }

  .navbar-item-locale {
    display: flex;
    justify-content: center;
  }

  .locale-switch {
    width: 100%;
  }

  .locale-switch-selected {
    margin-right: 0;
    justify-content: center;
    padding: 8px 0;
  }

  .locale-switch-options-list {
    background: transparent;
    transition: all 0.3s ease;
    transform: none;
    position: static;
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
  }

  .closed-list {
    opacity: 1;
    visibility: visible;
    backdrop-filter: none !important;
    transition: all 0.1s ease;
    height: 0;
  }

  .active-list {
    height: auto;
  }

  .locale-switch-option {
    padding: 8px 10px;
  }

  .locale-switch-content:hover .locale-switch-selected-title,
  .locale-switch-content:hover .locale-switch-icon-globe path,
  .locale-switch-content:hover .locale-switch-icon-globe ellipse,
  .locale-switch-content:hover .locale-switch-icon-arrow path {
    color: #fff;
    stroke: #fff;
  }

  .locale-switch-content:hover .locale-switch-icon-globe .globe-path {
    fill: #fff;
  }

  .locale-switch-selected.active .locale-switch-selected-title,
  .locale-switch-selected.active .locale-switch-icon-globe path,
  .locale-switch-selected.active .locale-switch-icon-globe ellipse,
  .locale-switch-selected.active .locale-switch-icon-arrow path {
    color: #fff;
    stroke: #fff;
  }

  .locale-switch-selected.active .locale-switch-icon-globe .globe-path {
    fill: #fff;
  }

  .locale-switch-selected.active .locale-switch-icon-arrow path {
    stroke: #fff;
  }

  .login:hover,
  .login:active,
  .logout:hover,
  .logout:active {
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .navbar-item {
    height: 64px;
  }

  .navbar .cta-button {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
  }

  .navbar .login,
  .navbar .logout {
    display: none;
  }

  .navbar-left.opened {
    top: 52px;
  }
}

@media screen and (max-width: 610px) {
  header {
    padding: 0 24px;
  }

  .navbar,
  .top-navbar {
    padding: 0;
  }

  .navbar-left.opened {
    padding-top: 16px;
  }

  .navbar-logo {
    padding: 0 14px 0 0;
  }

  .navbar-item {
    font-size: 10px;
    line-height: 16px;
  }

  .navbar-left .navbar-item {
    font-size: 16px;
  }

  .navbar-logo {
    padding-right: 0;
  }

  .navbar-logo img {
    width: 85px;
  }

  .navbar-item-vip {
    padding: 8px 0;
  }

  .navbar-item-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .locale-switch-options-list {
    top: 45px;
  }
}
