@import url(../css/font.css);
@keyframes jumpUpDown {
  0% {
    transform: translate(-50%, 0); }
  100% {
    transform: translate(-50%, 10px); } }
@keyframes move {
  0% {
    opacity: 0.9; }
  10% {
    transform: translate3d(-0.1rem, 0, 0); }
  70% {
    transform: scale(1);
    box-shadow: #ff8a0060 0 0 0 .5rem; }
  80% {
    transform: translate3d(-0.1rem, 0, 0); }
  100% {
    transform: scale(1);
    box-shadow: #ff880000 0 0 0 .6rem;
    opacity: 1; } }
.icon-trash {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  -webkit-mask: url("../images/icon/trash.svg") no-repeat center;
  mask: url("../images/icon/trash.svg") no-repeat center;
  mask-size: contain; }

.icon-plus {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  -webkit-mask: url("../images/icon/plus.svg") no-repeat center;
  mask: url("../images/icon/plus.svg") no-repeat center;
  mask-size: contain; }

.icon-minus {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  -webkit-mask: url("../images/icon/minus.svg") no-repeat center;
  mask: url("../images/icon/minus.svg") no-repeat center;
  mask-size: contain; }

.icon-tooltips {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  -webkit-mask: url("../images/icon/tooltips.svg") no-repeat center;
  mask: url("../images/icon/tooltips.svg") no-repeat center;
  mask-size: contain; }

nav .top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
  background-color: #080808; }
  nav .top-nav .nav-logo img {
    width: 7rem; }
  nav .top-nav .mobile-container {
    display: none; }
    nav .top-nav .mobile-container img {
      cursor: pointer; }
nav .bottom-nav {
  height: 3rem;
  background-color: #2C2C2C;
  color: White; }
  nav .bottom-nav .bottom-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 3rem; }
    nav .bottom-nav .bottom-nav-container .bottom-nav-left {
      display: flex;
      flex-direction: row;
      gap: 1rem; }
      nav .bottom-nav .bottom-nav-container .bottom-nav-left .date-time {
        display: flex;
        flex-direction: row;
        white-space: nowrap;
        align-items: center;
        gap: 0.2rem; }
    nav .bottom-nav .bottom-nav-container .bottom-nav-right {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      white-space: nowrap;
      align-items: center; }
      nav .bottom-nav .bottom-nav-container .bottom-nav-right a {
        text-decoration: none;
        color: #8A8A8A; }

.language-box {
  display: flex;
  margin-left: 1%;
  align-items: center;
  background: unset;
  padding: unset;
  border-radius: unset;
  position: relative; }
  .language-box button {
    padding: 0.05rem 0.08rem;
    border: none;
    background-color: transparent;
    color: white;
    gap: 0.5rem; }
    .language-box button i {
      color: white; }
  .language-box .change-language-btn {
    display: flex;
    align-items: center;
    padding: 0.25rem; }
    .language-box .change-language-btn img {
      width: 25px;
      height: auto; }
      .language-box .change-language-btn img.language-icon-size {
        width: 22px;
        margin-right: 0.3rem; }
      .language-box .change-language-btn img.language-dropdown-icon {
        width: 16px;
        background-color: transparent;
        opacity: 1; }
    .language-box .change-language-btn:focus {
      outline: none;
      box-shadow: none; }

.language-dropdown-container {
  position: absolute;
  z-index: 99;
  top: 2.2rem;
  width: 15rem;
  background: #111;
  visibility: hidden;
  opacity: 0;
  border-radius: 0.5rem;
  padding: 1rem 1.2rem 0.5rem 1rem; }
  .language-dropdown-container.is-open {
    visibility: visible;
    opacity: 1; }
  .language-dropdown-container .country-name {
    color: #fff;
    font-size: 0.7rem; }
  .language-dropdown-container .separator {
    margin: 0.25rem 0 0.8rem;
    display: flex;
    align-items: center; }
    .language-dropdown-container .separator .language-icon {
      height: 1.5rem;
      margin-right: 0.3rem; }
    .language-dropdown-container .separator .language-select {
      padding: 0 0.5rem;
      cursor: pointer;
      color: #fff;
      font-size: 0.8rem;
      position: relative;
      text-decoration: none;
      white-space: nowrap; }
      .language-dropdown-container .separator .language-select:hover {
        text-decoration: none; }
      .language-dropdown-container .separator .language-select:not(:last-child)::after {
        content: '/';
        margin-left: 0.5rem;
        color: red; }

#navbar {
  background-color: #161616;
  color: white; }
  #navbar .btn-close {
    filter: invert(1); }
  #navbar .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem; }
    #navbar .offcanvas-body a {
      text-decoration: none;
      color: #8A8A8A; }
    #navbar .offcanvas-body .language-dropdown-container {
      left: -3rem; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  nav .bottom-nav .bottom-nav-container .bottom-nav-left .date-time {
    font-size: 0.8rem; }
  nav .bottom-nav .bottom-nav-container .bottom-nav-right {
    gap: 0.8rem;
    font-size: 0.8rem; }
    nav .bottom-nav .bottom-nav-container .bottom-nav-right button {
      font-size: 0.8rem; } }
