@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lemon&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Questrial&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --thm-font: 'Poppins', sans-serif;
    /* Headings */
    --thm-b-font:  'Poppins', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #FFC107;
    --thm-color-two: #00715D;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #000;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background: var(--thm-color-one);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: #fff;
    font-weight: 500;
    overflow: hidden;
    counter-reset: sectionCounter;
    background-image: url(../images/bodyback-img.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

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

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}


/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}

.slick-arrow.slick-next:before {
    content: "\f061";
}
.slick-arrow.slick-prev:before {
    content: "\f060";
}
.slick-arrow {
    background: var(--thm-color-one);
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #000;
    border-radius: 50%;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: 20px;
}
.slick-next.slick-arrow {
    right: 20px;
}



.slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-prev:focus:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:focus:before {
    color: var(--thm-color-one);
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-four);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
    font-weight: 500;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.2;
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
}
h5 {
    font-size: 20px;
    line-height: 1.3;
}
h6 {
    font-size: 16px;
    line-height: 1.3;
}
p {
    margin-bottom: 25px;
    color: #6D6D6D;
    font-size: 15px;
    line-height: 1.3;
}
a {
    color: var(--thm-body-color);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
/* .thm-btn:hover i, .thm-btn:focus i {
    color: var(--thm-color-one);
    font-size: 26px;
} */
.thm-btn:hover, .thm-btn:focus {
    color: #fff;
    background-color: #000 !important;
    justify-content: center;
}
.thm-btn {
    color: #000;
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    transition: 0.5s all;
    font-weight: 400;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 7px;
    overflow: hidden;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}
.thm-btn.light-btn {
background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
}
.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 16px;
    line-height: normal;
    /* color: #000; */
    transform: scale(1.1) rotate(-45deg);
    transform-origin: top;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    background: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-wrap h1 {
    letter-spacing: 15px;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
}

/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/


/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #000;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: var(--thm-color-two);
    color: #fff;
    /* transform: rotate(360deg); */
}

.form-group .form-control {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 0px;
    border: 1px solid #0C80B00D;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
    background: #0C80B00D;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}

 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
tbody tr td:hover {
    background-color: #f7f7f7;
}
tbody tr td {
    border: 0;
    transition: 0.5s all;
    padding: 35px 15px;
}
tbody tr {
    border: 2px solid #e7e7e7;
    margin-bottom: 20px;
}
thead th {
    border: 0;
}

thead tr {
    border: 2px solid #dedada;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}
/* ------------------css inner page------------------------------------ */

.thm-btn.bg-light {
    color: var(--thm-color-one);
    background: #fff;
    border: 1px solid var(--thm-color-one);
}
.thm-btn.bg-light i {
    color: var(--thm-color-one);
}
/* ------------cart css------------------ */

.header.sticky .menu-item a {
    color: #000;
}
.header.sticky {
    background: #fff;
    padding: 10px;
}

 #pre-load{
     background:#b9e5c3;
     position:fixed;
     inset:0;
     display:flex;
     align-items:center;
     justify-content:center;
     z-index:999999 
}
 #pre-load .loader-inner{
     --loader-background:linear-gradient(0deg,rgba(50,50,50,.2) 0%,rgba(100,100,100,.2) 100%);
     position:relative;
     height:250px;
     aspect-ratio:1;
     display:flex;
     align-items:center;
     justify-content:center 
}
 #pre-load .loader-inner .loader-logo{
     position:absolute;
     top:50%;
     left:50%;
     transform:translate(-50%,-50%);
     width:60px;
     height:60px;
     display:flex;
     align-items:center;
     justify-content:center;
     animation:color-change 2s infinite ease-in-out;
     z-index:999 
}
 #pre-load .loader-inner .loader-logo svg{
    width:100%;
    height:100%
}
 #pre-load .loader-inner .box{
     position:absolute;
     background:var(--loader-background);
     border-radius:50%;
     border-top:1px solid rgb(100,100,100);
     box-shadow:rgba(0,0,0,.3) 0 10px 10px 0;
     backdrop-filter:blur(5px);
     animation:ripple 2s infinite ease-in-out 
}
 #pre-load .loader-inner .box:nth-child(1){
    width:25%;
    aspect-ratio:1/1;
    z-index:99
}
 #pre-load .loader-inner .box:nth-child(2){
    inset:30%;
    z-index:98;
    border-color:rgba(100,100,100,.8);
    animation-delay:.2s
}
 #pre-load .loader-inner .box:nth-child(3){
    inset:20%;
    z-index:97;
    border-color:rgba(100,100,100,.6);
    animation-delay:.4s
}
 #pre-load .loader-inner .box:nth-child(4){
    inset:10%;
    z-index:96;
    border-color:rgba(100,100,100,.4);
    animation-delay:.6s
}
 #pre-load .loader-inner .box:nth-child(5){
    inset:0;
    z-index:95;
    border-color:rgba(100,100,100,.2);
    animation-delay:.8s
}
 @keyframes ripple{
     0%{
        transform:scale(1);
        box-shadow:rgba(0,0,0,.3) 0 10px 10px 0
    }
     50%{
        transform:scale(1.3);
        box-shadow:rgba(0,0,0,.3) 0 30px 20px 0
    }
     100%{
        transform:scale(1);
        box-shadow:rgba(0,0,0,.3) 0 10px 10px 0
    }
}
 @keyframes color-change{
     0%{
        opacity:.7
    }
     50%{
        opacity:1
    }
     100%{
        opacity:.7
    }
}
 

