:root {
    --primary: rgba(200, 165, 97, 1);
    --primary-rgb: 200, 165, 97;
    --secondary: rgba(23, 23, 23, 1);
    --grey: rgba(115, 119, 126, 1);
    --lightgrey: rgba(223, 227, 233, 1);
    --darkgrey: rgba(37, 57, 58, 1);
    --font-slate: 'Slate', sans-serif;
    --bs-success-rgb: 71, 155, 58;
    --enable-cssgrid: true;
    --bg-dark: #121818;

}

@font-face {
    font-family: 'Slate';
    src: url('../fonts/v1/SlateLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Slate';
    src: url('../fonts/v1/SlateBook.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Slate';
    src: url('../fonts/v1/SlateMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Slate';
    src: url('../fonts/v1/SlateBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-slate);
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-slate);
    background-image: url(../assets/images/v1/main-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
}

h2.main-title {
    font-size: 28px;
    color: var(--secondary);
}

b,
strong {
    font-weight: 500;
}


.bg-grey {
    background: #e6e9ee;
}
.bg-primary{
    background-color: var(--primary) !important;
}

/**
 * Main Wrapper
 * */
.overflow-wraper {
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.overflow-wraper::before,
.overflow-wraper::after {
    content: "";
    position: absolute;
    width: 824px;
    height: 824px;
    background: rgba(238, 227, 206, 0.7);
    filter: blur(262.641px);
    border-radius: 50%;
    z-index: -1;
}

.overflow-wraper::before {
    left: -322px;
    top: -82px;
}

.overflow-wraper::after {
    right: -322px;
    bottom: -82px;
}

.overflow-wraper>* {
    position: relative;
}

.content-wrapper {
    height: 100%;
    flex: 1 1 auto;
    padding: 60px 0px;
}

.container-fluid {
    max-width: 85% !important;
}

/**
 * Grid System
 * **/
.grid {
    display: grid;
    grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
    grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
    gap: var(--bs-gap, 1.5rem)
}

/**
 * Buttons and Inputs::::
 * */
.btn,
.badge {
    border-radius: 10px;
    padding: .375rem 1rem;
    font-size: 20px;
}

.btn-lg {
    min-width: 150px;
}

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    --bs-btn-active-bg: var(--secondary);
    --bs-btn-active-border-color: var(--secondary);
    border-radius: 12px;
    width: fit-content;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    --bs-btn-active-bg: var(--secondary);
    --bs-btn-active-border-color: var(--secondary);
    border-radius: 12px;
    width: fit-content;
}

.btn.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-theme {
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--secondary);
    transition: all ease 0.2s;
}

.btn.btn-theme:hover {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-theme.bg-white {
    color: rgba(var(--primary-rgb), 1);
}

.btn.btn-theme.bg-white:hover {
    color: #fff !important;
    background-color: rgba(var(--primary-rgb), 1) !important;
    border-color: rgba(var(--primary-rgb), 1) !important;
}

.btn.btn-theme.btn-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn.btn-theme.btn-icon:hover img {
    filter: brightness(100);
}

.btn-danger {
    --bs-btn-bg: #7A1206;
    --bs-btn-border-color: #7A1206;
    --bs-btn-hover-bg: #460c05;
    --bs-btn-hover-border-color: #460c05;
}

.btn-success {
    --bs-btn-bg: #479B3A;
    --bs-btn-border-color: #479B3A;
    --bs-btn-hover-bg: #2e6625;
    --bs-btn-hover-border-color: #2e6625;
}

.form-select {
    --bs-form-select-bg-img: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTQgOCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik0wLjY0MjgyMiAwLjY0MjgyMkw2LjY0MjgyIDYuNjQyODJMMTIuNjQyOCAwLjY0MjgyMiIgc3Ryb2tlPSIjMTlENEREIiBzdHJva2Utd2lkdGg9IjEuMjg1NzEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=');
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    color: rgba(var(--primary-rgb), 1);
    border-radius: 10px;
    background-size: 12px;
    transition: all ease 0.2s;
    cursor: pointer;
}

.form-select:focus,
.form-select:focus-visible,
.form-select {
    border: 1px solid rgba(var(--primary), 0.5);
    color: #fff;
    border-radius: 10px;
    background-color: rgba(var(--primary-rgb), 1) !important;
    --bs-form-select-bg-img: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTQgOCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik0wLjY0MjgyMiAwLjY0MjgyMkw2LjY0MjgyIDYuNjQyODJMMTIuNjQyOCAwLjY0MjgyMiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjI4NTcxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
}

.form-select:hover {
    background-color: var(--secondary) !important;
}

.form-select option {
    background-color: #fff;
    color: #000;
}

/**
 * Tables::::
 * */

.table tbody tr {
    background-color: transparent;
    border-bottom: 1px solid #ddddddc9;
}

.table-theme {
    margin: 0;
}

.table-theme tr th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}


.table>thead {
    border-bottom: transparent;
}

.table-theme tr th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

table tbody tr:hover {
    border-color: transparent;
    border-top: transparent;
    border-width: 0px;
    border-style: hidden;
}

.table-theme th {
    background-color: var(--lightgrey);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 400;
    padding: 10px 15px;
    vertical-align: middle;
    border-right: 1px solid #fff;
}
.table-theme-old th {
    background-color: var(--primary);
    
}
.table-theme tr:hover td span.icon{
    border-color: #fff !important;
}

.table-theme tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table-theme tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.table-theme tr td {
    background-color: transparent !important;
    color: var(--grey);
    font-size: 16px;
    border: none;
    vertical-align: middle;
    padding: 10px 15px;
    line-height: 1.3;
}


table td span.icon {
    display: flex;
    width: 35px;
    align-items: center;
    justify-content: center;
    height: 35px;
    background-color: #fff;
    border: 1px solid var(--primary) !important;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
}

.table-theme tr td span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
}


.table-theme tr.odd {
    background-color: #fff;
}

.table-theme tr.p60 td{
    background-color: #dff5ea !important;
}
.table-theme tr.p60:hover{
    /* background-color: var(--primary); */
    color: gray;
}

.table-theme tr:hover td{
    background-color: var(--primary) !important;
    color: #fff;
}
.table-wrapper.table-accordian tr:hover td {
    background-color: #fff !important;
}
.table-wrapper.table-accordian td span.icon:hover {
    border-color: var(--primary) !important;
    background-color: var(--primary);
}
.table-wrapper.table-accordian tr:hover td span.icon:hover svg, .table-wrapper.table-accordian tr:hover td span.icon:hover svg path{
    fill: #fff;
}
.table-theme tr:hover td {
    color: #fff;
}
.table-wrapper.table-accordian tr:hover td span.icon {
    border-color: var(--primary) !important;
}
.account-form 
 .table-accordian td:last-child {
    padding-right: 50px;
 }
.table-theme .form-control-table {
    background-color: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    height: auto;
    font-size: 16px;
    transition: all ease 0.2s;
}

.table-theme .form-control-table:hover {
    background-color: #fff;
}

.table-theme .btn,
.table-theme .badge {
    font-size: 16px;
    padding: 6px 13px;
}

.table-theme .btn:hover {
    border: 1px solid var(--primary);
    background-color: #fff;
    color: var(--secondary);
}
.table-theme th.accordian-table-toggle{
    padding: 0;
    width: 55px;
}
.table-wrapper .btn.btn-toggle {
    background: #fff;
    color: var(--secondary);
    font-size: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
    transition: all ease 0.2s;
    border-radius: 0px;
}

.table-wrapper .btn.btn-toggle svg {
    width: 22px;
    height: 22px;
    transition: all ease 0.2s;
}

.table-wrapper.open .btn-toggle svg {
    rotate: 45deg;
}

.table-theme .btn-row-action {
    background: #EFF5FD;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all ease 0.2s;
}

.table-theme .btn-row-action img {
    display: block;
    width: 15px;
    transition: all ease 0.2s;
}

.table-theme .btn-row-action:hover,
.table-wrapper .btn.btn-toggle:hover{
    background-color: #fff;
    border: none;
    color: #000;
}
.table-accordian .table-theme tr th:first-child {
    border-bottom-left-radius: 0px;
}
.table-theme .btn-row-action:hover img {
    filter: grayscale(1) brightness(100);
}

.table-theme a {
    text-decoration: none;
    color: var(--primary);
    transition: all ease 0.2s;
}

.table-theme a:hover {
    color: var(--secondary);
}

/**
 * Accordian Table
 * */
.table-wrapper.table-accordian {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dfe3e9;
}

.table-wrapper.table-accordian * {
    border: none;
}

.table-wrapper.table-accordian tr {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.table-wrapper.table-accordian tr td {
    border-radius: 0;
    color: var(--secondary);
}

.table-accordian th, .table-accordian td {
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    font-size: 16px !important;
    flex-wrap: wrap;
    line-height: 1.2;
    border-right: 1px solid #fff !important;
}

.table-accordian th span,
.table-accordian td span {
    font-size: 12px !important;
}

.table-accordian tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    padding: 0;
    width: 100%;
}

.table-accordian th:last-child,
.table-accordian td:last-child {
    display: flex;
    justify-content: flex-end;
}

.table-accordian thead,
.table-accordian tbody {
    display: flex;
    flex-wrap: wrap;
}

/**
 * Dropdowns
 * **/
.dropdown-menu {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-menu li a {
    padding: 8px 12px;
    font-size: 16px;
    color: var(--primary);
    transition: all ease 0.2s;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child>a {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom: 0px;
}

.dropdown-menu li:first-child>a {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.header-admin .dropdown-menu li a:hover,
.header-admin .dropdown .dropdown-menu li:hover {
    background: var(--primary);
    color: #fff;
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: #fff;

}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/**
 * Form Controls
 * **/
.form-control {
    font-family: var(--font-slate);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #ABC6D7;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 18px;
}

.form-control:focus-visible,
.form-select:focus-visible {
    outline: none;
    box-shadow: none;
    background-color: rgba(239, 245, 253, 1);
    border-color: rgba(171, 198, 215, 1);
}

.form-control::placeholder {
    color: rgba(80, 106, 140, 0.6);
    font-family: var(--font-slate);
}

select.form-control {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjY0MjgyMiAwLjY0MjU3OEw2LjY0MjgyIDYuNjQyNThMMTIuNjQyOCAwLjY0MjU3OCIgc3Ryb2tlPSIjNTA2QThDIiBzdHJva2Utd2lkdGg9IjEuMjg1NzEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
    background-position: right 1rem center;
    background-repeat: no-repeat;
}

.form-label,
.form-group label {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 3px;
}

.form-control.employee-statement {
    width: 80px;
}

.table-theme .form-control {
    font-size: 16px;
    padding: 6px 13px;
}

.switch-theme .form-check-input {
    width: 55px;
    height: 28px;
    margin: 0;
    background: transparent;
    border-radius: 50px;
    border: 1px solid var(--secondary);
    box-shadow: none !important;
    cursor: pointer;
    position: relative;
}

.form-check-input {
    box-shadow: none !important;
    border-color: var(--primary);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Custom Swicth Knob */
.switch-theme .form-check-input::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.switch-theme .form-check-input:checked::before {
    transform: translateX(27px);
}

.switch-theme .form-check-input:checked {
    background: var(--secondary);
    border-color: var(--secondary);
}

.switch-theme .form-check-input:checked:before {
    background: #fff;
}

.switch-theme .form-check-label {
    margin-left: 5px;
    color: #506A8C;
}

/**
 * Message Content
 * */
.message-card .message-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.message-card .message-content {
    font-size: 18px;
    line-height: 1.5;
}

/*********/
.sidebar-main {
    position: relative;
}

.content-card .card-head {
    font-weight: 500;
    color: var(--secondary);
}

.content-card .card-body {
    font-size: 18px;
}

.content-card .card-body p {
    margin-bottom: 7px;
}

.card-head.bg-secondary {
    background: var(--secondary) !important;
}

.login-card {
    background-color: rgba(248, 249, 255, 0.9);
    box-shadow: 0px 4px 10px rgba(146, 171, 205, 0.2);
}

.doc-preview-card {
    width: 100%;
    min-height: 280px;
    background-color: #EFF5FD;
    display: flex;
    align-items: center;
}

.doc-preview-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-messsages-list {
    max-height: 380px;
    overflow: auto;
}

.card-messsage p {
    color: #002E65B2;
    line-height: 1.3;
}

.card-messsage {
    transition: all ease 0.2s;
}

.card-messsage:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.action-filters * {
    font-size: 18px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal p {
    color: #506A8C;
}

.modal .main-title {
    font-size: 22px;
}

.modal#passwordResetModal {
    --bs-modal-width: 580px;
}
.form-group {
    margin-bottom: 10px;
}
.theme-content {
    font-size: 20px;
    color: var(--secondary);
    line-height: 1.5;
}

.theme-content p {
    line-height: 1.4;
}

.bg-wrap {
    background: #FFFFFF;
    border: 1px solid #EEE6D6;
    box-shadow: 0px 4px 90px rgba(96, 69, 18, 0.2);
    border-radius: 20px;
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 46, 101, 0.85);
}

/* Login screen css */
.login-wrapper {
    height: 100vh;
    position: relative;
}

.login-footer p {color: #fff;text-align: center;}

.enter-password-field {
    position: relative;
    width: 340px;
    margin: auto;
}

.enter-password-field .toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(5px, -48%);
}

.login-form {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(219, 230, 245, 1);
    border-radius: 40px;
    padding: 40px;
    width: 568px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-text {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.4;
}

.login-form .logo {
    width: 240px;
}

.login-form .form-control {
    text-align: center;
    width: 340px;
    margin: auto;
    font-weight: 500;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

.eye-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0%, -50%);
}

.field-container {
    position: relative;
}

/* Header */
.header-admin {
    background-color: var(--secondary);
    border-radius: 0px 0px 10px 10px;
}

.arow-icon {
    width: 12px;
}

.login .btn.btn-theme.bg-white {
    color: var(--secondary);
}
/* .flag .dropdown-menu.show{
    margin-top: 40px !important;
}
.flag .dropdown-menu{
    transform: none !important;
    text-align: center;
} */
.dropdown.flag .dropdown-menu {
    min-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.header-admin .btn-theme {
    height: 38px;
}
.dropdown.flag .btn.btn-theme.btn-icon:hover img {
    filter: brightness();
}

.copywrite {
    background-color: #fff;
    padding: 10px;
    z-index: 1;
}

/* Sidebar Css */
.sidebar {
    position: sticky;
    display: flex;
    flex-direction: column;
}

.sidebar-link li {
    border: 1px solid rgba(0, 46, 101, 0.15);
    border-radius: 12px;
    list-style-type: none;
    padding: 8px 10px;
    margin-bottom: 15px;
}

.sidebar-link li.active,
.sidebar-link li:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.sidebar-link li.active a,
.sidebar-link li:hover a {
    color: #fff;
}

.sidebar-link li a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.sidebar-link {
    padding-left: 0px;
    margin-left: 0px;
}

.card {
    border: none;
    border-radius: 16px;
}

.card-heading {
    color: var(--secondary);
    font-size: 28px;
    font-weight: 500;
}


/* Content Wrap Css */
.content-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-bottom: 0.5rem;
}
.content-main ul li {
    position: relative;
    padding-left: 22px;
}
.table-accordian th{
    font-size: 14px !important;
    color: #fff;
}
.content-main ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url(../assets/images/v1/list-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bold-caption {
    color: var(--secondary);
    font-size: 22px;
    line-height: 1.3;
}

/*  Employement Css */
.accordion-item {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.accordion .header-bar {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 3px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    overflow: hidden;
}

.accordion .header-bar .col {
    padding: 12px 15px;
}

.accordion-button::after {
    display: none;
}

.accordion .header-bar .col-auto {
    border-right: 1px solid #ddd;
    padding: 0px 8px;
}

.accordion .header-bar .col-auto:last-child {
    padding: 0px 0px;
}

.accordion .header-bar .col-auto:nth-child(3) {
    border-right: 0px;
}

.header-bar.bg-grey {
    color: rgba(94, 107, 125, 1);
}

.accordion .toggle-icon {
    width: 40px;
    height: 45px;
    background: #fff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion .accordion-button:not(.collapsed) .toggle-icon::before {
    content: "×";
    font-size: 33px;
    font-weight: 100;
}

.accordion-button.collapsed .toggle-icon::before {
    content: "+";
    font-size: 33px;
    font-weight: 100;
}

.accordion .accordion-body {
    padding: 7px;
}
table td span.icon.bg-primary img{
    filter: brightness(5);
}

.pagination {
    margin-bottom: 0px;
    display: flex;
    justify-content: flex-end;
    column-gap: 10px;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

.pagination .page-item .page-link {
    background-color: rgb(255 255 255 / 25%);
    border: 1px solid rgb(0 0 0 / 40%);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: inherit;
    padding: 0px;
    font-size: 16px;
    color: var(--secondary);
    transition: all ease 0.2s;
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination li {
    list-style-type: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: auto;
    padding: 8px;
}

.pagination .page-item .page-link:focus-visible,
.pagination .page-item:focus-visible,
.page-link:focus,
.dropdown .link:focus {
    box-shadow: none;
    outline: none;
}
.table-accordian.bg-green thead tr th{
    background-color: #025930 !important;
    color: #fff;
}
.table-accordian.bg-orange thead tr th{
    background-color: #a5a4a4 !important;
    color: #fff;
}
/* Message screen css */
.dropdown .link {
    color: #fff;
    text-decoration: none;
}

.preview.message-form {
    overflow: visible;
}

form textarea {
    height: 200px !important;
    resize: none;
}

.message-form .form-control {
    border-color: transparent;
    background-color: rgba(239, 245, 253, 1);
}

.input-container input[type="file"] {
    display: none;
}

.input-container {
    width: 100%;
    position: relative;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 6px 5px 6px 10px;
    overflow: hidden;
}

.file-label img {
    border-radius: 0px;
}
ol{
    padding-left: 15px;
}

.form-theme .form-control {
    font-family: var(--font-slate);
    background: rgb(200 165 97 / 10%);
    border-radius: 12px;
    box-shadow: none;
    border-color: transparent;
    font-size: 18px;
}
.form-theme .form-select{
    background-color: rgb(200 165 97 / 10%) !important;
    color: #000;
    appearance: none;
    --bs-form-select-bg-img: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTQgOCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik0wLjY0MjgyMiAwLjY0MjgyMkw2LjY0MjgyIDYuNjQyODJMMTIuNjQyOCAwLjY0MjgyMiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjI4NTcxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+);
    border-radius: 12px;
    box-shadow: none;
    border-color: transparent;
    font-size: 18px;
}
.form-theme .form-control:focus, .form-theme .form-select:focus{
    border: 1px solid var(--primary);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}
textarea{
    resize: none;
}
.form-theme textarea.form-control{
    height: 150px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.header-admin .btn.btn-theme{
    border-color: transparent;
}
.table-accordian tr:hover td{
    border-right: 0px !important;   
}
.filter .arow-icon {
    filter: brightness(14);
}
.filter .btn-theme, .filter .dropdown-menu li a{
    font-size: 18px !important;
}
.filter .btn-theme:hover{
    background-color: var(--secondary) !important
}
@media (min-width: 1900px) {
     p, .content-main ul li{
        font-size: 18px;
    }
    .copywrite {
        position: absolute;
        bottom: 0px;
        width: 100%;
    }
}

@media (max-width: 1599px) {
    .form-control, .sidebar-link li a, .form-label, .form-group label, .btn, .form-theme .form-select {
        font-size: 16px !important;
    }
    .bold-caption,
    form .btn-primary,
    .btn-outline-primary {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
    }
    .search-input {
        font-size: 18px;
    }

    .table-wrapper {
        overflow: auto;
    }
}

@media(max-width:1199px){
    .container-fluid {
        max-width: 100% !important;
    }
    .pagination {
        position: relative;
        bottom: 0px;
    }
}
@media (max-width: 991px) {
    .accordion .header-bar .col-auto {
        font-size: 11px;
        padding: 0px 4px;
    }

    .accordion .accordion-button:not(.collapsed) .toggle-icon::before,
    .accordion-button.collapsed .toggle-icon::before {
        font-size: 25px;
    }

    .accordion .toggle-icon {
        width: 30px;
    }

    .offcanvas {
        padding: 20px;
    }

    .login-form .form-control,
    .enter-password-field {
        width: 100%;
    }

    .enter-password-field,
    .login-form .form-control {
        width: 100%;
    }

    .preview {
        margin-top: 15px;
    }

    .topbar .btn-outline-primary {
        max-width: 45px;
        width: 100%;
        height: 45px;
        display: flex !important;
        align-items: anchor-center;
        justify-content: center;
        border: none;
        padding: 5px;
        cursor: pointer;
        border-radius: 30px;
    }

    .topbar .btn-outline-primary:hover {
        background-color: var(--secondary);
    }

    .topbar .btn-outline-primary:hover i {
        color: #fff;
    }

    .topbar .btn-outline-primary i {
        font-size: 25px;
        line-height: normal;
        color: var(--secondary);
    }

    .login-form {
        width: 95%;
    }
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive table {
        min-width: 650px;
        white-space: nowrap;
    }
    .header-admin .col-lg-2,  .header-admin .col-lg-10 {
        width: 50%;
    }
    .header-admin img.logo{
        margin: inherit !important;
    }
    .header-admin .col-lg-2 .p-3 {
        padding-left: 0px !important;
    }
}

@media (max-width: 767px) {
    .header-admin .container-fluid {
	overflow: visible;
	}
.table-wrapper {
 padding-bottom: 20px;
}
    .account-form.w-75{
        width: 100% !important;
    }
    .table-accordian th, .table-accordian td{
        font-size: 14px !important;
    }
    .table-accordian td:last-child {
        padding-right: 15px;
    }
    .table-theme th.accordian-table-toggle {
        width: 35px;
    }
    .login-wrapper {
        padding: 15px;
        margin: 0;
    }
    .container-fluid {
        max-width: 100% !important;
        overflow: hidden;
    }
    .header-admin .btn-theme{
        padding: 5px 8px;
    }
    .btn.btn-theme.btn-icon {
        gap: 5px;
    }

    .header-admin .d-flex.justify-content-end {
        justify-content: flex-start !important;
    }

    .header-admin .row {
        flex-wrap: nowrap !important;
    }

    .btn {
        padding: 5px 12px;
        font-size: 16px;
    }

    .pagination {
        padding-top: 20px;
    }

    .accordion .toggle-icon {
        width: 32px;
        height: 30px;
        border-radius: 50px;
        position: relative;
        top: -10px;
        right: 3px;
    }

    .dashboard {
        display: flex;
        flex-flow: column;
        height: auto;
    }

    .bottom-boxes .col {
        flex: 100%;
        margin-bottom: 15px;
    }

    .table-wrap,
    .preview,
    .advert {
        height: auto;
    }

    .pagination {
        position: relative;
        bottom: 0.5rem;
    }
    .table-accordian th, .table-accordian td {
        font-size: 12px !important;
    }
    .table-accordian td:last-child {
    	padding-right: 4px;
    }
    .table-theme th {
        padding: 10px 5px;
    }
    .userlist-table-wrap tr td {
        font-size: 12px;
        min-height: 70px;
    }
    .dropdown .btn{
        font-size: 14px !important;
    }
    .flag-icon  {
        margin-right: 0px;
    }
    .table-wrapper {
        padding-bottom: 0;
    }
    .utilities-logo {
        width: 100%;
    }
    .translation-links .dropdown-menu {
    transform: translate3d(7px, 45px, 0px)!important;
    }
}

@media (max-width: 390px) {
    .header-admin .col-lg-2 {
        width: 47%;
    }
    .table-wrapper.table-accordian {
        overflow: scroll;
    }
    .dropdown .btn{
        font-size: 12px !important;
    }
}