.mensajito-ticker {
    position: fixed;
    bottom: 0;
    left: 300px;
    right: 0;
    height: 3vh;
    overflow: hidden;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.mensajito-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

body:not(.no-mensajito) #lunaradio {
    height: 97% !important;
}

@media screen and (max-width: 860px) {
    .mensajito-ticker {
        left: 0;
        bottom: 0;
        height: 3vh;
    }

    .mensajito-content {
        font-size: 1em;
    }

    body:not(.no-mensajito):not(.layout-header) .main-content {
        height: calc(100vh - 60px - 3vh) !important;
        height: calc(100dvh - 60px - 3vh) !important;
        margin-bottom: 3vh;
    }
}
