#header {
    width: calc(100vw - 20px);
    height: 5vh;
    position: fixed;
    z-index: 9;
    background-color: #ffffff9e;
    backdrop-filter: blur(2px);
    padding: 10px;
}

.line {
    width: 100%;
    height: 5vh;
}

.line_element {
    height: 5vh;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pano {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    padding: 0px;
}

#compass {
    width: 15vw;
    max-width: 5cm;
    height: 15vw;
    max-height: 5cm;
    margin-top: 10px;
    position: fixed;
    top: calc(5vh + 20px);
    min-height: 2.5cm;
    min-width: 2.5cm;
    left: 20px;
    z-index: 3;
}

#compass_rose {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

#compass_needle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

input#search,
input#current {
    font-size: min(5vw, 3vh);
    padding: 10px;
}

body {
    margin: 0px;
    font-family: Arial, 'Roboto';
}

#currentContainer p {
    margin: 0px;
    padding: 5px;
}

#currentContainer input {
    width: 100%;
    background: none;
    color: #ffaa7b;
    border: none;
    text-align: center;
}

#currentContainer {
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 50%;
    z-index: 2;
    background: #373737d1;
    color: white;
    font-weight: bold;
    justify-items: start;
    align-items: start;
    flex-direction: column;
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
    transform: translateX(-50%);
    backdrop-filter: blur(6px);
    width: calc(min(5vw, 3vh)*9.8);
}

.collapsable.top {
    transform: translateY(-100%);
    transition: 0.5s ease;
}

.collapsable.top.active {
    transform: translateY(-0%);
}

.collapser {
    position: absolute;
    bottom: 0px;
    transform: translateY(calc(100% - 2px));
    height: 1cm;
    width: 1cm;
    border: none;
    background-color: #3a3a3a;
    color: white;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    right: 60px;
    cursor: pointer;
}

.collapser svg {
    transform: rotate(0deg);
    transition: 0.5s ease;
    fill: currentColor;
}

.collapsable.active .collapser svg {
    transform: rotate(180deg);
}