@charset "UTF-8";
@font-face {
  font-family: Soloist-Z6M8;
  src: url(../../Soloist-Z6M8.otf);
  font-display: swap;
}
.soloist {
  font-family: Soloist-Z6M8;
  font-weight: normal;
}

* {
  box-sizing: border-box;
}
* ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: transparent;
}
* ::-webkit-scrollbar-track {
  background-color: transparent;
}
* ::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: transparent;
}

body button {
  outline: none;
  border: none;
  cursor: pointer;
  background: transparent;
}
body button:disabled {
  filter: grayscale(1);
  opacity: 0.5;
}
body button:active {
  filter: brightness(1.2);
}

.form-floating {
  display: flex;
  flex-wrap: wrap;
}
.form-floating > span.msg {
  width: 100%;
  color: #da2a2a;
}
.form-floating.pre > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  margin-right: 10px;
  border: solid 1px #fff;
  border-radius: 6px;
}
.form-floating.pre > div > span {
  color: #fff;
}
.form-floating.pre > input, .form-floating.pre > select {
  width: calc(100% - 68px);
}
.form-floating.pre > label {
  left: 68px;
}

.reload-wallet {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reload-wallet > img {
  width: 25px;
  height: 25px;
}
.reload-wallet:disabled {
  cursor: not-allowed;
}

.contact-btn {
  position: fixed;
  left: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 2px #F0D14F;
  background: linear-gradient(#517837 0%, #14260A 100%);
  color: #fff;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
}
.contact-btn:active {
  filter: brightness(1.2);
}
.contact-btn:disabled {
  filter: grayscale(1);
}
.contact-btn.active {
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
}
.contact-btn > img {
  height: 45px;
}
.contact-btn > span {
  font-size: 12px;
  font-weight: normal;
}

.switch-chat {
  visibility: hidden;
}
.switch-chat.show {
  visibility: visible;
}

#chat-widget-container {
  left: 0px !important;
  bottom: 70px !important;
  display: none !important;
}
#chat-widget-container.show {
  display: block !important;
}

#toast-container {
  margin-top: 10px;
}
#toast-container .toast.toast-error {
  background-color: #da2a2a;
}
#toast-container .toast.toast-success {
  background-color: #67c23a;
}
#toast-container .toast.toast-warning {
  background-color: #e6a23c;
}
#toast-container .toast.toast-info {
  background-color: #909399;
}

.pagination-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}
.pagination-wrapper > li {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  margin-right: 10px;
  font-size: 12px;
  border-radius: 8px;
  padding: 0 5px;
  min-width: 30px;
  min-height: 30px;
}
.pagination-wrapper > li.circle {
  border-radius: 50%;
  padding: 0;
}
.pagination-wrapper > li.active {
  background: #F0D14F;
  color: #000;
  border-radius: 50%;
}
.pagination-wrapper > li.disabled {
  pointer-events: none;
}

