body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

html {
  font-family: Roboto;
  width: 100%;
  overflow-x: hidden;
}
html body {
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #08041f;
  background-image: url(/assets/images/bg.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
html body .maskMobile,
html body .maskDesktop,
html body .mask {
  display: inline-block;
  background-color: black;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 50;
}
html body .loader {
  position: fixed;
  z-index: 60;
  width: 120px;
  height: 120px;
  background-color: #e8e8e8;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 5px;
}
html body .loader svg {
  position: absolute;
  top: -25px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  animation: rotation 4s infinite linear;
}
html body .loader .text {
  position: absolute;
  text-align: center;
  top: 85px;
  bottom: 0px;
  margin: auto;
  height: 20px;
  width: 100%;
  color: #000000;
  font-size: 14px;
  left: 0px;
}
html body .popupNote {
  position: fixed;
  z-index: 60;
  width: 500px;
  background-color: #ffffff;
  top: calc(50% - 260px);
  left: calc(50% - 250px);
  border-radius: 3px;
  text-align: center;
  padding: 30px 0px;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  max-height: 400px;
  overflow-y: scroll;
}
html body .popupNote button {
  margin-top: 20px;
  background-color: #3045c1;
  color: #ffffff;
  border-radius: 4px;
  padding: 3px;
  width: 80px;
  cursor: pointer;
}
html body .popupNote .text {
  color: #000000;
  font-size: 16px;
}
html body .popupNote .infos {
  font-size: 16px;
  margin-bottom: 5px;
}
html body .popupNote label {
  color: #3045c1;
}
html body .popupNote .icon {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}
html body .popupNote .title {
  font-size: 16px;
  font-family: "BaiJamjuree";
}
html body .popupNote .singleInput {
  width: calc(100% - 70px);
  margin-top: 13px;
  border: 0px;
  padding: 6px 10px;
  border-bottom: 1px solid #a7a7a7;
  font-size: 15px;
}
html body .popupNote .singleInput:focus {
  outline: 0;
}
html body .popupNote .close {
  position: absolute;
  right: 5px;
  top: 5px;
}
html body .popupNote .removeData {
  margin-left: -32px;
}
html body .popupNote .errorMessage {
  color: red;
  font-size: 12px;
  text-align: left;
  margin: 0px 30px;
  margin-top: 2px;
}
html body .popupNote .submitButton {
  border: 0px;
  padding: 8px;
  width: calc(100% - 70px);
}
html body #app > div {
  position: absolute;
  top: 0px;
  width: 100vw;
  padding-bottom: 248px;
  min-height: calc(100vh - 248px);
}
html body .modal {
  display: none;
  width: 35vw;
  height: 60vw;
  background-image: url(/assets/images/modal-bg.png);
  background-size: 100% 100%;
  position: fixed;
  left: 0px;
  max-width: 350px;
  max-height: 600px;
  right: 0px;
  margin: auto;
  border-radius: 10px;
  z-index: 200;
  text-align: center;
  min-width: 305px;
  min-height: 520px;
  margin-top: 3vw;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (min-width: 769px) {
  .maskMobile {
    display: none !important;
  }
}
@media screen and (max-width: 510px) {
  html body #app > div {
    padding-bottom: 55px;
  }

  html body .popupNote {
    width: 300px;
    left: calc(50% - 150px);
  }
}
@media screen and (max-width: 414px) {
  html body .modal {
    width: 100%;
    max-width: none;
    height: 100vh;
    max-height: none;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    margin-top: 0px;
  }

  html body #app .header .modal .conatiner-modal {
    margin-top: -150px !important;
  }
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: BaiJamjuree;
  src: url(../fonts/BaiJamjuree-Regular.ttf);
}
@keyframes glowingPlayer {
  0% {
    background-color: #040473;
    box-shadow: 0 0 5px #040473;
  }
  50% {
    background-color: #2121ff;
    box-shadow: 0 0 20px #2121ff;
  }
  100% {
    background-color: #040473;
    box-shadow: 0 0 5px #040473;
  }
}
.playerBlink {
  animation: glowingPlayer 1300ms infinite;
}

@keyframes glowingBanker {
  0% {
    background-color: #510c14;
    box-shadow: 0 0 5px #510c14;
  }
  50% {
    background-color: #b10016;
    box-shadow: 0 0 20px #b10016;
  }
  100% {
    background-color: #510c14;
    box-shadow: 0 0 5px #510c14;
  }
}
.bankerBlink {
  animation: glowingBanker 1300ms infinite;
}

@keyframes glowingTie {
  0% {
    background-color: #0b4800;
    box-shadow: 0 0 5px #0b4800;
  }
  50% {
    background-color: #00a21b;
    box-shadow: 0 0 20px #00a21b;
  }
  100% {
    background-color: #0b4800;
    box-shadow: 0 0 5px #0b4800;
  }
}
.tieBlink {
  animation: glowingTie 1300ms infinite;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #16103a;
  border-radius: 14px;
}

::-webkit-scrollbar-thumb {
  background: #2e45c1;
  border-radius: 10px;
}

