@charset "utf-8";
/* CSS Document */
.reveal-modal-bg {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 100;
	display: none;
	top: 0;
	left: 0;
	background: rgba(00, 00, 00, 0.6)
}
.reveal-modal {
	visibility: hidden;
	z-index: 101;
    width: 400px;
    height: auto;
    position: fixed;
    background: #fff;
    border-radius: 10px;
    top: calc(50% - 350px) !important;
    display: block;
    left: calc(50% - 200px);
    padding: 20px;
    text-align: center;

}

.close-reveal-modal{
    font-weight: 900;
    color: #ff6800;
    width: 100%;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}
@media (max-width: 1200px) {
.reveal-modal {
    width:80%; margin:10%;left:0;
}
}