
/* TODO: Move to webpack */

.bs24-section.--outline {
    border-radius: 10px;
}

.bs24-section.--outline h2.products-section-title {
    animation: pulseText 3.5s ease-in-out 3.5s infinite;
    /* The rest moved to theme */
    /* ... */
}

.bs24-choose-slider-content li {
    display: flex;
}

.bs24-choose-slider-content li .clickable {
    cursor: pointer;
    transition: all 1s ease-in-out;
}
.bs24-choose-slider-content li:hover .clickable {
    text-decoration: underline;
}

.bs24-choose-slider-content li.--active .clickable,
.bs24-choose-slider-content li.--active:hover .clickable {
    color: rgba(221, 110, 66, 1);
    cursor: default;
    text-decoration: none;
}

.bs24-products-slider__product {
    transition: all .1s ease-in-out;
    border-radius: 10px;
    padding: 8px;
}
.bs24-products-slider__product:hover {
background: #fff;
}

/* .bs24-products-slider__product .product-description {
    text-align: left;
} */

/* .bs24-products-slider__product .product-description > * {
    width: fit-content;
} */

.bs24-products-slider__product .product-description .delivery-in-stock {
    margin-bottom: 4px;
}

@keyframes pulseText {
    0%, 100% {
        color: rgba(221, 110, 66, 1);
    }

    50% {
        color: #000;
    }
}


/* ***************************************************** */

.bs24-section.--outline {
    background: none;
    /* ORANGE */
    /* box-shadow: 0px 0px 10px 1px rgba(221, 110, 66, 1); */

    /* GRAY */
    /* box-shadow: 0px 0px 10px 1px rgba(44, 44, 44, 0.08); */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}

.bs24-section.--outline .product-thumbnail {
    padding: 8px;
}

.bs24-section.--outline.--has-background .product-thumbnail::after {
    content: none;
    display: none;
}

.bs24-section.--outline .product-thumbnail::after,
.bs24-section.--outline.--has-background .product-thumbnail::before {
    pointer-events: none;
    content: "";
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bs24-section.--outline .product-thumbnail::after {
    /* background: rgba(0, 0, 0, .0509803922); */
    background: rgb(137 131 118 / 10%);
}


.bs24-section.--outline.--has-background .product-thumbnail::before {
    background: #fff;
}

.bs24-section.--outline .product.is-favourite .product-miniature .variant-links,
.bs24-section.--outline .product.is-favourite .product-miniature .product-title {
    margin-top: 4px;
}

.bs24-section.--outline .variant-links,
.bs24-section.--outline .product-title {
    z-index: 2;
}

.bs24-section.--outline span.delivery-cost {
    background: rgba(221, 110, 66, 1) !important;
    width: fit-content;
    /* color: #fff !important; */
    color: #fff;
    /* margin: 0 auto; */
    margin: 0;
    padding: 0 6px;
    border-radius: 10px;
}

.bs24-products-slider__product .product-title {
    height: auto !important;
}

.bs24-products-slider__product .product-description {
    text-align: left;
    border: none;
}

.bs24-products-slider__product .product-description > * {
    width: fit-content;
    max-width: 100%;
}

.bs24-products-slider__product .product-price-and-shipping {
    font-size: 20px !important;
}

/****  SPLIDE SETTINGS  ****/
.bs24-products-slider .splide__arrow--prev {
    left: -2.1em;
}
.bs24-products-slider .splide__arrow--next {
    right: -2.1em;
}