/* =========================================================
   AWOOOMA HERBALS - PROFESSIONAL GREEN PANEL THEME
   Green + White Premium Responsive Admin Panel
========================================================= */

:root {
    --primary: #159447;
    --primary-dark: #087f3d;
    --primary-deep: #05652f;
    --primary-light: #eaf8ef;
    --primary-soft: #f4fbf6;

    --secondary: #ffffff;
    --light: #718078;
    --dark: #f5f9f6;

    --text: #183526;
    --text-dark: #10291d;

    --border: #dcebe1;
    --shadow: 0 8px 30px rgba(18, 91, 48, 0.08);
    --shadow-hover: 0 12px 35px rgba(18, 91, 48, 0.14);

    --danger: #dc3545;
    --warning: #f0a202;
    --info: #0d8bdc;
}


/* =========================================================
   GLOBAL
========================================================= */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;

    background: #f5f9f6;

    color: var(--text);

    font-size: 14px;

    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    transition: all 0.25s ease;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    display: none;

    right: 25px;
    bottom: 25px;

    width: 44px;
    height: 44px;

    z-index: 9999;

    border: none;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    color: #ffffff;

    box-shadow: 0 8px 20px rgba(21, 148, 71, 0.25);

    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(21, 148, 71, 0.35);
}


/* =========================================================
   SPINNER
========================================================= */

#spinner {
    opacity: 0;

    visibility: hidden;

    transition:
        opacity .5s ease-out,
        visibility 0s linear .5s;

    z-index: 99999;
}

#spinner.show {
    transition:
        opacity .5s ease-out,
        visibility 0s linear 0s;

    visibility: visible;

    opacity: 1;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    transition: all .25s ease;

    font-family: inherit;

    border-radius: 8px;

    font-weight: 500;
}

.btn:hover {
    transform: translateY(-1px);
}


/* Green primary button */

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    ) !important;

    border-color: var(--primary) !important;

    color: #ffffff !important;

    box-shadow: 0 5px 15px rgba(21, 148, 71, .15);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--primary-deep),
        var(--primary-dark)
    ) !important;

    border-color: var(--primary-dark) !important;

    color: #ffffff !important;

    box-shadow: 0 8px 20px rgba(21, 148, 71, .22);
}


/* Square buttons */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-weight: normal;

    border-radius: 50%;
}


/* =========================================================
   MAIN SIDEBAR
========================================================= */

.sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: 250px;

    height: 100vh;

    overflow-y: auto;
    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #087f3d 0%,
            #05652f 100%
        );

    transition: all .35s ease;

    z-index: 999;

    border-right: 1px solid rgba(255,255,255,.08);

    box-shadow:
        8px 0 30px rgba(0, 54, 25, .12);
}


/* Sidebar scrollbar */

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,.04);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.25);

    border-radius: 10px;
}


/* =========================================================
   CONTENT
========================================================= */

.content {
    margin-left: 250px;

    min-height: 100vh;

    width: calc(100% - 250px);

    background:
        linear-gradient(
            180deg,
            #f8fcf9 0%,
            #f3f8f5 100%
        );

    transition: all .35s ease;
}


/* =========================================================
   DESKTOP SIDEBAR
========================================================= */

@media (min-width: 992px) {

    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);

        margin-left: 250px;
    }

    .content.open {
        width: 100%;

        margin-left: 0;
    }
}


/* =========================================================
   MOBILE SIDEBAR
========================================================= */

@media (max-width: 991.98px) {

    .sidebar {
        margin-left: -250px;

        box-shadow:
            8px 0 30px rgba(0,0,0,.20);
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;

        margin-left: 0;
    }
}


/* =========================================================
   SIDEBAR BRAND / LOGO AREA
========================================================= */

.sidebar .navbar-brand {
    color: #ffffff !important;

    font-weight: 700;

    letter-spacing: .2px;
}

.sidebar .navbar-brand img {
    max-height: 55px;

    width: auto;

    object-fit: contain;
}


/* =========================================================
   SIDEBAR NAVIGATION
========================================================= */

.sidebar .navbar {
    padding: 10px 12px;
}

.sidebar .navbar .navbar-nav {
    width: 100%;
}

