.hidden {
    display: none;
}

body {
    font-family: Raleway;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

hr {
    border: 1px solid grey;
    width: 50%;
}

.info {
    margin: 10px;
    text-align: center;
}

.header {
    margin: 0;
}

#mymap {
    flex-grow: 1;
    height: 500px;
}
        
input, button {
    font-size: 14pt;
    padding: 10px;
}

.checkbox-wrapper {
    display: inline-block;
}

label {
    font-size: 14pt;
}

.leaflet-popup-content {
    font-family: Raleway;
    font-size: 14pt;
    margin: 24px;
}

.leaflet-popup-content p {
    margin: 0;
}

#post-form {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#add-pin-button {
    margin-top: 1em;
}

.pin-wrapper {
    display: flex;
    flex-direction: row;
}

.pin-text {
    padding-right: 0.5em;
}

.pin-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.ui-button {
    position: fixed;
    z-index: 1000;
    background: #b99a0d;
    color: white;
    text-align: center;
    border-radius: 1000px;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 0.4rem;
}

#recenter-button {
    bottom: 2rem;
    right: 0.5rem;
    font-size: 1.6rem;
}

#find-nearest-button {
    right: 0.5rem;
    bottom: 5rem;
}

#info-button {
    bottom: 2rem;
    left: 0.5rem;
}

.info-display { 
    z-index: 1002;
}

.info-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.info-panel {
    border-radius: 10px;
    box-sizing: border-box;
    position: absolute;
    height: 80vh;
    width: 80vw;
    left: 10vw;
    top: 10vh;
    background: white;
    overflow: auto;
    padding: 1vw 3vw;
}