@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;0,400;0,700;1,300;1,400;1,700&display=swap");

:root {
    /*Colors*/
    --real-black: rgb(7, 7, 7);
    --background: rgb(21, 21, 25);
    --section-grey: rgb(34, 39, 47);
    --section-grey-transparent: rgba(34, 39, 47, 0.8);
    --border-section: rgb(36, 45, 55);
    --mid-grey: rgb(36, 45, 55);
    --border-mid: rgb(55, 62, 73);
    --light-grey: rgb(129, 150, 169);
    --table-grey: rgb(49, 63, 77);
    --text-grey: rgb(218, 218, 218);
    --border-cyan: rgb(10, 93, 79);
    --border-light: rgb(12, 107, 91);
    --secondary-color: rgb(58, 63, 68);
    --third-color: rgb(155, 81, 224);
    --dark-red: rgb(154, 22, 22);
    --light-red: rgb(239, 22, 22);
    --light-green: rgb(14, 232, 195);
    --light-orange: rgb(239, 105, 22);
    --white: rgb(246, 246, 246);
    --break-white: rgb(252, 249, 249);
    --laser-cyanscale: linear-gradient(90deg, var(--background), var(--section-grey) 25%, var(--mid-grey), var(--border-cyan));
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--background);
    font-family: 'Inter', sans-serif;

}

*::-webkit-scrollbar {
    display: none;
}

* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */

}

.container::-webkit-scrollbar {
    background: transparent;
}


header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--background);
}

footer {
    background: black linear-gradient(180deg, rgba(10, 93, 79, 0.6) 15%, var(--background));
    border-top-right-radius: 10vw;
    width: 100%;
    margin-top: 10vh;
}

/*Font*/

.font-xl {
    font-size: 2rem;
}

/* 32px - for main titles (h1) */
.font-lg {
    font-size: 1.5rem;
}

/* 24px - for section titles (h2) */
.font-md {
    font-size: 1.25rem;
}

/* 20px - for subsection titles (h3) */
.font-sm {
    font-size: 1.125rem;
}

/* 18px - for smaller headings (h4) */
.font-base {
    font-size: 1rem;
}

/* 16px - for normal paragraphs */
.font-xs {
    font-size: 0.75rem; /* ≈12px */
    font-weight: normal; /* optional, to reduce weight */
    margin: 0; /* remove default h4 margins */
    line-height: 1.2;
}
.font-s {
    font-size: 0.90rem; /* ≈12px */
    font-weight: normal; /* optional, to reduce weight */
    margin: 0; /* remove default h4 margins */
    line-height: 1.2;
}

@media (max-width: 768px) {
    .font-xl {
        font-size: 1.5rem;
    }

    .font-lg {
        font-size: 1.25rem;
    }

    .font-md {
        font-size: 1.125rem;
    }

    .font-sm {
        font-size: 1rem;
    }

    /* font-base stays 1rem */
}


.white-font {
    color: var(--white);
}

.color-hover-white:hover {
    color: rgb(10, 93, 79);
}

.black-font {
    color: rgb(38, 46, 58);
}

.cyan-font {
    color: rgb(10, 93, 79);
}

.excel-font {
    color: rgb(40, 117, 75);
}

.grey-font {
    color: rgb(192, 192, 192);
}

.green-font {
    color: var(--border-cyan);
}

.red-font {
    color: var(--dark-red);
}


.justify-font {
    text-align: justify;
}

/*Border Gradient Decoration*/

.border-gradient-bottom {
    border: 1px solid;;
    border-image-slice: 1;
    border-image-source: var(--laser-cyanscale);
    border-left: 0;
    border-right: 0;
    border-top: 0;
}


/*Cubes*/

.main-cube {
    background-color: var(--section-grey);
    border-radius: 1vw;
    box-shadow: 1px 1px 3px rgba(36, 45, 55, 0.6); /* Subtle shadow */
}

