:root {
    --smaller-font: 0.7rem;
    --small-font: 0.87rem;
    --normal-font: 1rem;
    --medium-font: 1.1rem;
    --large-font: 1.7rem;
    --x-large-font: 2rem;
    --first-color: #ffffff;
    --second-color: rgba(4, 46, 90, 0.7);
    --third-color: url('../images/bg-dpt-3.jpg');
    --fourth-color: #001727;
    --fifth-color: #023e73;
    --text-first: #ffffff;
    --text-second: #001727;
    --text-dark: #333333;
 }

 @font-face {
    font-family: 'tile';
    src: url('../fonts/DancingScript-VariableFont_wght.ttf');
 }

 @font-face {
    font-family: 'font-theme';
    src: url('../fonts/Outfit-VariableFont_wght.ttf');
 }

 @font-face {
   font-family: 'dollar-bill';
   src: url('../fonts/ScarecrowRegular-mLJw2.ttf');
 }

 body {
    font-family: 'font-theme';
    background: var(--third-color);
    color: var(--text-first);
 }

 h1, h2, h3, h4, h5, h6 {
    font-family: 'tile';
    color: var(--text-first);
 }

 .dataTables_wrapper .dataTables_length select {
  color: var(--text-first);
  background-color: var(--fifth-color) !important;
 }

 a {
    text-decoration: none;
    color: var(--text-first);
 }

 a:hover {
    color: var(--fifth-color);
 }

 .navbar-header {
    background: var(--second-color);
    padding: 0.7rem;
 }

 h1, h2, my-3 {
  background: var(--text-second);
 }

 .my-2 {
  color: var(--text-dark);
 }

.head {
    color: var(--text-first);
 }

.header-img {
  position: relative;
  overflow: hidden;
}

.slider-images {
  display: flex;
  width: 100%; 
  transition: transform 1s ease-in-out; 
}

.slider-images img {
  width: 100%;     
  height: 100%;  
  object-fit: cover;  
  flex-shrink: 0;
}

.slider-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-navigation button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.slider-navigation button:hover {
  background-color: rgba(255, 255, 255, 1);
}

@keyframes slide {
  0%, 20% { 
      transform: translateX(0); 
  }
  25%, 45% { 
      transform: translateX(-100%);
  }
  50%, 70% { 
      transform: translateX(-200%); 
  }
  75%, 100% { 
      transform: translateX(0); 
  }
}

.slider-images {
  animation: slide 20s ease-in-out infinite; 
}

 .jackpot-wrapper {
   position: absolute;
    top: 87%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    padding: 0.4rem;
    
    text-align: center;
    width: 45rem;
    border-radius: 5px;
    max-width: 100%;
    color: var(--text-first);
    border: 3px dotted var(--text-first);
    background: var(--second-color);
 }

 .jackpot-wrapper span {
   font-size: 3.2rem;
   font-weight: 600;
 }

 .jackpot-wrapper h4 {
   font-family: 'font-theme';
   text-transform: uppercase;
   font-size: 1.7rem;
   font-weight: 800;
   padding: 0;
   margin: 0;
 }

 .running-text {
   background: var(--second-color);
   font-size: 1.1rem;
   color: var(--text-first);
   font-weight: 500;
 }

 footer {
   background: var(--first-color);
   color: var(--text-dark);
   padding: 1.4rem;
   text-align: center;
   color: #979797;
   font-size: 12px;
 }


.navbar-menu, .right-navbar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
 }

 .right-navbar {
   align-items: center;
   position: absolute;
   top: 0.7rem;
   right: 6rem;
 }

 .right-navbar > li {
   margin-right: 0.4rem;
   font-weight: 700;
   color: var(--text-first);
   font-size: 0.9rem;
   position: relative;
 }

 .right-navbar > li > i {
   position: relative;
   top: 0.15rem;
 }

 .right-navbar > li:last-child {
   margin-right: 0;
   width: 15rem;
 }

 .navbar-menu {
   justify-content: center;
 }

 .navbar-menu > li {
    margin-right: 3rem;
    font-weight: 700;
    font-size: 1rem;
 }

 .navbar-menu > li:last-child {
    margin-right: 0;
 }

 header {
    background: var(--first-color);
    padding: 1.7rem;
 }

