body {
    width: 100%;
    overflow-x: hidden;
}

/* CHECKOUT STYLING */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    scrollbar-width: none;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"] + label {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #00adb5;
    background-color:rgba(0, 172, 181, 0.22);
}

.dropdown-fade-in {
    animation: dropdownFadeIn 0.2s ease-in-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* CHECKOUT STYLING END */