.basic-game-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.basic-game-wrapper .basic-game-container {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.basic-game-wrapper .basic-game-container > li {
  width: calc((100% - 20px) / 3);
  border-radius: 8px;
  padding: 10px 10px 10px 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.basic-game-wrapper .basic-game-container > li:hover {
  filter: brightness(1.3);
}
.basic-game-wrapper .basic-game-container > li > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.basic-game-wrapper .basic-game-container > li:not(:nth-of-type(3n)) {
  margin-right: 10px;
}

.multiple-game-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.multiple-game-wrapper .multiple-game-container {
  max-width: 1280px;
  padding: 30px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.multiple-game-wrapper .multiple-game-container > li {
  width: 50%;
  margin-bottom: 20px;
  padding: 15px 15px;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.multiple-game-wrapper .multiple-game-container > li:hover {
  filter: brightness(1.3);
}
.multiple-game-wrapper .multiple-game-container > li > img {
  width: 100%;
}
.multiple-game-wrapper .multiple-game-container.full > li {
  width: 100%;
}

.no-content-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  display: none;
}
.no-content-wrapper.show {
  display: flex;
}
.no-content-wrapper > img {
  width: 150px;
  margin-bottom: 25px;
}
.no-content-wrapper > span {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

.iframe-game-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  height: calc(100vh - 94px - 50px);
}
.iframe-game-wrapper > img {
  width: 85%;
}
.iframe-game-wrapper > a {
  width: 100%;
  display: flex;
  justify-content: center;
}
.iframe-game-wrapper > a > img {
  width: 85%;
}
.iframe-game-wrapper > iframe {
  width: 100%;
  height: calc(100vh - 94px - 50px);
}

.launch-game-wrapper {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-repeat: no-repeat;
  background-size: 100%;
  display: none;
}
.launch-game-wrapper.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch-game-wrapper .launch-game-container {
  width: 100%;
  height: 100%;
  background: #101010;
  border-radius: 2px;
}
.launch-game-wrapper .launch-game-container.full {
  width: 100%;
  height: 100%;
}
.launch-game-wrapper .launch-game-container .launch-game-header {
  width: 100%;
  display: flex;
  height: 45px;
  padding: 0 20px;
  background: #101010;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.launch-game-wrapper .launch-game-container .launch-game-header > i {
  color: #fff;
  font-size: 1.5rem;
  padding: 5px 5px;
  cursor: pointer;
}
.launch-game-wrapper .launch-game-container .launch-game-header > i:first-of-type {
  transition: 0.4s ease-out;
}
.launch-game-wrapper .launch-game-container .launch-game-header > i:first-of-type:hover {
  transform: scale(1.2);
}
.launch-game-wrapper .launch-game-container .launch-game-header > i:last-of-type {
  transition: 0.5s ease-out;
  margin-left: 10px;
}
.launch-game-wrapper .launch-game-container .launch-game-header > i:last-of-type:hover {
  transform: rotate(360deg);
}
.launch-game-wrapper .launch-game-container .launch-game-content {
  width: 100%;
  height: calc(100% - 45px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.launch-game-wrapper .launch-game-container .launch-game-content > img {
  width: 200px;
  margin-bottom: 15px;
}
.launch-game-wrapper .launch-game-container .launch-game-content > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.launch-game-wrapper .launch-game-container .launch-game-content > span {
  margin-top: 30px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.launch-game-wrapper .launch-game-container .launch-game-content > span.failed {
  color: #f56c6c;
}
.launch-game-wrapper .launch-game-container .launch-game-content #myProgress {
  width: 100%;
  background-color: #272727;
  position: relative;
  border-radius: 4px;
  max-width: 345px;
}
.launch-game-wrapper .launch-game-container .launch-game-content #myBar {
  width: 0%;
  height: 2px;
  text-align: center;
  line-height: 2px;
  box-shadow: 0 0px 5px 2px rgba(255, 255, 255, 0.7);
  background: #fff;
  color: #fff;
  border-radius: 4px;
}
.launch-game-wrapper .launch-game-container .launch-game-content #myBar > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  text-shadow: 0.1em 0.1em 0.2em black;
  font-size: 16px;
  display: none;
}
.launch-game-wrapper .launch-game-container .launch-game-content > iframe {
  width: 100%;
  height: 100%;
  display: none;
}

.games-lobby-filter {
  overflow: visible;
}
.games-lobby-filter > button.select-provider > i.updown {
  display: none;
}
.games-lobby-filter > button.select-provider.show > i.updown {
  display: flex;
}
.games-lobby-filter .dd-providers-container {
  position: relative;
  overflow: visible;
  transition: 1s ease-in-out;
}
.games-lobby-filter .dd-providers-container.toping {
  display: flex;
  height: 77px;
}
.games-lobby-filter .dd-providers-container.show {
  height: auto;
}
.games-lobby-filter .dd-providers-container > ul.dd-providers-list {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 15px;
}
.games-lobby-filter .dd-providers-container > ul.dd-providers-list > li {
  width: 16.6666666667%;
  display: flex;
  margin-bottom: 5px;
}
.games-lobby-filter .dd-providers-container > ul.dd-providers-list > li > a {
  width: 100%;
  display: flex;
  position: relative;
}
.games-lobby-filter .dd-providers-container > ul.dd-providers-list > li > a > img {
  width: 100%;
  max-width: none;
  max-height: none;
}
.games-lobby-filter .dd-providers-container > ul.dd-providers-list > li > a > img.hot-tag {
  position: absolute;
  width: 30px;
  height: auto;
  top: 0px;
  right: 0px;
}
.games-lobby-filter .dd-providers-container > button.show-provider {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.games-lobby-filter .dd-providers-container > button.show-provider > i {
  font-size: 1.6rem;
  color: #ffce50;
  animation: blinker 1.5s linear infinite;
}
.games-lobby-filter .dd-providers-container > button.show {
  display: flex;
}

.custom-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.custom-form > li {
  width: 100%;
  display: flex;
}
.custom-form > li > span {
  margin-bottom: 5px;
  color: #fff;
}
.custom-form > li.touch, .custom-form > li.touch2 {
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.custom-form > li.touch > span, .custom-form > li.touch2 > span {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.custom-form > li.touch > div, .custom-form > li.touch2 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: #101010;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: calc((100% - 30px) / 4);
  height: auto;
  margin-bottom: 7px;
  position: relative;
}
.custom-form > li.touch > div > img, .custom-form > li.touch2 > div > img {
  width: 90%;
}
.custom-form > li.touch > div > span, .custom-form > li.touch2 > div > span {
  text-align: center;
}
.custom-form > li.touch > div:not(:nth-of-type(4n)), .custom-form > li.touch2 > div:not(:nth-of-type(4n)) {
  margin-right: 10px;
}
.custom-form > li.touch > div.active, .custom-form > li.touch2 > div.active {
  color: #fff;
  border: 2px solid #ffce50;
}
.custom-form > li.touch > div.tag:after, .custom-form > li.touch2 > div.tag:after {
  content: attr(data-tag);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: red;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  animation: blinker 1.5s linear infinite;
}
.custom-form > li.touch2 > div {
  position: relative;
}
.custom-form > li.touch2 > div > span {
  position: absolute;
  bottom: 6px;
  font-size: 12px;
  line-height: 1;
}
.custom-form > li.detail {
  margin-bottom: 15px;
  display: none;
}
.custom-form > li.detail.show {
  display: flex;
  flex-direction: column;
}
.custom-form > li.detail > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #101010;
  padding: 20px 20px;
  border-radius: 8px;
  position: relative;
}
.custom-form > li.detail > ul > li {
  width: 100%;
  display: flex;
  cursor: pointer;
}
.custom-form > li.detail > ul > li:not(:last-of-type) {
  margin-bottom: 15px;
}
.custom-form > li.detail > ul > li:hover {
  filter: brightness(1.1);
}
.custom-form > li.detail > ul > li > span {
  color: #fff;
  font-size: 1rem;
}
.custom-form > li.detail > ul > li > span:last-of-type {
  margin-left: 5px;
  color: #ffce50;
}
.custom-form > li.detail > ul > li > i {
  margin-left: 5px;
  font-size: 1rem;
  color: #ffce50;
}
.custom-form > li.detail > ul > button {
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
  color: #000;
  border-radius: 8px;
  padding: 10px 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.custom-form > li.detail > div {
  width: 100%;
  display: none;
  flex-direction: column;
  background: #101010;
  margin-top: 15px;
  padding: 20px 20px;
  border-radius: 8px;
  position: relative;
}
.custom-form > li.detail > div.show {
  display: flex;
}
.custom-form > li.detail > div > span {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.custom-form > li.detail > div > img {
  width: 60%;
  max-width: 200px;
  border-radius: 8px;
  padding: 10px 10px;
  background-color: #fff;
}
.custom-form > li.release {
  align-items: center;
  margin-bottom: 15px;
  display: none;
}
.custom-form > li.release.show {
  display: flex;
}
.custom-form > li.release > div {
  width: 20px;
  height: 20px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
}
.custom-form > li.release > span {
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.custom-form > li.release.active > div::after {
  content: "";
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-form > li.extreme {
  justify-content: space-between;
  margin-bottom: 5px;
}
.custom-form > li.extreme > span {
  color: #fff;
  font-size: 1rem;
}
.custom-form > li.amount {
  margin-bottom: 15px;
  flex-direction: column;
}
.custom-form > li.amount > div {
  width: 100%;
  display: flex;
}
.custom-form > li.amount > div.typing {
  position: relative;
}
.custom-form > li.amount > div.typing::after {
  content: attr(data-bonus);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #ffce50;
}
.custom-form > li.amount > div.typing > input {
  width: 100%;
  color: #fff;
  background: #101010;
  border: 2px solid #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 10px;
}
.custom-form > li.amount > div.typing > input.active {
  border-color: #ffce50;
}
.custom-form > li.amount > div.fill {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.custom-form > li.amount > div.fill > button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 calc(25% - 7.5px);
  height: 42px;
  position: relative;
}
.custom-form > li.amount > div.fill > button::after {
  content: attr(data-bonus);
  position: absolute;
  right: 2px;
  top: 0;
  font-size: 12px;
  color: #ffce50;
}
.custom-form > li.amount > div.fill > button.active {
  border-color: #ffce50;
}
.custom-form > li.pin {
  margin-bottom: 15px;
  flex-direction: column;
}
.custom-form > li.pin > div {
  width: 100%;
  display: flex;
  position: relative;
}
.custom-form > li.pin > div > input {
  width: 100%;
  color: #fff;
  background: #101010;
  border: 2px solid #fff;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: 10px 10px;
}
.custom-form > li.pin > div > i.fa-eye, .custom-form > li.pin > div > i.fa-eye-slash {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 1rem;
}
.custom-form > li.receipt {
  cursor: default;
  display: none;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.custom-form > li.receipt.show {
  display: flex;
}
.custom-form > li.receipt > span {
  width: 100%;
  margin-bottom: 5px;
}
.custom-form > li.receipt > div {
  width: calc(100% - 85px - 10px);
  height: 40px;
  background: transparent;
  border-radius: 9px;
  border: solid 2px #fff;
  text-align: center;
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-left: 5%;
}
.custom-form > li.receipt > div > span {
  color: rgba(170, 170, 170, 0.6666666667);
  font-size: 14px;
}
.custom-form > li.receipt > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 40px;
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
  color: #000;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
}
.custom-form > li.receipt > input {
  display: none;
}
.custom-form > li.gcash-qr-hint > span {
  color: #D6980E;
  font-weight: bolder;
}
.custom-form > li.list {
  flex-direction: column;
  margin-bottom: 15px;
}
.custom-form > li.list > span {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.custom-form > li.list > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.custom-form > li.list > ul > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #101010;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  padding: 15px 5%;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.custom-form > li.list > ul > li > span {
  width: 100%;
  text-align: center;
  color: #ffce50;
}
.custom-form > li.list > ul > li > button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  justify-content: center;
  align-items: center;
}
.custom-form > li.list > ul > li > button.show {
  display: flex;
}
.custom-form > li.list > ul > li > button > i {
  color: #fff;
  font-size: 1.4rem;
}
.custom-form > li.list > ul > li > div {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.custom-form > li.list > ul > li > div > span {
  color: #fff;
  border: solid 1px #efefef;
  border-radius: 12px;
  padding: 3px 5px;
}
.custom-form > li.list > ul > li > div > span:not(:last-of-type) {
  margin-right: 5px;
}
.custom-form > li.list > ul > li.active {
  color: #fff;
  border: 2px solid #ffce50;
}
.custom-form > li.list > ul > li.none > span {
  color: #fff;
}
.custom-form > li.turnover {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: solid 2px #c61123;
  background: #101010;
  display: none;
  margin-bottom: 15px;
  position: relative;
}
.custom-form > li.turnover::before {
  content: "Note :";
  color: #c61123;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 0;
}
.custom-form > li.turnover.show {
  display: flex;
}
.custom-form > li.turnover > div {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.custom-form > li.turnover > div > span {
  width: auto;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
.custom-form > li.turnover > div > span:first-of-type {
  color: #ec8028;
  font-size: 1.2rem;
}
.custom-form > li.turnover > div > span.pad {
  position: relative;
}
.custom-form > li.turnover > div > span.pad::before {
  content: "*";
  color: red;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 5px;
}
.custom-form > li.button {
  justify-content: center;
}
.custom-form > li.button > button {
  width: 80%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
  font-weight: bold;
  transition: all 0.3s;
  border-radius: 8px;
  font-size: 1.2rem;
}

.form-floating {
  position: relative;
}
.form-floating > i.fa-eye, .form-floating > i.fa-eye-slash {
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  font-size: 1rem;
}

.forgot-trigger {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.forgot-trigger > span {
  text-decoration: underline;
}

.forgot-block {
  position: absolute;
  top: 33px;
  background: linear-gradient(#e9e5e5, #c9cbcc);
  border-radius: 6px;
  padding: 7px 10px;
  display: none;
}
.forgot-block::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -15px;
  right: 25px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 15px solid #ccc;
  border-bottom-color: #e9e5e5;
}
.forgot-block > span:first-child {
  font-size: 14px;
  color: black;
  white-space: nowrap;
  margin-bottom: 5px;
}
.forgot-block > span:last-child {
  font-size: 12px;
  color: black;
  font-weight: normal;
}
.forgot-block.show {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.static-banner-wrapper {
  width: 100%;
  display: flex;
  background: transparent;
  overflow: hidden;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.static-banner-wrapper.show {
  visibility: visible;
}
.static-banner-wrapper > img {
  width: 100%;
  height: auto;
  max-height: 250px;
}

.status-msg-wrapper {
  width: 100%;
  display: flex;
  min-height: 500px;
  justify-content: center;
  align-items: center;
  display: none;
}
.status-msg-wrapper.show {
  display: flex;
}
.status-msg-wrapper .status-msg-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  justify-content: center;
  align-items: center;
}
.status-msg-wrapper .status-msg-container > img {
  width: 180px;
  margin-bottom: 30px;
}
.status-msg-wrapper .status-msg-container > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.status-msg-wrapper .status-msg-container > img.padding {
  padding: 10px 10px;
  background: #fff;
  border-radius: 8px;
}
.status-msg-wrapper .status-msg-container > span {
  color: #fff;
  font-size: 1.6rem;
}
.status-msg-wrapper .status-msg-container > button {
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
  color: #000;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  padding: 15px 60px;
  margin-top: 30px;
  border-radius: 8px;
  display: none;
}
.status-msg-wrapper .status-msg-container > button.show {
  display: flex;
}
.status-msg-wrapper .status-msg-container > div {
  display: none;
}
.status-msg-wrapper .status-msg-container > div.show {
  display: flex;
  background: #fff;
  padding: 10px 10px;
  margin-bottom: 30px;
  border-radius: 8px;
}
.status-msg-wrapper .status-msg-container > div.show > img,
.status-msg-wrapper .status-msg-container > div.show > canvas {
  width: 300px;
  height: 300px;
}

.agentregister-welcome {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.agentregister-welcome > img {
  width: 100%;
  max-width: 80vw;
}
.agentregister-welcome.show {
  display: flex;
}

.info-center-wrapper {
  width: 100%;
  display: flex;
  max-width: 1280px;
  margin: 30px 0;
  min-height: 500px;
  font-weight: normal;
}
.info-center-wrapper .tab-wrapper {
  display: flex;
  width: 30%;
  margin-right: 30px;
  flex-direction: column;
}
.info-center-wrapper .tab-wrapper > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  height: 50px;
  border-radius: 7px;
  background-color: #252525;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5%;
  position: relative;
  cursor: pointer;
}
.info-center-wrapper .tab-wrapper > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 50px;
}
.info-center-wrapper .tab-wrapper > li > a > span {
  color: #fff;
  font-size: 1.2em;
}
.info-center-wrapper .tab-wrapper > li.active > a > span, .info-center-wrapper .tab-wrapper > li:hover > a > span {
  color: #ffce50;
}
.info-center-wrapper .article-wrapper {
  padding: 20px 20px;
  width: 70%;
  display: block;
  background-color: #252525;
  border-radius: 8px;
  max-height: 1000px;
  overflow-y: scroll;
  cursor: default;
}
.info-center-wrapper .article-wrapper > h1,
.info-center-wrapper .article-wrapper h2,
.info-center-wrapper .article-wrapper h3,
.info-center-wrapper .article-wrapper h4,
.info-center-wrapper .article-wrapper h5,
.info-center-wrapper .article-wrapper h6 {
  color: #ffce50;
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 10px;
}
.info-center-wrapper .article-wrapper span,
.info-center-wrapper .article-wrapper p,
.info-center-wrapper .article-wrapper font,
.info-center-wrapper .article-wrapper * {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
}

.header-container > a.header-logo {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.header-container > a.header-logo > img {
  max-width: none;
  height: 74px;
}

ul.promos-item > li {
  display: none;
}
ul.promos-item > li.show {
  display: flex;
}

button.modal-close-btn.near {
  top: 10px;
  right: 10px;
}

.invert {
  filter: invert(1);
}

#popup .modal-content {
  background: transparent;
}
#popup .modal-content .popup-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}
#popup .modal-content .popup-wrapper .popup-container {
  width: 100%;
  height: 100%;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-wrapper {
  width: 100%;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-wrapper > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-wrapper > a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-wrapper > a > img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-button-next {
  right: 3px !important;
  display: flex;
  background-image: url(../../../img/icon/right-arrow2.png);
  color: transparent;
}
#popup .modal-content .popup-wrapper .popup-container > div.swiper-button-prev {
  left: 3px !important;
  display: flex;
  background-image: url(../../../img/icon/left-arrow2.png);
  color: transparent;
}

#single-popup .modal-content {
  background: transparent;
}
#single-popup .modal-content .single-popup-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}
#single-popup .modal-content .single-popup-wrapper > img {
  width: 100%;
}

#single-popup, #popup {
  z-index: 1060; /* higher than default Bootstrap modal (1055) */
}

.modal-backdrop + .modal-backdrop {
  z-index: 1051; /* ensure second backdrop doesn’t cover modal */
}

.big-wins-item.transparent {
  background: transparent;
}
.big-wins-item .wins-game.full {
  width: 100%;
  background-image: url(../../../img/index/border.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px;
}
.big-wins-item .wins-game.full > img {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
}

.hot-games-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hot-games-item .hot-games {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
}
.hot-games-item .hot-games > img:first-of-type {
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.hot-games-item .hot-games > img:last-of-type {
  display: flex;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 24px;
}

.max-overlay {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.marquee-wrapper {
  width: 100%;
  height: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  visibility: hidden;
  z-index: 2;
}
.marquee-wrapper > div {
  display: flex;
  align-items: center;
}
.marquee-wrapper > div:first-of-type > img {
  height: 15px;
  margin: 0 5px;
}
.marquee-wrapper > div:first-of-type > span {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  display: none;
}
.marquee-wrapper .marquee-container {
  display: flex;
  overflow: hidden;
}
.marquee-wrapper .marquee-container div {
  display: flex;
}
.marquee-wrapper .marquee-container span,
.marquee-wrapper .marquee-container p {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  font-family: "Red Hat Display", sans-serif;
}

.trending-wrapper {
  width: 100%;
  display: flex;
}
.trending-wrapper > div {
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
}
.trending-wrapper > div > a {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: default;
  margin-bottom: 7px;
}
.trending-wrapper > div > a > img {
  width: 30px;
}
.trending-wrapper > div > a > span {
  font-size: 1.6rem;
  color: #ffce50;
  margin: 0 10px;
}
.trending-wrapper > div > a.live {
  cursor: pointer;
}
.trending-wrapper > div > a.live > span {
  color: #FB3140;
  animation: blinker 3.5s linear infinite;
  text-decoration: underline;
}
.trending-wrapper > div.trending-left {
  margin-right: 16px;
}
.trending-wrapper > div.trending-left > div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
}
.trending-wrapper > div.trending-left > div > img {
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.trending-wrapper > div.trending-left > div > iframe {
  display: none;
  padding: 5px 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.trending-wrapper > div.trending-left > div > iframe.show {
  display: flex;
}
.trending-wrapper > div.trending-left > div > a {
  width: calc(100% - 30px);
  display: none;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 3;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.trending-wrapper > div.trending-left > div > a > div {
  display: none;
  flex-direction: column;
}
.trending-wrapper > div.trending-left > div > a > div > span:first-of-type {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.trending-wrapper > div.trending-left > div > a > div > span:last-of-type {
  color: #ffce50;
  font-size: 1.4rem;
}
.trending-wrapper > div.trending-left > div > a > img {
  height: 50px;
}
.trending-wrapper > div.trending-left > div > a:hover {
  filter: brightness(1.2);
}
.trending-wrapper > div.trending-right > div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
}
.trending-wrapper > div.trending-right > div > img {
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.trending-wrapper > div.trending-right > div > div > img {
  width: 100%;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 10px;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > span {
  margin-bottom: 15px;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > span:first-of-type {
  font-size: 1.4rem;
  color: #ffce50;
  text-transform: uppercase;
  font-weight: bold;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > span:last-of-type {
  font-size: 1.6rem;
  color: #fff;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > ul {
  margin-top: 5px;
  width: 90%;
  display: flex;
  flex-direction: column;
  background: #101010;
  border-radius: 12px;
  max-height: 220px;
  overflow: hidden;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  overflow: hidden;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > ul li > span {
  width: 50%;
  color: #fff;
  font-size: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > ul li > span:first-of-type {
  text-align: left;
}
.trending-wrapper > div.trending-right > div > div.winners-wrapper > div > ul li > span:last-of-type {
  text-align: right;
}

.custom-rotate {
  animation: rotate 1s ease-out infinite forwards;
}

.inbox-count {
  display: none;
}
.inbox-count.show {
  display: flex;
}

.full-overlay {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --twinkle-duration: 4s;
}

.modal-content {
  border: none !important;
}

.content-container.unvisible {
  visibility: hidden;
}

.whole-loading {
  width: 100%;
  display: flex;
  height: 100%;
  background: rgba(0, 0, 0, 0.99);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
.whole-loading > img {
  width: 300px;
  height: auto;
}
.whole-loading > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.whole-loading > span {
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}
.whole-loading > span:first-of-type {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.whole-loading.show {
  display: flex;
}

.side-menu-info > li:hover > a > span {
  color: #fff;
}

.side-menu-category > li > a > i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #d4d4d4;
  text-shadow: 0 0 5px #C9C9C9;
}
.side-menu-category > li.change > a > img:first-of-type {
  display: flex;
}
.side-menu-category > li.change > a > img:last-of-type {
  display: none;
}
.side-menu-category > li.change > a:hover > img:first-of-type, .side-menu-category > li.change > a.active > img:first-of-type {
  display: none;
}
.side-menu-category > li.change > a:hover > img:last-of-type, .side-menu-category > li.change > a.active > img:last-of-type {
  display: flex;
}

#download-dialog .modal-dialog {
  transform: translate(-25%, 60%);
}
#download-dialog .modal-dialog .modal-content {
  position: relative;
  width: 764px;
  height: 361px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(29, 29, 29, 0.8549019608);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#download-dialog .modal-dialog .modal-content .download-title {
  width: 100%;
  margin: 15px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  font-size: 1.1rem;
}
#download-dialog .modal-dialog .modal-content > .download-txt-wrapper {
  width: 45%;
  margin-right: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: unset;
  list-style: circle;
}
#download-dialog .modal-dialog .modal-content > .download-txt-wrapper > li {
  font-size: 0.8rem;
  width: 100%;
  margin-bottom: 15px;
}
#download-dialog .modal-dialog .modal-content > .download-txt-wrapper > li > h5 {
  display: inline-block;
  font-size: 0.9rem;
  margin: 0 1.5px 0 0;
  line-height: 1.6;
}
#download-dialog .modal-dialog .modal-content > .download-txt-wrapper > li > span {
  text-align: center;
  color: rgba(255, 255, 255, 0.6156862745);
  line-height: 1.6;
}
#download-dialog .modal-dialog .modal-content .download-Qrbox {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#download-dialog .modal-dialog .modal-content .download-Qrbox #download-dialog-qrcode {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 8px;
}
#download-dialog .modal-dialog .modal-content .download-Qrbox .download-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
#download-dialog .modal-dialog .modal-content .download-Qrbox .download-btn button {
  width: 160px;
  background: linear-gradient(0deg, #5b5b5b 30%, #fff 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 800;
}
#download-dialog .modal-dialog .modal-content .download-Qrbox .download-btn button > img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.entrance-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15vh;
  right: 20px;
  z-index: 3;
}
.entrance-wrapper > button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea4632;
  position: absolute;
  right: -5px;
  top: -10px;
  padding: 5px 5px;
  border-radius: 50%;
}
.entrance-wrapper > button i {
  color: #fff;
  font-size: 1rem;
  width: 15px;
  height: 15px;
}
.entrance-wrapper > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.entrance-wrapper > a > img {
  width: 160px;
}
.entrance-wrapper.entrance-wrapper-1 {
  z-index: 10;
}
.entrance-wrapper.entrance-wrapper-1 > a > img {
  width: 130px;
}

.stars-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  pointer-events: none;
  overflow: hidden;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.stars:nth-child(2) {
  animation-delay: calc(var(--twinkle-duration) * -0.33);
}
.stars:nth-child(3) {
  animation-delay: calc(var(--twinkle-duration) * -0.66);
}
@keyframes twinkle {
  0% {
    opacity: 0.1;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.star {
  fill: white;
}
.star:nth-child(3n) {
  opacity: 0.8;
}
.star:nth-child(7n) {
  opacity: 0.6;
}
.star:nth-child(13n) {
  opacity: 0.4;
}
.star:nth-child(19n) {
  opacity: 0.2;
}

.comet {
  transform-origin: center center;
  animation: comet 10s linear infinite;
}
@keyframes comet {
  0%, 40% {
    transform: translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60%, 100% {
    transform: translateX(-100vmax);
    opacity: 0;
  }
}

.comet-b {
  animation-delay: -3.3s;
}

.comet-c {
  animation-delay: -5s;
}

@keyframes blinker {
  50% {
    opacity: 0.3;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(-360deg);
  }
}
footer {
  color: #fff;
}
footer img {
  max-width: 100%;
  height: auto;
  display: block;
}
footer p,
footer span,
footer a,
footer div {
  max-width: 100%;
  box-sizing: border-box;
}/*# sourceMappingURL=index.css.map */