.ie-warning {
    position: fixed;
    z-index: 9999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: #00000059;
}
.ie-warning .inner-content {
    position: relative;
}
.ie-warning .inner-content button {
    position: absolute;
    right: -10px;
    top: -10px;
    color: #fff;
    background: #007cc1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    line-height: 26px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.ie-warning p {
    padding: 2rem;
    background: white;
    border-radius: 0.6em;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    color: red;
}

html.is-ie {
    overflow: hidden;
}
html.is-ie-as-hint .off-canvas-wrapper {
    padding-top: 50px;
}
html.is-ie-as-hint .ie-warning {
    position: absolute;
    top: 0;
    display: flex;
    bottom: auto;
    justify-content: stretch;
}
html.is-ie-as-hint .ie-warning .inner-content {
    width: 100%;
}
html.is-ie-as-hint .ie-warning .inner-content button {
    display: none;
}
html.is-ie-as-hint .ie-warning .inner-content p {
    padding: 1rem;
    border-radius: 0;
    display: block;
    text-align: center;
    margin: 0;
}
