.box-modal {
	position: relative;
	color: #3c3c3c;
	font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
	box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
	border-radius: 6px;
}
/*.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; }
.box-modal_close:hover { color: #666; }*/



.box-modal_close  {
position: absolute;
right: 32px;
top: 32px;
width: 32px;
height: 32px;
cursor: pointer;
opacity: 0.6;
}
.box-modal_close:hover {
opacity: 1;
}
.box-modal_close:before, .box-modal_close:after {
position: absolute;
left: 15px;
content: ' ';
height: 33px;
width: 2px;
background-color: #333;
}
.box-modal_close:before {
transform: rotate(45deg);
}
.box-modal_close:after {
transform: rotate(-45deg);
}

.banner img {
    width: 100%;
}


@media (max-width: 767px) {
.box-modal_close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}
}