@charset "UTF-8";
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontKhJrungThom";
  src: url("../fonts/KhJrungThom.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Khmer_Muol";
  src: url("../fonts/KhmerOS_muol.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Khmerbattambang";
  src: url("../fonts/Khmerbattambang.woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bignoodletitling";
  src: url("../fonts/big_noodle_titling.ttf");
  font-weight: normal;
  font-style: normal;
}
.Khmer_Muol{
  font-family: Khmer_Muol;
}
.font_bignoodletitling{
  font-family: bignoodletitling;
}
.h-khmer-battambang{
  font-family: Khmerbattambang;
  
}
.h-khmer-title{
  font-family: FontKhJrungThom;
}
a,p{
  font-family: Khmerbattambang !important;
  font-size: 15px;
}
.nav_admin a{
  font-family: Khmerbattambang !important;
  font-size: 13px !important;
}
label,input,textarea,select,button,th,td{
  font-family: Khmerbattambang !important;
  font-size: 13px !important;
}
/* Ensure body takes full viewport height for "full screen" feel */
body {
    min-height: 100vh;
}

/* Custom styles for dropdowns */
.dropdown:hover .dropdown-menu {
    display: block;
}
.submenu:hover .submenu-menu {
    display: block;
}
.dropdown-menu, .submenu-menu {
    display: none;
}

/* Custom styles for main image slider navigation arrows (SVG based for better control) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 9999px; /* Fully rounded */
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-arrow-left {
    left: 1rem; /* Tailwind `left-4` equivalent */
}

.slider-arrow-right {
    right: 1rem; /* Tailwind `right-4` equivalent */
}

/* Main image slider dots */
.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* Custom styles for Sponsor Slider navigation arrows */
.sponsor-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px; /* Smaller padding for sponsor arrows */
    cursor: pointer;
    border-radius: 9999px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.sponsor-slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.sponsor-slider-arrow-left {
    left: 0.5rem; /* Smaller left/right offset */
}

.sponsor-slider-arrow-right {
    right: 0.5rem; /* Smaller left/right offset */
}

/* Sponsor slider dots */
.sponsor-slider-dot {
    width: 8px; /* Smaller dots for sponsors */
    height: 8px;
    background-color: rgba(0, 0, 0, 0.3); /* Darker dots for sponsor section */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sponsor-slider-dot.active {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Menu Slide-in Effect */
#main-nav-menu {
    /* Initially off-screen on mobile, full height, fixed position */
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 256px; /* w-64 */
    background-color: #f3f4f6; /* bg-gray-100 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    z-index: 40;
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: transform 0.3s ease-in-out;
    display: flex; /* Always flex for vertical stacking */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center horizontally */
    padding-top: 4rem; /* Add some top padding for content below close button */
}
#main-nav-menu.is-active {
    transform: translateX(0); /* Slide in */
}

/* Overlay for mobile menu */
#mobile-menu-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30; /* Below mobile menu, above main content */
}
#mobile-menu-overlay.is-active {
    display: block;
}

/* Desktop Menu Styles */
@media (min-width: 768px) { /* md breakpoint */
    #main-nav-menu {
        position: relative;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        z-index: auto;
        transform: translateX(0); /* Always visible on desktop */
        flex-direction: row; /* Horizontal on desktop */
        padding-top: 0;
    }
    #main-nav-menu .md\:hidden {
        display: none !important; /* Hide close button on desktop */
    }
    /* .width-100-mobil{
      padding-top:10px;
      width: 100% !important;
    }
    .flex-100-mobil{
      display:block !important;
    } */
}

/* Sponsor Popup Styles */
#sponsor-popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Darker overlay for popup */
    z-index: 9998; /* Below popup content */
    align-items: center;
    justify-content: center;
}

#sponsor-popup-content {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2.5rem; /* p-10 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    z-index: 9999;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    text-align: center;
}
#sponsor-popup-content.is-active, #sponsor-popup-overlay.is-active {
    display: flex;
}
#image-slider{
    max-height: 700px;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  color: #666;
  font-size: 13px;
  line-height: 1.75em;
}
.block span {
  font-family: Arial;
  font-weight: 700;
  display: block;
  padding: 10px 16px;
  margin: 0;
  cursor: pointer;
}
  

  .font-family-karla {
    font-family: karla;
  }
  .bg-sidebar {
    background: #232e3e;
  }
  .cta-btn {
    color: #206bc4;
  }
  .upgrade-btn {
    background: #206bc4;
  }
  .upgrade-btn:hover {
    background: #206bc4;
    /* border-radius: 10px; */
    /* margin: 5px; */
  }
  .active-nav-link {
    background: #206bc4;
    /* border-radius: 10px; */
    /* margin: 5px; */
  }
  .nav-item:hover {
    background: #206bc4;
    /* border-radius: 10px; */
    /* margin: 5px; */
  }
  .account-link:hover {
    background: #206bc4;
  }
  
  .active\:bg-gray-50:active {
      --tw-bg-opacity: 1;
      background-color: #f3a63d;
  }
