/* @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600;700;900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ################################################################# */
/* G E N E R A L  C S S  S T Y L E */
/* #region */


*,
*::before,
*::after {
  box-sizing: border-box;
  transition: background-color 1s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: 'Noto Sans Thai', sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


/* hide-scrollbar */

.element-selector::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -webkit-overflow-scrolling: touch;
    
    &::-webkit-scrollbar {
        display: none;
    }

    scrollbar-width: none;

    -ms-overflow-style: none;
    
    overflow-y: scroll; 
}

::-webkit-scrollbar {
    width: 6px; 
}

::-webkit-scrollbar-track {
    background: transparent; 
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 51, 102, 0.5); 
}

/* #endregion */


.swal2-container {
  z-index: 99999 !important;
}

.swal2-backdrop-show {
  z-index: 99998 !important;
}

.swal2-popup {
  z-index: 99999 !important;
}
.swal2-popup {
  font-family: 'Kanit', sans-serif !important;
  border-radius: 20px !important;
} 

:root {
    --primary-color: #ff3366;
    --primary-gradient: linear-gradient(45deg, #ff3366, #ff6688);
    --accent-color: #cc0000;
    --text-color: #2d3436;
    --text-muted: #636e72;
    --light-color: #ffffff;
    --bg-gray: #f9f9f9;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(255, 51, 102, 0.15);
    --radius-lg: 24px; 
    --radius-md: 12px;
}