/* MSIE */
#overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 1);
    /* Black background with opacity */
    cursor: pointer;
    /* Add a pointer on hover */
}

#overlay-older {
    position: fixed;
    /* Sit on top of the page content */
    display: block;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    /* Black background with opacity */
    cursor: pointer;
    /* Add a pointer on hover */
}

div#ie {
    border: 6px solid #da7931;
    border-radius: 4px;
    padding: 5em;
    width: 35%;
}

.container-center {
    width: 100%;
    height: 100%;
    top: -150px;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.ie-size {
    font-size: 20px;
}

div#ie img {
    width: 30px;
    height: 30px;
    margin: 5px 5px 0 5px;
}

p#not-supported {
    font-size: 35px;
}

div#ie p {
    line-height: 26pt;
    margin-top: 25px;
    text-align: center;
    color: white;
}

/* MSIE */