@media screen and (max-width: 767.98px) {
  nav .top-nav .nav-logo {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    nav .top-nav .nav-logo .mobile-container {
      display: flex;
      flex-direction: row;
      gap: 1rem; }
  nav .bottom-nav {
    display: none; } }
@media screen and (max-width: 538.98px) {
  nav .top-nav .nav-logo img {
    width: 6rem; }
  nav .top-nav .nav-logo .mobile-container {
    gap: 0.5rem; }
    nav .top-nav .nav-logo .mobile-container button {
      padding: 0.5rem;
      font-size: 0.8rem; }
    nav .top-nav .nav-logo .mobile-container .burger-menu {
      width: 4rem; } }
.primary-btn, .secondary-btn, .login-btn, .join-btn {
  height: 2rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  margin: 0.5rem 0;
  width: 100%;
  color: black;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 1.2rem;
  font-weight: bold; }
  .disabled.primary-btn, .disabled.secondary-btn, .disabled.login-btn, .disabled.join-btn {
    opacity: 0.6;
    cursor: not-allowed; }
  .primary-btn:hover, .secondary-btn:hover, .login-btn:hover, .join-btn:hover {
    text-decoration: none;
    color: white; }

.primary-btn {
  background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
  color: white;
  white-space: nowrap; }

.secondary-btn {
  background-color: #161616;
  color: white;
  border: 1px solid #d6d6d6; }
  .secondary-btn:hover {
    text-decoration: none;
    background-color: #7F7F7F;
    color: white; }
  .secondary-btn:focus {
    border: none; }
  .secondary-btn.active {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    color: white; }
    .secondary-btn.active:hover {
      text-decoration: none;
      background-color: #7F7F7F;
      color: white; }

.login-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  text-transform: uppercase; }

.join-btn {
  border: none;
  background: #FF4E00;
  color: black;
  text-transform: uppercase; }

.alert-msg {
  font-size: 0.8rem;
  font-family: 'averta-semibold';
  color: #E84730; }

.no-data {
  margin-bottom: 1rem; }

@media screen and (max-width: 767.98px) {
  .primary-btn {
    font-size: 0.8rem;
    padding: 1rem; } }
.toastify {
  background: white;
  color: black;
  border-radius: 1rem; }

.list-search {
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #8A8A8A;
  border-radius: 0.5rem;
  color: white;
  padding: 6px 12px; }

.pagination-wrapper {
  display: flex;
  align-items: center;
  margin: 1rem 0; }
  .pagination-wrapper button {
    background: unset;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border: 1px solid #8A8A8A;
    color: #8A8A8A;
    border-radius: 4px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .pagination-wrapper button:disabled {
      opacity: 0.5;
      cursor: default; }
  .pagination-wrapper .pagination {
    display: flex;
    margin: 0; }
    .pagination-wrapper .pagination li {
      list-style: none; }
      .pagination-wrapper .pagination li a {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        border: 1px solid #8A8A8A;
        color: #8A8A8A;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none; }
      .pagination-wrapper .pagination li:hover a {
        background-color: grey;
        color: white; }
    .pagination-wrapper .pagination li.active a {
      background: #E84730;
      color: white; }

#demo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1rem; }
  #demo h6 {
    margin-bottom: 0; }

#modal-past-draw-result {
  border: unset; }
  #modal-past-draw-result .modal-header {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    color: white; }
  #modal-past-draw-result .modal-body {
    background: radial-gradient(90.31% 90.31% at 50% 10.91%, #662400 0%, #161616 53.71%);
    color: white; }
    #modal-past-draw-result .modal-body tr,
    #modal-past-draw-result .modal-body td,
    #modal-past-draw-result .modal-body ul > li {
      color: white;
      border: unset;
      vertical-align: middle; }
    #modal-past-draw-result .modal-body thead {
      display: none; }
    #modal-past-draw-result .modal-body tbody {
      border: unset; }
      #modal-past-draw-result .modal-body tbody ul {
        list-style: none;
        padding: 0;
        margin: 0;
        float: right; }
        #modal-past-draw-result .modal-body tbody ul li {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          margin-right: 10px;
          border-radius: 50%;
          background: linear-gradient(180deg, #FF4E00 0%, #992F00 100%);
          border: 1px solid #FF6500;
          width: 3rem;
          height: 3rem; }
          #modal-past-draw-result .modal-body tbody ul li:last-child {
            margin-right: 0; }
      #modal-past-draw-result .modal-body tbody tr {
        background: #1F2024; }
        #modal-past-draw-result .modal-body tbody tr:nth-child(even) {
          background-color: #161616; }
    #modal-past-draw-result .modal-body #table-past-draw-result_wrapper .row {
      margin-bottom: 1rem; }
  #modal-past-draw-result .page-item.active .page-link {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    border: unset; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #modal-past-draw-result .modal-body tbody ul li {
    width: 2rem;
    height: 2rem; } }
@media screen and (max-width: 767.98px) {
  #modal-past-draw-result .modal-body tbody ul li {
    width: 2rem;
    height: 2rem; } }
@media screen and (max-width: 538.98px) {
  #modal-past-draw-result .modal-body tbody ul li {
    width: 6vw;
    height: 6vw;
    margin-right: 0.3rem; }
  #modal-past-draw-result .modal-body tbody tr td {
    font-size: 0.8rem; } }
#modal-rules {
  border: unset; }
  #modal-rules .modal-header {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    color: white; }
  #modal-rules .modal-body {
    background: radial-gradient(90.31% 90.31% at 50% 10.91%, #662400 0%, #161616 53.71%);
    color: white; }
    #modal-rules .modal-body tr,
    #modal-rules .modal-body td,
    #modal-rules .modal-body ul > li {
      color: white;
      border: unset;
      vertical-align: middle; }
    #modal-rules .modal-body thead tr th {
      border-right: 1px solid white;
      border-top: none;
      border-left: none;
      border-bottom: none; }
      #modal-rules .modal-body thead tr th:last-child {
        border-right: none; }
    #modal-rules .modal-body tbody {
      border: unset; }
      #modal-rules .modal-body tbody ul {
        list-style: none;
        padding: 0;
        margin: 0;
        float: right; }
        #modal-rules .modal-body tbody ul li {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          margin-right: 10px;
          border-radius: 50%;
          background: linear-gradient(180deg, #FF4E00 0%, #992F00 100%);
          border: 1px solid #FF6500;
          width: 3rem;
          height: 3rem; }
          #modal-rules .modal-body tbody ul li:last-child {
            margin-right: 0; }
      #modal-rules .modal-body tbody tr {
        background: white; }
        #modal-rules .modal-body tbody tr td {
          color: black;
          border: 1px solid grey; }
  #modal-rules .accordion-item {
    border: none; }
    #modal-rules .accordion-item .accordion-button {
      background: #2C2C2C;
      color: white;
      --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      --bs-accordion-btn-active-icon: var(--bs-accordion-btn-icon); }
      #modal-rules .accordion-item .accordion-button:focus {
        outline: none;
        box-shadow: none; }
    #modal-rules .accordion-item .accordion-body {
      background: #161616;
      color: white;
      padding: 2rem 1rem; }
    #modal-rules .accordion-item .promo-content p span {
      color: #FF4E00;
      font-weight: bold; }
    #modal-rules .accordion-item .promo-content figure {
      text-align: center; }
      #modal-rules .accordion-item .promo-content figure table {
        width: 100%;
        color: white;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid white;
        border-radius: 8px;
        overflow: hidden; }
        #modal-rules .accordion-item .promo-content figure table thead tr:first-child th:first-child {
          border-top-left-radius: 8px; }
        #modal-rules .accordion-item .promo-content figure table thead tr:first-child th:last-child {
          border-top-right-radius: 8px; }
        #modal-rules .accordion-item .promo-content figure table tbody tr:last-child td:first-child {
          border-bottom-left-radius: 8px; }
        #modal-rules .accordion-item .promo-content figure table tbody tr:last-child td:last-child {
          border-bottom-right-radius: 8px; }
    #modal-rules .accordion-item .promo-content thead {
      background: #FF4E00; }

