/** Button loading animation **/
.button.loading {
    position: relative;
    color: #003479;
    border-color: #003479;
    background: #003479;
    opacity: 1;
    pointer-events: none;
}

.button.loading:hover {
    color: #003479;
    border-color: #003479;
    background: #003479;
}

.button.loading:after {
    display: block;
    content: " ";
    position: absolute;
    top: 50%;
    right: 50%;
    left: auto;
    width: 16px;
    height: 16px;
    margin: -8px -8px 0 0;
    background-color: #ffffff;
    background-image: none;
    border-radius: 100%;
    -webkit-animation: dotPulse .65s 0s infinite cubic-bezier(.21, .53, .56, .8);
    animation: dotPulse .65s 0s infinite cubic-bezier(.21, .53, .56, .8);
}


/** Changes to minicart */
#side-cart .widget_shopping_cart_content .woocommerce-mini-cart .et-cart-panel-thumbnail-wrap img,
#side-cart .widget_shopping_cart_content .woocommerce-mini-cart .et-cart-panel-thumbnail-wrap svg {
    width: 80px;
    height: auto;
}


/** Changes to product category listing **/

.products .product.product-category a {
    background: transparent !important;
}

.products .product.product-category .category-thumbnail {
    position: relative;
    padding-top: 10px;
}

.products .product.product-category .category-thumbnail-wrapper {
    position: relative;
    padding: 30px !important;
    background: #eeeeee !important;
    border-radius: 10px;
    border-top: 2px #ffffff solid;
    overflow: visible !important;
    z-index: 3;
}

.products .product.product-category .category-thumbnail::before {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    top: 5px;
    bottom: 0;
    background: #eeeeee !important;
    border-radius: 10px;
    border-top: 2px #ffffff solid;
    z-index: 2;
}

.products .product.product-category .category-thumbnail::after {
    content: '';
    display: block !important;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    bottom: 0;
    background: #eeeeee !important;
    border-radius: 10px;
    border-top: 2px #ffffff solid;
    z-index: 1;
}

.products .product.product-category .category-thumbnail img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    transition: all .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.no-touch .products .product.product-category a:hover img {
    transform: translateY(-5px);
}

.products .product.product-category .category-caption {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    text-align: center;
}

.products .product.product-category .category-caption .woocommerce-loop-category__title {
    display: block;
    margin: 10px 0 0 0;
    padding: 0 0 5px 0;
    text-align: center;
}

.products .product.product-category .category-caption h2 .count {
    display: none;
}

.products .category-separator {
    display: none;
}


/** Changes to product listing **/
.products .add_to_cart_button.button {
    display: none;
}

.products .product .product_thumbnail>a {
    padding: 20px;
    height: 100%;
}

.products .product .product_thumbnail {
    position: relative;
    background-color: #eeeeee;
    border: 1px #eeeeee solid;
    border-radius: 10px;
    overflow: hidden;
}

.products .product .product_thumbnail img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    transition: all .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.no-touch .products .product-inner:hover .product_thumbnail img {
    transform: translateY(-5px);
}