@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans Lao', sans-serif;
}

p {
  line-height: 1.8rem;
}

:root {
  --primary-color: #1A1A1A;
  --secondary-color: #1A1A1A;
  --primary-gradient: linear-gradient(270deg, #1A1A1A, #1A1A1A); 

  --text-primary: #000;
  --text-secondary: #fff;
  --text-grey: #a3a3a3;

  --border-primary: 1px solid rgb(215, 215, 215);

  --box-shadow: 0px 2px 12px #00000017;

  --max-width: 1400px;
} 

.text-left {
  text-align: left !important;
}

.no-padding {
  padding: 0 !important;
}

body {
  background-color: #f4f4f4;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
}

.sticky-wrap {
  width: 100%;
  margin: auto;
  z-index: 200;

}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  animation: fade-down .5s ease-out;
  box-shadow: 0 3px 10px #0000001a;
}

.sticky+.subnav {
  padding-top: 75px;
}


/* BEGIN: NEW NAV */
.navbar-new {
  width: 100%;
  background: var(--secondary-color);
}

.navbar-wrap-new {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem .5rem;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  font-size: .8rem;
  border-bottom: 1px solid rgba(212, 212, 212, 0.233);
}

.nbt-left a {
  color: #fff;
}

.nbt-right .nbt-menu {
  display: flex;
}

.nbt-right .nbt-menu a {
  padding: 0px 10px;
  color: #fff;
}

.nbt-right .nbt-menu hr {
  background: rgba(212, 212, 212, 0.233);
  border: 1px solid rgba(212, 212, 212, 0.233);
}

.navbar-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 212, 212, 0.233);
}

.nbm-left .nbm-logo {
  width: 165px;
}

.nbm-left .nbm-logo img {
  width: 50%;
}

.nbm-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nbm-middle {
  width: 100%;
  max-width: 800px;
  padding: 1rem 0;
  margin: 0rem 1rem;
}

.nbm-middle form {
  display: flex;
  position: relative;
  width: 100%;
}

.nbm-middle form input[type=text] {
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  border: none;
  height: 50px;
}

.nbm-middle form button[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  padding: 0px 25px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.nbm-right {
  margin: 0rem 1rem;
}

.nbm-menu {
  display: flex;
  align-items: center;
}

.nbm-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nbm-menu svg {
  width: 35px;
  height: 35px;
  margin-right: 1rem;
}

.navbar-bottom .nav-menu {
  display: flex;
  list-style: none;
  position: relative;
}

.navbar-bottom .nav-menu li {
  padding: 1.3rem 2rem 1rem 2rem;
  width: 150px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;
}

.navbar-bottom .nav-menu li:hover {
  background: var(--primary-color);
}

.navbar-bottom .nav-menu li span {
  position: relative;
}

.navbar-bottom .nav-menu li .menu-tag {
  position: absolute;
  padding: 0px 5px;
  text-align: center;
  top: -15px;
  right: -5px;
  font-size: .6rem;
  color: #fff;
  transform: translateX(-2px);
  background: #7e7e7e;
  border-radius: 3px;
  line-height: 1rem;
}

.navbar-bottom .nav-menu li .menu-tag::after {
  content: "";
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  bottom: -2px;
  left: 4px;
  background: #7e7e7e;
  position: absolute;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: #fff;
}

.sub-nav-menu {
  position: absolute;
  top: 100%;
  background: var(--secondary-color);
  z-index: 11;
  left: 0;
  display: none;
}

.sub-nav-menu li {
  padding: 1.3rem 2rem 1rem 2rem;
}

.nav-menu li:hover .sub-nav-menu {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width:1150px) {
  .navbar-wrap-new {
    padding: 0;
  }

  .sub-nav-menu {
    position: unset;
    width: 100%;
    background: var(--primary-color);
    margin-top: 1rem;
  }

  .sub-nav-menu li {
    width: 100%;
    padding: 1.3rem 0rem 1rem 0rem;
  }

  .navbar-bottom .nav-menu li:hover {
    background: none;
    padding: 1.3rem 0rem 1rem 0rem;
  }

  .nav-menu li:hover .sub-nav-menu {
    display: none;
  }

  .nav-menu li.active .sub-nav-menu {
    display: flex !important;
    flex-direction: column;
  }

  .navbar-bottom .nav-menu li.active {
    padding: 1.3rem 0rem 0rem 0rem;
  }
}

@media screen and (max-width:441px) {}

/* END: NEW NAV */



/* BEGIN: Navbar */
.navbar {
  background-color: #fff;
  display: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  align-items: center;
  max-width: var(--max-width);
  margin: auto;
  z-index: 200;
  height: 75px;

}

.navbar-wrap {
  box-shadow: var(--box-shadow);
  background: linear-gradient(180deg, rgba(0, 96, 173, 1) -10%, rgba(0, 96, 173, 1) 30%, rgba(37, 220, 244, 1) 150%);
}

.nav a {
  text-decoration: none;
}

.headnav {
  width: 100%;
  display: flex;
  color: #000;
}

.headnav-wrap {
  width: 100%;
  justify-content: space-between;
  display: flex;
  max-width: var(--max-width);
  margin: auto;
}

.right-headnav {
  width: 30%;
  padding: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: .8rem;
}

.left-headnav {
  width: 70%;
}

.right-headnav span {
  display: flex;
  justify-content: flex-end;
  padding: 2px 5px;
}

.right-headnav span a {
  text-decoration: none;
  color: #000;
  margin-right: 8px;
}

.right-headnav span a:hover {
  color: var(--primary-color);
}

.left-headnav span {
  display: flex;
}

.left-headnav marquee {
  padding: 5px;
}

.left-headnav span>div {
  display: flex;
  background: var(--primary-gradient);
  border-radius: 0px 0px 0px 10px;
  padding: 4px 5px;
  color: var(--text-secondary);
}

.left-headnav svg {
  width: 20px;
  fill: #fff;
  margin-right: 5px;
}

.wallet {
  display: flex;
  justify-content: flex-end;
}

.wallet>span {
  margin-right: 5px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0px 10px 0px 7px;
}

.wallet img {
  height: 15px;
  object-fit: contain;
  margin-left: 5px;
}


.wallet span p {
  color: #fff;
}

.subnav {
  display: flex;
  justify-content: center;
  align-items: center;

}

.subnav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-secondary);
}

.menu-list svg {
  height: 20px;
  width: 20px;
  color: #fff;
}

.subnav .menu-link a {
  display: flex;
  align-items: center;
}

.subnav .menu-link a p {
  margin-top: 5px;
}

.subnav .menu-link {
  padding: 10px 25px;
}

.subnav .menu-link {
  height: 100%;
}

.breadcrumb {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 20px 35px;
  color: rgb(111, 111, 111);
}

