@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Flat&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans");
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    --bg-color: #000;
    --text-color: #fff;
    --text2-color: #f9f9f9;
    /*--main-color: #003166;*/
    --main-color: #2B1F37;
    --main-color-hover: #442962;
    --bg2-color: #141414;
    --main-font: Rubik, sans-serif;
    --alt-font: Inter, sans-serif;
    --font-primary: Poppins, Roboto,"Helvetica Neue",sans-serif;
    --font-secondary: Roboto;
    --font-hero: "Bebas Neue",Poppins, Roboto,"Helvetica Neue",sans-serif;  
    font-family: 'Poppins', sans-serif;   
    font-family: 'Nova Flat', cursive;
    font-family: 'Roboto', sans-serif;
    font-family: 'Lobster', cursive;
    font-family: 'Montserrat', sans-serif;
    --border:.2rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

::-webkit-scrollbar{
    height: .5rem;
    /* width: 4px; */
    width: 8px;
}

::-webkit-scrollbar:hover{
    width: 8px;
}

::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}

/* Global Styles */
body {
    /*font-family: 'Inter', Arial, sans-serif;*/
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    background-color: var(--text-color);
    /*font-size: 10px;*/
}

.container {
    /*padding: 20px;*/
    margin-left: 60px; /* Adjust for icon-only sidebar width */
    /*margin-top: 80px; /* Adjust for top bar height */
    transition: margin-left 0.3s;
    /*margin-top: 12rem; 
    min-height: 50rem; */
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 40px;
}

.content {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: var(--main-font);
}





/************************************************************************************
# Misc
************************************************************************************/

/*.loading-container {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    margin-top: 3rem;
} 

.loading-container {
    display: block;
    margin-left: 10px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    /* margin-top: 3rem; *
    top: 25%;
    position: absolute;
    background-color: red;
    height: 20rem;
    width: 20rem;
    border-radius: 5px;
    align-content: center;
    left: 25%;
} */

/*#policyTemplate optgroup {
    color: blue;
}

optgroup {
    font-weight: bold;
    background-color: var(--main-color);
    color: var(--text-color);
} */

optgroup {
    cursor: pointer;
}

.mb-3 {
    font-family: var(--main-font)
}


/* Full-page overlay */
.loading-gif-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #21212173; /* Slightly transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it appears above other elements */
}

/* Loading container */
.loading-container {
    position: relative; /* For absolute positioning of cancel button */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center the loading GIF */
    align-items: center;
    background-color: #ffffff;
    height: 20rem;
    width: 20rem;
    border-radius: 5px;
    padding: 1rem;
}


/* Cancel button */
.cancel-button {
    position: absolute; /* Stick to the bottom of the container */
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    padding: 0.5rem 1rem;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.cancel-button:hover {
    background-color: var(--main-color-hover);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Apply the spinning animation to the loading GIF *
.loading-container img {
    animation: spin 2s linear infinite;  /* Spins the GIF *
} */

.content #toolbar {
    align-items: center;
    background-color: var(--viewer-pdf-toolbar-background-color);
    color: #fff;
    display: flex;
    height: var(--viewer-pdf-toolbar-height);
    padding: 0 16px;
    display: none;
}

#successModal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    /* width: 90%; */
    /* max-width: 400px; */
    padding: 40px;
    font-family: var(--main-font);
    border: 1px solid #fff;
}

/* Success Modal Content */
.successModalContent {
    text-align: center;
}

/* Success Message */
.successModalContent p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

/* Button Styling */
#successModal button {
    background-color: #fff;
    color: var(--main-color);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Button Hover Effects */
#successModal button:hover {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transform: scale(1.05); /* Subtle pop effect */
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: -30px;
    right: 20px;
    cursor: pointer;
    font-size: 1rem;
    color: #000;
    margin-bottom: 60px;
    z-index: 10;
}

.scroll-to-top .fa-angle-up {
    background-color: var(--text-color);
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}










/*************************************************************************************
# Log In
*************************************************************************************/


.login-container {
    display: flex;
    width: 100%;
    height: 100%;
    /*background-color: white;*/
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    justify-content: center;
}

.login-image {
    width: 80%;
    background: url('../../assets/img/log-in.png') no-repeat center center;
    background-size: cover;
}

.login-form {
    width: 50%;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    /* display: block; */
    align-items: center;
    justify-content: center;
}

.login-form h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    text-align-last: center;
}

.login-form .form-control {
    border-radius: 5px;
}

.login-form .btn-primary {
    border-radius: 5px;
    width: 100%;
    background-color: #003166;
    border-color: #003166;
    font-weight: bold;
}

.login-form .btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
}

.login-form .alert {
    border-radius: 20px;
}

.log-in-form {
    padding: 2rem;
    text-align: center;
    border-radius: .5rem;
    /* width: 50rem; */
    border: var(--border);
    /* background-color: #f3f3f3; */
    color: var(--text2-color);
    width: 462px;
    padding: 48px 48px 60px 48px;
    border: 1px solid #e3e3e3;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    font-size: 14px;
    background-color: white;
}

.log-in-logo {
    text-align: left !important;
    font-size: 3rem;
    color: var(--bg2-color);
    margin-bottom: 2rem;
}

.log-in-logo img {
    width: 50%;
}

.log-in-header {
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.log-in-login {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 125%;
    color: var(--main-color);
    font-family: var(--main-font);
}

.log-in-input {
    margin: 3rem 0rem;
}

.log-in-form a {
    text-decoration: none;
}



.highlight {
    background-color: yellow;
    color: red;
}

.highlighted {
    position: relative;
    cursor: pointer;  /* Indicate clickable/hoverable text */
}

.highlighted::after {
    content: attr(data-comment);  /* Display the comment text */
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: pre-wrap;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: none;  /* Hide by default */
    font-size: 14px;
    width: max-content;
    max-width: 200px;
    text-align: center;
    z-index: 1000;
}

.highlighted:hover::after {
    display: block;  /* Show on hover */
}




























/************************************************************************************
# Main Menu
************************************************************************************/


.header{
    position: sticky;
    top:0; left:0; right:0;
    background-color: var(--text-color);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    border-bottom: 0.5px solid #9f9696;
}
 
.header .flex{
    display: block;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /*padding: 1rem 2rem;
    max-width: 1200px; */
}
 
.header .flex .logo{
    font-size: 2.5rem;
    color:var(--black);
}
 
.header .flex .logo span{
    color:var(--main-color);
}
 
.header .flex .navbar a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all .50s ease;
    width: 12rem;
}

.header .flex .navbar a::before {
    content: attr(data-icon);
    position: absolute;
    top: -100%;
    left: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    color: var(--text-color);
    font-family: FontAwesome;
}

.header .flex .navbar a:hover::before {
    top: -100%;
    transform: translateY(100%); /* Move the pseudo-element into view */
}

.header .flex .navbar .fas {
    color: var(--main-color);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition for transform and color */
    top: -100%;
}

