/* Loader Styles */
#ms-loader {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border-radius: 10px;
    text-align: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stripe-product-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
}

.stripe-product-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.stripe-product-card .container {
  padding: 2px 16px;
}
.stripe-product-card span.woocommerce-Price-amount.amount {
    margin-right: 40px;
}
.stripe-product-card p.product.woocommerce.add_to_cart_inline {
    padding: 13px;
}
/*.stripe-product-card .container {*/
/*    width: 50%;*/
    /* margin: 30px; */
/*    position: relative;*/
/*    right: 25%;*/
/*}*/