.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    z-index: 10000;
    visibility: collapse;
}

.popup-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    visibility: collapse;
    display: none;
    z-index: 10001;
}

.popup-content {
    background-color: var(--white);
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding: 20px;
}

.info-content {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.popup-content h1 {
    margin-top: -5px;
}

.button-wrapper {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
}

.info-content .tooltip {
    position: relative;
    width: auto;
    padding: 0px 4px 0px 4px;
    align-self: center;
    cursor: pointer;
    z-index: 10003;
    margin: 0px;
}