.header .flex .navbar a:hover .fas {
    top: 100%;
    transform: translateY(100%); /* Move the main icon down */
    color: transparent; /* Make the main icon invisible */
}



/* Add data-icon attributes to your links */
.header .flex .navbar a[data-icon="&#xf015;"] i::before { content: "\f015"; }
.header .flex .navbar a[data-icon="&#xf09e;"] i::before { content: "\f09e"; }
.header .flex .navbar a[data-icon="&#xf001;"] i::before { content: "\f001"; }
.header .flex .navbar a[data-icon="&#xf025;"] i::before { content: "\f025"; }
.header .flex .navbar a[data-icon="&#xf0c9;"] i::before { content: "\f0c9"; }
.header .flex .navbar a[data-icon="&#xf781;"] i::before { content: "\f781"; }

.header .flex .icons > *{
    margin-left: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color:var(--text-color);
    display: flex;
}
 
.header .flex .icons > *:hover{
    color:var(--main-color);
}
 
.header .flex .icons a span{
    font-size: 1.2rem;
    vertical-align:super;
}
 
.header .flex .profile.active {
    display: inline-block;
    background-color: var(--main-color);
    border: 1px solid white;
}

.header .flex .profile.active a:hover {
    background-color: var(--main-color-hover);
    color: var(--text-color);
    width:100%;
}

.header .flex .profile {
    position: absolute;
    top: 33%;
    right: 2rem;
    background-color: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    /* padding: 2rem; */
    width: 15rem;
    padding-bottom: 0.5rem;
    display: none;
    animation: fadeIn .2s linear;
    z-index: 2;
}

.header .flex .profile p {
    text-align: center;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profile-top {
    color: var(--text-color);
    padding: 1rem 2rem; 
    border-bottom: 1px solid #5a56a3;
    font-size: 16px;
}

.drp-btn {
    width: 100%;
    display: flex;
    padding: 10px 0px;
    /* font-family: 'Inter', sans-serif; */
    padding: 1rem 2rem;
    align-items: center;
    font-size: 15px;
    color: white;
    text-decoration: none;
    font-family: var(--main-font);
}

.drp-btn i {
    margin-right: 8px;
}


.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    padding: 5px 20px;
    color: white;
    height: 45px;
    border-bottom: 1px solid #68319A;
}

 
#menu-btn{
    display: none;
}

.logo{
    display: flex;
    align-items: center;
    background-image: url(../img/purplewasp_logo.png);
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}
 
.logo i{
    color: var(--main-color);
    font-size: 28px;
    margin-right: 3px;
}
 
.logo span{
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}
 
.navbar{
    display: flex;    
}

.navbar a{
    color: var(--text2-color);    
    font-size: 0.8rem;
    font-weight: 500;
    transition: all .50s ease;
}
 
.navbar a:hover{
    color: var(--main-color);
}
 
.navbar a.active{
    color: var(--main-color);
}

.icons {
    display: flex;
    align-items: center;
}

.icons .notification-icon {
    position: relative;
    /*margin-right: 20px; /* Space between bell icon and other buttons */
}

.icons .notification-icon i {
    font-size: 18px;
    cursor: pointer;
}

.icons .notification-icon .fas {
    color: var(--main-color);
}
 
.main{
    display: flex;
    align-items: center;
}
 
.main a{
    margin-right: 25px;
    margin-left: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all .50s ease;
}
 
.main a:hover{
    color: var(--main-color);    
}
 
.user{
    display: flex;
    align-items: center;
}
 
.user i{
    color: var(--main-color);
    font-size: 28px;
    margin-right: 7px;
}
 
#menu-icon{
    font-size: 35px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
}
 
.login-logout a {
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
  
.fa-bell {
    font-size: 16px;
}

/*.notification-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 9px;
} */

.notification-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 200px;
    background: #141414;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 100;
    border-radius: 5px;
}

.notification-dropdown.show {
    display: block;
}

.notification-item {
    margin-bottom: 10px;
}

.notification-item a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: bold;
}

.notification-item a:hover {
    text-decoration: underline;
}

.header .flex .navbar .sign-up {
    display: none;
}

#user-btn {
    display: flex;
    align-items: center;
}

#user-btn img {
    height: 35px;
    border-radius: 50%;
    align-items: center;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    z-index: 99;
}

.profile-initials {
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    /* z-index: 1; */
}

#user-btn .fa-chevron-down {
    border: 3px solid var(--main-color);
    border-radius: 50%;
    color: white;
    /*padding: 4px;*/
    left: -9px;
    position: relative;
    background-color: var(--main-color);
}

.fa-chevron-down:before {
    content: "\f078";
    align-items: center;
    /*border: 0.5px solid var(--main-color);*/
    border-radius: 75%;
    display: flex;
    /* background-color: var(--main-color); */
    padding: 4px;
    /*left: -18%;*/
    position: relative;
    font-size: 13px;
}

.icons .cm360-btn {
    background-color: var(--main-color); /* Button background */
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
}

.icons .cm360-btn:hover {
    background-color: transparent; /* Lighter blue on hover */
    color: var(--main-color);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
    width: max-content;
    border: 1px solid var(--main-color);
}


.header .topbar .mobilemenu {
    display: contents;
    width: 10rem;
    color: var(--main-color);
    font-size: 1.5rem;
}


.header .topbar .mobilemenu .fa-bars{
    display: contents;
    width: 10rem;
    color: var(--main-color);
    font-size: 1.5rem;
    display: none;
}










/****************
# Horizontal Menu
****************/

.horizontal-menu {
    display: flex;
    justify-content: center;
    background-color: var(--text-color);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 45px;
    font-family: 'Inter', sans-serif;
    align-items: center;
}

.horizontal-menu .menu-item {
    position: relative;
    margin: 0 15px;
    list-style: none;
    height: 40px;
}

.horizontal-menu .menu-item a {
    /*color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    display: block;*/

    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    display: block;
    
    /* Prevent text from wrapping */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 215px;
}

.horizontal-menu .menu-item a:hover {
    background-color: var(--main-color);
    color: #ffffff;
}


.horizontal-menu .menu-item .submenu {
    display: block;
    z-index: 1;
}

.menu-item-icon {
    font-size: 20px;
    transform: translateY(0); /* Default position */
    transition: transform 0.3s ease;
}

/* On hover: slide the icon down */
.menu-item:hover .menu-item-icon {
    transform: translateY(5px);
}

/* On hover out: slide the icon back up */
.menu-item:hover .menu-item-icon:hover {
    transform: translateY(0);
}

.horizontal-menu .submenu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    padding: 10px;
    list-style: none;
    margin-top: 0px;
    width: 15rem;
    /* border: 1px solid; */
    color: var(--main-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);;
}

