.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: 1em;
    line-height: 1;
    font-weight: 700;
    padding: 20px 50px 20px 20px;
    position: relative;
    text-align: center;
}

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

.oms-banner-text a {
    color: #f16521;
    transition: 0.3s ease all;
    text-decoration: underline;
}

.oms-banner-text a:hover {
    text-decoration: none;
}

.oms-banner-close {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    color: #f16521;
    cursor: pointer;
    position: absolute;
    font-size: 2em;
    line-height: 1;
    right: 20px;
    top: 8px;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.oms-banner-close::after {
    content: "\d7";
    color: inherit;
}

.oms-banner-close:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    color: #f16521;
    text-decoration: none;
    right: 20px;
    top: 6px;
}