.breadcrumb a {
  text-decoration: none;
  color: rgb(111, 111, 111);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.form-control input {
  width: 100%;
  border-radius: 5px;
  outline: #fff;
  border: var(--border-primary);
  padding: 8px 25px;
}

.logo,
.form-control,
.menu-icon {
  width: 33%;
}

.menu {
  display: flex;
  width: 100%;
}

.menu-list {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
}

.menu-list li {
  list-style: none;
  padding: 0px 10px;
  color: var(--text-primary);
  display: flex;
}

.menu-link {
  padding: 10px;
  position: relative;
}

.menu-link p {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.menu-link p svg {
  transition: 0.3s ease-in-out;
  width: 20px;
  padding: 0px 5px;
}

.menu-link:hover p svg {
  transform: rotate(180deg);
  transition: 0.3s ease-in-out;
  width: 20px;
  padding: 0px 5px;
}

.menu-link p svg path {
  fill: var(--text-secondary);
}

.menu-icon {
  display: flex;
  justify-content: flex-end;
}

.icon-box {
  position: relative;
  width: 45px;
  height: 45px;
  /* border: var(--border-primary); */
  margin-left: 10px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}

.icon-box:hover svg {
  color: var(--primary-color);
}

.profile {
  display: flex;
  align-items: center;
}

.icon-box svg {
  width: 28px;
}

.icon-box a {
  color: #000;
}

.icon-box img {
  height: 32px;
}

.icon-box .notification {
  position: absolute;
  background-color: red;
  color: var(--text-secondary);
  padding: 0px 5px;
  border-radius: 100%;
  font-size: 0.5rem;
  right: 5px;
  top: 5px;
}

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.line {
  height: 3px;
  width: 100%;
  margin: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.menu-link:hover .sub-menu-list {
  transform: translateY(10px);
  transition: 0.2s ease-out;
  opacity: 1;
  height: auto;
}

.sub-menu-list:hover {
  transform: translateY(10px);
  opacity: 1;
  height: auto;
}

.sub-menu-list {
  width: 200px;
  background-color: var(--primary-color);
  color: var(--text-primary);
  position: absolute;
  transform: translateY(50%);
  opacity: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  height: 0;
  z-index: 50;
}

.sub-menu-link {
  padding: 10px 15px !important;
}

.sub-menu-link:hover {
  background: #b94c00;
  cursor: pointer;
}

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

  .navbar-bottom .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .navbar-bottom .nav-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .navbar-bottom.active {
    display: flex;
    position: absolute;
    z-index: 10000;
    width: 100%;
    background: var(--secondary-color);
  }

  .navbar-bottom .nav-menu li span {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-bottom .nav-menu li .menu-tag {
    position: unset;
    padding: 0px 5px;
    text-align: center;
    font-size: .6rem;
    color: #fff;
    background: #7e7e7e;
    border-radius: 3px;
    margin-left: 5px;
  }

  .navbar-bottom .nav-menu li .menu-tag:after {
    content: "";
    width: 0;
    height: 0;
    transform: unset;
    bottom: unset;
    left: unset;
    background: #7e7e7e;
  }

  .nbm-logo {
    width: 120px !important;
  }

  .burger {
    display: flex;
    justify-content: space-evenly;
  }
}

@media screen and (max-width:441px) {
  .navbar-middle .navbar-wrap-new {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .nbm-left {
    order: 1;
    width: 40%;
    margin-left: 1rem;
  }

  .nbm-menu {
    justify-content: flex-end;
  }

  .nbm-middle {
    order: 3;
    width: 100%;
  }

  .nbm-right {
    order: 2;
    width: 40%;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img {
  margin: auto;
}

.logo h2 {
  color: #000;
  margin: auto;
  font-size: 1.9rem !important;
  font-family: 'Noto Sans Lao';
  font-weight: 500 !important;
}

@media only screen and (min-width: 600px) {
  .logo img {
    height: 60px;
  }


}

@media only screen and (max-width: 600px) {
  .logo img {
    height: 40px;
  }
.win-credit img{
  width: 25px !important;
}

.leader-column p{
  line-height: 1.2rem !important;
}

.user-rank{
  display: none;
}

.leader-column.user-info{
  width: 25% !important;
}

  .prize img.coin {
    height: 20px !important;
    width: 20px !important;
    object-fit: contain;
  }

  .prize img.trophy {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain;
  }



  .normal-rank label {
    top: 20% !important;
    left: 30% !important;
    font-size: 9px;
  }


}

@media screen and (max-width: 900px) {
  .win-credit div {
    display: flex;
    flex-direction: row-reverse;
  }

  .subnav .menu-list {
    flex-direction: column;
  }

  .toggle-subnav {
    transform: translateX(0%) !important;
    transition: 0.3s ease-in;
  }

  .toggle-subnav .subnav-overlays {
    opacity: 1;
    transition: 0.3s ease-in;
  }

  .subnav {
    width: 70%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 111;
    height: 100vh;
    transform: translateX(-150%);
    transition: 0.3s ease-in;
  }

  .subnav-overlays {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 34, 34, 0.8);
    z-index: 101;
    top: 0;
    left: 0;
    transition: 0.3s ease-in;
    opacity: 0;
  }

  .subnav-overlays svg {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
    position: absolute;
    z-index: 102;
  }

  .subnav-overlays svg path {
    fill: #fff;
  }

  .menu-list,
  .menu {
    width: 100%;
    z-index: 110;
  }

  .subnav ul li {
    width: 100%;
    padding: 10px;
  }

  .sub-menu-list {
    display: none;
    background-color: #142f73;
  }

  .sub-menu-link:hover {
    cursor: pointer;
    background-color: var(--primary-color);
  }

  .menu-link:hover .sub-menu-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: unset;
  }

  .right-headnav,
  .left-headnav {
    width: 50%;
  }
}

@media screen and (max-width: 440px) {
  .logo h1 {
    font-size: 16px;
  }

  .nav {
    padding: 15px;
  }

  .headnav-wrap {
    flex-direction: column;

  }

  .left-headnav span>div {
    border-radius: 0px;
  }

  .right-headnav,
  .left-headnav {
    width: 100%;
  }

  .left-headnav marquee {
    color: #fff;
    background: #f7a019;
  }

  .mobile-none {
    display: none !important;
  }
}

/* END: Navbar */

/* BEGIN: Banner */
.banner {

  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  margin: 1rem auto 1rem auto;
  /* border-radius: 10px; */
  position: relative;
  background: #355c7d;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: fade 1s;
}

.banner .arrow {
  z-index: 10;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  color: cornsilk;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.banner .arrow:hover {
  cursor: pointer;
  opacity: 1;
}

.banner .arrow-left {
  left: 2%;
}

.banner .arrow-right {
  right: 2%;
}

.banner .dots {
  position: absolute;
  margin: auto;
  top: auto;
  bottom: 2%;
  left: 0;
  right: 0;
  width: 7rem;
  height: auto;
  z-index: 5;
  flex-wrap: nowrap;
  display: flex;
}

.banner .dots .dot {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  color: cornsilk;
}

.bannerwt {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 5rem;
  position: relative;
  overflow: hidden;
  transition: 1s ease-out;
}

.bannerwt:hover img {
  transform: scale(1.1);
  transition: 1s ease-out;
}

.bannerwt img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 1s ease-out;
}

.bannerwt-text {
  position: inherit;
  z-index: 99;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid rgb(255, 255, 255);
  padding: 35px 15px;
  color: #fff;
}


.bannerwt-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bannerwt-text hr {
  width: 100px;
  margin: 10px 0px 20px 0px;
}

.bannerwt-text span {
  font-size: 1.2rem;
  font-weight: 600;
}

.bannerwt-text p {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.bannerwt-text button {
  padding: 15px 30px;
  background-color: #B8860B;
  margin-top: 15px;
  border: none;
  outline: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  border-radius: 5px;
}

.bannerwt-text button:hover {
  cursor: pointer;
  background-color: #1A1A1A;
  transition: 0.3s ease-out;
}

.bannerwt-text button:hover svg {
  transform: translateX(5px);
  transition: .3s ease-in-out;
}

.bannerwt-readmore {
  display: flex;
  align-items: center;
}

.bannerwt-readmore svg {
  width: 20px;
  height: 20px;
  transition: .3s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 440px) {
  .banner {
    height: 17vh;
  }

  .bannerwt {
    padding: 3rem 1rem;
  }

  .bannerwt-text h1 {
    font-size: 1.5rem;
  }

  .bannerwt-text p {
    font-size: 14px;

  }

  .bannerwt-text {
    width: 100%;
    padding: 2rem 15px;
  }
}

/* END: Banner */

/* BEGIN: Facilities */

.facilities {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: auto;
  margin-top: 1.5rem;
}

.facilities-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  border: var(--border-primary);
  padding: 2rem .5rem;
  border-radius: 5px;
  margin: auto;
}

.facilities-box svg {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  fill: var(--primary-color) !important;
}

.facilities-box p {
  font-size: 1.3rem;
  font-weight: 600;
}

.facilities-box span {
  font-size: 1rem;
  color: var(--text-grey);
}

@media screen and (max-width:441px) {
  .facilities {
    grid-template-columns: 1fr 1fr;
  }

  .facilities-box svg {
    width: 70px;
    height: 70px;
  }

  .facilities-box {
    margin: 10px auto;
  }

  .facilities-box span {
    font-size: 14px;
  }
}

/* END: Facilities */

/* BEGIN: Product */
.product-container {
  display: flex;
  max-width: var(--max-width);
  margin: auto;
  padding: 0px 5px 50px 5px;
}

.product-sidebar {
  width: 300px;
}

.product-sidebar h2 {
  padding: 5px 0px;
  display: flex;
  align-items: center;
}

.product-sidebar h2 svg {
  width: 20px;
  margin-right: 5px;
}

.product-sidebar h2 svg path {
  fill: rgb(113, 113, 113) !important;
}

.product-catalog {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}

.product-catalog h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 10px 0px 10px 5px;
}

.product-filter {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.product-filter p {
  display: flex;
  align-items: center;
  padding: 0px 5px;
}

#price-filter {
  padding: 5px 15px;
  width: 180px;
  border-radius: 5px;
  border: var(--border-primary);
  outline: none;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-description {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}

.product-item {
  width: 95%;
  margin: auto;
  background-color: #fafbfc;
  margin-bottom: 10px;
  border-radius: 5px;

}

.product-item:hover {
  box-shadow: 0px 0px 7px #161b1d23;
}

.product-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
}

.product-price-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.product-stock {
  width: 100%;
}

.product-stock p {
  width: 100%;
  text-align: left;
  color: var(--text-grey);
  font-size: .8rem;
  font-weight: 400;
  padding-top: 5px;
}

.product-header {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 20px 0px 20px;
}

.product-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0px 10px;
  text-align: center;
}

.product-header p {
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
  color: var(--text-grey);
}

.product-header hr {
  border-radius: 5px;
  width: 100px;
  height: 3px;
  background: #000;
  margin: 15px auto;
}

.item-box {
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.item-box a {
  text-decoration: none;
  color: var(--text-primary);
}

.icon-box img {
  position: relative;
}

.icon-box a {
  display: flex;
  align-items: center;
}

.add-to-cart {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  text-align: center;
  padding: 10px;
  color: var(--text-secondary);
  transform: translateY(100%);
  z-index: 100;
  transition: 0.3s ease-in;
  border-color: transparent;
}

.add-to-cart:hover {
  color: #fff;
  background-color: var(--secondary-color);
  transition: 0.1s;
}

.product-pic {
  position: relative;
  overflow: hidden;
}

.product-pic img {
  transition: 0.3s ease-in;
}

.product-pic:hover img {
  filter: grayscale(0.8);
  transition: 0.3s ease-in;
}

.product-pic:hover .add-to-cart {
  transform: translateY(0);
  transition: 0.3s ease-in;
}

.product-menu-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 7px;
  border: var(--border-primary);
  background: var(--text-secondary);
  border-radius: 50%;
  cursor: pointer;
}

.product-menu-icon svg {
  width: 22px;
  height: 22px;
}

.product-menu-icon svg path {
  fill: rgb(173, 173, 173) !important;
}

#cart:hover path {
  fill: rgb(49, 49, 49) !important;
}

#favourite:hover path {
  fill: rgb(255, 0, 0) !important;
}

