    #cookie-btn {
        position: fixed;
        width: 12em;
        height: 3em;
        bottom: 48px;
        right:10px;
        font-size: 1em;
        background-color: #ff6600;
        color: white;
        border: 1px #ff6600 solid;
        cursor: pointer;
        border-radius: 4px;
        z-index: 999;
        transition: bottom 0.5s ease-in-out;
    }

    #cookie-btn:hover {
        background-color: #fff;
        color: #ff6600;
        transform: translateY(-2px);
    }

    .motif h1 {
        color: #fff !important;
    }

    .navbar {
        height: 80px;
        max-width: 1950px !important;
        margin: 0 auto;
    }


    @media screen and (max-width: 991px) {
        .whitepage article {
            padding: 0 !important;
        }
    }

    @media screen and (max-width: 767px) {

        .subheader {
            height: 50vh !important;
            width: 100%;
            background-position: center center !important;
            background-size: scale-down;
        }

    }


    .ccc h2 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .ccc h3 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .ccc h4 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .ccc p {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 2.0;
    }

    .ccc li {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 1.0;
    }

    .ccc a {
        color: #6e6e6e;
        font-weight: bold;
    }

    .lll li {
        margin-top: 5px;
        margin-bottom: 5px;
        line-height: 0.5;
    }


    .card {
        --accent-color: #ffd426;
        position: relative;
        width: 540px !important;
        background: white;
        border-radius: 1rem;
        padding: 0.3rem;
        margin: 20px 0px;
        transition: all 0.5s ease-in-out;
    }

    .card .image-container {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 0.7rem;
        /*border-top-right-radius: 4rem;*/
        margin-bottom: 1rem;
    }

    .card .image-container img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: inherit;
    }

    .card .image-container .price {
        position: absolute;
        right: 0.7rem;
        bottom: -1rem;
        z-index: 99;
        background: white;
        color: var(--accent-color);
        font-weight: 900;
        font-size: 1.6rem;
        padding: 1rem;
        border-radius: 1rem 1rem 2rem 2rem;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 15px 0px;
    }

    .card .content {
        padding: 0px 0.8rem;
        margin-bottom: 1rem;
        display: inline-flex;
    }

    .card .content img {
        width: 70px;
        box-shadow: 2px 2px 2px 2x #666666;
        padding: 5px;
        margin: 15px;
        border-radius: 50%;
        -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
        -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
    }

    .card .content .disc {
        align-content: center;
    }

    .card .content .brand {
        font-weight: 900;
        font-size: 1.4rem;
        color: #a6a6a6;
    }

    .card .content .product-name {
        font-weight: 700;
        color: #666666;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .card:hover {
        transform: scale(1.03);
    }

    @keyframes bouncing {

        from,
        to {
            transform: scale(1, 1);
        }

        25% {
            transform: scale(1.5, 2.1);
        }

        50% {
            transform: scale(2.1, 1.5);
        }

        75% {
            transform: scale(1.5, 2.05);
        }
    }