.oms-banner {
    width: 100%;
    background: #222222;
    z-index: 99999;
    position: relative;
    display: block;
    overflow: hidden;
    max-height: 0;
    animation: 1s ease-in 1s 1 slideUp;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    from {
        max-height: 0;
    }
    to {
        max-height: 400px;
    }
}

.oms-banner.closed {
    animation-fill-mode: backwards;
}

.oms-banner-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    padding: 25px 30px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 576px ) {
    .oms-banner-text {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 768px ) {
    .oms-banner-text {
        padding-left: 75px;
        padding-right: 75px;
    }
}

@media (min-width: 992px ) {
    .oms-banner-text {
        padding-left: 7vw;
        padding-right: 7vw;
    }
}


@media (max-width: 992px) {
    .oms-banner-text {
        font-size: 1rem;
        line-height: 1.2;
        text-align: left;
    }
}

.oms-banner-text a {
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-decoration-color: #00AEEF;
    text-underline-offset: 0.125rem;

    &:hover,
    &:focus,
    &:active {
        color: #ffffff;
        text-underline-offset: 0.25rem;
    }
}

.oms-banner-close {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    color: #00AEEF;
    cursor: pointer;
    position: relative;
    font-size: 3.1rem;
    line-height: 0.6;
    text-decoration: none;
    margin: 0 0 0 20px;
    padding: 0;
}

.oms-banner-close::after {
    content: "\d7";
    color: #00AEEF;
}

.oms-banner-close:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    color: #ffffff;
    text-decoration: none;
}

.oms-banner-close:hover::after {
    color: #ffffff;
}