.product-title {
  width: 100%;
  height: 50px;
  display: flex;
  padding: 5px 0px;
}

.product-title h2 {
  width: 70%;
}

.product-title h5 {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.product-title img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.product-price {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.product-price img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.product-price p {
  font-size: 1rem;
  font-weight: 600;
  padding-right: 5px;
  color: var(--primary-color);
}

.product-menu {
  border: none;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
}

.product-menu ul {
  list-style: none;
}

.product-menu ul li {
  padding: 8px 20px;
  border-bottom: 1px solid #f7f7f7;
}

.product-menu ul li:hover {
  background-color: rgb(242, 242, 242);
  cursor: pointer;
}

.product-menu ul li a {
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.product-menu ul li a img {
  width: 30px;
  object-fit: contain;
}

.grid-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mobile-control-btn {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
}

.mobile-control-btn svg {
  width: 30px;
}

#close-category {
  display: flex;
  align-items: center;
}

.atc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 0px 0px 5px 5px;
  border-top: 1px solid rgb(232 232 232);
}

.atc-btn button {
  color: var(--text-primary);
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  transition: .2s ease-out;
}

.atc-btn button svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.atc-btn:hover {
  cursor: pointer;
  background-color: var(--primary-color);
  transition: .2s ease-out;
}

.atc-btn:hover button {
  cursor: pointer;
  color: var(--text-secondary) !important;
}

.product-atc {
  border-radius: 5px;
  margin-top: 10px;
  background: #000;
}

.product-atc button {
  color: var(--text-secondary);
}


.product-atc:hover {}

#category {
  display: flex;
  width: 100%;
  padding: 0px 10px;
  border-bottom: 1px solid #00000015;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px 5px 0px 0px;
}

