:root {
    --primary-color: #0054A1; /* define primary color */
    --secondary-color: #FFD600; /* define secondary color */
}


.bg-primary-custom {
    background: #e1e1e1;
    margin-top: 30px;
}

.navbar-wrapper {
    padding: 10px;
    background-color: var(--primary-color);
}

.discount-banner {
    text-align: center;
    padding: 0.7em 0em;
    background: #2596be;
    position: relative;
    overflow: hidden;
}

.discount-banner-img {
    height: 30px;
    position: relative;
    z-index: 10;
}

.discount-banner-text {
    margin-top: 5px;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0px;
    position: relative;
    z-index: 10;
}

.snowflake {
    position: absolute;
    z-index: 1;
}

#date-counter {
    margin-bottom: 0px;
    font-weight: 500;
    color: black;
}

#navbar-custom {
    background-color: var(--primary-color);
}




@media only screen and (min-width: 650px) {
    #navbarNavDropdown {
        display: flex; 
        justify-content: center; 
    }
}

#toggler-button {
    border-radius: 0px;
}


@media only screen and (max-width: 650px) {
    .navbar-wrapper {
        padding: 10px;
        background-color: #FFF;
    }

    #nav-item-custom {
        margin-top: 15px;
    }

    #navbar-custom {
        background-color: #FFF;
    }

    #navbarNavDropdown {
        padding-bottom: 15px;
        margin-top: 15px;
    }

    .container {
        padding: 0px;
    }
}

.site-title {
    margin-top: 30px;
    text-align: center;
}

.page-content-wrapper {
    margin-bottom: 50px;
}

#navbar-mobile-logo {
    margin-top: 0px;
}

.nav-link-custom {
    color: white;
    font-weight: 600;
    opacity: 100%;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none;
}

.nav-link-custom:hover {
    color: var(--secondary-color);
}

@media only screen and (max-width: 650px) {
    .nav-link-custom {
        color: black;
        margin-top: 10px;
    }
}

.logo-pic-wrapper {
    width: 150px;
    margin: 30px auto 30px auto;
    z-index: 21;
}

.logo-pic {
    width: 150px;
}

.cart-icon-count {
    position: absolute;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 20px;
    display: inline-block;
    text-align: center;
    margin-top: 10%;
}

.desktop-banner {
    display: block;
    width: 100%;
}

.mobile-banner {
    display: none;
    width: 100%;
}

.btn-link-wrapper {
    text-decoration: none;
}


/* HOME */

.hero-wrapper {
    display: flex;
    align-content: center;
    align-items: center;
    margin-top: 100px;
}

#dynamic-banner {
    height: 300px;
}

.dynamic-mobile-banner-img {
    width: 100%;
}

.home-mobile-banner {
    display: none;
}

#smaller-banner-float {
    height: 200px;
}

#smaller-banner-info {
    padding: 20px 30px;
}

#smaller-banner-info-footer {
    margin-top: 0px;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

@media only screen and (max-width: 650px) {
    .cards {
        flex-direction: column;
    }
}

.card {
    background-color: white;
    display: block;
    width: 300px;
    min-height: 90px;
    border: 3px solid var(--primary-color);
    padding: 15px;
    margin: 20px;
    box-shadow: 10px -10px 0 -3px white, 10px -10px var(--secondary-color);
    transition: box-shadow 1s, top 1s, left 1s;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    border-radius: 0px;
}

.card:hover {
    top: -20px;
    left: 20px;
    box-shadow: 0 0 0 -3px white, 0 0 0 0 var(--secondary-color);
}


.card p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.card h2 {
    font-size: 14px;
    font-weight: normal;
}

.product-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.product-1 {
    grid-column: 1 / 2;
    grid-row: 1;
}

.product-2 {
    grid-column: 2 / 2;
    grid-row: 1;
}

.grid-product-info {
    margin-top: 15px;
}

.grid-product-name {
    font-size: 20px;
}

.grid-product-wrapper {
    width: 400px;
    padding: 25px;
    border: 2px solid #e4e4e4;
}

.grid-product-img-wrapper {
    width: 100%;
}

.grid-product-img {
    width: 100%;
}

