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

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.wp-post-image {
    width: 100%;
    height: 285px;
    object-fit: contain;
    padding: 15px 0px;
}

.woocommerce-placeholder.wp-post-image {
    width: 100%;
    height: 270px;
    object-fit: contain;
    padding: 15px 0px;
}

.related-products-wrapper .woocommerce-placeholder.wp-post-image {
    width: 100%;
    height: 197px;
    object-fit: contain;
    padding: 5px 0px;
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: relative;
    float:right;
    top: 50%;
    /*left: 50%;*/
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: 10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
}