#category h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-left: 5px;
}

#category svg {
  width: 20px;
}

#category svg:hover {
  cursor: pointer;
}



@media only screen and (max-width: 1024px) {
  .product-title h5 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 821px) {
  .mobile-control-btn {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  .product-container {
    flex-direction: column;
    padding-top: 0;
  }

  .product-catalog {
    padding-left: 0;
  }

  .product-menu {
    width: 50%;
    max-width: 500px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0;
    background: white;
    z-index: 100;
    transform: translateX(-150%);
    transition: 0.3s ease-in;
  }

  .toggle-category {
    transform: translateX(0%);
    transition: 0.3s ease-in;
    z-index: 120;
  }

  #category {
    padding: 0px 10px;
    justify-content: space-between;
  }

  .product-sidebar #category h2 {
    order: 1;
  }

  .product-sidebar #category svg {
    order: 2;
  }

  .product-sidebar {
    width: 100%;
    justify-content: space-between;
  }


  .product-catalog h2 {
    font-size: 1rem;
    font-weight: 500;
    margin: 15px 5px 5px 5px;
  }



}

@media only screen and (max-width: 440px) {
  .grid-big {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-menu {
    width: 70%;
    z-index: 110;
  }

  .product-menu li {
    padding: 10px 15px;
  }

  .product-pic {
    height: 150px;
    padding: 5px;
  }

  .product-title h5 {
    overflow: hidden;
    line-height: 1.5rem;
  }

  .product-description {
    padding: 5px 10px;
  }

  .product-price-wrap p {
    font-size: 0.8rem;
  }

  .product-stock p {
    width: 75px;

  }


  .breadcrumb {
    display: none;
  }
}

/* END: Product */

/* BEGIN: Footer */
footer {
  width: 100%;
  background: var(--secondary-color);
  padding-top: 10px;
}

.footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 10px auto 0px auto;
  display: flex;
  flex-wrap: wrap;
}

.footer-items {
  display: flex;
  width: 25%;
  max-width: 350px;
  min-width: 280px;
  flex-direction: column;
  padding: 20px 30px;
  color: var(--text-secondary);
  border-right: 1px solid rgba(212, 212, 212);
}

.footer-items>p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.footer-items:nth-last-child(1) {
  border-right: none;
}

.footer-items ul {
  list-style: none;
}

.footer-items ul li a {
  text-decoration: none;
  color: var(--text-secondary);
}

.sub-footer {
  display: flex;
  max-width: var(--max-width);
  margin: auto;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid rgba(212, 212, 212);
  align-items: center;
}

.sub-footer .copy-right {
  color: var(--text-secondary);
}

.sub-footer .payment img {
  height: 40px;
}

.tags {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem 2rem 0rem;
}


.tags a {
  margin: 0rem .2rem .5rem .2rem;
}

.tags span {
  font-size: .8rem;
  padding: 2px 10px;
  background-color: #ffffff30;
  border-radius: 5px;
  color: #fff;
}

.tags span:hover {
  background-color: #ffffff50;
}

@media screen and (max-width: 1180px) {
  .footer-items {
    max-width: unset;
    border: none !important;
  }
}

@media screen and (max-width: 900px) {
  .footer-items {
    width: 50%;
    max-width: unset;
  }
}

@media screen and (max-width: 440px) {
  .footer-items {
    width: 100%;
    max-width: unset;
  }

  .sub-footer {
    flex-direction: column-reverse;
    padding: 10px 30px 70px 30px;
  }

}

/* END: Footer */

/* BEGIN: Mobile Nav */
@media screen and (min-width: 421px) {
  .mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .mobile-nav {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: var(--text-secondary);
    z-index: 150;
    height: 56px;
    box-shadow: 0 10px 35px #00000055;
  }

  .mobile-nav .menu-icon {
    width: 100%;
    justify-content: space-evenly;
  }

  .mobile-nav .menu-icon .icon-box {
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav .menu-icon {
    display: none;
  }
}

/* BEGIN: Mobile Nav */

/* BEGIN: Slider */
.box {
  width: 260px;
  background-color: #fafbfc;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  overflow: hidden;
  margin: 23px 5px 25px 5px;
}

.slider-header {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 20px 0px 20px;
}

.slider-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0px 10px;
  text-align: center;
}

.slider-header p {
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
  color: var(--text-grey);
}

.slider-header hr {
  border-radius: 5px;
  width: 100px;
  height: 3px;
  background: #000;
  margin: auto;
  margin-top: 15px;
}

.slide-img {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px 30px 0px 0px !important;
}

.slide-img a {
  width: 100%;
}

.slide-img img {
  width: 100%;
  height: 250px;
  margin: auto;
  border-radius: 5px 5px 0px 0px;
  object-fit: cover;
  box-sizing: border-box;
}

.detail-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