.main-cube-nbr {
    background-color: var(--section-grey);
    border: 1.5px solid var(--border-section);
}

.main-hover:hover {
    background-color: var(--mid-grey);
}

.bg-white-break {
    background-color: var(--break-white);
}

.bg-grey-break {
    background-color: rgb(252, 249, 249, 0.6);
}

.second-cube {
    background-color: var(--mid-grey);
    border-radius: 1vw;
    border: 1px solid var(--border-mid);

}

.second-cube-purple {
    background-color: rgb(24, 15, 24);
    border-radius: 2vw;
    border: 1.5px solid;
    border-image: linear-gradient(90deg, var(--border-mid), var(--border-section)) 1;
}


.gradient-cube {
    background: var(--section-grey) linear-gradient(90deg, rgba(10, 93, 79, 0.4) 10%, var(--mid-grey));
    border-radius: 1vw;
    border: 1px solid var(--border-mid);
}

.second-cube-nbr {
    background-color: var(--mid-grey);
    border: 1.5px solid var(--border-mid);
}


.color-navbar {
    background-color: var(--background);
    border-bottom: 1.5px solid var(--text-grey);
}

.section-border-bottom-grey {
    border-bottom: 0.5px solid rgba(218, 218, 218, 0.4);
    padding-bottom: 10px;
}

.title-border-bottom-grey {
    border-bottom: gray 0.5px solid;
}

.border-grey {
    border: 1px solid var(--text-grey);
}

.border-white {
    border: 1.5px solid rgb(255, 255, 255);
}

.border-mid {
    border: 1.5px solid var(--border-mid);
}

/*button*/

.p-button {
    background-color: var(--border-cyan);
    border-color: var(--border-cyan);
    color: white;
}

.p-button:hover, .p-button:active, .p-button.active {
    background-color: #168d7a;
    border-color: #168d7a;
}

.s-button {
    background-color: #3a3f44;
    border-color: #3a3f44;
    color: white;
}

.s-button:hover, .s-button:active, .s-button.active {
    background-color: #32363b;
    border-color: #2b2f33;
}


