/* Scroll-down arrow styles */
#scroll-down-arrow {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Position it on the right side */
    font-size: 60px; /* 3 times bigger (30px * 2= 90px) */
    color: #fff; /* Set arrow color to white */
    opacity: 1;  /* Full opacity to make it always visible */
    cursor: pointer;
    z-index: 9999;
    display: block; /* Ensure it's always displayed */
}

/* Bounce animation to make it noticeable */
#scroll-down-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}




/* Hide SKU from product pages */
.product_meta .sku {
    display: none;
}


.bt_bb_subheadline.bt_bb_headline .bt_bb_headline_subheadline {
    color: white;
	  opacity: 1;
}


.woocommerce-checkout {
    font-size: 19px; /* Change to your desired font size */
}


.woocommerce-checkout .woocommerce-shipping-methods label {
    color: #ED1C24 !important; /* Replace with your desired color */
}


/* Video on homepage 1st section*/
body {
    margin: 0;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}






/* Make webshop show no order of products */
.woocommerce-shop.archive .woocommerce-ordering {
   display: none;
}
/* Disable compare and wishlist in webshop  */
.single-product .wopb-compare-btn-wrap, .single-product .wopb-wishlist-btn-wrap {
  display: none;
}

@font-face {
    font-family: MyFont;
    src: url(https://whatuonabout.com/wp-content/uploads/2024/08/Futura-Condensed-Extra-Bold.otf);
}


/* Make all body text italic */
body {
    font-style: italic;
}

/* Make all headings italic */
h1, h2, h3, h4, h5, h6 {
    font-style: italic;
}

/* Make all paragraph text italic */
p {
    font-style: italic;
}

/* Make all list items italic */
li {
    font-style: italic;
}

/* Make all blockquote text italic */
blockquote {
    font-style: italic;
}

/* Make all table data text italic */
table, th, td {
    font-style: italic;
}

.jp-relatedposts {
    display: none;
}