/* temporarily hide acces to customer zone, when customer zone becomes available, remove all css from here... */
.top-nav-mobile .top-nav-item:first-child,
.top-nav-item.user-nav {
    display: none;
}

@media only screen and (min-width: 768px) {
    .sticky-navigation {
        top: -68px;
    }
}

/* ... to here */



/* start Horizontal scroll */

.container.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: var(--spacer-3);
    padding: 0;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

.container.horizontal-scroll .card {
    width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* stop Horizontal scroll */
/* start Comparison table */
.comparison-card .card-body {
    padding-bottom: 0;
}

.comparison-card .list-group-item {
    border-width: 0;
    padding: var(--spacer-2) 0;
    font-size: var(--font-size-xs);
    display: flex;
    column-gap: var(--spacer-2);
    align-items: baseline;
    border-bottom: 1px solid var(--border-line-color);
}

.comparison-card .list-group-item span>span {
    margin-right: var(--spacer-2);
}

.comparison-card .list-group-item span .btn-tooltip {
    padding: 0;
}

.comparison-card .h2 {
    margin-bottom: var(--spacer-3);
}

.comparison-card .btn-primary {
    justify-self: center;
}

.comparison-card .card-footer {
    background-color: var(--color-neutral-white);
    border-width: 0;
    padding-top: 0;
    padding-bottom: var(--spacer-4);
}

.card:has(.comparison-table) {
    display: none;
}

.comparison-table .fa-check,
.comparison-card .fa-check {
    color: var(--color-success-400);
}

.comparison-table .fa-xmark,
.comparison-card .fa-xmark {
    color: var(--color-error-400);
}

.comparison-table {
    font-size: var(--font-size-sm);
}

.comparison-table .btn-tooltip {
    padding-left: var(--spacer-2);
}

@media only screen and (min-width : 576px) {
    .container.horizontal-scroll .card {
        width: 320px;
    }
}

@media only screen and (min-width : 768px) {
    .container.container.horizontal-scroll:has(.comparison-card) {
        display: none;
    }

    .card:has(.comparison-table) {
        display: block;
    }

    .comparison-table {
        display: grid;
        grid-template-columns: auto repeat(3, 1fr);
        grid-template-rows: auto repeat(9, auto);
    }

    .comparison-table>div {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: var(--spacer-3) var(--spacer-2);
        border-bottom: 1px solid var(--border-line-color);
    }

    .comparison-table .header {
        font-weight: bold;
        text-align: center;
        align-items: end;
        border-bottom-width: 0;
    }

    .comparison-table .row-header {
        display: block;
        text-align: left;
    }

    .comparison-table .button-row {
        border-bottom-width: 0;
    }

}

@media only screen and (min-width : 992px) {
    .comparison-table {
        font-size: var(--font-size-md);
    }
}

/* stop Comparison table */
/* start bullets */
#main-content {

    .card ul {
        padding-inline-start: 24px;
    }

    .list-check ul,
    .list-cross ul {
        list-style-type: none;
        padding-inline-start: 0;
        margin-bottom: 0;
    }

    .list-check li,
    .list-cross li {
        margin-bottom: var(--spacer-2);
        padding-left: 26px;
        text-indent: -12px;
    }

    .list-check ul li ul,
    .list-cross ul li ul {
        margin-top: var(--spacer-3);
    }

    .list-check ul li ul li,
    .list-cross ul li ul li {
        margin-bottom: 0;
        text-indent: -10px;
    }

    .list-check li::before {
        display: inline-block;
        font: var(--fa-font-regular);
        content: "\f00c";
        color: var(--color-success-400);
        width: 12px;
    }

    .list-cross li::before {
        display: inline-block;
        font: var(--fa-font-regular);
        content: "\f00d";
        color: var(--color-error-400);
        width: 12px;
    }

    .list-check ul ul,
    .list-cross ul ul {
        list-style-type: disc;
        padding-inline-start: 20px;
    }

    .list-check ul ul li,
    .list-cross ul ul li {
        padding-left: 0;
    }

    .list-check li li::before,
    .list-cross li li::before {
        display: inline-block;
        content: "";
        width: 10px;
        color: var(--body-type-color);
    }

}

/* stop bullets */
/* start number bullets with background */

.ol-with-background-circle>div:first-child .component-paragraph {
    width: 24px;
    height: 24px;
    color: var(--icon-badge-color);
    background-color: var(--icon-badge-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: var(--spacer);
    font-weight: var(--font-weight-bold);
}

.ol-with-background-circle>div:last-child>div div {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacer-2);
}

/* stop number bullets with background */
/* start Footer */
#main-content {
    .footer ul {
        list-style-type: none;
        padding-inline-start: 0;
    }

    .footer ul li {
        padding-left: 0;
        text-indent: 0;
        font-size: var(--font-size-sm);
    }

    .footer ul li::before {
        content: " ";
        width: 0;
    }

    .footer ul a {
        text-decoration: none;
        line-height: 2;
        font-weight: normal;
    }

    .footer p {
        margin-bottom: 0;
    }

    @media only screen and (min-width : 768px) {
        .footer .footer-collapsible .btn {
            cursor: auto;
        }

        .footer .footer-collapsible .collapse,
        .footer .footer-collapsible .collapsing {
            display: block !important;
            height: 100%;
        }

        .footer .footer-collapsible i {
            display: none;
        }
    }
}

/* stop Footer */