@import url("responsive/full.css");
@import url("responsive/1400.css") (max-width: 1400px);
@import url("responsive/1200.css") (max-width: 1200px);
@import url("responsive/1024.css") (max-width: 1024px);
@import url("responsive/992.css") (max-width: 992px);
@import url("responsive/834.css") (max-width: 834px);
@import url("responsive/768.css") (max-width: 768px);
@import url("responsive/576.css") (max-width: 576px);
@import url("responsive/476.css") (max-width: 476px);
/*iPhone 6 Plus iPhone 6s Plus iPhone 7 Plus*/
@import url("responsive/428.css") (max-width: 428px);
/*iPhone 12 Pro Max*/
@import url("responsive/414.css") (max-width: 414px);
/*iPhone 8 Plus iPhone XS Max iPhone XR iPhone 11 Pro Max iPhone 11*/
@import url("responsive/390.css") (max-width: 390px);
/*iPhone 12 iPhone 12 Pro*/
@import url("responsive/375.css") (max-width: 375px);
/*iPhone 6 iPhone 6s iPhone 7 iPhone 8 iPhone X iPhone XS iPhone 11 Pro iPhone 12 mini*/
@import url("responsive/375.css") (max-width: 320px);
/* < iPhone 6*/

/* =========================================================
   SID26 THEME OVERRIDE (BRIGHTER – MATCH POSTER)
========================================================= */
:root{
  --sid26-blue: #113DFF;
  --sid26-cyan: #9AF2FF;
  --sid26-cyan-2: #57E3FF;
  --sid26-yellow: #FFC94A;

  --sid26-dark: #06163E;     /* สว่างขึ้น */
  --sid26-dark-2: #071B4C;

  --sid26-white: rgba(255,255,255,.95);
  --sid26-muted: rgba(255,255,255,.78);

  --sid26-glow-cyan: 0 0 22px rgba(154,242,255,.26);
  --sid26-glow-blue: 0 0 26px rgba(17,61,255,.22);
}

/* ===== SID26 PRELOADER ===== */
#sid26-preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at top, rgba(154,242,255,0.22), transparent 48%),
    radial-gradient(circle at bottom, rgba(17,61,255,0.24), transparent 48%),
    radial-gradient(circle at 65% 35%, rgba(255,201,74,0.10), transparent 52%),
    linear-gradient(180deg, var(--sid26-dark), #000);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#sid26-preloader.is-hide{
  opacity: 0;
  visibility: hidden;
}

.sid26-loader-inner{
  text-align: center;
  color: #fff;
  font-family: "Kanit", sans-serif;
}

.sid26-loader-title{
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: var(--sid26-glow-blue);
}

.sid26-loader-title span{
  background: linear-gradient(90deg, #fff, var(--sid26-cyan), var(--sid26-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sid26-loader-sub{
  margin-top: 14px;
  font-size: 14px;
  opacity: .82;
  letter-spacing: .5px;
  color: var(--sid26-muted);
}

/* loading bar */
.sid26-loader-bar{
  width: 220px;
  height: 6px;
  margin: 22px auto 0;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.sid26-loader-bar span{
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--sid26-cyan), var(--sid26-blue));
  border-radius: 999px;
  animation: sid26-loading 0.8s infinite ease-in-out;
  box-shadow: var(--sid26-glow-cyan);
}

@keyframes sid26-loading{
  0%{ transform: translateX(-100%); }
  50%{ transform: translateX(150%); }
  100%{ transform: translateX(150%); }
}
/* ===== SID26 PRELOADER ===== */


/* font-size */
.fs-8 { font-size: 0.5rem; }
.fs-10 { font-size: 0.625rem !important; }
.fs-12 { font-size: 0.75rem; }
.fs-14 { font-size: 0.875rem; }
.fs-16 { font-size: 1rem; }
.fs-18 { font-size: 1.125rem; }
.fs-20 { font-size: 1.25rem; }
.fs-22 { font-size: 1.5rem; }
.fs-24 { font-size: 1.375rem; }
.fs-28 { font-size: 1.75rem; }
.fs-32 { font-size: 2rem; }
.fs-34 { font-size: 2.125rem; }
.fs-36 { font-size: 2.25rem; }
.fs-40 { font-size: 2.5rem; }
.fs-42 { font-size: 2.625rem; }
.fs-44 { font-size: 2.75rem; }
.fs-48 { font-size: 3rem; }
.fs-56 { font-size: 3.5rem; }
.fs-64 { font-size: 4rem; }

/* font weight */
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* =========================================================
   BUTTONS (LE -> SID26 tone)
========================================================= */
.btn-pp-le {
    color: #06102c;
    background: linear-gradient(135deg, var(--sid26-cyan), var(--sid26-blue));
    border-color: rgba(154,242,255,.40);
    box-shadow: var(--sid26-glow-cyan);
}

.btn-pp-le:hover {
    color: #06102c;
    background: linear-gradient(135deg, var(--sid26-blue), var(--sid26-cyan));
    border-color: rgba(154,242,255,.55);
    filter: brightness(1.03);
}

/* utility display */
.display-none { display: none; }
.display-block { display: block; }
.display-none-im { display: none !important; }
.display-block-im { display: block !important; }

