.box-modal {
	font-size: 14px;
	margin: 0;
	width: 280px;
	padding: 15px;
	border: 1px solid #383838;
	background: #011b36;
	border-radius: 4px;
	box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
	position: relative;
}
	@media screen and (max-width: 450px) {
		.box-modal {
			width: 260px;
			box-sizing: border-box;
		}
	}
.box-modal.v2 {
	width: 600px;
	padding: 0px;
	border: 1px solid #383838;
	background: #fff;
}
	@media screen and (max-width: 650px) {
		.box-modal.v2 {
			width: 400px;
		}
	}
	@media screen and (max-width: 450px) {
		.box-modal.v2 {
			width: 260px;
		}
	}
.box-modal_close  {
	top: -10px;
	right: -10px;
	width: 20px;
	height: 20px;
	position: absolute;
	padding: 0;
	border: 2px solid #ccc;
	border-radius: 15px;
	background-color: rgba(61, 61, 61, 0.8);
	box-shadow: 0px 0px 10px #000;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	transition: all ease .8s;
	z-index: 9;
}
.box-modal_close:before {
	color: rgba(255, 255, 255, 0.9);
	content: "X";
	text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
	line-height: 21px;
	width: 21px;
	display: block;
}
.box-modal_close:hover {
	background-color: rgba(252, 20, 0, 0.8);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	text-decoration: none;
}

.box-modal .owl-theme .owl-nav {
	margin: 0;
	position: absolute;
	top: 44%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.box-modal .owl-theme .owl-nav [class*=owl-] {
	font-size: 25px;
	font-weight: 100;
	line-height: 1;
	padding: 3px 12px 7px 12px;
	background: #c03045;
	border: 1px solid #c03045;
}
.box-modal .owl-theme .owl-nav [class*=owl-]:hover {
	background: #fff;
	color: #c03045;
}