/*
Theme Name: keypak
Description: tbk Creative Child Theme
Template: tbk-ba3e-theme
Author: tbk Creative
Author URI: http://www.tbkcreative.com
Theme URI:  http://www.tbkcreative.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-theme
*/

.order-details--totals table {
	float: right;
	width: 70%;
}
.order-details--totals table tbody tr td:first-child {
	width: 35%;
}


/* CART */

.wc-block-cart-items__row .wc-block-cart-item__image img {
	margin: 0 auto !important;
	width: 90% !important;
}
.wc-block-cart-items__row.loading .wc-block-cart-item__image img {
	visibility: hidden;
}
.hide-meta-image-links .wc-block-components-product-details__image-links,
.wc-block-components-product-details__custom-title,
.wc-block-components-product-details__has-remove-link {
	display: none;
}
.wc-block-cart-item__prices {
	display: none !important;
}
.wc-block-cart-item__image {
    position: relative; /* Position the spinner in the image container */
}


/* SPINNER */

/* Spinner overlay */
.spinner-overlay {
    position: absolute;
    top: 5.5em;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* Spinner animation */
@keyframes spin {
	from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
