/** Logo sidebar **/
.spot-sidebar-logo {
	display: block;
	margin: 0 auto;
	width: 220px;
	max-height: 220px;
}

/** Notifications **/
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
}

.notification {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0.95;
}

.notification.success {
    background-color: #4caf50;
}

.notification.error {
    background-color: #f44336;
}

.notification.warning {
    background-color: #ff9800;
}

.notification.info {
    background-color: #2196f3;
}

.notification-message {
    display: inline-block;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.notification-close:hover {
    opacity: 0.8;
}


/* Trial sidebar
.trial-status {
    background-color: #3b3b3b;
    border: 1px solid #444444;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #ffffff;
	width: 90%;
	margin: 0 auto;
}

.trial-status h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #8bc24a;
}

.trial-status p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trial-status .upgrade-now {
    display: inline-block;
    background-color: #8bc24a;
    color: #2f2f2f;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.trial-status .upgrade-now:hover {
    background-color: #7ba73e;
}

.trial-status .see-plans {
    display: inline-block;
    color: #8bc24a;
    text-decoration: none;
    font-weight: bold;
}

.trial-status .see-plans:hover {
    text-decoration: underline;
}

.trial-status .upgrade-now,
.trial-status .see-plans {
    font-size: 14px;
}

.trial-status {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}**/


/** Spot Pricing **/
.spot-pricing-table {
    background-color: #ffffff; /* White background for contrast */
    border: 1px solid #e0e0e0; /* Light grey border */
    border-radius: 10px; /* Rounded corners for a modern look */
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for readability */
}

.spot-pricing-plan-name {
    font-size: 20px; /* Larger font for the plan name */
    font-weight: bold;
    color: #2f2f2f; /* Dark grey text to match the sidebar */
    margin-bottom: 10px;
}

.spot-pricing-cost {
    font-size: 24px; /* Larger font for the pricing */
    font-weight: bold;
    color: #8bc24a; /* Accent color from the sidebar */
    margin-bottom: 15px;
}

.spot-pricing-policyholders {
    font-size: 16px; /* Standard font size for details */
    color: #555555; /* Slightly lighter grey for secondary information */
}

.spot-pricing-table:hover {
    border-color: #8bc24a; /* Highlight border on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
    transform: translateY(-5px); /* Slight lift on hover */
    transition: all 0.3s ease;
}

.spot-pricing-plans .gfield_label {
	margin-bottom: 1em !important;
	font-size: 1.25rem !important;
	color: var(--ast-global-color-2);
	font-family: 'Poppins',sans-serif;
	font-weight: 600;
}

/* Hide the radio inputs but keep them functional */
.spot-pricing-plans input[type="radio"] {
    visibility: hidden;
	position: absolute;
	left: -9999px;
}

/* Style the pricing labels */
.spot-pricing-plans .spot-pricing-table {
    cursor: pointer; /* Make the entire label clickable */
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Style when a radio option is selected */
.spot-pricing-plans input[type="radio"]:checked + label .spot-pricing-table {
    border-color: #8bc24a; /* Change border to accent color */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhance shadow on selection */
    transform: translateY(-5px); /* Slight lift on selection */
    background-color: #f0f9f4; /* Light green background to indicate selection */
}


/* Container for the list */
.spot-included-plans {
    background-color: #ffffff; /* White background for contrast */
    border: 1px solid #e0e0e0; /* Light grey border */
    border-radius: 10px; /* Rounded corners for a modern look */
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for readability */
}
.spot-included-plans ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}

.spot-included-plans li {
    margin-bottom: 10px; /* Space between list items */
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
}

/* Custom bullet point */
.spot-included-plans li::before {
    content: '✔'; /* Custom bullet symbol */
    color: #8bc24a; /* Accent color matching the sidebar */
    position: absolute;
    left: 0;
    top: 0;
}


/** New sidebar navigation **/
/* Sidebar container styling */
#secondary li {
	margin-bottom: 1px !important;
}

:root {
    --accent-color: #8bc24a;
    --dark-bg-color: #2f2f2f;
    --dark-hover-bg-color: #444444;
    --dark-submenu-bg-color: #3b3b3b;
    --dark-submenu-hover-bg-color: #555555;
    --dark-text-color: #ffffff;

    /* --light-bg-color: #f5f5f5;
    --light-hover-bg-color: #e0e0e0;
    --light-submenu-bg-color: #dedede;
    --light-submenu-hover-bg-color: #cccccc; */
	--light-bg-color: #f5f5f5; /* Primary sidebar background */
    --light-hover-bg-color: #e1e6ec; /* Sidebar item hover */
    --light-submenu-bg-color: #f8f9fa; /* Submenu background */
    --light-submenu-hover-bg-color: #f0f1f2; /* Submenu item hover */
    --light-text-color: #333333;
}