/* (คงของเดิมไว้) */
.text-cc { color: #CCCCCC; }
.text-sec7 { color: #757575; }
.text-sec9 { color: #999999; }
.text-sec { color: #AAAAAA; }
.text-orange { color: #E45526; }

.text-pp-le,
.text-purple { color: #5E4481; } /* ของระบบเดิม */

.text-pp88 { color: #8862B0; }
.text-scc { color: #10CA39; }
.text-mooc { color: #A2D169; }
.text-ct { color: #53BDCA; }
.text-js { color: #EB7942; }
.text-js-gn { color: #A2D169; }
.text-js-sec { color: #E86F35; }
.text-gold { color: #B7A27C; }
.text-silver { color: #A4A4A4; }
.text-sk4l { color: #3B589E; }
.text-data-sci { color: #3773B5; }
.text-data-sci-hv:hover { color: #2f5a8f; }
.text-data-sci-sub { color: #DB5C1E; }
.text-nwtc { color: #F26723; }
.text-swc { color: #9E1F63; }
.text-swc-sec { color: #00A8B0; }
.text-swc-sec-or { color: #F89733; }
.text-etn-acdm { color: #691018; }
.text-etn-acdm-sec { color: #192463; }
.text-etn-acdm-sub { color: #1A1B1D; }
.text-edso-bl { color: #17c5e9; }
.text-edso-gn { color: #9cd04f; }

.text-edso-gd,
.text-advc-gd {
    background: linear-gradient(45deg, rgba(23, 197, 233, 1) 0%, rgba(156, 208, 79, 1) 45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-stem { color: #2BCCE4; }
.text-shadow-b { text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
.text-advc { color: #124398; }

.bg-le-color { background-color: #5E4481; }
.bg-mooc-color { background-color: #A2D169; }
.bg-ct-color { background-color: #53BDCA; }
.bg-js-color { background-color: #EB7942; }
.bg-medee-color { background-color: #E8284D; }
.bg-sk4l-color { background-color: #3B589E; }
.bg-idp-color { background-color: #7bb7b2; }
.bg-dt-sci-color { background-color: #3773B5; }
.bg-etn-acdm-color { background-color: #691018; }
.bg-nwtk-color { background-color: #F26723; }

.cursor-pt { cursor: pointer; }
.not-allowed { cursor: not-allowed; }


/* =========================================================
   SID26 THEME HELPERS
========================================================= */
.text-sid26-cyan{ color: var(--sid26-cyan) !important; }
.text-sid26-yellow{ color: var(--sid26-yellow) !important; }
.bg-sid26-dark{ background-color: var(--sid26-dark) !important; }
.bg-sid26-grad{
  background: linear-gradient(135deg, var(--sid26-cyan), var(--sid26-blue)) !important;
}
.shadow-sid26-glow{ box-shadow: var(--sid26-glow-cyan) !important; }


/* ===================== footer ====================== */
.icon-wrap-ck {
    cursor: pointer;
    position: fixed;
    z-index: 10000;
    left: 16px;
    bottom: 40px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    color: #2672f9;
    background-color: rgba(255,255,255,.92);
    border-radius: 50%;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15)) drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.10));
    transition: transform 0.25s, filter 0.25s;
}

.icon-wrap-ck:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.45)) drop-shadow(0px 6px 18px rgba(0, 0, 0, 0.15));
}

.icon-wrap-ck-nav-footer {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    color: var(--sid26-cyan);
    background-color: rgba(255,255,255,.92);
    border-radius: 50%;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15)) drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.10));
    transition: transform 0.25s, filter 0.25s;
}

.sm-modal-ck {
    position: fixed;
    z-index: 10000;
    width: 100%;
    max-width: 300px;
    left: 16px;
    bottom: 100px;
    margin-right: 16px;
    background:
      radial-gradient(circle at 12% 10%, rgba(154,242,255,.16), transparent 45%),
      linear-gradient(180deg, rgba(7,27,76,.96), rgba(0,0,0,.92));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--sid26-white);
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.18)) drop-shadow(0px 10px 26px rgba(0, 0, 0, 0.20));
    transition: all 0.25s;
    animation: fadeInUP 0.5s ease-in-out;
}

.sm-modal-ck-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 1em;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.sm-modal-ck-body {
    padding: 1em;
    color: rgba(255,255,255,.86);
}

.sm-modal-ck-close {
    font-size: 24px;
    cursor: pointer;
    color: rgba(255,255,255,.82);
}

#lg-modal-ck-close:hover,
.sm-modal-ck-close:hover {
    cursor: pointer;
    font-weight: 800;
    color: var(--sid26-yellow);
}

#setting-ck-consent .form-check-input:checked {
    background-color: var(--sid26-cyan) !important;
    border-color: rgba(154,242,255,.60) !important;
    box-shadow: var(--sid26-glow-cyan);
}

@keyframes fadeInUP {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; }
}

@media only screen and (min-width: 768px) {
    .cl-fx-drt-r-al-itm-ct {
        display: inline-flex;
        align-items: center;
    }
}

/* footer buttons */
.btn-pp-le-ck {
    background: linear-gradient(135deg, var(--sid26-cyan), var(--sid26-blue));
    border-radius: 10px;
    color: #06102c;
    font-weight: 900;
    box-shadow: var(--sid26-glow-cyan);
}

.btn-pp-le-ck:hover {
    color: #06102c;
    background: linear-gradient(135deg, var(--sid26-blue), var(--sid26-cyan));
    filter: brightness(1.03);
}

.btn-bd-cl-pp-le {
    background: transparent;
    border-radius: 10px;
    color: var(--sid26-cyan);
    border: 1px solid rgba(154,242,255,.60);
}

.btn-bd-cl-pp-le:hover {
    background: rgba(154,242,255,.12);
    color: #fff;
    border: 1px solid rgba(154,242,255,.80);
}

.badge-le {
    color: #06102c;
    background: linear-gradient(135deg, var(--sid26-cyan), var(--sid26-blue));
    padding: 1px 8px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: var(--sid26-glow-cyan);
}

.btn-white-pp-le-nav-footer {
    color: #06102c;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
    border-color: rgba(255,255,255,.90);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.btn-white-pp-le-nav-footer:hover {
    color: #06102c;
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.35);
}
/* ===================== footer ====================== */