/* --------------------------------------------------------------------------- */
.banner-bg.section-padding {
    position: relative;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 600px; */
    /* display: flex; */
    align-items: end;
}
.element-vector {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 175px;
    z-index: 1;
}
.header-main {
    margin-bottom: 0;
    position: relative;
    z-index: 0;
}
.element-vector img {
    width: 100%;
}
.z-0 {
    z-index: 0;
}
.logo img {
    width: 150px;
    height: 55px;
}
.days-label {
    font-weight: 600;
}
.logo {
    background: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 7px 0px #00000026;
    margin-bottom: 30px;
}

.spin-btn {
    text-align: center;
    width: fit-content;
    background: #F1624B;
    display: inline-block;
    text-align: center;
    margin: auto;
    border: none;
    padding: 6px 30px;
    color: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 0px 0px #A71A03;
    transition: 0.5s all;
}
.spin-btn:hover {
    background: #059f5f;
    box-shadow: 3px 3px 0px 0px #03a710;
}

.clock-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

.clock-container .box {
    /* background: #F1624B; */
    color: white;
    font-size: 45px;
    font-weight: 600;
    /* width: 50px; */
    /* height: 50px; */
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 6px; */
    /* box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4); */
}

  .clock-container  .separator {
      font-size: 32px;
      font-weight: bold;
      color: white;
    }
