body {
    margin: 0;
    font-family: sans-serif;
    font-family: "Poppins", sans-serif;
}
#widget {
    display: none;
}
.checkout-bg {
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(109.08deg, #07BAC5 0.8%, #1C3BAA 99.85%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkout-modal {
    border: 2px solid #6CE6E7;
    background: #FFF;
    border-radius: 20px;
    padding: 32px;
    margin: 20px 0;
    max-width: 360px;
    min-width: 360px;
}
.checkout-modal .title{
    color: #127BB8;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid #43B0F1;
}
.checkout-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 22px;
}
.checkout-cards .single-card {
    background: #F9F9F9;
    border: 2px solid #F2F2F2;
    border-radius: 13.22px;
    padding: 14px;
}
.checkout-cards .single-card .card-title {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}
.card-buttons {
    padding: 10px;
    background: white;
    box-shadow: 0px 2px 4px -2px #2D36430F;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 16px;
}
.card-buttons button{
    cursor: pointer;
    padding: 14px 0;
    background-color: #12326C;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    border: none;
}
.card-buttons button:disabled{
    opacity: 0.7;
    cursor: no-drop;
}