.sidebar .navbar .navbar-nav .nav-link {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 48px;

    margin: 4px 0;

    padding: 6px 12px;

    color: rgba(255,255,255,.88);

    font-size: 13px;

    font-weight: 500;

    border-left: 3px solid transparent;

    border-radius: 10px;

    outline: none;

    background: transparent;

    transition: all .25s ease;
}


/* Sidebar hover */

.sidebar .navbar .navbar-nav .nav-link:hover {

    color: #ffffff;

    background: rgba(255,255,255,.10);

    border-left-color: rgba(255,255,255,.7);

    padding-left: 15px;
}


/* Active */

.sidebar .navbar .navbar-nav .nav-link.active {

    color: var(--primary-dark);

    background: #ffffff;

    border-left-color: #ffffff;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);
}


/* =========================================================
   SIDEBAR ICON
========================================================= */

.sidebar .navbar .navbar-nav .nav-link i {

    width: 38px;
    height: 38px;

    min-width: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-right: 10px;

    background: rgba(255,255,255,.10);

    color: #ffffff;

    border-radius: 10px;

    font-size: 16px;

    transition: all .25s ease;
}


/* Icon hover */

.sidebar .navbar .navbar-nav .nav-link:hover i {

    background: rgba(255,255,255,.18);

    color: #ffffff;

    transform: translateX(2px);
}


/* Active icon */

