html {
    font-size: 62.5%;
}

body {
    font-family: "Roboto",Arial,Helvetica,sans-serif;
    font-size: 1.6rem;
}

h1, h2 {
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

p + h2 {
    margin-top: 3.2rem;
}

.container {
    max-width: 1440px !important;
}

.container.text-container {
    max-width: 60rem !important;
}

section {
    padding: 60px 0;
}

@media (max-width: 1023px) {
    section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 30px 0;
    }
}

@media (min-width: 991px) {
    span.small-label {
        display: none;
    }
}

td {
    background: transparent !important;
}

.form-control, .form-select {
    font-size: 1.6rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: none !important;
    border-color: #f8971d;
}

.btn {
    font-size: 1.6rem !important;
}

.btn-primary {
    background-color: #f8971d;
    border-color: #f8971d;
}

.btn-primary:hover {
    background-color: #d67a06;
    border-color: #d67a06;
}

header {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 15px;
}

header img {
    margin: 0 auto;
}

@media (max-width: 767px) {
    header {
        padding: 10px 15px;
    }

    header img {
        max-height: 36px;
    }
}

@media (max-width: 1199px) {
    td.units {
        padding-bottom: 1rem;
        vertical-align: bottom;
    }
}

.result-success, .result-error {
    margin-bottom: 1rem;
    padding: 1.5rem 5rem 1.5rem 2rem;
    position: relative;
}

.result-success {
    background-color: #d1e7dd;
    color: #0a3622;
}

.result-error {
    background-color: #f8d7da;
    color: #58151c;
}

.result-success button, .result-error button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.result-success button {
    color: #0a3622;
}

.result-error button {
    color: #58151c;
}

.show-error {
    color: #ff0000;
    display: block;
    font-size: 0.8125em;
}