body {
    font-family: 'determination_sans_webregular';
    padding: 0;
    margin: 0;
}

html {
    background-color: black;
    width: 100%;
    height: 100%;
    overflow: hidden;
    vertical-align: baseline;
}

.under-construction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.under-construction img {
    width: 15%;
    height: auto;
}

.construction-text {
    margin: 0;
    font-size: 1.5em;
    color: #ffffff;
}

.audioplayer {
    display: flex;
    position: absolute;
    bottom: 0%;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 2.5em;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    border: 1px solid #222;
    background-color: #333;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 1.25em rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.audioplayer-btn {
    margin: 4vh 1vh;
    width: 4vh;
    height: 3.2vh;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    vertical-align: middle;
    line-height: 3.5vh;
    background-color: #444;
    border-radius: 50%;
    border: none;
}

.audioplayer-time {
    margin-left: 1%;
    margin-right: 1%;
    font-size: 1em;
}

.audioplayer-bar {
    width: 100%;
    height: 0.875em;
    background-color: #222;
    cursor: pointer;
    position: relative;
}

.audioplayer-bar-played {
    background-color: #007fd1;
    height: 100%;
    width: 0%;
    position: sticky;
    top: 0;
    left: 0;
}

.audioplayer-volume-container {
    display: none;
    position: absolute;
    bottom: 5.3vh;
    right: 0.3em;
    background-color: #333;
    width: 3vh;
    height: 7em;
    z-index: 5;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.audioplayer-volume-slider {
    position: sticky;
    left: 0.7vh;
    top: 5%;
    width: 50%;
    height: 90%;
    background-color: #222;
    cursor: pointer;
}

.audioplayer-volume-slider-fill {
    background-color: #007fd1;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.audioplayer-volume-btn {
    position: absolute;
}

.info-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
}

.info-circle {
    width: 2rem;
    height: 2rem;
    background: #212121;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.tooltip {
    display: block;
    opacity: 0;
    position: absolute;
    top: 2rem;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 13rem;
    word-wrap: break-word;
    pointer-events: none;
    transform: translateY(10px);
    transition: none;
}

.tooltip.show {
    animation: fadeInAnimation ease 0.5s forwards;
}

.tooltip.hide {
    animation: fadeOutAnimation ease 0.5s forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutAnimation {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(10px);
    }
}
