/* Trust Badges Section */
.checkout-trust-badges {
    text-align: center;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(16,35,33,.08);
}

.checkout-trust-badges img {
    max-height: 30px;
    margin: 0 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.checkout-trust-badges img:hover {
    opacity: 1;
}

/* Make sure trust badges appear above the place order button */
.woocommerce-checkout .woocommerce-checkout-payment .checkout-trust-badges {
    margin-bottom: 18px;
    order: -1; /* Puts it before the payment gateaway / place order button */
}

/* Potentially add this to the order review column as well on larger screens */
@media (min-width: 992px) {
    .woocommerce-checkout .woocommerce-checkout-review-order .checkout-trust-badges {
        margin-top: 20px;
        padding-top: 15px;
    }
}