#product-error-container {
    padding: 15px;
    background-color: #fdd;
    border: 1px solid #f00;
    color: #a00;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
}

#product-error-container.show {
    opacity: 1;
}

#products-container {
   background-color: #ffffff;
}

.woe-element-container {
    width: 100%;
}

#woe-response-wrapper {
    transition: top 0.6s ease;
}

#woe-response {
    display: flex;
    flex-direction: column;
}

.woe-posts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.woe-posts__load-more {
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.25em;
    padding: 0.5em 2em 0.5em 2em;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 1rem;
    transition: .3s ease-in-out all;
}

.woe-posts__load-more:hover {
    background-color: var(--primary);
}

.woe-post {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border-radius: var(--border-rad);
    overflow: hidden;
    width: calc(33.33% - 1rem);
    gap: 1rem;
    transition: .3s ease-in-out all;
	position:relative;
}

.woe-post>a {
    display: flex;
    flex-direction: row;
    align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}

.woe-post:hover {
    box-shadow: 0px 10px 15px -15px rgba(0, 0, 0, 0.75);
}

.woe-post__image-wrapper {
    order: -1;
    position: relative;
    width: 37%;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 5px;
}

.woe-post__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    padding: 5px 0 5px 10px;
}

.woe-post__body-container {
    width: 63%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    padding: 5px;
}
.woe-cat-wrapper {
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.woe-cat-wrapper picture {
height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.woe-post__footer {
    font-size: clamp(1.2rem, 1.578vw + 0.244rem, 2rem);
    line-height: var(--oxy-small-line-height);
    font-weight: 500;
	color: #000000;
}

.woe-post__link {
    font-size: 1rem;
    font-weight: 600;
}

.woe-post__heading {
    font-size: clamp(1.4rem, 1.578vw + 0.244rem, 2.2rem);
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary-40);
	padding-right:15px;
}

.woe-post__text {
    margin-top: 1em;
    margin-bottom: 1em;
    color: rgba(0, 0, 0, .65);
    font-weight: 400;
}

.woe-post__text p {
    margin: 0;
    font-size: 12px;
    color: #acacac;
}

.woe-post__category-container {
    display: flex;
    gap: 0.5em;
    overflow: hidden;
}

.woe-post__category {
    color: white;
    background-color: var(--primary-80);
    border-radius: 0.15em;
    padding: 0 1rem 0 1rem;

}
.woe-goto {
position: absolute;
    bottom: 8px;
    right: 8px;
}
.woe-fadeIn {
    animation-name: woe-fadeIn;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

.woe-fadeOut {
    animation-name: woe-fadeOut;
    animation-duration: 0.4s;
    animation-timing-function: ease;
    opacity: 0;
}

.woe-loading {
    opacity: 0;
}

@keyframes woe-fadeOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1)
    }

    1% {
        opacity: 0.5;
        transform: scale(0.9)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.8)
    }
}

@keyframes woe-fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(1)
    }

    1% {
        opacity: 0.2;
        transform: scale(0.2)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1)
    }
}

.woe-radio-toolbar {
    cursor: pointer;
}

.woe-radio-toolbar input[type="radio"] {
    display: none;
}

.woe-radio-toolbar input[type="radio"]:checked+label {
    background-color: var(--primary-40);
    border-color: var(--primary-40);
    color: white;
}

.woe-category-thumbnail {
    width: 80px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    max-width: 100%;
}

.product-nav-previous {
    text-align: right;
    width: 6% !important;
    justify-self: revert-layer;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-next {
    text-align: right;
    width: 6% !important;
    justify-self: revert-layer;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-previous.hide,
.product-nav-next.hide {
    display: none;
}

.product-nav-previous svg,
.product-nav-next svg {
    fill: var(--primary);
    opacity: .35;
    transform: scale(.8);
}

@media screen and (max-width: 1023px) {
    .woe-post {
        width: calc(50% - 1rem);
    }
}

@media screen and (max-width: 479px) {
    .woe-post {
        width: 100%;
    }

    .woe-post__body-container {
        width: 63%;
    }

    .woe-post__image-wrapper {
        width: 37%;
    }
}