﻿:root {
    --white: #FFFFFF;
    --dark-blue: #03103D;
    --light-blue: #00BAFF;
    --fuschia: #8F00FF;
    --fuschia-darker: #9002FF;
    --light-grey: #DDDDDD;
    --bg-grey: #EDEDED;
    --grey: #555555;
    --black: #000000;
    --red: #AA0014;
    --red-bright: #FF0000;
    --disabled-btn-color: #CACACA;
    --bold-font-weight: 700;
    --soft-grey: #ECECEC;
    --theme-gradient: linear-gradient(to left, #05D8D5 0%, #9A309D 100%);
    scroll-behavior: smooth;
}

div, input, label, a, button, section, p, h1, h2, h3, h4, h5, h6, ul, ol, li, nav, header {
    box-sizing: border-box;
}

a, button {
    cursor: pointer;
}

html, body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: nunito-sans;
    font-weight: var(--normal-font-weight);
}

body {
    background-color: var(--bg-grey);
    font-family: "Nunito Sans", sans-serif;
}

    body.no-scroll {
        overflow: hidden;
    }

ul {
    list-style-type: none;
    padding: 0;
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.underline {
    text-decoration: underline;
}

.bold {
    font-weight: 900;
}

.mt-5 {
    margin-top: 5px !important;
}

.text-center {
    text-align: center;
}

a[disabled] {
    opacity: .7;
    pointer-events: none;
}

.bb-primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: fit-content;
    color: var(--white);
    background-color: var(--fuschia);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: clamp(18px,1.5vw,25px);
    border: none;
    outline: none;
    text-align: center;
}

    .bb-primary-btn:disabled {
        pointer-events: none;
        cursor: default;
        background-color: var(--disabled-btn-color);
    }

.bb-primary-title {
    font-size: clamp(24px,1.5vw,36px);
    color: var(--fuschia);
    font-weight: var(--bold-font-weight);
    line-height: 35px;
}

.bb-secondary-title {
    font-size: clamp(20px,1.3vw,30px);
    color: var(--light-blue);
    font-weight: var(--bold-font-weight);
    line-height: 35px;
}

/*header*/
nav, header {
    width: 100%;
    margin: 0;
    display: flex;
}

header {
    /*    position: fixed;*/
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 20px;
    align-items: center;
    height: 115px;
    margin-bottom: -115px;
    transition: all ease .3s;
    justify-content: end;
}

    header.invert-nav-colors {
        background-color: var(--dark-blue);
    }

        header.invert-nav-colors .bb-login-btn {
            background-color: var(--white);
            color: var(--dark-blue);
        }

.bb-logo {
    width: clamp(120px,14vw,220px);
    margin-inline: max(8vw,20px);
}

header .bb-navbar {
    flex: 0.85;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-blue);
    border-radius: clamp(30px,2vw,50px);
    color: var(--white);
    height: fit-content;
}

header > .dropdown {
    display: none;
}

.bb-navbar ul {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(10px,2vw,35px);
    width: 100%;
    height: 55px;
    margin: 0;
    padding-left: max(2vw,15px);
}

    .bb-navbar ul a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
        padding-block: clamp(10px,1vw,20px);
        text-align: center
    }

header .bb-navbar ul a span:first-child {
    display: none;
}

.bb-search {
    position: relative;
    right: -1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    height: 100%;
    background-color: var(--light-blue);
    border-radius: 50%;
    padding-inline: 20px;
}

.bb-login-btn, .bb-logout-btn {
    height: 55px;
    border: none;
    color: var(--white);
    padding-inline: clamp(15px,23vw,30px);
    background-color: var(--dark-blue);
    border-radius: 30px;
    font-weight: 700;
    transition: all ease .3s;
}

header .bb-login-btn {
    margin-inline: max(8vw,20px);
}

.bb-logout-btn {
    background-color: var(--red);
}

.bb-logo img {
    width: 100%;
}

.bb-burger-menu {
    display: none;
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

    .bb-burger-menu img {
        width: 33px;
        height: 22px;
    }

.bb-sparkle {
    width: 33px;
    height: 30px;
}

/*Flyout Menu*/
.flyout-menu.expanded {
    left: 0;
}

.show-only-on-mobile {
    display: none;
}

.flyout-menu-backdrop {
    display: none;
    position: fixed;
    z-index: 4;
    inset: 0;
    background-color: rgba(0,0,0,.52);
}

.flyout-menu {
    position: absolute;
    width: 300px;
    left: -300px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    padding: 60px 15px 80px;
    background-color: var(--white);
    border-radius: 0 50px 0 0;
    min-height: 100vh;
    overflow-y: scroll;
    transition: all ease .3s;
}

.bb-close-burger-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    border: 0;
    background-color: transparent;
}