/* General Sidebar Background */
body #secondary {
    background-color: var(--light-bg-color);
    margin: 0 !important;
    border: none !important;
    min-width: 250px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

body.dark-mode #secondary {
    background-color: var(--dark-bg-color);
}

/* Main Sidebar Styles */
.sidebar-main {
    width: 100%;
    overflow-y: auto;
    padding-top: 20px;
    position: sticky;
    top: 0;
    height: calc(100vh - 20px);
    background-color: var(--light-bg-color);
    color: var(--light-text-color);

}

body.dark-mode .sidebar-main {
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
}

/* Menu Link Styles */
.sidebar-main .menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 16px;
    color: inherit;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

body.dark-mode .sidebar-main .menu-link:hover {
    background-color: var(--dark-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

body .sidebar-main .menu-link:hover {
    background-color: var(--light-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

/* Menu Icons and Spacing */
.sidebar-main .menu-link > .ast-icon.icon-arrow svg {
    transform: rotate(-90deg);
    margin-right: 7px;
}

.sidebar-main .menu-link ._mi {
    margin-top: 0 !important;
}

.sidebar-main .menu-link i {
    margin-right: 10px;
}

/* Scrollbar Styling */
.sidebar-main::-webkit-scrollbar {
    width: 8px;
}

.sidebar-main::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
}

body .sidebar-main::-webkit-scrollbar-track {
    background-color: var(--light-submenu-bg-color);
}

body.dark-mode .sidebar-main::-webkit-scrollbar-track {
    background-color: var(--dark-submenu-bg-color);
}

/* Active Menu Item */
.sidebar-main .menu-item.current-menu-item > .menu-link {
    background-color: var(--light-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
	font-weight: bold;
}

body.dark-mode .sidebar-main .menu-item.current-menu-item > .menu-link {
    background-color: var(--dark-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
	font-weight: bold;
}

/* Submenu Styles */
body .sidebar-main .sub-menu li {
	padding-left: 0 !important;
}
body.dark-mode .sidebar-main .sub-menu {
	display: none;
    background-color: var(--dark-submenu-bg-color);
}

body .sidebar-main .widget_nav_menu ul ul.sub-menu li .sub-menu li a {
	padding-left: 40px;
}

body .sidebar-main .sub-menu {
	display: none;
    background-color: var(--light-submenu-bg-color);
}

body.dark-mode .sidebar-main .sub-menu .menu-link:hover,
body.dark-mode .sidebar-main .sub-menu .current-menu-item .menu-link {
    background-color: var(--dark-submenu-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
	font-weight: bold;
}

body .sidebar-main .sub-menu .menu-link:hover,
body .sidebar-main .sub-menu .current-menu-item .menu-link {
    background-color: var(--light-submenu-hover-bg-color);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
	font-weight: bold;
}

/* Dropdown Menu Toggle */
.sidebar-main .dropdown-menu-toggle {
    margin-left: auto;
}

.sidebar-main .dropdown-menu-toggle svg {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.sidebar-main .menu-item.menu-item-has-children > .menu-link[aria-expanded="true"] .dropdown-menu-toggle svg {
    transform-origin: center;
    transform: rotate(180deg);
}



/* Trial Notification - Light Mode */
.trial-status {
    background-color: var(--light-submenu-bg-color); /* Match the lighter grey of the submenu background */
    border: 1px solid var(--light-hover-bg-color); /* Match the hover state background for the border */
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: var(--light-text-color); /* Text color to match general link styling */
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.trial-status h3 {
    font-size: 16px; /* Match the font size of the menu links */
    margin-bottom: 10px;
    color: var(--accent-color); /* Main color to match the hover and active state */
}

.trial-status p {
    font-size: 14px; /* Slightly smaller font for the message */
    margin-bottom: 15px;
    color: var(--light-text-color); /* Text color for readability */
}

.trial-status .upgrade-now {
    display: inline-block;
    background-color: var(--accent-color); /* Main color for the button */
    color: var(--light-bg-color); /* Light background for contrast */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.trial-status .upgrade-now:hover {
    background-color: #7ba73e; /* Slightly darker shade for hover effect */
}

.trial-status .see-plans {
    display: inline-block;
    color: var(--accent-color); /* Main color to match sidebar links */
    text-decoration: none;
    font-weight: bold;
}

.trial-status .see-plans:hover {
    text-decoration: underline;
}

.trial-status .upgrade-now,
.trial-status .see-plans {
    font-size: 14px;
}

/* Trial Notification - Dark Mode */
body.dark-mode .trial-status {
    background-color: var(--dark-submenu-bg-color); /* Match the lighter grey of the submenu background */
    border: 1px solid var(--dark-hover-bg-color); /* Match the hover state background for the border */
    color: var(--dark-text-color); /* White text to match general link styling */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

body.dark-mode .trial-status h3 {
    color: var(--accent-color); /* Main color to match the hover and active state */
}

body.dark-mode .trial-status p {
    color: var(--dark-text-color); /* White text for readability */
}

body.dark-mode .trial-status .upgrade-now {
    background-color: var(--accent-color); /* Main color for the button */
    color: var(--dark-bg-color); /* Dark background for contrast */
}

body.dark-mode .trial-status .upgrade-now:hover {
    background-color: #7ba73e; /* Slightly darker shade for hover effect */
}

body.dark-mode .trial-status .see-plans {
    color: var(--accent-color); /* Main color to match sidebar links */
}


/** Fields **/
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="password"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper textarea:focus {
    outline: none;
    border-color: #8bc24a;
    box-shadow: 0 0 5px rgba(139, 194, 74, 0.7);
}

.spot-heading-centered {
	border-bottom: 0 !important;
}

.spot-heading-centered .gsection_title {
	text-align: center;
	font-size: 2rem;
	margin: 30px 0;
	padding: 0;
}

.hide-messages .validation_message--hidden-on-empty {
	display: none !important;
}

/**
 * Billing
 **/


/**
 * Policyholder progress stat
 **/
.policyholder-progress {
    margin: 20px 0;
	width: 90%;
	margin: 0 auto;
}

.policyholder-progress p {
	margin: 0 !important;
}

.progress-bar-wrapper {
    background-color: #e3e2e2;
    border-radius: 10px;
    height: 15px;
    width: 100%;
    position: relative;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.progress-green {
    background-color: #8bc24a;
}

.progress-orange {
    background-color: #ff9800;
}

.progress-red {
    background-color: #f44336;
}

/**
 * Welcome Message
 **/
/* .welcome-message {
    margin: 0 auto;
    text-align: center;
	width: 90%;
}

.welcome-message h3 {
	margin: 0 !important;
}

.welcome-message p {
	margin: 0 !important;
}

.welcome-message a {
    color: #8bc24a;
    text-decoration: underline;
} */

/** Welcome Message **/
.welcome-message {
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

body.dark-mode .welcome-message {
    background-color: var(--dark-bg-color); /* Matches the dark sidebar background */
    border: 1px solid var(--dark-hover-bg-color);
    color: var(--dark-text-color); /* White text in dark mode */
}

.welcome-message h3 {
    margin-bottom: 5px;
    color: #3c3c3c; /* Accent color for welcome message */
}

.welcome-message p {
    margin: 0;
    font-size: 14px; /* Standard font size for consistency */
    color: #3c3c3c;
}

.welcome-message a {
    color: var(--accent-color); /* Main accent color */
    text-decoration: none; /* Remove underline for clean design */
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.welcome-message a:hover {
    color: #7ba73e; /* Slightly darker accent on hover */
}

.welcome-message a::before {
    content: "\f2c2"; /* Font Awesome icon for user */
    font-family: "Font Awesome 5 Free"; /* Use Font Awesome */
    font-weight: 900;
    margin-right: 8px;
    font-size: 18px;
    transition: margin-right 0.3s ease;
}

.welcome-message a:hover::before {
    margin-right: 12px; /* Slight animation on hover */
}

/* General styling for all read-only input fields */
input[type="email"]:read-only,
input[type="text"]:read-only,
textarea:read-only,
select:read-only {
    background-color: #f0f0f0 !important;
    border: 1px solid #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}



/* Contact Section Container */
.spot-contact-container {
    background-color: var(--light-bg-color);
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    font-family: Arial, sans-serif;
    color: #333333;
}

/* Heading */
.spot-contact-heading h2 {
    font-size: 1.8rem;
    color: #2f2f2f;
    margin-bottom: 20px;
}

/* Contact Item Styling */
.spot-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Icons */
.spot-contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #8bc24a;
	fill: #8bc24a;
}

/* Details */
.spot-contact-details h3 {
    font-size: 1rem;
    color: #555555;
    margin: 0;
}

.spot-contact-details h3 a {
    color: var(--accent-color);
    text-decoration: none;
}

.spot-contact-details h3 a:hover {
    text-decoration: underline;
}
