html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

h1, h2, h3, button {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

button, .btn {
    font-size: larger;
    border: 1px solid #F9AA5F;
    background-color: #F9AA5F;
    padding: 0.25rem 2rem 0rem 2rem;
    border-radius: 3rem;
    color: white;
}

.btn-primary {
    background-color: #F9AA5F;
}

button:hover, .btn-primary:hover, .btn-secondary:hover {
    background-color: #F9AA5F;
    color: #777;
    border-color: #777;
}

a {
    color: #FFAD4D;
}

header .logo img {
    height: 5rem;
    margin: 1rem 3rem;
}

.banner {
    height: 12rem;
    background-image: url(/images/header.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 1rem 3rem;
    font-weight: 500
}

.banner.preferences-header {
    margin-bottom: 1rem;
}

.side-padded {
    padding-left: 3rem;
    padding-right: 3rem;
}

.quick-actions>* {
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 1rem;
}

    .quick-actions button {
        width: 100%;
        margin-top: 1rem;
    }

@media (min-width: 768px) {
    .quick-actions button {
        width: auto;
    }
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    border-radius: 50%;
    border-color: #999;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    margin-top: 0.05rem;
    margin-right: 0.25rem;
}

    .form-check-input:checked {
        background-color: #F9AA5F;
        border-color: #F9AA5F;
    }

.form-check-label {
    cursor: pointer;
    padding-top: 0;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
}