.landing {
  position: absolute;
  width: 100%;
}
.landing .mainLogo {
  text-align: center;
  width: 100%;
  display: none;
  margin-top: -8vw;
}
.landing .mainLogo img {
  width: 200px;
}
.landing .tayaanBanner {
  text-align: center;
  width: 90%;
  max-width: calc(900px + 12vw);
  margin-left: 50%;
  transform: translate(-50%);
}
.landing .tayaanBanner img.rr-banner {
  width: 35%;
}
.landing .tayaanBanner img.tayaan-banner {
  width: calc(55% - 40px);
  margin-left: 40px;
}
.landing .mainImg {
  width: 100%;
  text-align: center;
  display: flow-root;
}
.landing .mainImg img {
  width: 30%;
  max-width: 700px;
  min-width: 480px;
}
.landing .intro {
  text-align: center;
  width: calc(100% - 100px);
  font-size: 20px;
  max-width: 1000px;
  margin-left: 50%;
  transform: translate(-50%);
}
.landing .intro p {
  color: #ffffff;
}
.landing .howToPlay {
  margin: 4vw 20px;
  border: 1px solid #003aab;
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
  max-width: calc(900px + 12vw);
  margin-left: 50%;
  transform: translate(-50%);
  background-color: #010010;
}
.landing .howToPlay .title {
  font-family: BaiJamjuree;
  color: white;
  font-size: 23px;
  width: 100%;
  text-align: center;
  background-color: #003aab;
  padding: 10px 0px;
}
.landing .howToPlay .steps {
  margin: 10px 46px;
  display: inline-block;
  width: calc(33.3333333333% - 95px);
  vertical-align: top;
  text-align: center;
}
.landing .howToPlay .steps .head {
  font-size: 3.5vw;
  text-transform: uppercase;
  font-family: BaiJamjuree;
  padding: 7px;
  font-weight: bold;
}
.landing .howToPlay .steps .head svg {
  vertical-align: middle;
  height: 25px;
}
.landing .howToPlay .steps .body {
  font-size: 1.5vw;
  padding: 0.5vw 0px 1.5vw 0px;
  color: #c1cfeb;
}
.landing .howToPlay .steps .body a {
  color: #5081df;
}
.landing .howToPlay .step1 .head {
  color: #003aab;
}
.landing .howToPlay .step2 .head {
  color: #c90c0c;
}
.landing .howToPlay .step3 .head {
  color: #c09f4b;
}
.landing .promo {
  width: 90%;
  max-width: calc(900px + 12vw);
  margin-left: 50%;
  transform: translate(-50%);
  background-color: #010010;
  border-radius: 10px;
  overflow: hidden;
  height: 25vw;
  margin-bottom: 4vw;
  border: 1px solid #153178;
  max-height: 300px;
}
.landing .promo .banner {
  display: inline-flex;
  width: 35%;
  background-image: url(/assets/images/promos-banner.png);
  background-size: cover;
  background-position: center bottom;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.landing .promo .banner img {
  width: 24vw;
  height: 7vw;
  max-width: 315px;
  max-height: 100px;
}
.landing .promo .details {
  display: inline-block;
  width: 54%;
  height: 100%;
  vertical-align: top;
}
.landing .promo .details .title {
  color: white;
  font-family: BaiJamjuree;
  font-size: 4vw;
  margin-top: 3vw;
  margin-left: 3vw;
}
.landing .promo .mechanics {
  color: #c1cfeb;
  font-size: 1.5vw;
  margin-left: 3vw;
  margin-top: 2vw;
}
.landing .promo a {
  background-color: #c90c0c;
  color: #ffffff;
  border: 0px;
  margin-left: 3vw;
  margin-top: 2vw;
  font-size: 2vw;
  border-radius: 4px;
  padding: 1vw;
  text-transform: uppercase;
  width: 23vw;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 2vw;
}
.landing .app {
  background-image: url(/assets/images/app-banner.png);
  width: 90%;
  margin-left: 50%;
  transform: translate(-50%);
  max-width: calc(900px + 12vw);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 16vw;
  background-position: center center;
}
.landing .app .text {
  font-family: BaiJamjuree;
  color: white;
  margin-left: 4vw;
  font-size: 3vw;
  margin-top: 2.8vw;
  display: inline-block;
}
.landing .app button {
  background-color: #003398;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  padding: 1vw;
  border: 0px;
  margin-left: 4vw;
  margin-top: 2vw;
  width: 23vw;
  font-size: 1.5vw;
}
.landing .features {
  margin-top: 5vw;
  text-align: center;
  margin-bottom: 5vw;
  width: 90%;
  margin-left: 50%;
  transform: translate(-50%);
}
.landing .features .title {
  font-family: BaiJamjuree;
  color: white;
  font-size: 23px;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.landing .features .list {
  text-align: center;
  font-size: 20px;
  color: white;
  width: calc(33.3333333333% - 4px - 4vw);
  max-width: 300px;
  margin-bottom: 40px;
  display: inline-block;
  margin: 0px 2vw;
  vertical-align: top;
}
.landing .features .list svg {
  height: 100px;
  margin-bottom: 5px;
}
.landing .features .list .text {
  font-size: 1.6vw;
  line-height: 2vw;
}
.landing .signup-banner {
  background-image: url(/assets/images/signup-banner.png);
  width: 100%;
  height: 30vw;
  background-size: 100% 100%;
}
.landing .signup-banner .text-button .text {
  color: white;
  margin-top: 10.5vw;
  text-align: center;
  font-size: 2vw;
  max-width: 900px;
  width: 80%;
  margin-left: 50%;
  transform: translate(-50%);
  display: inline-block;
}
.landing .signup-banner .text-button .button {
  text-align: center;
  margin-top: 1vw;
}
.landing .signup-banner .text-button .button button {
  border: 0px;
  background-color: #c90c0c;
  color: #ffffff;
  padding: 0.7vw;
  width: 25vw;
  border-radius: 3px;
  overflow: hidden;
  font-size: 2vw;
}

@media screen and (min-width: 1200px) {
  .landing .promo .details .title {
    font-size: 48px;
    margin-top: 36px;
  }

  .landing .promo .mechanics {
    font-size: 18px;
    margin-top: 24px;
  }

  .landing .promo a {
    margin-top: 24px;
    width: 276px;
    font-size: 24px;
  }

  .landing .features .list .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 934px) {
  .landing .features .list .text {
    font-size: 14px;
  }
}
/* -------------- min max -------------*/
@media screen and (max-width: 1000px) {
  .landing .comingSoon {
    font-size: 5vw;
  }
}
@media screen and (max-width: 510px) {
  .landing {
    padding-bottom: 220px !important;
  }
  .landing .tayaanBanner {
    transform: none;
    margin: 0px;
    width: 90%;
    margin-left: 5%;
  }
  .landing .tayaanBanner img.rr-banner {
    width: 100%;
  }
  .landing .tayaanBanner img.tayaan-banner {
    width: 100%;
    margin: 0px;
  }
  .landing .intro {
    width: calc(100% - 40px);
    font-size: 15px;
  }
  .landing .mainImg img {
    width: 80%;
    max-width: 700px;
    min-width: 280px;
  }
  .landing .mainLogo {
    display: inline-block;
    margin-top: 20px;
  }
  .landing .comingSoon {
    font-size: 35px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .landing .signup-banner {
    width: calc(100% - 12vw);
    padding: 0px 6vw;
  }
  .landing .signup-banner .logo {
    width: 25vw;
  }
  .landing .signup-banner .logo img {
    width: 23vw;
    vertical-align: middle;
  }
  .landing .signup-banner .text-button {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  .landing .signup-banner .text-button .text {
    margin-top: 10.5vw;
    font-size: 2.9vw;
    max-width: none;
    width: 100%;
    margin-left: 0px;
    transform: initial;
    display: inline-block;
  }
  .landing .signup-banner .text-button .button {
    margin-top: 2vw;
  }
  .landing .signup-banner .text-button .button button {
    padding: 1.5vw;
  }
  .landing .features .list {
    width: 80%;
    max-width: 300px;
    margin-top: 2vw;
    margin-bottom: 2vw;
    margin-left: 50%;
    transform: translate(-50%);
    display: block;
  }
  .landing .features .list .text {
    font-size: 16px;
    line-height: 23px;
  }
  .landing .howToPlay .steps {
    margin: 3vw 20px;
    display: inline-block;
    width: calc(100% - 40px);
    vertical-align: top;
    text-align: center;
  }
  .landing .howToPlay .steps .head {
    font-size: 8vw;
    text-transform: uppercase;
    font-family: BaiJamjuree;
    padding: 0px;
    font-weight: bold;
    display: inline-block;
    width: 15vw;
    vertical-align: middle;
  }
  .landing .howToPlay .steps .body {
    font-size: 3.5vw;
    padding: 1.2vw 0px;
    line-height: 4vw;
    color: #c1cfeb;
    display: inline-block;
    width: 58vw;
    text-align: left;
    vertical-align: top;
    vertical-align: middle;
  }
  .landing .app {
    height: 43vw;
  }
  .landing .app .text {
    margin-left: 9vw;
    font-size: 7vw;
    margin-top: 7vw;
    width: 44vw;
  }
  .landing .app button {
    padding: 3vw;
    margin-left: 9vw;
    margin-top: 4vw;
    width: 36vw;
    font-size: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .landing .promo .details .mechanics {
    font-size: 12px;
  }

  .landing .promo {
    height: auto;
  }
}
@media screen and (max-width: 414px) {
  .landing .modal .back,
.landing .modal .footer {
    display: inline-block;
  }
}
.capitalize {
  text-transform: capitalize;
}

.header {
  height: calc(75px + 6vw);
}
.header .mobile-title {
  display: none;
  color: #ffffff;
  font-size: 5vw;
  font-family: BaiJamjuree;
  text-align: center;
}
.header .head {
  width: 100%;
  height: calc(30px + 6vw);
}
.header .head .nav-left {
  float: left;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header .head .nav-left .logo {
  margin-left: 4vw;
}
.header .head .nav-left .logo img {
  width: 13vw;
  max-width: 300px;
}
.header .head .nav-right {
  float: right;
  margin-right: 4vw;
  margin-top: 30px;
  height: 5vw;
  line-height: 5vw;
}
.header .head .nav-right .account {
  color: #ffffff;
  margin-right: 3vw;
}
.header .head .nav-right .account .id {
  display: inline-block;
  padding-right: 1.5vw;
  line-height: 20px;
  border-right: 1px solid #684678;
}
.header .head .nav-right .account .id span {
  color: #fbd100;
}
.header .head .nav-right .account .balance {
  display: inline-block;
  padding-right: 1.5vw;
  padding-left: 1.5vw;
  line-height: 20px;
  border-right: 1px solid #684678;
}
.header .head .nav-right .account .balance span {
  color: #fbd100;
}
.header .head .nav-right .account .balance svg {
  vertical-align: middle;
  margin-left: 6px;
  cursor: pointer;
}
.header .head .nav-right .account .accountIcon {
  display: inline-block;
  padding-left: 1.5vw;
  line-height: 20px;
  cursor: pointer;
  position: relative;
}
.header .head .nav-right .account .accountIcon .accountInfo {
  border: 1px solid #524f88;
  width: 250px;
  height: 330px;
  background-color: #000000;
  position: absolute;
  right: 0px;
  top: 35px;
  border-radius: 10px;
  padding: 20px;
  cursor: auto;
  z-index: 55;
}
.header .head .nav-right .account .accountIcon .accountInfo hr {
  border-color: #524f88;
}
.header .head .nav-right .account .accountIcon .accountInfo .name {
  color: #ffffff;
  font-family: BaiJamjuree;
  font-size: 22px;
  margin-bottom: 5px;
  padding-left: 5px;
}
.header .head .nav-right .account .accountIcon .accountInfo .mobileNo {
  color: #9dd0ff;
  font-family: BaiJamjuree;
  margin-bottom: 15px;
  padding-left: 5px;
}
.header .head .nav-right .account .accountIcon .accountInfo .balance {
  border-right: 0px;
  padding-left: 5px;
  font-family: BaiJamjuree;
}
.header .head .nav-right .account .accountIcon .accountInfo .balance svg {
  vertical-align: middle;
  margin-left: 5px;
  cursor: pointer;
}
.header .head .nav-right .account .accountIcon .accountInfo ul {
  list-style: none;
  padding: 0px;
  margin-left: 10px;
}
.header .head .nav-right .account .accountIcon .accountInfo ul li {
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.header .head .nav-right .account .accountIcon .accountInfo ul li a {
  color: #ffffff;
  text-decoration: none;
}
.header .head .nav-right .account .accountIcon .accountInfo ul li a svg {
  vertical-align: middle;
  margin-right: 10px;
}
.header .head .nav-right .account .accountIcon .accountInfo .aboutus,
.header .head .nav-right .account .accountIcon .accountInfo .contacts,
.header .head .nav-right .account .accountIcon .accountInfo .termsandconditions,
.header .head .nav-right .account .accountIcon .accountInfo .privacypolicy {
  padding-left: 10px;
  margin-bottom: 5px;
  position: relative;
  font-size: 13px;
  margin-top: 5px;
  cursor: pointer;
}
.header .head .nav-right .account .accountIcon .accountInfo .aboutus a,
.header .head .nav-right .account .accountIcon .accountInfo .contacts a,
.header .head .nav-right .account .accountIcon .accountInfo .termsandconditions a,
.header .head .nav-right .account .accountIcon .accountInfo .privacypolicy a {
  color: #ffffff;
  text-decoration: none;
}
.header .head .nav-right .account .accountIcon .accountInfo .signout {
  color: #e96464;
  padding-left: 10px;
  margin-top: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
}
.header .head .nav-right .account .accountIcon .accountInfo .signout svg {
  vertical-align: middle;
  margin-left: 5px;
}
.header nav {
  background-color: rgba(3, 2, 17, 0.6509803922);
  border-bottom: 2px solid #253a5a;
}
.header nav ul {
  list-style: none;
  display: inline-block;
  margin-left: 4vw;
  padding: 0px;
  margin-right: 4vw;
  width: calc(100% - 8vw);
  margin-top: 0px;
  margin-bottom: 0px;
  height: 47px;
}
.header nav ul li {
  display: inline-block;
  margin-right: 2vw;
  margin-left: 2vw;
  font-size: 14px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.header nav ul li a {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 23px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}
.header nav ul li a svg {
  width: 25px;
  vertical-align: middle;
}
.header nav ul li a svg path {
  fill: #ffffff;
}
.header nav ul li a span {
  vertical-align: middle;
  margin-left: 5px;
}
.header nav ul li.active {
  border-bottom: 3px solid #9dd0ff;
}
.header nav ul li.active a {
  color: #9dd0ff;
}
.header nav ul li.active a svg path {
  fill: #9dd0ff;
}
.header .mobileTitle {
  display: none;
  width: 100%;
  background-color: #14104f;
  color: #ffffff;
  font-family: BaiJamjuree;
  line-height: 24px;
}
.header .mobileTitle .title {
  font-size: 12px;
  display: inline-block;
  padding: 5px 15px;
}
.header .mobileTitle .title span {
  vertical-align: middle;
}
.header .mobileTitle .title svg {
  margin-left: 5px;
  width: 13px;
  vertical-align: middle;
}
.header .mobileTitle .title .amount {
  color: #fbd100;
}
.header .mobileTitle .balance {
  padding: 5px 15px;
  font-size: 15px;
  float: right;
}
.header .mobileTitle .balance .amount {
  color: #fbd100;
}
.header .mobileTitle .balance span {
  vertical-align: middle;
}
.header .mobileTitle .balance svg {
  margin-left: 5px;
  width: 13px;
  vertical-align: middle;
}
.header .mobileTitle .center {
  font-size: 4vw;
  padding: 15px 20px;
  text-align: center;
}
.header .header-logout {
  width: 100%;
  height: 60px;
  position: fixed;
  transition: all 0.5s;
  z-index: 40;
}
.header .header-logout .nav-left {
  float: left;
}
.header .header-logout .nav-left .logo {
  margin-left: 30px;
  margin-top: 30px;
}
.header .header-logout .nav-left .logo img {
  width: 25vw;
  transition: all 0.5s;
  max-width: 300px;
}
.header .header-logout .nav-right {
  float: right;
  margin-right: 30px;
  margin-top: 30px;
  transition: all 0.5s;
}
.header .header-logout .nav-right .menu {
  display: inline-block;
  margin-right: 2vw;
}
.header .header-logout .nav-right .menu ul {
  list-style: none;
  padding-left: 0px;
}
.header .header-logout .nav-right .menu ul li {
  display: inline-block;
  margin: 2px 1vw;
  font-size: 14px;
  position: relative;
  z-index: 100;
}
.header .header-logout .nav-right .menu ul li a {
  color: #ffffff;
  text-decoration: none;
}
.header .header-logout .nav-right .menu ul li.active a {
  color: #fbd100;
}
.header .header-logout .nav-right .menu ul .background-texture {
  position: absolute;
  right: 0px;
  bottom: 26px;
  z-index: 10;
}
.header .header-logout .nav-right .menu ul .mobileNav-footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.header .header-logout .nav-right .menu ul .mobileNav-footer .copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}
.header .header-logout .nav-right .menu ul .mobileNav-footer .copyright p {
  margin: 5px 0px;
}
.header .header-logout .nav-right .burger {
  display: none;
  margin-left: 15px;
  margin-top: 0px;
  cursor: pointer;
}
.header .header-logout .nav-right .burger svg {
  vertical-align: middle;
  margin-top: -1px;
  display: inline-block;
}
.header .header-logout .nav-right .burger span {
  vertical-align: middle;
  color: #ffffff;
}
.header .header-logout .nav-right button {
  color: white;
  border: 0px;
  margin: 8px 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  width: 10.5vw;
  max-width: 90px;
  cursor: pointer;
}
.header .header-logout .nav-right .gameLogout {
  color: #ffffff;
  list-style: none;
  float: right;
  padding: 0px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 24px;
  display: none;
}
.header .header-logout .nav-right .gameLogout li {
  display: inline-block;
  margin: 0px 15px;
  cursor: pointer;
}
.header .header-logout .nav-right .gameLogout li a {
  color: #ffffff;
  text-decoration: none;
}
.header .header-logout .nav-right .buttons {
  display: inline-block;
}
.header .header-logout .nav-right .buttons .login {
  background-color: #003aab;
}
.header .header-logout .nav-right .buttons .register {
  background-color: #c90c0c;
}
.header .header-logout .nav-right ul {
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.header .modal .back {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  color: white;
  margin-top: 10px;
  margin-left: 10px;
}
.header .modal .back svg {
  vertical-align: middle;
}
.header .modal .back span {
  vertical-align: middle;
  margin-left: 5px;
}
.header .modal .conatiner-modal {
  width: 100%;
  margin-top: 0px;
}
.header .modal .conatiner-modal .logo {
  width: 80%;
  margin-top: 3.5vw;
}
.header .modal .conatiner-modal .title {
  font-family: BaiJamjuree;
  color: #ecc564;
  font-size: 18px;
  margin-top: 10px;
  padding: 0px 30px;
}
.header .modal .conatiner-modal .form {
  margin-top: 10px;
}
.header .modal .conatiner-modal .form input {
  width: 70%;
  margin-top: 10px;
  height: 35px;
  border-radius: 3px;
  border: 0px;
  padding-left: 20px;
}
.header .modal .conatiner-modal .form input:focus {
  outline: 0;
}
.header .modal .conatiner-modal .form .mobilenumber::-webkit-outer-spin-button,
.header .modal .conatiner-modal .form .mobilenumber::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.header .modal .conatiner-modal .form .mobilenumber[type=number] {
  -moz-appearance: textfield;
}
.header .modal .conatiner-modal .form .error {
  color: #c90c0c;
  text-shadow: 0px 0px 20px white;
  margin-top: 9px;
  font-size: 13px;
}
.header .modal .conatiner-modal .form .login {
  width: 76%;
  margin-top: 15px;
  height: 35px;
  border-radius: 3px;
  border: 0px;
  background-color: #2a3bd9;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
.header .modal .conatiner-modal .form .register {
  width: 76%;
  margin-top: 15px;
  height: 35px;
  border-radius: 3px;
  border: 0px;
  background-color: #c90c0c;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
.header .modal .conatiner-modal .form .forgotPassword {
  color: #ffffff;
  font-size: 12px;
  margin-top: 10px;
}
.header .modal .conatiner-modal .form .forgotPassword a {
  color: #ffffff;
}
.header .modal .conatiner-modal .form .or {
  color: #ffffff;
  font-size: 25px;
  margin-top: 10px;
}
.header .modal .conatiner-modal .form .agree {
  color: #ffffff;
  font-size: 12px;
  margin-top: 14px;
}
.header .modal .conatiner-modal .form .agree span {
  vertical-align: middle;
}
.header .modal .conatiner-modal .form .agree span a {
  color: #ffffff;
}
.header .modal .conatiner-modal .form .agree svg {
  vertical-align: middle;
  cursor: pointer;
}
.header .modal .loading svg,
.header .modal .loading img {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
}
.header .modal .loading svg {
  animation: rotation 4s infinite linear;
}
.header .modal .loading .text {
  position: absolute;
  text-align: center;
  top: 200px;
  bottom: 0px;
  margin: auto;
  height: 20px;
  width: 100%;
  color: #ecc564;
  text-transform: uppercase;
  font-size: 14px;
  left: 0px;
}
.header .modal .footer {
  position: absolute;
  bottom: 3px;
  color: #a098ce;
  line-height: 3px;
  font-size: 10px;
  display: none;
}

@media screen and (min-width: 509px) {
  .header-logout .nav-right .menu ul .logo {
    display: none !important;
  }
  .header-logout .nav-right .menu ul .formobile {
    display: none !important;
  }
}
@media screen and (max-width: 700px) {
  .header .header-logout .nav-right {
    margin-right: 10px;
    margin-top: 20px;
  }
  .header .header-logout .nav-right .menu {
    margin-right: 0px;
  }
  .header .header-logout .nav-right .menu ul li {
    font-size: 13px;
    margin: 2px 0.7vw;
  }
  .header .header-logout .nav-left .logo {
    margin-left: 10px;
  }
}
@media screen and (max-width: 510px) {
  .header {
    height: 35px;
  }
  .header .head,
.header nav {
    display: none;
  }
  .header .mobile-title {
    display: inline-block;
    width: 100%;
    margin-top: 50px;
  }
  .header .mobileTitle {
    display: inline-block;
    position: fixed;
    z-index: 60;
  }
  .header .header-logout .nav-left {
    display: none;
  }
  .header .header-logout .nav-right {
    width: 100%;
    margin: 0px;
  }
  .header .header-logout .nav-right .buttons {
    float: right;
    margin-right: 15px;
    line-height: 53px;
  }
  .header .header-logout .nav-right .buttons button {
    margin: 8px;
    padding: 7px;
    width: 75px;
  }
  .header .header-logout .nav-right .menu ul {
    position: absolute;
    top: 0px;
    left: -75%;
    width: 75%;
    overflow: hidden;
    background: #003aab;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #003aab 0%, #8a1818 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #003aab 0%, #8a1818 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #003aab 0%, #8a1818 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#003aab", endColorstr="#8a1818", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    margin: 0px;
    height: 100vh;
    z-index: 150;
    border-right: 1px solid #414141;
  }
  .header .header-logout .nav-right .menu ul li {
    display: block;
    padding: 10px 20px;
  }
  .header .header-logout .nav-right .menu ul .logo {
    margin-top: 20px;
    text-align: center;
  }
  .header .header-logout .nav-right .menu ul .logo img {
    width: 110px;
  }
  .header .header-logout .nav-right .menu ul .logo svg {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transform: scale(1.5);
  }
  .header .header-logout .nav-right .menu .burger {
    line-height: 51px;
    display: inline-block;
  }
  .header .header-logout .nav-right .gameLogout {
    display: inline-block;
  }
}
@media screen and (max-width: 467px) {
  .header .mobileTitle .balance {
    font-size: 14px;
  }
}
@media screen and (min-width: 1065px) {
  .header nav ul li {
    font-size: 16px;
  }
}
.live {
  position: absolute;
  width: 100%;
}
.live .ticketLogo {
  right: 30px;
  top: auto;
  bottom: 10px;
  left: auto;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 1000;
  display: none;
  background-color: #2b3aa8;
  padding: 9px;
  border-radius: 100px;
}
.live .ticketLogo svg {
  cursor: pointer;
}
.live .ticketLogo .count {
  right: -10px;
  top: -10px;
  bottom: auto;
  left: auto;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #fe2c2c;
  color: #ffffff;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  margin: 10px 10px 0px 0px;
}
.live .ticketLogo .ticket-label {
  display: none;
}
.live .ticketLogo span svg {
  width: 20px;
  height: 26px;
}
.live .container {
  width: 100%;
  max-width: 1558px;
  transform: translate(-50%);
  margin: 0px auto 0px 50%;
  border-radius: 10px;
  color: #ffffff;
}
.live .container .video {
  width: calc(100% - 402px - 24px - 24px - 24px);
  display: inline-block;
  margin: 24px;
}
.live .container .video .iframe {
  align-items: center;
  justify-content: center;
  height: 38vw;
  max-height: 617px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  display: inline-flex;
  width: 100%;
  background-color: #000000;
}
.live .container .video .iframe img {
  width: 100%;
}
.live .container .video .iframe .less-bal-to-watch {
  text-align: center;
}
.live .container .video .iframe .less-bal-to-watch a {
  color: #fbd100;
  font-size: 18px;
}
.live .container .video .loaderGame {
  margin: 20px auto auto auto;
  height: calc(100vh - 400px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.live .container .video .loaderGame svg {
  animation: rotation 2s infinite linear;
}
.live .container .video .raceInfo {
  margin: 5px auto auto auto;
  border-radius: 0px;
}
.live .container .video .raceInfo .head {
  display: flex;
}
.live .container .video .raceInfo .head div {
  flex: 1;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
}
.live .container .video .raceInfo .head .active {
  border-left: 1px solid #3045c1;
  border-right: 1px solid #3045c1;
  border-top: 1px solid #3045c1;
  background-color: rgba(0, 0, 0, 0.4784313725);
  color: #ffffff;
}
.live .container .video .raceInfo .head .short {
  display: none;
}
.live .container .video .raceInfo .noRace {
  text-align: center;
  padding: 30px;
}
.live .container .video .raceInfo .body {
  border: 1px solid #3045c1;
  background-color: rgba(0, 0, 0, 0.4784313725);
  padding: 0px 15px;
  margin-top: -1px;
}
.live .container .video .raceInfo .body .eventName {
  padding: 10px 0px;
}
.live .container .video .raceInfo .body .eventName .name {
  font-size: 15px;
  text-transform: uppercase;
}
.live .container .video .raceInfo .body .eventName .area {
  font-size: 11px;
  color: #a4a4a4;
  margin: 5px auto auto auto;
}
.live .container .video .raceInfo .body .top {
  margin: 0px 0px;
  padding-top: 5px;
}
.live .container .video .raceInfo .body .top .raceLabelContainer {
  display: inline-block;
  max-width: calc(100% - 80px);
}
.live .container .video .raceInfo .body .top .raceLabelContainer .raceLabel {
  display: inline-block;
  background-color: #e70529;
  padding: 6px 17px;
  font-size: 14px;
  margin-top: 2px;
}
.live .container .video .raceInfo .body .top .raceLabelContainer .raceLabel.multiple {
  background-color: transparent;
  border: 1px solid #e70529;
  cursor: pointer;
  margin-right: 3px;
}
.live .container .video .raceInfo .body .top .raceLabelContainer .raceLabel.active {
  background-color: #e70529;
  border: 1px solid #e70529;
}
.live .container .video .raceInfo .body .top .raceResult {
  float: right;
  margin-top: 4px;
}
.live .container .video .raceInfo .body .top .raceResult span {
  background-color: #fbd100;
  color: black;
  font-size: 12px;
  padding: 4px 7px;
  margin-left: 4px;
  border-radius: 10px;
}
.live .container .video .raceInfo .body .top .allPlacement {
  float: right;
  display: flex;
  margin-right: 15px;
  margin-top: 2px;
}
.live .container .video .raceInfo .body .top .allPlacement .all {
  color: white;
  border: 2px solid #e70529;
  height: 17px;
  width: 30px;
  margin-left: 10px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(155, 155, 155, 0.1098039216);
  cursor: pointer;
}
.live .container .video .raceInfo .body .top .status {
  float: right;
  background-color: #e70529;
  color: #ffffff;
  padding: 4px 13px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 2px;
}
.live .container .video .raceInfo .body .raceNo {
  margin: 0px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 7px;
  padding-top: 7px;
  border-bottom: 1px solid #c82122;
  border-top: 1px solid #e70529;
  white-space: nowrap;
}
.live .container .video .raceInfo .body .raceNo div {
  padding: 3px 12px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 0px;
  white-space: nowrap;
  display: inline-block;
  min-width: 40px;
  text-align: center;
}
.live .container .video .raceInfo .body .raceNo .active {
  background-color: #3045c1;
}
.live .container .video .raceInfo .body .raceNo::-webkit-scrollbar {
  height: 12px !important;
}
.live .container .video .raceInfo .body .raceNo::-webkit-scrollbar-track {
  background-color: #e6e6e6;
  border-radius: 0px !important;
  border: solid 3px #e6e6e6;
}
.live .container .video .raceInfo .body .raceNo::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  box-shadow: inset 0 0 10px 10px #3045c1;
  border: solid 2px #e6e6e6;
}
.live .container .video .raceInfo .body .horseList {
  width: 100%;
  margin: 0px;
  margin-top: 5px;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid rgba(41, 41, 41, 0.631372549);
}
.live .container .video .raceInfo .body .horseList .horseDetails {
  display: flex;
  border-bottom: 1px solid rgba(41, 41, 41, 0.631372549);
}
.live .container .video .raceInfo .body .horseList .horseDetails.scratched {
  background: #282828;
  opacity: 0.5;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseNumber {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseNumber span {
  background-color: #3045c1;
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseRunner {
  flex: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseRunner .horseName {
  color: white;
  font-size: 16px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseRunner .jockeyName {
  color: #a0afe3;
  font-size: 12px;
  margin-bottom: 3px;
  margin-top: 3px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseRunner .trainerName {
  color: #a0afe3;
  font-size: 12px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet .placement {
  color: white;
  border: 2px solid #e70529;
  height: 35px;
  width: 30px;
  margin-left: 10px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(155, 155, 155, 0.1098039216);
  cursor: pointer;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet .placement.active {
  background-color: #e70529;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet .scratchedPlacement {
  border: 2px solid #898989;
  width: 70px;
  cursor: auto;
}
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet .winPlacement {
  border: 2px solid #fbd101;
  color: #fbd101;
  width: 70px;
  cursor: auto;
}
.live .container .video .placeBet {
  background-color: #3045c1;
  padding: 8px;
}
.live .container .video .placeBet .indicateBet {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}
.live .container .video .placeBet .indicateBet::-webkit-scrollbar {
  height: 12px !important;
}
.live .container .video .placeBet .indicateBet::-webkit-scrollbar-track {
  background-color: #e6e6e6;
  border-radius: 0px !important;
  border: solid 3px #e6e6e6;
}
.live .container .video .placeBet .indicateBet::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  box-shadow: inset 0 0 10px 10px #3045c1;
  border: solid 2px #e6e6e6;
}
.live .container .video .placeBet .indicateBet .indicatePlace {
  background-color: #ed0022;
  border-radius: 3px;
  margin: 0px;
  display: flex;
  font-size: 13px;
  border: 2px solid #ed0022;
}
.live .container .video .placeBet .indicateBet .indicatePlace .places {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 7px;
  white-space: nowrap;
}
.live .container .video .placeBet .indicateBet .indicatePlace .placeList {
  background-color: white;
  color: black;
  margin: auto auto auto 8px;
  min-width: 18px;
  padding: 2px 5px;
  height: 20px;
  vertical-align: top;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.live .container .video .placeBet .bettingAction {
  border-top: 1px solid #182eaf;
  margin-top: 5px;
  padding-top: 5px;
}
.live .container .video .placeBet .bettingAction input {
  padding: 3px 6px;
  width: 50px;
  font-size: 13px;
}
.live .container .video .placeBet .bettingAction button {
  background-color: #e9c404;
  color: #000000;
  padding: 7px 15px;
  border-radius: 3px;
  border: 1px solid #bba42c;
  font-size: 12px;
  cursor: pointer;
  margin: auto 0px auto 5px;
  vertical-align: top;
}
.live .container .video .placeBet .bettingAction button.disabled {
  background-color: #aaaaaa;
  border: 1px solid #000000;
}
.live .container .betting {
  display: inline-block;
  vertical-align: top;
  width: 402px;
  margin: 24px 24px 24px -4px;
}
.live .container .betting .betTicket {
  height: 100%;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4784313725);
  overflow: hidden;
}
.live .container .betting .betTicket .headerTicket {
  height: 40px;
  background-color: #2e45c1;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live .container .betting .betTicket .headerTicket .clearbet {
  position: absolute;
  left: 10px;
  background-color: #c82122;
  border: 1px solid #b92929;
  color: #ffffff;
  border-radius: 4px;
  padding: 2px 12px;
  cursor: pointer;
}
.live .container .betting .betTicket .headerTicket span {
  vertical-align: middle;
  font-size: 18px;
}
.live .container .betting .betTicket .headerTicket svg {
  vertical-align: middle;
}
.live .container .betting .betTicket .headerTicket .close {
  position: absolute;
  right: 10px;
}
.live .container .betting .betTicket .placebet {
  background-color: #edeff9;
  color: #797979;
  margin: 15px;
  padding: 30px 10px;
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
}
.live .container .betting .betTicket .headLabel {
  margin: 8px 15px 8px 15px;
  font-size: 16px;
  line-height: 28px;
  display: flex;
}
.live .container .betting .betTicket .headLabel .type {
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  display: flex;
  width: 20%;
  text-align: center;
  font-size: 20px;
  flex: 1;
}
.live .container .betting .betTicket .headLabel .raceNo {
  color: #ffffff;
  background-color: #e70529;
  float: right;
  padding: 1px 14px;
  border-radius: 4px;
}
.live .container .betting .betTicket .betContainer {
  overflow: auto;
  max-height: 877px;
}
.live .container .betting .betTicket .betContainer .bets {
  padding: 7px;
  margin: 3px;
  background-color: #edeff9;
  border-bottom: 1px solid #1d4add;
}
.live .container .betting .betTicket .betContainer .bets .betHead {
  display: flex;
  align-items: center;
}
.live .container .betting .betTicket .betContainer .bets .betHead .raceNo {
  display: inline-block;
  background-color: #e70529;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 13px;
}
.live .container .betting .betTicket .betContainer .bets .betHead .raceType {
  color: #2e45c1;
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  flex: 1;
  text-align: right;
  margin-right: 15px;
}
.live .container .betting .betTicket .betContainer .bets .betHead .raceType .small {
  font-size: 12px;
}
.live .container .betting .betTicket .betContainer .bets .betHead .raceType span {
  vertical-align: middle;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails {
  padding: 7px 5px;
  border-top: 1px solid #d4d5d8;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .number {
  align-items: center;
  justify-content: center;
  background-color: #1d4add;
  display: inline-flex;
  margin: auto 5px auto 0px;
  width: 20px;
  text-align: center;
  border-radius: 20px;
  height: 20px;
  font-size: 14px;
  padding: 3px;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 35px);
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .horse {
  font-size: 15px;
  color: #000000;
  display: block;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .people {
  font-size: 12px;
  color: #000000;
  display: flex;
  width: 100%;
  gap: 10px;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .jockey,
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .trainer {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .jockey span,
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info .trainer span {
  color: #1d4add;
}
.live .container .betting .betTicket .betContainer .bets .horseList .horseDetails:first-child {
  border: 0px;
}
.live .container .betting .betTicket .betContainer .bets .betFoot {
  display: flex;
  margin-top: 11px;
}
.live .container .betting .betTicket .betContainer .bets .betFoot .close {
  cursor: pointer;
  color: #1d4add;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live .container .betting .betTicket .betContainer .bets .betFoot .bet {
  text-align: right;
  color: #000000;
  display: inline-block;
  flex: 1;
  font-size: 12px;
}
.live .container .betting .betTicket .betContainer .bets .betFoot .bet input {
  width: 55px;
  margin: auto auto auto 5px;
  height: 17px;
  text-align: right;
  padding-right: 5px;
  font-size: 15px;
}
.live .container .betting .betTicket .foot {
  background-color: #3045c1;
  width: 100%;
  display: flex;
  height: 40px;
  font-size: 13px;
}
.live .container .betting .betTicket .foot .item {
  display: flex;
  align-items: center;
  padding-right: 10px;
  border-right: 1px solid #edeff9;
  margin: 7px auto 7px 15px;
}
.live .container .betting .betTicket .foot .totalAmount {
  display: flex;
  flex: 1;
  align-items: center;
  margin: auto auto auto 15px;
}
.live .container .betting .betTicket .foot .submit {
  align-items: center;
  justify-content: flex-end;
  display: flex;
  margin: auto 15px auto auto;
  width: 90px;
}
.live .container .betting .betTicket .foot .submit button {
  width: 85px;
  height: 25px;
  background-color: #e9c404;
  border: 1px solid #bba42c;
  border-radius: 4px;
  cursor: pointer;
}
.live .container .betting .betTicket .foot .submit button.disabled {
  background-color: #aaaaaa;
  border: 1px solid #000000;
}

.betInfo {
  font-size: 14px;
  border-bottom: 1px solid black;
  margin: 0px 10px;
  margin: auto auto 15px auto;
  padding-bottom: 10px;
}
.betInfo label.betList {
  display: block;
  font-size: 13px;
  margin: 4px auto auto auto;
}

.betInfo.last {
  margin: auto auto 0px auto;
  border: 0px;
  padding-bottom: 0px;
}

@media screen and (max-width: 1130px) {
  .live .container .video {
    width: 656px;
  }
  .live .container .betting {
    width: calc(100% - 656px - 72px);
  }
}
@media screen and (max-width: 1065px) {
  .live .container .video .raceInfo .body .placeBet .submitButton {
    font-size: 12px;
  }
}
@media screen and (max-width: 1015px) {
  .live .ticketLogo {
    display: inline-flex;
  }
  .live .container {
    transform: none;
    margin-left: 0px;
  }
  .live .container .video {
    width: calc(100% - 40px);
    margin: 10px 20px;
  }
  .live .container .video .iframe {
    height: 55vw;
  }
  .live .container .video .raceInfo .body .placeBet .submitButton button {
    font-size: 16px;
  }
  .live .container .betting {
    position: fixed;
    top: 0px;
    right: 0px;
    margin: 0px;
    z-index: 1001;
    background-color: white;
    height: 100vh;
    overflow: hidden;
    width: 402px;
  }
  .live .container .betting .betTicket {
    border-radius: 0px;
  }
  .live .container .betting .betTicket .betContainer {
    max-height: auto;
    height: calc(100% - 75px);
  }
  .live .container .betting .betTicket .placebet {
    background-color: transparent;
  }
  .live .container .betting .betTicket .placebet .ticketIcon {
    margin-top: 50px;
  }
  .live .container .betting .betTicket .placebet .ticketIcon svg {
    width: 150px;
    height: 170px;
  }
  .live .container .betting .betTicket .placebet .ticketIcon svg g {
    fill: #c3c3c3;
  }
  .live .container .betting .betTicket .placebet .ticketNote {
    color: #c3c3c3;
  }
}
@media screen and (max-width: 660px) {
  .live .container .video .raceInfo .head .long {
    display: none;
  }
  .live .container .video .raceInfo .head .short {
    display: inline-block;
    font-size: 14px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseNumber {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
  }
}
@media screen and (max-width: 510px) {
  html body #app .live.withPlace {
    padding-bottom: 100px;
  }

  html body #app .live.withPlace2 {
    padding-bottom: 145px;
  }

  .live .ticketLogo {
    right: 10px;
    top: 0px;
    bottom: auto;
    left: auto;
    position: fixed;
    width: 90px;
    height: 18px;
    background-color: transparent;
    border-radius: 0px;
    color: white;
    font-size: 12px;
    padding: 9px 0px;
  }
  .live .ticketLogo span svg {
    width: 15px;
    height: 19px;
  }
  .live .ticketLogo .count {
    right: 0px;
    top: -13px;
    bottom: auto;
    left: auto;
    position: absolute;
    width: 15px;
    height: 15px;
    margin: 15px auto auto auto;
    font-size: 11px;
  }
  .live .ticketLogo .ticket-label {
    display: inline-flex;
    margin-right: 5px;
  }
  .live .container {
    margin-bottom: 0px;
  }
  .live .container .betting {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  .live .container .betting .betTicket .betContainer .bets .horseList .horseDetails .info {
    width: calc(100% - 40px);
  }
  .live .container .video {
    width: 100%;
    margin: 0px 0px -5px 0px;
  }
  .live .container .video .raceInfo {
    margin-top: 0px;
    border-radius: 0px;
  }
  .live .container .video .raceInfo .head {
    display: flex;
    position: sticky;
    top: 35px;
    background-color: black;
    z-index: 50;
    margin-bottom: 0px;
  }
  .live .container .video .raceInfo .head div {
    border-bottom: 3px solid #000000;
    padding: 5px;
  }
  .live .container .video .raceInfo .head .active {
    border: 0px;
    border-bottom: 3px solid #fbd100;
    color: #fbd100;
  }
  .live .container .video .raceInfo .body {
    border: 0px;
    padding: 0px;
  }
  .live .container .video .raceInfo .body .raceNo {
    display: flex;
    position: sticky;
    top: 67px;
    background-color: black;
    z-index: 50;
    margin: 0px;
    white-space: nowrap;
    overflow-x: scroll;
    width: calc(100vw - 10px);
    text-align: left;
    padding: 5px;
  }
  .live .container .video .raceInfo .body .raceNo div {
    font-size: 12px;
    border-radius: 14px;
    padding: 3px 13px;
    border: 1px solid #3045c1;
    width: auto;
    display: inline-block;
    text-align: center;
    min-width: auto;
  }
  .live .container .video .raceInfo .body .raceNo::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
  }
  .live .container .video .raceInfo .body .raceNo::-webkit-scrollbar-track {
    background-color: transparent !important;
    border-radius: 0px !important;
  }
  .live .container .video .raceInfo .body .raceNo::-webkit-scrollbar-thumb {
    background: transparent !important;
    border-radius: 0px !important;
  }
  .live .container .video .raceInfo .body .top {
    display: inline-block;
    width: calc(100% - 5px);
    margin: 0px 0px 0px 5px;
  }
  .live .container .video .raceInfo .body .top .status {
    font-size: 12px;
  }
  .live .container .video .raceInfo .body .top .raceLabelContainer .raceLabel {
    padding: 4px 9px;
    font-size: 12px;
  }
  .live .container .video .raceInfo .body .top .lastCall {
    margin: 2px 7px auto auto;
    font-size: 14px;
  }
  .live .container .video .raceInfo .body .top .allPlacement {
    margin-right: 5px;
  }
  .live .container .video .raceInfo .body .top .allPlacement .all {
    border-width: 1px;
    font-size: 11px;
    margin-left: 5px;
    width: 27px;
    padding: 3px 5px;
  }
  .live .container .video .raceInfo .body .eventName {
    padding: 10px 6px;
  }
  .live .container .video .raceInfo .body .eventName .name {
    font-size: 13px;
  }
  .live .container .video .raceInfo .body .eventName .area {
    font-size: 10px;
    margin-top: 3px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseNumber {
    margin-right: 5px;
    display: inline-flex;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseRunner {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseRunner .horseName {
    color: white;
    font-size: 14px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseRunner .jockeyName {
    color: #a0afe3;
    font-size: 12px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseBet {
    margin-right: 5px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseBet .placement {
    height: 35px;
    width: 27px;
    margin-left: 5px;
    padding: 0px 5px;
    font-size: 12px;
    border-width: 1px;
  }
  .live .container .video .raceInfo .body .horseList .horseDetails .horseBet .scratchedPlacement,
.live .container .video .raceInfo .body .horseList .horseDetails .horseBet .winPlacement {
    width: 60px;
  }
  .live .container .video .raceInfo .body .long .horseDetails {
    display: block;
  }
  .live .container .video .raceInfo .body .long .horseDetails .horseNumber {
    margin-left: 10px;
    margin-right: 0px;
    vertical-align: top;
    margin-top: 15px;
  }
  .live .container .video .raceInfo .body .long .horseDetails .horseRunner {
    display: inline-block;
    width: calc(100% - 55px);
  }
  .live .container .video .raceInfo .body .long .horseDetails .horseBet {
    justify-content: right;
    margin-bottom: 5px;
  }
  .live .container .video .placeBet {
    position: fixed;
    bottom: 53px;
    padding: 8px;
    width: calc(100% - 16px);
  }
  .live .container .video .placeBet .indicateBet::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
  }
  .live .container .video .placeBet .indicateBet::-webkit-scrollbar-track {
    background-color: transparent !important;
    border-radius: 0px !important;
  }
  .live .container .video .placeBet .indicateBet::-webkit-scrollbar-thumb {
    background: transparent !important;
    border-radius: 0px !important;
  }
  .live .container .video .placeBet .bettingAction button {
    padding: 5px 10px;
  }

  ::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
  }

  ::-webkit-scrollbar-track {
    background-color: transparent !important;
    border-radius: 0px !important;
  }

  ::-webkit-scrollbar-thumb {
    background: transparent !important;
    border-radius: 0px !important;
  }
}
.payment {
  position: absolute;
  width: 100%;
}
.payment .container {
  width: calc(90% - 60px);
  max-width: 993px;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.5215686275);
  color: #ffffff;
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.38);
  border-radius: 0.125rem;
}
.payment .container .paymentType {
  margin: 0px;
  list-style: none;
  width: 100%;
  padding: 0px;
  border-bottom: 1px solid #545454;
  display: flex;
}
.payment .container .paymentType li {
  display: inline-block;
  flex: 1;
  padding: 18px 0px;
  margin-left: -1px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  text-align: center;
}
.payment .container .paymentType li.active {
  color: #fbd100;
  border-bottom: 2px solid #fbd100;
}
.payment .container .depositContainer {
  width: calc(100% - 72px);
  padding: 23px 36px;
}
.payment .container .depositContainer .header {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
  height: auto;
}
.payment .container .depositContainer .accountToDeposit {
  display: none;
}
.payment .container .depositContainer table {
  margin-top: 24px;
  width: 100%;
  border-collapse: collapse;
}
.payment .container .depositContainer table thead tr th {
  font-size: 12px;
  color: #ffffff;
  text-align: left;
}
.payment .container .depositContainer table thead tr th:first-child {
  width: 247px;
}
.payment .container .depositContainer table tbody tr {
  padding: 15px 0px;
  height: 70px;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.payment .container .depositContainer table tbody tr td {
  font-size: 14px;
  color: #d1d1d1;
  vertical-align: middle;
}
.payment .container .depositContainer table tbody tr td img {
  width: 40px;
  margin-right: 16px;
  vertical-align: middle;
  background-color: white;
}
.payment .container .depositContainer table tbody tr td:first-child {
  width: 247px;
}
.payment .container .depositContainer table tbody tr td:last-child {
  text-align: right;
  padding-right: 10px;
}
.payment .container .depositContainer .note {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 30px;
  color: #ed0022;
  line-height: 15px;
}
.payment .container .depositContainer .quickAmount label {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  text-align: left;
  width: 120px;
}
.payment .container .depositContainer .quickAmount .valueList {
  margin: 5px 0px;
  display: flex;
  gap: 15px;
}
.payment .container .depositContainer .quickAmount .valueList div {
  border: 1px solid white;
  flex: 1;
  text-align: center;
  padding: 11px 0px;
  cursor: pointer;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.payment .container .depositContainer .quickAmount .valueList div.active {
  color: #fbd100;
  border-color: #fbd100;
}
.payment .container .depositContainer .infos {
  margin-top: 20px;
}
.payment .container .depositContainer .infos label {
  color: #d4d4d4;
  font-size: 14px;
  display: inline-block;
  text-align: right;
  width: 120px;
}
.payment .container .depositContainer .infos .info {
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto";
  display: inline-block;
  margin-left: 20px;
  width: calc(100% - 180px);
}
.payment .container .depositContainer .infos .info input {
  padding: 10px;
  max-width: 400px;
  width: 100%;
  border: 1px solid #b1b1b1;
  border-radius: 2px;
}
.payment .container .depositContainer .infos .info input.error,
.payment .container .depositContainer .infos .info input.error:focus {
  border-color: #ff424f;
  outline: #ff424f;
}
.payment .container .depositContainer .infos .info button {
  height: 40px;
  padding: 0px 20px;
  background-color: #3045c1;
  color: #ffffff;
  border: 0px;
  border-radius: 2px;
  cursor: pointer;
}
.payment .container .depositContainer .infos .info button:focus {
  outline: 0;
}
.payment .container .depositContainer .infos .info button.disabled {
  background-color: #45485a;
  cursor: not-allowed;
}
.payment .container .depositContainer .infos .errorNote {
  padding-left: 143px;
  margin-top: 4px;
  font-size: 12px;
  color: #ed0022;
  max-width: 400px;
}
.payment .container .withdrawContainer {
  width: calc(100% - 72px);
  padding: 23px 36px;
}
.payment .container .withdrawContainer .header {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
  height: auto;
}
.payment .container .withdrawContainer .withdrawOptionList {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 15px;
}
.payment .container .withdrawContainer .withdrawOptionList .option {
  display: inline-block;
  background-color: white;
  border-radius: 3px;
  border: 3px solid #565656;
  cursor: pointer;
  flex: 1;
  padding: 5px;
  max-width: 90px;
}
.payment .container .withdrawContainer .withdrawOptionList .option img {
  width: 100%;
}
.payment .container .withdrawContainer .withdrawOptionList .option.active {
  border-color: #fbd100;
}
.payment .container .withdrawContainer .quickAmount label {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  text-align: left;
  width: 120px;
}
.payment .container .withdrawContainer .quickAmount .valueList {
  margin: 5px 0px;
  display: flex;
  gap: 15px;
}
.payment .container .withdrawContainer .quickAmount .valueList div {
  border: 1px solid white;
  flex: 1;
  text-align: center;
  padding: 11px 0px;
  cursor: pointer;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.payment .container .withdrawContainer .quickAmount .valueList div.active {
  color: #fbd100;
  border-color: #fbd100;
}
.payment .container .withdrawContainer .infos {
  margin-top: 25px;
}
.payment .container .withdrawContainer .infos label {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  text-align: right;
  width: 120px;
}
.payment .container .withdrawContainer .infos .info {
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto";
  display: inline-block;
  margin-left: 20px;
  width: calc(100% - 180px);
}
.payment .container .withdrawContainer .infos .info input {
  padding: 10px;
  max-width: 400px;
  width: 100%;
  border: 1px solid #b1b1b1;
  border-radius: 2px;
}
.payment .container .withdrawContainer .infos .info input.error,
.payment .container .withdrawContainer .infos .info input.error:focus {
  border-color: #ff424f;
  outline: #ff424f;
}
.payment .container .withdrawContainer .infos .info button {
  height: 40px;
  padding: 0px 20px;
  background-color: #3045c1;
  color: #ffffff;
  border: 0px;
  border-radius: 2px;
  cursor: pointer;
}
.payment .container .withdrawContainer .infos .info button:focus {
  outline: 0;
}
.payment .container .withdrawContainer .infos .info button.disabled {
  background-color: #45485a;
  cursor: not-allowed;
}
.payment .container .withdrawContainer .infos .errorNote {
  padding-left: 143px;
  margin-top: 4px;
  font-size: 12px;
  color: #ff0012;
  max-width: 400px;
}

@media screen and (max-width: 1015px) {
  .payment .container {
    width: calc(100% - 25px);
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    transform: unset;
  }
}
@media screen and (max-width: 740px) {
  .payment .container .depositContainer .quickAmount .valueList,
.payment .container .withdrawContainer .quickAmount .valueList {
    display: grid;
    gap: 15px;
    grid-template-columns: calc(25% - 11px) calc(25% - 11px) calc(25% - 11px) calc(25% - 11px);
  }

  .payment .container .transactionContainer .transactionList .list .forRight .balance {
    padding-right: 0px;
  }

  .payment .container .transactionContainer .transactionList .list .forRight .status {
    margin-left: 5px;
  }

  .payment .container .transactionContainer .transactionList .list .transactionInfo {
    width: calc(100% - 305px);
  }
}
@media screen and (max-width: 600px) {
  .payment .container {
    width: calc(100% - 30px);
    padding: 5px;
  }
}
@media screen and (max-width: 550px) {
  .payment .container .transactionContainer .filter {
    background-color: #ededed;
    padding: 5px;
    display: flex;
    gap: 5px;
  }
  .payment .container .transactionContainer .filter .label {
    display: none;
  }
  .payment .container .transactionContainer .filter .select {
    flex: 1;
    margin: 0px;
  }
  .payment .container .transactionContainer .filter .select ul {
    width: 100%;
    box-shadow: 0px 0px 2px #a3a3a3;
  }
}
@media screen and (max-width: 510px) {
  .payment .container {
    width: 100%;
    padding: 0px;
    border: 0px;
    margin-bottom: 50px;
    margin-top: 0px;
    margin-left: 0px;
  }
  .payment .container .paymentType li {
    font-size: 14px;
    padding: 12px 0px;
  }
  .payment .container .depositContainer {
    width: calc(100% - 20px);
    padding: 10px;
  }
  .payment .container .depositContainer table {
    margin-top: 0px;
  }
  .payment .container .depositContainer table thead tr th:first-child {
    width: 170px;
  }
  .payment .container .depositContainer table tbody tr {
    height: 55px;
  }
  .payment .container .depositContainer table tbody tr td img {
    margin-right: 6px;
  }
  .payment .container .depositContainer table tbody tr td:first-child {
    width: 170px;
  }
  .payment .container .depositContainer .quickAmount label {
    width: 100%;
    padding-bottom: 6px;
  }
  .payment .container .depositContainer .infos {
    margin-top: 15px;
  }
  .payment .container .depositContainer .infos label {
    text-align: left;
  }
  .payment .container .depositContainer .infos .info {
    color: #ffffff;
    margin-left: 0px;
    width: calc(100% - 0px);
  }
  .payment .container .depositContainer .infos .info input {
    padding: 5px;
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #3045c1;
    background-color: transparent;
    color: white;
    font-size: 16px;
    width: calc(100% - 10px);
    max-width: none;
  }
  .payment .container .depositContainer .infos .info input:focus {
    background-color: transparent;
    outline: 0;
  }
  .payment .container .depositContainer .infos .info button {
    height: 30px;
    width: 100%;
  }
  .payment .container .depositContainer .infos .errorNote {
    padding-left: 0px;
  }
  .payment .container .depositContainer .infos.note {
    margin-bottom: 15px;
  }
  .payment .container .withdrawContainer {
    width: calc(100% - 20px);
    padding: 10px;
  }
  .payment .container .withdrawContainer .withdrawOptionList {
    margin-top: 10px;
    margin-bottom: 20px;
    gap: 7px;
  }
  .payment .container .withdrawContainer .withdrawOptionList .option {
    padding: 3px;
  }
  .payment .container .withdrawContainer .quickAmount label {
    width: 100%;
    padding-bottom: 6px;
  }
  .payment .container .withdrawContainer .infos {
    margin-top: 15px;
  }
  .payment .container .withdrawContainer .infos label {
    text-align: left;
  }
  .payment .container .withdrawContainer .infos .info {
    color: #ffffff;
    width: 100%;
    margin-left: 0px;
  }
  .payment .container .withdrawContainer .infos .info input {
    padding: 5px;
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #3045c1;
    background-color: transparent;
    color: white;
    font-size: 16px;
    width: calc(100% - 10px);
    max-width: none;
  }
  .payment .container .withdrawContainer .infos .info input:focus,
.payment .container .withdrawContainer .infos .info input.error,
.payment .container .withdrawContainer .infos .info input.error:focus {
    background-color: transparent;
    outline: 0;
  }
  .payment .container .withdrawContainer .infos .info button {
    height: 30px;
    width: 100%;
  }
  .payment .container .withdrawContainer .infos .errorNote {
    padding: 0px;
  }
}
.betrules {
  position: absolute;
  width: 100%;
}
.betrules .container .rules {
  width: calc(90% - 60px);
  max-width: 1140px;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 35px;
  background-color: rgba(0, 0, 0, 0.5098039216);
  border-radius: 10px;
  border: 1px solid #524f88;
  padding: 30px;
  color: #ffffff;
  margin-bottom: 35px;
}
.betrules .container .rules ul {
  padding: 0px;
  width: 100%;
  list-style: none;
}
.betrules .container .rules ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.betrules .container .rules ul li.note {
  font-size: 13px;
  color: #d4d4d4;
}
.betrules .container .rules ul li.note span::after {
  content: ":";
}
.betrules .container .rules h1 {
  margin: 0px;
  font-size: 24px;
}
.betrules .container .rules h3 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  margin-top: 30px;
}
.betrules .container .rules table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 5px;
}
.betrules .container .rules table thead tr th {
  border: 1px solid white;
  font-size: 13px;
  padding: 5px 10px;
  text-align: left;
  font-weight: bold;
}
.betrules .container .rules table tbody tr td {
  border: 1px solid white;
  font-size: 13px;
  padding: 10px 10px;
  text-align: left;
}

@media screen and (max-width: 510px) {
  .betrules .container .rules {
    width: calc(100% - 40px);
    max-width: 100%;
    margin-left: 0px;
    transform: none;
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5098039216);
    border-radius: 0px;
    border: 0px;
    padding: 10px 20px;
    color: #ffffff;
    margin-bottom: 0px;
  }
  .betrules .container .rules ul {
    margin: 0px;
    padding: 0px;
  }
  .betrules .container .rules ul li {
    font-size: 13px;
  }
  .betrules .container .rules ul li.note {
    background-color: white;
    color: black;
    text-align: center;
    border: 3px solid red;
    padding: 10px;
  }
  .betrules .container .rules ul li.note span {
    display: block;
    width: calc(100% + 10px);
    background-color: red;
    margin-left: -10px;
    margin-top: -10px;
    padding: 4px 5px;
    color: white;
    margin-bottom: 5px;
  }
  .betrules .container .rules ul li.note span::after {
    display: none;
  }
  .betrules .container .rules h1 {
    display: none;
  }
  .betrules .container .rules h3 {
    margin-bottom: 10px;
    border-bottom: 1px solid #a0afe3;
    padding-bottom: 5px;
  }
  .betrules .container .rules table thead {
    display: none;
  }
  .betrules .container .rules table tbody {
    display: inline-block;
    width: 100%;
  }
  .betrules .container .rules table tbody tr {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #a0afe3;
  }
  .betrules .container .rules table tbody tr td {
    border: 0px;
    display: inline-block;
    width: calc(100% - 120px);
    margin-left: 100px;
    color: #a0afe3;
    padding: 5px 10px;
  }
  .betrules .container .rules table tbody tr td:nth-child(1)::before {
    content: "Pool Type";
    width: 100px;
    display: inline-block;
    margin-left: -100px;
    color: #ffffff;
  }
  .betrules .container .rules table tbody tr td:nth-child(2)::before {
    content: "Code";
    width: 100px;
    display: inline-block;
    margin-left: -100px;
    color: #ffffff;
  }
  .betrules .container .rules table tbody tr td:nth-child(3)::before {
    content: "Minimum Bet";
    width: 100px;
    display: inline-block;
    margin-left: -100px;
    color: #ffffff;
  }
  .betrules .container .rules table tbody tr td:nth-child(4)::before {
    content: "Combination";
    width: 100px;
    display: inline-block;
    margin-left: -100px;
    color: #ffffff;
  }
  .betrules .container .rules table tbody tr:last-child {
    border: 0px;
  }
}
.about {
  position: absolute;
  width: 100%;
}
.about .banner {
  width: 100%;
  height: 28vw;
  background-image: url(/assets/images/about-banner.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: 35px;
}
.about .banner img {
  margin-top: 8vw;
  width: 30%;
  max-width: 445px;
}
.about .title {
  text-align: center;
  font-family: BaiJamjuree;
  color: #ffffff;
  font-size: 4.5vw;
}
.about .subtitle {
  text-align: center;
  font-family: BaiJamjuree;
  color: #ffffff;
  margin-top: 3vw;
  font-size: 2vw;
}
.about p.info {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  margin-top: 3vw;
  width: 90%;
  max-width: calc(900px + 12vw);
  margin-left: 50%;
  transform: translate(-50%);
}
.about p.last {
  margin-bottom: 4vw;
}

@media screen and (max-width: 1400px) {
  .about .title {
    font-size: 63px;
  }
  .about .subtitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  .about .title {
    font-size: 11vw;
  }
  .about .subtitle {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 510px) {
  .about {
    padding-bottom: 220px !important;
  }
  .about p.info {
    font-size: 16px;
  }
}
.contacts {
  position: absolute;
  width: 100%;
}
.contacts .contactContainer {
  width: 90%;
  max-width: calc(900px + 12vw);
  margin-left: 50%;
  transform: translate(-50%);
  overflow: hidden;
  margin-bottom: 4vw;
  color: #c1cfeb;
}
.contacts .contactContainer .contact-title {
  font-family: BaiJamjuree;
  font-size: 30px;
  color: #ffffff;
}
.contacts .contactContainer form {
  margin-top: 45px;
}
.contacts .contactContainer form .form-container {
  background-color: #08041f;
  padding: 20px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #c1cfeb;
}
.contacts .contactContainer form .form-container label {
  display: block;
}
.contacts .contactContainer form .form-container input {
  margin-top: 10px;
  margin-bottom: 10px;
  width: calc(100% - 14px);
  max-width: 400px;
  height: 30px;
  font-size: 14px;
  padding-left: 8px;
}
.contacts .contactContainer form .form-container select {
  margin-top: 10px;
  margin-bottom: 10px;
  width: calc(100% - 0px);
  max-width: 414px;
  height: 36px;
  font-size: 14px;
  padding-left: 8px;
}
.contacts .contactContainer form .form-container textarea {
  margin-top: 10px;
  margin-bottom: 10px;
  width: calc(100% - 20px);
  height: 10vw;
  max-width: 600px;
  font-size: 14px;
  padding: 8px;
  min-height: 200px;
}

.accountPage {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: calc(100% - 50px);
}
.accountPage ul {
  list-style: none;
  padding: 0px;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.accountPage ul li {
  width: calc(100% - 30px);
  margin: 0px 10px;
  padding: 10px 5px;
  color: #ffffff;
  border-bottom: 1px solid #525252;
}
.accountPage ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  width: 100%;
  display: inline-block;
}
.accountPage ul li a svg {
  vertical-align: middle;
  margin-right: 10px;
}
.accountPage ul li a .detail {
  display: inline-block;
  vertical-align: middle;
}
.accountPage ul li a .detail span {
  margin-bottom: 4px;
  display: inline-block;
  font-family: Roboto;
}
.accountPage ul li a .detail div {
  font-size: 11px;
  color: #d4d4d4;
}
.accountPage ul li a .chev {
  float: right;
  margin-top: 5px;
  margin-right: 0px;
}
.accountPage .otherLabel {
  color: #416ddd;
  font-family: "Roboto";
  margin-left: 10px;
  font-size: 14px;
  margin-top: 20px;
}
.accountPage .otherLabel svg,
.accountPage .otherLabel span {
  vertical-align: middle;
}
.accountPage ul.other {
  list-style: none;
  padding: 0px;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.accountPage ul.other li {
  margin-bottom: 5px;
  width: calc(100% - 40px);
  margin-left: 50%;
  transform: translate(-50%);
  padding: 10px 15px;
  color: #000000;
  margin-top: 5px;
}
.accountPage ul.other li a,
.accountPage ul.other li div {
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
}
.accountPage ul.other li a svg,
.accountPage ul.other li div svg {
  vertical-align: middle;
  margin-right: 10px;
}
.accountPage ul.other li a .detail,
.accountPage ul.other li div .detail {
  display: inline-block;
  vertical-align: middle;
}
.accountPage ul.other li a .detail span,
.accountPage ul.other li div .detail span {
  margin-bottom: 0px;
  display: inline-block;
  font-family: Roboto;
}
.accountPage ul.other li a .chev,
.accountPage ul.other li div .chev {
  float: right;
  margin-top: 1px;
  margin-right: 0px;
}
@media screen and (max-width: 510px) {
  .accountPage {
    background-color: rgba(0, 0, 0, 0.6);
    height: calc(100% - 50px);
  }
  .accountPage ul.other {
    width: 100%;
    padding: 0px;
    border: 0px;
    margin-bottom: 70px;
    background-color: transparent;
    display: inline-block;
  }
}
.profile {
  position: absolute;
  width: 100%;
}
.profile .container {
  width: calc(90% - 60px);
  max-width: 993px;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.5215686275);
  color: #ffffff;
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.38);
  border-radius: 0.125rem;
}
.profile .container .profileMenu {
  margin: 0px;
  list-style: none;
  width: 100%;
  padding: 0px;
  border-bottom: 1px solid #545454;
  display: flex;
}
.profile .container .profileMenu li {
  display: inline-block;
  flex: 1;
  padding: 18px 0px;
  margin-left: -1px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  text-align: center;
}
.profile .container .profileMenu li.active {
  color: #fbd100;
  border-bottom: 2px solid #fbd100;
}
.profile .container .updateProfile,
.profile .container .updatePassword {
  width: calc(100% - 72px);
  padding: 23px 36px;
}
.profile .container .updateProfile .header,
.profile .container .updatePassword .header {
  height: auto;
  margin-bottom: 15px;
}
.profile .container .updateProfile .header h1,
.profile .container .updatePassword .header h1 {
  font-size: 18px;
  margin: 0px;
}
.profile .container .updateProfile .header h3,
.profile .container .updatePassword .header h3 {
  font-size: 14px;
  margin: 0px;
  margin-top: 3px;
  color: #d4d4d4;
}
.profile .container .updateProfile .infos,
.profile .container .updatePassword .infos {
  margin-top: 25px;
}
.profile .container .updateProfile .infos label,
.profile .container .updatePassword .infos label {
  color: #d4d4d4;
  font-size: 14px;
  display: inline-block;
  text-align: right;
  width: 120px;
}
.profile .container .updateProfile .infos .info,
.profile .container .updatePassword .infos .info {
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto";
  display: inline-block;
  margin-left: 20px;
  width: calc(100% - 180px);
}
.profile .container .updateProfile .infos .info input,
.profile .container .updatePassword .infos .info input {
  padding: 10px;
  max-width: 400px;
  width: 100%;
  border: 1px solid #b1b1b1;
  border-radius: 2px;
}
.profile .container .updateProfile .infos .info label,
.profile .container .updatePassword .infos .info label {
  display: none;
}
.profile .container .updateProfile .infos .info input.error,
.profile .container .updateProfile .infos .info input.error:focus,
.profile .container .updatePassword .infos .info input.error,
.profile .container .updatePassword .infos .info input.error:focus {
  border-color: #ff424f;
  outline: #ff424f;
}
.profile .container .updateProfile .infos .info button,
.profile .container .updatePassword .infos .info button {
  height: 40px;
  padding: 0px 20px;
  background-color: #3045c1;
  color: #ffffff;
  border: 0px;
  border-radius: 2px;
  cursor: pointer;
}
.profile .container .updateProfile .infos .info button:focus,
.profile .container .updatePassword .infos .info button:focus {
  outline: 0;
}
.profile .container .updateProfile .infos .info button.disabled,
.profile .container .updatePassword .infos .info button.disabled {
  background-color: #45485a;
  cursor: not-allowed;
}
.profile .container .updateProfile .infos .errorNote,
.profile .container .updatePassword .infos .errorNote {
  padding-left: 143px;
  margin-top: 4px;
  font-size: 14px;
  color: #ed0022;
  max-width: 400px;
}

@media screen and (max-width: 1015px) {
  .profile .container {
    width: calc(100% - 25px);
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    transform: unset;
  }
}
@media screen and (max-width: 600px) {
  .profile .container {
    width: calc(100% - 30px);
    padding: 5px;
  }
}
@media screen and (max-width: 510px) {
  .profile .container {
    width: 100%;
    padding: 0px;
    border: 0px;
    margin-bottom: 50px;
    margin-top: 0px;
    margin-left: 0px;
  }
  .profile .container .profileMenu li {
    font-size: 14px;
    padding: 12px 0px;
  }
  .profile .container .updateProfile {
    width: calc(100% - 20px);
    padding: 10px;
  }
  .profile .container .updateProfile .header {
    margin-bottom: 20px;
  }
  .profile .container .updateProfile .header h1 {
    display: none;
  }
  .profile .container .updateProfile .header h3 {
    padding: 4px;
    font-size: 12px;
  }
  .profile .container .updateProfile hr {
    display: none;
  }
  .profile .container .updateProfile .infos {
    line-height: 50px;
    margin: 0px;
    border-bottom: 1px solid #525252;
  }
  .profile .container .updateProfile .infos .info {
    margin-left: 0px;
    width: calc(100% - 129px);
  }
  .profile .container .updateProfile .infos .info label {
    padding-left: 0px;
    display: inline-block;
    text-align: right;
    width: calc(100% - 5px);
    font-size: 12px;
  }
  .profile .container .updateProfile .infos .info label svg {
    vertical-align: middle;
  }
  .profile .container .updateProfile .infos .info input {
    display: none;
  }
  .profile .container .updateProfile .infos .info .detail {
    display: none;
  }
  .profile .container .updateProfile .infos .errorNote {
    display: none;
  }
  .profile .container .updateProfile .infos label {
    text-align: left;
    padding-left: 5px;
    font-size: 12px;
  }
  .profile .container .updateProfile .infos .buttonLabel {
    display: none;
  }
  .profile .container .updateProfile .infos .buttonInfo {
    width: 100%;
    text-align: center;
  }
  .profile .container .updateProfile .infos .buttonInfo button {
    width: calc(100% - 10px);
    height: 30px;
    margin-top: 15px;
  }
  .profile .container .updateProfile .infos:last-child {
    border: 0px;
  }
  .profile .container .updatePassword {
    width: calc(100% - 20px);
    padding: 10px;
  }
  .profile .container .updatePassword .header {
    margin-bottom: 20px;
  }
  .profile .container .updatePassword .header h1 {
    display: none;
  }
  .profile .container .updatePassword .header h3 {
    padding: 4px;
    font-size: 12px;
  }
  .profile .container .updatePassword hr {
    display: none;
  }
  .profile .container .updatePassword .infos {
    line-height: normal;
    margin: 0px;
    border-bottom: 1px solid #525252;
    padding-bottom: 12px;
  }
  .profile .container .updatePassword .infos label {
    text-align: left;
    padding-left: 5px;
    width: calc(100% - 10px);
    line-height: 30px;
    font-size: 12px;
  }
  .profile .container .updatePassword .infos label svg {
    vertical-align: middle;
  }
  .profile .container .updatePassword .infos .info {
    margin-left: 0px;
    width: 100%;
    line-height: normal;
  }
  .profile .container .updatePassword .infos .info input {
    max-width: unset;
    width: calc(100% - 25px);
  }
  .profile .container .updatePassword .infos .info button {
    width: 100%;
    height: 30px;
  }
  .profile .container .updatePassword .infos .errorNote {
    display: none;
  }
  .profile .container .updatePassword .infos .buttonLabel {
    display: none;
  }
  .profile .container .updatePassword .infos .buttonInfo {
    width: 100%;
    text-align: center;
  }
  .profile .container .updatePassword .infos .buttonInfo button {
    width: calc(100% - 10px);
    height: 30px;
    margin-top: 15px;
  }
  .profile .container .updatePassword .infos:last-child {
    border: 0px;
  }
}
html body #app .history {
  position: absolute;
  width: 100%;
}
html body #app .history .menu {
  margin: 0px;
  margin-top: 35px;
  list-style: none;
  width: 90%;
  max-width: 1200px;
  margin-left: 50%;
  transform: translate(-50%);
  padding: 0px;
  position: relative;
  z-index: 50;
}
html body #app .history .menu li {
  display: inline-block;
  color: #ffffff;
  padding: 10px 25px;
  margin-left: -1px;
  cursor: pointer;
  font-size: 14px;
}
html body #app .history .menu li svg {
  vertical-align: middle;
}
html body #app .history .menu li span {
  vertical-align: middle;
}
html body #app .history .menu li.active {
  background-color: #000000;
  border: 1px solid #3045c1;
  border-bottom: 0px;
}
html body #app .history .historyContainer {
  width: calc(90% - 60px);
  max-width: 1140px;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: -1px;
  padding: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
  background-color: #000000;
}
html body #app .history .historyContainer .filter {
  margin-bottom: 10px;
  font-size: 13px;
}
html body #app .history .historyContainer .filter .type,
html body #app .history .historyContainer .filter .status {
  display: inline-block;
  margin-right: 25px;
}
html body #app .history .historyContainer .filter .type select,
html body #app .history .historyContainer .filter .status select {
  display: inline-block;
  border: 1px solid #3045c1;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  background-color: transparent;
  color: white;
}
html body #app .history .historyContainer .filter .type select:focus,
html body #app .history .historyContainer .filter .status select:focus {
  outline: 0;
}
html body #app .history .historyContainer .filter .date {
  display: inline-block;
  margin-left: 20px;
}
html body #app .history .historyContainer .filter .date label {
  font-size: 14px;
}
html body #app .history .historyContainer .filter .date input {
  width: 150px;
  padding: 3px 5px;
  margin-left: 9px;
}
html body #app .history .historyContainer .filter button {
  margin-left: 20px;
  background-color: #fbd100;
  border: 0px;
  padding: 5px 10px;
  font-weight: bold;
}
html body #app .history .historyContainer .transactionContainer .list {
  border-bottom: 1px solid #525252;
  padding-bottom: 7px;
  padding-top: 8px;
}
html body #app .history .historyContainer .transactionContainer .list .datetime {
  display: inline-block;
  width: 45px;
  margin-right: 20px;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #d4d4d4;
}
html body #app .history .historyContainer .transactionContainer .list .transactionInfo {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 345px);
}
html body #app .history .historyContainer .transactionContainer .list .transactionInfo .racingAccount {
  font-size: 14px;
  margin-bottom: 10px;
}
html body #app .history .historyContainer .transactionContainer .list .transactionInfo .racingAccount .transactionID {
  background-color: #404040;
  padding: 3px 7px;
  text-align: center;
  margin-right: 5px;
}
html body #app .history .historyContainer .transactionContainer .list .transactionInfo .playerAccount {
  font-size: 12px;
  color: #d4d4d4;
}
html body #app .history .historyContainer .transactionContainer .list .forRight {
  display: inline-block;
}
html body #app .history .historyContainer .transactionContainer .list .forRight .balance {
  display: inline-block;
  font-size: 20px;
  text-align: right;
  width: 120px;
  padding-right: 20px;
  vertical-align: middle;
}
html body #app .history .historyContainer .transactionContainer .list .forRight .balance .currency {
  font-size: 10px;
  display: inline-block;
  color: #d4d4d4;
}
html body #app .history .historyContainer .transactionContainer .list .forRight .balance .decimal {
  font-size: 12px;
  display: inline-block;
  color: #d4d4d4;
}
html body #app .history .historyContainer .transactionContainer .list .forRight .status {
  display: inline-block;
  width: 90px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  margin-left: 35px;
  color: #d4d4d4;
}
html body #app .history .historyContainer .transactionContainer .list .forRight .status svg {
  width: 100%;
  margin-bottom: 3px;
}
html body #app .history .historyContainer .transactionContainer .list .notes {
  color: red;
  font-size: 12px;
}
html body #app .history .historyContainer .transactionContainer .noAvailable {
  background-color: #505050;
  padding: 15px;
  font-size: 14px;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  html body #app .history .historyContainer .transactionContainer .list .status {
    margin-left: 0px;
  }
}
@media screen and (max-width: 735px) {
  html body #app .history .historyContainer .transactionContainer .list .transactionInfo {
    width: calc(100% - 80px);
  }

  html body #app .history .historyContainer .transactionContainer .list .forRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  html body #app .history .historyContainer .transactionContainer .list .status svg {
    display: none;
  }

  html body #app .history .historyContainer .transactionContainer .list .status.PENDING {
    color: #fbd100;
  }

  html body #app .history .historyContainer .transactionContainer .list .status.APPROVED {
    color: #5bd858;
  }

  html body #app .history .historyContainer .transactionContainer .list .status.DECLINED {
    color: #ff424f;
  }
}
@media screen and (max-width: 630px) {
  html body #app .history .historyContainer .filter .type {
    text-align: center;
  }

  html body #app .history .historyContainer table {
    font-size: 10px;
  }
}
@media screen and (max-width: 570px) {
  html body #app .history .historyContainer table thead {
    display: none;
  }

  html body #app .history .historyContainer table tbody tr {
    display: inline-grid;
    width: 100%;
    border-bottom: 1px solid #2b294b;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
  }

  html body #app .history .historyContainer table tbody tr td {
    border-right: 0px;
    color: #c1cfeb;
    font-size: 14px;
    padding: 0px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(6) {
    text-align: left;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(1)::before {
    content: "ID #:";
    color: #ffffff;
    margin-right: 10px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(2)::before {
    content: "Date Time:";
    color: #ffffff;
    margin-right: 10px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(3)::before {
    content: "Transaction Type:";
    color: #ffffff;
    margin-right: 10px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(4)::before {
    content: "Method:";
    color: #ffffff;
    margin-right: 10px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(5)::before {
    content: "Status:";
    color: #ffffff;
    margin-right: 10px;
  }

  html body #app .history .historyContainer table tbody tr td:nth-child(6)::before {
    content: "Amount:";
    color: #ffffff;
    margin-right: 10px;
  }
}
@media screen and (max-width: 510px) {
  html body #app .history {
    background-color: rgba(0, 0, 0, 0.6);
    height: calc(100% - 50px);
  }
  html body #app .history .container {
    height: auto;
  }
  html body #app .history .menu {
    display: none;
  }
  html body #app .history .historyContainer {
    margin-top: 0px;
    width: calc(100% - 10px);
    padding: 10px 5px;
    border: 0px;
    margin-bottom: 70px;
    background-color: transparent;
    display: inline-block;
  }
  html body #app .history .historyContainer .filter {
    text-align: left;
  }
  html body #app .history .historyContainer .filter .type {
    text-align: left;
    margin-right: 10px;
  }
  html body #app .history .historyContainer .filter .type select {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  html body #app .history .menu li {
    font-size: 12px;
    padding: 10px 20px;
  }
}
html body #app .betHistory {
  position: absolute;
  width: 100%;
}
html body #app .betHistory .menu {
  margin: 0px;
  margin-top: 35px;
  list-style: none;
  width: 90%;
  max-width: 1200px;
  margin-left: 50%;
  transform: translate(-50%);
  padding: 0px;
  position: relative;
  z-index: 50;
}
html body #app .betHistory .menu li {
  display: inline-block;
  color: #ffffff;
  padding: 10px 25px;
  margin-left: -1px;
  cursor: pointer;
  font-size: 14px;
}
html body #app .betHistory .menu li svg {
  vertical-align: middle;
}
html body #app .betHistory .menu li span {
  vertical-align: middle;
}
html body #app .betHistory .menu li.active {
  background-color: #000000;
  border: 1px solid #3045c1;
  border-bottom: 0px;
}
html body #app .betHistory .betHistoryContainer {
  width: calc(90% - 60px);
  max-width: 1140px;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: -1px;
  padding: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
  background-color: #000000;
}
html body #app .betHistory .betHistoryContainer .filter {
  margin-bottom: 10px;
  font-size: 13px;
}
html body #app .betHistory .betHistoryContainer .filter .type,
html body #app .betHistory .betHistoryContainer .filter .status {
  display: inline-block;
  margin-right: 25px;
}
html body #app .betHistory .betHistoryContainer .filter .type select,
html body #app .betHistory .betHistoryContainer .filter .status select {
  display: inline-block;
  border: 1px solid #3045c1;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  background-color: transparent;
  color: white;
}
html body #app .betHistory .betHistoryContainer .filter .type select:focus,
html body #app .betHistory .betHistoryContainer .filter .status select:focus {
  outline: 0;
}
html body #app .betHistory .betHistoryContainer .filter .date {
  display: inline-block;
  margin-left: 20px;
}
html body #app .betHistory .betHistoryContainer .filter .date label {
  font-size: 14px;
}
html body #app .betHistory .betHistoryContainer .filter .date input {
  width: 150px;
  padding: 3px 5px;
  margin-left: 9px;
}
html body #app .betHistory .betHistoryContainer .filter button {
  margin-left: 20px;
  background-color: #fbd100;
  border: 0px;
  padding: 5px 10px;
  font-weight: bold;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 7px;
  padding-top: 8px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo {
  margin: 0px 15px;
  border-bottom: 1px solid #5d5d5d;
  padding: 5px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .datetime {
  display: inline-block;
  width: 60px;
  text-align: center;
  font-size: 12px;
  vertical-align: middle;
  border-right: 1px solid #525252;
  margin-right: 10px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .eventInfo {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 330px);
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .eventInfo .name {
  font-size: 15px;
  width: calc(100% - 85px);
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .eventInfo .arena {
  font-size: 12px;
  color: #d4d4d4;
  width: calc(100% - 85px);
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .ticketNo {
  display: inline-block;
  text-align: center;
  width: 120px;
  vertical-align: middle;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .ticketNo .numb {
  display: inline-flex;
  width: 60px;
  height: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .ticketNo .label {
  display: inline-block;
  font-size: 12px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status {
  display: inline-block;
  text-align: center;
  width: 125px;
  line-height: 15px;
  vertical-align: middle;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status svg {
  vertical-align: middle;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status span {
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
  font-size: 18px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .statusWinLose {
  font-size: 11px;
  margin-top: 0px;
  display: inline-block;
  width: 100%;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .won {
  color: green;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .lose {
  color: red;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .account {
  font-size: 16px;
  display: inline-block;
  width: 100%;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .account .decimal {
  font-size: 10px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList {
  margin: 0px 30px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet {
  padding-top: 5px;
  display: flex;
  border-bottom: 1px solid #5d5d5d;
  padding-bottom: 5px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .type {
  display: inline-flex;
  vertical-align: middle;
  flex: 1;
  align-items: center;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first {
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid #3045c1;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first label {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  vertical-align: top;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first .listBet {
  display: flex;
  margin: 0px 20px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first .listBet div {
  flex: 1;
  background-color: #3045c1;
  margin: 0px 5px;
  padding: 1px 7px;
  height: 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountSingle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-right: 20px;
  color: #d4d4d4;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .currency,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .amount,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .decimal {
  display: inline-block;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .currency {
  font-size: 10px;
  margin-top: 6px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .amount {
  font-size: 20px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal .decimal {
  font-size: 12px;
  margin-top: 5px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet:last-child {
  border: 0px;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .loaderGame {
  margin-top: 20px;
  height: calc(100vh - 400px);
  display: flex;
  justify-content: center;
  align-items: center;
}
html body #app .betHistory .betHistoryContainer .transactionContainer .loaderGame svg {
  animation: rotation 2s infinite linear;
}

@media screen and (max-width: 710px) {
  html body #app .betHistory .betHistoryContainer {
    width: calc(100% - 30px);
    padding: 10px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo {
    margin: 0px 5px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList {
    margin: 0px 20px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .type {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  html body #app .payment .betHistoryContainer {
    width: calc(90% - 10px);
    padding: 5px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .datetime {
    display: inline-block;
    width: 100%;
    text-align: left;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .datetime .date,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .datetime .time {
    display: inline-block;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .eventInfo {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status {
    width: 100%;
    text-align: left;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .statusWinLose {
    font-size: 16px;
    display: inline-block;
    width: auto;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .status .account {
    width: auto;
    margin-left: 5px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .firstInfo .ticketNo {
    width: 50%;
    text-align: left;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet {
    display: inline-block;
    position: relative;
    width: 100%;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .type {
    width: 100%;
    flex: none;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first label,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .second label {
    width: 25px;
    margin-top: 4px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first .listBet,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .second .listBet {
    display: inline-block;
    margin: 0px 5px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .second {
    border: 0px;
    width: 100%;
    margin-bottom: 2px;
    margin-top: 2px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountSingle {
    position: absolute;
    top: 10px;
    right: 0px;
    margin-right: 0px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .amountTotal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 0px;
  }

  html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .first .listBet div,
html body #app .betHistory .betHistoryContainer .transactionContainer .list .betList .bet .second .listBet div {
    display: inline-flex;
    margin: 0px 2px;
  }
}
@media screen and (max-width: 510px) {
  html body #app .betHistory {
    background-color: rgba(0, 0, 0, 0.6);
    height: calc(100% - 50px);
  }
  html body #app .betHistory .container {
    height: auto;
  }
  html body #app .betHistory .menu {
    display: none;
  }
  html body #app .betHistory .betHistoryContainer {
    width: 100%;
    padding: 0px;
    border: 0px;
    margin-bottom: 70px;
    margin-top: -15px;
    background-color: transparent;
    display: inline-block;
  }

  html body #app .betHistory .betHistoryContainer .filter {
    text-align: left;
  }

  html body #app .betHistory .betHistoryContainer .filter .type {
    text-align: left;
    margin-right: 10px;
  }

  html body #app .betHistory .betHistoryContainer .filter .type select {
    font-size: 12px;
  }
}
footer {
  background-color: #07041a;
  margin-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
footer .footerDetails .logo {
  width: 100%;
  text-align: center;
}
footer .footerDetails ul {
  list-style: none;
  text-align: center;
  padding: 0px;
}
footer .footerDetails ul li {
  display: inline-block;
  margin: 5px 10px;
  font-size: 13px;
}
footer .footerDetails ul li a {
  color: #ffffff;
  text-decoration: none;
}
footer .footerDetails ul li.active a {
  color: #fbd100;
}
footer .footerDetails .copyright {
  color: #ffffff;
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  color: #867acc;
}
footer .footerDetails .copyright p {
  display: inline-block;
  margin: 0px 20px;
  line-height: 25px;
}
footer .footerNav {
  background-color: #14104f;
  border-top: 1px solid #9dd0ff;
  color: #ffffff;
  display: none;
}
footer .footerNav .list {
  display: inline-block;
  text-align: center;
  width: calc(20% - 4px);
  margin-top: 5px;
  vertical-align: top;
  margin-bottom: 5px;
}
footer .footerNav .list svg {
  fill: #ffffff;
}
footer .footerNav .list .label {
  font-size: 11px;
}
footer .footerNav .list img {
  width: 50px;
}
footer .footerNav .list.active {
  color: #9dd0ff;
}
footer .footerNav .list.active svg path {
  fill: #9dd0ff;
}

@media screen and (max-width: 510px) {
  footer.footerv2 {
    padding-top: 0px;
    padding-bottom: 0px;
    position: fixed;
    z-index: 100;
  }
  footer.footerv2 .footerDetails {
    display: none;
  }
  footer.footerv2 .footerNav {
    display: inline-block;
    width: 100%;
  }

  .payment .paymentContainer .depositForm button {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  footer .copyright p {
    display: block;
  }

  footer .copyright .pipe {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  footer .logo img {
    width: 50vw;
  }
}
.terms {
  position: absolute;
  width: 100%;
}
.terms .container {
  width: calc(90% - 60px);
  max-width: 1140px;
  margin-left: 50%;
  transform: translate(-50%);
  background-color: rgba(0, 0, 0, 0.5098039216);
  border-radius: 10px;
  border: 1px solid #524f88;
  padding: 30px;
  color: #ffffff;
  margin-bottom: 35px;
}
.terms .container .title {
  text-align: center;
  font-family: BaiJamjuree;
  color: #ffffff;
  font-size: 32px;
}
.terms .container p.info {
  font-size: 15px;
  color: #d4d4d4;
}

@media screen and (max-width: 510px) {
  .terms {
    padding-bottom: 220px !important;
  }
  .terms .container {
    margin-top: 30px;
    background-color: transparent;
    border: 0px;
    padding: 10px;
    width: calc(100% - 20px);
    margin-left: 0px;
    transform: unset;
  }
  .terms .container .title {
    font-size: 30px;
  }
  .terms .container p.info {
    font-size: 16px;
  }
}
.privacy {
  position: absolute;
  width: 100%;
}
.privacy .container {
  width: calc(90% - 60px);
  max-width: 1140px;
  margin-left: 50%;
  transform: translate(-50%);
  background-color: rgba(0, 0, 0, 0.5098039216);
  border-radius: 10px;
  border: 1px solid #524f88;
  padding: 30px;
  color: #ffffff;
  margin-bottom: 35px;
}
.privacy .container .title {
  text-align: center;
  font-family: BaiJamjuree;
  color: #ffffff;
  font-size: 32px;
}
.privacy .container p.par {
  font-size: 14px;
  color: #d4d4d4;
}
.privacy .container p.par strong {
  color: #ffffff;
  font-size: 15px;
}
.privacy .container .list {
  font-size: 13px;
}
.privacy .container .list li {
  color: #d4d4d4;
  margin-bottom: 5px;
}
.privacy .container .list li strong {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
}
.privacy .container .list li strong::after {
  content: ": ";
}
.privacy .container a {
  color: #fbd100;
  word-wrap: break-word;
}

@media screen and (max-width: 510px) {
  .privacy {
    padding-bottom: 220px !important;
  }
  .privacy .container {
    margin-top: 30px;
    background-color: transparent;
    border: 0px;
    padding: 10px;
    width: calc(100% - 20px);
    margin-left: 0px;
    transform: unset;
  }
  .privacy .container .title {
    font-size: 30px;
  }
  .privacy .container p.info {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
