body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    opacity: 0.0;
    font-size: 12px;
}

body.ready {
    opacity: 1.0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

svg {
    width: 100%;
    display: block;
    margin: 0 auto;
}

#identity-art-bay {
    top: 50%;
    margin: 0 auto;
    position: fixed;
    width: 100%;
    pointer-events: none;
}

#identity-art-bay img {
    width: 260px;
    margin: 0 auto;
    top: -50%;
    position: relative;
    display: block;
}

#map-svg {
    margin: 0 auto;
    padding-bottom: 20px;
    max-width: 500px;
}

#description-list {
    opacity: 0.0;
    position: fixed;
    width: 100%;
    left: 0;
    max-width: 500px;
    padding: 10px;
    bottom: -400px;
    box-sizing: border-box;
    height: 400px;
    transition: opacity 1.0s, transform 0.2s ease-out;
    transform: translate3d(-50%, 0, 0);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 500px;
    left: 50%;
}

.intro-ended #description-list {
    opacity: 1.0;
}

#description-list li {
    opacity: 0;
    pointer-events: none;
    display: block;
    position: absolute;
    width: 100%;
    padding: 20px;
    padding-bottom: 20px;
    padding-top: 10px;
    left: 0;
    box-sizing: border-box;
    transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
    transition: opacity 0.3s, transform 0.3s ease-out;
}

#description-list li b {
    display: block;
    font-size: 14px;
    margin-bottom: 1em;
}

#description-list .active {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    pointer-events: auto;
}

#map-svg g[id^=item-] * {
    transition: 0.3s;
}

#map-svg g[id^=item-]:not(.in-view) * {
    stroke: rgba(0, 0, 0, 1.0);
    fill: rgba(255, 255, 255, 0.0);
    stroke-width: 0.25px;
}

#map-svg #thresholds {
    visibility: hidden;
}

#statement {
    margin-top: 100px;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid black;
    padding: 15px;
    text-align: center;
    letter-spacing: -0.05em;
    word-spacing: -0.02em;
    padding-top: 80px;
    opacity: 0.0;
    transition: opacity 0.3s;
}

#statement b {
    display: block;
    margin-bottom: 0.5em;
}


#identity-ultrastudio {
    margin-top: 100px;
    margin-bottom: -170px;
}

#identity-ultrastudio svg {
    width: 100px;
    margin: 1em auto;
}

#identity-ultrastudio svg * {
    stroke-width: 1px;
    stroke: black;
    fill: rgba(0, 0, 0, 0.0) !important;
    transition: fill 1.0s;
    shape-rendering: geometricPrecision;
}

#icon-arrow {
    width: 15px;
}
#icon-arrow * {
    stroke-width: 0.5px;
}

.identity-ready #identity-ultrastudio svg * {
    fill: black !important;
}

#icon-arrow {
    opacity :0.0;
    transition: opacity 0.3s;
    position: relative;
    top: 3em;
}
#icon-arrow.active {
    opacity: 1.0;
}
#icon-arrow.active line {
    animation: draw 0.75s forwards;
}
#icon-arrow.active polyline {
    animation: draw-2 0.75s forwards;
    animation-delay: 0.25s;
}

@keyframes draw {
    from {
        stroke-dashoffset: 13.78;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes draw-2 {
    from {
        stroke-dashoffset: 8.860054016113281;
    }
    to {
        stroke-dashoffset: 0;
    }
}
