#confirm {
	display: none;
	position: absolute;
	left: 50%;
	top: 10px;
	width: 800px;
	transform: translateX(-50%);
	padding: 2em;
	background: #fff;
	z-index: 200;
	box-shadow: 0 0 5px #ccc;
	box-sizing: border-box;
}
#confirm table {
	width: 100%;
}
#confirm p.conf-text {
	margin: 0;
	padding: 0 0 30px 0;
	text-align: center;
	font-weight: bold;
}
#confirm-overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	background: rgba(0, 0, 0, 0.7);
}
#confirm .form_contents {
	border-left: 0;
	margin: 0 auto;
	padding: 0;
	width: 80%;
	float: none;
}
.form-contents .error-mes {
	color: #c00;
}
.form-contents .has-error dt {
	color: #c00;
}
.sending-message {
	margin: 1em 0;
	color: #c00;
}


/**************************************************/

#confirm .contact-form dl {
	padding-top: 10px;
	padding-bottom: 10px;
}
#confirm .btn-confirm {
	display: inline-block;
	box-sizing: border-box;
	width: 280px;
	color: #FFF;
	background: #001b88 url(../img/arrow.png) no-repeat 94% center;
	background-size: 7px;
	padding: 16px 0;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
	border: 2px solid
	#001b88;
	border-radius: 100px;
	-webkit-transition: 0.2s;
	transition: 0.2s;	
}
#confirm .btn-confirm:hover {
	background: #FFF url(../img/arrow_ov_blue.png) no-repeat 95% center;
	background-size: 7px;
	color: #001b88;	
}
#confirm .buttons {
	margin: 30px 0;
	display: flex;
	justify-content: center;
}
#confirm .buttons .btn-action-back {
	margin-left: 20px;
	background-color: #666;
	border-color: #666;
}
#confirm .buttons .btn-action-back:hover {
	background: #111 url(../img/arrow.png) no-repeat 95% center;
	border-color: #111;
	background-size: 7px;
	color: #fff;	
}

@media only screen and (max-width: 768px) {
#confirm {
	width: 94%;
	padding: 1em;
}
#confirm .btn-confirm {
	width: 100%;
	padding: 1em 3em;
}
}

