* {
    -webkit-text-size-adjust: none;
}
html {
    -webkit-text-size-adjust: 100% ;
    -moz-text-size-adjust: 100% ;
    text-size-adjust: 100% ;
}
html, body {
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}
:root {
    --primary-color: #0378FC;
    --primary-color-dark: #07458b;
    --success-color: #24AE64;
    --error-color: #E04040;

    /* Light Mode */
    --bg-light: #FFFFFF;
    --panel-bg-light: #F7FAFC;
    --text-light: #1A202C;
    --text-secondary-light: #A0AEC0;
    --border-light: #E2E8F0;
    --icon-light: #4B5563;

    /* Dark Mode */
    --bg-dark: #1A202C;
    --panel-bg-dark: #2D3748;
    --text-dark: #FFFFFF;
    --text-secondary-dark: #A0AEC0;
    --border-dark: #4B5563;
    --icon-dark: #A0AEC0;

    --focus-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4);
    --hover-shadow: 0 2px 8px rgba(2, 1, 1, 0.15);
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('/assets/fonts/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

body {
    font-family: Paperozi;
    font-weight: 700;
    font-style: 6 SemiBold;    
    line-height: 30px;
    letter-spacing: 5%;
    background-color: #F2F2F2;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.dataTables_processing{text-align: center;}
.menu{
    width:30px;
    cursor:pointer;
}
.menu div{
    height:3px;
    background-color: #000;
    margin: 5px 0;
    transition: .4s;    
}
.menu:hover div:nth-child(1){
    transform: rotate(45deg) translate(5px,5px);    
}
.menu:hover div:nth-child(2){
    opacity: 0;
}
.menu:hover div:nth-child(3){
    transform: rotate(-45deg) translate(6px,-6px);    
}

.transition{
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-btn { 
   
}
.text-event-tile{
  color: #000;
  font-family: Paperozi;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 3%;
  font-size: 0.8rem;
  text-decoration: none;
}
/* Menu */
.menu {
    position: absolute;
    top: 42px;          /* directly under button */
    right: 8px;
    background: #ffffffc4;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    min-width: 140px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: 0.2s ease;
}
.overDiv,.grayscale {
    filter: grayscale(1);
}

/* Show menu on click */
.dropdown:focus-within .menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu items */
.menu li a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.menu li a:hover {
    background: #f2f2f269;
}


.form-control:focus { 
  box-shadow: none!important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 98%;
}

.text-right {
    text-align: right;
}
.text-shadow-sm{
    text-shadow: 1px 1px 1px #000;
}
.btn-custom.pull-left svg {
    width: 20px!important;
    height: 20px!important;
    display: block;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
}
  .swal-button--cancelx {
    background-color: #bfbcbc;
    color: #fff;
}
.swal-button--cancelx:hover {
    background-color: #9b9b9b!important;
    color: #fff;
  }
.swal-button--confirmx:hover{
    background-color: #f97c7c!important;
}
#loadingOverlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0378FC;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pl-1{
    padding-left: 0.25rem!important;
}
.pl-2{
    padding-left: 0.5rem!important;
}
.pl-3{
    padding-left: 1rem!important;
}

.container {
    overflow: hidden;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 1rem;
}

.ml-4 {
    margin-left: 1.5rem;
}

.ml-5 {
    margin-left: 3rem;
}

.mr-1,.me-1 {
    margin-right: 0.25rem;
}

.mr-2,.me-2 {
    margin-right: 0.5rem;
}

.mr-3,.me-3 {
    margin-right: 1rem;
}

.mr-4,.me-4 {
    margin-right: 1.5rem;
}

.mr-5,.me-5 {
    margin-right: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}
.mt-6{
    margin-top: 4rem;
}
.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}
.mb-12{
    margin-bottom: 12rem !important;
}
.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.dataTables_footer{
    margin-top:1rem;
}
.col-md-12{
    width: 100%;
}
.rowhover:hover{
    background-color: #ffeaea !important;
    cursor: pointer !important;
    transition: background 0.2s;
}

  tbody > tr:not(:last-child):hover,
tbody > tr:not(:last-child):hover td {
    background-color: #ffeaea !important;
    /* Use a lighter red for better UX */
    cursor: pointer !important;
    transition: background 0.2s;
}
.btn-default {
    background-color: rgba(0, 0, 0, 0.05) !important;
    cursor: pointer !important;
    border:1px solid #e2e8f0;
    transition: background 0.2s; 
}
.btn-default:hover {
    background-color: #f7f7f780 !important;
    cursor: pointer !important;
    border:1px solid rgba(0, 0, 0, 0.175);
    transition: background 0.2s; 
}
.btn-custom:hover {
    background-color: #ffeaea !important;
    cursor: pointer !important;
    transition: background 0.2s; 
}
.btn-custom-100 {
    width: 100%;
    height: 100%;
    border-radius: 0.375rem;
    background: #f7f7f7;
    border: 0;
    cursor: pointer;
}

.btn-custom {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f7f7f7;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    flex: 0 0 36px;
    text-decoration: none;
    color: #000 !important;
}
.btn-custom-sm {
    width: auto;
    border: 1px solid #CCCCCC;
    height: 29px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-family: Paperlogy;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    color: #0b1220;
    padding: 0 5px;
    line-height: 19px;
    letter-spacing: 0%;
    margin-top: -9px;
  }
.bordered-card {
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
}
.bordered-primary{ border:solid 1px #0378FC !important; }
.bordered-primary-light{ border:solid 1px #0377fc6c !important; }
.border-gold,.bordered-gold {
    border:solid 1px #FFD700 !important;
  }
  .paginate_button .active a{
    color:#fff!important;
  }
  input:checked + label {
    color: #0378FC!important;
    background-color: #0378FC;
    border-right-color: #c0c0c0;
    border-left-color: #c0c0c0;
  }

  /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.input-lg {
    height: 60px;
    font-size: 1rem;
}
.right {
    right:0;
}
.top-right{
    top:0;
    right:0;
}
.top-left{
    top:0;
    left:0;
}
.bottom{
    bottom:0;
}
.bottom-left{
    left:0;
    bottom :0;
}
.bottom-right{
    bottom:0px;
    right:0px;
}
#customSearchBox{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.mt-6 {
    margin-top: 3.5rem;
}
.min-sub-txt {
    margin-top: -6px;
     
}
.heading-txt-0-6 {
    font-family: Paperozi;
    font-weight: 400;
    font-style: 4 Regular;
    font-size: 9px;
    line-height: 30px;
    letter-spacing: 5%;
  }
.heading-txt-2-2{
    font-family: Paperozi;
    font-weight: 600;
    font-style: 6 SemiBold;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 5%;
}
.heading-txt-1-6 {
    font-family: Paperozi;
    font-weight: 600;
    font-style: 6 SemiBold;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 5%;

}
.heading-txt-1-5 {
    font-family: 'Paperozi ', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 5%;

}
.heading-txt-1-4 {
    font-family: 'Paperozi ', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -1%;

}

.heading-txt-1-2 {
    font-family: 'Paperozi ', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -1%;

}

.heading-txt-1-1 {
    font-family: Paperozi;
    font-weight: 700;
    font-style: 6 SemiBold;    
    line-height: 30px;
    letter-spacing: 5%;
    font-size: 1.1rem;

}

.heading-txt-0-6 {
    font-family: Paperozi;
    font-style: 6 SemiBold;    
    line-height: 30px;
    letter-spacing: 5%;
    font-size: 0.6rem;
    font-weight: 400;
   
   
}

.muted-txt {
    color: #989898 !important;
}

.event-filter {
    float: left;
    padding: 2px 8px;
    width: auto;
    margin-left: 2px;
    border-radius: 4px;


}
/* *****************************************
 enrollment.php & main.php
***************************************** */
.borded-card {
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
}

.cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 66px;
    height: auto;
}

@media (max-width: 768px) {
    .btn-all {
        height: 30px;
        padding: 0 10px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    .btn-all {
        height: 36px;
        padding: 2px 15px;
    }
}
/* ***************************************** */

.content{
    position: relative;
 }
 .overlay{
    position: absolute;
    left: 0; 
    top: 0; 
    right: 0; 
    bottom: 0;
    z-index: 2;
    background-color: rgba(255,255,255,0.8);
 }
 .overlay-content {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
 }

 /* **************************************************** */
 .modal-content{
    background-color: #fff!important;
 }
 .topRightCorner {
    transform: rotate(45deg);
    margin-top: 0px;
  margin-right: -15px;
  line-height: 1.5;
    opacity: 0.5;    
}
.event-filter:hover {
    background: #f7f7f7;
}

.event-filter div {
    float: left;
}
 
.event-filter img {
    float: left;
    width: 20px;
    height: 20px;
    margin-top: 4px;
}
.bg-gradient-bottom2top{
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
}
.bg-light-green{
    background-color: #0ba65138;
}
.bg-light-gray-sm{
    background-color: #f7f7f7c9;
}
.bg-white {
    background-color: #fff;
}
.bg-light-green{background-color: #023b0e6e;}

.bg-light-blue {
    background-color: #7cd1f9;
}
.bg-primary {
    background-color: #b6d7fd;
}
.bg-primary-light:hover{
    background-color: #7cd1f9;
    color: #fff !important;
    transition: background-color 0.3s ease, color 0.3s ease;    
}
.bg-primary-light{
    background-color: #e3effd;
}
.bg-dark-primary{
    background-color: #1E2A37;
}
.bg-red{
    background-color: #E55647;
}
.bg-dark-purple{
    background-color: #3E304A;    
}
.bg-light-gray{
    background-color: #F7F7F7;
}
.bg-gray {
    background-color: #F2F2F2;
}
.bg-dark-gray {
    background-color: #333333;
}
.overflow-hidden{
    overflow: hidden;
}
.position-absolute,.absolute {
    position: absolute;
}
.position-relative,.relative {
    position: relative;
}
.position-fixed,.fixed {
    position: fixed;
}
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.img-fluid {
    width: 40px;
}
.text-shadow{
    text-shadow: 2px 2px 4px #000000;
}
.text-golden{
    color:#FFD700;
}
.text-medium{
    font-size: 1rem;
}
.text-medium2{
    font-size: 0.8rem;
}
.text-small{
    font-size: 0.6rem;
}
.text-strong {
    font-weight: 600;
    letter-spacing: 0.08em;
}
.font-1-2rem{
    font-size: 1.2rem;
}
.text-muted, .text-gray, .text-mute {
    color: #989898 !important;
}
.right-25px{
    right: 25px;
}
.right-20px{
    right: 20px;
}
.min-height-36px{
  min-height:36px;
}
.min-height-50vh{
    min-height: 50vh;
}
.max-height-60px{
    max-height: 60px;
    overflow: hidden;
    overflow-y: auto;
   display: inline-block;
    max-width: 100%;
}
.min-height-30px{
    min-height: 30px;
}

.text-success{
    color:#0BA650!important;
}
.text-primary {
    color: #0378FC !important;
}

.w100p {
    width: 100%;
}
.notice-date-text{
    position: absolute;
   right: 29px;
   margin-top: -15px;
 }
.img-fluid {
    width: 20px;
}
.card2{
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14) !important;
    box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14)!important;
}
.outter-shadow{
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14) !important;
    box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14) !important;    
}
.inside-shadow{
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125) !important;    
}
.shadow-sm-bottom1 {
    box-shadow: 0 2px 4px 0 rgba(92, 90, 90, 0.3);
}
.shadow-sm-bottom0 {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.shadow-sm-bottom {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
  }
.body-card {
    border-radius: 16px;
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

td a {
    color: #000;
    font-family: Paperozi;
    font-weight: 500;          
    line-height: 30px;
    letter-spacing: 3%;
    font-size: 0.8rem;
    text-decoration: none;
}

.hideOnMobile {
    display: block;
}

@media (max-width: 768px) {
    .hideOnMobile {
        display: none;
    }



}

.custom-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border-radius: var(--bs-border-radius);
    border: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-top: -5px;
}

#search-container {
    width: 100%;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.hide,.hidden {
    display: none;
}

.event-filter {
    background-color: #fff;
}

.event-filter-btn {
    cursor: pointer;
}

.my-form-control {
    display: block;
    width: 90%;
    padding: 0px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.membership-withdraw-warning-text {
font-size: 0.8rem;
line-height: 100%;
letter-spacing: 5%;

}
.notificationDetail-pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-family: Paperozi;
    font-weight: 400;
    letter-spacing: 5%;
    text-decoration: none;
    font-size: 1.2rem;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: auto;
    box-sizing: border-box;
    padding: 20px 15px;
    padding-right: 15px;
    padding-left: 15px;
}
.btn-sm{
    height: 30px;
    line-height: 0;
}
.search-btn-filter-container {
    margin-top: 0;
    width: 39px;
    padding: 0;
    height: 35px;
}

.btn-pull-left {
    width: 24px;

    padding: 4px 0px;
    margin-left: -8px;
    float: left;
}

.btn-pull-right {
    width: 24px;

    padding: 4px 0px;
    margin-right: -8px;
}

.event-filter-container-inner {
    overflow: hidden;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#footer {
    padding: 2.4rem 0 0.2rem;
    text-align: center;
    border-top: 1px solid #C4C4C4;
    color: #939191;
    ;
    margin: 0 20px;
    margin-bottom: 0px;
}
#footer > p:nth-child(5){
    line-height: 1.5rem;
}
#footer>p {
    font-size: 0.71rem;
    line-height: 0.4rem;
}