#modal-past-results {
  border: unset; }
  #modal-past-results .modal-header {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    color: white; }
  #modal-past-results .title {
    background: #2C2C2C;
    color: white;
    padding: 1rem; }
  #modal-past-results .modal-body {
    background: #161616;
    color: white; }
    #modal-past-results .modal-body .winners-details-container .winners-details-list {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem; }
      #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize {
        width: 50%;
        color: white;
        position: sticky;
        top: 0;
        z-index: 10; }
        #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          background: linear-gradient(135.28deg, #421208 17.72%, #FF4E00 262.92%);
          border-radius: 1rem;
          padding: 1rem; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item img {
            width: 8rem;
            margin-bottom: 0.3rem; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item img.medal {
              width: 6rem; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item img.grand {
              margin-left: 1.1rem; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p {
            margin-bottom: 0;
            text-align: center; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.prize {
              color: #FFF0BC;
              font-size: 1.2rem; }
              #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.prize.\31st {
                color: #FFDF96; }
              #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.prize.\32nd {
                color: #C3C3C3; }
              #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.prize.\33rd {
                color: #EBAD8F; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.amount {
              color: white;
              font-weight: bold;
              font-size: 1.5rem; }
      #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard {
        width: 50%;
        overflow: hidden; }
        #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table {
          width: 100%;
          border-collapse: collapse;
          border-spacing: 0; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead tr {
            position: sticky;
            top: 0;
            z-index: 10;
            background: linear-gradient(91.05deg, #421208 43.91%, #FF4E00 199.67%); }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead th {
            padding: 12px;
            text-align: center; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead th:first-child {
              border-top-left-radius: 1rem; }
            #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead th:last-child {
              border-top-right-radius: 1rem; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table tbody tr:nth-child(odd) {
            background-color: #1F2024;
            color: white; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table tbody tr:nth-child(even) {
            background-color: #161616;
            color: white; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table tbody tr td {
            padding: 12px;
            text-align: center; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table tbody tr:last-child td:first-child {
            border-bottom-left-radius: 1rem; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table tbody tr:last-child td:last-child {
            border-bottom-right-radius: 1rem; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize {
    width: 40%; }
    #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p {
      font-size: 1.2rem;
      text-align: center; }
      #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.amount {
        font-size: 1.3rem; }
  #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard {
    width: 60%; }
    #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead th {
      font-size: 0.8rem; } }
@media screen and (max-width: 767.98px) {
  #modal-past-results .modal-body .winners-details-container .winners-details-list {
    flex-direction: column; }
    #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize {
      width: unset;
      position: relative; }
      #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-around; }
        #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item .text-group {
          display: flex;
          flex-direction: column;
          justify-content: space-around; }
        #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p {
          font-size: 1.2rem;
          text-align: center; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item p.amount {
            font-size: 1.3rem; }
        #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item img {
          justify-self: center;
          grid-column: 1;
          grid-row: 1 / -1;
          align-self: center;
          width: 5rem; }
          #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-prize .winner-prize-item img.medal {
            width: 5rem; }
    #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard {
      width: unset; }
      #modal-past-results .modal-body .winners-details-container .winners-details-list .winners-details-leaderboard table thead th {
        font-size: 0.8rem; } }
#modal-announcement {
  border: unset; }
  #modal-announcement .modal-header {
    background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
    color: white; }

#section-banner picture img {
  background-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
  height: 25rem; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #section-banner picture img {
    height: 250px; } }
@media screen and (max-width: 767.98px) {
  #section-banner picture img {
    height: auto; } }
#section-tabs {
  background-color: #161616;
  color: white; }
  #section-tabs .tab-container {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    gap: 1rem;
    top: -1rem;
    position: relative; }
    #section-tabs .tab-container li {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 3rem;
      padding: 0.8rem;
      box-sizing: border-box;
      font-weight: bold;
      background-color: #1F2024;
      border-radius: 0.7rem;
      gap: 0.2rem; }
      #section-tabs .tab-container li img {
        width: 2rem;
        filter: grayscale(100%) brightness(70%); }
      #section-tabs .tab-container li span {
        padding-top: 0.2rem;
        color: #8A8A8A; }
      #section-tabs .tab-container li.active .tab-item {
        border-bottom: 5px solid #FF4E00;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
        padding-bottom: 0.2rem; }
        #section-tabs .tab-container li.active .tab-item img {
          filter: none; }
        #section-tabs .tab-container li.active .tab-item span {
          color: #FF4E00; }

@media screen and (max-width: 767.98px) {
  #section-tabs .tab-container {
    overflow-x: auto;
    white-space: nowrap;
    gap: 1rem;
    height: 3.5rem; }
    #section-tabs .tab-container::-webkit-scrollbar {
      height: 5px; }
    #section-tabs .tab-container::-webkit-scrollbar-track {
      background-color: transparent; }
    #section-tabs .tab-container::-webkit-scrollbar-thumb {
      background-color: #d6dee1;
      border-radius: 10px;
      background-clip: content-box;
      z-index: 20; }
    #section-tabs .tab-container::-webkit-scrollbar-thumb:hover {
      background-color: #B2BEC3;
      overflow: overlay; }
    #section-tabs .tab-container li .tab-item span {
      font-size: 0.8rem; } }