.labels {
    text-align: center;
    display: flex;
    margin-bottom: 5px;
    color: white;
    font-style: italic;
    font-size: 14px;
    gap: 40px;
    justify-content: center;
    width: 378px;
}
p.grant-top-title {
    background: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    color: #006038;
    display: inline-block;
}
.banner-text p {
    background: #fff;
    color: #F24D33;
    margin-bottom: 10px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 5px 16px;
    border-radius: 30px;
    display: inline-block;
}
.time-container {
    display: flex;
    /* color: #fff; */
    gap: 5px;
    align-items: center;
    justify-content: space-around;
}
.current-time-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #FFE5AD;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-around;
    width: 80%;
    flex-wrap: wrap;
}
.current-time .labels {
    color: #000;
    gap: 0 !important;
    justify-content: left;
    width: auto;
}
.time-title h6 {
    /* border-bottom: 1px solid; */
    /* padding-bottom: 6px; */
    /* color: #236200; */
    font-weight: 600;
}
.number-bg-section {
    position: relative;
    z-index: 0;
    background: linear-gradient(94.73deg, #CF0E70 0%, #7B013F 96.63%);
}

/* --------------------spine start--------------------------- */

.spin-main {
    /*width: 713px;*/
    text-align: center;
    position: relative;
}
.window {
    position: relative;
    overflow: hidden;
    height: 216px;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-border {
    padding: 0px;
    /* background: linear-gradient(180deg, #F1624B 0%, #006038 100%); */
    border-radius: 12px;
}

.icon {
    width: 80px;
    height: var(--item-height);
    display: block;
    position: relative;
    /* animation: wiggle 0.1s linear infinite; */
    background: radial-gradient(109.54% 109.54% at -14.75% 16.55%, #EFFF19 15.08%, #B4D40F 43.54%, #5b7414 69.13%, #496a08 88.74%, #364a13 100%);
    border-radius: 10px;
    width: 90px;
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    display: flex;
    font-size: 25px;
    color: #fff;
    opacity: 1;
    z-index: 0;
}

.outer-col {
    overflow-y: hidden;
    /* width: 100px; */
    float: left;
       height: 488px;
    /*height: calc(var(--item-height) * 3);*/
}


.col {
    padding: 0 0;
    will-change: true;
    transform: translateY(calc(-100% + var(--item-height) * 3));
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 44px;
    align-items: center;
}

.col img {
    width: 50px;
    height: 50px;
    margin: 0;
    position: relative;
    z-index: 3;
}

/* shadow effect behind the items */
.col .icon::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    z-index: -1;
    border-radius: 100%;
}

/*
 * Spinning animation
 */

#container.spinning .outer-col:nth-of-type(2) .col {
    animation-delay: 0.01s;
}

#container.spinning .outer-col:nth-of-type(3) .col {
    animation-delay: 0.02s;
}

#container.spinning .outer-col:nth-of-type(4) .col {
    animation-delay: 0.03s;
}

#container.spinning .col {
    animation-name: scroll;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.65, .97, .72, 1);
}

@keyframes scroll {
    to {
        transform: translateY(0);
    }
}
:root {
    --item-height: 100px;
}

.section-padding {
     z-index: 0; 
}
.element {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    z-index: -1;
}
.element img {
    width: 100%;
}
.window-border {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 435px;
    width: 100%;
}

