/* Top Bar */

@media only screen and (max-width: 1199px) {
    .header-style-1 .top-bar .dez-topbar-left {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .top-bar {
        display: block;
    }

    .header-style-1 .top-bar .dez-topbar-right ul {
        display: flex;
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .top-bar {
        display: block;
    }

    .header-style-1 .top-bar .dez-topbar-right {
        display: block;
    }

    .mobile-d-none {
        display: none !important;
    }

    .mobile-border-none {
        border: none !important;
        margin-right: 0 !important;
        padding: 10px 10px 10px 0px !important;
        width: auto !important;
    }
}

/* Botão Pulsando - Top Bar */

.button-pulsing {
    background: #F0E318;
    padding: 2px 15px;
    animation: .5s linear infinite alternate pulsing;
    display: inline-block;
    transition: .3s;
    text-align: center;
}

.button-pulsing i {
    border: none !important;
    padding: 9px 0 !important;
    width: auto !important;
}

.button-pulsing:hover {
    background: #626262;
    color: #FFF;
    /* animation-play-state: paused; */
}

.button-pulsing:hover i {
    color: #FFF !important;
}

@keyframes pulsing {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}