#section-contents {
  background-color: #161616;
  color: #BEBEBE; }
  #section-contents .content-status {
    display: none; }
    #section-contents .content-status.active {
      display: block; }
  #section-contents .section {
    margin-bottom: 2rem; }
  #section-contents .toto-jackpot .toto-jackpot-rules {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem; }
    #section-contents .toto-jackpot .toto-jackpot-rules:hover .rules span {
      color: #FF4E00; }
    #section-contents .toto-jackpot .toto-jackpot-rules:hover .rules i {
      background-color: #FF4E00; }
    #section-contents .toto-jackpot .toto-jackpot-rules .rules {
      cursor: pointer; }
      #section-contents .toto-jackpot .toto-jackpot-rules .rules i {
        cursor: pointer; }
  #section-contents .toto-jackpot .toto-jackpot-container {
    background: radial-gradient(391.58% 414.53% at 81.53% 258.53%, #FF4E00 0%, #1F2024 53.04%);
    width: 100%;
    border-radius: 1rem;
    padding: 2rem 2rem 1rem 2rem;
    min-height: 34rem;
    display: flex;
    flex-direction: column; }
    #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-tab {
        display: flex;
        justify-content: space-evenly;
        width: 80%;
        background: #161616;
        border-radius: 5rem;
        color: white;
        height: 3rem;
        align-items: center;
        text-align: center; }
        #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-tab .tab {
          flex: 1;
          width: 50%;
          box-sizing: border-box;
          cursor: pointer; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-tab .tab:hover {
            background-color: #7F7F7F;
            height: 2.25rem;
            border-radius: 1rem;
            display: flex;
            justify-content: center;
            align-items: center; }
        #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-tab .active {
          background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
          height: 2.25rem;
          border-radius: 1rem;
          display: flex;
          justify-content: center;
          align-items: center; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-my-record .primary-btn {
        white-space: nowrap; }
    #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-content {
      display: none;
      flex: 1 1 auto; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-content.active {
        display: block; }
    #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container {
        background: #080808;
        border-radius: 1rem;
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem; }
        #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col {
          width: 3rem;
          height: 3rem;
          background: #2C2C2C;
          border-radius: 1rem;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: default;
          font-weight: bold; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.no-digit:not(:empty) {
            background: #FF4E00;
            color: white; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.refresh {
            background: unset;
            cursor: pointer; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.refresh img {
              width: 2rem;
              height: auto;
              transition: transform 0.4s ease; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.refresh:hover img {
              transform: rotate(180deg); }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.submit {
            background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
            color: white;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.submit.disabled {
              cursor: not-allowed;
              background: grey; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.submit:hover {
              transform: scale(1.1);
              box-shadow: 0 0 10px rgba(255, 78, 0, 0.4); }
    #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool {
      background: #080808;
      border-radius: 1rem;
      display: flex;
      gap: 0.5rem;
      padding: 1rem 0.5rem;
      justify-content: center;
      align-items: center;
      margin-bottom: 1rem; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container {
        display: flex;
        justify-content: center;
        flex-direction: column; }
        #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-header {
          text-align: center;
          padding-bottom: 1rem; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-header span {
            color: #FF4E00; }
        #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          gap: 0.5rem; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content.inactive {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content.inactive .number-pool-digit {
              cursor: not-allowed; }
          #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content .number-pool-digit {
            width: 2.5rem;
            height: 2.5rem;
            background: #2C2C2C;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content .number-pool-digit.active {
              background: #FF4E00;
              color: white; }
            #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content .number-pool-digit:hover {
              background-color: #7F7F7F;
              color: #000064; }
    #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-ticket {
      text-align: center; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-ticket h3 {
        font-size: 1rem; }
      #section-contents .toto-jackpot .toto-jackpot-container .toto-jackpot-ticket span {
        color: #FF4E00; }
    #section-contents .toto-jackpot .toto-jackpot-container .content-auto {
      width: 100%; }
      #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container {
        width: calc(70% - 5px);
        margin: 0 auto; }
      #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-header {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
        gap: 0.5rem; }
      #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0; }
        #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .selectall-container {
          display: flex;
          justify-content: flex-end;
          margin-bottom: 0.7rem;
          display: none; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .selectall-container.active {
            display: flex; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .selectall-container .selectall {
            color: #FF4E00;
            font-weight: bold;
            cursor: pointer; }
        #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item {
          border: 1px solid #515151;
          border-radius: 0.5rem;
          padding: 1rem;
          height: 2rem;
          width: 100%;
          background-color: #161616;
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-weight: bold;
          margin-bottom: 1rem;
          cursor: pointer; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item.active {
            border: 3px solid #FF4E00; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .digit {
            letter-spacing: 1px; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .minus,
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .plus {
            cursor: pointer; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .plus {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 0.7rem;
            height: 0.7rem; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .minus .icon-trash {
            transition: transform 0.2s ease; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item .minus:hover .icon-trash {
            transform: scale(1.5); }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item input[type="checkbox"] {
            transform: scale(1.2);
            cursor: pointer; }
        #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-item-wrapper {
          flex: 1;
          overflow-y: auto;
          min-height: 17rem; }
        #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-action {
          display: flex;
          gap: 1rem;
          margin-top: auto; }
          #section-contents .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-content .toto-jackpot-auto-action .secondary-btn {
            border: 1px solid #FF4E00;
            color: #FF4E00;
            background-color: unset; }
  #section-contents .toto-jackpot .toto-jackpot-mobile {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1rem; }
    #section-contents .toto-jackpot .toto-jackpot-mobile .col.refresh {
      flex: unset; }
      #section-contents .toto-jackpot .toto-jackpot-mobile .col.refresh img {
        width: 1.5rem; }
  #section-contents #content-current .current-date-time {
    background: linear-gradient(135.55deg, #1F2024 58.75%, #FF4E00 213.52%);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0 1rem 0; }
    #section-contents #content-current .current-date-time .date,
    #section-contents #content-current .current-date-time .time {
      display: flex;
      flex-direction: column;
      gap: 0.7rem; }
      #section-contents #content-current .current-date-time .date .wrapper,
      #section-contents #content-current .current-date-time .time .wrapper {
        display: flex;
        gap: 1rem; }
        #section-contents #content-current .current-date-time .date .wrapper .icon.calendar img,
        #section-contents #content-current .current-date-time .time .wrapper .icon.calendar img {
          height: 4rem;
          width: auto; }
        #section-contents #content-current .current-date-time .date .wrapper .icon img,
        #section-contents #content-current .current-date-time .time .wrapper .icon img {
          width: 2rem;
          height: auto; }
        #section-contents #content-current .current-date-time .date .wrapper .date-time,
        #section-contents #content-current .current-date-time .time .wrapper .date-time {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 1rem; }
          #section-contents #content-current .current-date-time .date .wrapper .date-time div,
          #section-contents #content-current .current-date-time .time .wrapper .date-time div {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem; }
            #section-contents #content-current .current-date-time .date .wrapper .date-time div span,
            #section-contents #content-current .current-date-time .time .wrapper .date-time div span {
              font-size: 0.8rem;
              font-weight: 400;
              padding-top: 0.2rem; }
        #section-contents #content-current .current-date-time .date .wrapper .date,
        #section-contents #content-current .current-date-time .time .wrapper .date {
          font-size: 1.5rem;
          color: white;
          font-weight: 800;
          justify-content: center; }
      #section-contents #content-current .current-date-time .date p,
      #section-contents #content-current .current-date-time .time p {
        margin-bottom: 0;
        text-align: center; }
  #section-contents #content-current .current-toto-container {
    display: grid;
    grid-template-columns: calc(40% - 0.5rem) calc(60% - 0.5rem);
    gap: 1rem; }
    #section-contents #content-current .current-toto-container .toto-prize {
      display: flex;
      flex-direction: column;
      gap: 1rem; }
      #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        overflow: hidden; }
        #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-bg {
          position: absolute;
          inset: 0;
          z-index: 1; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-bg img {
            width: 100%;
            height: 100%;
            display: block; }
        #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details {
          position: relative;
          z-index: 2;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          height: 100%;
          color: #fff;
          text-align: center;
          padding: 2rem;
          top: 1rem; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details img {
            width: 6rem; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details p {
            margin: 0; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details p:first-of-type {
              font-weight: 500;
              font-size: 1rem; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details p:nth-of-type(2), #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details p:nth-of-type(3) {
              font-size: 1.5rem;
              font-weight: bold; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-grand-prize .prize-details p:nth-of-type(4) {
              font-size: 0.8rem;
              font-weight: 400;
              color: #D6D6D6; }
      #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container {
        display: flex;
        gap: 1rem; }
        #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item {
          background: radial-gradient(689.53% 1200.49% at 225.9% 460.99%, #FF4E00 14.27%, #421208 92.2%);
          width: 100%;
          border-radius: 1rem;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          padding: 1rem;
          text-align: center; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item:nth-child(2) p.title {
            color: #C3C3C3; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item:nth-child(3) p.title {
            color: #EBAD8F; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item img {
            width: 4rem; }
          #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item p {
            margin-bottom: 0; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item p.title {
              color: #FFDF96;
              font-weight: 600; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item p.amount {
              color: white;
              font-weight: bold; }
            #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item p.date {
              color: #D6D6D6;
              font-size: small; }
  #section-contents #content-current .current-past-results .past-results-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem; }
    #section-contents #content-current .current-past-results .past-results-header .title,
    #section-contents #content-current .current-past-results .past-results-header .view-more {
      color: #FF4E00; }
    #section-contents #content-current .current-past-results .past-results-header .view-more {
      cursor: pointer; }
  #section-contents #content-current .current-past-results .past-results-content {
    display: flex;
    flex-direction: column; }
    #section-contents #content-current .current-past-results .past-results-content .past-results-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 3rem;
      background-color: #1F2024;
      padding: 2rem;
      border-radius: 0.5rem; }
      #section-contents #content-current .current-past-results .past-results-content .past-results-item:nth-child(even) {
        background-color: #161616; }
      #section-contents #content-current .current-past-results .past-results-content .past-results-item .result-digit {
        display: flex;
        flex-direction: row;
        gap: 1rem; }
        #section-contents #content-current .current-past-results .past-results-content .past-results-item .result-digit .result-digit-list {
          border-radius: 50%;
          color: white;
          background-color: #E84730;
          width: 2.5rem;
          height: 2.5rem;
          display: flex;
          justify-content: center;
          align-items: center; }
  #section-contents #content-past .past-results-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem; }
    #section-contents #content-past .past-results-header .title {
      color: #FF4E00; }
    #section-contents #content-past .past-results-header .rules {
      cursor: pointer; }
  #section-contents #content-past .past-results-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
    #section-contents #content-past .past-results-body .past-results-list .list-header {
      background: #2C2C2C;
      color: white;
      text-align: center;
      border-radius: 0.8rem 0.8rem 0 0;
      padding: 0.8rem 0; }
    #section-contents #content-past .past-results-body .past-results-list .list-body {
      background: radial-gradient(391.58% 414.53% at 81.53% 258.53%, #FF4E00 0%, #1F2024 48.33%);
      border-radius: 0 0 0.8rem 0.8rem;
      padding: 1rem; }
      #section-contents #content-past .past-results-body .past-results-list .list-body .list-title {
        margin-bottom: 1rem; }
        #section-contents #content-past .past-results-body .past-results-list .list-body .list-title p {
          margin-bottom: 0.2rem; }
          #section-contents #content-past .past-results-body .past-results-list .list-body .list-title p.amount {
            font-weight: bolder;
            color: white; }
      #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner {
        border: 1px solid #515151;
        border-radius: 0.5rem;
        margin-bottom: 1rem; }
        #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-container {
          display: flex;
          justify-content: space-between;
          padding: 1rem 1rem 0.5rem 1rem; }
          #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-container .winners-details {
            color: #FF4E00;
            cursor: pointer; }
        #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit {
          background: #161616;
          display: flex;
          flex-direction: row;
          justify-content: center;
          gap: 1rem;
          padding: 1rem;
          margin: 0 1rem 1rem 1rem;
          border-radius: 5rem; }
          #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit .win-no {
            border-radius: 50%;
            color: white;
            background-color: #E84730;
            width: 2rem;
            height: 2rem;
            display: flex;
            justify-content: center;
            align-items: center; }
      #section-contents #content-past .past-results-body .past-results-list .list-body .list-no-of-winners {
        text-align: center; }