.horizontal-menu .submenu a {
    color: var(--main-color);
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.horizontal-menu .submenu a:hover {
    background-color: var(--main-color);
    color: var(--text-color)
}

/* Down arrow style */
.horizontal-menu .menu-item a i.fas.fa-chevron-down {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Rotate down arrow when parent menu item is hovered */
.horizontal-menu .menu-item:hover i.fas.fa-chevron-down {
    transform: rotate(180deg); /* Rotate the arrow */
}

.menu-b {
    /*width: 1280px;*/
    display: flex;
}

#menu-btn {
    color: var(--main-color);
    font-size: 20px;
    margin: auto;
    left: 20px;
    position: absolute;
    /* height: 100%; */
    cursor: pointer;
    display: flex;
}






.sidebar-menu {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: var(--main-color);
    padding-top: 50px;
    transition: 0.3s ease-in-out;
    z-index: 1000;
}
.sidebar-menu.active {
    left: 0;
}
.close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.close-btn:hover {
    transform: rotate(90deg);
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
.menu-overlay.active {
    display: block;
}

.side-menu-item {
    padding: 2rem;
    font-size: 16px;
    color: var(--text2-color);
    text-decoration: none;
    font-family: var(--main-font);
}

.side-menu-item a {
    padding: 2rem;
    font-size: 16px;
    color: var(--text2-color);
    text-decoration: none;
    font-family: var(--main-font);
}


#modalCommentText p {
    margin-bottom: 10px;
}

#modalCommentText hr {
    border: 0;
    border-top: 1px solid #ccc;
}

















/*************************************************************************************************
# Main Container
*************************************************************************************************/

.top {
    height: 0rem;
}

.main-container {
    max-width: 1090px;
    margin: auto;
    /*overflow-y: auto;*/
    height: auto;
    transition: max-height 0.3s ease;
    margin-top: 2rem;
    font-size: 14px;
    min-height: 50rem;
    margin-bottom: 5rem;
}

.main-container-assets {
    /*max-width: 1410px;*/
    margin: auto;
    /*overflow-y: auto;*/
    height: auto;
    transition: max-height 0.3s ease;
    margin-top: 2rem;
    font-size: 14px;
    min-height: 50rem;
}

.main-container-content {
    display: flex;
}

.container-inner {
    /*max-width: 1170px;*/
    width: 100%;
}


.main-container .container .con-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0px 0px;
    position: relative;
    /*z-index: 1;*/
}

.main-container .container .con-header .create-buttons {
    display: flex;
    gap: 20px;
}

.main-container .container .con-header h2 {
    color: var(--main-color);
    font-style: italic;
}


/*.side-menu {
    width: 60px;
    background-color: var(--text-color);
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: visible;
    z-index: 9999;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid var(--main-color);
} */

.side-menu {
    width: 60px;
    background-color: var(--text-color);
    position: fixed;
    /* top: 0; */
    left: 0;
    /* transform: translateY(-50%); */
    /* overflow: visible; */
    z-index: 1;
    /* border-radius: 0px 5px 5px 0px; */
    border-right: 1px solid var(--main-color);
    height: 100%;
    box-shadow: 7px 10px 12px rgba(0, 0, 0, 0.2);
}

.side-menu a {
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    color: white;
    text-decoration: none;
    position: relative;
    /*height: 4rem;
    padding: 8px 16px;
    border-bottom: 1px solid gray; */
    transition: background-color 0.3s;
}

.side-menu-inner {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding: 8px 16px;
    border-bottom: 1px solid gray;
}

.side-menu-inner p {
    margin-bottom: 0;
    color: var(--main-color);
}

.side-menu .fas {
    color: var(--main-color);
    transition: transform 0.3s ease-in-out;
    font-size: 18px;
    position: relative;
}

.side-menu a:hover .fas {
    transform: translateY(-5px);
}

.side-menu a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 12;
}

.side-menu a:hover::after {
    opacity: 1;
    visibility: visible;
}

.dashboard-top {
    margin: 0 auto;
    padding: 20px;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* border-bottom: 1px solid #7a7a7a; */
    /* min-height: 9rem; */
    /* width: 100%; */
    box-shadow: 0px -2px 8px rgb(0 0 0 / 28%);
    /* background-color: var(--text-color);*/
    
}

.dashboard-org-info {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    min-height: 9rem;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
    /*max-width: 1280px;*/
    max-width: 1190px;
    margin: auto;
    overflow-y: auto;
    height: auto;
    transition: max-height 0.3s ease;
}

.dasboard_org_info {
    max-width: 1280px;
    margin: auto;
    overflow-y: auto;
    height: auto;
    transition: max-height 0.3s ease;
    margin-top: 2rem;
}

.dashboard_logo {
    margin-right: 20px;
    overflow: hidden;
    display: inline-block;
    align-content: center;
}

.dashboard_logo img {
    max-width: 80px;
}

.dashboard-info {
    /* flex: 1; */
    /* display: flex; */
    flex-direction: column;
    align-content: center;
}

.dashboard-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
}

.dashboard-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0rem;
}

.content .dashboard-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0rem;
}

.dashboard-info a {
    text-decoration: none;
    color: var(--main-color);
    font-family: 'Inter';
}

.text-center {
    text-align: center !important;
}

.menu-drp-btn {
    width: 100%;
    min-width: 13rem;
    padding: 1rem;
    background-color: transparent;
    border: none;    
    font-size: 14px;
}

.menu-drp-btn:hover {
    width: 100%;
    min-width: 1rem;
    padding: 1rem;
    background-color: var(--main-color);
    color: #fff;
    border: none;    
    font-size: 14px;
}




/********************************************************************************************
# Dashboard
********************************************************************************************/

.dashboard-container {
    margin-bottom: 1.5rem !important;
    width: 100%;
    /*padding: 30px;*/
}

.dashboard-items {
    font-family: var(--main-font);
    margin: 2rem 0rem;
}





.progress-container {
    text-align: center;
    display: inline-block;
    width: 200px;
    margin: 20px;
    position: relative;
}

.progress-container svg {
    transform: rotate(90deg);
} 

.progress-container circle {
    fill: none;
    stroke-width: 20;
    transition: stroke-dasharray 0.6s ease-in-out;
}

.bg {
    stroke: #e0e0e0;
}

.progress {
    stroke: #003166; /* Change this to modify progress bar color */
    stroke-linecap: round;
    stroke-dasharray: 0 565; /* Default 0 */
}

