.modal-ie11 {
    display: none;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    left: 0;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.modal-ie11__container {
    background-color: var(--colour-white);
    border: 1px solid var(--colour-grey4);
    margin: 15% auto;
    max-width: 600px;
    padding: 20px;
    position: relative;
    width: 55%;
}

.modal-ie11__header {
    margin-bottom: 15px;
    text-align: center;
}

.modal-ie11__logo {
    background-color: var(--colour-red);
    display: inline-block;
    fill: var(--colour-white);
    height: 50px;
    max-width: 180px;
    overflow: hidden;
    padding: 15px 10px;
}

.modal-ie11__close {
    background-color: var(--colour-black);
    bottom: auto;
    color: var(--colour-white);
    font-size: 22px;
    font-weight: bold;
    height: 40px;
    line-height: 16px;
    padding: 1px;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    max-width: 40px;
    background: var(--colour-black);
    cursor: pointer;
    display: inline-block;
    border: 0;
    text-decoration: none;
    text-align: center;
    transition: opacity 250ms, background-color 250ms, color 250ms;
    opacity: 1;
    appearance: none;
    vertical-align: bottom;
    font-weight: bold;
}

.modal-ie11__close:hover,
.modal-ie11__close:focus {
    background-color: var(--colour-red);
    cursor: pointer;
    text-decoration: none;
}