.col.refresh {
  background: unset;
  cursor: pointer; }
  .col.refresh img {
    width: 2rem;
    height: auto;
    transition: transform 0.4s ease; }
  .col.refresh:hover img {
    transform: rotate(180deg); }

@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item {
    padding: 1rem 0.1rem; }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-my-record .primary-btn {
    white-space: nowrap; }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content {
    grid-template-columns: repeat(9, 1fr); }
  #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit {
    margin: 0 0.5rem 0.5rem 0.5rem; }
    #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit .win-no {
      width: 1.5rem;
      height: 1.5rem; } }
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #section-contents #content-current .current-date-time .date .wrapper .date,
  #section-contents #content-current .current-date-time .time .wrapper .date {
    font-size: 1.2rem; }
  #section-contents #content-current .current-date-time .date .wrapper .date-time div,
  #section-contents #content-current .current-date-time .time .wrapper .date-time div {
    font-size: 1.2rem; }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container {
    transform: scale(0.8); }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content {
    grid-template-columns: repeat(6, 1fr); }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container {
    width: calc(80% - 5px);
    margin: 0 auto; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container .toto-jackpot-auto-item {
      height: 3rem;
      margin-bottom: 0.7rem; }
  #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container {
    flex-direction: column; }
  #section-contents #content-past .past-results-body {
    grid-template-columns: repeat(2, 1fr); }
    #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit {
      margin: 0 0.5rem 0.5rem 0.5rem; }
      #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit .win-no {
        width: 1.5rem;
        height: 1.5rem; } }
@media screen and (max-width: 767.98px) {
  #section-contents #content-current .current-date-time {
    flex-direction: column;
    background: unset;
    margin-bottom: 0; }
    #section-contents #content-current .current-date-time div {
      margin-bottom: 0.5REM; }
    #section-contents #content-current .current-date-time .date,
    #section-contents #content-current .current-date-time .time {
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: linear-gradient(135.55deg, #1F2024 58.75%, #FF4E00 213.52%);
      padding: 1rem;
      gap: 0;
      border-radius: 1rem; }
      #section-contents #content-current .current-date-time .date .wrapper,
      #section-contents #content-current .current-date-time .time .wrapper {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
        width: 25rem; }
    #section-contents #content-current .current-date-time .time .wrapper .date {
      padding-right: 4rem;
      background: unset; }
    #section-contents #content-current .current-date-time .time .wrapper .icon.calendar img {
      margin-left: -1rem; }
  #section-contents #content-current .current-toto-container {
    display: flex;
    flex-direction: column; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content {
      grid-template-columns: repeat(8, 1fr); }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container {
      width: calc(80% - 5px);
      margin: 0 auto; }
      #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container .toto-jackpot-auto-action .primary-btn {
        padding: 1.2rem; }
  #section-contents #content-current .current-past-results .past-results-content .past-results-item {
    padding: 2rem 1rem; }
  #section-contents #content-past .past-results-body {
    grid-template-columns: repeat(2, 1fr); }
    #section-contents #content-past .past-results-body .past-results-list {
      zoom: 0.7; } }
@media screen and (max-width: 538.98px) {
  #section-contents #content-current .current-date-time .date .wrapper,
  #section-contents #content-current .current-date-time .time .wrapper {
    width: 100%;
    padding: 0 1rem; }
    #section-contents #content-current .current-date-time .date .wrapper .date,
    #section-contents #content-current .current-date-time .time .wrapper .date {
      font-size: 1rem;
      padding-bottom: 0; }
    #section-contents #content-current .current-date-time .date .wrapper .date-time,
    #section-contents #content-current .current-date-time .time .wrapper .date-time {
      gap: 0.5rem; }
      #section-contents #content-current .current-date-time .date .wrapper .date-time div,
      #section-contents #content-current .current-date-time .time .wrapper .date-time div {
        font-size: 1rem; }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container {
    padding: 2rem 1rem 1rem 1rem; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-header {
      justify-content: center; }
      #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-header .toto-jackpot-my-record {
        display: none; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-number-pool .number-pool-container .number-pool-content {
      grid-template-columns: repeat(6, 1fr); }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit {
      flex-direction: column; }
      #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col {
        width: 2rem;
        height: 2rem;
        border-radius: 0.5rem; }
        #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .col.submit {
          height: 2.2rem; }
      #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .toto-jackpot-no-digit .no-digit-container .refresh {
        display: none; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-container .content-auto .toto-jackpot-auto-container {
      width: calc(95% - 5px);
      margin: 0 auto; }
  #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; }
    #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-mobile .col.refresh {
      flex: unset; }
      #section-contents #content-current .current-toto-container .toto-jackpot .toto-jackpot-mobile .col.refresh img {
        width: 1.5rem; }
  #section-contents #content-current .current-toto-container .toto-prize .toto-prize-container .toto-prize-item {
    padding: 1rem 0.2rem; }
  #section-contents #content-current .current-past-results .past-results-content .past-results-item .result-digit {
    gap: 0.2rem; }
    #section-contents #content-current .current-past-results .past-results-content .past-results-item .result-digit .result-digit-list {
      width: 1.8rem;
      height: 1.8rem; }
  #section-contents #content-current .current-past-results .past-results-content .past-results-item .date {
    font-size: 0.8rem; }
  #section-contents #content-past .past-results-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem; }
    #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-container {
      flex-direction: column; }
    #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit {
      margin: 0;
      gap: 0.4rem; }
      #section-contents #content-past .past-results-body .past-results-list .list-body .list-winner .list-winner-digit .win-no {
        width: 6vw;
        height: 6vw; } }