.percentage {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Gauge Needle */
.needle {
    position: absolute;
    top: 17%;
    left: 50%;
    width: 10px;
    height: 90px;
    background: black;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform-origin: bottom center;
    transform: translate(-50%, 0) rotate(-180deg);
    transition: transform 0.6s ease-in-out;
    border-radius: 20px;
    z-index: 1;
}

.maturityLevel {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #333;
}




.dashboard-card {
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;    
    /*border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: var(--bs-card-border-radius);*/
}

.dashboard-card-display {
    width: 32%;
    height: 8rem;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 2px;
    align-content: center;
    text-align: left;
    padding: 0rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-card-display h4 {
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem;
}

.dashboard-card-display h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.dashboard-card-display:hover {
    box-shadow: 0px 10px 20px rgb(0 0 0 / 60%);
    transition: border-radius 300ms ease-in, background 300ms ease-in, box-shadow 300ms ease-in;
}

.dashboard-card-display a {
    text-decoration: none;
    color: var(--main-color);
}

.dashboard-card-display-quiz {
    width: 23%;
    height: 8rem;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 2px;
    align-content: center;
    text-align: left;
    padding: 0rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}








.met-box-display .metric-box .dashboard-card-display {
    width: 48%;
    height: 8rem;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 2px;
    align-content: center;
    text-align: left;
    padding: 0rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.met-box-display .metric-box .dashboard-card-display h4 {
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem;
}

.met-box-display .metric-box .dashboard-card-display h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.met-box-display .metric-box .dashboard-card-display:hover {
    box-shadow: 0px 10px 20px rgb(0 0 0 / 60%);
    transition: border-radius 300ms ease-in, background 300ms ease-in, box-shadow 300ms ease-in;
}

.met-box-display .metric-box .dashboard-card-display a {
    text-decoration: none;
    color: var(--main-color);
}

.met-box-display .metric-box .dashboard-card-display-quiz {
    width: 23%;
    height: 8rem;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 2px;
    align-content: center;
    text-align: left;
    padding: 0rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}


.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.card-title {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: left;
    font-family: 'Montserrat';
}

.metric-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-box i {
    font-size: 2rem;
    color: #003166;
}

.metric-box h5 {
    font-size: 18px;
    /*margin: 0;*/
    line-height: 2rem;
}

.charts-container {
    display: flex;
    /*padding: 0px 30px;*/
    height: 350px;
    width: 100%;
    margin-bottom: 1.5rem !important;
}

.charts-canvas {
    display: block;
    box-sizing: border-box;
    height: 230px;
    width: 230px;
    justify-self: center;
}


.metric-box-charts {
    display: flex;
    align-items: center;
    /*width: 400px;
    height: 440px; */
    width: 100%;
    height: 100%;
    /*margin-right: 1rem;*/
}

.dashboard-card-chart {
    width: 100%;
    height: 100%;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    box-shadow: 0px 4px 8px rgb(0 0 0 / 28%);
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border-radius: 2px;
    align-content: center;
    text-align: left;
    padding: 0rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-card-chart h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.policy-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.policy-list-item:last-child {
    border-bottom: none;
}

.policy-list-item h6 {
    margin: 0;
    font-weight: bold;
}

.policy-list-item p {
    margin: 0;
    color: #888;
}

.btn-view {
    background-color: #003166;
    color: white;
    border-radius: 20px;
    padding: 5px 10px;
}

.btn-view:hover {
    background-color: #002244;
    color: white;
}





/* Basic table styling */
.policy-status-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-status-table th, .policy-status-table td {
    padding: 12px 15px;
    text-align: left;
}

.policy-status-table th {
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
}

.policy-status-table td {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.policy-status-table tr:nth-child(even) td {
    background-color: #f2f2f2;
}

.policy-status-table tbody tr:hover {
    background-color: var(--main-color-hover);
    /*cursor: pointer;*/
}

/* Hover effect on specific cells */
.policy-status-table tbody tr:hover td:nth-child(1),
.policy-status-table tbody tr:hover td:nth-child(2), /* Read column */
.policy-status-table tbody tr:hover td:nth-child(3) { /* Quiz Status column */
    color: #fff; /* Change text color when hovering over these columns */
    background-color: var(--main-color-hover);
    font-style: italic;
}

/* Hover effect on specific cells */
.policy-status-table tbody tr:hover td { /* Quiz Status column */
    color: #fff; /* Change text color when hovering over these columns */
    background-color: var(--main-color-hover);
    font-style: italic;
}

/* Add a border and space around the table */
.policy-status-table {
    max-width: 100%;
    overflow-x: auto;
    /*max-height: 20rem;*/
}

.policy-status-table th:nth-child(2),
.policy-status-table th:nth-child(3) {
    text-align: center;
}

/* Styling for Yes/No and Quiz Status columns */
.policy-status-table td:nth-child(2),
.policy-status-table td:nth-child(3) {
    /*font-weight: bold;*/
    font-style: italic;
    padding: 6px 15px;
    text-align: center;
} 

/* Style for "Yes", "No", "Pending", "Passed", "Failed" states */
.policy-status-table td:nth-child(2):contains('Yes'),
.policy-status-table td:nth-child(3):contains('Passed') {
    color: green;
}

.policy-status-table td:nth-child(2):contains('No'),
.policy-status-table td:nth-child(3):contains('Failed') {
    color: red;
}

.policy-status-table td:nth-child(3):contains('Pending') {
    color: orange;
}








/***************************************************************************************
# Policy Page
***************************************************************************************/

/*#takeQuiz {
    border: 1px solid;
    border-radius: 5px;
    padding: 8px 15px;
    background-color: var(--main-color);
    color: white;
}

#takeQuiz:hover {
    border: 1px solid var(--main-color);;
    border-radius: 5px;
    padding: 8px 15px;
    background-color: transparent;
    color: var(--main-color);
} */

.policy_title {
    text-align: center;
}

.policy-sidebar {
    /* width: 25%; */
    background-color: #f4f4f4;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    /* top: 4rem; */
    /* position: relative; */
}

/*.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0px 0px;
}

.header .create-buttons {
    display: flex;
    gap: 20px;
}

.header h2 {
    color: var(--main-color);
    font-style: italic;
} */


.nav-link {
    color: var(--main-color);
    font-weight: 500;
}

.nav-link.active {
    font-weight: 500;
}

.policy-container {
    display: flex;
    height: 100%;
}

.policy-main {
    width: 100%;
    /*margin: auto;*/
    height: 100%;
    position: relative;
    /*display: flex;*/
}

.policy-main-top {
    width: 100%;
    /*margin: auto;*/
    height: 100%;
    position: relative;
    display: flex;
}

.policy-navigator {
    text-align: right;
    margin: 1rem;
    display: flex;
}

.policy-list {
    list-style-type: none;
    padding: 0;
    position: relative;
}

.policy-list a {
    text-decoration: none;
    color: #003166;
    font-weight: bold;
    display: grid;
    /* width: 100%; */
    border-bottom: 1px solid;
    padding: 2rem 1rem;
}

.policy-list a:hover {
    background-color: #dfdede;
}

.policy-list li {
    /* border-bottom: 1px solid; */
    cursor: pointer;
    /* width: 100%; */
    /*font-style: italic;*/
}

.policy-title {
    margin-bottom: 0px
}

.policy-type {
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0px
}

.policy-list li:hover {
    background-color: #dfdede;
}

.unread-policy {
    background-color: var(--main-color-hover);
    color: white;
}

.unread-policy a .policy-title, 
.unread-policy a .policy-type {
    color: white;
}

.unread-policy:hover a .policy-title, 
.unread-policy:hover a .policy-type {
    color: var(--main-color);
}

.acknowledgment {
    background-color: var(--main-color);
    /* font-weight: bold; */
    color: #fff;
    /* padding: 7px; */
    border-radius: 5px;
    border: 1px solid var(--main-color);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 3rem;
}




.buttons {
    text-align: right;
    margin: 1rem;
    /*right: 0;
    position: absolute;*/
    display: flex;
    justify-content: right;
    align-items: center;
}

.top-buttons {
    text-align: right;
    margin: 1rem;
    right: 0;
    position: absolute;
}

.pdf-content {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    height: 100%;
}

.pdf-content h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.p-btn {
    padding: 10px;
}

.canback-btn {
    background-color: var(--main-color-hover);
    border-radius: 5px;
    border: 1px solid var(--main-color-hover);
    color: #fff;
}

.canback-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    /*padding: 7px;*/
    border: 1px solid var(--main-color-hover);
}

.trs {
    font-family: var(--main-font);
    font-size: 16px;
    margin: 0rem 10px;
}

.trs-btn {
    background-color: #d5d5d5;
    border: none;
    font-weight: bold;
    font-family: 'FontAwesome';
    border-radius: 2px;
    font-size: 20px;
    padding: 5px 10px;
}

.trs-btn:hover {
    background-color: var(--main-color);
    border: none;
    font-weight: bold;
    font-family: 'FontAwesome';
    border-radius: 2px;
    color: #fff;
}

.cm360-btn {
    background-color: var(--main-color);
    /*font-weight: bold;*/
    color: #fff;
    /*padding: 7px;*/
    border-radius: 5px;
    border: 1px solid var(--main-color);
    font-size:14px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.cm360-btn:hover {
    background-color: transparent;
    color: var(--main-color);
    /*padding: 7px;*/
    border: 1px solid var(--main-color);
    font-size:14px;
}


.ai-buttons {
    margin-left: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
}


.robot-icon {
    top: 7px;
    /* right: 0; */
    font-size: 14px;
    height: 27px;
    width: 27px;
    position: absolute;
    /* right: -10px; */
    background-color: #960ccf;
    color: white;
    border-radius: 50%;
    margin: auto;
    align-content: center;
    text-align: center;
}


@media (max-width: 1024px) {
  .responsive-btn {
    white-space: nowrap;
    overflow: hidden;
    text-indent: -9999px;
    position: relative;
    width: 3rem;
  }

  .responsive-btn i {
    text-indent: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .responsive-btn .robot-icon {
    display: none;
  }
}

.light-btn {
    background-color: transparent;
    border: none;
    padding: 0px 10px;
}

.ai-ok-button {
    text-align: right;
    margin-right: 1rem;
}

#moreActionsOptions button {
    padding: 0.5rem 1rem;
}

.tab-content {
    display: flex;
}

.tab-content>.active {
    display: block;
    width: 25%;
    background-color: #f4f4f4;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    /*top: 4rem;*/
    position: relative;
}

.policyForm-title {
    display: block;
    /*display: grid;*/
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    /*margin-bottom: 2rem;*/
    margin-bottom: 4rem;
}

.modal-lg, .modal-xl {
    --bs-modal-width: 80%;
}

.sensitivityLabel {
    right: 30px;
    position: absolute;
    color: gray;
    font-family: 'Poppins';
}

/*#versionDropdownContainer {
    display: block;
    text-decoration: none;
    color: #003166;
    font-weight: bold;
    display: grid;
    /* width: 100%; */
    /* border-bottom: 1px solid; *
    padding: 1.1rem 1rem;
    background-color: var(--text-color);
    border-right: none;
} */

.sort-filter {
    display: block;
    text-decoration: none;
    color: #003166;
    font-weight: bold;
    display: grid;
    /* width: 100%; */
    /* border-bottom: 1px solid; */
    padding: 1.1rem 1rem;
    background-color: var(--text-color);
    border-right: none;
}

.policy-header {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    /* border-bottom: 1px solid #7a7a7a; */
    min-height: 12rem;
    width: 100%;
    background-color: white;
    /* box-shadow: 0px 4px 8px rgb(0 0 0 / 28%); */
    background-color: transparent;
}

.policy-header-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    /* min-height: 9rem; */
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
    place-self: center;
    align-items: center;
}

.content h2 {
    font-size: 1.3rem;
    font-weight: 600;
}

.content h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.content h4 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
}

.content p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.content strong {
    font-weight: 600;
}

.content br {
    margin-top: 0;
    margin-bottom: 1rem;
}

select option.current-approver {
    color: red;
    font-style: italic;
}

.nav-item {
    position: relative;
}

.nav-item .notification-count {
    background-color: #e74c3c;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 20px;
    width: 20px;
    text-align: center;
}



















.policy-group-header {
    height: 3rem;
    background-color: var(--main-color);
    color: var(--text2-color);
    align-content: center;
    padding: 0rem 0.5rem;

    font-weight: bold;
    cursor: pointer;
    /*background-color: #f5f5f5;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 6px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy-group {
    margin-bottom: 1rem;
}

.policy-group.collapsed ul {
    display: none;
}

.policy-group-header .caret {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.policy-group.collapsed .caret {
    transform: rotate(180deg); /* rotates ">" to "v" */
}

.group-list {
    padding: 0rem;
}

.dropdown-section {
    margin-bottom: 1rem;
}

#sortFilterOptions,
#moreActionsOptions {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    z-index: 1;
}











/********************************************************************
    # Forgot Password Page
*********************************************************************/

.form-contain {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form-contain form {
    padding: 2rem;
    text-align: center;
    border-radius: .5rem;
    /* width: 50rem; */
    border: var(--border);
    background-color: var(--text-color);
    color: var(--main-color);
    width: 462px;
    padding: 48px 48px 60px 48px;
}

.form-contain form img {
    width: 20%;
}


.form-contain form .input-group input {
    /* height: 30px; */
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    color: #000;
    height: 40px;
    font-size: 15px;
    border: transparent;
    display: block;
    border-bottom: 1px solid var(--main-color);
    background-color: transparent;
}

.form-contain form .form-group {
    margin: 1rem 0rem;
    background-color: var(--main-color);
    color: var(--text2-color);
    border-radius: 5px;
}

.form-contain form .producer {
    margin: 1.5rem 0rem;
    font-size: 1.2rem;
}







































/********************************************************************
    # Messages
*********************************************************************/

#message-count,
#notification-count {
    position: absolute;
    font-size: 12px;
    height: 20px;
    width: 20px;
    position: absolute;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    margin: auto;
    align-content: center;
    text-align: center;
    /*display: < ?= $unreadMessagesCount > 0 ? 'block' : 'none' ?>; /* Hide if no unread messages */
}

.messages-count {
    /*position: absolute;*/
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
    /*display: < ?= $unreadMessagesCount > 0 ? 'block' : 'none' ?>; /* Hide if no unread messages */
}

.menu-messages-count {
    position: absolute;
    font-size: 12px;
    height: 20px;
    width: 20px;
    /* position: absolute; */
    /* right: -10px; */
    background-color: red;
    color: white;
    /* border-radius: 50%; */
    /* margin: auto; */
    align-content: center;
    text-align: center;
    /* padding: 1rem; */
    border-radius: 100%;
    line-height: 0;
}

.message-page {
    display: flex;
    min-height: 90vh;
}

#message-list {
    /*overflow-y: auto; */
    /* width: 100%; */
    /* max-width: 25rem; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 27rem;
    overflow-y: auto;
    height: 80vh;
    position: sticky;
    top: 10rem;
}

#message-list .list-group {
    border-radius: 0px;
}

#message-list-outer {
        /* overflow-y: auto; */
    /* height: 80vh; */
    /* width: 100%; */
    /* max-width: 25rem; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 25rem;
    /* position: sticky; */

}

.message-list-inner {
    /*position: sticky;
    top: -60rem;
    align-self: flex-start;
    overflow-y: auto;
    flex-grow: 1; */
    height: auto;
    border-right: 1px solid #ccc;
    padding-right: 1rem;
}

.message-top-buttons {
    background-color: #f9f9f9;
    height: 4rem;
    /* align-content: center; */
    text-align: end;
    border-right: 1px solid #e5e1e1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.message-main {
    width: 66.66666667%;
}

.message-main-top {
    background-color: #f9f9f9;
    height: 4rem;
    align-content: center;
    text-align: end;
    padding: 1rem;
}

#message-content {
    padding-left: 3rem;
    flex: 1;
    height: 80%;
}

