/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.woocommerce-Reviews {
    display: flex;
    flex-direction: column;
}

.review-disclaimer {
    max-width: 450px;
    color: rgba(0, 0, 0, 0.7)
}

.review-disclaimer-link {
    color: #00A04A;
    text-decoration: underline;
}

.yith-wapo-addon.yith-wapo-addon-type-product .product-container .product-image {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.yith-wapo-addon.yith-wapo-addon-type-product .product-container .product-image img {
    max-width: calc(100% - (1em + 10px)) !important;
}

.yith-wapo-addon.yith-wapo-addon-type-product .product-container .product-image::before {
    content: ' ';
    display: block;
    height: 1em;
    width: 1em;
    border: var(--wqm-bt) solid var(--wqm-border);
    border-radius: 50%;
}

.yith-wapo-addon.yith-wapo-addon-type-product .yith-wapo-option.selected .product-container .product-image::before {
    border-color: var(--wqm-sborder);
    background: var(--wqm-sborder);
    box-shadow: 0 0 0 var(--wqm-bt) var(--wqm-sborder);
    border: calc(var(--wqm-bt) + 1px) solid var(--wqm-sbg);
}

.yith-wapo-addon.yith-wapo-addon-type-product .product-container {
    border: var(--wqm-bt) solid var(--wqm-border) !important;
    border-radius: var(--wqm-br) !important;
}

.yith-wapo-addon.yith-wapo-addon-type-product .yith-wapo-option.selected .product-container {
    border-color: var(--wqm-sborder) !important;
}

.yith-wapo-addon.yith-wapo-addon-type-product .yith-wapo-option.selected .product-container::after {
    visibility: hidden !important;
}

.woocommerce-mini-cart-item a.remove {
    top: 5px !important;
}

.yith-wapo-option .product-container .product-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.yith-wapo-option .product-container .product-name {
    width: calc(100% - 80px);
}

.yith-wapo-option .product-container .option-price {
    width: 70px;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: right;
}

.yith-wapo-option .product-container .option-add-to-cart {
    width: 100%;
}

.yith-wapo-option .product-container .option-add-to-cart .ux-quantity {
    display: inline-flex !important;
}

.yith-wapo-option .product-container .option-add-to-cart .ux-quantity input {
    height: 38.1px !important;
}

.slide-container-cnv {
    width: 100% !important;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    padding-top: 20px;
    overflow: hidden;
    z-index: 999;
    background-color: #fff;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}
.slide-cnv {
    display: flex;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: slideAnimation 12s infinite;
    font-family: Lato, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: hsl(0deg 0.02% 12.58% / 70%);
}

.reco-widget-cnv {
    margin-top: 20px;
}

.slide-cnv:nth-child(1) {
    animation-delay: 0s;
}
.slide-cnv:nth-child(2) {
    animation-delay: 4s;
}
.slide-cnv:nth-child(3) {
    animation-delay: 8s;
}
@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    9% {
        opacity: 1;
        transform: translateY(0);
    }
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    44% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}
.checkbox-icon-cnv {
    margin-right: 10px;
}

.header,
.header-wrapper {
    margin-top: 0px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/