/**
 * walter-banner-public.css
 */

#top-fixed-banner .top-alert {
    display: none;
}

#top-fixed-banner .top-alert--active {
    animation: animate-top-fixed-banner .5s;
    display: block;
}

@keyframes animate-top-fixed-banner {

    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.wb-big-banner-wrapper {
    font-size: 18px;
    padding: 10px 20px;
}

.wb-big-banner-wrapper > .container {
    align-items: center;
    display: flex;
    justify-content: center;
}

.wb-big-banner-wrapper p {
    line-height: 18px;
    margin-bottom: 0;
    padding-right: 18px;
}

@media (max-width: 991.98px) {

    .wb-big-banner-wrapper {
        padding: 18px 20px 10px;
    }

    .wb-big-banner-wrapper > .container {
        flex-direction: column;
    }

    .wb-big-banner-wrapper p {
        padding-bottom: 10px;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {

    .wb-big-banner-wrapper > .container {
        margin: 0 auto;
        max-width: 400px;
    }
}