@keyframes slide-up {
    0% {
        bottom: 0;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        bottom: calc(100% - 3.5rem);
        opacity: 0;
    }
}
.streaming {
    display: flex;
    align-items: center;
    height: max-content;
    padding: 1rem;
    margin-bottom: 1rem;
    color: black;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.streaming:hover {
    background-color: #ededed;
}
.streaming .material-icons {
    margin-left: auto;
}
.question {
    display: flex;
    height: max-content;
    margin: 2.5rem 0;
}
.emoji {
    padding: 1rem;
    border: 0.2rem solid #dbdbdb;
    background-color: #ededed;
    font-size: 2.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.emoji:not(.emoji:last-child) {
    margin-right: 1rem;
}
.emoji:hover {
    background-color: #dbdbdb;
}
.emoji.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.emoji.disabled:hover {
    background-color: #ededed;
}
.reaction {
    position: absolute;
    bottom: 0;
    opacity: 0;
    font-size: 2.5rem;
    -webkit-user-select: none;
    user-select: none;
    animation-name: slide-up;
    animation-duration: 10s;
    animation-fill-mode: forwards;
}
#live-container {
    position: relative;
    padding-top: 56.25%;
}
#live {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#emoji-container {
    margin-top: 1rem;
}