/**********************************************************************/
/**********************************************************************/
body {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	background-color: #FFFFFF;
	font: normal normal 16px / 26px "Open Sans", sans-serif;
    color: #000000;
	cursor: default;
    -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
body.dark {
	background-color: #1C1D21;
	color: #FFFFFF;
}
body.show-menu, body.show-popup {
	overflow: hidden;
}
body * {
	box-sizing: border-box;
	margin: 0;
}

/**********************************************************************/
a {
	display: inline-block;
	text-decoration: none;
}

/**********************************************************************/
img {
    display: block;
	height: auto;
    max-width: 100%;
}
iframe {
    display: block;
    max-width: 100%;
	max-height: 100%;
}

/**********************************************************************/
.hide {
	display: none !important;
}


/**********************************************************************/
/**********************************************************************/
.row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -10px;
	margin-right: -10px;
}
.col {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	padding-right: 10px;
}
.col-12 { width: 100%; }
.col-11 { width: 91.66666%; }
.col-10 { width: 83.33333%; }
.col-9 { width: 75%; }
.col-8 { width: 66.66666%; }
.col-7 { width: 58.33333%; }
.col-6 { width: 50%; }
.col-5 { width: 41.66666%; }
.col-4 { width: 33.33333%; }
.col-3 { width: 25%; }
.col-2 { width: 16.66666%; }
.col-1 { width: 8.33333%; }


/**********************************************************************/
/**********************************************************************/
.container {
	display: flex;
	flex-direction: column;
}
.container__content {
	width: 1260px;
	max-width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
}


/**********************************************************************/
/**********************************************************************/
.main {
	position: relative;
	padding-top: 50px;
}


/**********************************************************************/
/**********************************************************************/
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.7);
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 180;
	cursor: pointer;
}
body.show-popup .overlay {
	opacity: 1;
	pointer-events: initial;
}


/**********************************************************************/
/**********************************************************************/
.grecaptcha-badge {
	display: none !important;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.col-md-12 { width: 100%; }
	.col-md-11 { width: 91.66666%; }
	.col-md-10 { width: 83.33333%; }
	.col-md-9 { width: 75%; }
	.col-md-8 { width: 66.66666%; }
	.col-md-7 { width: 58.33333%; }
	.col-md-6 { width: 50%; }
	.col-md-5 { width: 41.66666%; }
	.col-md-4 { width: 33.33333%; }
	.col-md-3 { width: 25%; }
	.col-md-2 { width: 16.66666%; }
	.col-md-1 { width: 8.33333%; }
	
	
	/******************************************************************/
	/******************************************************************/
	.container__content {
		max-width: calc(100% - 40px);
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.col-12, .col-11, .col-10, .col-9, .col-8, .col-7,
	.col-6, .col-5, .col-4, .col-3, .col-2, .col-1,
	.col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7,
	.col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
		width: 100%;
	}
	
	/******************************************************************/
	.col-sm-12 { width: 100%; }
	.col-sm-11 { width: 91.66666%; }
	.col-sm-10 { width: 83.33333%; }
	.col-sm-9 { width: 75%; }
	.col-sm-8 { width: 66.66666%; }
	.col-sm-7 { width: 58.33333%; }
	.col-sm-6 { width: 50%; }
	.col-sm-5 { width: 41.66666%; }
	.col-sm-4 { width: 33.33333%; }
	.col-sm-3 { width: 25%; }
	.col-sm-2 { width: 16.66666%; }
	.col-sm-1 { width: 8.33333%; }
	
	
	/******************************************************************/
	/******************************************************************/
	.main {
		padding-top: 40px;
	}
	.main__content {
		position: relative;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	body.show-menu .overlay {
		opacity: 1;
		pointer-events: initial;
	}
}

/******************************************************************/
.arrow_top
{
   display:block;
   position:fixed;
   bottom:1em;
   right:1em;
   width:3.75em;
   height:3.75em;
   border-radius:1.875em;
   background:url('/wp-content/themes/factory16/img/icons/arrow_up.svg') center/auto no-repeat #007EFF;
   cursor:pointer;
   z-index:1;
}