:root {
    --primary-color: #0054a1; /* define primary color */
    --secondary-color: #FFD600; /* define secondary color */
    --background-primary-color: #eaf3ff;
    --discount-color: #ed3b3b;
    --success-color: #4BB543;
    --error-color: #ed3b3b;
    --success-faded: #b0d3ae;
    --error-faded: #e8b4b4;
}

@font-face {
    font-family: 'LOEW Next';
    src: url('/assets/fonts/loew-next/LoewNext-Medium.woff2') format('woff2'),
         url('/assets/fonts/loew-next/LoewNext-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'LOEW Next', 'Roboto', sans-serif;
}
  
  /* Body and other text stays Roboto */
body {
    font-family: 'Roboto', sans-serif;
}
  
  
  

a:hover {
    color: var(--secondary-color);
}

.section {
    border-radius: 15px;
}

@media only screen and (max-width: 768px) {
    .section {
        border-radius: 0px !important;
    }
}


.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;
    overflow: hidden;
}

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

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


.nav-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}




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

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


@media only screen and (max-width: 1050px) {
    .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;
    }
}


.nav-item {
    margin-right: 10px;
}
  
.nav-link {
    color: #333;
    text-decoration: none;
}
  
.dropdown {
    position: relative;
}
  
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}
  
.dropdown:hover .dropdown-menu {
    display: block;
}
  
.dropdown-item {
    display: block;
    padding: 10px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}
  
.dropdown-item:hover {
    background-color: #e9ecef;
}

.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 {
    width: 30px;
    height: auto;
}

.cart-icon-count {
    position: absolute;
    display: flex;
    width: 25px;
    height: 25px;
    font-size: small;
    top: 0px;
    right: 0px;
    padding: 3px;
    background: var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.price-tag-value {
    font-size: small;
}


.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-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 */ 

.button-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;
    border-radius: 15px;
}

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

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

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

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

.button-black {
    align-items: center;
    background-color: black;
    border: 2px solid black;
    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;
    border-radius: 15px;
}

.button-black:focus {
    background: white;
    color: black;
}

.button-black:hover {
    background-color: #fff;
    border-color: black;
    color: black;
    fill: #fff;
}

.button-black:active {
    border-color: black;
    color: white;
    fill: black;
}


.btn-outlined {
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    color: var(--primary-color);
    cursor: pointer;
    display: inline-flex;
    fill: var(--primary-color);
    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;
}





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

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

.payment-logo-medium {
    width: 200px;
}





/*  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);
    border-radius: 15px;
}


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




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

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

.hamburger-menu > div {
    background-color: var(--primary-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;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 5px; 
    text-decoration: none;
    color: white;
    padding: 10px;
}

#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: 70%;
}

.prime-logo-wrapper {
    display: flex;
    flex-direction: column;
    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 {
    margin-top: 15px;
    display: block;
    padding: 15px 0px 15px 0px;
    background: white;
    position: relative;
    z-index: 10;
}

#sh__container {
    position: relative;
    display: flex;
}

/*
.header-logo-wrapper {
    width: 18%;
}
*/

@media only screen and (max-width: 650px) {
    #second-header {
        margin-top: 0px;
        display: block !important;
    }

    /*
    .header-logo-wrapper {
        display: none;
    }
    */
}

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

@media only screen and (max-width: 768px) {
    .navbar-links {
        
    }
}

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

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

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

.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: 1050px) {
    .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;
        border-top-right-radius: 20px;
    }

    #first-header {
/*        position: relative;
*/
        display: flex; 
    }

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

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

    .header-logo-wrapper {
        display: none;
    }

    #header-logo {
        width: 100%;
    }

    .navbar-links {
        flex-direction: column;
        margin-left: 25px;
        align-items: start;
        gap: 30px;
        margin-top: 25px;
    }

    .navbar-link-wrapper {
/*        margin-bottom: 20px;
*/
        padding: 10px 15px 10px 15px;
        background-color: white;
        border-radius: 10px;
        width: 40vw;
        transition: all 0.3s ease;
        text-align: center;
    }

    .navbar-link-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
      }

    .navbar-link {
/*        color: white;
*/
        font-weight: bold;
    }

    #cb__desktop {
        display: none;
    }

    #cb__mobile {
        display: flex;
    }
    
    @keyframes header_invasion {
        from {
            left: -100%;
        }
        to {
            left: 0%;
        }
    }
    
    @keyframes header_withdrawal {
        from {
            left: 0%;
        }
        to {
            left: -100%;
        }
    }
}





