body {
    background: var(--background-color-dark-1);
    color: var(--text-color-light-1);
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.15rem;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

html.mobile body {
    padding-bottom: 0rem;
}

* { box-sizing: border-box; }

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a, a:hover {
    transition: all 0.5s ease;
    text-decoration: none;
    color: inherit;
}

.link-open-map {
    cursor: pointer;
    transition: all 0.5s ease;
}

.link-open-map:hover {
    color: var(--text-color-light-1);
}

.roundarrow-link {
    letter-spacing: var(--letter-space-small);
    color: var(--text-color-light-2);
    cursor: pointer;
    transition: all 0.5s ease;
}

.roundarrow-link:hover {
    color: var(--text-color-light-1);
}

.roundarrow-link:hover .roundarrow path {
    fill: var(--text-color-light-1);
}

.roundarrow {
    height: 12px;
    width: 12px;
    margin-left: 0.5rem;
}

@media (max-width: 330px) {
    .roundarrow { margin-left: 0.2rem; }
}

.roundarrow path {
    transition: all 0.5s ease;
    fill: var(--text-color-light-2);
}