.window-border:before {
   position: absolute;
   content: "" ;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
    background-image: url(../images/frame-spin.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.table-responsive.spin-table {
    border: 2px solid #F1624B;
    background: #ffc107;
    border-radius: 15px;
    padding: 20px;
}
.spin-table thead tr th {
    background: transparent;
    border: 0;
    color: #000;
    font-family: 'Capriola', sans-serif;
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 30px;
    white-space: nowrap;
}
.spin-table tbody tr td {
    background: transparent;
    border: 0;
    color: #000 !important;
    font-family: 'Capriola', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.spin-table table {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    border: 0;
}
.spin-table thead tr {
    border: 0px solid #dedada;
}
.spin-table tbody tr {
    border: 0px solid #dedada;
}
.spin-number-list li {
    background: #F1624B;
    /* padding: 6px; */
    border-radius: 5px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.03px solid;
    border-image-source: linear-gradient(180deg, #F1624B 0%, #AA1A03 100%);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #97740a !important;
    color: #fff !important;
}
img.user-image {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
img.user-crown {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -8px;
    right: 3px;
}
/* .spin-main:before {
    position: absolute;
    content: '';
    top: 0;
    right: -43px;
    background-image: url(../images/spin-main.png);
    background-position: right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
} */

h1.banner-title {
    font-size: 36px;
    font-family: 'Phetsarath', sans-serif;
    font-weight: 600;
}
.time-date-draw {
    background: #FFE5AD;
    padding: 8px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Highlight style for center-line items */
.icon.highlight {
    /*background: #d3bc19 !important;*/
    color: #fff !important;
    transition: transform 0.18s ease, background 0.18s ease;
    width: 125px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: radial-gradient(106.54% 109.54% at -14.75% 16.55%, #cfb70f 15.08%, #d4ce0f 43.54%, #998e0a 69.13%, #95840a 88.74%, #706910 100%) !important;
}

/* Hide the pseudo-element that was overlaying the icon */
.icon.highlight::after {
    display: none !important;
}
.spin-table thead tr th:nth-child(1) {
    text-align: left;
    padding-left: 30px;
}
.spin-table tbody tr td:nth-child(1) {
    text-align: left;
    padding-left: 30px;
}
.spin-table thead tr th:last-child {
    text-align: right;
    padding-right: 30px;
}
.spin-table tbody tr td:last-child {
    text-align: right;
    padding-right: 30px;
}
/* Modal Background */
#resultModal  {
    display: none;               /* hidden by default */
    position: fixed;
    inset: 0;                    /* top:0; right:0; bottom:0; left:0; */
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
  }

  /* When open */
     #resultModal.open {
      display: flex;
      animation: fadeIn 0.3s ease forwards;
    }

  /* modal box */
.modal-content {
    /*background: #122a0c;*/
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 30px rgb(141 117 32);
    animation: fadeIn 0.3s ease-in-out;
    font-family: sans-serif;
    text-align: center;
    border: 4px solid #7f6003;
    padding-top: 70px;
}
#resultModal .modal-content:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-popup.png);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}
   @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
/* Close button */
.close-btn {
    background: #e12f12;
    color: white;
    /* padding: 8px 12px; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0;
    position: absolute;
    right: 6px;
    top: 6px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s all;
    z-index: 1;
}
.close-btn:hover {
    background: #000;
}
/*#modalTitle {*/
/*    border-bottom: 1px solid #fff;*/
/*    padding-bottom: 15px;*/
/*    margin-bottom: 15px;*/
/*    font-size: 22px;*/
/*}*/
.modal-body h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #000;
}
img.winner-image {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    padding: 0px;
    background: #fff;
    position: absolute;
    top: -123px;
    right: 35%;
}
.price-box {
    width: 100%;
    height: 150px;
    /*border: 1px solid #7f6003;*/
    border-radius: 10px;
    padding: 15px;
    margin: auto;
    display: flex;
    /*background: #7ad9b2;*/
    justify-content: center;
}
.winner-search input {
    width: 25%;
    background: transparent;
    color: #000;
    border-color: #000;
}
.winner-search {
    text-align: end;
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}
/* Congratulations text animation */
   
     /* Falling icons */
    .falling-icon {
      position: absolute;
      font-size: 28px;
      animation: fall infinite forwards;
      user-select: none;
      pointer-events: none;
      z-index: 5;
      top: 0;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes fall {
      from { transform: translateY(-50px) rotate(0deg); opacity: 1; }
      to { transform: translateY(100vh) rotate(360deg); opacity: 0; }
    }

/*-------------------------------------------------------------------------*/

h1 { font-size: 2rem; margin-bottom: 10px; text-shadow: 2px 2px rgba(0,0,0,0.2); }
#searchBox {
    /* margin: 15px 0; */
    padding: 8px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    width: 100%;
    font-size: 17px;
}
.search-name {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -51px;
    z-index: 2;
    margin-bottom: 15px;
}
.search-box {
    border: 3px solid #be0b66;
    border-radius: 10px;
    width: 55%;
    background: #fff;
}
.search-btn {
    position: absolute;
    right: 11px;
    top: 5px;
    color: #810243;
    font-size: 20px;
}
.search-box::placeholder {
    color:#323131;
}
#timer {
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    display: inline-block;
    border: 2px solid #B2005C;
    background: linear-gradient(94.73deg, #CF0E70 0%, #7B013F 96.63%);
}
.numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; max-width: 900px; }
.number { border-radius: 10px; padding: 10px; font-size: 1.1rem; min-width: 70px; text-align: center; transition: all 0.3s ease; background: #CF0E70; box-shadow: 0 0 10px rgba(255,255,255,0.2); color: #fff !important; cursor: pointer; border: 3px solid #180016;}
.highlighted {
    box-shadow: 0 0 20px #dbadc8;
    width: 80px !important;
    background: linear-gradient(94.73deg, #CF0E70 0%, #7B013F 96.63%);
}
.winner { background: #00ff99 !important; color: #000; font-weight: bold; transform: scale(1.4); box-shadow: 0 0 35px #00ff99; z-index: 10; }

#message { font-size: 1.5rem; margin-top: 10px; font-weight: 500; text-shadow: 1px 1px rgba(0,0,0,0.2); }

/* Popup */
.popup-content:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../images/bg-popup.png); */
    background-position: center;
    background-size: cover;
    z-index: -1;
    border-radius: 15px;
    background: #5e215191;
}
.popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; z-index: 999; animation: fadeIn 0.5s ease; }
.popup-content {
    color: #333;
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 999px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popUp 0.4s ease;
}
.close-btn { position: absolute; top: 10px; right: 0px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #333; }
.winner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
}
.winner-card h4 {
    margin-bottom: 0;
    color: #fff;
}
.winner-card {
    background: #fff;
    background: linear-gradient(94.73deg, #CF0E70 0%, #7B013F 96.63%);

    border-radius: 10px;
    padding: 15px;
    width: 270px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    /*height: 335px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
h2.winner-title {
    color: #fff;
}
.winner-card img {
    width: fit-content;
    height: 160px;
    /* object-fit: cover; */
    /* border-radius: 50%; */
    margin-bottom: 10px;
}
.winner-card .prize { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; margin-top: 8px; }

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes popUp { from {transform: scale(0.8);} to {transform: scale(1);} }

/*.winner-card h5 {*/
/*    margin-bottom: 0;*/
/*    background: #c2d216;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    padding: 10px;*/
/*    border-radius: 80px;*/
/*    color: #000;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    font-size: 28px;*/
    /* position: absolute; */
/*    right: -11px;*/
/*    top: -14px;*/
/*    margin: 0 auto;*/
/*}*/
.winner-number-card {
    position: absolute;
    right: 0;
    margin: 0;
    top: -7px;
    /* background: #1f9b45; */
    color: #000;
    border-radius: 50%;
    width: 60px;
    height: 72px;
    font-size: 30px;
    padding: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.winner-number-card span {
    background: #fff;
    width: 100%;
    border-radius: 50%;
    width: 34px;
    height: 35px;
    font-size: 20px;
}
.winner-number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* makes images fit nicely */
  z-index: -1; /* keeps the image behind the text */
}

/* Individual images for each winner */
.winner-card:nth-child(1) .winner-number-card::before {
  background-image: url('../images/winner/sm1.png');
}
.winner-card:nth-child(2) .winner-number-card::before {
  background-image: url('../images/winner/sm2.png');
}
.winner-card:nth-child(3) .winner-number-card::before {
  background-image: url('../images/winner/sm3.png');
}


.winner-card {
    position: relative;
}

.curve-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50px;
    display: block;
    pointer-events: none;
    width: 100%;
    /* background: radial-gradient(#2d0712, transparent); */
    transform: rotate(180deg);
    /*background: linear-gradient(116.93deg, #F8B30E 3.11%, #F68D14 51.57%, #F8B30E 100.03%);*/

}
.curve-fill {
  fill: url(#curveGradient); /* ✅ use the gradient defined in SVG */
}

.number-bg-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /*background-image: url(../images/element1.png);*/
    background-position: center;
     background-size: cover; 
    z-index: -1;
    background-repeat: no-repeat;
}

.winner-lucky {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    margin: auto;
    /*margin-bottom: 30px;*/
    /*padding-top: 50px;*/
    /*padding-bottom: 36px;*/
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.border-gradient-bottom {
  border-bottom: 6px solid transparent; /* adjust thickness as needed */
  border-image: linear-gradient(
    90deg,
    #FBD004 0.56%,
    #FFFBD2 25.28%,
    #FAF2C1 29.55%,
    #EEDC94 38.03%,
    #DBB94C 49.8%,
    #CA990C 59.55%,
    #E6CB67 79.12%,
    #F2E08E 87.08%,
    #FFFBD2 100%
  );
  border-image-slice: 1;
}

.lucky-banner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.winner-lucky:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/winner/bg-circle.png);
    background-position: center;
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
}
.winner-lucky {
    margin-top: 0;
    width: 270px;
    height: 270px;
}
.winner-lucky p {
    color: #000 !important; 
    font-weight: 700;
}
.winner-lucky h2 {
    color: #000 !important;
    font-size: 21px;
    font-weight: 600;
}
.winner-lucky.secound h2 {
    font-weight: 500;
}
.winner-lucky h5 {
    color: #000 !important;
    /* border-bottom: 1px solid; */
    font-size: 14px;
    max-width: 183px;
}
.winner-image-lucky {
    width: 180px;
    /* height: 70px; */
    position: absolute;
    right: -70px;
    top: -18px;
}
.winner-lucky.third .winner-image-lucky {
    right: -91px;
    top: -18px;
}

.lucky-banner {
    height: 100vh !important;
}
div#notFoundMsg {
    position: absolute; 
}
.header-title {
    color: #fff !important;
    margin-bottom: 0;
    position: relative;
    margin: 35px 0;
    margin-top: 10px;
}
.header-title:before {
    position: absolute;
    content: '';
    top: -8px;
    left: 0;
    background-image: url(../images/lucky-header.png);
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    height: 65px;
    background-size: contain;
    z-index: -1;
}

.winner-lucky .user-img {
    width: 40px;
    height: 40px;
}
.search-content {
    max-width: 425px;
    padding: 45px;
    padding-top: 20px;
}
/*.winner-img.third {*/
/*    width: 150px !important;*/
/*    height: 80px !important;*/
/*}*/
.winner-images {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px solid #042656;
    border-radius: 8px;
    margin-bottom: 5px;
}
div#candidateInfo {
    background: #ffffff73;
    padding: 10px 30px;
    border-radius: 15px;
    width: fit-content;
    margin: auto;
    box-shadow: rgb(70 199 128) 0px 5px 15px;
}
.candidateInfo-title {
    margin-bottom: 6px;
}
.icon-flip {
  display: inline-block;
  animation: flipBounce 2s infinite ease-in-out;
}

@keyframes flipBounce {
  0% {
    transform: translateY(0) rotateX(0deg);
  }
  25% {
    transform: translateY(-12px) rotateX(180deg);
  }
  50% {
    transform: translateY(0) rotateX(360deg);
  }
  75% {
    transform: translateY(-12px) rotateX(540deg);
  }
  100% {
    transform: translateY(0) rotateX(720deg);
  }
}
.lucky-banner {
    align-items: flex-start !important;
}
.winner-list-main {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.winner-items {
    /* background: linear-gradient(90deg, #cfb538 0.56%, #cfbf19 25.28%, #d3b811 29.55%, #cba306 38.03%, #DBB94C 49.8%, #CA990C 59.55%, #d1ab20 79.12%, #bd9d0e 87.08%, #9f9106 100%); */
    padding: 10px 5px;
    border-radius: 15px;
    text-align: center;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-left: 5px solid #9f7d08; */
    /* border-bottom: 5px solid #9f7d08; */
    position: relative;
    z-index: 0;
    background: linear-gradient(116.93deg, #F8B30E 3.11%, #F68D14 51.57%, #F8B30E 100.03%);

}
/*.winner-items:before {*/
/*   position: absolute;*/
/*   content: "" ;*/
/*   top: 0;*/
/*   left: 0;*/
/*   width: 100%;*/
/*   height: 100%;*/
/*    background-image: url(../images/item-box.png);*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    z-index: -1;*/
/*}*/
.winner-items h4 {
    margin-bottom: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, #FBD004 0.56%, #FFFBD2 25.28%, #FAF2C1 29.55%, #EEDC94 38.03%, #DBB94C 49.8%, #CA990C 59.55%, #E6CB67 79.12%, #F2E08E 87.08%, #FFFBD2 100%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    color: #000;
    padding: 0 12px;
}
.winner-items p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #000;
}
.winner-gift {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 20px;
    /*background: #ffffff2e;*/
    border-radius: 10px 10px  0 0;
    margin-bottom: 0px;
}
.winner-wrappers {
    /*background: #ffffff2e;*/
    border-radius: 20px;
    /*padding: 10px;*/
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
}
.winner-gift-image img {
    width: 80px;
    height: 80px;
}
.winner-gift-content p {
    color: #000;
    margin-bottom: 0;
    font-size: 20px;
    padding: 5px 20px;
    border-radius: 30px;
    background: #ffe5ad;
    color: #000;
    width: 500px;
    text-align: center;
}
.winner-items {
    padding: 21px 2px;
    /* height: 122px; */
}


