/* GENERAL SECTION*/

:root {
    --color-secondary: #dedede;
    --color-light: #ecebeb;
    --color-dark: #242424;
    --color-success: #77d400;
    --color-secondary-rgb: 222, 222, 222;
    --color-light-rgb: 214, 214, 214;
    --color-dark-rgb: 36, 36, 36;
}

body {
    color: var(--color-dark);
}

body:has(> .animated-gradient):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(159, 159, 159, 0.1);
    filter: blur(5px);
}


body.no-login div#content {
    position: relative;
    min-height: calc(100vh - 166.19px);
    display: flex;
    align-items: center;
    justify-content: center;
}

div:has(> .animated-gradient) {
    color: white;
}


.row:only-child {
    padding-bottom: 0;
}

@media (max-width: 999px) {
    .col-12:not(:only-child):not(:last-child) {
        margin-bottom: 1rem;
    }
}

/* GENERAL SECTION END*/

/* HEIGHTS SECTION */

.h-0 {
    height: 0;
}

.h-250 {
    height: 250px;
}

.min-h-300 {
    min-height: 300px;
}

.min-h-auto {
    min-height: auto;
}

/* HEIGHTS SECTION END */

/* WIDTHS SECTION */

.w-0 {
    width: 0;
}

.w-60 {
    width: 60%;
}

/* WIDTHS SECTION END */

/* BACKGROUND SECTION */

.bg-secondary {
    background-color: var(--color-secondary) !important;
    color: var(--color-dark) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
    color: white !important;
}

.bg-light {
    background-color: var(--color-light) !important;
    color: var(--color-dark) !important;
}

/* BACKGROUND SECTION END */
/* text SECTION END */

.text-light {
    color: var(--color-light) !important;
}

.text-light .form-control {
    color: var(--color-light) !important;
}

.text-light .form-control::placeholder {
    color: var(--color-light) !important;
}

/* text SECTION END */

/* BUTTONS SECTION */
.btn {
    font-family: Syne, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    border-radius: 10px;
    padding: 10px 18px;
    text-align: center;
    text-transform: uppercase;
}

.btn.btn-sm {
    font-size: 12px;
    height: auto;
    padding: 5px 10px;
}

.btn.btn-lg {
    font-size: 18px;
    padding: 14px 18px;
    min-width: 200px;
}

@media (max-width: 999px) {
    .btn-lg {
        min-width: none;
    }
}

.btn-dark {
    --bs-btn-color: var(--color-light);
    --bs-btn-hover-bg: #484848;
    --bs-btn-hover-border-color: #484848;
    --bs-btn-hover-color: white;
    --bs-btn-bg: var(--color-dark);
    --bs-btn-border-color: var(--color-dark);
    --bs-btn-focus-shadow-rgb: 97, 149, 239;
    --bs-btn-active-color: white;
    --bs-btn-active-bg: #606060;
    --bs-btn-active-border-color: #606060;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #707070;
    --bs-btn-disabled-bg: var(--color-dark);
    --bs-btn-disabled-border-color: var(--color-dark);
}

.btn-outline-dark {
    --bs-btn-color: var(--color-dark);
    --bs-btn-border-color: var(--color-dark);
    --bs-btn-hover-color: var(--color-light);
    --bs-btn-hover-bg: var(--color-dark);
    --bs-btn-hover-border-color: var(--color-dark);
    --bs-btn-focus-shadow-rgb: 52, 58, 64;
    --bs-btn-active-color: var(--color-light);
    --bs-btn-active-bg: var(--color-dark);
    --bs-btn-active-border-color: var(--color-dark);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-dark);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-dark);
    --bs-gradient: none;
}

.btn-light {
    --bs-btn-color: var(--color-dark);
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-hover-color: var(--color-dark);
    --bs-btn-bg: var(--color-light);
    --bs-btn-border-color: var(--color-light);
    --bs-btn-focus-shadow-rgb: 97, 149, 239;
    --bs-btn-active-color: var(--color-dark);
    --bs-btn-active-bg: white;
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-dark);
    --bs-btn-disabled-bg: #aeaeae;
    --bs-btn-disabled-border-color: #aeaeae;
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-success);
    --bs-btn-border-color: var(--color-success);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #66b700;
    --bs-btn-hover-border-color: #66b700;
    --bs-btn-focus-shadow-rgb: 40, 195, 138;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #66b700;
    --bs-btn-active-border-color: var(--color-success);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-success);
    --bs-btn-disabled-border-color: var(--color-success);
}

/* BUTTONS SECTION END*/
/* HOME HEADER ELEMENT SECTION */
.home-header-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 81px;
    z-index: 1;
    max-height: 651px;
}

.home-header-wrapper .header [class*="col"]:first-child {
    margin-bottom: 70px !important;
}

.home-header-wrapper .header [class*="col"]:first-child > *:not(:last-child) {
    margin-bottom: 2.5rem;
}

/* HOME HEADER ELEMENT SECTION END */
/* HOME FEATURES SECTION*/
.home-features-wrapper {
    margin-top: 200px;
    margin-bottom: 100px;
}

