@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

body {
    height: calc(100vh + 5px);
}

.story-nav {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
}

.story-nav.ss-sections-nav {
    display: flex;
    align-items: center;
    color: white;
}

.story-nav ul {
    padding: 5vh;
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.story-nav ul li {
    pointer-events: all;
    cursor: pointer;
    opacity: 0.6;
    width: fit-content;
    display: flex;
    transition: opacity 0.3s;
    height: 2em;
    align-items: center;
}

.story-nav ul li .nav-item-icon {
    width: 1em;
    height: 1em;
    display: block;
    background-color: white;
    margin-right: 1em;
}

.story-nav ul li .nav-item-title {
    opacity: 0;
    display: none;
    transition: opacity 0.3s;
}

.story-nav ul li:hover {
    opacity: 1;
}

.story-nav ul:hover li .nav-item-title {
    opacity: 1;
    display: block;
}

.view-story-overflow {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    background-color: white;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s;
    overflow: hidden;
}

.view-story-overflow.fade-out {
    opacity: 0;
}

.view-story-overflow .view-story-btn {
    width: 10vh;
    height: 10vh;
    position: relative;
    transition: all 1s ease-in-out;
}

.view-story-overflow .view-story-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
    transition: all 1s ease-in-out;
}

.view-story-overflow .view-story-btn img.view-btn-clicked {
    opacity: 0;
}

.view-story-overflow .view-story-btn:hover {
    transform: scale(1.05);
}

.view-story-overflow .view-story-btn:hover img {
    -webkit-filter: drop-shadow(15px 15px 15px #222);
    filter: drop-shadow(15px 15px 15px #222);
}

#story-header {
    position: fixed;
    top: 2rem;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 1000;
    width: 100%;
}

#story-header .mute-btn {
    width: 2rem;
    height: 2rem;
    margin-right: 2rem;
    background: url("images/snd-h.png") center center/contain no-repeat;
    filter: drop-shadow(0 0 10px white);
    z-index: 1000;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

#story-header .mute-btn:hover {
    opacity: 0.8;
}

#story-header .mute-btn.muted {
    background-image: url("images/snd-n.png");
}

#story-header .language-switcher {
    margin-right: 0.4vw;
    font-family: "Roboto Condensed Medium", sans-serif;
    font-size: 18px;
}

#story-header .language-switcher a {
    color: black;
}

#story-header .language-switcher a.disabled {
    opacity: 0.6;
    pointer-events: none;
}

#page-loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9333333333);
    transition: opacity 1s;
    opacity: 1;
}

.bubbles span {
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 48px;
    background: url("../../build/assets/favicon-48x48.png");
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    animation-name: move;
    animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
    animation-iteration-count: infinite;
    animation-duration: 3s;
    top: calc(50% - 4vmin);
    left: 50%;
    transform-origin: -4vmin center;
}

.bubbles span:nth-child(1) {
    animation-delay: -0.5s;
    opacity: 0;
}

.bubbles span:nth-child(2) {
    animation-delay: -1s;
    opacity: 0;
}

.bubbles span:nth-child(3) {
    animation-delay: -1.5s;
    opacity: 0;
}

.bubbles span:nth-child(4) {
    animation-delay: -2s;
    opacity: 0;
}

.bubbles span:nth-child(5) {
    animation-delay: -2.5s;
    opacity: 0;
}

.bubbles span:nth-child(6) {
    animation-delay: -3s;
    opacity: 0;
}

@keyframes move {
    0% {
        transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
    }
    30% {
        opacity: 1;
    }
    100% {
        z-index: 10;
        transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
    }
}

/*# sourceMappingURL=Storyteller.css.map */
