[class$='modal'] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
		z-index: 400;
}
[class$='modal-content'] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,.76);
    width: 90%;
		height: auto;
		border: 2px solid #E27B1A;
    border-radius: 3px;
}
[class$='close-button'] {
	position: relative;
	float: right;
	width: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 20px;
	cursor: pointer;
	border-radius: 0.25rem;
	background-color: #202020;
	color: #FFCF00;
	z-index: 402;
}
[class$='close-button']:hover {
    background-color: #444;
		color: #F00;
}
[class$='show-modal'] {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}