.home-features-wrapper .img-wrapper img {
    width: 150%;
    position: relative;
    float: right;
    height: auto;
}

.home-features-wrapper .description-wrapper h2 {
    max-width: 240px;
    font-family: Syne, sans-serif;
    font-size: 42px;
    line-height: 100%;
    font-weight: 700;
}

.home-features-wrapper .description-wrapper .col {
    margin-bottom: 0.5rem;
}

.home-features-wrapper .description-wrapper span {
    margin-right: auto;
    font-weight: 600;
    font-size: 16px;
    font-family: Syne, sans-serif;
    display: inline-block;
}

.home-features-wrapper .description-wrapper span:first-letter {
    text-transform: capitalize;
}

.home-features-wrapper .description-wrapper p {
    font-size: 15px;
    font-weight: 500;
    padding: 2rem 0;
}

/* HOME FEATURES SECTION END*/
/* OFFERS ELEMENT SECTION */

.offers-wrapper {
    padding: 55px 0;
}

.offers-wrapper .col-12.col-xl-3 {
    padding: 1rem 2rem;
}

.offers-wrapper .col-12.col-xl-3 [class*="col"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offers-wrapper h6 {
    font-family: Syne, sans-serif;
    line-height: 100%;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase !important;
}

/* OFFERS ELEMENT SECTION END */

/* TITLE HEADER ELEMENT SECTION */
.page-header-wrapper {
    padding-top: 85px;
    padding-bottom: 42px;
}

.page-header-wrapper h1 {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.page-header-wrapper img {
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
}

/* TITLE HEADER ELEMENT SECTION END*/
/* BRAND SLIDER WRAPPER SECTION*/

.brand-slider-wrapper h2 {
    font-family: Syne, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;

    max-width: 701px;
    text-align: center;
    text-transform: uppercase;
}

.brand-slider-wrapper .splide img {
    max-width: 75%;
}

.brand-slider-wrapper .btn {
    padding: 14px 45px;
}

/* BRAND SLIDER WRAPPER SECTION END*/

/* HOME DATASETS WRAPPER SECTION */

.home-dashboard-datasets-wrapper .title-wrapper {
    text-align: center;
    text-transform: uppercase;
}

.home-dashboard-datasets-wrapper .description-wrapper > div > .small:first-child {
    max-width: 390px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-align: center;
    margin: 0 auto;
}

/* HOME DATASETS WRAPPER SECTION END */

/* SALES MESSAGE FORM ELEMENT SECTION */

.sales-wrapper {
    position: relative;
    overflow: hidden;
    background-image: url("/img/public/World_map_with_points.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sales-wrapper .sales-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.sales-wrapper .sales-card .contact-wrapper {
    display: flex;
    flex-direction: column;
    color: white;
}

.sales-wrapper .sales-card .contact-wrapper > *:last-child {
    color: var(--color-secondary);
}

.sales-wrapper .sales-card .contact-wrapper > h2 {
    font-family: Syne, sans-serif;
    font-size: 40px;
    max-width: 488px;
    font-weight: 500;
}

.sales-wrapper .sales-card .form-wrapper .form-control {
    display: block;
    width: 100%;
    font-size: 14px;
    background-color: transparent;
    color: white;
    border: none;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    outline: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: rgba(var(--color-light-rgb), 0.65);
    transform: translateY(-1rem) translateX(-0.6rem);
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
    background-color: var(--color-dark);
}

.sales-wrapper .sales-card .form-wrapper .form-control:focus,
.sales-wrapper .sales-card .form-wrapper textarea.form-control:focus {
    box-shadow: none;
}

.sales-wrapper .sales-card .form-wrapper .form-control:hover {
    box-shadow: none;
}

.sales-wrapper .sales-card .form-wrapper label {
    color: rgba(var(--color-light-rgb), 0.65);
    font-size: 12px;
    padding: 1.5rem 1.1rem;
}

.sales-wrapper .sales-card .form-wrapper .form-check-input {
    border-radius: 25%;
}

.sales-wrapper .sales-card .form-wrapper .form-check-input:checked {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.sales-wrapper .sales-card .form-wrapper .form-check-label {
    height: 100%;
    font-size: 12px;
    padding: 0;
    align-content: center;
}

.sales-wrapper .sales-card .form-wrapper .form-check-label a {
    color: white;
}

.sales-wrapper .sales-card .form-wrapper .form-check-input:focus {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.sales-wrapper .sales-card .form-wrapper .form-check-input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.sales-wrapper .sales-card .form-wrapper .btn {
    width: 100%;
    padding: 0.35rem 1.25rem;
    font-size: 16px;
    font-weight: 600;
}

/* SALES MESSAGE FORM ELEMENT SECTION END */

/* SWITCH-MONTHLY-YEAR WRAPPER ELEMENT SECTION */
.switch-monthly-year-wrapper .form-switch,
.switch-monthly-year-wrapper .form-switch > input {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.switch-monthly-year-wrapper input,
.switch-monthly-year-wrapper label {
    cursor: pointer;
}

.switch-monthly-year-wrapper .year-save {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
}

.switch-monthly-year-wrapper .form-check-input {
    width: 92px;
    height: 41px;
    flex-basis: 92px;
    background-color: rgb(255, 255, 255);
    border-radius: 41px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    border: none;
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--color-dark-rgb), 1) !important;
}

.switch-monthly-year-wrapper .form-check-input:checked,
.switch-monthly-year-wrapper .form-check-input:checked[type="checkbox"] {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255, 1)'/%3e%3c/svg%3e") !important;
}

.switch-monthly-year-wrapper .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(36, 36, 36, 1)'/%3e%3c/svg%3e") !important;
}

.switch-monthly-year-wrapper .form-check-input:focus {
    outline: none;
    border: none;
}

.switch-monthly-year-wrapper .form-check-input:checked {
    background-color: var(--color-dark);
    box-shadow: none !important;
    border-color: transparent;
}

.switch-monthly-year-wrapper label {
    font-size: 21px;
    font-weight: 700;
    color: black;
    line-height: 1;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
}

.year-save {
    background-color: #77d400;
    color: white;
    font-weight: 400;
    font-size: 18px;
}

/* SWITCH-MONTHLY-YEAR WRAPPER ELEMENT SECTION END */
/* BUNDLE CARD ELEMENT SECTION*/

.bundle-link {
    text-decoration: none;
}

.bundle-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    text-decoration: none;
    color: var(--color-light);
    max-height: 534px;
    height: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.5s;
}

.bundle-card > * {
    position: relative;
}

.bundle-card:hover {
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
}

.bundle-card.bundle-featured {
    position: relative;
    background-size: cover;
    background-position: center;
}

.bundle-card.bundle-featured::before {
    content: "";
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: black;
}

.bundle-card .bundle-card-header {
    max-height: 33.7%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0 2rem;
    text-align: center;
}

.bundle-card:not(.bundle-featured) .bundle-card-header {
    color: var(--color-dark);
}

.bundle-card .bundle-card-body > * {
    position: relative;
}

.bundle-card .bundle-card-header h3 {
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.bundle-card .bundle-card-body {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 31px 0 0 0;
    max-height: 66.3%;
    height: 354px;
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.5s;
}

.bundle-card .bundle-card-body > *:not(:last-child) {
    padding: 0 10px;
}

.bundle-card.bundle-featured:hover .bundle-card-body {
    color: white;
}

.bundle-card.bundle-featured .bundle-card-body::before {
    content: "";
    border: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    opacity: 1;
    /* Ensure opacity is 1 initially */
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect */
.bundle-card.bundle-featured:hover .bundle-card-body::before {
    max-height: 22%;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    /* Delay opacity after max-height */
}

/* Reverse Effect on Hover Out */
.bundle-card.bundle-featured .bundle-card-body::before {
    opacity: 1;
    max-height: 100%;
    transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    /* Delay max-height after opacity */
}

.bundle-card.bundle-featured:hover .price-area-wrapper::before {
    opacity: 0.9;
}

.bundle-card.bundle-featured .price-area-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-secondary);
    transition-property: max-height, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 5s;
}

.bundle-card .bundle-card-body > div:has(p),
.bundle-card .bundle-card-body > div > p {
    display: block;
    font-family: Poppins, sans-serif;
    text-align: center;
    height: 155px;
    /* Adjust this value as needed */
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin: 0;
}

.bundle-card.bundle-featured .btn {
    background: var(--color-dark);
    color: var(--color-light);
    font-size: 16px;
    transition: max-height, 05s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.5s;
}

.bundle-card.bundle-featured:hover .btn {
    background: var(--color-light);
    color: var(--color-dark);
}

.bundle-card .price-area-wrapper {
    width: 100%;
    font-family: Poppins, sans-serif;
    color: black !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.bundle-card.bundle-featured .price-area-wrapper > * {
    z-index: 3;
    position: relative;
}

.bundle-card .price-area-wrapper {
    padding: 10px 0;
}

.bundle-card .price-area-wrapper .text {
    font-size: 21px;
    font-weight: 300;
    line-height: 100%;
    white-space: nowrap;
    margin-right: 10px;
}

.bundle-card .price-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-card .price-area > * {
    vertical-align: baseline;
}

.bundle-card .price-area .sale-price {
    font-size: 38px;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 10px;
}

.bundle-card .price-area .regular-price {
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    text-decoration: line-through;
    color: #fc512b;
    margin-right: 10px;
}

.bundle-card .price-area .month-indicator {
    font-size: 18px;
}

/* BUNDLE CARD ELEMENT SECTION END */

/* HOME BUNDLES WRAPPER SECTION*/
.featured-bundles-wrapper {
    position: relative;
    padding-top: 2rem;
    width: 100%;
}

.featured-bundles-wrapper .bundles-area {
    margin-bottom: -250px;
    z-index: 2;
    overflow-x: hidden;
}

.featured-bundles-wrapper .title-wrapper {
    text-align: center;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
}

.featured-bundles-wrapper .title-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
}

.featured-bundles-wrapper .title-wrapper span {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .featured-bundles-wrapper .splide__slide .splide__slide__container {
        transition: transform 0.3s ease-in-out;
        transform: scale(0.8);
    }

    .featured-bundles-wrapper .splide__slide {
        z-index: 1;
    }

    .featured-bundles-wrapper .splide__track {
        overflow: visible;
        justify-content: center;
    }

    .featured-bundles-wrapper .splide__slide:not(.is-active) .splide__slide__container {
        overflow: hidden;
        border-radius: 10px;
    }

    .featured-bundles-wrapper .splide__slide:not(.is-active) .splide__slide__container:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 4;
    }

    .featured-bundles-wrapper .splide__slide.is-active {
        z-index: 3;
    }

    .featured-bundles-wrapper .splide__slide.is-active .splide__slide__container {
        transform: scale(1);
        z-index: 2;
    }

    .featured-bundles-wrapper .splide__slide.is-active .bundle-card.bundle-featured {
        box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
    }

    .featured-bundles-wrapper .splide__slide.is-active .bundle-card.bundle-featured .btn {
        background: var(--color-light);
        color: var(--color-dark);
    }

    .featured-bundles-wrapper .splide__slide.is-active .bundle-card.bundle-featured .bundle-card-body {
        color: white;
    }

    .featured-bundles-wrapper .splide__slide.is-active .bundle-card.bundle-featured .bundle-card-body::before {
        max-height: 22%;
    }
}

