.messages {
    position: absolute;
    background-color: rgba(255,255,255,0.75);
    width: calc(100% - 48px);
    top: 0;
    line-height: 32px;
    font-family: sans-serif;
    font-size: 18px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);padding-top: 16px;
    padding: 16px 24px;
    text-align: center;
}

.messages .divider {
    background-color: rgba(0.5,0.5,0.5,0.25);
    height: 1px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}

.embed.text {
    font-weight: bold;
}

.embed.icon {
    display: inline-block;
    height: 48px;
    width: calc(48px * var(--aspect-ratio, 1.0));
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    margin: -16px 4px;
}

.embed.button {
    background-color: white;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    cursor: pointer;
    border: #ccc solid 1px;
    margin: 4px;
}

.embed.button:hover {
    background-color: #ffc;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    border: #fff solid 1px;
}

.embed.text-input {
    line-height: 32px;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 18px;
}

.blink {
    animation: blink 1s infinite alternate linear;
}

@keyframes blink{
    0% {
        background: white;
    }
    50% {
        background: rgba(152, 255, 123, 0.75);
    }
    100% {
        background: rgba(152, 255, 123, 0.75);
    }
}

.webplayer-progress {
    width: 100%;
}