.flyout-menu hr {
    width: 100%;
    height: 1px;
    background-color: var(--light-grey);
    border: none;
    margin-block: 20px 30px;
}

.flyout-menu .bb-navbar ul {
    flex-direction: column;
    align-items: flex-start;
    height: unset;
}

.bb-navbar ul li.active a {
    color: white;
    font-weight: 900;
}

.flyout-menu .bb-navbar ul li.active a {
    color: var(--fuschia);
    font-weight: 900;
}

.flyout-menu .bb-navbar ul a {
    color: var(--dark-blue);
}

    .flyout-menu .bb-navbar ul a img {
        width: 24px;
    }

.flyout-menu .bb-navbar {
    flex: 1;
    margin-bottom: 25px;
}

/*.flyout-menu .bb-navbar li:last-child{
        display:none;
    }*/

.bb-invalid-sub-container {
    margin-top: clamp(75px, 15vw, 120px);
    gap: 10px;
    height: calc(100% - 115px);
    padding: 20px 30px 20px 30px;
    background: var(--white);
}

.flyout-menu .bb-logout-btn, .flyout-menu .bb-login-btn {
    display: block;
    margin-inline: auto;
    height: 45px;
    margin-top: auto;
    margin-bottom: 25px;
}

.bb-user-profile {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-inline: max(4vw,10px);
    color: var(--dark-blue);
    cursor: pointer;
    transition: all ease .3s;
}

.bb-user-profile-bubble-title {
    cursor: pointer;
}

header.invert-nav-colors .bb-user-profile-info {
    color: var(--white);
}

.bb-user-profile-img {
    --size: 60px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    overflow: hidden;
}

.bb-user-profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 20px;
}

    .bb-user-profile-info h4 {
        margin: 0;
    }

.bb-user-profile-bubble {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    /*width: 100%;*/
    padding: 15px 15px 25px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(168, 168, 168, 0.25);
    text-align: center;
    cursor: default;
}

.bb-user-profile-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bb-user-profile-bubble .bb-logout-btn {
    display: block;
    margin-inline: auto;
    height: 45px;
}

.bb-user-profile-bubble:before {
    position: absolute;
    top: -6px;
    left: calc(50% - 6px);
    content: '';
    display: block;
    height: 12px;
    width: 12px;
    transform: rotate(45deg);
    background-color: var(--white);
}

.bb-internal-header {
    background-color: white;
    box-shadow: 0px 4px 4px 0px rgba(168, 168, 168, 0.25);
}

.scrollable {
    overflow: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.limit-text-2-lines {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.non-visible {
    visibility: hidden;
}

/* BB modal */

.bb-modal {
    display: none;
    position: fixed;
    z-index: 3;
    inset: 0;
    width: 100%;
    min-height: 500px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    padding-block: 60px;
    box-sizing: border-box;
    overflow-y: auto;
}

.bb-modal-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    width: 35%;
    padding-block: 40px;
    box-shadow: 0px 3px 78px #00000029;
    margin: auto;
    top: 20%;
}

bb-video-modal {
    padding-block: 20px;
}

.bb-video-modal .bb-modal-content-wrapper {
    top: unset;
    width: 60%;
}

.bb-video-modal .bb-video-wrapper {
    height: 650px;
    padding: 20px 10px 20px 10px;
}

.bb-modal-close-btn img {
    width: clamp(28px, 2.2vw, 44px);
    height: clamp(28px, 2.2vw, 44px);
}

.bb-modal-close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px 15px 0 0;
}

.bb-close-icon {
    width: 44px;
    height: 44px;
}

.bb-arrow-icon {
    width: 14px;
    height: 8px;
}

.bb-light-blue-text {
    color: var(--light-blue);
}

.bb-fuschia-color {
    color: var(--fuschia);
}

@media screen and (max-width: 1600px) {
    .bb-video-modal .bb-video-wrapper {
        height: 550px;
    }

    .bb-video-modal {
        padding-block: 30px;
    }
}

@media screen and (max-width: 1600px) {
    header .bb-navbar {
        flex: 1;
    }

    .bb-logo {
        margin-inline: max(4vw,16px);
    }
}