/* HOME BUNDLES WRAPPER SECTION END*/

/* PRICING AREA WRAPPER SECTION */

.pricing-area-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: Syne, sans-serif;
}

.pricing-area-wrapper h5 {
    font-size: 21px;
    font-weight: 700;
    font-family: Syne, sans-serif;
}

/* PRICING AREA WRAPPER SECTION END */
/* SUBSCRIPTION CARD ELEMENT SECTION */

.subscription-card {
    position: relative;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subscription-card.featured {
    overflow: hidden;
}

.subscription-card.featured * {
    position: relative;
}

.subscription-card.featured::before {
    content: " ";
    position: absolute;
    top: 0;
    right: -50%;
    width: 35%;
    height: 25%;
    background: #ca9d00;
    transform-origin: bottom left;
    transform: skewX(45deg);
}

.subscription-card h3 {
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    height: 90px;
}

.subscription-card .badge {
    min-height: 30px;
}

.subscription-card .description > span {
    color: rgba(151, 151, 151, 1);
    min-height: 50px;
}

.subscription-card hr {
    width: 50%;
    opacity: 1;
    margin: 20px auto 15px auto;
}

.subscription-card .description ul {
    min-height: 140px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscription-card .description h5 {
    text-align: center;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    font-family: Syne, sans-serif;
}

.subscription-card .price-area-wrapper h6 {
    font-size: 21px;
    font-weight: 700;
}

.subscription-card .prices {
    position: relative;
    height: 100px;
}

.subscription-card .month_price,
.subscription-card .annual_price {
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    /*centralize*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.5s;
    transform: scale(1);
}

.subscription-card .month_price.opacity-0,
.subscription-card .annual_price.opacity-0 {
    transform: scale(0.5);
}

.subscription-card .sale-price {
    font-size: 42px;
    font-weight: 700;
    line-height: 114%;
}

.subscription-card .regular-price {
    font-size: 25px;
    color: #979797;
    font-weight: 500;
    line-height: 135%;
}

.subscription-card .regular-price:only-child {
    font-size: 42px;
    font-weight: 700;
    line-height: 114%;
    color: var(--color-dark);
    text-decoration: none;
}

.subscription-card .regular-price .price {
    text-decoration: line-through;
}

.subscription-card .regular-price:only-child .price {
    text-decoration: none;
}

.subscription-card .month-indicator {
    font-size: 15px;
}

/* SUBSCRIPTION CARD ELEMENT SECTION END */
/* ENTERPRISE CARD ELEMENT SECTION  */
.subscription-card.enterprise-card {
    border-radius: 10px;
    overflow: hidden;
}

.subscription-card.enterprise-card .dark-area {
    background: #000;
    color: white;
    padding: 20px;
    position: relative;
}

.subscription-card.enterprise-card .dark-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff33;
    transform-origin: bottom left;
    transform: skewX(-45deg);
}

.subscription-card.enterprise-card .dark-area h3 {
    height: auto;
}

.subscription-card.enterprise-card .white-area h4 {
    font-size: 21px;
    font-weight: 700;
}

.subscription-card.enterprise-card .dark-area * {
    position: relative;
    z-index: 1;
}

/* ENTERPRISE CARD ELEMENT SECTION END */

/* BUNDLES WRAPPER CTA ELEMENT SECTION  */

.bundles-cta h5 {
    width: 100%;
    max-width: 514px;
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: lowercase;
}

/* BUNDLES WRAPPER CTA ELEMENT SECTION END */
/* FOLLOW UP WRAPPER ELEMENT SECTION */

.follow-up-wrapper .content-wrapper > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem;
}

.follow-up-wrapper .content-wrapper span {
    max-width: 314px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

/* FOLLOW UP WRAPPER  ELEMENT SECTION END */
/* BUNDLES HEADER WRAPPER SECTION */

.bundles-header-wrapper h1 {
    text-transform: uppercase;
}

.bundles-header-wrapper p {
    max-width: 820px;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
}

.bundles-header-wrapper p:first-letter {
    text-transform: uppercase;
}

.bundles-header-wrapper h5 {
    font-size: 16px;
    font-family: Syne, sans-serif;
}

/* BUNDLES HEADER WRAPPER SECTION END */
/* BUNDLES DATASETS WRAPPER SECTION */
.bundle-dashboard-datasets-wrapper {
    margin-bottom: 3rem;
}

.bundle-dashboard-datasets-wrapper > div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    max-height: 500px;
    background-size: cover;
    background-position: center;
}

.bundle-dashboard-datasets-wrapper .bundle-featured::before {
    content: "";
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: black;
}

.bundle-dashboard-datasets-wrapper .title-wrapper {
    text-align: center;
    text-transform: uppercase;
}

.bundle-dashboard-datasets-wrapper .description-wrapper {
    text-transform: lowercase;
}

.bundle-dashboard-datasets-wrapper .datasets-area {
    z-index: 2;
    overflow-x: hidden;
}

/* BUNDLES DATASETS WRAPPER SECTION END */

/* DATASET AREA WRAPPER SECTION ON DATASET PAGE */

.dataset-dashboard-wrapper .small-text > div {
    display: block;
    max-width: 382px;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
}

/* DATASET AREA WRAPPER SECTION ON DATASET PAGE END */

/* DATASET METADATA AREA WRAPPER SECTION ON DATASET PAGE  */

.metadata-area-wrapper h2 {
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
}

.metadata-area-wrapper .metadata-card {
    border-radius: 10px;
}

.metadata-area-wrapper .metadata-card span {
    font-size: 16px;
    font-weight: 400;
}

.metadata-area-wrapper .metadata-card h3 {
    font-size: 42px;
    font-weight: 700;
    font-family: Syne, sans-serif;
    text-transform: uppercase;
}

.metadata-area-wrapper .badge {
    font-size: 16px;
    font-weight: 700;
    white-space: wrap;
}

.metadata-area-wrapper a {
    font-family: Poppins, sans-serif;
    font-size: 16px;
}

/* DATASET METADATA AREA WRAPPER SECTION ON DATASET PAGE END */
/* DATASET BRAND COMPUTER WRAPPER SECTION ON DATASET PAGE  */

.dataset-brand-computer-wrapper .row {
    min-height: 351px;
    margin: 150px auto;
}

.dataset-brand-computer-wrapper .computer {
    position: relative;
}

.dataset-brand-computer-wrapper .computer > img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

.dataset-brand-computer-wrapper .brand {
    align-content: center;
}

/* DATASET BRAND COMPUTER WRAPPER SECTION ON DATASET PAGE END */
/* cta-card-wrapper SECTION  */
.cta-card-wrapper {
    border-radius: 10px;
}

.cta-card-wrapper p {
    font-family: Syne, sans-serif;
    font-size: 16px;
    font-weight: 700;
    max-width: 564px;
    width: 100%;
    margin: auto;
    text-transform: uppercase;
}

.cta-card-wrapper h2 {
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

/* cta-card-wrapper SECTION END */

/* double-phone-wrapper SECTION*/

.double-phone-wrapper {
    margin-top: 400px;
    border-radius: 10px;
    margin-bottom: 70px;
}

.double-phone-wrapper [class*="col-"]:has(> img) {
    position: relative;
}

.double-phone-wrapper h2 {
    font-family: Syne, sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.double-phone-wrapper img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* double-phone-wrapper SECTION END */
/* featured-computer-wrapper SECTION  */
.featured-computer-wrapper [class*="col-"]:first-child {
    border-radius: 10px;
}

.featured-computer-wrapper .bg-secondary {
    background: linear-gradient(6deg,
    rgba(184, 184, 184, 1) 0%,
    rgba(205, 205, 205, 1) 54%,
    rgba(184, 184, 184, 1) 100%);
}

.featured-computer-wrapper img {
    position: absolute;
    top: -25%;
    left: -10%;
}

/* featured-computer-wrapper SECTION END */



/* cart-wrapper SECTION */

.cart-wrapper {
    margin-top: 40px;
}

/* cart-wrapper SECTION END */
/* cart-item-wrapper SECTION  */
.cart-item-wrapper {
    border-radius: 10px;
    background: var(--color-secondary);
}

.cart-item-wrapper > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 1rem;
}

.cart-item-wrapper > [class*="col-"]:first-child .row {
    padding-bottom: 0;
}

.cart-item-wrapper > [class*="col-"]:last-child:has(:only-child) {
    justify-content: center;
}

.cart-item-wrapper .name-wrapper a {
    color: var(--color-dark);
    text-decoration: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.5s;
}

.cart-item-wrapper .name-wrapper a:hover {
    color: #656565;
}

.cart-item-wrapper h5 {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    color: #979797;
    margin-bottom: 0;
    align-self: center;
}

.cart-item-wrapper h4 {
    margin-bottom: 0;
}

.cart-item-wrapper .name-wrapper h4 {
    font-family: Syne, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-item-wrapper .plan-wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

.cart-item-wrapper .duration-wrapper h4 {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.cart-item-wrapper .delete-wrapper a {
    font-size: 14px;
    font-weight: 500;
}

.cart-item-wrapper .price-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

.cart-item-wrapper .price-area .sale-price {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-item-wrapper .price-area .sale-price .month-indicator {
    font-size: 20px;
}

.cart-item-wrapper .price-area .regular-price {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: line-through;
}

.cart-item-wrapper .year-price {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.total-wrapper h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.total-wrapper h4:first-child {
    font-family: Syne, sans-serif;
}

/* cart-item-wrapper SECTION END */
/* checkout-wrapper SECTION  */

.checkout-wrapper {
    margin-top: 160px;
}

.checkout-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    font-family: Syne, sans-serif;
}

.checkout-wrapper .order-details h5 {
    font-size: 24px;
    font-weight: 700;
    font-family: Syne, sans-serif;
}

.checkout-wrapper .order-details .price {
    font-size: 24px;
    font-weight: 700;
}

.checkout-wrapper .order-details .due-balance p {
    font-size: 14px;
    font-weight: 400;
}

.checkout-wrapper .order-details .order-payment-methods h4 {
    font-size: 28px;
    font-weight: 700;
    font-family: Syne, sans-serif;
    margin-top: 3rem;
}

.checkout-wrapper .order-details .order-payment-methods .input.radio label {
    font-size: 20px;
    font-weight: 500;
    font-family: Syne, sans-serif;
    display: flex;
    align-items: center;
}

.checkout-wrapper .order-details .order-payment-methods .input.radio input {
    margin: 0.25rem 0.5rem;
    width: 1.1em;
    height: 1.1em;
}

.checkout-wrapper .order-details .order-payment-methods .input.radio input:checked {
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
    box-shadow: none;
}

.checkout-wrapper .order-details .order-privacy-policy-text {
    color: #979797;
}

.checkout-wrapper .order-details .order-privacy-policy-text a {
    color: #979797;
    font-weight: 600;
    text-transform: capitalize;
}

.checkout-wrapper .order-details .order-privacy-policy-text p {
    font-size: 14px;
    font-weight: 400;
}

.checkout-wrapper .order-details .order-privacy-policy-text .input.checkbox label {
    font-size: 16px;
    cursor: pointer;
}

.checkout-wrapper .order-details .order-privacy-policy-text .input.checkbox input {
    margin: 0.25rem 0.5rem 0.25rem 0;
    width: 1.25em;
    height: 1.25em;

    background-color: transparent;
    border: 1px solid #979797;
    border-radius: 12.5%;
}

.checkout-wrapper .order-details .order-privacy-policy-text .input.checkbox input:checked {
    background-color: var(--color-dark);
    /* Definindo o fundo como transparente */
    border: 1px solid var(--color-dark);
    /* Mantendo a cor da borda */
    box-shadow: none;
    /* Sem sombra, mantendo o estilo original */
    color: #979797;
    /* Cor do ícone de marcação */
}

.checkout-wrapper .order-details .order-privacy-policy-text .input.checkbox input:focus {
    box-shadow: none;
}

/* checkout-wrapper SECTION END */

/* order-wrapper SECTION */

.order-wrapper .order-details,
.order-wrapper .billing-details {
    border-radius: 10px;
}

.order-wrapper h4 {
    font-size: 32px;
    font-weight: 700;
    font-family: Syne, sans-serif;
    margin-bottom: 1em;
}

.order-wrapper h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.order-wrapper h5:first-letter,
.order-wrapper h4:first-letter {
    text-transform: uppercase;
}

.order-wrapper a {
    font-weight: 700;
}

/* order-wrapper SECTION END */

/* LIGHT FORM'S SECTION */

.transparent-from {
    border-radius: 10px;
}

.transparent-from label {
    font-size: 14px;
    font-weight: 500;
    color: #979797;
}

.transparent-from input,
.transparent-from select {
    border-radius: 10px;
    border: 1px solid var(--color-dark);
    padding: 0.5rem 1rem;
}

.transparent-from input:focus,
.transparent-from select:focus {
    box-shadow: none;
    border: 1px solid var(--color-dark);
}

.transparent-from .form-check {
    padding-left: 0;
}

.transparent-from .form-check-label label {
    cursor: pointer;
}

.transparent-from .form-check-label input {
    margin: 0.125em 0.5rem 0.25rem 0;
    width: 1.25em;
    height: 1.25em;
    padding: 0;
    background-color: transparent;
    border: 1px solid #979797;
    border-radius: 12.5%;
}

.transparent-from .form-check-label input:checked {
    background-color: var(--color-dark);
    /* Definindo o fundo como transparente */
    border: 1px solid var(--color-dark);
    /* Mantendo a cor da borda */
    box-shadow: none;
    /* Sem sombra, mantendo o estilo original */
    color: #979797;
    /* Cor do ícone de marcação */
}

.transparent-from .form-check-label input:focus {
    box-shadow: none;
}

.transparent-from .form-check-label,
.transparent-from p {
    font-size: 14px;
    color: #979797;
    font-weight: 400;
    margin: 0;
    line-height: 150%;
}

.transparent-from .form-check-label a,
.transparent-from p a {
    color: inherit;
    font-weight: 700;
}

.text-link-inherit {
    color: inherit;
    font-weight: 700;
}

/* LIGHT FORM'S SECTION END */

/* COOKIES */

#cookieConsentContainer p {
    font-size: 12px;
}

#cookieConsentContainer a,
#cookieConsentContainer .btn {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.message.alert {
    margin-top: 50px;
}

.historical-graph-unsubscribed::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    height: 93%;
    width: 100%;
    background: rgb(36, 36, 36);
    background: -moz-linear-gradient(90deg, rgba(36, 36, 36, 0) 0%, rgba(36, 36, 36, 1) 75%, rgba(36, 36, 36, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(36, 36, 36, 0) 0%, rgba(36, 36, 36, 1) 75%, rgba(36, 36, 36, 1) 100%);
    background: linear-gradient(90deg, rgba(36, 36, 36, 0) 0%, rgba(36, 36, 36, 1) 75%, rgba(36, 36, 36, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#242424", endColorstr="#242424", GradientType=1);
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar .cart-badge{
    font-weight: 600;
    position: absolute;
    bottom: -3px;
    right: 2px;
    text-decoration: none;
    padding: 0.2em 0.6em;
    font-size: 8px;
}

@media (max-width: 768px) {

    .navbar-icons {
        width: 100%;
    }

    .navbar .dropdown-menu {
        width: 100%;
    }

    .nav-item .profile-dropdown {
        right: 0 !important;
    }

    .nav-item #navbarNotificationContent {
        left: 0 !important;
    }

    .nav-item .profile-dropdown, .nav-item #navbarNotificationContent {
        position: absolute;
        top: 100% !important;
    }
}
/* Styling the menu button */
.menu-btn {
    cursor: pointer;
    transition: all 0.5s ease-out;
}

/* Styling the hamburger lines */
.menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    background: black;
    transition: all 0.5s ease-out;
}

/* Adding transform to the X */
.menu-btn.close {
    transform: rotate(180deg);
}

/* Styling the three lines to make it an X */
.menu-btn.close .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.close .btn-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.close .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Styling the position of the menu icon */
.menu {
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0.9;
    visibility: hidden;
}

.menu.show {
    visibility: visible;
}
@media (min-width: 1200px) {

    body.no-login div#content {
        min-height: calc(100vh - 89.09px);
    }

    .col-12:not(:only-child):not(:last-child)[class*="col-xl"] {
        margin-bottom: 0 !important;
    }

    .min-h-xl-auto {
        min-height: auto !important;
    }

    .h-xl-0 {
        height: 0 !important;
    }

    .h-xl-auto {
        height: auto !important;
    }

    .w-xl-0 {
        width: 0 !important;
    }

    .w-xl-auto {
        width: auto !important;
    }

    /* cart section */
    .cart-wrapper {
        margin-top: 160px;
    }

    .cart-item-wrapper > [class*="col-"]:first-child {
        text-align: start;
    }

    .cart-item-wrapper > [class*="col-"]:last-child {
        text-align: end;
        border-left: black 1px dashed;
    }

    .cart-item-wrapper .price-area {
        align-items: flex-end;
    }

    /* featured-computer-wrapper section */
    .featured-computer-wrapper [class*="col-"]:first-child {
        border-radius: 10px 0 0 10px;
    }

    .featured-computer-wrapper [class*="col-"]:last-child {
        border-radius: 0 10px 10px 0;
    }

    /* dataset-brand-computer-wrapper section */
    .dataset-brand-computer-wrapper .row {
        margin: 300px auto 150px auto;
    }

    /* bundles-header-wrapper section */
    .bundles-header-wrapper div:has(> p) {
        border-right: black 1px solid;
    }

    /* follow-up-wrapper section */
    .follow-up-wrapper .content-wrapper > div:first-child {
        border-right: 1px solid #000;
    }

    .follow-up-wrapper .content-wrapper > div:last-child {
        border-left: 1px solid #000;
    }

    /* subscritpiotn card section*/
    .subscription-card.enterprise-card > .row > [class*="col-"] {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .subscription-card.enterprise-card > .row > [class*="col-"]:first-child {
        padding-left: 37px;
    }

    .subscription-card.enterprise-card > .row > [class*="col-"]:last-child {
        padding-right: 37px;
    }

    .subscription-card.enterprise-card .dark-area::before {
        transform-origin: top right;
        background-color: var(--color-dark);
        transform: skewX(40deg);
    }

    .subscription-card.enterprise-card .dark-area ul {
        align-items: start;
    }

    /* bundle card section*/
    .bundle-card .bundle-card-body > *:not(:last-child) {
        padding: 0 50px;
    }

    /*sales contact form*/
    div#requestContactFormWrapper p,
    div#requestContactFormWrapper .form-check {
        font-size: 0.8em;
    }

    .sales-wrapper .sales-card {
        padding: 50px;
    }

    .sales-wrapper .sales-card .form-wrapper .btn {
        width: auto;
    }

    /* offers CTA section*/
    .offers-wrapper h6 {
        max-width: 145px;
        font-size: 15.68px;
        text-align: start;
    }

    .offers-wrapper .col-12.col-xl-3 {
        padding: 0 2rem;
    }

    /* home-header-wrapper section*/
    .home-header-wrapper .header > [class*="col"]:last-child {
        position: relative;
        z-index: 0;
        overflow: visible;
    }

    .home-header-wrapper .header > [class*="col"]:last-child > img {
        max-width: 150%;
        margin-top: -45%;
        margin-bottom: -100vh;
        float: right;
    }

    .demo-page .col-12:has(.drivers-impact-table) {
        margin-bottom: -200px;
    }
}

.loginOrDivider {
    display: flex;
    flex-direction: row; 
    margin:.5em 0;
    
    > span {
        margin:0 1em
    }
}
.loginOrDivider:before,
.loginOrDivider:after {
    content: "";
    flex: 1 1;
    border-bottom: 2px solid #fff;
    margin: auto;
}

.forecast-comparison-legend {
    margin-top: 1.5em;
    .lblbutton {
        display: inline-block;
        color:#000;
        cursor: pointer;
        vertical-align: top;
        margin:0 0 1em 0;
        .fa-spinner {
            display: none;
        }
    }
}
#dataset-tabs .nav-item {
    border-bottom: 1px solid black;
}
#dataset-top-tabs {
    .nav-item {
        border-bottom: 1px solid black;
        padding: 0 .5em;

        &:first-child {
            padding-left: 1em;
        }
        &:last-child {
            padding-right: 1em;
        }
    }
}

