﻿.marca-agua-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    z-index: 99999999;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
    /*padding-left: 100%;*/
    border-top: 1px solid #888;
    box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.1);
    animation: bgToggle 5s linear infinite;
    transition: top 0.5s, bottom 0.5s;
    background-color: #e23d3d;
    color: white;
}

    .marca-agua-box.bottom {
        top: auto;
        bottom: 0;
        border-top: none;
        border-bottom: 1px solid #888;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .marca-agua-box span {
        font-size: 6.8vh;
        white-space: nowrap;
        /*animation: deslizar 18s linear infinite, textToggle 2s linear infinite;*/
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        letter-spacing: 1px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        user-select: none;
    }

/*@keyframes deslizar {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes bgToggle {
    0% {
        background-color: greenyellow;
    }

    25% {
        background-color: red;
    }

    50% {
        background-color: white;
    }

    100% {
        background-color: limegreen;
    }
}

@keyframes textToggle {
    0%, 100% {
        color: white;
    }

    50% {
        color: black;
    }
}*/

.gear-icon {
    position: fixed;
    top: 0;
    right: 0;
    font-size: 20px;
    color: black;
    z-index: 100000000;
    background: white;
    padding: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
    transition: top 0.5s, bottom 0.5s;
}

.gear-icon.bottom {
    top: auto;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 5px;
}
