body{overflow-x: hidden;}
#checkout {
    box-sizing: border-box;
    padding-top: 80px;
    width: 100%;
    min-height: 100vh;
}
#checkout form {
    /*margin: auto;*/
    max-width: 600px;
    margin: 50px auto;
    border: solid #ddd 1px;
    border-radius: 10px;
    padding: 10px 5px;        
}
#checkout form h1 {
    font-size: 2rem;
    text-align: center;
}
#checkout form .radio_options {
    font-size: 18px;
}
#checkout form fieldset:not(:first-child) {
    border-top: solid #CCC 1px;
    margin-top: 10px
}
#checkout .row {
    width: 100%;
    margin: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#checkout .row .field {
    width: 100%;
    padding: 0px 5px;
    text-align: left !important;
}
#checkout .row .field input {
    /*width: 100%;*/
    box-sizing: border-box;
}
.paymentBillet {
    padding: 20px;
    border: dotted 1px #CCC;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0px;
}
.action {
    margin-top: 20px;
}
.action button {
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    border: solid #5178CB 1px;
    cursor: pointer;
    font-size: 22px;
    background-color: white;
    color: #5178CB;
}
.action button:hover {
    background-color: #EEE;
}
.action button:active {
    background-color: #5178CB;
    color: white;
}
.action .loading {
    color: #5178CB;
    text-align: center;
}