﻿/*========================================================================== CUSTOM ROOT VARIABLES  ========================================================================= */
:root {
    --ff-1: 'Trebuchet MS', sans-serif;
    --ff-2: "Open Sans", sans-serif;
    --text-color-1: #ffffff;
    --text-color-2: #000000;
    --text-color-3: #F25757;
    --bg-color-1: #ffffff;
    --bg-color-2: #1E2019;
    --bg-color-3: #F25757;
    --bd-gray-bg: #6a6767;
    --bs-black: #000000;
    --my-border-color: #000000;
}
/*==================================================================== ROOT CSS ======================================================================= */
body {
    font-family: var(--ff-2);
    color: #2d2d2d;
    background-color: #ffffff;
}
/*====================================================================== GLOBAL CSS -- SECTION =========================================================================================*/
/*================================================================ HEADINGS ============================================================================================================*/
.hdg-1 {
    font-family: var(--ff-1);
    font-weight: 700;
    font-size: 3.875rem;
}
.hdg-2 {
    font-family: var(--ff-1);
    font-weight: 700;
    font-size: 2.625rem;
}
/*applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .hdg-2 {
        font-size: 2rem !important
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .hdg-2 {
        font-size: 1.7rem !important;
    }
}
.hdg-3 {
    font-family: var(--ff-1);
    font-weight: 400;
    font-size: 2rem;
}
.hdg-4 {
    font-family: var(--ff-2);
    font-weight: 400;
    font-size: 1.75rem;
}
.hdg-5 {
    font-family: var(--ff-2);
    font-weight: 600;
    font-size: 1.5rem;
}
.hdg-6 {
    font-family: var(--ff-2);
    font-size: 1.125rem;
    font-weight: 400;
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .hdg-6 {
        font-size: 1rem;
        font-weight: 300;
    }
}
.hdg-7 {
    font-family: var(--ff-2);
    font-weight: 400;
    font-size: 1rem;
}
.hdg-8 {
    font-family: var(--ff-1);
    font-size: 2rem;
}
.hdg-9 {
    font-family: var(--ff-1);
    font-weight: 700;
    font-size: 1.7rem;
}
/*applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .hdg-9 {
        font-size: 1.4rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .hdg-9 {
        font-size: 1.1rem;
    }
}
.hdg-10 {
    font-family: var(--ff-1);
    font-weight: 700;
    font-size: 1rem;
}
.hdg-11 {
    font-family: var(--ff-1);
    font-weight: 700;
    font-size: 1.5rem;
}
.item-name {
    font-family: var(--ff-1);
    font-weight: 600;
    font-size: 1.15rem;
}
/*===================================================================== TEXT COLORS ======================================================================*/
/*white*/
.text-color-1 {
    color: var(--text-color-1);
}
/*black*/
.text-color-2 {
    color: var(--text-color-2);
}
/*red*/
.text-color-3 {
    color: var(--text-color-3);
}
/* background colors */
.bg-color-1 {
    background-color: var(--bg-color-1);
}
/* black */
.bg-color-2 {
    background-color: var(--bg-color-2);
}
/*yellow*/
.bg-color-3 {
    background-color: var(--bg-color-3);
}
/*/*=================================================================================== PADDING ==============================================================*/
.pb-8 {
    padding-bottom: 3rem;
}
.pt-12 {
    padding-top: 7rem;
}
/*applies to xxx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1600px) {
    .pt-12 {
        padding-top: 3.5rem;
    }
}
/*applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .pt-12 {
        padding-top: 5rem;
    }
}
.pt-18 {
    padding-top: 10rem;
}
/*applies to xxx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1600px) {
    .pt-18 {
        padding-top: 5rem;
    }
}
/*applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .pt-18 {
        padding-top: 8rem;
    }
}
/*applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .pt-18 {
        padding-top: 6rem;
    }
}
/*applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .pt-18 {
        padding-top: 4rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .pt-18 {
        padding-top: 3rem;
    }
}
/*applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .pt-18 {
        padding-top: 2rem;
    }
}
.pe-18 {
    padding-right: 10rem;
}
/*applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .pe-18 {
        padding-right: 8rem;
    }
}
/*applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .pe-18 {
        padding-right: 6rem
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .pe-18 {
        padding-right: 5rem;
    }
}
/*applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .pe-18 {
        padding-right: 2rem;
    }
}
.pb-12 {
    padding-bottom: 7rem;
}
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .pb-12 {
        padding-bottom: 5rem;
    }
}
/* @media (max-width: 1199.98px) {
        .pb-12 {
            padding-bottom: 5rem;
        }
    }*/
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .pb-12 {
        padding-bottom: 4rem;
    }
}
/*======================================================================================= MARGINS =========================================================================*/
.mt-9 {
    margin-top: 4.9rem;
}
.mt-7 {
    margin-top: 4.15rem;
}
/*applies to medium devices (tablets, less than 992px)*/
/*@media (max-width: 991.98px) {
    .mt-9 {
        margin-top: 4.65rem;
    }
}*/
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .mt-7 {
        margin-top: 3.8rem;
    }
}
.mb-9 {
    margin-bottom: 5rem;
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .mb-9 {
        margin-bottom: 3rem;
    }
}
/*======================================================================================== BUTTONS ===========================================================================*/
.btn.btn-1 {
    font-family: var(--ff-1);
    color: #ffffff;
    padding: 10px 35px;
    background-color: #000000;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.323rem;
    border-radius: 5px;
    border: solid 1px #000000;
}
    .btn.btn-1:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.btn-1 {
        font-size: 1.5rem;
        padding: 5px 20px;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.btn-1 {
        font-size: 1.2em;
        padding: 5px 20px;
    }
}
.btn.btn-2 {
    color: #003049;
    font-weight: bold;
    border: none;
    border-radius: unset;
    background-color: #ffffff;
    padding: 1rem, 0.5rem;
}
    .btn.btn-2:hover {
        color: #fd7f2f;
    }
