/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 260px;
    background-color: #fff;
    color:#4A4A4A;
    text-align: center;
    border-radius: 10px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -120px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform:translate(-50%,50%) rotate(45deg);
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff #fff transparent #fff;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* .menu a.popup:hover span {
     cursor: not-allowed;
     opacity: 1 !important;
}

.menu a.popup span:hover {
    cursor: not-allowed;
    opacity: 1 !important;
} */

/* a:not(.menu a.popup span) {
    color: red;
} */