
label {
    display: inline-block;

    cursor: pointer;
}

.btn-list,
.btn-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    margin: 0;
    padding: 0;

    list-style: none;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-list {
    margin-right: -10px;
    margin-left: -10px;
}

.btn-list li {
    flex-direction: column;

    padding: 10px;

    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
}

.btn-list a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;

    min-height: 48px;
    padding: 5px 15px;

    text-align: center;
    text-decoration: none;

    color: inherit;
    border: 1px solid #8d8d8d;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.btn-list a,
.btn-list a * {
    -webkit-transition: .35s;
    -moz-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}

.btn-list .name {
    font-weight: bold;

    display: block;

    max-width: 300px;

    text-transform: uppercase;

    color: #1b3e90;
}

.btn-list a:hover {
    border-color: #1b3e90;
    background: #1b3e90;
}

.btn-list a:hover,
.btn-list a:hover * {
    color: #fff;
}

.btn-list.banks a {
    padding: 5px;
}

.btn-list.banks a:hover {
    background: #f6f4ec;
}

button,
.button {
    font-size: 13px;
    line-height: 26px;

    display: inline-block;

    padding: 3px 15px;

    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;

    color: #000;
    border: 1px solid #8d8d8d;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
}

.button:hover,
button:hover {
    color: #fff;
    border-color: #1b3e90;
    background: #1b3e90;
}

.required {
    font-size: 12px;
    color: #C80805;
    margin-top: 5px;
}

#signature {
    border: 1px solid #000;
}

.gui-form .gui-field + .gui-field {
    margin-top: 10px;
}

.gui-form .gui-field label {
    margin-bottom: 0;
}

@media (min-width: 768px) {

    .details {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .details dt {
        grid-column: 1;
        padding-right: 1em;
        padding-bottom: .5em;
    }

    .details dd {
        grid-column: 2;
        padding-bottom: .5em;
    }
}

.message {
    font-weight: bold;
    color: #0057A5;
    background: #fff;
    padding: 1em;
    margin: 1em 0;
    border: 1px solid #0057A5;
}