.btn.btn-3 {
    color: #ffffff;
    font-size: 1rem;
    font-family: "Bebas Neue";
    font-weight: 200;
    border-radius: unset;
    background-color: #003049;
    padding: 1rem, 1rem;
}
    /* Inside the botton property */
    .btn.btn-3 .icon-set {
        letter-spacing: -3px;
    }
    .btn.btn-3:hover {
        border: solid 1px black;
    }
/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .btn.btn-3 {
        font-size: 1rem;
    }
        .btn.btn-3 .icon-set {
            font-size: 10.7rem;
            letter-spacing: -7px;
        }
}
.btn.btn-4 {
    font-family: var(--ff-1);
    color: #ffffff;
    padding: 5px 20px;
    background-color: #000000;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 2rem;
    border-radius: 5px;
    border: solid 1px #000000;
}
    .btn.btn-4:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.btn-4 {
        font-size: 1.2rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.btn-4 {
        font-size: 1em;
    }
}
.btn.btn-5 {
    font-family: var(--ff-1);
    color: #000000;
    padding: 5px 20px;
    background-color: #ffffff;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 2rem;
    border-radius: 5px;
    border: solid 1px #000000;
}
    .btn.btn-5:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.btn-5 {
        font-size: 1.2rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.btn-5 {
        font-size: 1em;
    }
}
.btn.back-btn {
    font-family: var(--ff-1);
    padding: 5px 5px;
    background-color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem;
}
    .btn.back-btn:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.back-btn {
        font-size: 1.5em;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.back-btn {
        font-size: 1.3em;
    }
}
.btn.back-btn .icon {
    font-size: 1.5rem;
}
    .btn.back-btn .icon:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.back-btn .icon {
        font-size: 1em;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.back-btn .icon {
        font-size: 1em;
    }
}
.btn.btn-Danger {
    font-family: var(--ff-1);
    color: #ffffff;
    padding: 5px 20px;
    background-color: #fa0505;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 2rem;
    border-radius: 5px;
    border: solid 1px #000000;
}
    .btn.btn-Danger:hover {
        color: #fa0505;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.btn-Danger {
        font-size: 1.2rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.btn-Danger {
        font-size: 1em;
    }
}
.btn.btn-dropdown {
    font-family: var(--ff-1);
    color: #ffffff;
    padding: 5px 15px;
    background-color: #000000;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    border-radius: 5px;
    border: solid 1px #000000;
}
    .btn.btn-dropdown:hover {
        color: #000000;
        background-color: #ffffff;
    }
