html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    font-family: 'Asap', sans-serif;
    overflow-y: scroll;
}

.container {
    max-width: 960px;
}

main {
    margin-bottom: 110px;
}

h1, h2, h3, h4, h5, h6, .form-label {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    color: #0099cc;
}

.form-label, p, span, .card-body, .alert {
    color: #666666;
}

a {
    color: #f11404;
}

.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;
}

.btn-primary, .btn-secondary {
    background-color: #0099cc;
    border-color: #0099cc;
}

    .btn-primary:hover, .btn-secondary:hover {
        background-color: #007399;
        border-color: #007399;
    }

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

    .card-body p {
        margin: 0;
    }

.hidden {
    display: none;
}

nav a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    margin-right: 0 !important;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1.5em;
    font-size: 0.9em;
    margin-top: 30px;
}


.week-view {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-left: 2em;
    margin-right: 2em;
}

.week-day {
    width: 18%;
    padding: 0;
    text-align: center;
}

    .week-day .btn {
           margin: 5px;
    }

    .week-day p {
        margin: 0;
    }

@media (max-width: 770px) {
    .week-day .btn.btn-sm.btn-secondary {
        max-width: 4em;
        line-height: 1.25em;
    }
}

.week-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.week-day-header {
    width: 18%;
    text-align: center;
}

    .week-day-header p {
        margin: 0;
        font-size: 0.8em;
    }

.list-group-item.list-group-item-action {
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
}

    .list-group-item.list-group-item-action > img {
        max-width: 100px;
        border-radius: 100%;
    }

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loadingLogo {
    width: 200px;
    animation: rotate 5s linear infinite;
    margin-bottom: 100px;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