.logo > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    max-width: 100%;
 }

 .bg-btnsend {
   background: var(--second-color);
   color: var(--text-first);
   font-weight: bold;
   float: right;
 }


 .counter-wrapper {
    padding: 2rem;
    position: relative;
    text-align: center;
    background: var(--fifth-color);
    z-index: 1;
 }

 .ball-counter {
    position: absolute;
    background: url(../images/ball.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px;
    left: 62%;
    top: 0;
    width: 150px;
    height: 150px;
    z-index: -1;

 }

 .counter-title {
    font-size: 5.8rem;
    letter-spacing: 0.5rem;
    z-index: 3;
    text-shadow: 2px 2px #333333;
    text-transform: capitalize;
    font-family: 'tile';
 }

 .table-result {
    table-layout:fixed;
    width: 100%;
 }

 .table-result thead {
    font-weight: 600;
 }

 .table-result td {
    border: 1px solid var(--text-second);
    text-align: center;
    padding: 0.3rem;
    font-size: 1.1rem;
    background: var(--second-color);
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-first);
 }

 .table-result tr h3 {
    font-family: 'font-theme';
    font-size: 1.2rem;
 }

 .prize-1-table, .livedraw-prize {
    letter-spacing: 0.7rem;
    font-weight: 600;
 }

 .prize-o-table {
   margin-top: 0.8rem;
 }

 .show-detail td {
    background: var(--text-second);
    color: var(--text-first);
 }

 .show-detail {
    display: none;
 }

 .counter {
    width: 32rem;
    max-width: 100%;
    display: block;
    margin-right: auto;
    margin-left: auto;
 }

 .open-badge {
    background: var(--fourth-color);
    color: #fff;
    font-size: 0.9rem;
 }

 .open-badge:hover {
    cursor: pointer;
 }

 .table-livedraw {
    width: 100%;
    text-align: center;
    color: var(--text-first);
    background: var(--fifth-color);
    padding: 1rem;
 }

 .livedraw-prize {
   font-size: 1.5rem;
 }
 
 .title-live {
   margin-top: 1rem;
   background: var(--text-second);
   color: var(--text-first);
   text-align: center;
   padding: 0.7rem;
   font-size: 1.6rem;
 }

 .prize-o-table, .livedraw-prize-1  {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 10px; 
}


.loadings {
   color: var(--text-second);
}


.livedraw-prize-1 {
   margin-top: 0.5rem;
}

.contact-forrms h5, .contact-forrms h6 {
  color: var(--third-color) !important;
}
 

 /* Countdown */
 .flipper {
  color: #000000;
  display: block;
  font-size: 50px;
  line-height: 100%;
  padding: 0;
  margin: 0;
  height: 1.7em;
}
.flipper.flipper-invisible {
  font-size: 0px !important;
}

.flipper-group {
  position: relative;
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}
.flipper-group label {
  position: absolute;
  color: #ffffff;
  font-size: 20%;
  top: 100%;
  line-height: 1em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
  padding-top: .5em;
}

.flipper-digit {
  white-space: nowrap;
  position: relative;
  padding: 0;
  margin: 0;
  display: inline-block;
  float: left;
  height: 1.2em;
  overflow-y: hidden;
}
.flipper-digit span {
  font-size: 25%;
}

.flipper-delimiter {
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  color: #fff;
  min-width: .1em;
  white-space: nowrap;
  display: block;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  line-height: 1em;
}

.digit-face {
  display: block;
  visibility: hidden;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
}

.digit-next {
  display: block;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  height: 1.2em;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.digit-top {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-top-left-radius: 0.1em;
  border-top-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform-origin: 0 0.6em 0 !important;
          transform-origin: 0 0.6em 0 !important;
  -webkit-transform-style: preserve-3d !important;
          transform-style: preserve-3d !important;
  z-index: 20;
}
.digit-top.r {
  transition: background 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  background: #cccccc;
}

.digit-top2 {
  visibility: hidden;
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  background: #cccccc;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  line-height: 0em !important;
  top: 50% !important;
  bottom: auto !important;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  overflow: hidden;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
  -webkit-transform-style: preserve-3d !important;
          transform-style: preserve-3d !important;
  -webkit-transform-origin: 0 0 0 !important;
          transform-origin: 0 0 0 !important;
  z-index: 20;
}
.digit-top2.r {
  visibility: visible;
  transition: background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  background: #fff;
}

.digit-bottom {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  background: #fff;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  line-height: 0em;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  transition: none;
}
.digit-bottom.r {
  transition: background 0.2s linear;
  background: #cccccc;
}

.flipper-digit:after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  display: block;
  z-index: 30;
  left: 0;
  right: 0;
}