/*applies to xx-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .btn.btn-dropdown {
        font-size: 1.2rem;
    }
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.btn-dropdown {
        font-size: 1em;
    }
}
/*================================================================================================= TOOLTIPS ======================================================*/
.tootips-icon {
    font-size: 0.9em;
    color: #454242;
}
.custom-tooltip {
    --bs-tooltip-bg: #e1d9d9;
    --bs-tooltip-color: #000000;
}
/*================================================================================================= PAGE ======================================================*/
.page-hdg {
    font-family: var(--ff-1);
    font-size: 2.625rem;
    font-weight: 700;
}
@media (max-width:768px) {
    .page-hdg {
        font-family: var(--ff-1);
        font-size: 2.125rem;
        font-weight: 700;
    }
}
.btn.page-btn {
    font-family: var(--ff-2);
    font-size: 1.125rem;
    color: #ffffff;
    background-color: #000814;
    font-weight: 400;
    line-height: 1.2;
    border-radius: 0.375rem;
    border: solid 1px #000000;
    padding: 0.375rem 0.75rem;
}
/*.page-lnk {
    font-family: var(--ff-2);
    font-size: 1.125rem;
    color: #ffffff;
    background-color: #000814;
    font-weight: 400;
    line-height: 1.2;
    border-radius: 0.375rem;
    border: solid 1px #000000;
    padding: 0.375rem 0.75rem;
}
    .page-lnk:hover {
        color: #fd7f2f;
    }
*/
/*======================================================================================================== DATA TABLE ======================================================================= */
.data-table {
    font-size: 1rem;
}
    .data-table .header {
        font-size: 1.375rem;
        font-weight: 600;
        border-bottom: 0.063rem solid #c6c2c2;        
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .data-table .content {
        border-bottom: 0.063rem solid #c6c2c2;
        background-color: #F9F9F9;
        /*padding: 0.75rem;*/
        display: flex;
        align-items: center;
    }
        .data-table .content .icon-size {
            font-size: 2em;
        }
.iconsize {
    font-size: 1.5em;
}
.iconsize1 {
    font-size: .5em;
}
@media (max-width:768px) {
    .data-table .header {
        display: none;
    }
    .data-table .content .data-hdr::before {
        content: attr(data-col-header) " : ";
        font-weight: 700;
        display: inline;
    }
}
/*
.data-table .btn.edit-btn {
    font-family: var(--ff-1);
    color: #ffffff;
    font-size: 2rem;
    background-color: #F9F9F9;
}
*/
/*.edit-lnk {
    font-family: var(--ff-1);
    color: #ffffff;
    padding: 5px 20px;
    background-color: #000000;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    border: solid 1px #000000;
    text-decoration: none;
}
.edit-lnk:hover {
    color: #000000;
    background-color: #ffffff;
}
.delete-lnk {
    font-family: var(--ff-1);
    color: #000000;
    padding: 5px 20px;
    background-color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    border: solid 1px #000000;
    text-decoration: none;
}
    .delete-lnk:hover {
        color: #ffffff;
        background-color: #000000;
    }
*/
/*======================================================================================== FORM  =============================================================================== */
.form-hdg {
    font-family: var(--ff-1);
    font-size: 2rem;
}
.form-control {
    border: solid 1px #000000;
    border-radius: 0%;
}
.form-select {
    border: solid 1px #000000;
    border-radius: 0%;
}
.input-group-text {
    border: solid 1px #000000;
}
.btn.form-btn {
    font-family: var(--ff-2);
    font-size: 1.25rem;
    color: #ffffff;
    background-color: #000814;
    font-weight: 400;
    line-height: 1.2;
    border-radius: 0.375rem;
    border: solid 1px #000000;
    padding: 0.375rem 0.75rem;
}
.form-group{
    margin-bottom: 0.5rem;
}
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
/*    .btn.form-btn:hover {
    }*/
/*======================================================================================================= End of GLOBAL CSS - SECTION ========================================================*/
/*====================================================================================== MAIN LAYOUT - SECTION =====================================================================================*/
/*====================================================================== MAIN NAVBAR ================================================================================================================*/
.logo {
    font-family: var(--ff-1);
    font-weight: 400;
    font-size: 1.75rem;
    letter-spacing: 4px;
}
/*applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .logo {
        font-size: 1.6rem;
    }
}
.dropdown-menu {
    margin-top: 5rem;
    border: none;
}
    .dropdown-menu .dropdwn-item {
        position: fixed;
        height: 13rem;
        width: 20rem;
        right: 3.1rem;
        top: 4.2rem;
    }
/*applies to medium devices (tablets, less than 992px)*/
/*@media (max-width: 991.98px) {
    .dropdown-menu .dropdwn-item {
        top: 4.2rem;
    }
}*/
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .dropdown-menu .dropdwn-item {
        right: 1.5rem;
        top: 13.5rem;
    }
}
.dropdown-menu:hover {
    border: none;
    box-shadow: none;
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .btn.rounded-5 {
        border-radius: 10% !important;
    }
}
.account-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0077B6;
    text-decoration: none;
}
.log-out-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-3);
    text-decoration: none;
}
/*applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .nav-item.w-50 {
        width: 100% !important;
    }
}
/*============================================================================================ SIDEBAR NAVIGATION ==========================================================================*/
.sidebar-nav {
    position: fixed;
    width: 18rem;
    left: 0;
    transition: left .8s ease-in-out;
    z-index: 9;
}
    .sidebar-nav.collapsed {
        left: -18rem !important;
    }