#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(--background-primary-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: 50px 20px;
    }

    .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: 40%;
    margin-bottom: 10px;
}


@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: 60%;
    }
}


#review-wrapper {
    display: none;
}

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

.section-head-notice {
    font-size: xx-large;
}

.small__{
    font-size: 1rem;
}

.reviews {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style-type: none;
    padding-left: 0px;
}

#reviews-slider {
    margin-top: 30px;
}

.review-grade {
    background: linear-gradient(120deg, var(--primary-color) 22%, #78AAD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}

@media only screen and (max-width: 650px) {
    .review-grade-image {
        width: 60%;
    }
}

.review {
    border: 4px solid var(--secondary-color);
    border-radius: 15px;
    padding: 10px;
    margin: 30px 0px;
    flex-direction: column;
}

.review-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}

.rating-stars {
    color: #e7c92e;
}

.review-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.new-review {
    display: flex;
    flex-direction: column;
}

#rating {
    margin-bottom: 10px;
}

.new-review-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
}

.review-image-holder {
    margin-top: 10px;
    display: flex;
}

.review-image {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}




/* INFO BOXES */

#info-boxes-section {
    width: 100%;
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 0px;
}

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


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

.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: #4c4c4c;
    font-weight: 500;
    text-transform: uppercase;
}


@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 {
        height: auto;
        width: 60px;
    }

    .info-box__p {
        margin-top: 10px;
    }
    
}




/* 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 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
}

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

.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;
    }
}



/* Response messages */

.response-message {
    font-weight: 500;
}

.error-message {
    color: var(--error-color);
}

.success-message {
    color: var(--success-color);
}


@media screen and (max-width: 650px) {
    .faq-wrapper {
        padding: 0px 15px;
    }
    
}

.faq_header-title{
    font-size: 24px;
    color: black;
    margin-bottom: 30px;
}

.faq__panel{
    padding: 7px 21px;
    margin-bottom: 24px;
    border: 3px solid black;
    border-radius: 15px;
}

.faq__label{
    padding-block: 7px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

.faq__panel-answer{
    color: black;
    padding-top: 5px;
    padding-bottom: 7px;
}


/* Styles for the spinner overlay */
#main-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(246, 246, 246);
    display: none;
    z-index: 9999;
}

.main-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Styles for the spinner */
.main-spinner {
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    border-top-color: #007bff;
    animation: spinner-rotation 0.8s linear infinite;
    box-sizing: border-box; /* New line */
}

.main-spinner-text {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

@keyframes spinner-rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.content-wrapper__s1 {
    padding: 50px 20px;
}


/* SOCIAL MEDIA ICONS */

.social-media-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    width: 50%;
}

.social-media-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-media-icon {
    width: 40px;
    height: 40px;
}

#countdown {
    font-weight: 800;
    color: #ff4c5d;
}

#countdown-text {
    font-size: small;
    font-weight: 600;
    color: #ff4c5d;
}



#instagram-section {
    margin-top: 50px;
}

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

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.social-review-card {
    flex: 0 0 auto;
    width: 300px; /* Adjust based on your preference */
    margin-right: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.social-review-image {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.social-review-content {
    padding: 15px;
}

.social-review-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.social-review-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.social-review-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
}

.remove-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 15px;
}

.remove-icon {
    width: 25px;
    height: 25px;
}

.button-croatia {
    background: url("/assets/graphics/base/buttons/croatia-button.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 180px !important;
    height: 60px !important;
}


.button-croatia > span {
    color: var(--primary-color);
    background: white;
}



.coins-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.newsletter-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    position: relative;
    color: var(--primary-color);
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}

input {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #00315F;
}

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

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.before-title {
    text-transform: uppercase;
    font-weight: 300;
}

.button-modern {
    color: #00315F;
    font-weight: 600;
    font-size: x-large;
    letter-spacing: 0.8px;
    background: none;
    border: none;
    width: fit-content;
    align-self: center;
}



.header-discount-banner {
    background-color: rgb(250, 75, 75);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
    border-radius: 25px;
    width: 90%;
    margin: 6px auto;
}

.header-discount-banner > span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}