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

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

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

.oms-banner.closed {
    /*animation-fill-mode: backwards;*/
    /* @keyframes duration | timing-function | delay | iteration-count | fill-mode | name */
    animation: 0.3s ease-out 0s 1 forwards slideDown;
}

.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;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.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;
    opacity: 1;
}