

:root {
    --background-color: #110E26;
    --secondary-color: #1B163C;
    --primary-color: #2F2768;
    --accent-color: #4A3DA4;
    --light-primary-color: #594DA8;
    --ternary-color: #9188C9;
    --text-color: #D7D2EE;
    --highlighted-color: #E5E3F2;
    --exclusive-color: #4DA167;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--accent-color), 0 0 0 0.25rem #258cfb;
}

.btn-link {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    padding-top: 7px;
}

html {
    position: relative;
    font-size: 16px;
    min-height: 100%;
    background-color: var(--background-color);
}

body {
    margin-bottom: 60px;
    background-color: var(--background-color);
    border-color: var(--background-color);
}

header {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color);
}

.product-item {
    width: min-content;
    max-width: 256px;
    margin-right: 25px;
}

.product-item img {
    max-width: 256px;
}

.product-category-section {
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    overflow-x: scroll;
}

.product-master-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.squish-text {
    overflow-y: scroll;
    height: 100px;
}

/*Scrollbar*/
/* For the scrollbar track (background) */
::-webkit-scrollbar {
    /* width: 12px; width of the entire scrollbar */
    /* height: 12px; height of the entire scrollbar */
    background-color: var(--secondary-color); /* scrollbar background color */
}

/* For the scrollbar thumb (the sliding handle) */
::-webkit-scrollbar-thumb {
    background-color: var(--accent-color); /* thumb color */
    border-radius: 0px; /* roundness of the thumb */
    height: 50px;
    border: 3px solid var(--ternary-color); /* creates padding around the thumb */
    transition: background-color 1s ease, border-color 1s ease;
}

    /* For the scrollbar thumb when it's hovered or active */
    ::-webkit-scrollbar-thumb:hover {
        border-color: var(--highlighted-color);
        background: var(--ternary-color); /* color when hovered */
    }

/* For the scrollbar button (arrows at the ends) */
::-webkit-scrollbar-button {
    height: 6px;
    background-color: var(--accent-color); /* button color */
}
/*End Scrollbar*/

.navbar-brand {
    padding: 0px;
    margin-left: -5%;
}

.navbar-container {
    font-size: 24px;
    font-weight: 500;
    font-family: Gadugi;
    min-height: max-content;
    background-color: var(--background-color);
}

button {
    background-color: var(--accent-color);
    color: var(--highlighted-color);
}

.nav-item {
    min-height: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
}

    .nav-item:hover {
        background-color: var(--secondary-color);
        color: var(--highlighted-color);
    }

nav-link {
    text-align: center;
    vertical-align: middle;
    align-self: center;
    height: 100%;
}

p, h1, h2, h3, h4, h5, h6, ol, ul {
    color: var(--text-color);
}

.navbar-toggleable-sm {
    padding: 0rem;
}

.navbar-right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
}

.nav-link {
    position: relative;
}

.nav-link svg {
    height: 1.4em;
}

/* Initial state for svg and span inside .nav-link */
.nav-link svg, .nav-link span {
    color: var(--primary-color);
    fill: var(--text-color);
    transition: fill 0.3s ease, color 0.3s ease;
}

/* Change fill color when parent .nav-link is hovered */
.nav-link:hover svg, .nav-link:hover span {
    fill: var(--accent-color);
    color: var(--secondary-color);
}


.nav-link:active svg, .nav-link:active span {
    fill: var(--light-primary-color);
    color: var(--text-color);
}

.nav-link span {
    position: absolute;
    left: 13px;
    top: 9px;
    font-size: 12px;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    width: 30.71px;
}

.navbar {
    background-color: var(--background-color);
    border-bottom: var(--background-color);
}

.navbar-toggler {
    background-color: var(--primary-color);
    padding-top: 3px;
    padding-bottom: 5px;
}

.navbar-toggler:hover {
    background-color: var(--accent-color);
}

.shrink-icon {
    width: 32px;
}

.border-top-dark {
    border-top: 1px solid var(--accent-color);
}

.text-grey {
    color: var(--text-color);
}

.dropdown-custom-dark {
    border: 0px;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--text-color);
}

.purple-link {
    text-decoration-line: underline;
    text-decoration-color: var(--accent-color);
    color: var(--ternary-color);
}

.purple-link:hover {
    cursor: pointer;
    color: var(--accent-color);
    text-decoration-color: var(--primary-color);
}

.CommPreferencesCheckbox {
    position: absolute;
    top: 8px;
    left: 56px;
}

.CommPreferencesContainer {
    position: relative;
}

.disclaimer-text {
    color: var(--text-color);
    font-size: .8rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 90%;
}

.account-design-card {
    position: relative;
    flex: none; /* this will prevent them from growing or shrinking */
    box-shadow: 0 4px 6px var(--primary-color); /* optional shadow for cards */
    transition: transform 0.3s; /* smooth hover effect */
    width: 128px; /* Original size */
    height: 128px; /* Original size */
}

.account-design-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* space between items */
    justify-content: center;
    width: 45%; /* or whatever you like, can also be fixed like 1200px */
    height: min-content;
}

.account-mini-header {
    width: 100%;
    margin-left: 12px;
}

/* CONTACT US FORM */
/* Add this to your stylesheet */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-dialog {
    margin: 10% auto; /* 10% from the top and centered */
}

.modal-content {
    padding: 20px;
}

.card-body {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
}

.card-title {
    margin-bottom: 8px;
}

.cardButton {
    margin-left: 8px;
}


/* Spinner Styles */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #22a6b3;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

/* Ensure the button is positioned relatively and use flexbox to center content */
.loading-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Hide the spinner initially */
    .loading-button .spinner {
        display: none;
    }

    /* Show the spinner when loading */
    .loading-button.loading .spinner {
        display: inline-block;
        position: absolute;
    }

    /* Optionally dim the button text when loading */
    .loading {
        opacity: 0.5; /* Dim the text when loading */
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.grey-circle {
    position: absolute;
    background-color: gray;
    opacity: .7;
    border-radius: 100%;
    transition: opacity ease 2s
}

    .grey-circle:hover {
        opacity: .9;
    }


/* Layout.cshtml.css*/
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.spaced-holder div, .spaced-holder h1 {
    margin-bottom: 1.5rem;
}

.checkbox {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
}

    .checkbox p {
        width: max-content;
    }


/* FREE POLICY COOKIE CONSENT ALTERATIONS */
#freeprivacypolicy-com---nb .cc-nb-main-container .cc-nb-text-container p {
    visibility: hidden;
}

