/* ----------------------------------------------------------- *
 |
 | Browser update styles
 |
 |  Author : David Hofer [david@dna-studios.ch]
 |
 * ----------------------------------------------------------- */

#browser-update {
    display: none;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 2000;
}

#browser-update-inner {
    background: #ee9434;
    border-radius: 5px;
    box-shadow: inset -3px -3px 1px 0 rgba(0, 0, 0, 0.15), 2px 2px 0 0 rgba(0, 0, 0, 0.15);
    color: #fffefe;
    display: inline-block;
    font-size: 1.5rem;
    max-width: 100%;
    padding: 15px 20px;
    position: relative;
    width: 750px;
}

#browser-update.is-visible {
    display: block;
}

#browser-update-close {
    color: rgba(0, 0, 0, 0.25);
    font-size: 2rem;
    position: absolute;
    right: 10px;
    top: 5px;
}

#browser-update-close:active,
#browser-update-close:focus,
#browser-update-close:hover {
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

#browser-update-action {
    text-align: center;
}

#browser-update a {
    background: #28a121;
    border-radius: 20px;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.15), inset -3px -3px 1px 0 rgba(0, 0, 0, 0.15);
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #fffefe;
}

#browser-update a:focus,
#browser-update a:active,
#browser-update a:hover {
    color: #fffefe;
    background: rgba(40, 161, 33, 0.73);
    box-shadow: inset 3px 3px 1px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
}