/* Popup container */
.popup {
    position: relative;
    display: inline!important;
    cursor: pointer;
    border-bottom-style: dotted;
    border-bottom-width: 2px;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 400px;
    max-width: 400px;
    background-color: antiquewhite;
    text-align: left;
    border-radius: 6px;
    padding: 5px 15px 5px 15px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /*left: 50%;*/
    /*margin-left: -80px;*/
    font-size: small;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* 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;
    background-color: antiquewhite;
}

.showing {
    background-color: antiquewhite;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}
