.notification {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .notification {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }
}
.notification--S {
    padding: 16px 30px 14px;
}
@media (min-width: 768px) {
    .notification--S {
        padding: 16px 100px 14px;
    }
}
.notification--S .notification__cross {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.notification--S .notification__heading {
    font-family: 'HelveticaNeueW01-55Roma', Arial, sans-serif;
    font-size: 20px;
    line-height: 25px;
}
.notification--S .notification__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 32px;
}
.notification--M {
    padding: 16px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
    .notification--M {
        padding: 32px 100px;
    }
}
.notification--M .notification__cross {
    top: 8px;
    right: 12px;
}
.notification--M .notification__heading {
    font-family: 'HelveticaNeueW01-45Ligh', Arial, sans-serif;
    font-size: 22px;
    line-height: 30px;
}
.notification--M .notification__text {
    margin-top: 4px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .notification--M .notification__text {
        margin-top: 8px;
    }
}
.notification--orange {
    background-color: #f38f10;
    color: white;
}
.notification--orange p,
.notification--orange a {
    color: white;
}
.notification--yellow {
    background-color: #ffd500;
}
.notification--yellow p,
.notification--yellow a {
    color: black;
}
.notification__cross {
    position: absolute;
    cursor: pointer;
}
.notification__section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.notification__heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.notification__heading svg {
    font-size: 26px;
    margin-right: 8px;
    margin-top: 2px;
}
.notification__text {
    font-family: 'HelveticaNeueW01-45Ligh', Arial, sans-serif;
    font-size: 16px;
    line-height: 25px;
    text-decoration: none;
}
.notification__text svg {
    margin-left: 13px;
    margin-top: 1px;
}
.notification__link {
    margin-top: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-family: 'HelveticaNeueW01-75Bold', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.notification__link svg {
    margin-left: 8px;
}
@media (min-width: 768px) {
    .notification__link {
        margin-top: 0;
    }
}