/* nav */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    height: 50px !important;
    /* กำหนดความสูงชัดเจน */
    display: flex !important;
    align-items: center !important;
}

.navbar-container {
    display: flex !important;
    justify-content: space-between !important;
    /* ทำให้โลโก้ชิดซ้ายและเมนูชิดขวา */
    align-items: center !important;
    padding: 8px 5% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    position: relative !important;
    width: 100% !important;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    /* ทำให้โลโก้ชิดซ้าย */
    padding-left: 0;
}

.logo img {
    height: 30px;
    /* ลดจาก 40px เป็น 30px */
    margin-right: 10px;
}

.menu {
    display: flex;
    list-style: none;
    margin-left: auto;
    /* ทำให้เมนูชิดขวา */
    padding-right: 0;
}

.menu li {
    position: relative;
    margin-left: 30px;
}

.menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    /* ลดจาก 16px เป็น 14px */
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 0;
    /* ลดจาก 8px เป็น 5px */
    position: relative;
}

.menu a:hover {
    color: #0070f3;
}

.menu>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0070f3;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu>li>a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    /* เพิ่มความกว้างให้มากขึ้น */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 9999;
    /* เพิ่ม z-index ให้สูงมาก */
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

/* Add circle icons for dropdown items */
.dropdown-menu a::before {
    content: "○";
    display: inline-block;
    margin-right: 8px;
    font-size: 10px;
    position: relative;
    top: -1px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger .line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Create overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 993px) {

    /* แก้ไขให้ dropdown menu แสดงแบบ absolute และไม่ทับเมนูอื่น */
    .dropdown-menu {
        position: fixed;
        top: 50px;
        /* ปรับลดจาก 70px เพื่อให้สอดคล้องกับความสูงของ navbar ที่ลดลง */
        left: auto;
        /* ไม่ใช้ค่า left จากเมนูหลัก */
    }
}

@media (max-width: 992px) {
    .menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 50px);
        background-color: white;
        flex-direction: column;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        z-index: 1000;
        margin-left: 0;
        /* รีเซ็ต margin เมื่ออยู่ในโหมดมือถือ */
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        z-index: 10;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown>a::after {
        content: '+';
        position: static;
        width: auto;
        height: auto;
        background: none;
        margin-left: 5px;
    }

    .dropdown.active>a::after {
        content: '-';
    }
}

