@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&display=swap");
* {
  text-decoration: none;
  font-family: "Teko", sans-serif;
  box-sizing: border-box;
}

@keyframes rtp-progress {
  0% {
    background-position-x: 1rem;
  }
}
@keyframes broadcast_light {
  10% {
    border: 2px solid #0053ff;
  }
  100% {
    border: 2px dashed #0053ff;
  }
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transform: scale(1.5);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 20;
  padding: 10px;
  overflow: hidden;
}
.modal .modal-content {
  box-shadow: 0 0 15px 0 #000;
  align-self: center;
  background-color: #060b19;
  width: 100%;
  max-width: 450px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.modal .modal-content .modal-header {
  display: flex;
  background-color: #0b142d;
}
.modal .modal-content .modal-header h4 {
  color: #eee;
  text-transform: uppercase;
  padding: 10px;
  margin: 0;
  width: 100%;
}
.modal .modal-content .modal-header button {
  background-color: #970202;
  color: #eee;
  border: none;
  margin-left: auto;
  width: 35px;
}
.modal .modal-content .modal-header button:hover {
  background-color: #ff0000;
}
.modal .modal-content .wrap-modal {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal .modal-content .wrap-modal .left img {
  width: 100%;
}
.modal .modal-content .wrap-modal .right {
  padding-left: 10px;
}
.modal .modal-content .wrap-modal .right .title-games p {
  text-transform: uppercase;
  margin: 0;
  color: #eee;
  border-bottom: 1px solid #0053ff;
  border-left: 4px solid #0053ff;
  position: relative;
  padding-left: 5px;
}
.modal .modal-content .wrap-modal .right .title-games p::before {
  content: "";
  height: 2px;
  width: 50%;
  position: absolute;
  background-color: #0053ff;
  bottom: 0;
  left: 0;
}
.modal .modal-content .wrap-modal .right .title-games h3 {
  background-color: #010204;
  border-right: 1px solid #0053ff;
  margin: 0;
  padding: 5px 5px 0px 5px;
  border-bottom: 1px solid #0053ff;
  border-left: 1px solid #0053ff;
  font-size: 15px;
  color: #eee;
}
.modal .modal-content .wrap-modal .right .pattern-container {
  margin-top: 10px;
}
.modal .modal-content .wrap-modal .right .pattern-container .jackpot-time p {
  color: #eee;
  margin: 0;
}
.modal .modal-content .wrap-modal .right .pattern-container .jackpot-time .title-jackpot {
  padding-top: 3px;
  border-bottom: 1px solid #0053ff;
  border-left: 4px solid #0053ff;
  position: relative;
  padding-left: 5px;
}
.modal .modal-content .wrap-modal .right .pattern-container .jackpot-time .title-jackpot::before {
  content: "";
  height: 2px;
  width: 50%;
  position: absolute;
  background-color: #0053ff;
  bottom: 0;
  left: 0;
}
.modal .modal-content .wrap-modal .right .pattern-container .jackpot-time .jamgacorRange {
  text-align: center;
  background-color: #010204;
  border-right: 1px solid #0053ff;
  margin: 0;
  padding: 5px 5px 0px 5px;
  border-bottom: 1px solid #0053ff;
  border-left: 1px solid #0053ff;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern {
  margin-top: 10px;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern-title {
  color: #eee;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern-title p {
  padding-top: 3px;
  border-bottom: 1px solid #0053ff;
  border-left: 4px solid #0053ff;
  position: relative;
  margin: 0;
  padding-left: 5px;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern-title p::before {
  content: "";
  height: 2px;
  width: 50%;
  position: absolute;
  background-color: #0053ff;
  bottom: 0;
  left: 0;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern {
  border-right: 1px solid #0053ff;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern p {
  margin: 0;
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #0053ff;
  border-left: 1px solid #0053ff;
  color: #eee;
}
.modal .modal-content .wrap-modal .right .pattern-container .table-pattern .pattern p:nth-child(odd) {
  background-color: #010204;
}
.modal .modal-content .modal-button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
.modal .modal-content .modal-button a {
  color: #eee;
  padding: 8px;
  transition: all 0.5s;
}
.modal .modal-content .modal-button a:first-child {
  background-color: #242424;
}
.modal .modal-content .modal-button a:first-child:hover {
  background-color: #0053ff;
  color: #fff;
}
.modal .modal-content .modal-button a:last-child {
  background-color: #970202;
}
.modal .modal-content .modal-button a:last-child:hover {
  color: #fff;
  background-color: #ff0000;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.loader {
  transition: all 0.5s ease-in-out;
  position: fixed;
  bottom: 0;
  background: #010204;
  width: 100%;
  z-index: 156151651651;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loader .loader_icon img {
  width: 100%;
  max-width: 180px;
}
.loader .loader_loading svg {
  max-width: 45px;
  max-height: 45px;
}

body {
  margin: 0;
  background-color: #010204;
}

.wrapper {
  max-width: 1000px;
  margin: auto;
}

header {
  background-color: #060b19;
}
header .wrapper {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
header .wrapper > div {
  display: flex;
  align-items: center;
}
header .wrapper .logo {
  display: flex;
  align-items: center;
}
header .wrapper .logo a {
  display: flex;
}
header .wrapper .logo a img {
  margin-top: -15px;
  width: 100%;
  max-width: 220px;
}
@media screen and (max-width: 450px) {
  header .wrapper .logo a img {
    max-width: 125px;
  }
}
header .wrapper .date {
  justify-content: flex-end;
}
header .wrapper .date .date_wrap {
  display: flex;
  align-items: center;
  background-color: #0b142d;
  padding: 10px;
}
header .wrapper .date .date_wrap p {
  margin: 0;
  color: #aaa;
}
header .wrapper .date .date_wrap p:first-child {
  margin-right: 10px;
  padding: 5px 10px;
  background-color: #060b19;
}

.main_wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 15px 0px;
}
.main_wrapper .broadcast-container {
  background-color: #060b19;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}
.main_wrapper .broadcast-container marquee {
  background-color: #010204;
  padding: 8px;
  color: #eee;
  border: 2px dashed #0053ff;
  animation: 0.5s broadcast_light linear infinite;
}
.main_wrapper .provider_menu {
  background: #060b19;
  margin-bottom: 15px;
  padding: 10px;
}
.main_wrapper .provider_menu .provider_list {
  position: relative;
}
.main_wrapper .provider_menu .provider_list .owl-stage-outer {
  position: relative;
  z-index: 1;
}
.main_wrapper .provider_menu .provider_list .owl-stage-outer .owl-stage .owl-item {
  padding: 5px;
  background-color: #010204;
  border: 1px solid #0b142d;
  transition: all 0.2s ease-in-out;
}
.main_wrapper .provider_menu .provider_list .owl-stage-outer .owl-stage .owl-item:hover {
  border-color: #0053ff;
}
.main_wrapper .provider_menu .provider_list .owl-nav {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.main_wrapper .provider_menu .provider_list .owl-nav [type=button] {
  background-color: #242424;
  width: 35px;
  height: 35px;
  display: flex;
  z-index: 1;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.main_wrapper .provider_menu .provider_list .owl-nav [type=button] svg {
  fill: #ccc;
  transition: all 0.2s ease-in-out;
}
.main_wrapper .provider_menu .provider_list .owl-nav [type=button]:hover {
  background-color: #0053ff;
}
.main_wrapper .provider_menu .provider_list .owl-nav [type=button]:hover svg {
  fill: #fff;
}
.main_wrapper .provider_menu .provider_list .owl-nav .owl-prev {
  margin-right: auto;
  transform: translateX(-15px);
}
.main_wrapper .provider_menu .provider_list .owl-nav .owl-next {
  margin-left: auto;
  transform: translateX(15px);
}
.main_wrapper .games_wrapper {
  background-color: #060b19;
  min-height: 100vh;
}
.main_wrapper .games_wrapper .games_wrapper_box {
  padding: 5px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title {
  display: flex;
  position: relative;
  border-bottom: 1px solid #0053ff;
  border-left: 5px solid #0053ff;
  color: #aaa;
  padding-left: 10px;
  margin: 5px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title::before {
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  background-color: #0053ff;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title h1 {
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  text-align: start;
}
@media screen and (max-width: 450px) {
  .main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title {
    padding-bottom: 5px;
  }
  .main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title h1 {
    font-size: 6vw;
  }
  .main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title .games_search_box {
    padding-bottom: 5px;
  }
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title .games_search_box input {
  padding: 5px 8px;
  color: #aaa;
  outline: none;
  border: 1px solid #0b142d;
  background-color: #010204;
  transition: all 0.2s ease-in-out;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrapper_title .games_search_box input:hover {
  border-color: #0053ff;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list {
  padding-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 450px) {
  .main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list {
    grid-template-columns: 1fr 1fr;
  }
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap {
  padding: 5px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap {
  overflow: hidden;
  background-color: #0b142d;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-header {
  position: relative;
  display: flex;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-header img {
  width: 100%;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer {
  display: flex;
  flex-direction: column;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .title-games {
  background-color: #101d42;
  padding: 3px 10px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .title-games h3 {
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #eee;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win {
  display: flex;
  align-items: center;
  background-color: #010204;
  padding: 5px 10px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .percent-bar-wrapper {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .percent-bar {
  width: 100%;
  height: 10px;
  border-radius: 15px;
  display: block;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  animation: 1s rtp-progress linear infinite;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .green {
  background-color: #198754;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .yellow {
  background-color: #ffc107;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .red {
  background-color: #dc3545;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .precentage-win .percent-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  color: #aaa;
  margin: 0;
  margin-left: 10px;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .pattern-btn {
  width: 100%;
  text-transform: uppercase;
  background-color: #242424;
  color: #eee;
  border: none;
  padding: 5px;
  transition: all 0.5s;
}
.main_wrapper .games_wrapper .games_wrapper_box .games_wrap_list .games_box_wrap .games_wrap .games-footer .pattern-btn:hover {
  background-color: #0053ff;
  color: #fff;
}

footer {
  background-color: #060b19;
  padding: 10px;
  text-align: center;
  color: #eee;
}
footer a {
  color: #0053ff;
}

.sincia {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: sincias-fall, sincias-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: sincias-fall, sincias-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
@keyframes sincias-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes sincias-shake {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
}
.sincia:nth-of-type(0) {
  left: 1%;
  animation-delay: 0s, 0s;
}

.sincia:first-of-type {
  left: 10%;
  animation-delay: 1s, 1s;
}

.sincia:nth-of-type(2) {
  left: 20%;
  animation-delay: 6s, 0.5s;
}

.sincia:nth-of-type(3) {
  left: 30%;
  animation-delay: 4s, 2s;
}

.sincia:nth-of-type(4) {
  left: 40%;
  animation-delay: 2s, 2s;
}

.sincia:nth-of-type(5) {
  left: 50%;
  animation-delay: 8s, 3s;
}

.sincia:nth-of-type(6) {
  left: 60%;
  animation-delay: 6s, 2s;
}

.sincia:nth-of-type(7) {
  left: 70%;
  animation-delay: 2.5s, 1s;
}

.sincia:nth-of-type(8) {
  left: 80%;
  animation-delay: 1s, 0s;
}

.sincia:nth-of-type(9) {
  left: 90%;
  animation-delay: 3s, 1.5s;
}

.sincia:nth-of-type(10) {
  left: 25%;
  animation-delay: 2s, 0s;
}

.sincia:nth-of-type(11) {
  left: 65%;
  animation-delay: 4s, 2.5s;
}

@keyframes breath-1f81a6cc-338c-4f04-b49b-11fd65ed0f39 {
  0% {
    animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: scale(0.91);
  }
  51% {
    animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: scale(1.02994);
  }
  100% {
    transform: scale(0.91);
  }
}
.messagebleft-container {
  transition: top 0.5s, right 0.5s, bottom 0.5s, left 0.5s, opacity 0.5s;
  font-size: 14px;
  min-height: 14px;
  font-family: LatoWeb;
  position: fixed;
  display: flex;
  align-items: center;
  color: #000 !important;
  border: none !important;
  background-color: #fff !important;
  border-radius: 10px !important;
  line-height: 22px;
  padding: 10px;
  overflow: hidden;
  bottom: -100px;
  top: -100px;
  opacity: 0;
  z-index: 9999;
}

.messagebleft-container::after {
  content: "";
  position: absolute;
  left: -6px;
  height: 80%;
  width: 10px;
  border-radius: 10px;
  background-image: linear-gradient(#152657, #010204);
}

.messagebleft-container::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 40px;
  border-radius: 5px;
  height: 40px;
  background-image: url(https://svgur.com/i/ug4.svg), linear-gradient(#010204, #152657);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.messagebleft-container p::after {
  width: 13.5px;
  height: 13.5px;
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  background-image: url(https://svgur.com/i/uh6.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.messagebleft-container .action {
  background: inherit;
  display: inline-block;
  border: none;
  font-size: inherit;
  text-transform: uppercase;
  color: #4caf50;
  margin: 0 0 0 24px;
  padding: 0;
  min-width: -moz-min-content;
  min-width: min-content;
  cursor: pointer;
}

@media (min-width: 640px) {
  .messagebleft-container {
    min-width: 288px;
    max-width: 568px;
    display: inline-flex;
    border-radius: 2px;
    margin: 24px;
  }
}
.messagebleft-pos.bottom-center {
  top: auto !important;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.messagebleft-pos.bottom-left {
  top: auto !important;
  bottom: 0;
  left: 0;
}

.messagebleft-pos.bottom-right {
  top: auto !important;
  bottom: 0;
  right: 0;
}

.messagebleft-pos.top-left {
  bottom: auto !important;
  top: 0;
  left: 0;
}

.messagebleft-pos.top-center {
  bottom: auto !important;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.messagebleft-pos.top-right {
  bottom: auto !important;
  top: 0;
  right: 0;
}

@media (max-width: 640px) {
  .messagebleft-container {
    left: 0;
    right: 0;
    margin: 8px;
  }
  .messagebleft-pos.bottom-center, .messagebleft-pos.top-center {
    left: 0;
    transform: none;
  }
}
.messagebleft {
  border: 1px solid #333;
}/*# sourceMappingURL=custom.css.map */