.grid-price-wrapper {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.grid-btn-wrapper {
    margin-top: 10px;
    text-align: center;
}

@media only screen and (max-width: 650px) {
    .product-box-btn {
        width: 100%;
    }
}


.grid-discounted-price {
    padding: 2px;
    font-size: 15px;
    color: white;
    background-color: rgb(212, 1, 64);
}

@media screen and (max-width: 650px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .product-1 {
        grid-column: 1 / 2;
        grid-row: 1;
    }
    
    .product-2 {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .grid-product-wrapper {
        width: 80%;
        padding: 25px;
    }
}

.info-points-wrapper {
    display: flex;
    flex-direction: row;
}

.info-points {
    display: flex;
    background: #ececec;
    padding: 15px 10px;
}

.info-point {
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    border-left: 2px solid grey;
}

.info-point-header {
    font-size: 20px;
    color: rgb(51, 51, 51);
}

.info-point-text {
    font-size: 10px;
    color: rgb(51, 51, 51);
}

@media screen and (max-width: 650px) {
    .info-points-wrapper {
        flex-direction: column;
    }

    .info-point {
        padding: 0px 10px;
    }

    .info-point-header {
        font-size: 10px;
        color: rgb(51, 51, 51);
    }

    .info-point-text {
        font-size: 7px;
        color: rgb(51, 51, 51);
    }
}

.hero-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.hero-image-wrapper {
    width: 80%;
}

.hero-image {
    width: 100%;
    border: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.price-and-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 50px;
}

@media screen and (max-width: 650px) {
    .desktop-banner {
        display: none;
    }

    .home-mobile-banner {
        display: block;
    }

    .mobile-banner {
        display: block;
    }

    .hero-wrapper {
        flex-direction: column;
        margin-top: 30px;
    }

    .hero-1 {
        width: 100%;
        margin-bottom: 50px;
    }

    .price-and-btn {
        margin-top: 20px;
    }
}

.newsletter-banner {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: #C4D6E7;
    margin-bottom: 50px;
    margin-top: 70px;
}

#before-submit {
    margin-top: 0px;
    margin-bottom: 0px;
}

#after-submit {
    display: none;
}

.newsletter-icon-wrapper {
    width: 35%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.newsletter-icon {
    max-width: 40%;
    padding: 20px;
}

.newsletter-text {
    margin-bottom: 20px;
}

.newsletter-text-and-input {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.newsletter-input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#abo-btn {
    margin-left: 10px;
}

.how-to {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.how-to-content {
    display: flex;
}

.how-to-step {
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 20px;
}

.step-header {
    margin-bottom: -20px;
    z-index: 99;
    color: black;
}

.box-header {
    margin-bottom: 15px;
}

.step-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    padding: 30px;
    height: 300px;
}

@media only screen and (max-width: 650px) {
    .how-to {
        margin-top: 30px;
    }

    .how-to-content {
        flex-direction: column;
    }

    .how-to-step {
        width: auto;
    }

    .newsletter-banner {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .newsletter-icon-wrapper {
        width: auto;
    }

    .newsletter-text-and-input {
        text-align: center;
    }

    .newsletter-text {
        margin-bottom: 20px;
    }

    .newsletter-input {
        flex-direction: column;
        width: 100%;
    }

    .mail-field {
        margin-bottom: 10px;
    }
}

#base-footer {
    padding-top: 30px;
}



/* BUTTONS */ 

.btn-primary {
    align-items: center;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    fill: #fff;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    margin-top: 10px;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-primary:focus {
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    fill: #fff;
}

.btn-primary:active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    fill: var(--secondary-color);
}

@media (min-width: 768px) {
    .btn-primary {
        min-width: 170px;
    }
}





/* PAYMENT LOGOS FOOTER */
.payment-logos {
    width: 50px;
}

#error-field {
    margin-top: 20px;
}





/*  ERROR MESSAGES  */
#error-message {
    border-radius: 0px;
    margin-top: 20px;
    max-width: 300px;
}

.custom-alert {
    border-radius: 0px;
    margin-top: 20px;
    max-width: 300px;
}

.loader {
    display: none;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid var(--secondary-color); /* Blue */
    border-radius: 50%;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* CUSTOM INPUT */
.input-field {
    padding: 10px;
    border: 1.5px solid var(--primary-color);
}


.euro-price {
    font-size: 10px;
}




/* HEADER */
#first-header {
    padding: 20px 0px 20px 0px;
    width: 100%;
    display: flex; 
    flex-direction: row;
    align-items: center;
    position: relative;
}

.hamburger-menu {
    display: none;
    position: absolute;
    left: 7%;
}

.hamburger-menu > div {
    background-color: var(--secondary-color);
    position: relative;
    width: 30px;
    height: 3px;
}


#hm__middle-bar {
    margin-top: 8px;
    margin-bottom: 8px;
}

.cart-bag-wrapper {
    position: absolute;
}

.cart-bag {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

#cb__desktop {
    position: absolute;
    right: 5%;
}

#cb__mobile {
    display: none;
    position: absolute;
    right: 5%;
}


.header_1__col {
    width: 33.33%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#header-logo {
    width: 50%;
}

.prime-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.prime-logo-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header__add-info__text {
    margin-bottom: 0px;
}

.additional-info-wrapper {
    display: flex;
}

#second-header {
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    padding: 15px 0px 15px 0px;
    background: white;
    position: relative;
    z-index: 10;
}

#sh__container {
    position: relative;
}

.navbar-links {
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.navbar-link-wrapper {
    color: white;
    padding: 0px 15px 0px 15px;
}

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

.navbar-link {
    color: var(--primary-color);
    font-weight: 600;
}

.order-status {
    display: none;
}

.order-status > h6 {
    margin-bottom: 0px;
    margin-right: 15px;
}

#check-order-status-btn {
    background-color: white;
    color: black;
}

