@charset "UTF-8";

* {
	box-sizing: border-box;
}

.modalForm {
	visibility: hidden;
	opacity : 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .4s;
}

.modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.6);
}

.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	width: 70%;
	max-width: 1100px;
	padding: 10px 30px;
	background-color: #fff;
	overflow-y: scroll;
	max-height: 700px;
}

.closeModal {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
}

.is-show {
	visibility: visible;
	opacity : 1;
}

.modal-loader {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.modal-loader-item {
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 5%;
	z-index: 2;
}


.AButton{
	display: block;
	width: 300px;
	padding: 15px 0;
	margin: auto;
	background: #FFBD4C;
	color: #000;
	text-decoration: none;
	text-align: center;
}
.AButton:hover{
    background: #FFA500;
}
