html,body {
    height: 100%;
}

body {
    font-family: 'Arial, Helvetica', sans-serif;
    letter-spacing: 0.05em;
}

button {
    letter-spacing: 0.04em;
}

.black-bg {
    background-color: black !important;
}

.loading-cover {
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s;
    opacity: 1;
    pointer-events: all;
}

.loading-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

.round {
    border-radius: 24px !important;
}

.round-top {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.nav-bar {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-bar-margin {
    padding-top: 64px;
}

.avatar {
    display: block;
    text-decoration: none;
}

.avatar.dropdown-toggle::after {
    display: none;
}

.avatar img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

.fc-black-50 {
    color: hsl(0, 0%, 50%);
}

.fs-sm {
    font-size: 0.9rem;
}

.fs-xsm {
    font-size: 0.8rem;
}

#map {
    height: 450px;
}

.white-to-bottom-gradient {
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 55%);
}

.card-tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 64px;
    justify-content: center;
    position: relative;
}

.nav-link.card-tab {
    color: black;
}

.nav-link.card-tab::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: hsl(0, 0%, 85%);
}

.grey-border-top {
    border-top: solid 1px hsl(0, 0%, 85%);
}

.nav-pills .nav-link.card-tab.active, .nav-pills .show>.nav-link.card-tab {
    background-color: transparent;
    color: black;
}

.nav-link.card-tab.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;
}

.radio-box {
    width: 24px;
    height: 24px;
    border: solid 2px black;
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.radio-box.checked::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
}

.btn-outline-secondary {
    border-color: hsl(0, 0%, 85%);
}