#my-record-cart .offcanvas-header {
  background: linear-gradient(39.71deg, #FF4E00 7.3%, #FFB800 100%);
  color: white; }
#my-record-cart .offcanvas-body {
  background: #161616;
  color: white; }
  #my-record-cart .offcanvas-body .record-container .record-item {
    display: flex;
    height: 2.5rem;
    gap: 1rem;
    margin-bottom: 0.8rem; }
    #my-record-cart .offcanvas-body .record-container .record-item .record-number {
      width: 60%;
      border: 1px solid #515151;
      border-radius: 0.5rem;
      display: flex;
      justify-content: center;
      align-items: center; }
    #my-record-cart .offcanvas-body .record-container .record-item input[type=number]::-webkit-inner-spin-button,
    #my-record-cart .offcanvas-body .record-container .record-item input[type=number]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
    #my-record-cart .offcanvas-body .record-container .record-item input[type=number] {
      -moz-appearance: textfield; }
    #my-record-cart .offcanvas-body .record-container .record-item .record-action {
      width: 40%;
      border: 1px solid #515151;
      border-radius: 0.5rem;
      align-content: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.3rem 0.5rem; }
      #my-record-cart .offcanvas-body .record-container .record-item .record-action .record-minus,
      #my-record-cart .offcanvas-body .record-container .record-item .record-action .record-plus {
        cursor: pointer; }
      #my-record-cart .offcanvas-body .record-container .record-item .record-action .record-no {
        width: 2rem;
        text-align: center;
        background-color: transparent;
        color: white;
        border: none; }
#my-record-cart .offcanvas-footer {
  background: #161616;
  color: white;
  text-align: center; }
  #my-record-cart .offcanvas-footer span {
    color: #FF6500;
    font-weight: bold; }

div.dt-container div.dt-search input {
  background-color: transparent;
  border: 1px solid #8A8A8A;
  color: white; }

.dt-paging-button.page-item a {
  background-color: transparent;
  border: 1px solid #8A8A8A;
  color: white; }

#content-my-record .my-record-list {
  width: 100%;
  border: 1px solid #333;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem; }
  #content-my-record .my-record-list .date {
    background: linear-gradient(91.05deg, #421208 43.91%, #FF4E00 199.67%);
    color: white;
    padding: 0.5rem 1rem;
    text-align: left;
    font-weight: bold;
    font-size: 1rem; }
  #content-my-record .my-record-list .my-record-table {
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr; }
    #content-my-record .my-record-list .my-record-table .my-record-table-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr; }
      #content-my-record .my-record-list .my-record-table .my-record-table-header .col {
        padding: 0.75rem;
        text-align: center; }
    #content-my-record .my-record-list .my-record-table .my-record-table-body {
      display: grid;
      grid-auto-rows: auto; }
      #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr; }
        #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row:nth-child(odd) {
          background-color: #1F2024;
          color: white; }
        #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row:nth-child(even) {
          background-color: #161616;
          color: white; }
        #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .col {
          padding: 0.75rem;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center; }
        #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .winning-digit {
          display: flex;
          flex-direction: row;
          gap: 1rem;
          padding: 1rem;
          margin: 0 1rem;
          justify-content: center; }
          #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .winning-digit .win-no {
            border-radius: 50%;
            color: white;
            background-color: #E84730;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center; }
  #content-my-record .my-record-list .view-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem; }
    #content-my-record .my-record-list .view-more-container .view-more {
      cursor: pointer;
      color: #FF4E00; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .winning-digit {
    padding: 0;
    margin: 0; } }
@media screen and (max-width: 767.98px) {
  #content-my-record .my-record-list .my-record-table {
    display: grid;
    grid-template-rows: auto 1fr; }
    #content-my-record .my-record-list .my-record-table .my-record-table-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      text-align: center; }
      #content-my-record .my-record-list .my-record-table .my-record-table-header .col {
        padding: 0.5rem; }
    #content-my-record .my-record-list .my-record-table .my-record-table-body {
      display: grid;
      grid-auto-rows: auto; }
      #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        align-items: center; }
        #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .col {
          min-width: 0;
          overflow-wrap: break-word;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center; }
          #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .col.winning-digit {
            flex-wrap: wrap;
            gap: 0.4rem;
            margin: 0;
            padding: 1rem 0; }
          #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .col .win-no {
            width: 2rem;
            height: 2rem; } }
@media screen and (max-width: 538.98px) {
  #content-my-record .my-record-list .my-record-table .my-record-table-body .list-row .col .win-no {
    width: 5vw;
    height: 5vw; } }
