@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	color: inherit;
	text-decoration: none;
}
img{
	width: auto;
	height: auto;
}
.clear_5{
	clear: both;
	height: 5px;
}
.clear_10{
	clear: both;
	height: 10px;
	width: 100%;
}
.clear_20{
	clear: both;
	height: 20px;
}
.clear_30{
	clear: both;
	height: 30px;
}
.padding_20{
	padding: 20px;
}
.pos_relative{
	position: relative;
}
.w100{
	width: 100%;
}
.w70{
	width: 70%;
}
.h100{
	height: 100%;
}
.pointer{
	cursor: pointer;
}
.grid{
	display: grid;
}
.flex{
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
}
.flex_start{
	justify-content: flex-start;
}
.column{
	flex-direction: column;
}
.space_between{
	justify-content: space-between;
}
.bck_img{
	background-size: cover;
	background-position: center;
	position: relative;
}
.img_full{
	object-fit: scale-down;
    width: 100%;
    height: 100%;
}
.img_full.abs {
    position: absolute;
    top: 0;
}
form input:not([type='checkbox']), form textarea{
	-webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
}
.square_form{
	position: relative;
}
.square_form:after{
	content: "";
	display: block;
	padding-bottom: 100%;
}
.square_form .abs{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}