.sidebar .navbar .navbar-nav .nav-link.active i {

    background: var(--primary-light);

    color: var(--primary-dark);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.sidebar .navbar .dropdown-toggle::after {

    position: absolute;

    top: 17px;

    right: 14px;

    border: none;

    content: "\f107";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    transition: .3s;

    color: rgba(255,255,255,.65);
}

.sidebar .navbar .dropdown-toggle[aria-expanded="true"]::after {

    transform: rotate(-180deg);

    color: #ffffff;
}


/* =========================================================
   SIDEBAR DROPDOWN
========================================================= */

.sidebar .navbar .dropdown-menu {

    border: none;

    background: rgba(0,0,0,.12);

    border-radius: 10px;

    margin: 3px 0 5px 12px;

    padding: 5px;
}

.sidebar .navbar .dropdown-item {

    padding: 10px 14px;

    border-radius: 8px;

    color: rgba(255,255,255,.78);

    font-size: 13px;

    transition: all .25s ease;
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {

    color: #ffffff;

    background: rgba(255,255,255,.12);
}


/* =========================================================
   SIDEBAR SECTION TITLE
========================================================= */

.sidebar .nav-header,
.sidebar .sidebar-heading {

    padding: 18px 15px 7px;

    color: rgba(255,255,255,.48);

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENT NAVBAR
========================================================= */

.content .navbar {

    min-height: 70px;

    background: rgba(255,255,255,.96) !important;

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 3px 20px rgba(25, 85, 45, .05);

    padding: 10px 20px;

    position: relative;

    z-index: 100;
}


/* Navbar links */

.content .navbar .navbar-nav .nav-link {

    margin-left: 20px;

    padding: 10px 0;

    color: var(--text);

    outline: none;

    font-size: 13px;

    font-weight: 500;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {

    color: var(--primary);
}


/* =========================================================
   SIDEBAR TOGGLE
========================================================= */

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {

    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary-dark);

    border-radius: 10px;

    border: 1px solid #d9ebdf;

    transition: all .25s ease;
}

.content .navbar .sidebar-toggler:hover,
.content .navbar .navbar-nav .nav-link:hover i {

    background: var(--primary);

    color: #ffffff;

    border-color: var(--primary);

    transform: translateY(-1px);
}


/* =========================================================
   CONTENT DROPDOWN
========================================================= */

.content .navbar .dropdown-menu {

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 7px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(22, 80, 43, .12);
}

.content .navbar .dropdown-item {

    color: var(--text);

    border-radius: 8px;

    padding: 9px 12px;

    font-size: 13px;
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {

    background: var(--primary-light);

    color: var(--primary-dark);
}


/* =========================================================
   CONTENT DROPDOWN ARROW
========================================================= */

.content .navbar .dropdown-toggle::after {

    margin-left: 6px;

    vertical-align: middle;

    border: none;

    content: "\f107";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    transition: .3s;

    color: var(--light);
}

.content .navbar .dropdown-toggle[aria-expanded="true"]::after {

    transform: rotate(-180deg);
}


/* =========================================================
   PAGE CONTENT AREA
========================================================= */

.content > .container-fluid {

    padding: 25px !important;
}


/* =========================================================
   BOX / CARD
========================================================= */

.box {

    background: #ffffff !important;

    border: 1px solid var(--border) !important;

    border-radius: 14px !important;

    box-shadow: var(--shadow) !important;

    overflow: hidden;

    margin-bottom: 25px;

    transition: all .25s ease;
}

.box:hover {

    box-shadow: var(--shadow-hover) !important;
}


/* Box header */

.box-header {

    min-height: 60px;

    padding: 17px 20px !important;

    background: #ffffff;

    border-bottom: 1px solid var(--border) !important;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.box-header .box-title {

    margin: 0;

    color: var(--text-dark) !important;

    font-size: 17px;

    font-weight: 600;
}


/* Box body */

.box-body {

    padding: 22px !important;

    background: #ffffff;
}


/* Box footer */

.box-footer {

    padding: 15px 20px !important;

    background: #fbfdfb !important;

    border-top: 1px solid var(--border) !important;
}


/* =========================================================
   FORM CONTROLS
========================================================= */

.form-control,
.form-select {

    min-height: 42px;

    background: #ffffff !important;

    color: var(--text-dark) !important;

    border: 1px solid #d7e7dd !important;

    border-radius: 8px !important;

    box-shadow: none !important;

    font-size: 13px;

    transition: all .25s ease;
}


.form-control:hover,
.form-select:hover {

    border-color: #abd2b8 !important;
}


.form-control:focus,
.form-select:focus {

    background: #ffffff !important;

    color: var(--text-dark) !important;

    border-color: var(--primary) !important;

    box-shadow:
        0 0 0 3px rgba(21,148,71,.09) !important;

    outline: none !important;
}


.form-control::placeholder {

    color: #9aa79f !important;

    opacity: 1;
}


/* Textarea */

textarea.form-control {

    min-height: 100px;

    resize: vertical;
}


/* =========================================================
   FORM LABEL
========================================================= */

.form-group label,
.form-label {

    display: block;

    margin-bottom: 7px;

    color: #365544;

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   FORM SUCCESS
========================================================= */

.has-success .form-control {

    border-color: #cce5d5 !important;
}

.has-success .control-label {

    color: var(--primary-dark) !important;
}


/* =========================================================
   TABLE
========================================================= */

.table {

    width: 100%;

    margin-bottom: 0;

    color: var(--text);

    background: #ffffff;

    border-color: var(--border);
}


/* Table header */

.table thead th {

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        ) !important;

    color: #ffffff !important;

    border: none !important;

    padding: 13px 12px;

    font-size: 12px;

    font-weight: 600;

    vertical-align: middle;

    white-space: nowrap;
}


/* Table body */

.table tbody td {

    padding: 12px;

    border-color: #edf3ef !important;

    color: #40564a;

    font-size: 12px;

    vertical-align: middle;
}


/* Alternate rows */

.table tbody tr:nth-child(even) {

    background: #f9fcfa;
}


/* Table hover */

.table tbody tr:hover {

    background: var(--primary-soft) !important;
}


/* =========================================================
   TABLE RESPONSIVE
========================================================= */

.table-responsive {

    border-radius: 10px;

    border: 1px solid var(--border);

    background: #ffffff;

    scrollbar-width: thin;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {

    background: #b9d9c4;

    border-radius: 10px;
}


/* =========================================================
   ALERTS
========================================================= */

.alert {

    border: none !important;

    border-radius: 10px !important;

    padding: 14px 16px !important;

    box-shadow: 0 5px 15px rgba(0,0,0,.04);
}

.alert-success {

    background: #eaf8ef !important;

    color: #087f3d !important;

    border-left: 4px solid #159447 !important;
}

.alert-warning {

    background: #fff8e7 !important;

    color: #8a6200 !important;

    border-left: 4px solid #f0a202 !important;
}

.alert-danger {

    background: #fff0f1 !important;

    color: #b02a37 !important;

    border-left: 4px solid #dc3545 !important;
}

.alert-info {

    background: #eef8ff !important;

    color: #0876b8 !important;

    border-left: 4px solid #0d8bdc !important;
}


/* =========================================================
   BADGES
========================================================= */

.badge {

    border-radius: 20px;

    padding: 5px 9px;

    font-size: 10px;

    font-weight: 600;
}

.badge-success {

    background: #e7f7ed !important;

    color: var(--primary-dark) !important;
}


/* =========================================================
   DASHBOARD CARDS
========================================================= */

.small-box {

    position: relative;

    background: #ffffff !important;

    border: 1px solid var(--border);

    border-radius: 14px;

    overflow: hidden;

    box-shadow: var(--shadow);

    color: var(--text) !important;

    transition: all .3s ease;
}

.small-box:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-hover);
}


.small-box .inner {

    padding: 20px;
}

.small-box .inner h3 {

    margin: 0 0 5px;

    color: var(--primary-dark) !important;

    font-size: 28px;

    font-weight: 700;
}

.small-box .inner p {

    margin: 0;

    color: var(--light) !important;

    font-size: 13px;
}


.small-box .icon {

    color: rgba(21,148,71,.12) !important;

    font-size: 65px;

    top: 15px;

    right: 15px;
}


.small-box .small-box-footer {

    background: var(--primary-soft) !important;

    color: var(--primary-dark) !important;

    padding: 9px;

    font-size: 12px;

    border-top: 1px solid var(--border);
}


/* =========================================================
   PANEL / CARD COMMON
========================================================= */

.card {

    border: 1px solid var(--border) !important;

    border-radius: 14px !important;

    box-shadow: var(--shadow) !important;

    background: #ffffff !important;

    overflow: hidden;
}

.card-header {

    background: #ffffff !important;

    color: var(--text-dark) !important;

    border-bottom: 1px solid var(--border) !important;

    font-weight: 600;
}

.card-body {

    background: #ffffff !important;
}


/* =========================================================
   PROGRESS
========================================================= */

.progress {

    height: 8px;

    background: #eaf2ed;

    border-radius: 20px;

    overflow: hidden;
}

.progress .progress-bar {

    width: 0px;

    background:
        linear-gradient(
            90deg,
            var(--primary-dark),
            var(--primary)
        );

    transition: 2s;

    border-radius: 20px;
}


/* =========================================================
   DATE PICKER
========================================================= */

.bootstrap-datetimepicker-widget.bottom {

    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {

    border-bottom-width: 0;
}

.bootstrap-datetimepicker-widget .table th {

    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {

    padding: 10px;

    border-radius: 10px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {

    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {

    border-bottom-color: var(--primary);
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-carousel .owl-dots {

    margin-top: 24px;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}

.testimonial-carousel .owl-dot {

    position: relative;

    display: inline-block;

    margin: 0 5px;

    width: 12px;

    height: 12px;

    border: 3px solid var(--primary);

    border-radius: 50%;

    transition: .3s;
}

.testimonial-carousel .owl-dot.active {

    background: var(--primary);

    border-color: var(--primary);
}


/* =========================================================
   SIDEBAR MENU BUTTON
========================================================= */

.containerdiv {

    display: inline-block;

    cursor: pointer;

    padding: 5px;
}


/* Green/white hamburger */

.bar1,
.bar2,
.bar3 {

    width: 28px;

    height: 3px;

    background-color: var(--primary);

    margin: 6px 0;

    border-radius: 5px;

    transition: .35s;
}


.change .bar1 {

    transform:
        translate(0, 9px)
        rotate(-45deg);
}

.change .bar2 {

    opacity: 0;
}

.change .bar3 {

    transform:
        translate(0, -9px)
        rotate(45deg);
}


/* =========================================================
   VISION / MISSION
========================================================= */

.visonbox {

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);

    height: 100%;

    transition: all .3s ease;
}

.visonbox:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-hover);
}

.visonbox h4 {

    font-size: 27px;

    font-weight: 600;

    color: var(--primary-dark);

    margin-bottom: 12px;
}

.visonbox p {

    color: var(--light);

    line-height: 1.7;

    font-size: 13px;
}

section.vision-mission {

    padding: 35px 0;
}


/* =========================================================
   GENERAL HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--text-dark);

    font-family: 'Poppins', sans-serif;

    font-weight: 600;
}

.page-title {

    color: var(--text-dark);

    font-size: 22px;

    font-weight: 600;
}


/* =========================================================
   LINKS
========================================================= */

a {

    color: var(--primary);

    text-decoration: none;
}

a:hover {

    color: var(--primary-dark);
}


/* =========================================================
   SELECT2 IF USED
========================================================= */

.select2-container--default
.select2-selection--single {

    height: 42px !important;

    border: 1px solid var(--border) !important;

    border-radius: 8px !important;

    background: #ffffff !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {

    line-height: 40px !important;

    color: var(--text) !important;

    padding-left: 13px !important;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {

    height: 40px !important;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination .page-link {

    color: var(--primary-dark);

    border-color: var(--border);

    border-radius: 7px !important;

    margin: 0 2px;

    background: #ffffff;
}

.pagination .page-link:hover {

    background: var(--primary-light);

    color: var(--primary-dark);

    border-color: #c5dfce;
}

.pagination .active .page-link {

    background: var(--primary);

    border-color: var(--primary);

    color: #ffffff;
}


/* =========================================================
   CHECKBOX / RADIO
========================================================= */

.form-check-input {

    border-color: #c5ddd0;

    box-shadow: none !important;
}

.form-check-input:checked {

    background-color: var(--primary);

    border-color: var(--primary);
}


/* =========================================================
   FILE INPUT
========================================================= */

input[type="file"].form-control {

    padding: 8px 10px;

    background: #ffffff !important;
}


/* =========================================================
   HR
========================================================= */

hr {

    border-color: var(--border);

    opacity: 1;
}


/* =========================================================
   MOBILE CONTENT
========================================================= */

@media (max-width: 991.98px) {

    .content .navbar {

        min-height: 62px;

        padding: 8px 15px;
    }

    .content > .container-fluid {

        padding: 18px 15px !important;
    }

    .box {

        margin-bottom: 18px;
    }

    .box-header {

        padding: 14px 16px !important;
    }

    .box-body {

        padding: 17px !important;
    }

    .table {

        min-width: 700px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 769px) {

    .row {

        flex-wrap: wrap;
    }

    .col-md-6 {

        width: 100%;
    }

    .aboutdev {

        display: block;
    }

    .aboutdev p {

        font-size: 14px;

        margin-bottom: 10px;
    }

    .aboutdev h2 {

        font-size: 28px;
    }

    .visonbox {

        padding: 24px 20px;

        margin-bottom: 18px;
    }

    .visonbox h4 {

        font-size: 23px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .content .navbar .navbar-nav .nav-link {

        margin-left: 10px;

        padding: 8px 0;
    }

    .content .navbar .sidebar-toggler,
    .content .navbar .navbar-nav .nav-link i {

        width: 37px;

        height: 37px;

        border-radius: 9px;
    }

    .content > .container-fluid {

        padding: 14px 10px !important;
    }

    .box {

        border-radius: 11px !important;
    }

    .box-header {

        min-height: 52px;

        padding: 13px 14px !important;
    }

    .box-header .box-title {

        font-size: 15px;
    }

    .box-body {

        padding: 14px !important;
    }

    .form-control,
    .form-select {

        min-height: 42px;
    }

    .small-box .inner h3 {

        font-size: 24px;
    }

    .table-responsive {

        border-radius: 8px;
    }

    .back-to-top {

        right: 15px;

        bottom: 15px;

        width: 40px;

        height: 40px;
    }
}


/* =========================================================
   EXTRA MOBILE SIDEBAR OVERLAY FEEL
========================================================= */

@media (max-width: 991.98px) {

    .sidebar.open::after {

        content: "";

        position: fixed;

        top: 0;
        left: 250px;
        right: 0;
        bottom: 0;

        background: rgba(0,0,0,.18);

        z-index: -1;

        pointer-events: none;
    }
}


/* =========================================================
   REMOVE OLD DARK THEME COLORS
========================================================= */

.text-black {

    color: var(--text-dark) !important;
}

.text-white {

    color: #ffffff !important;
}

.bg-dark {

    background: #ffffff !important;
}

.bg-secondary {

    background: var(--primary-dark) !important;
}


/* =========================================================
   GREEN UTILITY CLASSES
========================================================= */

.bg-primary-green {

    background: var(--primary) !important;

    color: #ffffff !important;
}

.text-primary-green {

    color: var(--primary) !important;
}

.border-primary-green {

    border-color: var(--primary) !important;
}


/* =========================================================
   FINAL RESPONSIVE SAFETY
========================================================= */

img {

    max-width: 100%;

    height: auto;
}

.container-fluid {

    max-width: 100%;
}

input,
select,
textarea {

    max-width: 100%;
}