.navbar-link:hover {
    color: var(--secondary-color);
}

.header__add-info__text {
    padding: 12px;
    font-size: small;
}


@media only screen and (max-width: 650px) {
    .header_1__col {
        width: 100%;
    }

    #h1__col1, #h1__col3 {
        display: none;
    }

    #second-header {
        flex-direction: column;
        position: absolute;
        left: -80%;
        background: var(--primary-color);
        padding: 15px 0px 15px 0px;
        z-index: 102;
        height: 100vh;
        width: 80%;
        transition: all 0.3s ease;
    }

    #first-header {
        position: relative;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .prime-logo-wrapper {
        padding: 0% 30%;
    }

    #header-logo {
        width: 100%;
    }

    .navbar-links {
        flex-direction: column;
    }

    .navbar-link-wrapper {
        margin-bottom: 20px;
    }

    .navbar-link {
        color: white;
    }

    #cb__desktop {
        display: none;
    }

    #cb__mobile {
        display: flex;
    }
}

@keyframes header_invasion {
    from {
        left: -80%;
    }
    to {
        left: 0%;
    }
}

@keyframes header_withdrawal {
    from {
        left: 0%;
    }
    to {
        left: -80%;
    }
}


#toggle1 {
    display: none;
}
  
#toggle1:checked + .hamburger-menu #hm__top-bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
#toggle1:checked + .hamburger-menu #hm__middle-bar {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -3px;
    margin-bottom: -3px;
}
  
#toggle1:checked + .hamburger-menu #hm__bottom-bar {
    -webkit-transform: scale(0);
    transform: scale(0);
}

#toggle1:checked + .hamburger-menu > div {
    width: 35px;
}
  

/* NEWSLETTER */

.newsletter-section {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    width: 100%;
    background-color: var(--secondary-color);
}

.newsletter-wrapper {
    width: 100%;
    display: flex;
}

#nl__tp, #nl__fp {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

#nl__tp {
    text-align: center;
}

.nl__input {
    width: 80%;
}

#nl__fail-mark, #nl__success-mark {
    display: none;
}

#after-submit {
    padding-top: 50px;
    padding-bottom: 50px;
}

.nl__response-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#nl__response-text {
    margin-top: 30px;
}

@media only screen and (max-width: 650px) {
    .newsletter-section {
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .newsletter-wrapper {
        flex-direction: column;
    }

    #nl__tp, #nl__fp {
        width: 100%;
        padding: 0px;
    }

    #nl__fp {
        margin-top: 30px;
    }
}



/* REVIEWS */

.rating-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rating-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-content {
    display: flex;
    flex-direction: row;
}

.rating-unit {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    margin-right: 50px;
}

.rating-reviews {
    margin-top: 3%;
    display: flex;
}

.review-widget {
    width: 50%;
    padding: 10px;
}

.review-widget-rating {
    width: 50%;
    margin-bottom: 10px;
}

.review-widget-wrapper {
    width: 50%;
    display: flex;
    flex-direction: row;
}

.review-rating {
    width: 10%;
}


@media only screen and (max-width: 650px) {
    .rating-content {
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
    }

    .rating-reviews {
        flex-direction: column;
    }
    
    .rating-unit {
        margin-right: 0px;
    }

    .review-widget-wrapper {
        width: 100%;
    }

    .review-rating {
        width: 30%;
    }
    
    
}



/* INFO BOXES */

#info-boxes-section {
    width: 100%;
    background-color: #f3f3f3;
}

.info-boxes {
    padding: 15px 0px 15px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}


.info-box {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box-img-wrapper {
    display: flex;
    justify-content: center;
    width: 30%;
}

.info-box-img {
    width: 40%;
    height: 100%;
}

.info-box__p {
    margin-bottom: 0px;
    color: #6f6f6f;
}


@media only screen and (max-width: 650px) {
    #info-boxes-section {
        margin-bottom: 0px;
    }
    
    .info-boxes {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .info-box {
        width: 100%;
    }

    #middle-info-box {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .info-box-img {
        width: auto;
        height: 50px;
    }
}




/* FOOTER */

#base-footer {
    background-color: #e9e9e9;
}

.footer-content-wrapper {
    padding: 50px 0px 0px 0px;
    display: flex;
    flex-direction: column;
}

.footer-widget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-widget {
    width: 30%;
    text-align: center;
}

.footer-widget-link {
    text-decoration: none;
    color: black;
}

.widget-links-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.footer-end-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 20px 0px;
}

@media only screen and (max-width: 650px) {
    .footer-widget-wrapper {
        flex-direction: column;
    }

    .footer-widget {
        width: 100%;
        margin-bottom: 40px;
    }
}




@media only screen and (max-width: 650px) {
    .content-wrapper__s1 {
        padding: 0px 20px;
    }

    .site-title {
        margin-bottom: 40px;
    }
}