.d-button {
    background: linear-gradient(to right, #6a1b9a, #9b51e0);
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.d-button:hover, .d-button:active, .d-button.active {
    background-color: #8739c9;
    border-color: #7a33b3;
}


.btn-lighter-text {
    font-size: 14px;
    font-weight: bold;
    padding: 2px 24px;
    border-radius: 3px;
    border: none;
    line-height: 1.4;
}

.btn-shine {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: none;
}

.btn-shine::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 70%
    );
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.btn-shine:hover::before {
    transform: translateX(100%);
}


.btn-top {
    color: rgb(255, 215, 0);
    background-color: black;
    border-color: rgb(255, 215, 0); /*set the color you want here*/
}

.btn-top:hover, .btn-top:focus, .btn-top:active, .btn-top.active, .open > .dropdown-toggle.btn-top {
    color: rgb(231, 216, 123);
    background-color: transparent;
    border-color: rgb(231, 216, 123); /*set the color you want here*/
}

.btn-top a {
    text-decoration: none;
    color: rgb(255, 215, 0);
}

.btn-flop {
    color: darkred;
    background-color: black;
    border-color: darkred; /*set the color you want here*/
}

.btn-flop:hover, .btn-flop:focus, .btn-flop:active, .btn-flop.active, .open > .dropdown-toggle.btn-flop {
    color: #863030;
    background-color: transparent;
    border-color: #863030; /*set the color you want here*/
}

.btn-flop a {
    text-decoration: none;
    color: darkred;
}

.btn-avg {
    color: white;
    background-color: black;
    border-color: white; /*set the color you want here*/
}

.btn-avg:hover, .btn-avg:focus, .btn-avg:active, .btn-avg.active, .open > .dropdown-toggle.btn-avg {
    color: white;
    background-color: transparent;
    border-color: white; /*set the color you want here*/
}

.btn-avg a {
    text-decoration: none;
    color: white;
}

/* List */
.decoration-off li a {
    list-style: none
}

.no-scrolls {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.no-scrolls::-webkit-scrollbar {
    display: none;
}

.custom-popover {
    --bs-popover-max-width: 200px;
    --bs-popover-border-color: var(--border-cyan);
    --bs-popover-header-bg: var(--border-cyan);
    --bs-popover-header-color: var(--white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
}

.custom-popover-xxl {
    --bs-popover-max-width: 1000px;
    --bs-popover-border-color: var(--border-cyan);
    --bs-popover-header-bg: var(--border-cyan);
    --bs-popover-header-color: var(--white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}


.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.cursor-pointer {
    cursor: pointer;
}


/* Lazy Autocomplete searchbar*/

.search-index {
    width: 100%;
    margin-bottom: auto;
    margin-top: 20px;
    height: 50px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5vw;
}

.search-input-index {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    margin-top: 5px;
    caret-color: transparent;
    line-height: 20px;
    transition: width 0.4s linear
}

.search-input-index::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 1; /* Firefox */
}

.search-input-index:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}

.search-index {
    position: relative;
}

.search-index .search-input-index {
    padding: 0 10px;
    width: 100%;
    caret-color: #536bf6;
    font-size: 19px;
    font-weight: 300;
    color: black;
    transition: width 0.4s linear;
}


.search-icon-index {
    height: 34px;
    width: 60px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--border-cyan);
    font-size: 20px;
    bottom: 30px;
    position: relative;
    border-radius: 5px;
}

.search-icon-index:hover {
    color: #fff !important;
}


.autocomplete-items {
    position: absolute;
    justify-content: center;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /* Position the autocomplete items to be the same width as the container: */
    top: 100%;
    width: 90%;
    left: 5%;
    right: 5%;
    background-color: white; /* White background color */
    border-radius: 8px; /* Rounded borders */
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: transparent;

}

.autocomplete-items .item-content {
    display: flex;
    align-items: center;
}

.autocomplete-items .item-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    background-size: cover;
    background-color: black;
}

.other-section-search {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 5vw;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    color: rgb(38, 46, 58);
    text-decoration: none;
}

.other-section-search:hover {
    background-color: var(--border-cyan);
    color: white;
}


.company-item {
    display: flex;
    align-items: center;
}

.company-item:hover {
    /* When hovering over an item: */
    background-color: #e9e9e9;
}

.item-logo {
    width: 60px; /* Adjust the width as needed */
    height: 60px; /* Adjust the height as needed */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.company-info {
    flex-grow: 1;
}


.table-striped {
    background-color: var(--mid-grey); /* Background color */
}

.table-striped th,
.table-striped td {
    border: 0.08vw solid var(--border-mid); /* Border color */
    padding: 0.1vw;
    text-align: center;
    align-items: center;
}

.blurred-lazy {
    filter: blur(10px) !important;
}

.blurred-lazy-light {
    filter: blur(3.5px) !important;
}

.blurred-lazy-lighter {
    filter: blur(2px) !important;
}

.table-dark tbody tr:nth-of-type(odd) {
    background-color: var(--mid-grey) !important; /* Custom color for odd rows */
}

.table-dark tbody tr:nth-of-type(even) {
    background-color: var(--light-grey) !important; /* Custom color for even rows */
}

@media (min-width: 900px) {
    .content-container {
        width: 75%;
        margin-left: 12.5%;
        margin-right: 12.5%;
        margin-top: 4vh;
    }
}

@media (max-width: 900px) {
    .content-container {
        width: 75%;
        margin-left: 12.5%;
        margin-right: 12.5%;
        margin-top: 4vh;
    }
}


@media (max-width: 575.98px) {
    .content-container {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 3vh;
    }

}

.blurred-overlay {
    filter: blur(5px);
}

#lockModalContent {
    border: solid 1px var(--border-cyan);
    background-color: rgba(0, 0, 0, 0);
}