.type {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.type h4 {
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.type a {
  text-decoration: none;
  color: #222222;
  margin: 5px 0px;
  letter-spacing: 0.5px;
  padding-right: 8px;
  font-size: 14px;
  overflow: hidden;
}

.type span {
  color: rgba(26, 26, 26, 0.5);
}

.price {
  color: #333333;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #0b1c485f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buy-btn {
  width: 160px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #252525;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
}

.buy-btn:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  transition: all ease 0.3s;
}

.overlay {
  visibility: hidden;
}

.slide-img:hover .overlay {
  visibility: visible;
  animation: fade 0.5s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.slider {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* END: Slider */

/* BEGIN: Rule */

.content-rule {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  background-color: rgb(255, 255, 255);
  margin-top: 30px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.content-rule img {
  width: 100%;
  max-width: 500px;
  margin: 15px auto 0px;
}

.content-h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.content-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rule-desc {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 10px 15px;
}

.rule-desc h1,
.rule-desc h2 {
  margin-top: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rule-desc h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.rule-desc h2 {
  font-weight: 700;
  font-size: 1.3rem;
}

.rule-desc ul {
  list-style: none;
}

.rule-desc ol {
  margin-left: 1rem;
}

p.warning {
  padding: 10px 0px;
  color: red;
}

/* BEGIN: Rule */

/* BEGIN: Confetti Animation */

/* END: Confetti Animation */
/* BEGIN: LEADERBOARD*/
.board {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: url('../img/tournament-bg.jpg') no-repeat center center/cover;
}


.leaderboard {
  background: #252827;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  border-radius: 10px;

}

.laps {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.laps-wrap {
  padding: 10px;
  cursor: pointer;
  background: #575757;
  transition: 0.2s ease-in;
  width: 400px;
  margin: 0px 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}

.laps-wrap p {
  background: white;
  line-height: 2rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.laps-wrap:hover {
  background-color: #B8860B;
  color: #fff;
}

.laps-wrap:hover img{
  transform: scale(1.3) translate(-30%,-15%);
  transition: 300ms;
}

.laps-wrap.active img{
  transform: scale(1.3) translate(-30%,-15%);
}

.laps-wrap.active {
  background-color: #1a1a1a;
  color: #ffd700;
  border-color: #cccccc;
  box-shadow: 0 0 15px #B8860B;
}

.laps-wrap.active p {

  background: -webkit-linear-gradient(#ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.laps-wrap {
  display: flex;
}

.laps-wrap img {
  height: 70px;
}

.lead-date {
  width: 400px;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
}

.lead-date-wrap {
  color: white;
  text-decoration: none;
}

.lead-date-wrap a {
  color: white;
  text-decoration: none;
}

.lead-date-wrap:hover {
  cursor: pointer;
  color: red;
  border-bottom: 2px solid #d12026;
}

.lead-date-wrap.active {
  display: flex;
  color: #fff;
  color: red;
  border-bottom: 2px solid #d12026;

}

.most-win,
.most-money {
  display: none;
}

.most-win.active,
.most-money.active {
  display: block !important;
}

.leader-wrap .leadertable {
  margin: 0px 5px 0px 5px;
}

.leadertable {
  display: flex;
  width:100%;
  flex-direction: column;
  padding: 0px 10px;
}

.leadertable-header {
  text-align: center;
  padding: 10px 10px;
  box-shadow: none !important;
  font-size: 1rem !important;
  font-weight: 600;
  background: none !important;

}

.leadertable-header div {
  background: #fff;
  color: #98946A !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.leader-column {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}


.leader-column img {
  width: 35px;
  height: auto;
  margin-right: 5px;
}

.network-size {
  width: 40px !important;
  object-fit: contain;
}

.rank {
  width: 10%;
}

.leader-column.user-info {
  width: 30%;
  max-width: 200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.user-info p{
line-height: 1.5rem;
    text-align: left;
    font-weight: 400;
}

.user-name{
  font-weight: 600 !important;
}

.normal-rank {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plate-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.normal-rank img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  position: relative;
}


.normal-rank label {
  position: absolute;
  top: 25%;
  left: 37%;
  color: #000;
}


.user {
  width: 30%;
}

.user span {
  text-align: left;
  margin-left: 5px;
}

.user span p:nth-child(2) {
  font-weight: 300;
}

.win-credit {
  width: 40%;
}

.win-credit p {
  text-align: left;
}

.win-lose{
  color: #cccccc;
}

.prize {
  width: 20%;
}


.prize img.coin {
  height: 30px;
  width: 30px !important;
  margin-right: 5px;
  object-fit: contain;
}

.prize img.trophy {
  width: 40px !important;
  height: 40px;
  object-fit: contain;
}

.win-credit div {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.win-credit div span {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.win-credit div span p:nth-child(2) {
  font-weight: 300;
}

.win-credit img {
  width: 40px;
  margin-left: 5px;
}

.leader-column.prize{
  line-height: 2rem;
}

.select-date{
  width: 100%;
  height: 70px;
  background: #3B3B3B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0px 0px;
}

.select-link{
  width: 100%;
  height: 100%;
  color: white;
}

.select-date-btn{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.select-date-btn.active{
 border-bottom: 5px solid #cccccc;
 color: #fff;
}

.select-date-btn:hover {
  color: #fff;
}

.leadertable li {
  display: flex;
  width: 100%;
  padding: 7px 10px;
  box-shadow: 0px 0px 5px rgba(26, 26, 26, 0.15);
  margin-bottom: 0.5rem;
  border-radius: 5px;
  background: #3B3B3B;
  color: white;
  animation: fadeRight 500ms ease-out;
}

.leadertable li:nth-child(2) {
  animation-delay: 100ms;
  border: 2px solid #B8860B;
  box-shadow: 0 0 10px #B8860B;
  animation: pulseGlow 1.5s infinite ease-in-out;
  background: #1A1A1A;
}

.leadertable li:nth-child(3) {
  animation-delay: 200ms;
  border: 2px solid #B8860B;
  background: #1A1A1A;
}

.leadertable li:nth-child(4) {
  animation-delay: 300ms;
  border: 2px solid #B8860B;
  background: #1A1A1A;
}

.leadertable li:nth-child(5) {
  animation-delay: 400ms;
}

.leadertable li:nth-child(6) {
  animation-delay: 500ms;
}

.leadertable li:nth-child(7) {
  animation-delay: 600ms;
}

.leadertable li:nth-child(8) {
  animation-delay: 700ms;
}

.leadertable li:nth-child(9) {
  animation-delay: 800ms;
}

.leadertable li:nth-child(10) {
  animation-delay: 900ms;
}

.leadertable li:nth-child(11) {
  animation-delay: 1000ms;
}

.leadertable.ten li:nth-child(1) {
  animation-delay: 1100ms;
}

.leadertable.ten li:nth-child(2) {
  animation-delay: 1200ms;
}

.leadertable.ten li:nth-child(3) {
  animation-delay: 1300ms;
}

.leadertable.ten li:nth-child(4) {
  animation-delay: 1400ms;
}

.leadertable.ten li:nth-child(5) {
  animation-delay: 1500ms;
}

.leadertable.ten li:nth-child(6) {
  animation-delay: 1600ms;
}

.leadertable.ten li:nth-child(7) {
  animation-delay: 1700ms;
}

.leadertable.ten li:nth-child(8) {
  animation-delay: 1800ms;
}

.leadertable.ten li:nth-child(9) {
  animation-delay: 1900ms;
}

.leadertable.ten li:nth-child(10) {
  animation-delay: 2000ms;
}

.leadertable.twenty li:nth-child(1) {
  animation-delay: 1100ms;
}

.leadertable.twenty li:nth-child(2) {
  animation-delay: 1200ms;
}

.leadertable.twenty li:nth-child(3) {
  animation-delay: 1300ms;
}

.leadertable.twenty li:nth-child(4) {
  animation-delay: 1400ms;
}

.leadertable.twenty li:nth-child(5) {
  animation-delay: 1500ms;
}

.leadertable.twenty li:nth-child(6) {
  animation-delay: 1600ms;
}

.leadertable.twenty li:nth-child(7) {
  animation-delay: 1700ms;
}

.leadertable.twenty li:nth-child(8) {
  animation-delay: 1800ms;
}

.leadertable.twenty li:nth-child(9) {
  animation-delay: 1900ms;
}

.leadertable.twenty li:nth-child(10) {
  animation-delay: 2000ms;
}

.leader-wrap {
  display: flex;
}

.leader-wrap .leader-column {
  font-size: 1rem;
}

.leader-wrap .rank {
  font-weight: 600;
}

.leader-banner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  padding: 50px 0px 100px 0px;
  background-image: url('../img/tournament.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 5px solid #B8860B;
}

.leader-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

}

.banner-logo img {
  width: 200px;
  height: auto;
  z-index: 10;
}

.banner-main {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.banner-main img {
  width: 80%;
  height: auto;
  margin: auto;
  z-index: 10;
}

.countdown {
  margin: 0px auto;
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: sans-serif;
  transform: scale(0.5);
}

.countdown .time-section>p {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.time-section {
  text-align: center;
  font-size: 30px;
}

.time-group {
  display: flex;
  gap: 10px;
}

.time-segment {
  display: block;
  font-size: 100px;
  font-weight: 900;
  width: 100px;
}

.segment-display {
  position: relative;
  height: 100%;
}

.segment-display__top,
.segment-display__bottom {
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
  position: relative;
}

.segment-display__top {
  line-height: 1.5;
  color: #eee;
  background-color: #111;
  border-radius: 5px 5px 0px 0px;
}

.segment-display__bottom {
  line-height: 0;
  color: #fff;
  background-color: #333;
  border-radius: 0px 0px 5px 5px;
}

.segment-overlay {
  position: absolute;
  top: 0;
  perspective: 400px;
  height: 100%;
  width: 100px;
}

.segment-overlay__top,
.segment-overlay__bottom {
  position: absolute;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

.segment-overlay__top {
  top: 0;
  line-height: 1.5;
  color: #fff;
  background-color: #111;
  transform-origin: bottom;
  border-radius: 5px 5px 0px 0px;
}

.segment-overlay__bottom {
  bottom: 0;
  line-height: 0;
  color: #eee;
  background-color: #333;
  border-top: 2px solid black;
  transform-origin: top;
  border-radius: 0px 0px 5px 5px;
}

.segment-overlay.flip .segment-overlay__top {
  animation: flip-top 0.8s linear;
}

.segment-overlay.flip .segment-overlay__bottom {
  animation: flip-bottom 0.8s linear;
}

@keyframes flip-top {
  0% {
    transform: rotateX(0deg);
  }

  50%,
  100% {
    transform: rotateX(-90deg);
  }
}

@keyframes flip-bottom {

  0%,
  50% {
    transform: rotateX(90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@media screen and (max-width: 1024px) {
  .countdown {
    transform: scale(0.5);
    margin: 0 auto;
  }
}

@media screen and (max-width: 440px) {
  .countdown {
    transform: scale(0.3);
  }

  .leader-wrap {
    flex-direction: column;
  }

  .win-credit p {
    width: 100%;
  }

  .leader-column {
    font-size: .8rem;
  }

  .leader-column img {
    width: 20px;
    height: auto;
  }

  .network-size {
    width: 40px !important;
  }

  .winlose {
    font-size: 10px;
  }

  .laps-wrap p {
    margin-top: 2px;
    font-size: 16px;
  }

  .laps-wrap {
    padding: 10px;
    height: 60px;
  }

  .laps-wrap img{
    height: 50px;
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px #cccccc;
  }
  50% {
    box-shadow: 0 0 20px #cccccc;
  }
  100% {
    box-shadow: 0 0 5px #cccccc;
  }
}

@media only screen and (max-width: 980px) {
  #tidio-chat-iframe {
    bottom: 60px !important;
    right: 0px !important;
  }
}

/* END: LEADERBOARD*/

/* Footer Mobile */
#account-actions-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%
}

@media (min-width:768px) {
  #account-actions-mobile {
    display: none
  }
}

#account-actions-mobile .-register-btn {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  background: linear-gradient(180deg, #56ccf2, #2f80ed);
  border-radius: 15px 15px 0 0;
  text-align: center
}

#account-actions-mobile .-register-btn span {
  display: inline-block;
  color: #fff;
  background: #fff -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(.5, #2f80ed), to(#fff));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@media (max-width:991.98px) {
  #account-actions-mobile .-register-btn span {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
  }
}

@media (max-width:767.98px) {
  #account-actions-mobile .-register-btn span {
    width: 100%
  }
}

#account-actions-mobile .-outer-wrapper {
  display: flex;
  align-items: flex-end
}

#account-actions-mobile .-left-wrapper,
#account-actions-mobile .-right-wrapper {
  display: flex;
  align-items: flex-end;
  flex: 1;
  z-index: 2;
  height: 70px;
  padding-bottom: 6px;
  background: linear-gradient(#1A1A1A, #1A1A1A);
  border-top: 3px solid #ff2a29;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

#account-actions-mobile .-center-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
  width: 74px;
  height: 74px;
  margin: 0 8px 16px;
  padding-bottom: 8px;
  color: #fff;
  border-radius: 50%;
  
}

#account-actions-mobile .-center-wrapper .-selected,
#account-actions-mobile .-center-wrapper .-selecting {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center
}

#account-actions-mobile .-center-wrapper .-selected {
  transition: all .4s;
  background-size: 450px;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: 0 0;
  border-radius: 50%
}

.-selected img {
  width: 120px;
  max-width: inherit !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111111111;
  -webkit-filter: drop-shadow(0px 0px 12px rgb(0 0 0));
  filter: drop-shadow(0px 0px 12px rgb(0 0 0));
}

.-selected img {
  width: 77px !important;
  max-width: 77px !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -18px;
}

.-selected h2 {
  position: absolute;
  font-size: 13px;
  bottom: -4px;
  font-weight: 300;
}

#account-actions-mobile .-center-wrapper .-selected.-slot {
  background-position: -93px 0
}

#account-actions-mobile .-center-wrapper .-selected.-skill-game {
  background-position: -188px 0
}

#account-actions-mobile .-center-wrapper .-selected.-sport {
  background-position: -282px -2px
}

#account-actions-mobile .-center-wrapper .-selected.-fishing-game {
  background-position: -378px 0
}

#account-actions-mobile .-center-wrapper .-selected .-text {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4);
  white-space: nowrap;
}

#account-actions-mobile .-center-wrapper .-selecting {
  display: none
}

#account-actions-mobile .-center-wrapper .-selecting .-text {
  font-size: .875rem;
  line-height: 16px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4)
}

