.popup {
    position: relative;
    cursor: pointer;
}

.popup .popuptext {
    visibility: hidden;
    background-color: #818285;
    padding: 1em 1em 1em 2em;
    position: absolute;
    z-index: 1;
    /* Above link */
    /* bottom: 0.75em;
    left: 1em; */
    /* Next to link */
    top: 50%;
    right: 0em;
    transform: translateY(-50%);
    border-radius: 5px;
    border: 2px solid white;
}

/* Popup arrow (left) */
.popup .popuptext::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -0.5em;
    border-width: 0.5em;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

/* Popup arrow (below) */
/* .popup .popuptext::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5em;
    border-width: 0.5em;
    border-style: solid;
    border-color: white transparent transparent transparent;
} */

.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 0.2s;
    animation: fadeIn 0.2s
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hover-underline:hover {
    cursor: pointer;
    text-decoration: underline;
}

.container .left.centerhv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .left a.figurecontainer {
    padding-left: 50px;
}

.container figure {
    position: relative;
}

.container .left figure::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -12%;
    height: 124%;
    width: 83%;
    background-color: #688926;
}

.container figure img {
    display: block;
    position: inherit !important;
    width: 100% !important;
    border-radius: 5px;
    border: 10px solid white;
    height: auto;
}

.container figcaption {
    position: absolute;
    left: 20px;
    right: 0px;
    bottom: 20px;
    padding: 3px;
    background-color: white;
    color: #688926;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

@media(min-width:1900px) {
    .container figcaption {
        font-size: 130%;
        padding: 8px;
    }
}

.smallscreenimg {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 80px;
    display: none;
}

@media (max-width: 1200px) {
    .smallscreenimg {
        display: block;
    }

    .container figure img {
        border-radius: 2px;
        border: 5px solid white;
    }

    .container figcaption {
        position: absolute;
        left: 10px;
        right: 0px;
        bottom: 10px;
        padding: 3px;
    }
}