:root {
    --radius: 1rem;
    --main-color: #f2f4f7;
    --dark-blue-color: #354154;
    --blue-color: #495568;
    --light-blue-color: #65758b;
    --red-color: #dc2725;
    --green-color: #1fa34b;
    --golden-color: #ffd54a;
    --main-text-color: #c5ccd5d4;
}

html, body, .main-form {
    height: 100%;
    min-height: 100vh;
}

.main-form {
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

p {
    margin: 0
}

a {
    text-decoration: none;
}

.bg-body {
    background-color: var(--main-color) !important;
}

header {
    background-color: var(--blue-color);
}

footer {
    background-color: var(--dark-blue-color);
    color: var(--main-text-color);
}

h1 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: .5rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: .5rem;
}

.brand-icon {
    background-color: var(--light-blue-color);
}

.brand-text > .header-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    color: var(--bs-heading-color);
    line-height: 1.2;
}

.brand-text > p {
    color: var(--main-text-color);
}


.topline {
    background-color: var(--dark-blue-color);
}

    .topline i {
        color: var(--golden-color)
    }

.cart-button > .cart-count,
.cart-button > .cart-count:hover {
    color: white;
    text-decoration: none;
}

main {
    flex-grow: 1;
}

footer hr {
    color: var(--light-blue-color);
}

.footer-logo {
    display: flex;
}

.btn-footer-fill, .btn-footer {
    padding: 0.5rem 1rem;
    background-color: var(--light-blue-color);
    border: 1px solid var(--light-blue-color);
    color: white;
    border-radius: .5rem;
    display: flex;
    column-gap: 1rem;
    align-items: center;
}

.btn-footer {
    border: 1px solid var(--main-text-color);
    background-color: transparent;
    color: var(--main-text-color);
}