#message-list .list-group-item {
    cursor: pointer;
}

#message-list .bg-warning {
    background-color: #658cb7; 
    /*background-color: var(--main-color-hover);*/
}

#message-list .bg-unread {
    background-color: #658cb7;
    /*background-color: var(--main-color-hover);*/
}

#message-list .message-checkbox {
    margin-right: 10px;
}

/* Optional: Add a hover effect for messages in the list */
#message-list .list-group-item:hover {
    background-color: #f1f1f1;
}

/* Font Awesome trash icon styling *
.fas.fa-trash-alt {
    font-size: 16px;
    color: var(--main-color) /* Red color for the delete icon *
} */

.message-inbox{
    display: flex;
}

.row .col-md-4 {
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-top: var(--bs-gutter-y);
}

.no-message {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
}

.no-messages {
    justify-content: center;
    align-items: center;
    display: block;
    color: var(--main-color);
}

.no-messages .fa-envelope {    
    color: var(--main-color);
}










/********************************************************************
    # Accordion
*********************************************************************/

/* Accordion container and item styling */
.accordion-container {
    width: 100%;
}

.accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 2rem;
}

.accord-button {
    width: 100%;
    background-color: #e1e1e1;
    padding: 15px;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between; /* Space between text and arrow */
    align-items: center;
    font-weight: bold;
}