.table> :not(caption)>*>* {
    padding: 0.1rem .5rem 0.9rem 0.5rem !important;
}

.table>thead {
    height: 54px;
}

.min-txt {
    position: absolute;
    margin-top: -10px;
}
 
.text-default {
    color: #000!important;
}
.rounded-oval{
    border-radius: 50%;
}
.roundedbox {    
    border-radius: 4px;
  }
  .bordered {
    border: 1px solid rgba(0, 0, 0, 0.175);
  }

.rounded-12px{
    border-radius: 12px;
}
.tag{
    font-size: 0.7rem;
    font-weight: 400;
    border-radius: 1rem;
    padding: 4px 10px;
}
.tag-cherry{
    color:#fff;
    background-color: #F5420C;
}
.tag-wood{
    color: #fff;
    background-color: #A95C22;
}
.tag-mine{
    color: #fff;
    background-color: #494542;
}
.tag-stone{
    color: #fff;
    background-color: #80776C;
}
.tag-bronze{
    color: #fff;
    background-color: #A55022;
}
.tag-silver{
    color: #fff;
    background-color: #A9B0BA;
}
.tag-gold {
    color: #fff;
    background-color: #F9D355;
}
.tag-emerald {
    color: #fff;
    background-color: #0BA650;
}
.tag-ruby {
    color: #fff;
    background-color:#BD0107;
}
.tag-diamond {
    color: #fff;
    background-color: #D8DFDA;
}
.tag-legend {
    color: #fff;
    background-color: #0378FC;
}

  .icon-text {
    font-family: Paperozi;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 5%;
    text-decoration: none;
    color: #000 !important;
  }
  .text-cherry{
    color:#F5420C;
  }
  .text-heavy{
    font-weight: 700;
  }
 .text-tiny,.text-thin {
    font-weight: 400 !important;
}
.a-padding { padding: 7px; }
.w-10 {
    width: 10%;
}
.w-20 {
    width: 20%;
}
.w-25 {
    width: 25%;
}
.w-49 {
    width: 49%;
}