.footer-list .list-item {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

    .footer-list .list-item > a {
        text-decoration: none;
        color: var(--main-text-color);
    }

.side-bar {
    padding: 1rem;
    border-radius: 1rem;
}

    .side-bar,
    .side-bar .list-group-item {
        background-color: var(--blue-color);
    }

        .side-bar a,
        .side-bar button {
            color: var(--main-color);
            border-radius: .35rem;
        }

            .side-bar a.list-group-item,
            .side-bar button.list-group-item {
                font-weight: 600;
                border: none;
                padding: .75rem 1.25rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .side-bar button.list-group-item,
                .side-bar a.nav-link.active,
                .side-bar button.list-group-item:active,
                .side-bar a.list-group-item.active {
                    background-color: var(--dark-blue-color);
                    color: var(--main-color);
                }

                    .side-bar button.list-group-item.collapsed {
                        background-color: var(--blue-color);
                        color: var(--main-color);
                    }

            .side-bar a:hover,
            .side-bar a:active,
            .side-bar a:focus,
            .side-bar button:focus,
            .side-bar button:active,
            .side-bar button:hover {
                background-color: var(--dark-blue-color);
                color: var(--main-color);
            }

        .side-bar .nav {
            padding: .5rem 0;
        }

            .side-bar .nav .nav-item {
                display: flex;
                border-bottom: 1px solid var(--light-blue-color);
            }

                .side-bar .nav .nav-item:last-of-type {
                    border: none;
                }

                .side-bar .nav .nav-item .nav-link {
                    padding: 0.5rem 2rem;
                    padding-right: 0.5rem;
                    width: 100%;
                    font-size: 1rem;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                }

                    .side-bar a.list-group-item.active::after,
                    .side-bar .nav .nav-item .nav-link.active::after,
                    .side-bar .nav .nav-item .nav-link:hover::after {
                        content: "\F285";
                        display: inline-block;
                        font-family: bootstrap-icons !important;
                        font-style: normal;
                        font-weight: normal !important;
                        font-variant: normal;
                        text-transform: none;
                        line-height: 1;
                        vertical-align: -.125em;
                        -webkit-font-smoothing: antialiased;
                    }

        .side-bar a.list-group-item.highlight {
            background-color: var(--red-color);
        }

        .side-bar button.list-group-item.collapsed::after {
            transform: rotate(0);
        }

        .side-bar button.list-group-item::after {
            transform: rotate(180deg);
        }

        .side-bar button.list-group-item::after {
            content: "\F282";
            display: inline-block;
            font-family: bootstrap-icons !important;
            font-style: normal;
            font-weight: normal !important;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            vertical-align: -.125em;
            -webkit-font-smoothing: antialiased;
        }

.breadcrumb-item, .breadcrumb-item > a, .breadcrumb-item > span > a {
    color: var(--bs-breadcrumb-item-active-color);
}

    .breadcrumb-item.active {
        color: var(--bs-highlight-color);
    }

.breadcrumb-separator {
    color: var(--bs-gray-500);
}

.btn.btn-buy-online {
    padding: 0.5rem 1.25rem;
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
    color: white;
    border-radius: .5rem;
}

.btn.btn-go-back {
    text-align: center;
    width: 100%;
    padding: 0.5rem 1.25rem;
    background-color: var(--dark-blue-color);
    border: 1px solid var(--dark-blue-color);
    color: white;
    border-radius: .5rem;
}

.link-inherit {
    color: inherit !important;
}


.card-more {
    background-color: var(--dark-blue-color);
    color: white;
}

    .card-more .text-body-secondary {
        color: var(--main-text-color) !important;
    }

    .card-more a {
        color: white !important;
    }

.figure-caption {
    font-size: .75rem;
}

.img-modal .modal-content .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-modal .btn-close {
    position: absolute;
    right: -2.5rem;
    box-shadow: 0 0rem 8rem 1rem rgb(255 255 255);
}

.schilderart-box {
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid var(--main-text-color);
    box-shadow: 0 0px 5px 0px var(--main-text-color);
}

    .schilderart-box > img {
        width: 100%;
        border-radius: 1rem;
    }

    .schilderart-box > a {
        display: block;
        color: var(--bs-gray-900);
        text-decoration: none;
        margin-top: .75rem;
        text-align: center;
        font-weight: 700;
    }


.to-top-container {
    position: fixed;
    bottom: 50px;
    right: 40px;
    z-index: 100;
}

.to-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-light);
    border: none;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    color: var(--gray-75-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(23, 73, 77, 0.15) 0px 10px 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

    .to-top-button.visible {
        display: flex;
        opacity: 1;
        visibility: visible !important;
    }

    .to-top-button:hover {
        width: 125px;
        border-radius: 58px;
    }

.to-top-icon, .to-top-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.to-top-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.to-top-label {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    white-space: nowrap;
    font-family: var(--font-500);
}

.to-top-button:hover .to-top-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.to-top-button:hover .to-top-label {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.custom-form-check-input {
    display: none;
}

.custom-form-check.md {
    font-size: 14px !important;
}

.custom-form-check {
    cursor: pointer;
    color: var(--bs-gray-900);
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--bs-border-color);
    padding: 8px 40px 8px 12px;
    border-radius: 8px;
    text-align: start;
    font-size: 16px;
    font-family: var(--font-700);
}

    .custom-form-check:before {
        position: absolute;
        top: 50%;
        right: 14px;
        width: 20px;
        height: 20px;
        content: "";
        border: 2px solid #d9dcde;
        border-radius: 100%;
        transform: translateY(-50%);
    }

    .custom-form-check > .bi {
        margin-right: 10px;
        flex-shrink: 0;
    }

.custom-form-check-input:has(> input:checked) + .custom-form-check {
    border: 1px solid var(--bs-primary);
}

    .custom-form-check-input:has(> input:checked) + .custom-form-check > .bi {
        color: var(--bs-primary);
    }

    .custom-form-check-input:has(> input:checked) + .custom-form-check:before {
        border-color: var(--bs-primary);
    }

    .custom-form-check-input:has(> input:checked) + .custom-form-check:after {
        position: absolute;
        top: 50%;
        right: 20px;
        width: 8px;
        height: 8px;
        content: "";
        background-color: var(--bs-primary);
        border-radius: 100%;
        transform: translateY(-50%);
    }

.browser-info {
    margin-top: .5rem;
    display: inline-block;
}

.small-2 {
    font-size: .685rem;
}

.line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .line::after {
        content: '';
        flex: 1;
        border-bottom: 1px dashed #ccc;
        margin: 0 10px;
        order: 1;
    }

    .line > .left {
        order: 0;
    }

    .line > .right {
        order: 2;
    }

.form-floating > label {
    color: var(--bs-light-text-emphasis);
}

.invalid-feedback {
    color: var(--bs-form-invalid-color) !important;
}

ul.check-marks-green {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.check-marks-green li {
        position: relative;
        padding-left: 1.8em;
        margin-bottom: .25rem;
    }

        ul.check-marks-green li::before {
            content: "\f26a";
            font-family: bootstrap-icons;
            color: var(--bs-green);
            position: absolute;
            left: 0;
            top: 0;
        }

.twenty-years > h4 {
    font-family: 'Myriad Pro', Arial;
    font-weight: bold;
}

.twenty-years > p {
    font-family: Arial;
    font-weight: bold;
}

.form-floating > .form-units {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: .6rem .6rem;
    overflow: hidden;
    text-align: end;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: var(--bs-border-width) solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    font-size: .65rem;
}

    .form-floating > .form-units::after {
        position: absolute;
        inset: 1rem 0.375rem;
        z-index: -1;
        height: 1.5em;
        content: "";
        background-color: var(--bs-body-bg);
        border-radius: var(--bs-border-radius);
        top: 25%;
    }