#footer {
  color: #6a6f7c;
  font-size: 14px;
  background: #191919;
  padding: 0; }
  #footer .footer-top {
    padding: 50px 0 70px 0;
    border-bottom: solid 1px #222; }
    #footer .footer-top h4 {
      font-weight: 400;
      color: #FFFFFF;
      font-family: "Nunito Sans", Sans-serif;
      font-size: 12px;
      margin-bottom: 14px;
      line-height: 26px; }
    #footer .footer-top .curacao_content {
      padding-right: 50px;
      font-size: 11px;
      color: #9da5b7; }
    #footer .footer-top .copyright {
      font-size: 10px; }
      #footer .footer-top .copyright .icon-18 {
        display: inline-block;
        background: url("../images/footer/18over.png") no-repeat center center;
        background-size: 100% 100%;
        width: 23px;
        height: 21px; }
    #footer .footer-top .cert_icon {
      margin-bottom: 40px; }
      #footer .footer-top .cert_icon a {
        margin: 0 10px 10px 0; }
    #footer .footer-top .ft-cert a img {
      opacity: 0.4; }
    #footer .footer-top .ft-cert a svg {
      opacity: 0.4; }
    #footer .footer-top .payment_icon {
      margin-bottom: 20px; }
      #footer .footer-top .payment_icon a {
        margin: 0 10px 0 0; }
        #footer .footer-top .payment_icon a img {
          max-height: 30px;
          opacity: 0.4; }
        #footer .footer-top .payment_icon a svg {
          max-height: 30px;
          opacity: 0.4; }
    #footer .footer-top .payment_icon2 a {
      margin: 0 10px 0 0; }
      #footer .footer-top .payment_icon2 a img {
        max-height: 20px;
        opacity: 0.4; }
      #footer .footer-top .payment_icon2 a svg {
        max-height: 20px;
        opacity: 0.4; }
    #footer .footer-top .security_icon {
      margin-bottom: 50px; }
      #footer .footer-top .security_icon a {
        margin: 0 10px 0 0; }
        #footer .footer-top .security_icon a img {
          max-height: 25px;
          opacity: 0.4; }
        #footer .footer-top .security_icon a svg {
          max-height: 25px;
          opacity: 0.4; }
    #footer .footer-top .responsible_icon a {
      margin: 0 20px 0 0; }
      #footer .footer-top .responsible_icon a img {
        max-height: 30px;
        opacity: 0.4; }
      #footer .footer-top .responsible_icon a svg {
        max-height: 30px;
        opacity: 0.4; }
  #footer .footer-middle {
    padding: 15px 0 15px 0; }
    #footer .footer-middle .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      #footer .footer-middle .footer-links ul li {
        float: left;
        display: inline;
        padding: 0px 10px;
        line-height: 12px;
        border-right: solid 1px #6a6f7c;
        color: #6a6f7c; }
        #footer .footer-middle .footer-links ul li:first-child {
          padding: 0px 10px 0 0; }
        #footer .footer-middle .footer-links ul li:last-child {
          border-right: none; }
        #footer .footer-middle .footer-links ul li a {
          padding: 0;
          font-size: 12px;
          color: #6a6f7c; }
          #footer .footer-middle .footer-links ul li a:hover {
            color: #ff4e00; }
    #footer .footer-middle .footer-description {
      padding: 0;
      color: rgba(162, 170, 189, 0.4); }
      #footer .footer-middle .footer-description h2 {
        color: #fff;
        font-size: 12px;
        font-weight: 700; }
      #footer .footer-middle .footer-description p {
        color: #6a6f7c;
        font-size: 12px; }
        #footer .footer-middle .footer-description p a {
          color: #6a6f7c;
          text-decoration: underline;
          font-size: 14px; }
  #footer .social-links a {
    font-size: 20px;
    display: inline-block;
    background: #fff;
    color: #151515;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 20px;
    transition: 0.3s; }
    #footer .social-links a:hover {
      text-decoration: none; }
  #footer .footer-bottom {
    border-top: solid 1px #222;
    padding: 10px 0 90px 0; }
  #footer .powered {
    vertical-align: middle;
    line-height: 26px;
    color: #5b606a;
    font-size: 12px; }
    #footer .powered .superswan {
      display: inline-block;
      width: 86px;
      height: 13px;
      background: url(../images/Superswan-93x14px.svg) no-repeat;
      background-size: 100% 100%; }
  #footer .ft-logo {
    max-height: 22px; }

#footer .footer-top .footer-flex {
  display: flex;
  justify-content: space-between; }
  #footer .footer-top .footer-flex .copyright-sec {
    width: 35%; }
  #footer .footer-top .footer-flex .payment-method {
    width: 35%; }
  #footer .footer-top .footer-flex .licence {
    width: 25%; }
#footer .footer-top .security-icon {
  margin-bottom: 50px; }
  #footer .footer-top .security-icon i {
    margin-right: 1rem; }
#footer .footer-top .responsible-icon {
  margin-bottom: 50px; }
#footer .footer-top .cert_icon div {
  margin-bottom: 20px; }
#footer .footer-top .cert_icon .icon-bmm {
  width: 70px; }
#footer .footer-top .cert_icon .icon-itechlab {
  width: 40px; }
#footer .footer-top .cert_icon .icon-global {
  width: 37px; }
#footer .footer-top img.conor-footer {
  width: auto;
  height: 12rem; }
#footer .footer-mobile {
  display: none; }
#footer .footer-middle .menu {
  margin-bottom: 3rem; }
#footer .footer-bottom .powered {
  opacity: 0; }
#footer button.js-expander-button.expander_button {
  padding-left: 0;
  background: none;
  border: none;
  color: #fff;
  color: #5b606a;
  font-size: 13px;
  text-decoration: underline; }

@media screen and (min-width: 992px) and (max-width: 1279px) {
  #footer .footer-top img.conor-footer {
    height: 8rem; }
  #footer .footer-top .cert_icon .icon-bmm {
    height: 13px !important;
    width: 50px !important; }
  #footer .footer-top .cert_icon .icon-payouts {
    height: 19px !important;
    width: 40px !important; }
  #footer .footer-top .cert_icon .icon-godaddy {
    width: 90px !important; } }
@media screen and (max-width: 991px) {
  #footer .footer-top .footer-flex {
    flex-direction: column; }
    #footer .footer-top .footer-flex .copyright-sec {
      width: 100%; }
  #footer .footer-icon-group.footer-flex {
    display: none; }
  #footer .footer-mobile {
    display: block;
    padding-top: 1rem; }
    #footer .footer-mobile .cert-conor {
      display: flex;
      justify-content: space-between; }
      #footer .footer-mobile .cert-conor .conor-mobile img {
        width: 100%;
        height: 10rem; }
    #footer .footer-mobile .security-gaming {
      display: flex;
      justify-content: space-between; }
    #footer .footer-mobile .copyright-social {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      #footer .footer-mobile .copyright-social .copyright .copyright {
        display: flex;
        justify-content: space-between;
        align-items: center; }
    #footer .footer-mobile .social a {
      margin: 0; } }
@media screen and (max-width: 538px) {
  #footer .footer-top .cert_icon .icon-bmm {
    height: 15px;
    width: 50px; }
  #footer .footer-top .cert_icon .icon-itechlab {
    height: 25px;
    width: 25px; }
  #footer .footer-top .cert_icon .icon-global {
    height: 33px;
    width: 28px; }
  #footer .footer-top .cert_icon .icon-payouts {
    height: 19px;
    width: 45px; }
  #footer .footer-top .cert_icon .icon-godaddy {
    height: 17px;
    width: 110px; }
  #footer .footer-top .security-icon i {
    margin-right: 0.3rem; }
  #footer .footer-top .security-icon .icon-iovation {
    width: 80px; }
  #footer .footer-top .security-icon .icon-threatmetric {
    width: 105px; }
  #footer .footer-top .icon-bga {
    height: 22px;
    width: 38px; }
  #footer .footer-top .copyright {
    display: block; }
  #footer .footer-top .copyright-social .social {
    padding: 0; }
  #footer .footer-bottom .copyright {
    visibility: hidden; }
  #footer .footer-mobile .cert-conor .conor-mobile img {
    height: 7rem; }
  #footer .icon-eeziepay {
    width: 50px;
    height: 25px; }
  #footer .icon-visa {
    height: 15px;
    width: 45px; }
  #footer .icon-fpx {
    height: 20px;
    width: 55px; }
  #footer .icon-yt,
  #footer .icon-fb,
  #footer .icon-ig {
    width: 20px;
    height: 20px; } }
