/* custom-checkout.css */

.hide {
    display: none;
}

.mm-checkoutContainer {
    max-width: 100% !important;
    width: 90% !important;
    margin-top: 1rem;
}

.mm-checkoutContainer .mm-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
}

.mm-container .mm-checkoutSection {
    flex: 0 1 34%;
    max-width: 34%;
    min-width: 220px;
    float: none;
}

.mm-container .mm-checkoutInfo {
    flex: 0 1 66%;
    max-width: 66%;
    margin-right: 0;
}

#mm-captcha-information-section {
    border: 0;
    padding-left: 0;
}

.free-download a.mm-button.large.orange {
    width: auto !important;
}

/* Responsive adjustments for medium screens (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .mm-checkoutContainer .mm-container {
        gap: 3rem; /* Reduce the gap between elements for smaller screens */
    }
}

/* Responsive adjustments for small screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .mm-checkoutContainer .mm-container {
        gap: 2rem;
        flex-direction: column-reverse;
    }

    .mm-container .mm-checkoutSection {
        flex: 0 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 220px;
        float: none;
    }
    
    .mm-container .mm-checkoutInfo {
        flex: 0 1 100%;
        max-width: 100%;
        margin-right: 0;
    }
}