.popup {
    position: relative;
    display: initial;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 30vw;
    /*background-color: #fcfbf4 !important;*/
    background-color: #f5f5f5 !important;
    text-align: center;
    border-radius: 30px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    left: 5vw;
    height: auto;
    font-size: 0.8em;
    border-style: solid;
    border-width: thin;
}

.popup table {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
    border-collapse: collapse;
    background-color: white;
}

.popup table th {
    text-align: left;
    border: 1px solid;
    padding-left: 0.3vw;
    padding-right: 0.3vw;
}

.popup table td {
    text-align: left;
    border: 1px solid;
    padding-left: 0.3vw;
    padding-right: 0.3vw;
}

.popup .mark {
    text-align: center;
    width: 3vw;
}

.popup #dismiss {
    margin-top: 3vh;
    margin-top: calc(var(--vh, 1vh) * 3);
    margin-bottom: 2vh;
    margin-bottom: calc(var(--vh, 1vh) * 2);
}

li.PopMenu-Item:hover {
    background-color: #00b1ad;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

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

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