.accord-button:hover {
    background-color: #e2e2e2;
}

/* Style for the arrow */
.arrow {
    font-family: 'FontAwesome';
    /* transform: rotate(-90deg); */
    transition: transform 0.3s ease; /* Smooth rotation */
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}

/* Add smooth transition */
.accordion-content.show {
    display: block;
} 

/*.accordion-content {
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    display: block; /* Display by default *
}

/* Add smooth transition *
.accordion-content.collapse {
    display: none;
} 

/* Rotate the arrow when content is collapsed *
.accord-button.collapsed .arrow {
    transform: rotate(-180deg); /* Arrow points to the right when collapsed *
} */

/* Style for the arrow */
.arrow i {
    transition: transform 0.3s ease;  /* Smooth rotation */
}

/* Rotate the arrow when content is visible */
.arrow i.rotate {
    transform: rotate(180deg);  /* Rotates 180 degrees */
} 






/********************************************************************
Table
*********************************************************************/

.tables {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.tables th, .tables td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.tables th {
    background-color: #f2f2f2;
    color: #333;
}

.tables tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tables tr:hover {
    background-color: #f1f1f1;
}

.severity-high {
    background-color: red;
    color: white;
}
.severity-medium {
    background-color: orange;
    color: white;
}
.severity-low {
    background-color: green;
    color: white;
}

.severity-undefined {
    background-color: gray;
    color: white;
}



/**************************************************************************
Register Edit
***************************************************************************/

.edit-mode input, .edit-mode select {
    display: block;
}
.edit-mode span {
    display: none;
}
.edit-mode .save-button {
    display: inline-block;
}
.edit-mode .edit-button {
    display: none;
}



/*******************************************************************************
# Custom Modal
*******************************************************************************/

/* Modal styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #fff;
    margin: 15% auto;
    /*padding: 20px;*/
    padding: 1rem 5rem 3rem 5rem;
    border: 1px solid #888;
    width: 80%;
    /*max-width: 500px;*/
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-modal-content h3 {
    font-size: 24px;
    text-align: center;
}

.custom-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modall {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modall-dialog {
    position: relative;
    margin: 1.75rem auto;
    max-width: 80%;
}

.modall-content {
    background-color: #fff;
    border-radius: 0.3rem;
    padding: 1.5rem;
    width: 80rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}









/**********************************************************************************
# Custom DropDown
**********************************************************************************/


.custom-dropdown {
    position: relative;
    border: 1px solid #ccc;
    cursor: pointer;
    background: white;
    padding: 10px 0px;
    width: 100%;
}

.custom-dropdown-selected {
    padding: 5px;
}

.custom-dropdown-options {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-group {
    border-top: 1px solid #eee;
}

/*.dropdown-group:hover {
    background-color: var(--main-color-hover);
}*/

.dropdown-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f0f0;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.dropdown-group-header:hover {
    background-color: var(--main-color-hover);
    color: var(--text-color);
}
.arrow {
    transition: transform 0.2s ease;
    margin-right: 10px;
    display: inline-block;
}

/* Rotate the arrow when active */
.dropdown-group-header.active .arrow {
    transform: rotate(90deg); /* Down arrow */
}

.dropdown-group-items {
    display: none;
    padding-left: 10px;
}

.dropdown-option {
    padding: 5px;
    cursor: pointer;
    background-color: transparent;
}

.dropdown-option:hover {
    background: var(--main-color-hover);
    color: var(--text-color);
}

.dropdown-option:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.dropdown-option:first-child {
    font-weight: 500;
}










/**********************************************************************************
# Create Modals
**********************************************************************************/

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    padding: 1rem;
    font-family: var(--main-font);
    font-size: 14px;
}

.modal-content .form-label {
    margin-bottom: .5rem;
    color: #9b9b9b;
}

.modal-title {
    font-weight: bold;
    font-size: 16px;
}


.policyForm-title .form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.policyForm-title .form-group {
    flex: 1;
}

.policyForm-title .form-group select,
.policyForm-title .form-group input {
    width: 100%;
}

.ql-toolbar.ql-snow + .ql-container.ql-snow {
    border-top: 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.ql-toolbar.ql-snow {
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    padding: 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}


.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-file-upload .custom-file-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.custom-file-upload .custom-file-button:hover {
    background-color: #0056b3;
}

.custom-file-upload #file-chosen {
    font-size: 14px;
    color: #555;
}

.custom-file-upload input[type="file"] {
    display: none;
}







.modal-review-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
    margin-right: auto;
    margin-left: auto;
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

.modal-review {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 200rem;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    padding: 1rem;
    font-family: var(--main-font);
    font-size: 14px;
}


.contextMenu {
    display:none; 
    border-radius: 3px; 
    position:absolute; 
    background-color:white; 
    border:1px solid #ccc; 
    padding:5px;z-index: 9999;
}

.contextMenu button {
    border: none;
    color: var(--main-color);
    background-color: transparent;
}

.contextMenu button:hover {
    border: none;
    color: #fff;
    background-color: var(--main-color);
    border: 1px solid;
    border-radius: 3px;
}


.commentModal {
    display:none; 
    position:fixed; 
    top:50%; 
    left:50%; 
    transform:translate(-50%, -50%); 
    background-color:white; 
    border:1px solid #ccc; 
    padding:20px; 
    z-index: 10000; 
    border-radius: 4px;  
    font-family: var(--main-font);
    font-size: 12px;
}

#policyReviewModal .modal-body h2 {
    font-size: 22px;
}

#policyReviewModal .modal-body h3 {
    font-size: 18px;
}

