@keyframes scale-in-center {
    0%, 10% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.prompt {   
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.7);

    color: var(--text-col);
    position: absolute;
    border-radius: 5px;

    animation: scale-in-center 0.35s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.prompt>header span {
    cursor: pointer;
    display: block;
    margin-left: 0.5em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
}

.prompt>header span svg {
    color: var(--text-col);
    transition: color 0.25s;
}

.prompt>header span:hover svg {
    color: var(--red);
}

.prompt>header {
    position: relative;
    cursor: grab;
    background: #000;
    padding: 0.25em 0.5em;
    border-radius: 5px 5px 0 0;
    font-family: BebasNeue;
    font-weight: bold;
    color: #fff;
    font-size: 1.35em;
    text-transform: uppercase;
    user-select: none;
    padding-right: 1.75em;
}

.prompt>div {
    padding: 1em;
}

.prompt>footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0.5em 1em;
    padding-top: 0;
}
.prompt>footer button {
    margin: 0.5em;
    margin-top: 0;
}

.prompt>footer.vertical {
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
}

.prompt>footer.noCont.vertical button:first-child {
    margin-top: 0.5em;
}

.prompt>footer.noCont:not(.vertical) button {
    margin-top: 0.5em;
}