.flipper-dark {
  color: var(--text-first);
}
.flipper-dark .flipper-delimiter {
  color: var(--first-color);
}
.flipper-dark .digit-next {
  background: var(--fourth-color);
  color: var(--text-first);
}
.flipper-dark .digit-top {
  background: var(--fourth-color);
  color: var(--text-first);
}
.flipper-dark .digit-top.r {
  background: black;
}
.flipper-dark .digit-top2 {
  background: black;
}
.flipper-dark .digit-top2.r {
  background: var(--fourth-color);
  color: var(--text-first);
}
.flipper-dark .digit-bottom {
  background: var(--fourth-color);
  color: var(--text-first);
}

.flipper-dark-labels .flipper-group label {
  color: #ffffff;
}

h4.section-nav-title {
  background-color: #02736f;
  padding: 8px 15px;
  margin-bottom: 0px;
  text-align: center;
}

div.brown-box {
  background-color: #d9ad29;
  color: var(--text-first);
  padding: 28px 15px;
  margin: 5px;
  font-weight: bold;
  border-bottom: 3px solid #023e73;
  text-align: center;
}

div.phn-nbr {
  color: #ce260b;
  font-size: 20px;
  font-weight: normal;
  padding: 10px;
  text-align: center;
}

div.phn-title {
  color: #001727;
  font-weight: bold;
  font-size: 14px;
  padding: 0 10px 10px;
}

.aside-excerpt-phn {
	font-weight: normal;
	padding: 0px 20px 5px 10px;
  color: #02736f;
  list-style: none;
}

.aside-excerpt ul {
	padding-left: 5px;  
  color: #02736f;
  list-style: none;
}

div.yellow-box {
	background-color: #f2d888;
	color: #001727;
	padding: 12px 15px;
	margin: 3px 5px 5px;
	font-weight: bold;
	border-bottom: 3px solid #d9ad29;
  text-align: center;
}

.title-about {
  margin-top: 1rem;
  background: var(--fifth-color);
  color: var(--text-first);
  text-align: center;
  padding: 0.7rem;
  font-size: 1.6rem;
}

.content-about {
  width: 100%;
  text-align: center;
  color: var(--text-first);
  background: var(--text-second);
  padding: 1rem;
}

.div-notice {
	background-color: rgba(4, 46, 90, 0.7);
	color: #fff;
	margin-bottom: 15px;
	font-size: 12px;
	padding-bottom: 10px;
}

h5.title-notice {
	background-color: #001727;
	color: #fff;
	padding: 8px 15px;
	margin-bottom: 0px;
}

ul.ul-notice {
	padding-left: 5px;
}

ul.ul-notice li {
	list-style: none;
	margin: 10px 0px !important;
	border-bottom: none !important;
	padding-right: 15px;
}

span.yellow-arabic {
	color: #ffcb3f;
}

span.blue-arabic {
	color: #023e73;
}

.div-darkblue {
  background-color: rgba(4, 46, 90, 0.7);
  color: #fff;
  margin-bottom: 15px;
}

h5.title-darkblue {
  background-color: #001727;
  color: #fff;
  padding: 8px 15px;
  text-align: center;
}

ul.htp {
  display: flex;
  justify-content: center; 
  align-items: center;    
  padding: 0;
  margin: 0;
  list-style: none;        
  flex-wrap: wrap;      
}

li.htp-img {       
  flex: 1 1 45%;         
  max-width: 100%;      
}

img {
  width: 100%;             
  height: auto;            
}

.container{
  max-width: 100%;
}

/*  */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-menu {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border: 1px solid #ccc;
}

.language-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.language-menu ul li {
  padding: 8px 12px;
  cursor: pointer;
}

.language-menu ul li:hover {
  background-color: #f1f1f1;
}
