/* AJAX Add to Cart Styles */
.product-item .ajax-add-to-cart-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}

/* Spinner */
.ajax-loading {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Input number arrow hiding */
.ajax-qty-input::-webkit-outer-spin-button,
.ajax-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ajax-qty-input {
    -moz-appearance: textfield;
}