html,body{
	width: 100%;
}

body{
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
}
html:not(.stickyfooter),body:not(.stickyfooter){
	height: 100%
}
a:-moz-focusring {
    outline:none!important;
}
*:focus{
	outline: none!important;
}
h1 {font-size: 4em; }
h2 {font-size: 3em; }
h3 {font-size: 2.34em; }
h4 {font-size: 1.3em;}
h5 {font-size: 0.83em;}
h6 {font-size: 0.75em; }

/**
* #.# Full Table
*
* Container with center content(horizontal and vertical)
*/
.full-table{
	display: table;
	width: 100%;
	height: 100%;	
}
.full-cell{
	display: table-cell;
	width: 100%;
	height: 100%;	
	vertical-align: middle;
	text-align: center;
}
.full-cell.text-left{text-align: left;}
.table-cell{
	display: table-cell;
	height: 100%;	
	vertical-align: middle;
	text-align: center;
}

/**
* #.# Absolute Center
*
* Absolute centered container
*/
.absolute-center{
	position:absolute;
	top:50%;
	text-align:center;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
}

/**
* #.# Flex container
*
* Flex container
*/
.flex-container{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;	
}
.flex-row{
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.flex-column{
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
}
.flex-center{
	-webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-justify{
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-space-around{
	-webkit-justify-content:space-around;
	    -ms-flex-pack:distribute;
	        justify-content:space-around;
}
.flex-end{
	-webkit-box-pack:end;
	-webkit-justify-content:flex-end;
	    -ms-flex-pack:end;
	        justify-content:flex-end
}
.flex-vcenter{
	-webkit-box-align:center;
  	-webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center
}
/**
* #.# Absolute container
*
* Make bootstrap container absolute positioned
*/
.absolute-container{
	position: absolute;
	left: 0;
	right: 0;
	margin:0 auto;
}

/**
* #.# Body borders
*
* Borders for website
*/
#top, #bottom, #left, #right {
	background: #fff;
	position: fixed;
	z-index: 10000;
}
#left, #right {
	top: 0; bottom: 0;
	width: 50px;
}
#left { left: 0; }
#right { right: 0; }
	
#top, #bottom {
	left: 0; right: 0;
	height: 50px;
}
#top { top: 0; }
#bottom { bottom: 0; }
.in-bounds{ padding: 50px;}

/**
* #.# Loader
*
* 
*/
#loader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 10000;
}

/**
* #.# Fullpage
*
* Full width and height container with cover background
*/
.fullpage{
	position:relative;
	width:100%;
	height:100%;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	overflow: hidden;
}
/**
* #.# Button
*
* Nero Button styles basics
*/
.nero-button{
	display: inline-block;
	padding: 8px 16px;
	cursor: pointer;
	-webkit-transition:background-color 0.3s linear;
	-ms-transition:background-color 0.3s linear;
	transition:background-color 0.3s linear;
}
a.nero-button,a.nero-button:hover,a.nero-button:focus,a.nero-button:visited{
	text-decoration: none;
}


/**
* #.# Blocks
*
* 
*/
.block{
	margin-top:30px;
}
.big-block{
	margin-top:60px;
}
.block-inverse{
	margin-top: -30px;
}
/**
* #.# Map 
*
* Map containers
*/
.map-canvas-container{
	height:400px;
	overflow-y: hidden;
}
.map-canvas{
	width: 100%; 
	height: 420px;
}

/**
* #.# Custom fields
*
* Cudtom form fields style
*/
.custom-field{
    border: none;
    border-bottom: solid 1px #000;
    border-radius: 0;
    -webkit-border-radius: 0;
    height:50px;
    background-color:transparent;
    color: #000;
    box-shadow: none;
    line-height: 1.2;
}
.custom-field:focus {
    border:none;
    border-bottom: solid 1px #000;
    box-shadow: none;
}
.custom-field::-webkit-input-placeholder{ 
	color:#000;
	opacity: 1;
}
.custom-field:-moz-placeholder{ 
	color:#000;
	opacity: 1;
}
.custom-field::-moz-placeholder{ 
	color:#000;
	opacity: 1;
}
.custom-field:-ms-input-placeholder{ 
	color:#000;
	opacity: 1;
}


input[type="checkbox"]:not(:checked), input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
input[type="checkbox"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

input[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 1px solid #000;
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

input[type="checkbox"]:checked + label:before {
    top: -4px;
    left: -3px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
/**
* #.# Parallax 
*
* Parallax container style
*/
.parallax{
	width:100%;
	height: 600px;
	background-position: center top;
	background-attachment: fixed;
	background-size: cover;
	background-repeat:no-repeat;
}

/**
* #.# Overlay mix
*
* Div with blend mode
*/
.overlay-mix{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear;
}
.overlay-mix.multiply{
	mix-blend-mode: multiply;
}
.overlay-mix.hard-light{
	mix-blend-mode:hard-light;
}
.overlay-mix-caller:hover .overlay-mix{
	opacity: 1;
}

/**
* #.# Menu 
*
* Common menu styles
*/ 
ul.menu{
	list-style: none;
	padding: 0;
	margin:0;
}
@media(min-width: 992px){
	ul.menu > li{
		float: left;
		margin-left: 20px;
	}
}

ul.menu > li a,ul.menu > li a:hover,ul.menu > li a:focus,ul.menu > li a:visited,ul.menu > li a:active{
	color: #000;
}
.logo-menu{
	max-height: 100%;
}

/**
* #.# Rotated text
*
*/
.rotated-text{
	position: absolute;
    left: 50%;    
    display: inline-block;
    white-space: nowrap;
}
.rotated-text-right-center {
	top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.rotated-text-right{
	top: 0;
    -webkit-transform: translateX(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) rotate(-90deg);
    -o-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg);
}
.rotated-text-left{
	top: 0;
	-webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    -o-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
}
.rotated-text-left-center{
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
/**
* #.# Mini Helpers
*
* Generics
*/
.full-height{
	height: 100%;
}
.full-width{
	width:100%;
}
.half-width{
	width: 50%;
}
.zero-margin{margin: 0;}
.zero-padding{padding: 0;}

.row-adjust{
	margin-right: 0;
	margin-left: 0;
}

.img-link{
	cursor: pointer;
}
.center-content{
	text-align: center;
}
.left-content{
	text-align: left;
}
.right-content{
	text-align: right;
}
.relative{position: relative;}

.uppercase{
	text-transform: uppercase;
}
.lowercase{
	text-transform: lowercase;
}
/**
* #.# Media Queries
*
*
*/
@media (max-width: 767px){
	#bottom, #left, #right {
		display: none;
	}
}

@media (min-width: 1600px){
	body{font-size: 17px;}
	.container{
		width: 1400px;
	}
}