#content {
    padding-bottom: 80px;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    margin: auto;
}
#content > * {
width: 100%;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 25px;
}
.form-group{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.form-group label {
    font-size: 18px;
    font-weight: 500;
}
.form-group input, .form-group select, #checkout-checkout select{
    border-radius: 20px;
    width: 100%;
    border: 2px solid #000;
    font-size: 18px;
    font-weight: 500;
    padding: 16px;
    background-color: #fff;
    height: auto;
}

form fieldset {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
#content .buttons{
    display: flex;
    gap:40px;
    padding-top:20px;
}
#content .btn {
    display: block;
    padding: 20px 60px;
    border-radius: 15px;
    border: 1px solid transparent;
    background-color: #000;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    width: fit-content;
    transition: color 0.5s, background-color 0.5s;
}
#content .btn:hover {
    border-color: #000;
    background-color: #fff;
    color: #000;
}
#content form legend{
    font-size: 21px;
    padding-bottom: 20px;
}
#content .list-unstyled li{
    padding-bottom: 5px;
}
.table-bordered tr {
    border-bottom: 1px solid #000;
}
.table-bordered tr td{
    padding: 7px;
}
#content .radio-inline{
    display: inline-flex;
    gap: 7px;
    margin-right: 20px;
}
#payment-new .form-group{
    margin-bottom: 12px;
}
div.required .control-label:not(span):before, td.required:before {
    content: '* ';
    color: #ff6363;
    font-weight: bold;
}
/*.panel-title{
    padding: 5px 10px;
    margin-bottom: 10px;
    border:1px solid #ccc;
    background: #ccc;
    border-radius: 5px;
}
.panel-body {
    margin-bottom: 20px;
}
.text-danger{
    padding-top:5px
}*/
.hidden{
    display: none;
}
/*.form-horizontal .radio{
    padding: 5px;
}*/