.sidebar-toggle {
    margin-top: 0;
    position: absolute;
    right: 0;
    background-color: #1E2019;
    padding: 3px;
    transition: right .8s ease-in-out;
}
    .sidebar-toggle.position {
        right: -2.4rem;
    }
.toggle-sidebar-wrapper {
    transform: rotate(0deg);
    transition: transform .8s ease-in-out;
}
    .toggle-sidebar-wrapper.rotate {
        transform: rotate(360deg);
    }
.sidebar-toggle .chevron-right-1 {
    height: 1.5rem;
    width: .8rem;
}
.sidebar-toggle .chevron-right-2 {
    height: 1.5rem;
    width: .8rem;
    transform: rotate(180deg);
    position: relative;
    left: -.4rem;
    transition: transform .8s ease-in-out, left .8s ease-in-out;
}
.chevron-right-2.rotate {
    transform: rotate(0deg);
    left: -.2rem;
}
/*============================================================================================ SIDEBAR NAVIGATION MENU ==========================================================================*/
.menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 40px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
    .menu-content::-webkit-scrollbar {
        display: none;
    }
.menu-items {
    height: 100vh;
    width: 100%;
    list-style: none;
    transition: all 0.4s ease;
}
.submenu-active .menu-items {
    transform: translateX(-56%);
}
.menu-title {
    color: #fff;
    padding: 15px 20px;
    border-radius: 0;
}
.item a {
    font-family: var(--ff-2);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    border-left: solid var(--bg-color-2);
    border-radius: 0;
}
.submenu-item {
    font-family: var(--ff-2);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 16px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    border-left: solid var(--bg-color-2);
    border-radius: 0;
}
    .item a:hover,
    .submenu-item:hover {
        color: var(--text-color-3);
        border-left: solid var(--text-color-3);
    }
.submenu .menu-title:hover {
    color: var(--text-color-3);
}
.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}
.submenu {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(-100% - 26px);
    height: calc(100% + 100vh);
    background: var(--bg-color-2);
    display: none;
}
.show-submenu ~ .submenu {
    display: block;
}
.submenu .menu-title {
    font-family: var(--ff-2);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
}
    .submenu .menu-title i {
        margin-right: 10px;
    }
/*================================================================================== PAGE CONTENT ===============================================================================================*/
.page-content {
    margin-left: 18rem;
    transition: margin-left .8s ease-in-out;
}
/*applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .page-content {
        margin-left: 0;
    }
}
.page-content.expanded {
    margin-left: 0 !important;
}
/*========================================================================= End of MAIN LAYOUT - SECTION ======================================================================================*/
/*.dropdown-menu .dropdown-item {
    color: white !important;*/ /* Default text color */
    /*background-color: black !important;*/ /* Default background */
/*}
    .dropdown-menu .dropdown-item:hover {
        color: black !important;*/ /* Change text to black */
        /*background-color: red !important;*/ /* Keep background black */
    /*}*/
.dropdown-item {
    text-align: center;
}
.custom-dropdown-item:hover {
    background-color: white !important;
    color: black !important;
    text-align: center;
}
/* Styling the checkbox */
.form-check-input {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid black;
    cursor: pointer;
}
    /* Change color when checked */
    .form-check-input:checked {
        background-color: black;
        border-color: black;
    }
    /* Optional: Adjust focus ring */
    .form-check-input:focus {
        box-shadow: none;
    }
.dropdown-menu {
    --bs-dropdown-min-width: 6.25rem;
}