/* ----------------------------------------------------------- *
 |
 | Browser update styles
 |
 |  Author : David Hofer [david@dna-studios.ch]
 |
 * ----------------------------------------------------------- */

#browser-update {
    background: #000000;
    display: none;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 20000;
}

#browser-update-inner {
    color: #fffefe;
    display: inline-block;
    max-width: 100%;
    padding: 30px 20px 15px 20px;
    width: 750px;
}

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

#browser-update-close {
    font-size: 1rem;
    color: white;
    line-height: 18px;
    font-weight: bold;
    padding: 0px;

    border: 2px solid #e9406c;
    border-radius: 3px;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 5px;
}

#browser-update-close:active,
#browser-update-close:focus,
#browser-update-close:hover {
    background: #e9406c;
    cursor: pointer;
}

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

#browser-update a {
    border: 2px solid #e9406c;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #fffefe;
    text-decoration: none;
}

#browser-update a:focus,
#browser-update a:active,
#browser-update a:hover {
    color: #fffefe;
    background: #e9406c;
    text-decoration: none;
}