.icon-bank-icon-ftr {
  display: inline-block;
  height: 24px;
  background-image: url(../images/footer/bank-icon-ftr-grey.svg); }
  .icon-bank-icon-ftr:hover {
    background-image: url(../images/footer/bank-icon-ftr.svg); }

.icon-ethereum {
  display: inline-block;
  height: 24px;
  width: 24px;
  background-image: url(../images/footer/ethereum-grey.svg); }
  .icon-ethereum:hover {
    background-image: url(../images/footer/ethereum.svg); }

.icon-eeziepay {
  display: inline-block;
  width: 70px;
  height: 28px;
  background-image: url(../images/footer/eeziepay-gray.png); }
  .icon-eeziepay:hover {
    background-image: url(../images/footer/eeziepay.png); }

.icon-visa {
  background-image: url(../images/footer/visa.svg);
  display: inline-block;
  width: 62px;
  opacity: 0.4; }

.icon-master-card {
  background-image: url(../images/footer/master-card.svg);
  display: inline-block;
  width: 32px;
  opacity: 0.4; }

.icon-duitnow {
  background-image: url(../images/footer/duitnow.svg);
  display: inline-block;
  width: 32px;
  opacity: 0.4; }

.icon-fpx {
  background-image: url(../images/footer/fpx.svg);
  display: inline-block;
  width: 67px;
  opacity: 0.4; }

.icon-tng {
  background-image: url(../images/footer/tng.svg);
  display: inline-block;
  width: 67px;
  opacity: 0.4;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/footer/ftr_tng_grey.svg);
  margin-right: 0px !important; }
  .icon-tng:hover {
    background-image: url(../images/footer/ftr_tng.svg); }

.icon-iovation {
  background-image: url(../images/footer/iovation.png);
  display: inline-block;
  width: 67px;
  opacity: 0.4;
  display: inline-block;
  width: 107px;
  height: 21px;
  background-image: url(../images/footer/iovation-gray.png); }
  .icon-iovation:hover {
    background-image: url(../images/footer/iovation.png); }

.icon-18above {
  background-image: url(../images/footer/18-above.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-gamcare {
  background-image: url(../images/footer/gamcare.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-dollarhouse {
  background-image: url(../images/footer/dollarhouse.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-zalo {
  background-image: url(../images/footer/zalo.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-vittel {
  background-image: url(../images/footer/vittel.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-viettal {
  background-image: url(../images/footer/viettal.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-vina {
  background-image: url(../images/footer/vina.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-mobi {
  background-image: url(../images/footer/mobi.svg);
  display: inline-block;
  width: 37px;
  opacity: 0.4; }

.icon-bga {
  background-image: url(../images/footer/bga.svg);
  display: inline-block;
  width: 55px;
  opacity: 0.4; }

.icon-facebook {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../images/footer/fb-gray.png);
  background-size: 100% 100%; }
  .icon-facebook:hover {
    cursor: pointer;
    background-image: url(../images/footer/fb.png); }

.icon-android-footer {
  display: inline-block;
  width: .29rem;
  height: .29rem;
  fill: #a2aabd; }
  .icon-android-footer:hover {
    fill: #85c808;
    opacity: 1 !important;
    cursor: pointer; }

.icon-ios-footer {
  display: inline-block;
  width: .29rem;
  height: .29rem;
  fill: #a2aabd; }
  .icon-ios-footer:hover {
    fill: #efefef;
    opacity: 1 !important;
    cursor: pointer; }

.icon-global {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../images/footer/global-gray.png); }
  .icon-global:hover {
    background-image: url(../images/footer/global.png); }

.icon-godaddy {
  display: inline-block;
  width: 121px;
  height: 23px;
  background-image: url(../images/footer/godaddy-gray.png); }
  .icon-godaddy:hover {
    background-image: url(../images/footer/godaddy.png); }

.icon-help2pay {
  display: inline-block;
  width: 33px;
  height: 23px;
  background-image: url(../images/footer/help2pay-gray.png); }
  .icon-help2pay:hover {
    background-image: url(../images/footer/help2pay.png); }

.icon-threatmetrix {
  display: inline-block;
  width: 135px;
  height: 21px;
  background-image: url(../images/footer/threat-metrix.svg);
  filter: grayscale(1); }
  .icon-threatmetrix:hover {
    filter: grayscale(0); }

.icon-itechlab {
  display: inline-block;
  width: 37px;
  height: 36px;
  background-image: url(../images/footer/itechlab-gray.png); }
  .icon-itechlab:hover {
    background-image: url(../images/footer/itechlab.png); }

.icon-pagcor {
  display: inline-block;
  width: 1.25rem;
  height: .28rem;
  background-image: url(../images/footer/pagcor-gray.png); }
  .icon-pagcor:hover {
    background-image: url(../images/footer/pagcor.png); }

.icon-curacao {
  display: inline-block;
  width: 99px;
  height: 43px;
  background-image: url(../images/footer/ftr_curacao_grey.svg); }
  .icon-curacao:hover {
    cursor: pointer;
    background-image: url(../images/footer/ftr_curacao.svg); }

.icon-bitcoin {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/footer/ftr_bitcoin_grey.svg); }
  .icon-bitcoin:hover {
    background-image: url(../images/footer/ftr_bitcoin.svg); }

.icon-usdt {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/footer/ftr_usdt_grey.svg); }
  .icon-usdt:hover {
    background-image: url(../images/footer/ftr_usdt.svg); }

.icon-payouts {
  display: inline-block;
  width: 74px;
  height: 26px;
  background-image: url(../images/footer/payouts-gray.png); }
  .icon-payouts:hover {
    background-image: url(../images/footer/payouts.png); }

.icon-paytrust {
  display: inline-block;
  width: .9rem;
  height: .19rem;
  background-image: url(../images/footer/paytrust-gray.png); }
  .icon-paytrust:hover {
    background-image: url(../images/footer/paytrust.png); }

.icon-youtube {
  display: inline-block;
  width: 27px;
  height: 26px;
  background-image: url(../images/footer/youtube-gray.png); }
  .icon-youtube:hover {
    cursor: pointer;
    background-image: url(../images/footer/youtube.png); }

.icon-18 {
  display: inline-block;
  width: 23px;
  height: 21px;
  background-image: url(../images/footer/18over.png); }

@media screen and (max-width: 699px) {
  .responsible_icon {
    display: flex;
    justify-content: flex-end;
    gap: 10px; }

  .icon-18above {
    width: 20px; }

  .icon-gamcare {
    width: 20px; }

  .icon-bga {
    width: 45px; }

  .icon-itechlab {
    width: 30px;
    margin-right: 12px; }

  .icon-payouts {
    width: 60px; } }
button:focus {
  outline: none !important; }

body {
  margin: 0;
  font-family: 'NunitoSans-regular';
  background-color: #161616; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'NunitoSans-regular'; }

body.no-scroll {
  overflow-y: hidden; }