@media screen and (max-width:1050px) {
    .bb-login-btn, .bb-user-profile {
        margin-inline: unset;
        margin-left: 20px;
    }

    .bb-logo {
        margin-inline: unset;
        margin-right: 20px;
    }

    .bb-modal-content-wrapper {
        width: 55%;
    }

    .bb-video-modal .bb-modal-content-wrapper {
        width: 80%;
    }

    .bb-video-modal .bb-video-wrapper {
        height: 400px;
        padding: 0px 10px 0px 10px;
    }

    header .bb-navbar, header .bb-login-btn, header .bb-user-profile {
        display: none;
    }

    .bb-burger-menu {
        display: block;
    }

    .bb-navbar {
        flex-direction: column !important;
        align-items: center;
    }

        .bb-navbar .dropdown {
            display: none;
        }

    header {
        padding-block: 0;
        height: 70px;
        margin-bottom: -70px;
    }

    .bb-logo {
        margin-inline: auto;
    }
}

@media screen and (max-width:768px) {
    .show-only-on-mobile {
        display: block;
    }

    .bb-modal-content-wrapper {
        width: 75%;
    }

    .bb-video-modal .bb-modal-content-wrapper {
        width: 95%;
    }

    .bb-video-modal .bb-video-wrapper {
        height: 360px;
    }
}

@media screen and (max-width:480px) {
    .bb-modal-content-wrapper {
        width: 95%;
    }

    .bb-video-modal .bb-modal-content-wrapper {
        width: 98%;
    }

    .bb-video-modal .bb-video-wrapper {
        height: 320px;
    }
}

.footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 0;
    /*position: fixed;*/
    width: 100%;
    bottom: 0;
    box-shadow: 0px -2px 10px rgb(0 0 0 / 7%); /* Added box shadow */
    z-index: 100;
}

    .footer p {
        margin: 0;
        font-size: 14px;
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Products */
.bb-products-container {
    display: flex;
    gap: clamp(50px, 5vw, 80px);
    margin: 24px;
    margin-bottom: 0;
    padding-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.bb-product {
    background: var(--bg-grey);
    display: flex;
    flex-direction: column;
    width: 360px;
    padding: 33px 50px;
    border-radius: 16px;
    font-weight: 500;
    color: #2D2D2D;
    gap: 24px;
    height: fit-content;
    transition: all .3s ease;
    border: 3.33px solid transparent;
}

    .bb-product.hoverable {
        cursor: pointer;
    }

    .bb-product.disabled {
        pointer-events: none;
        opacity: .4;
    }

    .bb-product.hoverable:hover,
    .bb-product.selected {
        border-color: #5A88BD;
    }

        .bb-product.hoverable:hover .bb-product-title,
        .bb-product.selected .bb-product-title {
            color: #5A88BD;
        }

.bb-product-listing-home .bb-product {
    background: var(--white);
}

.bb-product-title {
    margin: 0;
    font-size: 20px;
}

.bb-product-pricing {
    display: flex;
    gap: 2px;
    align-items: end;
}

    .bb-product-pricing > p {
        margin: 0;
        font-size: 46px;
    }

    .bb-product-pricing > span {
        font-size: 13px;
        color: #747A7B;
    }

.bb-product-features-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bb-product-feature {
    display: flex;
    gap: 22px;
    align-items: center;
}

    .bb-product-feature > span {
        font-weight: 400;
        font-size: 16px;
        flex: 1;
    }

.bb-product-listing {
    margin-top: clamp(75px, 15vw, 120px);
    padding: 0 !important;
    padding-top: 28px !important;
}

    .bb-product-listing .bb-products-container {
        margin-bottom: 0;
    }

.bb-unsubscribe-btn,
.bb-delete-my-account-btn {
    border: none;
    text-align: start;
    font-weight: 700;
    color: var(--red-bright);
    font-size: 18px;
    cursor: pointer;
}

.bb-common-page-container {
    background-color: white;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: clamp(95px, 15vw, 140px);
    padding-bottom: 22px;
    padding-inline: 0 !important;
    min-height: calc(100% - 60px);
}

    .bb-common-page-container:has(.cc-terms-iframe) {
        padding-top: 115px;
        padding-bottom: 0;
    }

@media screen and (max-width: 1050px) {
    .bb-common-page-container:has(.cc-terms-iframe) {
        padding-top: 70px;
    }
}

body:has(.cc-terms-iframe) footer {
    display: none;
}

.bb-empty-page-title {
    font-weight: bold;
    text-align: center;
    padding: 12px;
    margin: 32px;
}

.bb-custom-checkbox label {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    display: inline-block;
    margin-inline-end: 10px;
    position: relative;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

[for="terms-checkbox"] {
    cursor: pointer;
}

.bb-custom-checkbox input:checked + label::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 6px;
    height: 12px;
    border: solid var(--fuschia);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.bb-custom-checkbox input:checked + label {
    border-color: var(--fuschia);
}

@media screen and (max-width: 600px) {
    .bb-products-container {
        gap: 35px;
    }

    .bb-product {
        padding: 24px 36px;
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .bb-product {
        padding-inline: 30px;
    }
}
