AdManager {
    width: 800px;
    height: 500px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

AdManagerLoadingAnimation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

AdManagerSkipAdButton {
    position: absolute;
    padding: 8px;
    background: #eee;
    font: 11px Arial;
    bottom: 44px;
    right: 16px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    user-select: none;
}
AdManagerSkipAdButton[data-disabled="disabled"] {
    background: #999;
    cursor: default;
}
AdManagerLink {
    position: absolute;
    padding: 8px;
    background: #eee;
    font: 14px monospace;
    bottom: 44px;
    left: 8px;
    border-radius: 8px;
    opacity: 0.65;
}

AdManagerLink:hover {
    opacity: 0.95;
}

AdManagerModal {
    position: fixed;
    left: 0px;
    top: 0px;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.terminal {
    background-color: black;
    text-wrap: wrap;
    height: 100%;
    width: 100%;
    margin: 0;
    color: #eee;
    font: 14px monospace;
    display: inline-block;
    --cursor-animation: ; /* Set in la JavaScript */
}

.terminal:after {
    content: "";
    /* Remove display: inline-block if not required to be on the same line as text etc */
    display: inline-block;
    background-color: #00FF00;
    vertical-align: top;
    width: 10px;
    /* Set height to the line height of .text */
    height: 14px;
    /*
    Animation paramaters:
    blink = animation-name,
    1s = animation-duration,
    step-end = animation-timing-function,
    infinite = animation-iteration-count
    */
    -webkit-animation: blink 1s step-end infinite;
    animation: var(--cursor-animation);
}

@-webkit-keyframes blink {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blink {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

p {
    margin: 0%;
    padding: 0%;
}

html {
    background: black;
}

@var(--css-terminal-cursor-input-allowed) = false