/* frontoffice datasets */
.bg-mainchart {
    background-color: #F8F9FA;
}
.mainchart {
    min-height: 400px;
    max-width: 1320px;
    margin: auto;
}
.mainchart .mcactions {
    display: flex;
    margin: 1em 0;
}
.mainchart .mcactions > div {
    border: 1px solid #DEDEDE;
    background-color: #fff;
    padding: .7em 1.5em;
    border-right: none;

    &:active {
        transform: scale(0.99);
    }
}

.mainchart .mcactions > div:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.mainchart .mcactions > div:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid #DEDEDE;
}
.mainchart .mcactions > div.active,
.mainchart .mcactions > div:hover,
.mainchart .mcactions > div:active
{
    background-color: #F8F9FA;
    cursor: pointer;
}
.mainchart .maingraph > div {
    display: none;
}
.mainchart .maingraph > div.active {
    display: block;
}
.tab-header-wrapper {
    max-width: 1320px;
    margin: auto;
    position: relative;
}
.maintabs .tab-header {
    display: flex;
    padding-left: 3em;
    overflow: scroll;

}
.tab-header::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, .1));
    width: 50px;
    height: 44px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tab-header-wrapper::after {
    background: linear-gradient(to right, rgba(255, 255, 255, .1), rgba(255, 255, 255, 1));
    width: 50px;
    height: 44px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.maintabs .tab-header > div {
    padding: .5em 1.3em;
    border: 1px solid #DEDEDE;
    border-bottom: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 1em;
    text-wrap: nowrap;

    &:active {
        transform: scale(0.99);
    }
}
.maintabs .tab-header > div:hover {
    background-color: #F8F9FA;
    border-bottom: none;
    cursor: pointer;
}
.maintabs .tab-header > div.active {
    background-color: #F8F9FA;
    border-bottom: none;
}
.maintabs .tab-header {
    max-width: 1320px;
    margin: auto;
    margin-bottom: -6px; /* not -1px because of overflow:scroll */
}
.maintabs .tab-content {
    min-height: 300px;
    padding: 2em;
    background-color: #F8F9FA;
    border: 1px solid #DEDEDE;
    border-left: none;
    border-right: none;
    border-bottom: none;
}
.maintabs .tab-content > div {
    display: none;
}
.maintabs .tab-content > div.active {
    display: block;
}
.maintabs .tabcontent-block {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #DEDEDE;
    padding: 2em;
    max-width: 1320px;
    margin: auto;
    margin-bottom: 2em;
    min-height: 300px;
}
.maintabs .tabcontent-block .block-title  {
    margin-left: .5em;
    font-size: 1.2em;
}
.maintabs .tabcontent-block .fa-circle-info  {
    font-size: 1.1em;
}