#policyReviewModal .modal-body p {
    font-size: 14px;
}








.modal-foot {
    text-align: center;
}






/**********************************************************************************
# Quiz Modal
**********************************************************************************/

.quiz-pass {
    text-align: center;
}

.quiz-pass .fa-check-cirle {
    font-size: 6rem;
    color: var(--main-color);
}

.quiz-page {
    display: flex;
}

#quiz-list {
    /* border-right: 1px solid #ddd;
     padding-right: 20px;
     overflow-y: auto; */
     height: 80vh;
 }

.quiz-menu {
    flex: 0 0 auto;
    width: 15%;
    /*top: 3rem;*/
    position: relative;
}

.quiz-main {
    flex: 0 0 auto;
    width: 85%;
    /* margin-top: 2.5rem; */
}

.quiz-menu-inner {
    margin-top: 2rem;
    /* display: none; */
    max-width: 13rem;
    flex: 1 0 100%;
    /*margin-top: 1rem;*/
    padding: 0px;
    top: 13.25rem;
    padding-block: 1rem;
    border: 1px solid rgb(232, 232, 236);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    position: sticky;
    /*top: 10rem;*/
    font-family: var(--main-font);
}

.quiz-menu-item {
    padding: 7px 20px;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: black;
    font-size: 15px;
    cursor: pointer;
}

.quiz-menu-item.active {
    font-weight: bold;  /* Bold when active */
}

.quiz-questions {
    font-family: var(--main-font);
    border: 1px solid;
    /* background-color: var(--main-color); */
    padding: 50px;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.quiz-questions-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quiz-answers {
    margin-top: 2rem;
}

#quizContainer {
    /* border: 1px solid #c3c3c3;
    padding: 20px;
    border-radius: 15px; */
    font-family: var(--main-font);
}

.quiz-input {
    /* height: 30px; */
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    color: #000;
    height: 40px;
    font-size: 15px;
    border: transparent;
    display: block;
    border-bottom: 1px solid var(--main-color);
    background-color: transparent;
}

.quiz-answers-input {
    display: flex;
    margin: 15px 0px 15px 0px;
    /* display: block; */
    height: 44px;
    font-size: 15px;
    position: relative;
}

.quiz-answers-correct {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    /* line-height: 1.5; */
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    /* background-color: var(--bs-tertiary-bg); */
    /* border: var(--bs-border-width) solid var(--bs-border-color); */
    /* border-radius: var(--bs-border-radius); */
    border-bottom: 1px solid var(--main-color);
    height: 40px;
}

.sleek-dropdown {
    background-color: transparent;
    /*max-height: inherit;
    min-height: 60px;*/
    height: 44px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 12px;
    transition: height .2s ease-out;
    width: 100%;
    word-break: break-word;
    font-size: 13px;
    letter-spacing: .1px;
    line-height: 20px;
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: none;
    color: #000000;
    resize: none;
    border: none;
    border-bottom: 1px solid #000000;
    margin-bottom: 1rem;
}

.sleek-dropdown option[disabled] {
    color: #999; /* Lighter color for placeholder */
}


#selectPolicyForm {
    border-radius: 8px;
    /*width: 100%;*/
    margin: 10px auto;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    display: block;
    padding: 2rem;
}

.quiz-select{
    display: flex;
    width: 100%;
}

#confirmationDialog {
    z-index: 9999;
}

.form-select select, input, option {
    font-size: 14px;
    /*background-color: white;
    color: var(--main-color) */
    cursor: pointer;
}



















.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
	width: 100%;
    height: 100%;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	/*border: solid black 1px;*/
	outline: 0;
	/*height: 3rem; */
    border: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--main-color);
	color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 1px;
    /* padding: 0 16px; */
    font-size: 14px;
    padding: 7px 14px;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: white;
    border: none;
    /* border-right: 1px solid #aaa; */
    /* border-top-left-radius: 4px; */
    border-bottom-left-radius: 4px;
    color: var(--main-color);
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    right: 0;
    top: 0;
    /* width: 20%; */
    left: auto;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	/*background-color: #a8721f;*/
    background-color: var(--main-color);
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: transparent;
	border: none;
	outline: 0;
	box-shadow: none;
	/*-webkit-appearance: textfield; */
    appearance: none; /* Standard */
    -webkit-appearance: none; /* For WebKit browsers */
    -moz-appearance: none; /* For Firefox */
	font-size: 14px;
	width: 100%;
}


/* Drop down Menu */
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	/*background-color: #141414;*/
    font-size: 14px;
    font-family: var(--main-font);
}

.select2-container--open .select2-dropdown {
	left: 0;
}

.select2-dropdown {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}

.select2-container--default .select2-selection--multiple {
	/*background-color: var(--bg2-color);*/
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
    border: none;
}

.select2-results__option[aria-selected] {
	cursor: pointer;
	font-size: 15px;
}

.form-control {
    background-color: transparent;
	padding: 10px;
	font-size: 16px;
}

.dropdown-wrapper {
	/*background-color: #141414;
	padding: 10px; */
    padding: 0px;
    top: 0;
    position: relative;
}

#mySelect {
	background-color: #141414;
	color: #fff;
	/* optional, for text color */
	border: none;
	/* optional, to remove border */
	font-size: 18px;
}













/**********************************************************************************
# Footer
**********************************************************************************/

ul li, ol li {
    list-style-type: none;
}

/*--------------------------------------------------------------
    # Footer
--------------------------------------------------------------*
#footer {
  /*background: #f2f5f8;*
  padding: 0 0 30px 0;
  font-size: 14px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  border-bottom: 2px solid hsl(0deg 0% 100% / 50.98%);
  border-top: 2px solid hsl(0deg 0% 100% / 50.98%);
}*/

.footer-area-bottom {
    border-top: 1px solid;
    margin-top: 4rem;
}

