#browser-update {
    display: none;
    position: absolute;
    text-align: center;
    top: 2rem;
    width: 100%;
    z-index: 50;
}

#browser-update-inner {
    background: var(--color);
    color: var(--color-text);
    display: inline-block;
    font-weight: bold;
    max-width: 100%;
    padding: 15px 20px;
    position: relative;
    width: 750px;
}

#browser-update.is-visible {
    display: block;
}

#browser-update-close {
    opacity: 25%;
    position: absolute;
    right: 10px;
    top: 5px;

    img {
        height: auto;
        width: 32px;
    }
}

#browser-update-close img {
    height: 20px;
    width: 20px;
}

#browser-update-close:active,
#browser-update-close:focus,
#browser-update-close:hover {
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    opacity: 100%;
}

#browser-update-action {
    text-align: center;
}

#browser-update a {
    background: #4c9fb6;
    color: white;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    text-decoration: none;
}

#browser-update a:focus,
#browser-update a:active,
#browser-update a:hover {
    box-shadow: inset 3px 3px 1px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

#device-unsupported {
    background: rgba(0, 0, 0, .9);
    align-items: center;
    color: white;
    display: none;
    font-size: 1.25rem;
    inset: 0 0 0 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    text-align: center;
    user-select: none;
    z-index: 100;

    &.is-visible {
        display: flex;
    }
}
