.popup-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	margin: auto;
    max-height: 80%;
    font-size: 15px;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .popup-container {
        max-height: 100%;
    }
}

.popup-panel {
    position: relative;
    overflow-y: scroll;
    max-height: 100%;
    min-width: 60%;
    padding-top: 0;
    padding-bottom: 0;
    margin: auto;
    z-index: 10;
    background-color: #e5e5e5ed;
    padding: 0px 30px 0px 30px;
}

.popup-contents {
    white-space: pre-line;
}

.popup-close-x {
    position: absolute;
    font-size: 24px;
    top: 15px;
    right: 30px;
    text-decoration: none;
}

.popup-panel div {
    text-align: center;
    padding-bottom: 15px;
}

.popup-hidden {
	display: none;
}