body {
    padding: 0;
    margin: 0;
    background-color: #ddd;
}

html,
body,
#loader-container,
#map {
    height: 100dvh;
    color: #333;
    font-family: var(--body-font-family), sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
}

#loader-container {
    width: 100vw;
    display: flex;
    position: absolute;
    z-index: 3000;
    background-color: rgba(255, 255, 255, 0.8);
}

#loader {
    border-radius: 30%;
    height: 100px;
    width: 100px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.disclaimer,
.rotate-screen {
    display: none;
    width: 100%;
    height: 100dvh;
    position: absolute;
    z-index: 3001;
    background-color: rgba(0, 0, 0, .6);
}

.rotate-screen {
    display: flex;
    backdrop-filter: blur(10px);
}

.rotate-screen-content {
    background-color: white;
    max-width: 300px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
}

.rotate-screen-content .image-container {
    margin: auto;
}

.disclaimer-content {
    width: 100%;
    background-color: white;
}

.disclaimer p {
    height: 100%;
    margin: 0;
    padding: 10px 10px 10px 50px;
}

.disclaimer .close {
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    left: 15px;
}

.disclaimer .close:hover,
.disclaimer .close:focus {
    text-decoration: none;
    cursor: pointer;
}

.image-container {
    max-width: 100px;
    max-height: 100px;
}

.image-container img {
    width: 100%;
    height: 100%;
}

input {
    font-family: var(--body-font-family), sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
}

a,
button {
    font-family: var(--body-font-family), DejaVu-Sans, sans-serif;
}

input,
button {
    color: black;
}

input[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-color: #fff;
}

input[type=button]:hover {
    background-color: #f4f4f4;
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--main-color);
}

.not-clickable {
    pointer-events: none;
}

details summary {
    cursor: pointer;
}

details,
details>div {
    padding: 5px 10px;
}

details.not-clickable>summary,
details.not-clickable>summary::-webkit-details-marker {
    list-style-type: '- ';
    cursor: default;
}

details>ul {
    margin: auto;
    padding-inline-start: 2em;
}

.bookmark {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 2rem;
    padding: 0;
}

.bookmark::after {
    content: "\2606";
}

.bookmark.active {
    color: var(--main-color);
}

.bookmark.active::after {
    content: "\2605";
}

.booth-number,
.booth-name,
.popup-title {
    font-weight: 900;
}

.booth-location {
    font-size: 0.8rem;
    font-weight: 700;
}

.booth-name,
.circle-name,
.leaflet-container a {
    color: var(--text-main-color);
}

.booth-name {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.booth-logo {
    display: flex;
}

.booth-logo-container {
    max-width: 200px;
    max-height: 200px;
    margin: auto;
}

.booth-logo-container img {
    width: 100%;
    height: 100%;
}

.category-tag,
.fandom-tag {
    background-color: #ddd;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: default;
    border-radius: 16px;
}