#account-actions-mobile .-center-wrapper .-selecting .-mark {
  position: relative;
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 20px
}

#account-actions-mobile .-center-wrapper:hover {
  color: #fff;
  text-decoration: none
}

#account-actions-mobile .-fake-center-bg-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50px;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
  overflow: hidden
}

#account-actions-mobile .-fake-center-bg-wrapper svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 108px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

#account-actions-mobile .-fake-center-bg-wrapper svg path {
  fill: url(#rectangleGradient)
}

#account-actions-mobile .-left-wrapper {
  border-top-left-radius: 10px;
  border-top-right-radius: 22px
}

#account-actions-mobile .-right-wrapper {
  border-top-right-radius: 10px;
  border-top-left-radius: 22px
}

#account-actions-mobile .-sub-menu-lobby-wrapper {
  position: absolute;
  flex-direction: row;
  justify-content: center;
  visibility: hidden;
  top: -75px;
  left: 50%;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: all .2s
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-text {
  display: inline-block;
  font-size: 10px;
  line-height: 12px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px)
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 3px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 0
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -73px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -75px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    background-position: -147px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    top: -12px;
    background-position: -150px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-text {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -221px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -224px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -300px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -303px
  }
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 66px;
  height: 66px;
  margin: 0 3px;
  padding: 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #393854, #131228);
  border: 1px solid hsla(0, 0%, 100%, .6);
  border-radius: 50%;
  box-shadow: 0 0 10px hsla(0, 0%, 100%, .6)
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link .-nav-icon-bg {
  background-size: 360px;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  top: -15px;
  position: relative
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link:focus {
  outline: none;
  text-decoration: none
}

@media screen and (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-img {
    margin-top: -15px;
    width: 54px
  }

  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
    width: 60px;
    height: 60px;
    margin: 0 2px
  }
}