.w-50 {
    width: 50%;
}
.w-75 {
    width: 75%;
}
.w-80 {
    width: 80%;
}
.w-90 {
    width: 90%;
}
.w-100 {
    width: 100%;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.course-div-heading {
    font-family: Paperozi;
    font-weight: 500;
    font-size: 13px;
    color: rgb(141, 139, 139) !important;
    width: 100%;
    padding: 3px 0 0 0;
    border-bottom: 1px solid #c0c0c06e;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 3px;
  }
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .col-xs-2 {
        width: 10%;
    }

    .col-xs-10 {
        width: 80%;
    }

    .mobilehide {
        display: none;
    }
    .desktopAlignment{
        margin-top:4px;
    }
    .desktophide {
        display: block;
    }

    .table> :not(caption)>*>* {
        padding: 0.1rem .1rem 0.7rem 0.1rem !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {

        padding: 3px 5px !important;

    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .col-xs-2 {
        width: 10%;
    }

    .col-xs-10 {
        width: 90%;
    }

    .mobilehide {
        display: none;
    }
    .desktopAlignment{
        margin-top:4px;
    }
    .desktophide {
        display: block;
    }

    .table> :not(caption)>*>* {
        padding: 0.1rem .5rem 0.5rem 0.5rem !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {

        padding: 0px 10px !important;

    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .col-xs-2 {
        width: 5%;
    }

    .col-xs-10 {
        width: 86%;
        
    }

    .mobilehide {
        display: block;
    }
    .desktopAlignment{
        margin-top: 5px;
    font-size: 1.2rem;
    }
    .desktophide {
        display: none;
    }

    .desktopFloatLeft {
        float: left;
        
    }

    .desktopFloatRight {
        float: right;
    }

    .desktopMinTxt {
        font-size: 0.7rem;
        margin-top: 4px;
        color: #989898 !important;

    }

    .table> :not(caption)>*>* {
        padding: 0.1rem .5rem 0.2rem 0.5rem !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {

        padding: 3px 8px !important;

    }
}

/* ******************************************************************************************* */

/* Main container */
.dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* All buttons reset */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    border-radius: 4px;
     
    color: #333;
    cursor: pointer;
    min-width: 35px;
    text-align: center;
}

/* CENTER the numbers */
.dataTables_wrapper .dataTables_paginate span {
    margin: 0 auto; /* 🔥 this centers page numbers */
    display: flex;
    gap: 6px;
}

/* LEFT arrow */
.dataTables_wrapper .paginate_button.previous {
    position: absolute;
    left: 0;
}

/* RIGHT arrow */
.dataTables_wrapper .paginate_button.next {
    position: absolute;
    right: 0;
}

/* Active page */
.dataTables_wrapper .paginate_button.current {
    background: #007bff;
    color: #fff;
}

/* Disabled */
.dataTables_wrapper .paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Arrow icons */
.dataTables_wrapper .paginate_button.previous::before {
    content: "\f104";
    font-family: "FontAwesome";
}

.dataTables_wrapper .paginate_button.next::after {
    content: "\f105";
    font-family: "FontAwesome";
}
.pagination_btns,.pagination{
position:relative;
height:44px;
width:100%;
margin-top: -15px;
}
.paginate_button{
width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #fff;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  flex: 0 0 36px;
  text-decoration: none;
  color: #000 !important;
}
.goto-page-input {
    text-align: center;
}
.paginate_button>a{
display:none;}
.dataTables_paginate{min-height:44px;}
/* ******************************************************************************************* */
/* ******************************************************************************************* */
  .wb{position:relative;display:inline-flex;align-items:center; justify-content:center;gap:.5rem}
  .wb[disabled]{opacity:.65;cursor:not-allowed}
  .wb .wb-bar{position:absolute;left:0;right:0;bottom:0;height:3px;background:rgba(0,0,0,.08);display:none;overflow:hidden;border-radius:0 0 .4rem .4rem}
  .wb .wb-bar i{display:block;height:100%;width:0%;background:currentColor;transition:width .15s linear}
  .wb.wb-showbar .wb-bar{display:block}
  /* ******************************************************************************************* */
/* ******************************************************************************************* */
/* ******************************************************************************************* */