.popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    border: solid 1px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .15);
    width: 50%;
    max-height: 80%;
    z-index: 1102;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.popup .content {
    overflow: auto;
}

.popup .close {
    color: rgba(0, 0, 0, 1);
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 30px;
}

.popup .close:hover {
    color: black;
}


