.box-modal {
	position: relative;
	background-color: #282828;
	background-image: url("../img/contact-form-bg-2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	margin: 0 auto;
	width: 420px;
	padding: 15px;
}

.box-modal_close {
	position: absolute;
	display: inline-block;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

.box-modal_close i {
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("../img/close.svg");
	background-size: 20px 20px;
	cursor: pointer;
}

.box-modal-title {
	color: #E1E1E1;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

#message-success {
	display: none;
	color: #E1E1E1;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}

#message-success span {
	font-size: 22px;
}

#message-success-2 {
	display: none;
	color: #E1E1E1;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}

#message-success-2 span {
	font-size: 22px;
}

@media screen and (max-width: 576px) {
	.box-modal {
		width: 100%;
	}
}