#account-actions-mobile .-item-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}

.-ic-img img {
  width: 34px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}

#account-actions-mobile .-item-wrapper .-textfooter {
  font-size: .875rem;
  color: #ffffff;
  transition: color .2s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0 auto;
  margin-top: .25rem;
}

.-textfooter.d-block p {
  line-height: unset;
}

.-textfooter.d-block:hover {
  cursor: pointer;
}

#account-actions-mobile .-item-wrapper .-textfooter a {
  color: white;
  text-decoration: none;
}

#account-actions-mobile .-item-wrapper:hover a {
  text-shadow: 0 0 5px white, 0 0 15px white, 0 0 35px white, 0 0 45px white;
}

@media (max-width:575.98px) {
  #account-actions-mobile .-item-wrapper .-textfooter {
    font-size: .8rem
  }
}

#account-actions-mobile .-item-wrapper:active,
#account-actions-mobile .-item-wrapper:hover {
  text-decoration: none
}

#account-actions-mobile .-item-wrapper:active .-text,
#account-actions-mobile .-item-wrapper:hover .-text {
  color: #f7d18e
}

#account-actions-mobile .-item-wrapper.-shimmer .-text {
  display: inline-block;
  color: #fff;
  background: #97a7c1 -webkit-gradient(linear, 100% 0, 0 0, from(#97a7c1), color-stop(.5, #fff), to(#97a7c1));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: x-shimmer-shorter;
  animation-name: x-shimmer-shorter
}

@media (max-width:991.98px) {
  #account-actions-mobile .-item-wrapper.-shimmer .-text {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s
  }
}

#account-actions-mobile .-fully-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, .6)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper,
#account-actions-mobile.-active .-left-wrapper,
#account-actions-mobile.-active .-right-wrapper {
  -webkit-filter: brightness(.5);
  filter: brightness(.5)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper a,
#account-actions-mobile.-active .-left-wrapper a,
#account-actions-mobile.-active .-right-wrapper a {
  pointer-events: none
}

#account-actions-mobile.-active .-center-wrapper {
  background: linear-gradient(0deg, rgba(251, 200, 68, .85), rgba(248, 128, 18, .85))
}

#account-actions-mobile.-active .-center-wrapper .-selected {
  display: none
}

#account-actions-mobile.-active .-center-wrapper .-selecting {
  display: flex
}

#account-actions-mobile.-active .-sub-menu-lobby-wrapper {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

#account-actions-mobile.-active .-fully-overlay {
  display: block
}


/* Footer Mobile */
/* Footer Mobile */
#account-actions-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%
}

@media (min-width:768px) {
  #account-actions-mobile {
    display: none
  }
}

#account-actions-mobile .-register-btn {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  background: linear-gradient(180deg, #56ccf2, #2f80ed);
  border-radius: 15px 15px 0 0;
  text-align: center
}

#account-actions-mobile .-register-btn span {
  display: inline-block;
  color: #fff;
  background: #fff -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(.5, #2f80ed), to(#fff));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@media (max-width:991.98px) {
  #account-actions-mobile .-register-btn span {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
  }
}

@media (max-width:767.98px) {
  #account-actions-mobile .-register-btn span {
    width: 100%
  }
}

#account-actions-mobile .-outer-wrapper {
  display: flex;
  align-items: flex-end
}

#account-actions-mobile .-left-wrapper,
#account-actions-mobile .-right-wrapper {
  display: flex;
  align-items: flex-end;
  flex: 1;
  z-index: 2;
  height: 70px;
  padding-bottom: 6px;
  background: linear-gradient(182deg, #1A1A1A, #1A1A1A), url(images/bg/007.jpg) center center;
  border-top: 3px solid #dabf3c;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
}

#account-actions-mobile .-center-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  width: 74px;
  height: 74px;
  margin: 0 8px 16px;
  padding-bottom: 8px;
  color: #fff;
  background: linear-gradient(182deg, #B8860B, #B8860B), url(images/bg/007.jpg) center center;
  border-radius: 50%;
  box-shadow: 0 0 10px hsla(0, 0%, 100%, .4);
  animation: x-jello-horizontal 3s infinite both;
  animation: glow-gold 2s infinite ease-in-out;
}
@keyframes glow-gold {
  0%, 100% {
    box-shadow: 
        0 0 4px #FFD700,
        0 0 8px #FFA500,
        0 0 12px #FFD700,
        0 0 16px rgba(255, 215, 0, 0.7);
  }
  50% {
    box-shadow: 
        0 0 8px #FFA500,
        0 0 12px #FFD700,
        0 0 16px #FFA500,
        0 0 20px rgba(255, 165, 0, 0.8);
  }
}
@keyframes x-jello-horizontal {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  5% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  7.5% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  10% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  15% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  20% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  25%,
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

#account-actions-mobile .-center-wrapper .-selected,
#account-actions-mobile .-center-wrapper .-selecting {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center
}

#account-actions-mobile .-center-wrapper .-selected {
  transition: all .4s;
  background-size: 450px;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: 0 0;
  transform: translateY(0px);
  color: #fff;
  border-radius: 50%
}

.-selected h2 a {
  color: #fff;
}

.-selected img {
  width: 77px !important;
  max-width: 77px !important;
  height: auto;
  position: absolute;
}

#account-actions-mobile .-center-wrapper .-selected.-slot {
  background-position: -93px 0
}

#account-actions-mobile .-center-wrapper .-selected.-skill-game {
  background-position: -188px 0
}

