@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  text-decoration: none; }

.bg-dark-r69 {
  background-color: #000 !important; }

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  justify-content: center;
  color: #B4B7BD;
  background-color: #161D31;
  /* Safari */ }
  body .dark-layout .card {
    background-color: #283046; }
  body .wrap-login {
    background-image: url("/img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover; }
  body .loader-spiner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50px, -50px);
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  body .container {
    min-width: 1440px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center; }
    body .container .box-login {
      width: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.576);
      color: #fff;
      padding: 40px 25px;
      border-radius: 10px; }
      body .container .box-login .logo {
        width: 20%;
        align-self: center;
        padding: 50px;
        margin-bottom: 15px;
        background: url("/img/mega168.png") no-repeat center;
        background-size: contain;
        border-radius: 50%; }
      body .container .box-login .title {
        padding-bottom: 10px;
        text-align: left; }
      body .container .box-login .title h3 {
        font-size: 2rem;
        line-height: 2.2rem; }
      body .container .box-login form .form-input {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2px; }
        body .container .box-login form .form-input label {
          font-size: 1rem;
          font-weight: 600; }
        body .container .box-login form .form-input input, body .container .box-login form .form-input .btn-submit {
          padding: 10px;
          border-radius: 10px;
          outline: none;
          border: none; }
        body .container .box-login form .form-input input {
          font-size: 1rem;
          background-color: #333;
          color: #fff;
          margin-bottom: 5px;
          border: 2px solid transparent; }
          body .container .box-login form .form-input input ::placeholder {
            font-size: 1.1rem;
            color: #cecece;
            letter-spacing: 0.02rem; }
          body .container .box-login form .form-input input :focus {
            border-color: rgba(255, 255, 255, 0.64); }
        body .container .box-login form .form-input .btn-submit {
          font-size: 1.05rem;
          font-weight: bold;
          margin-top: 10px;
          color: #fff;
          background-color: #7367f0;
          border: 2px solid transparent;
          text-align: center;
          font-family: "Source Sans Pro", sans-serif;
          line-height: 1.05rem;
          cursor: pointer; }
          body .container .box-login form .form-input .btn-submit :active {
            border-color: #c0baff; }
        body .container .box-login form .form-input .btn-submit.btn-signup {
          background-color: #ff9f43 !important; }
          body .container .box-login form .form-input .btn-submit.btn-signup :active {
            border-color: #ffd1a6; }
        body .container .box-login form .form-input .remember-me {
          margin-top: 5px; }
          body .container .box-login form .form-input .remember-me .styled-checkbox {
            position: absolute;
            opacity: 0; }
          body .container .box-login form .form-input .remember-me .styled-checkbox + label {
            position: relative;
            cursor: pointer;
            padding: 0; }
            body .container .box-login form .form-input .remember-me .styled-checkbox + label ::before {
              content: "";
              margin-top: 5px;
              margin-right: 5px;
              display: inline-block;
              vertical-align: text-top;
              width: 13px;
              height: 13px;
              background: #fff;
              border-radius: 5px;
              padding: 0.5px; }
          body .container .box-login form .form-input .remember-me .styled-checkbox:checked + label ::before {
            background-color: #7367f0; }
          body .container .box-login form .form-input .remember-me .styled-checkbox:checked + label ::after {
            content: "";
            position: absolute;
            left: 2px;
            top: 12px;
            background: #fff;
            width: 2px;
            height: 2px;
            box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
            transform: rotate(45deg); }
      body .container .box-login form .language {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 15px 0; }
        body .container .box-login form .language .icon {
          width: 48px;
          height: 33px;
          border-radius: 7px;
          overflow: hidden;
          position: relative;
          transition: ease-in-out 0.2s;
          border: 2px solid transparent;
          cursor: pointer; }
          body .container .box-login form .language .icon img {
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 110%;
            transform: translate(-50%, -50%);
            transition: width 0.15s linear; }
          body .container .box-login form .language .icon :active {
            border-color: #7367f0;
            box-shadow: 1px 1px 1px 0px #7267f061; }
            body .container .box-login form .language .icon :active img {
              width: 120%; }
      body .container .box-login form .contact {
        display: flex;
        justify-content: center;
        gap: 10px; }
        body .container .box-login form .contact div {
          display: flex;
          align-items: center;
          gap: 5px;
          border-radius: 8px;
          color: #333 !important;
          background-color: rgba(255, 255, 255, 0.878);
          padding: 5px 5px; }
          body .container .box-login form .contact div span {
            width: 30px;
            height: 30px;
            border-radius: 100%; }
            body .container .box-login form .contact div span img {
              width: 100%;
              height: 100%; }
          body .container .box-login form .contact div p {
            font-size: 1.3rem;
            letter-spacing: 0.5px;
            font-weight: 900; }
          body .container .box-login form .contact div :first-child span {
            background-color: #fff; }
  body .dataTable tr td {
    font-size: 0.85rem; }
  body .dark-layout .table-report td {
    font-size: 0.87rem !important; }
  body .card-body {
    padding: 1rem; }

@media (min-width: 992px) and (max-width: 1199.98px) {
  body {
    justify-content: center; }
  body .container {
    min-width: 960px; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  body .container {
    width: 100%;
    align-items: center;
    padding: 10px; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  body .container {
    width: 100%;
    align-items: center;
    padding: 10px; } }

@media (max-width: 575.98px) {
  .wrap-login {
    background-image: url("https://player.cpro.one/assets/images_v2/SB24/background/background_mobile.jpg"); }
  body {
    display: block; }
    body .container {
      min-width: 390px;
      padding: 10px; }
      body .container .box-login {
        width: 100%;
        padding: 20px; }
        body .container .box-login .title h3 {
          font-size: 1.4rem; } }

.body-container {
  padding: 0px; }

.card-header {
  border-radius: 0px !important; }

.round-first {
  border-radius: 0 !important; }

.round-last {
  border-radius: 0 !important; }

.c-margin-bottom {
  margin-bottom: 0.5rem !important; }

.c-margin-top {
  margin-top: 0.5rem !important; }

.user-profile {
  width: calc(0.8vw + 1.5rem);
  height: calc(0.8vw + 1.5rem);
  display: none !important; }

/* Tablet */
@media (min-width: 768px) {
  .body-container {
    padding: 14px; }
  .round-first {
    border-radius: 0.428rem 0 0 0 !important; }
  .round-last {
    border-radius: 0 0.428rem 0 0 !important; }
  .c-margin-bottom {
    margin-bottom: 1rem !important; }
  .c-margin-top {
    margin-top: 1rem !important; }
  .c-margin-top {
    margin-top: 1rem !important; } }

/* Tablet */
@media (min-width: 968px) {
  .user-profile {
    display: block !important; } }

.total-title {
  font-size: calc(0.4vw + 0.6rem) !important; }

.total-result {
  font-size: calc(0.3vw + 0.7rem) !important; }

.total-title-mobile {
  font-size: 9px !important; }

.total-result-mobile {
  font-size: 12px !important; }

.bet-feather {
  width: calc(0.6vw + 0.7rem);
  height: calc(0.6vw + 0.7rem); }

.img-logo {
  padding-top: calc(0.1vw + 0.1rem);
  width: calc(1.8vw + 2rem);
  height: calc(1.8vw + 2rem); }

.c-font-header {
  font-size: calc(1.5vw + 0.5rem) !important;
  padding: calc(0.2vw + 0.5rem) !important; }

.font-min-max {
  font-size: calc(0.3vw + 0.7rem) !important; }

.font-username {
  font-size: calc(0.3vw + 0.6rem) !important; }

.coin-bet {
  width: calc(2.2vw + 2.8rem);
  height: calc(2.2vw + 2.5rem);
  text-align: center !important;
  font-weight: 600;
  line-height: calc(1.9vw + 2.3rem) !important;
  font-size: calc(0.4vw + 0.6rem) !important;
  /* font-size: 1.1rem; */
  background-size: cover;
  z-index: -1; }

.coin-bet:hover {
  box-shadow: none !important; }

.coin-1 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22316%22%20height%3D%22292%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%23AE1719%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23A3181A%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22150.025%22%20cy%3D%22128.094%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.3%25%22%20height%3D%22112.1%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.558763587%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2021)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%235B090B%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M264%20236.778c-18.825%2016.058-42.051%2027.26-67%2032.99V204h67v32.779zM55%20239.22V204h67v66.453c-13.351-2.825-26.467-7.278-38.975-13.444-10.34-5.097-19.7-11.087-28.025-17.79z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(8)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%23370101%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.coin-5 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22316%22%20height%3D%22292%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%23FF5E9E%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23D83A79%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22150.025%22%20cy%3D%22128.094%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.3%25%22%20height%3D%22112.1%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2021)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%23690B30%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M264%20236.778c-18.825%2016.058-42.051%2027.26-67%2032.99V204h67v32.779zM55%20239.22V204h67v66.453c-13.351-2.825-26.467-7.278-38.975-13.444-10.34-5.097-19.7-11.087-28.025-17.79z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(8)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%235F0E3A%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.coin-10 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22314%22%20height%3D%22293%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%2318178B%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%230F0E72%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22149%22%20cy%3D%22127%22%20rx%3D%22149%22%20ry%3D%22127%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.4%25%22%20height%3D%22112.2%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2024)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%2302022A%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M263%20238.555c-18.735%2015.948-41.85%2027.073-66.68%2032.765V206H263v32.555zM55%20240.98V206h66.68v66c-13.288-2.806-26.34-7.229-38.789-13.352-10.29-5.063-19.606-11.012-27.891-17.668z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(7)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%23182349%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.coin-50 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22314%22%20height%3D%22293%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%23FFB600%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E0A000%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22149%22%20cy%3D%22127%22%20rx%3D%22149%22%20ry%3D%22127%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.4%25%22%20height%3D%22112.2%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2024)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%23663C03%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M263%20238.555c-18.735%2015.948-41.85%2027.073-66.68%2032.765V206H263v32.555zM55%20240.98V206h66.68v66c-13.288-2.806-26.34-7.229-38.789-13.352-10.29-5.063-19.606-11.012-27.891-17.668z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(7)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%233E2D09%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.coin-100 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22314%22%20height%3D%22293%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%2391C000%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%237BA108%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22149%22%20cy%3D%22127%22%20rx%3D%22149%22%20ry%3D%22127%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.4%25%22%20height%3D%22112.2%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2024)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%233C4E03%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M263%20238.555c-18.735%2015.948-41.85%2027.073-66.68%2032.765V206H263v32.555zM55%20240.98V206h66.68v66c-13.288-2.806-26.34-7.229-38.789-13.352-10.29-5.063-19.606-11.012-27.891-17.668z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(7)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%23172307%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.coin-500 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22316%22%20height%3D%22292%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22c%22%3E%3Cstop%20stop-color%3D%22%230D8C00%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%230A6201%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22d%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E8E8E8%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3Cellipse%20id%3D%22b%22%20cx%3D%22150.025%22%20cy%3D%22128.094%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cfilter%20x%3D%22-5.2%25%22%20y%3D%22-3.3%25%22%20width%3D%22110.3%25%22%20height%3D%22112.1%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22a%22%3E%3CfeMorphology%20radius%3D%221%22%20operator%3D%22dilate%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowSpreadOuter1%22%2F%3E%3CfeOffset%20dy%3D%227%22%20in%3D%22shadowSpreadOuter1%22%20result%3D%22shadowOffsetOuter1%22%2F%3E%3CfeGaussianBlur%20stdDeviation%3D%223%22%20in%3D%22shadowOffsetOuter1%22%20result%3D%22shadowBlurOuter1%22%2F%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20in%3D%22shadowBlurOuter1%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(8%2021)%22%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url(%23a)%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3Cuse%20fill%3D%22%23042700%22%20xlink%3Ahref%3D%22%23b%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M264%20236.778c-18.825%2016.058-42.051%2027.26-67%2032.99V204h67v32.779zM55%20239.22V204h67v66.453c-13.351-2.825-26.467-7.278-38.975-13.444-10.34-5.097-19.7-11.087-28.025-17.79z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.4%22%2F%3E%3Cg%20transform%3D%22translate(8)%22%3E%3Cellipse%20fill%3D%22url(%23c)%22%20cx%3D%22150.91%22%20cy%3D%22128.845%22%20rx%3D%22150.025%22%20ry%3D%22128.094%22%2F%3E%3Cellipse%20fill%3D%22url(%23d)%22%20cx%3D%22151.099%22%20cy%3D%22128.152%22%20rx%3D%22115.019%22%20ry%3D%2298.206%22%2F%3E%3Cpath%20d%3D%22M150.903%20221.905c-60.199%200-109-41.667-109-93.066%200-51.4%2048.801-93.067%20109-93.067s109%2041.668%20109%2093.067c0%2051.399-48.801%2093.066-109%2093.066zm-.16-11.983c52.466%200%2095-36.316%2095-81.113s-42.534-81.113-95-81.113c-52.468%200-95%2036.316-95%2081.113s42.532%2081.113%2095%2081.113z%22%20fill%3D%22%23183006%22%2F%3E%3Cpath%20d%3D%22M199.702%2056.489c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm-102%20151.126c-2.392-1.38-3.375-4.155-2.196-6.197%201.18-2.042%204.073-2.578%206.465-1.197%202.391%201.38%203.374%204.155%202.195%206.197-1.178%202.042-4.073%202.578-6.464%201.197zm151.035-78.688c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm-204%200c0-2.762%201.911-5%204.27-5%202.357%200%204.268%202.238%204.268%205%200%202.761-1.911%205-4.269%205s-4.269-2.239-4.269-5zm154.965%2071.294c2.391-1.38%205.286-.845%206.464%201.197%201.18%202.042.196%204.817-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.816%202.196-6.197zm-102-151.126c2.391-1.381%205.286-.845%206.464%201.197%201.18%202.042.196%204.816-2.195%206.197-2.392%201.38-5.286.845-6.465-1.197-1.179-2.042-.196-4.817%202.196-6.197zm52.804-38.209l7.935-3.562-1.515%207.545%206.42%205.342-8.872%201.101-3.968%206.864-3.967-6.864-8.872-1.1%206.42-5.343-1.516-7.545%207.935%203.562zm0%20237.79l-7.935%203.561%201.516-7.544-6.42-5.343%208.872-1.1%203.967-6.865%203.968%206.864%208.871%201.101-6.42%205.343%201.516%207.544-7.935-3.562zM270.44%2070.07l7.052%205.091-7.291%202.46-1.418%208.23-5.389-7.132-7.928-.004%203.96-6.868-3.482-8.234%207.837%202.889%205.776-5.085.883%208.653zM30.456%20188.538l-7.052-5.092%207.291-2.46%201.418-8.23%205.389%207.133%207.928.004-3.96%206.868%203.482%208.233-7.837-2.888-5.776%205.084-.883-8.652zm239.983%200l-.883%208.652-5.776-5.084-7.837%202.888%203.483-8.233-3.96-6.868%207.927-.004%205.39-7.133%201.417%208.23%207.291%202.46-7.052%205.092zM30.456%2070.07l.883-8.653%205.776%205.085%207.837-2.889-3.483%208.234%203.96%206.868-7.927.004-5.39%207.133-1.417-8.231-7.29-2.46%207.051-5.091zM188.42%207.263c12.547%202.84%2024.866%207.127%2036.646%2012.934%2011.572%205.705%2021.918%2012.528%2030.957%2020.216L245.17%2051.278c-2.39%202.392-6.868%203.078-10.004%201.533l-48.833-24.073c-3.136-1.546-4.68-5.2-3.448-8.164l5.534-13.31zm-74.297%20242.69c-12.547-2.84-24.866-7.127-36.646-12.934-11.572-5.705-21.918-12.528-30.957-20.216l10.852-10.865c2.39-2.392%206.868-3.078%2010.004-1.533l48.834%2024.073c3.136%201.546%204.68%205.201%203.447%208.164l-5.534%2013.31zm178.71-154.325a110.717%20110.717%200%20015.203%2033.564c0%2011.41-1.747%2022.47-5.026%2032.999l-16.446-2.592c-3.621-.57-6.557-3.54-6.557-6.631v-48.145c0-3.092%202.936-6.061%206.557-6.632l16.268-2.563zM9.21%20162.19a110.717%20110.717%200%2001-5.204-33.565c0-11.409%201.748-22.47%205.026-32.998l16.446%202.591c3.622.571%206.557%203.54%206.557%206.632v48.145c0%203.092-2.935%206.06-6.557%206.631L9.21%20162.191zm246.723%2055.334c-9.154%207.858-19.662%2014.823-31.442%2020.63-11.573%205.705-23.665%209.944-35.983%2012.783l-5.595-13.456c-1.232-2.963.312-6.618%203.448-8.164l48.833-24.073c3.136-1.546%207.615-.86%2010.005%201.533l10.734%2010.747zM46.608%2041.398c9.154-7.857%2019.662-14.823%2031.442-20.63%2011.573-5.704%2023.666-9.943%2035.983-12.783l5.595%2013.457c1.232%202.963-.312%206.618-3.448%208.164L67.347%2053.678c-3.136%201.546-7.615.86-10.005-1.532L46.608%2041.398z%22%20fill%3D%22%23FFF%22%20opacity%3D%22.9%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.img-coin {
  width: calc(2vw + 2.4rem);
  height: calc(2vw + 2.4rem); }

.coin-list {
  padding-bottom: calc(0.7vw + 0.1rem);
  padding-left: calc(1.2vw + 0.3rem);
  padding-right: calc(0.5vw + 0.1rem); }

.coin-list-header {
  padding: calc(0.8vw + 0.8rem); }

.f-t {
  font-size: calc(0.4vw + 0.7rem) !important;
  font-weight: 900 !important; }

.c-font-payout {
  font-size: calc(1vw + 1.5rem) !important; }

.c-font-bet {
  font-size: calc(1vw + 0.6rem) !important; }

.btn-bet,
.btn-bet-tie {
  font-size: calc(0.5vw + 0.7rem) !important; }

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; }

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%; }

.c-p {
  padding: 0.5rem !important; }

.c-m-b {
  margin-bottom: 0.5rem !important; }

.c-min-width {
  min-width: 30px !important; }

.btn-circle.btn-xl {
  width: 140px;
  height: 140px;
  padding: 1px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 75px; }

.result-container {
  display: flex;
  overflow: auto; }

.result-row {
  border: 0.5px solid #dedede;
  border-bottom: 0; }

.result-col {
  border-bottom: 1px solid #dedede;
  text-align: center;
  width: calc(0.6vw + 1.5rem) !important;
  height: calc(0.6vw + 1.5rem) !important;
  font-size: calc(0.4vw + 0.5rem) !important;
  line-height: calc(0.6vw + 1.4rem) !important;
  padding-top: 1px;
  background-color: white; }

.cycle {
  height: calc(0.6vw + 1.3rem) !important;
  width: calc(0.6vw + 1.3rem) !important;
  /* height: 30px;
	width: 30px; */
  border-radius: 50%;
  display: inline-block; }

.wrap-date {
  position: relative; }
  .wrap-date .daterangepicker {
    position: absolute;
    top: 50px;
    left: 0;
    color: #b4b7bd;
    display: none; }
    .wrap-date .daterangepicker ul .active {
      background-color: #08c; }

.tb_bet-list_wrapper {
  overflow: scroll; }

.dataTable tr td {
  padding: 5px !important; }

.red {
  background-color: red; }

.blue {
  background-color: #1e81f1; }

.green, .draw {
  background-color: green; }

.gray, .cancel {
  background-color: gray; }

.dot {
  color: white; }

.dot span {
  /*margin-top: 21px;*/
  height: 15px;
  width: 15px;
  background-color: white;
  border-radius: 50%;
  display: inline-block; }

.num {
  text-align: center;
  width: 57px;
  height: 57px;
  line-height: 57px;
  color: white;
  font-size: 23px; }

.result-col-total {
  text-align: center;
  width: calc(0.6vw + 2.5rem) !important;
  height: calc(0.6vw + 2.5rem) !important;
  font-size: calc(0.4vw + 1rem) !important;
  line-height: calc(0.6vw + 2.1rem) !important;
  padding-top: 0px;
  white-space: nowrap;
  position: relative;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.8rem;
  text-align: center;
  vertical-align: middle;
  font-weight: 600; }

.cycle-total {
  width: calc(0.6vw + 2.1rem) !important;
  height: calc(0.6vw + 2.1rem) !important;
  border-radius: 50%;
  display: inline-block; }

.c-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #0e1429;
  overflow-x: auto;
  display: flex; }

.c-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 10px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5rem;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.1s ease-in-out; }

.c-nav-icon {
  width: 16px;
  height: 16px; }

.container-bottom-sheet {
  width: 100%;
  height: 100% !important;
  /* background-color: rgb(162, 162, 162); */
  position: relative; }

.bottom-sheet {
  position: fixed;
  padding: 10px;
  bottom: 0;
  width: 100%;
  height: 30px;
  z-index: 1000;
  display: flex;
  background-color: #0e1429; }

.b-account-balance {
  width: 7rem;
  display: flex; }

.b-account-balance-label {
  font-size: 12px;
  font-weight: bold; }

.currency {
  font-size: 12px !important;
  font-weight: bold;
  color: #1e81f1; }

.username {
  font-size: 10px !important; }

.notify-modal {
  height: 35rem !important;
  width: 20rem !important;
  z-index: 99 !important; }

.bg-transparent {
  background-color: transparent;
  border: none; }

.bg-transparent::after {
  background-image: none !important; }