/* mycss */
/* font */
/* @import url('https://fonts.googleapis.com/css2?family=Prompt: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&display=swap');
body, h5, h4, h3, h2, h1, a, p, div, span, g, canvas {
    font-family: 'Prompt', sans-serif !important;
} */
.fw1{ font-weight: 100 !important; }
.fw2{ font-weight: 200 !important; }
.fw3{ font-weight: 300 !important; }
.fw4{ font-weight: 400 !important; }
.fw5{ font-weight: 500 !important; }
.fw6{ font-weight: 600 !important; }
.fw7{ font-weight: 700 !important; }
.fw8{ font-weight: 800 !important; }
.fw9{ font-weight: 900 !important; }
.fs10{ font-size: 10px !important; }
.fs12{ font-size: 12px !important; }
.fs14{ font-size: 14px !important; }
.fs16{ font-size: 16px !important; }
.fs18{ font-size: 18px !important; }
.fs20{ font-size: 20px !important; }
.fs22{ font-size: 22px !important; }
.fs24{ font-size: 24px !important; }
.fs26{ font-size: 26px !important; }
.fs28{ font-size: 28px !important; }
.fs30{ font-size: 30px !important; }
.fs40{ font-size: 40px !important; }
.fs50{ font-size: 50px !important; }
.fs100{ font-size: 100px !important; }
/* font */
/* /////////////////////////////////////////////////////////////////// */
/* rad */
.rad-0 { border-radius: 0PX !important; }
.rad-100 { border-radius: 100% !important; }
.rad-100-percent-border-white { 
    border-radius: 100% !important; 
    border-style: dashed;
    border-width: 2px;
    border-color: #fff;
}
.rad-20-border-cbm { 
    border-radius: 20px !important; 
    border-style: dashed !important;
    border-width: 2px !important;
    border-color: #1e96ff !important;
}
.rad20bw{
    border-radius: 20px !important; 
    border-style: dotted;
    border-width: 2px;
    border-color: rgba(255, 99, 132, 1);
}
.rad-all{
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
.rad-all-5{
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
.rad-all-20{
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}
.rad-all-100{
    border-top-left-radius: 100% !important;
    border-top-right-radius: 100% !important;
    border-bottom-left-radius: 100% !important;
    border-bottom-right-radius: 100% !important;
}
.rad-l-20 {
    border-top-left-radius: 20PX !important;
    border-bottom-left-radius: 20PX !important;
}
.rad-r-20 {
    border-top-right-radius: 20PX !important;
    border-bottom-right-radius: 20PX !important;
}
.rad-t-20 {
    border-top-left-radius: 20PX !important;
    border-top-right-radius: 20PX !important;
}
.rad-b-20 {
    border-bottom-left-radius: 20PX !important;
    border-bottom-right-radius: 20PX !important;
}
.rad-t-10 {
    border-top-left-radius: 10PX !important;
    border-top-right-radius: 10PX !important;
}
.rad-b-10 {
    border-bottom-left-radius: 10PX !important;
    border-bottom-right-radius: 10PX !important;
}
.rad-tl{ border-top-left-radius: 10px !important; }
.rad-tr{ border-top-right-radius: 10px !important; }
.rad-bl{ border-bottom-left-radius: 10px !important; }
.rad-br{ border-bottom-right-radius: 10px !important; }
.rad-tl-tr{
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
.rad-tl-tr-20{
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}
.rad-bl-br{
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
.rad-bl-br-20{
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}
.p10r10{
    padding: 10px !important;
    border-radius: 10px !important;
}
/* rad */
/* /////////////////////////////////////////////////////////////////// */
/* text */
.text-cbm-01{ color:#f0d9aa !important; }
.text-cbm-02{ color:#c4aa79 !important; }
.text-cbm-03{ color:#A8B8D8 !important; }
.text-pnk{ color:#ffa1d0 !important; }
.text-new{ color:#ff667c !important; }
.text-ipg{ color:#fbcf33 !important; }
.text-dne{ color:#98ec2d !important; }
.text-ale{ color:#1e96ff !important; }
.text-gdp{ color:#7928CA !important; }
.text-pnd{ color:#ff6200 !important; }
.text-act{ color:#17ad37 !important; }
.text-pmr{ color:#97763a !important; }
.text-root{ color:#f8b500 !important; }
.text-admin{ color:#4CA1AF !important; }
.text-user{ color:#EF629F !important; }
.text-chart-01{ color: rgba(255, 99, 132, 0.2) !important; }
.text-chart-02{ color: rgba(255, 159, 64, 0.2) !important; }
.text-chart-03{ color: rgba(255, 205, 86, 0.2) !important; }
.text-chart-04{ color: rgba(75, 192, 192, 0.2) !important; }
.text-chart-05{ color: rgba(54, 162, 235, 0.2) !important; }
.text-chart-06{ color: rgba(153, 102, 255, 0.2) !important; }
.text-chart-07{ color: rgba(122, 255, 162, 0.2) !important; }
.text-chart-08{ color: rgba(255, 97, 166, 0.2) !important; }
.text-chart-01-solid{ color: rgba(255, 99, 132) !important; }
.text-chart-02-solid{ color: rgba(255, 159, 64) !important; }
.text-chart-03-solid{ color: rgba(255, 205, 86) !important; }
.text-chart-04-solid{ color: rgba(75, 192, 192) !important; }
.text-chart-05-solid{ color: rgba(54, 162, 235) !important; }
.text-chart-06-solid{ color: rgba(153, 102, 255) !important; }
.text-chart-07-solid{ color: rgba(122, 255, 162) !important; }
.text-chart-08-solid{ color: rgba(255, 97, 166) !important; }
.text-gradient-primary-x1{
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%) !important;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.text-gradient-info2{
    background: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.text-cbm-primary{ color:#1e96ff !important; }
.text-dbs1{ color:#182241 !important; }
.text-dbs2{ color:#4256A1 !important; }
.text-dbs3{ color:#BB9A64 !important; }
.text-dbs4{ color:#894D16 !important; }
.text-scan{ color:#47e7ce !important; }
/* text */
/* /////////////////////////////////////////////////////////////////// */
/* background */
.bg-wh{ background-color:#fff !important; }
.bg-gray-200{ background-color: #F7F8FA !important; }
.bg-cbm-01{ background-color:#f0d9aa !important; }
.bg-dbs1{ background-color:#182241 !important; }
.bg-dbs2{ background-color:#4256A1 !important; }
.bg-dbs3{ background-color:#BB9A64 !important; }
.bg-dbs4{ background-color:#894D16 !important; }
.bg-pnk{ background-color:#ffa1d0 !important; }
.bg-new{ background-color:#ff667c !important; }
.bg-ipg{ background-color:#fbcf33 !important; }
.bg-dne{ background-color:#98ec2d !important; }
.bg-ale{ background-color:#1e96ff !important; }
.bg-gdp{ background-color:#7928CA !important; }
.bg-pnd{ background-color:#ff6200 !important; }
.bg-act{ background-color:#17ad37 !important; }
.bg-pmr{ background-color:#97763a !important; }
.bg-gradient-primary-4 { background-image: linear-gradient(45deg, #ff60b0 0%, #fa3195 100%) !important; }
.bg-gradient-primary-6 { background-image: linear-gradient(45deg, #ff83c1 0%, #fa3195 100%) !important; }
.bg-gradient-primary-2 { background-image: linear-gradient(310deg, #d8006c 0%, #ff7cbe 100%) !important; }
.bg-gradient-primary-3 { background-image: linear-gradient(310deg, #FF0080 0%, #eb5aa2 100%) !important; }
.bg-gradient-primary { background-image: linear-gradient(310deg, #7928CA 0%, #FF0080 100%) !important; }
.bg-gradient-primary2 { background-image: linear-gradient(360deg, #FF0080 0%, #7928CA 100%) !important; }
.bg-gradient-secondary { background-image: linear-gradient(310deg, #627594 0%, #A8B8D8 100%) !important; }
.bg-gradient-success2 { background-image: linear-gradient(360deg, #98ec2d 0%, #17ad37 100%) !important; }
.bg-gradient-info { background-image: linear-gradient(310deg, #2152ff 0%, #21d4fd 100%) !important; }
.bg-gradient-info2 { background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important; }
.bg-gradient-warning { background-image: linear-gradient(310deg, #f53939 0%, #fbcf33 100%) !important; }
.bg-gradient-warning2 { background-image: linear-gradient(360deg, #fbcf33 0%, #f53939 100%) !important; }
.bg-gradient-danger { background-image: linear-gradient(310deg, #ea0606 0%, #ff667c 100%) !important; }
.bg-gradient-danger2 { background-image: linear-gradient(360deg, #ff667c 0%, #ea0606 100%) !important; }
.bg-gradient-light { background-image: linear-gradient(310deg, #CED4DA 0%, #EBEFF4 100%) !important; }
.bg-gradient-dark { background-image: linear-gradient(310deg, #141727 0%, #3A416F 100%) !important; }
.bg-gradient-primary-x-2 { background-image: linear-gradient(360deg, #ffe7bb 0%, #ffdd87 100%) !important; }
.bg-gradient-primary-x { background-image: linear-gradient(310deg, #c4aa79 0%, #ffe7bb 100%) !important; }
.bg-gradient-primary-y { background-image: linear-gradient(310deg, #c4aa79 0%, #fff371 100%) !important; }
.bg-gradient-info-x { background-image: linear-gradient(310deg, #4ea9ff 0%, #21d4fd 100%) !important; }
.bg-gradient-root { background-image: linear-gradient(310deg, #ffdd87 0%, #f8b500 50%) !important;}
.bg-gradient-admin { background-image: linear-gradient(310deg, #2C3E50 0%, #4CA1AF 50%) !important;}
.bg-gradient-user { background-image: linear-gradient(310deg, #ff8ebf 0%, #EF629F 100%) !important;}
.bg-chart-01{ background-color: rgba(255, 99, 132, 0.2) !important; }
.bg-chart-02{ background-color: rgba(255, 159, 64, 0.2) !important; }
.bg-chart-03{ background-color: rgba(255, 205, 86, 0.2) !important; }
.bg-chart-04{ background-color: rgba(75, 192, 192, 0.2) !important; }
.bg-chart-05{ background-color: rgba(54, 162, 235, 0.2) !important; }
.bg-chart-06{ background-color: rgba(153, 102, 255, 0.2) !important; }
.bg-chart-07{ background-color: rgba(122, 255, 162, 0.2) !important; }
.bg-chart-08{ background-color: rgba(255, 97, 166, 0.2) !important; }
.bg-chart-01-solid{ background-color: rgba(255, 99, 132, 1) !important;}
.bg-chart-02-solid{ background-color: rgba(255, 159, 64, 1) !important;}
.bg-chart-03-solid{ background-color: rgba(255, 205, 86, 1) !important;}
.bg-chart-04-solid{ background-color: rgba(75, 192, 192, 1) !important;}
.bg-chart-05-solid{ background-color: rgba(54, 162, 235, 1) !important;}
.bg-chart-06-solid{ background-color: rgba(153, 102, 255, 1) !important;}
.bg-chart-07-solid{ background-color: rgba(122, 255, 162, 1) !important;}
.bg-chart-08-solid{ background-color: rgba(255, 97, 166, 1) !important;}
.bgf7f7f7 { background-color: #f7f7f7 !important; }
.bge7e7e7 { background-color: #e7e7e7 !important; }
.bg-gradient-04 { background-image: linear-gradient(310deg, #03dce0  0%, #ffe055 100%) !important; }
.bg-gradient-03 { background-image: linear-gradient(310deg, #ff667c  0%, #ff8b51 100%) !important; }
.bg-gradient-02 { background-image: linear-gradient(310deg, #ff6200  0%, #ff8b51 100%) !important; }
.bg-gradient-01 { 
    background-image: linear-gradient(310deg, #e2e2e2  0%, #ffffff 100%) !important; 
    color: #5b5b5b !important;
}
.bg-pattern-game{
    background: url(../images/pattern/pattern-game.png) !important;
    color: #343a40;
    background-size: initial !important;
}
.bg-pattern-0{
    background: url(../images/pattern/pattern-0.png) !important;
    color: #343a40;
    background-size: cover !important;
}
.authentication-bg {
    height: 80vh !important;
    /* width: 100vw !important; */
    background-color: #fff !important;
}
/* background */
/* /////////////////////////////////////////////////////////////////// */
/* border */
.border-cbm-01-5px{
    border: 5px !important; 
    border-style: solid !important; 
    border-color: #ffefd0 !important;
}
.border-cbm-01-3px{
    border: 3px !important; 
    border-style: solid !important; 
    border-color: #ffefd0 !important;
}
.border-cbm-01-1px{
    border: 1px !important; 
    border-style: solid !important; 
    border-color: #ffefd0 !important;
}
/* border */
/* /////////////////////////////////////////////////////////////////// */
/* period */
.period-limit{
    width: 60px !important;
    height: 60px !important;
    border-radius: 100% !important;
    margin-bottom: 10px !important;
    border-width: 2px;
    border-style: dashed;
    border-color: #ff89c0;
    outline: none;
    cursor: pointer;
}
.period-limit:hover,
.period-limit:focus{
    width: 70px !important;
    height: 70px !important;
    border-radius: 100% !important;
    margin-bottom: 10px !important;
    border-width: 2px;
    border-style: dotted;
    border-color: #ff499e;
}
/* period */
/* /////////////////////////////////////////////////////////////////// */
/* cbmglassblur */
.cbmglasscard{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .1); 
    border-radius: 20px !important;
    background-color: #fff;
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur:focus,
.cbmglassblur:hover
{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur1{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 0px;
    background-color: #fff;
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur2{
    box-shadow: 0 0 1rem 0 rgba(255, 255, 255, 0.284); 
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.736);
    backdrop-filter: blur(3px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur3{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .1);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(1px);
    outline: none;
    border-color: #fff;
    width: 30px !important;
    height: 30px !important;
}
.cbmglassblur3:focus,
.cbmglassblur3:hover
{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .15);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur4{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
    border-width: 1.5px !important;
    width: 40px !important;
    height: 40px !important;
}
.cbmglassblur4:focus,
.cbmglassblur4:hover
{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur6{
    box-shadow: 0 0 1rem 0 rgba(255, 255, 255, 0.284); 
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.736);
    backdrop-filter: blur(3px);
    outline: none;
    border-color: #fff;
}
.cbmglassblur7{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .1); 
    background-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
    border-width: 1.5px !important;
}
.cbmglassblur7:focus,
.cbmglassblur7:hover
{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .4); 
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(2px);
    outline: none;
    border-color: #fff;
}
/* cbmglassblur */
/* /////////////////////////////////////////////////////////////////// */
/* page-item */
.page-item.active .page-link {
    color: #fff;
    background-image: linear-gradient(310deg, #2152ff 0%, #21d4fd 100%);
    border-radius: 20px !important;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 1rem 0 rgba(255, 255, 255, 0.284) !important;
    border: 0.5px !important;
    border-style: solid !important;
    border-color: #fff;
}
/* page-item */
/* /////////////////////////////////////////////////////////////////// */
/* input select search placeholder */
.form-control::placeholder {
    opacity: 0.3 !important;
}
.cbminput_search {
    color: #caa052 !important;
    border-radius: 20px !important;
    text-align: center !important;
}
.cbminput_search-rad-0 {
    color: #caa052 !important;
    border-radius: 0px !important;
    text-align: center !important;
}
.cbmselect_search {
    color: rgba(239, 242, 247, 0.1) !important;
    border-radius: 20px !important;
    text-align: center !important;
}
.cbm_select_box {
    border-radius: 20px !important;
    text-align: start !important;
}
.cbm_select_box_readonly,
.cbm_select_box_readonly:focus,
.cbm_select_box_readonly:hover{
    background-color: #f0f0f0 !important;
    border-radius: 20px !important;
    text-align: start !important;
    cursor: not-allowed;
}
.cbm_input_box {
    border-radius: 20px !important;
    text-align: start !important;
}
.cbm_input_box_readonly,
.cbm_input_box_readonly:focus,
.cbm_input_box_readonly:hover{
    background-color: #f0f0f0 !important;
    border-radius: 20px !important;
    text-align: start !important;
    cursor: not-allowed;
}
.cbm_select_box_0 {
    text-align: start !important;
}
.cbm_select_box_0_readonly,
.cbm_select_box_0_readonly:focus,
.cbm_select_box_0_readonly:hover{
    background-color: #f0f0f0 !important;
    text-align: start !important;
    cursor: not-allowed;
}
.cbm_input_box_0 {
    text-align: start !important;
}
.cbm_input_box_0_readonly,
.cbm_input_box_0_readonly:focus,
.cbm_input_box_0_readonly:hover{
    background-color: #f0f0f0 !important;
    text-align: start !important;
    cursor: not-allowed;
}
.cbm_readonly,
.cbm_readonly:focus,
.cbm_readonly:hover{
    background-image: linear-gradient(310deg, #f5f5f5 0%, #e0e0e0 100%) !important;
    color: #fff;
}
.cbm_readonly_2,
.cbm_readonly_2:focus,
.cbm_readonly_2:hover{
    background-image: linear-gradient(310deg, #e0e0e0 0%, #f5f5f5 100%) !important;
    color: #000 !important;
    cursor: not-allowed;
}
.cbm_readonly_3,
.cbm_readonly_3:focus,
.cbm_readonly_3:hover{
    background-image: linear-gradient(310deg, #f0f0f0 0%, #f5f5f5 100%) !important;
    color: #000 !important;
    cursor: not-allowed;
}
.cbm_readonly_4,
.cbm_readonly_4:focus,
.cbm_readonly_4:hover{
    background-image: linear-gradient(270deg, #fbcf33 0%, #f53939 100%) !important;
    color: #fff !important;
    cursor: not-allowed;
}
.cbm_readonly_5,
.cbm_readonly_5:focus,
.cbm_readonly_5:hover{
    background-image: linear-gradient(270deg, #98ec2d 0%, #17ad37 100%) !important;
    color: #fff !important;
    cursor: not-allowed;
}
.form-select:focus {
    border-color: #b1bbc4 !important;
    outline: 0 !important;
    -webkit-box-shadow: 0 0 0 0.15rem rgba(100, 100, 100, 0.25) !important;
    box-shadow: 0 0 0 0.15rem rgba(100, 100, 100, 0.25) !important;
}
.cbm_not_allowed{
    cursor: not-allowed !important;
}
.cbm_ptnone{
    pointer-events: none !important;
}
.select2-selection {
    height: fit-content !important;
    padding : 10px !important;
    border-radius: 20px !important;
    text-align: start !important;
}
.select2-selection__choice{
    color: #fff;
    background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 1rem 0 rgba(255, 255, 255, 0.284) !important;
    border: 0.5px !important;
    border-style: solid !important;
    border-color: #fff;
}
.select2-selection__choice__remove{
    color: #fff !important;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
    color:#fff !important;
    border: 0.1px !important;
    border-style: solid !important;
    border-color: #cecece !important;
}
.select2-container--default .select2-results__option[aria-selected=true]:hover{
    background-image: linear-gradient(360deg, #ff667c 0%, #ea0606 100%) !important;
}
/* input select search */
/* /////////////////////////////////////////////////////////////////// */
/* table */
.table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before {
    color: #fff !important;
    border: 2px solid #fff !important;
    /* background-image: linear-gradient(310deg, #4b4b4b 0%, #e4e4e4 100%) !important; */
    /* background-image: linear-gradient(310deg, #c4aa79 0%, #ffe7bb 100%) !important; */
    background-image: linear-gradient(310deg, #2152ff 0%, #21d4fd 100%);
    font-size: medium !important;
}
/* table */
/* /////////////////////////////////////////////////////////////////// */
/* modal */
.modal_sts_new.active{
    padding-left: 2px;
    padding-right: 2.5px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    border-radius: 5px;
    border: 2px !important; 
    border-style: solid !important; 
    border-color: #ff667c !important;
}
.modal_sts_ipg.active {
    padding-left: 2px;
    padding-right: 2.5px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    border-radius: 5px;
    border: 2px !important; 
    border-style: solid !important; 
    border-color: #fbcf33 !important;
}
.modal_sts_dne.active {
    padding-left: 2px;
    padding-right: 2.5px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
    border-radius: 5px;
    border: 2px !important; 
    border-style: solid !important; 
    border-color: #98ec2d !important;
}
/* modal */
/* /////////////////////////////////////////////////////////////////// */
/* size */
.hw30{
    height: 30px !important;
    width: 30px !important;
}
.hw50{
    height: 50px !important;
    width: 50px !important;
}
.hw100{
    height: 100px !important;
    width: 100px !important;
}
.hw120{
    height: 120px !important;
    width: 120px !important;
}
.hw150{
    height: 150px !important;
    width: 150px !important;
}
.hw200{
    height: 200px !important;
    width: 200px !important;
}
.hw300{
    height: 300px !important;
    width: 300px !important;
}
/* size */
/* /////////////////////////////////////////////////////////////////// */
/* nav-link */
.nav-link.active{ color: #c4aa79 !important; }
.nav-link:focus,
.nav-link:hover { color: #f8c971 !important; }
/* nav-link */
/* /////////////////////////////////////////////////////////////////// */
/* padding margin */
.m01{ margin: 1px !important; }
.mg-auto{ margin: auto !important; }
.cpm_p5{ padding: 5px; }
.cpm_p5_black{
    padding: 5px;
    background-color: #000;
}
.header-profile-user{
    padding: 1px !important;
    background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
}
.cbm_ct{
    align-content: center !important;
}
/* padding margin */
/* /////////////////////////////////////////////////////////////////// */
/* button */
.btn_rgn_active {
    background-image: linear-gradient(310deg, #c4aa79 0%, #ffe7bb 100%) !important;
    color: #fff;
}
.btn-gradient-info {
    color: #fff !important;
    background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
    border-color: #fff !important;
}
.btn-gradient-success {
    color: #fff !important;
    background-image: linear-gradient(360deg, #98ec2d 0%, #17ad37 100%) !important;
    border-color: #fff !important;
}
.btn-gradient-warning {
    color: #fff !important;
    background-image: linear-gradient(360deg, #fbcf33 0%, #f53939 100%) !important;
    border-color: #fff !important;
}
.btn-gradient-primary {
    color: #fff !important;
    background-image: linear-gradient(360deg, #FF0080 0%, #7928CA 100%) !important;
    border-color: #fff !important;
}
.btn-gradient-danger {
    color: #fff !important;
    background-image: linear-gradient(360deg, #ff667c 0%, #ea0606 100%) !important;
    border-color: #fff !important;
}
/* button */
/* /////////////////////////////////////////////////////////////////// */
/* my seat */
.myseat_active{
    background-image: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
}
.myseat_active i {
    color: #fff !important;
}
.myseat_active span {
    color: #fbcf33 !important;
}
.myseat_deactive{
    background-image: linear-gradient(310deg, #CED4DA 0%, #EBEFF4 100%);
    pointer-events: none;
    cursor: none;
}
.myseat_deactive i {
    color: #d8b4ff !important;
}
.myseat_deactive span {
    color: #ffaab7 !important;
}
.seat_fill {
    transition: fill 0.3s ease;
}
/* my seat */
/* /////////////////////////////////////////////////////////////////// */
/* no category */
.cspt{ cursor: pointer; }
.csna{ cursor: not-allowed !important; pointer-events: none !important; }
.admh{ display: none; }
.menu-title{ font-size: 14px !important; }
.page-title-box { padding: 25px 24px 40px 24px !important; }
.cbm_sidebar_bg{
    background-image:url(../assets/images/title-img.png);
    background-color: #fff;
}
.usedforbooking{
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(255, 99, 132, 1);
    display: inline-block;
    margin-bottom: 1rem;
    margin-right: 1rem;
    font-weight: 500;
    border-radius: 20px !important; 
    border-style: dotted;
    border-width: 2px;
    border-color: #fff;
    color: #fff;
}
.usingticket{
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #17ad37;
    display: inline-block;
    margin-bottom: 1rem;
    margin-right: 1rem;
    font-weight: 500;
    border-radius: 20px !important; 
    border-style: dotted;
    border-width: 2px;
    border-color: #fff;
    color: #fff;
}
/* no category */
/* /////////////////////////////////////////////////////////////////// */
/* loader https://css-loaders.com/shapes/ */
/* -- */

/* HTML: <div class="loader"></div> */
.cbm_loader_01 { --c: no-repeat linear-gradient(#42a7ff 0 0);
    background: var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c);
    background-size: 16px 16px;
    animation: l32-1 1s infinite, l32-2 1s infinite;
}
@keyframes l32-1 {
    0%, 100% { width: 45px; height: 45px }
    35%, 65% { width: 65px; height: 65px }
}
@keyframes l32-2 {
    0%, 40% { background-position: 0 0, 0 50%, 0 100%, 50% 100%, 100% 100%, 100% 50%, 100% 0, 50% 0, 50% 50% }
    60%, 100% { background-position: 0 50%, 0 100%, 50% 100%, 100% 100%, 100% 50%, 100% 0, 50% 0, 0 0, 50% 50% }
}
/* -- */
/* HTML: <div class="loader"></div> */
.cbm_loader_02 {
    width: 40px;
    height: 40px;
    --c:no-repeat linear-gradient(#42a7ff 0 0);
    background: var(--c),var(--c),var(--c),var(--c);
    background-size: 21px 21px;
    animation: cbmld02 1.5s infinite cubic-bezier(0.3,1,0,1);
}
@keyframes cbmld02 {
   0%   {background-position: 0    0,100% 0   ,100% 100%,0 100%}
   33%  {background-position: 0    0,100% 0   ,100% 100%,0 100%;width:60px;height: 60px}
   66%  {background-position: 100% 0,100% 100%,0    100%,0 0   ;width:60px;height: 60px}
   100% {background-position: 100% 0,100% 100%,0    100%,0 0   }
}
/* HTML: <div class="loader"></div> */
.cbm_loader_03 {
    width: 20px;
    aspect-ratio: 1;
    background: #42a7ff;
    box-shadow: 0 0 60px 15px #42a7ff;
    transform: translate(-80px);
    clip-path: inset(0);
    animation:
      l4-1 0.5s ease-in-out infinite alternate,
      l4-2 1s   ease-in-out infinite;
  }
  @keyframes l4-1 {
    100% {transform: translateX(80px)}
  }
  @keyframes l4-2 {
     33% {clip-path: inset(0 0 0 -100px)}
     50% {clip-path: inset(0 0 0 0)     }
     83% {clip-path: inset(0 -100px 0 0)}
  }
/* loader */
.lds-hourglass,
.lds-hourglass:after {
  box-sizing: border-box;
}
.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
/* loader */
/* side bar */
.mm-active .active {
    color: #fff !important;
    background-image: linear-gradient(360deg, #21d4fd 0%, #2152ff 100%) !important;
}
.mm-active .active i{color:#fff!important}
#sidebar-menu ul li a:hover{color:#1e96ff}
#sidebar-menu ul li a:hover i{color:#1e96ff}
/* side bar */
/* checkmark */

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}
@keyframes stroke { 100% { stroke-dashoffset: 0 } }
@keyframes scale { 
    0%, 100% { transform: none }
    50% { transform: scale3d(1.1, 1.1, 1) }
}
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px #7ac142 } }
/* checkmark */



/* footer */
.footer {
    /* background-color: #024ad1; */
    /* background-image: linear-gradient(310deg, #2570d3 0%, #4159f1 100%) !important; */
    background-image: linear-gradient(310deg, #374151 0%, #374151 100%) !important;
    color: white;
    padding: 40px 0;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    /* background: linear-gradient(to right, #00205b, #0056a6, #007bff, #4dabf7, #ff6b6b, #ff5252, #ff1a1a); */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 180px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #b3d7ff;
    padding-left: 5px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media screen and (max-width: 992px) {
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #e9446a 0%, #ff8057 100%);
    color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.cookie-banner p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-banner h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.cookie-button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-deny {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-accept {
    background-color: white;
    color: #e9446a;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* For demo purposes - to make banner visible immediately */
.cookie-content {
    text-align: center;
    padding: 20px;
}

/* /////////////////////////////////////////////////////////////////// */
/* loader https://css-loaders.com/shapes/ */
/* -- */
/* HTML: <div class="loader"></div> */
.cbm_loader01 { width: 40px; height: 20px; background: orange; position: relative; animation: l9-0 1.5s infinite linear; }
.cbm_loader01:before, .cbm_loader01:after { content: ""; position: absolute; background: inherit; bottom: 100%; width: 50%; height: 100%; animation: inherit; animation-name: l9-1; }
.cbm_loader01:before { left: 0; transform-origin: bottom left; --s: -1; }
.cbm_loader01:after { right: 0; transform-origin: bottom right; }
@keyframes l9-0 { 
    0%, 10% { transform: translateY(0%) scaleY(1) }
    49.99% { transform: translateY(-50%) scaleY(1) }
    50% { transform: translateY(-50%) scaleY(-1) }
    90%, 100% { transform: translateY(-100%) scaleY(-1) }
}
@keyframes l9-1 {
    10%, 90% { transform: rotate(0deg) }
    50% { transform: rotate(calc(var(--s, 1)*180deg)) }
}
/* -- */
/* HTML: <div class="loader"></div> */
.cbm_loader_02 {
    width: 40px;
    height: 40px;
    --c:no-repeat linear-gradient(#42a7ff 0 0);
    background: var(--c),var(--c),var(--c),var(--c);
    background-size: 21px 21px;
    animation: cbmld02 1.5s infinite cubic-bezier(0.3,1,0,1);
}
@keyframes cbmld02 {
   0%   {background-position: 0    0,100% 0   ,100% 100%,0 100%}
   33%  {background-position: 0    0,100% 0   ,100% 100%,0 100%;width:60px;height: 60px}
   66%  {background-position: 100% 0,100% 100%,0    100%,0 0   ;width:60px;height: 60px}
   100% {background-position: 100% 0,100% 100%,0    100%,0 0   }
}
/* loader */
/* /////////////////////////////////////////////////////////////////// */
/* cbm other */
.spinnerCheck{
    margin-right: 5px;
}
.cbm_btn:disabled{
    cursor: not-allowed !important;
    pointer-events: none !important;
    background-color: #f7f7f7;
    color: #a7a7a7;
}
/* cbm other */
