/*--------------------------------------------------------------
# StickBar Section
--------------------------------------------------------------*/
.stickbar {
    z-index: 9;
    bottom: 10px;
    width: 100%;

    position: fixed;
    padding: 5px;
}



.stickbar .banner {

    background: #212d61;
    border: 2px solid var(--dorado-claro);
    width: 100%;
    border-radius: 5px;
    color: white;
    bottom: 60px;
    opacity: 0;
    transform: translateX(0%);
    padding: 10px;
}

.stickbar .banner.visible {

    opacity: 1;
    transition: opacity 1s, transform 1s;

}

.stickbar .globe.visible {
    opacity: 1;
    transition: opacity 1s, transform 1s;
}


.stickbar a {
    color: white;
    text-decoration: none;
}

.stickbar a:hover {
    color: white;
}


.stickbar a.btn-close:hover {
    color: var(--azul-marino-claro);
    text-decoration: none;
    cursor: pointer;
}

.stickbar .btn-close {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: var(--dorado-claro);
    color: var(--azul-marino-claro);
    text-decoration: none;
    opacity: 1;

}

.stickbar .btn-close:hover {
    color: var(--azul-marino-claro);
    cursor: pointer;
}


.stickbar .globe {
    z-index: 9;
    padding: 30px 10px;
    bottom: 5px;
    width: 128px;
    height: auto;
    right: 10px;
    background: #212d61;
    color: white;
    position: fixed;
    
    font-size: 0.8rem;
    border-radius: 10px;
    opacity: 0;

}

.stickbar .globe .btn-close {
    position: absolute;

    top: -10px;
    right: -10px;
    opacity: 1;
    background: var(--dorado-claro);


}