/* Подключение шрифтов */
@font-face{
	font-family: 'Arial';
	src: 
	  local('Arial'),
	  url(fonts/Arial.woff) format('woff');
}
/* Общие правила */
body{
	margin:0;
}
a:focus{
	outline: none;
}



/*Галерея*/
.hc_cont_img{
	max-width: 300px;
	margin: 0 auto 30px;
	border:solid 5px lightgray;
	border-radius: 10px;
}
.hc_gallery_img{
	padding-top: 100%;
	cursor: pointer;
}
.hc_gallery_box{
	margin-top: 30px;
}
/*fancybox*/
.hc_gallery_view_box{
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	z-index: 3000;
	display: none;
	user-select:none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.img_gallery_container{
	position: relative;
	border:10px solid white;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	line-height: 0;
	display: none;
}
.hc_gallery_plen{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
}
.hc_close_gallery{
	cursor: pointer;
	position: absolute;
	width: 36px;
	height: 36px;
	top:-25px;
	right:-25px;
	opacity: 1;
	background: url(../img/hc_gallery_box_sprite.png);
	background-position: -1px 0;
}
.hc_gal_next,
.hc_gal_prev{
	cursor: pointer;
	position: absolute;
	width: 30%;
	bottom: 0;
	top:0;
	display: none;
}
.hc_gal_next{
	right:0px;
}
.hc_gal_prev{
	left:0px;
}
.hc_gal_next:after,
.hc_gal_prev:after{
	content:'';
	position: absolute;
	width: 36px;
	height: 36px;
	background: url(../img/hc_gallery_box_sprite.png);
	margin:0 10px;
	top: calc(50% - 18px);
}
.hc_gal_next:after{
	right: 0;
    background-position: 1px -71px;
}
.hc_gal_prev:after{
	left: 0;
	background-position: 0px -35px;
}
.sl_load{
	width: 50px;
	height: 50px;
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	background: rgba(0,0,0,0.5);
	border-radius: 5px;
	background:rgba(0,0,0,0.7) url(../img/loading.gif)no-repeat center;
	background-size:30px;
	display: none;
}






/* Адаптация */
/* md */
@media only screen and (max-width : 1199px){}
/* sm */
@media only screen and (max-width : 991px){}
/* xs */
@media only screen and (max-width : 767px){}
/* xxs */
@media only screen and (max-width : 480px){}