#account-actions-mobile .-center-wrapper .-selected.-sport {
  background-position: -282px -2px
}

#account-actions-mobile .-center-wrapper .-selected.-fishing-game {
  background-position: -378px 0
}

#account-actions-mobile .-center-wrapper .-selected .-text {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4);
  white-space: nowrap;
}

#account-actions-mobile .-center-wrapper .-selecting {
  display: none
}

#account-actions-mobile .-center-wrapper .-selecting .-text {
  font-size: .875rem;
  line-height: 16px;
  text-shadow: 0 6px 5px rgba(0, 0, 0, .4)
}

#account-actions-mobile .-center-wrapper .-selecting .-mark {
  position: relative;
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 20px
}

#account-actions-mobile .-center-wrapper:hover {
  color: #fff;
  text-decoration: none
}

#account-actions-mobile .-fake-center-bg-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50px;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
  overflow: hidden
}

#account-actions-mobile .-fake-center-bg-wrapper svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 108px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

#account-actions-mobile .-fake-center-bg-wrapper svg path {
  fill: #1A1A1A;
}

#account-actions-mobile .-left-wrapper {
  border-top-left-radius: 10px;
  border-top-right-radius: 22px
}

#account-actions-mobile .-right-wrapper {
  border-top-right-radius: 10px;
  border-top-left-radius: 22px
}

#account-actions-mobile .-sub-menu-lobby-wrapper {
  position: absolute;
  flex-direction: row;
  justify-content: center;
  visibility: hidden;
  top: -75px;
  left: 50%;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: all .2s
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-text {
  display: inline-block;
  font-size: 10px;
  line-height: 12px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px)
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 3px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
    background-position: 0
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -73px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
    background-position: -75px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    background-position: -147px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
    top: -12px;
    background-position: -150px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-text {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -221px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
    background-position: -224px
  }
}

@media (max-width:991.98px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -300px
  }
}

@media (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
    background-position: -303px
  }
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 66px;
  height: 66px;
  margin: 0 3px;
  padding: 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #393854, #131228);
  border: 1px solid hsla(0, 0%, 100%, .6);
  border-radius: 50%;
  box-shadow: 0 0 10px hsla(0, 0%, 100%, .6)
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link .-nav-icon-bg {
  background-size: 360px;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  top: -15px;
  position: relative
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link:focus {
  outline: none;
  text-decoration: none
}

@media screen and (max-width:360px) {
  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-img {
    margin-top: -15px;
    width: 54px
  }

  #account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
    width: 60px;
    height: 60px;
    margin: 0 2px
  }
}

#account-actions-mobile .-item-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}

.-ic-img img {
  width: 34px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}

#account-actions-mobile .-item-wrapper .-textfooter {
  font-size: .875rem;
  color: #ffffff;
  transition: color .2s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0 auto;
  margin-top: .25rem;
}

@media (max-width:575.98px) {
  #account-actions-mobile .-item-wrapper .-textfooter {
    font-size: .8rem
  }
}

#account-actions-mobile .-item-wrapper:active,
#account-actions-mobile .-item-wrapper:hover {
  text-decoration: none
}

#account-actions-mobile .-item-wrapper:active .-text,
#account-actions-mobile .-item-wrapper:hover .-text {
  color: #f7d18e
}

#account-actions-mobile .-item-wrapper.-shimmer .-text {
  display: inline-block;
  color: #fff;
  background: #97a7c1 -webkit-gradient(linear, 100% 0, 0 0, from(#97a7c1), color-stop(.5, #fff), to(#97a7c1));
  background-position: -200px top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: x-shimmer;
  animation-name: x-shimmer;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: x-shimmer-shorter;
  animation-name: x-shimmer-shorter
}

@media (max-width:991.98px) {
  #account-actions-mobile .-item-wrapper.-shimmer .-text {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s
  }
}

#account-actions-mobile .-fully-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, .6)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper,
#account-actions-mobile.-active .-left-wrapper,
#account-actions-mobile.-active .-right-wrapper {
  -webkit-filter: brightness(.5);
  filter: brightness(.5)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper a,
#account-actions-mobile.-active .-left-wrapper a,
#account-actions-mobile.-active .-right-wrapper a {
  pointer-events: none
}

#account-actions-mobile.-active .-center-wrapper {
  background: linear-gradient(0deg, rgba(251, 200, 68, .85), rgba(248, 128, 18, .85))
}

#account-actions-mobile.-active .-center-wrapper .-selected {
  display: none
}

#account-actions-mobile.-active .-center-wrapper .-selecting {
  display: flex
}

#account-actions-mobile.-active .-sub-menu-lobby-wrapper {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

#account-actions-mobile.-active .-fully-overlay {
  display: block
}
.btn-a1{
  width: 100px;
  height: 40px;
  color: green !important;
}
.btn-a2{
  width: 100px;
  height: 40px;
  color: orange !important;
}
.btn-a3{
  width: 100px;
  height: 40px;
  color: #B3AAD1 !important;
}
.btn-a4{
  width: 100px;
  height: 40px;
  color: #8CB7FE !important;
}
.btn-a5{
  width: 150px;
  height: 40px;
  color: red !important;
}
/* Footer Mobile */

/* Profile PopUp */

.popup-box {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  padding: 15px;
  z-index: 997;
  background: #0000006c;
  display: none;
}

.popup-box.pop-active {
  display: flex !important;
}

.open-profile-popup:hover {
  cursor: pointer;
}

.profile-popup {
  top: 0;
  background: #fff;
  padding: 15px;
  width: 100%;
  height: 100%;
  z-index: 990;
  margin: auto;
  max-height: 90vh;
    overflow-y: auto;
}

.profile-close {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}

.profile-close svg {
  width: 25px;
  height: 25px;
}

.profile-menu-btn a {
  padding: 5px 15px;
  border: none;
  box-shadow: 5px 5px 5px #e5e5e5;
  border-radius: 5px;
  color: #000;
  margin-right: 10px;
  text-align: center;
  align-items: center;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin: 3rem 0;
}

.profile-info img {
  width: 80px;
  height: 80px;
  margin: 10px 0px;
}

.profile-info h4 {
  font-size: 1.5rem;
}

.profile-menu-btn {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0px;
}

.profile-info p {
  font-weight: 600;
}

.profile-asset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
}

.profile-asset-box {
  width: 100%;
  padding: 15px 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #4d4d4d;
  margin-bottom: 1rem;
  border-radius: 5px;
  color: white;
}

.profile-asset-box img {
  width: 50px;
  height: auto;
  margin-right: 1rem;
}

.asset-name {
  font-size: 1.2rem;
}

.asset-amount {
  font-size: 1rem;
  font-weight: 600;
}

.profile-close svg:hover {
  cursor: pointer;
}

/* Profile PopUp */