.footer .copyright {
    text-align: center;
    padding-top: 0px;
    float: left;
    padding-bottom: 0px;
    color: var(--text-color);
    font-size: 13px;
}

.footer .credits {
    text-align: center;
    font-size: 13px;
    color: #555;
    float: right;
    padding-top: 30px;
}

.footer .credits a {
    color: #9f9f9f;
    padding-right: 30px;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.container-assets {
    padding: 20px;
    margin-left: 60px;
    transition: margin-left 0.3s;
}

.row {
    /*padding: 50px 0;*/
    padding: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    /*border-bottom: 1px solid hsl(0deg 0% 100% / 50.98%);*/
}

ul {
    list-style: none;
}

footer {
    font-size: 1spx;
    position: relative;
    bottom: 0px;
    width: 100%;
    border-top: 1px solid hsl(0deg 0% 100% / 50.98%);
    background-color: var(--main-color);
    /*padding-top: 2rem;*/
    z-index: 2;
}

.footer-col {
    width: 25%;
    /*padding: 0 15px; */
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    /*left: 0;*/
    bottom: -10px;
    height: 2px;
    box-sizing: border-box;
    background-color: var(--text-color);
    width: 50px;
}

.footer-col ul {
    padding: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    text-transform: capitalize;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all .50s ease;
}

.footer-col ul li a:hover {
    color: var(--text-color);
    padding-left: 10px;
    font-weight: 600;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.5s ease;
    align-content: center;
}

.footer-col .social-links a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
}






/************************************************************************************
# Footer Bottom
************************************************************************************/

.footer-bottom .footer-bottom-up {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 22px;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a:not(:last-of-type) {
    margin-right: 34px;
}

.footer-social a i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: .3s;
}



.footer-bottom .footer-bottom-up {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 22px;
    margin-top: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a:not(:last-of-type) {
    margin-right: 34px;
}

footer .footer-social a {
    font-size: 0;
}
.footer-social a {
    width: 20px;
    height: 20px;
}

.footer-social a i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.footer-bottom .footer-bottom-up .social-links a i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.5sease;
    align-content: center;
    font-size: 1.3rem;
}




.footer-bottom .footer-bottom-down {
    border-top: 1px solid #bbbbbb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 3rem;
}


.footer-logo img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.footer-site-info {
    max-width: 750px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.footer-site-info p {
    font-size: 10px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0rem;
    font-size: 13px;
}

.footer-site-info p a {
    font-size: 13px;
    line-height: 20px;
    text-decoration: unset;
    text-transform: capitalize;
    padding: 0 6px;
    position: relative;
    color: #fff;
    display: inline-block;
    margin: 0;
}

.footer-site-info p a:not(:last-of-type):before {
    content: "";
    position: absolute;
    right: -1px;
    top: 2px;
    width: 1px;
    height: calc(100% - 3px);
    background-color: #fff;
}





/************************************************************************************
# Chat Functions
************************************************************************************/

.chat-container {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 10;
}

.chat-options {
    /*display: none; /* Initially hidden *
    margin-bottom: 10px; /* Add some space between the buttons *
    position: fixed;
    bottom: 70px;
    left: 30px;
    z-index: 98;
    cursor: pointer;*/
    display: none;
    /* margin-bottom: 10px; */
    position: fixed;
    bottom: 75px;
    left: 68px;
    z-index: 98;
    cursor: pointer;
    width: 20rem;
    background-color: var(--bg2-color);
    border-radius: 5px;
    padding: 1rem;
    width: auto;
}

.chat-options.visible {
    /*display: block; /* Show when toggled */
    display: flex;
}

.chat-toggle {
    cursor: pointer;
    font-size: 2rem; /* Adjust size as needed */
    color: #25D366; /* WhatsApp green color */
}








/****************************************************************
    Ask PurpAI
****************************************************************/

.ask-purpai {
    border: 1px solid var(--main-color);
    padding: 7px 18px;
    border-radius: 28px;
}

.ask-purpai button {
    display: flex; 
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    color: var(--main-color);
    padding: 0px;
    border: none;
}

.ask-purpai img {
    margin-right: 10px;
}

.ask-purpai p {
    margin-bottom: 0rem;
    font-size: 13px;
    text-decoration: none;
}





/****************************************************************
    Chat
****************************************************************/
















/************************************************************************************
# Pricing Page
************************************************************************************/

.pricing-hero {
    display: flex;
    flex-wrap: wrap-reverse;
    text-align: center;
    justify-content: center;
    gap: 20px;
}

.pricing-hero-sec {
    margin: 40px;
}

.pricing-hero-dt {
    display: block;
    width: 100%;
}

.pricing-hero-row {

}

.pricing-hero-row h1 {
    color: var(--main-color)
}

























































@media (min-width: 768px) and (max-width: 991px) {  /* Adjust this breakpoint as needed */
    .horizontal-menu .menu-item a {
        white-space: nowrap;
        overflow: hidden;
    }

    .dashboard-org-info {
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        min-height: 9rem;
        width: 100%;
        background-color: transparent;
        font-family: var(--font-primary);
        max-width: 1090px;
        margin: auto;
        overflow-y: auto;
        height: auto;
        transition: max-height 0.3s ease;
    }

    .main-container {
        max-width: 1100px;
    }

    .policyForm-title .form-row {
        flex-direction: column;
    }

    .policy-status-table table {
        width: 100%;
        font-size: 14px;
    }
    .policy-status-table th, .policy-status-table td {
        padding: 10px 12px;
    }
}



/* Responsive stacking for mobile */
@media (max-width: 768px) {
    .horizontal-menu .menu-item a {
        white-space: nowrap;
        overflow: hidden;
    }

    .dashboard-org-info {
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        min-height: 9rem;
        width: 100%;
        background-color: transparent;
        font-family: var(--font-primary);
        max-width: 1090px;
        margin: auto;
        overflow-y: auto;
        height: auto;
        transition: max-height 0.3s ease;
    }

    .main-container {
        max-width: 1100px;
    }

    .policyForm-title .form-row {
        flex-direction: column;
    }

    .policy-status-table table {
        width: 100%;
        font-size: 14px;
    }
    .policy-status-table th, .policy-status-table td {
        padding: 10px 12px;
    }
    
    .header .topbar .mobilemenu {
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }

    .header .topbar .mobilemenu .fa-bars{
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }
} 













/* Responsive Styles */
@media screen and (max-width: 450px) {
    .sidebar a { font-size: 18px; }

    .login-image {
        width: 100%;
        background: url(../../assets/img/log-in.png) no-repeat center center;
        background-size: cover;
        /* display: list-item; */
        height: 100%;
        position: fixed;
    }

    .login-form {
        width: 100%;
        padding: 10px;
        min-height: 100vh;
        display: flex;
        /* display: block; */
        align-items: center;
        justify-content: center;
        position: absolute;
    }

    .header .topbar .mobilemenu {
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }

    .header .topbar .mobilemenu .fa-bars{
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }
}
