/******** for paging *************/

.clear {
    clear: both;
}

.pgnum {
    display: block;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
    margin: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.pgnum a {
    color: #333;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    border: 1px solid #9191AF;
    border-radius: 3px 3px 3px 3px;
    background: #E6E6E6;
    font-size: 12px;
}

.pgnum a:hover {
    background: #9191AF;
    text-decoration: none;
    padding: 5px 5px 5px 5px;
}

.pgnum .current {
    border: 1px solid #9191AF;
    border-radius: 3px 3px 3px 3px;
    padding: 5px 5px 5px 5px;
    font-size: 12px;
    text-decoration: none;
    background: #FFF;
    color: #000;
}

.pgnum .fleft {
    float: left;
    width: auto;
    padding: 8px 20px 8px 20px;
    margin-bottom: 5px;
    background: #016694;
    color: #FFFFFF;
    font-weight: bold;
    border: 1px solid #FFF;
}

.pgnum .fright {
    float: right;
    width: auto;
    padding: 10px 20px 10px 10px;
    margin-bottom: 5px;
}


/********************Form******************/


/**************** Validate error *********************/

div.error {
    color: #ed1c24;
    font-size: 12px;
    margin: 5px;
}

input.error,
select.error,
textarea.error {
    border: 1px solid #ed1c24;
    background-color: #ffe6e7;
}

.success {
    color: #28ff28;
    font-size: 12px;
    margin: 5px;
}


/* Messages */

.notification {
    display: block;
    padding: 10px 10px 10px 30px;
    border: 1px solid;
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-position: 10px 10px;
    color: #0f0f0f;
}

.n-success {
    background-color: #a3e6bd;
    border-color: #68d59b;
    background-image: url(../future-admin/images/notification-tick.png);
    margin: 5px;
    padding: 8px 12px 12px 45px;
}

.n-information {
    background-color: #fdedc8;
    border-color: #e3a54e;
    background-image: url(../future-admin/images/notification-information.png);
    margin: 5px;
    padding: 8px 12px 12px 45px;
}

.n-error {
    background-color: #ffc6ca;
    border-color: #FF3333;
    background-image: url(../future-admin/images/notification-slash.png);
    margin: 5px 0;
    padding: 8px 12px 12px 45px;
}


/*** Form Page ***/

.input_field1 {
    width: 300px;
    padding: 5px;
    height: 24px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.input_field1a {
    width: 247px;
    padding: 5px;
    height: 18px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
    margin-bottom: 12px;
}

.input_field01 {
    width: 235px;
    padding: 5px;
    height: 24px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.input_select1 {
    width: 312px;
    padding: 5px;
    height: 32px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
    padding: 3px;
}

.input_field2 {
    width: 100px;
    padding: 5px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.input_field3 {
    width: 50px;
    padding: 4px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.input_field4 {
    width: 100px;
    padding: 4px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.input4 {
    width: 350px;
    padding: 4px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #c4c4c4;
}

.text_area {
    width: 340px;
    height: 100px;
    padding: 5px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
}

.text_area_a {
    width: 247px;
    height: 104px;
    padding: 5px;
    border: 1px solid #c4c4c4;
    font-size: 13px;
    color: #666;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 12px;
}

#loadingPanel {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    line-height: 100vh;
    /* Vertically center text */
}


/* MOBILE NAV (fixed) */

.mobile-nav {
    display: none;
    /* hidden on large screens; shown via media query */
}


/* style of the fixed footer */

.mobile-nav.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #350000 url(../images/pattern.png) repeat;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -6px 18px rgba(30, 45, 60, 0.06);
    padding: 8px 10px;
    /* account for safe area on iPhone X and later */
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    backdrop-filter: blur(6px);
}

.mobile-nav__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    -webkit-tap-highlight-color: transparent;
    flex: 1 1 0;
    text-align: center;
    padding: 6px 6px 2px;
    color: #222;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
}

.nav-item:active,
.nav-item:focus {
    background: rgba(25, 120, 255, 0.06);
    outline: none;
}

.nav-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: #FFF;
    stroke-width: 1.6;
}

.nav-item .label {
    display: block;
    font-size: 11px;
    color: #FFF;
    line-height: 1;
}


/* active state example */

.nav-item.active .nav-icon,
.nav-item.active .label {
    stroke: #1a73e8;
    color: #1a73e8;
    font-weight: 600;
}


/* show footer only on small screens (mobile) */

@media (max-width: 820px) {
    .mobile-nav {
        display: block;
    }
}


/* Hide on very small screens? adjust as needed */

@media (max-width: 320px) {
    .nav-item .label {
        font-size: 10px;
    }
    .nav-icon {
        width: 20px;
        height: 20px;
    }
}