.header-bg-image{
  background-image: url('images/header-bg.svg');
  height: 99px;
}
#main-nav-menu{
  font-size: 1.125rem;
}
.ul_menu li a.active {
  color: #f3a63d;
  font-weight: bold;
  /* padding: 0.5rem 1rem; */
}
.countdown-section{
  height: 15rem;
}
.text-primary{
  color: #f3a63d;
}
.text-blue-nocc{
  color: #088bd2
}
.text-gold{
  color: #ffab38;
  text-shadow: 1px 1px 1px rgb(83 107 175 / 40%);
}
body.font-inter{
  background-image: url('images/header-bg.svg');
}
.bg-envent{
  background: radial-gradient(#366785, #004ea1b0);
}
.bg-envent-shadow{
  --tw-shadow: 0px -5px 6px 5px rgb(250 123 123), 12px 12px 12px 12px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #000000), var(--tw-ring-shadow, 0 0 #f4f4f4), var(--tw-shadow);
}
header{
  border-bottom: 1px solid #f3a63d;
}
.bg-video-front{
  background: #0d68b1;
}
.header_gallery{
  border: 2px solid #f3a63d;
}
.border_gold{
  border: 2px solid #f3a63d;
}
.border_gold_1{
  border: 1px solid #f3a63d;
}
.border_green{
  border: 2px solid green;
}
.border_blue{
  border: 2px solid #0d68b1;
}
.border_red{
  border: 2px solid red;
}
.fb-social-icon{
        padding: 1.25rem 1.7rem !important;
}
.social-link-icon {
    font-size: 2.5rem; /* Adjust icon size */
    border: 2px solid white; /* White border */
    padding: 1.25rem; /* Padding to make border visible around icon */
    border-radius: 1.25rem; /* Slightly rounded corners for the border */
    background-color: white; /* Added white background */
    color: #333; /* Default icon color for white background, can be overridden */
}
.bg-primary{
  background: #f3a63d;
}
.bg-youtube { background-color: #ff0000; }
.bg-x { background-color: #000000; }
.bg-facebook { background-color: #1877f2; } /* Facebook blue */
.bg-linkedin { background-color: #000000; }
.bg-whatsapp { background-color: #E1306C; }
.bg-olympic { background-color: #0088cc; }
.w-260 { width: 260px !important; }  
.medal_player{
    margin-top: -40px;
    position: relative;
    z-index: 1;
    /* background: white; */
}
.logo_medal_player{
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
}
.bg-contactus{
  background-image: url('images/stadaim.jpg');
  background-position: center;
}
.border-gray-50{
  border: 1px solid #dddddd;
}
.text-1xl{
  font-size: 12px;
}
@media screen and (max-width: 992px) {
  
  .image_news {
        height: 200px !important;
  }
  .blog_quick_event{
    flex-direction: column;
  }
  .quick_event{
    flex-direction: column;
    }
  .image_event{
    width: 100% !important;
    margin-bottom: 20px;
    padding-top: 20px; 
  }
  .list_event{
    width: 100% !important;
    padding-bottom: 40px;
  } 
  .pading_mobile_none{
    padding: 0 !important;
  }
  .show_count_event{
    display: none !important;
  }
  .hide_count_event{
    display: block !important; 
    font-size: 24px;
    line-height: 30px; 
  }
  .count_event{
    flex-direction: column;
  }
  .count_event div{
    margin-bottom: 20px;
  }
  .count_event div img{
    margin: 0 auto;
    /* width:150px; */
    float: none !important;
  }
  .size_date_mobile{
    /* width: 120px !important; */
    margin: 0 5px !important;
  } 
  .size_date_mobile h1{
    font-size: 13px !important;
  } 
  .hide_player{
    display: none;  
  }
  .image_player{
    text-align: center;
    width: 30% !important;
    padding: 5px;
  }
  .info_player{ 
    margin-top: 20px;
    width: 70% !important ;
  }
  .info_player div{ 
    padding: 0 !important;
    margin: 0;
  }
  .info_player div h2{ 
    padding: 0 !important;
    margin: 0 !important;
  }
  .text_player_more  {
    font-size: 13px !important;
    padding: 10px;
  }
  .image_event_main{
    width: 100px !important;
    height: auto !important;
    padding: 5px;
    max-width: 100px !important;
  }
  .heder_event{
    font-size: 16px !important;
    padding: 0px 0 !important;
    text-align: center !important;
  }
  .title_best_player{
    margin-bottom: 35px !important;
  }
  .border_gold_1 h1{
    font-size: 15px !important;
    line-height: 10px;
  }
  .border_gold_1 h2{
    font-size: 9px !important;
  }
  .border_gold_1{
    margin: 2px !important;
    
  }
  .event_date{
    float: right !important;
    padding-right: 2px !important;
  }
  .margint-3{
    margin-right: 3% !important;
  }
  .widht-mobile-80{
    width: 60px !important;
  }
  .widht-mobile-80 h1{
   font-size: 28px!important;
  }
  .widht-mobile-80 h2{
   font-size: 20px!important;
  }
  .width-100{
    width: 100px !important;
  }
  .container-mobil{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .width-100-mobil{
    padding-top:10px;
    width: 100% !important;
  }
  .flex-100-mobil{
    display:block !important;
  }
  .margint-top-30-mobil{
    margin-top:3px !important;
  }
}
.margint-top-30-mobil{
  margin-top:30px;
}
.hide_count_event{
  display: none;  
}
.image_event_main{
  width: 135px;
  padding: 2px;
  margin-right: 2px;
}
.border-raidus{
  border-radius: 20px;
}
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}