/* ==================== Tooltip ====================== */

.tooltip {
    position: relative;
    display: flex;
}

.tooltip .tooltiptext {
    position: absolute;
    top: 1.8vw;
    right: -8vw;
    z-index: 1;
    font-size: 1vw;
    visibility: hidden;
    width: 22vw;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0.8;
    color: #fff;
    text-align: center;
    padding: 0.2vw 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    animation: tooltipkeys 0.5s 1;
    /* transition: opacity 0s linear 1s; */
}

#lightboxSection {
    flex-direction: column;
    justify-content: center;
}

@-webkit-keyframes tooltipkeys {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@-moz-keyframes tooltipkeys {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@-o-keyframes tooltipkeys {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes tooltipkeys {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}