.banner-alert {
    position: relative;
    padding-right: 24px;
}
.banner-alert:before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #241D44;
}
.close-banner-wrap {
    position: absolute;
    top: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
}
.close-banner {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    height: 18px;
    width: 18px;
}
.close-banner svg {
    height: 100%;
    width: 100%;
}
.banner-alert .content p:last-of-type {
    margin-bottom: 0;
}
.banner-alert .content a {
    color: white;
}