/**********************************************/
/**********************************************/
/*                                            */
/*                                            */
/*               GENERAL CSS 1.2              */
/*              by Kevin Finnegan             */
/*                                            */
/*   Optimized styling, removed unnecessary   */
/*       elements, dropped IE support         */
/*     Font display optional for preload      */
/*                                            */
/**********************************************/
/**********************************************/

/************************************/
/* FONT FACES FOR UBUNTU            */
/************************************/
@font-face {
    font-family: 'ubuntu';
    src: url('sans/ubunturegular.eot');
    src: url('sans/ubunturegular.eot?#iefix') format('embedded-opentype'),
        url('sans/ubunturegular.woff') format('woff'),
        url('sans/ubunturegular.ttf') format('truetype'),
		url('sans/ubunturegular.svg#UbuntuRegular') format('svg');
    font-display: swap;
	font-weight: normal;
    font-style: normal;
}

/************************************/
/* DEFAULT BODY & CONTAINER         */
/************************************/
html {
/* Cross-browser box-sizing! */
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


body{
/* Removes annoying padding/margins */
    margin: 0 0;
    padding: 0 0;
}

html, button, input, select, textarea, pre,
.pure-g [class *= "pure-u"] {
    /* Set your content font stack here: */
    font-family: ubuntu, FreeSans, Arimo, Droid Sans, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
}

.color-underline {
	display: inline-block;
	margin: 10px 0 10px 0;
	border-bottom: 2px solid #f80;	
}

/************************************/
/* MINIMIZED PURE-CSS 0.5 SNIPPET   */
/************************************/
.pure-g {
letter-spacing: -.31em;
text-rendering: optimizespeed;
display: flex;
flex-flow: row wrap;
}

/************************************/
/* MINIMIZED PURE-CSS FOR GRID BOX  */
/************************************/
@media screen and (min-width: 35.5em){
	.pure-u-sm-1-2 {
		width: 50%;
	}
}

@media screen and (min-width: 54.38em){
	.pure-u-lmd-1-2{
		width: 50%;
	}
}

@media screen and (min-width: 35.5em) {
	.pure-u-sm-1-2 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto;
	}
}

@media screen and (min-width: 54.38em){
	.pure-u-lmd-1-2 {
		display: inline-block;
		zoom: 1;
		letter-spacing: normal;
		word-spacing: normal;
		vertical-align: top;
		text-rendering: auto;
	}
}

.pure-u-1 {
	display: inline-block;
	zoom: 1;
	letter-spacing: normal;
	word-spacing: normal;
	vertical-align: top;
	text-rendering: auto;
}

/************************************/
/* BASIC PAGE/CONTAINER DIV DESIGN  */
/************************************/
html {
    position:relative;
    overflow-x: hidden;
    overflow-y: hidden;
    height:100%;
	width: 100%;
}

body{
    position:inherit;
    overflow-x: inherit;
    overflow-y: inherit;
    height:inherit;
	width: inherit;
}

#body-container {
	position:relative;
	height:inherit;
	width: inherit;
    /* CSS3 Slick transition  */
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;	
}

#container{
	position:absolute;
    z-index: 0;
    background-image: url('/data/uploads/img/noise_pale.jpg');
	left:0;
	right:0;
	bottom:0;
	overflow-y: scroll;
}

#container ul{
	padding: 0 0;
	margin: 0 0;
}

#container li {
	padding: 0 0 5px 0;
}

#ewi-price-table{
	box-shadow: 1px 2px 5px #666;
	border: none;
}

#ewi-price-table th {
	background-color: #f80;
	color: white;
	text-shadow: 1px 1px 2px #333;
	border-color: #d70;
}

#ewi-price-table td {
	background-color: #fff;
	border-color: #ccc;
}

/************************************/
/* HEADER DIV DESIGN                */
/************************************/
#header {
    z-index: 1;
    position:absolute;
	left:0;
	right:0;
	font-family: 'ubuntu';
    background: #111;
    border-bottom: 2px solid #f80;
}

#header-container {
    width: inherit;
	height: inherit;
    margin: auto;
}

#horizon-logo {
	z-index: 2;
	display:inline-block;
	position: relative;
	bottom: 2px;
}

.vert-center-outer {
    display: table;
    height: 100%;
}

.vert-center-middle {
    display: table-cell;
    vertical-align: middle;
}

.vert-center-inner {
    margin-left: auto;
    margin-right: auto; 
}

#container{
    overflow-x: hidden;
}

#side-button{
    float:left;
	cursor: pointer;
}

#side-button a{
	display: inline-block;
	height: inherit;
	width: inherit;
}

.spin-animation{
  animation: sideButtonSpin ease-out 0.2s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  -webkit-animation: sideButtonSpin ease-out 0.2s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation-fill-mode: forwards;
}



@keyframes sideButtonSpin{
  0% {
    transform:  rotate(0deg) ;
  }
  100% {
    transform:  rotate(450deg) ;
  }
}

@-moz-keyframes sideButtonSpin{
  0% {
    -moz-transform:  rotate(0deg) ;
  }
  100% {
    -moz-transform:  rotate(450deg) ;
  }
}

@-webkit-keyframes sideButtonSpin {
  0% {
    -webkit-transform:  rotate(0deg) ;
  }
  100% {
    -webkit-transform:  rotate(450deg) ;
  }
}


.slide-right  {
    -webkit-transform: translateX(250px) translateZ(0); /* Chrome, Safari, Opera */
    transform: translateX(250px) translateZ(0);
}

.options-grid:hover .big-icon{
	animation-name: pulse;
	-webkit-animation-name: pulse;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1.0);	
	}
	50% {
		transform: scale(0.9);
	}	
	100% {
		transform: scale(1.0);
	}			
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1.0);
	}
	50% {
		-webkit-transform: scale(0.90);
	}	
	100% {
		-webkit-transform: scale(1.0);
	}			
}

@keyframes slideRight {
	0% {
		transform: translateX(-100%);
	}	
	100% {
		transform: translateX(0%);
	}	
}

@-webkit-keyframes slideRight {
	0% {
		transform: translateX(-100%);
	}	
	100% {
		transform: translateX(50%);
	}	
}

/************************************/
/* SIMILAR NAVIGATION DESIGN        */
/************************************/
#navibar img {
    display:block;
}

/************************************/
/* PORTFOLIO NAVIBAR DESIGN         */
/************************************/
#navibar{
	float: right;
    list-style-type:none;
    list-style-image:none;
    margin: 0;
    padding: 0;
	height: inherit;
}

#navibar li {
    margin:0;
	padding:0;
    float: left;
    display:block;
    height: inherit;
}

#navibar a {
    display: inline-block;
    color:white;
    cursor: pointer;
    padding: 5px 15px 0 15px;
	font-size: 24px;
    text-align: center;
    text-decoration: none;
	text-shadow: 2px 2px 2px #444;
	
    /* Make link fill out to same size as lists */
    height: inherit;
    width: inherit;

    /* CSS3 Slick transition  */
    -webkit-transition: background 0.1s linear;
    transition: background 0.1s linear;
}

#navibar li:hover a {
    color:white;
    background-color: #f80;
}

#navibar img {
    margin: 6px auto 0 auto;
}

#navibar span {
	padding-bottom: 5px;
	border-bottom: 2px solid #f80;
}


/************************************/
/* PORTFOLIO SIDEBAR DESIGN         */
/************************************/
#sidebar-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -250px;
    right: 0;
    background-image: url("/data/uploads/img/noise_pale.jpg");
    box-shadow: inset -2px 0 5px #777;
    width: 250px;
    margin:0;
    padding: 0;

    /* CSS3 Slick transition  */
    -webkit-transition: all 0.07s linear;
    transition: all 0.07s linear;
}

#sidebar {
    display:inline-block;
    width: 100%;
    margin:0;
    padding: 0;
}

#side-header {
    z-index: 1;	
    border-bottom: 2px solid #f80;
	border-right: 2px solid #e70;
    box-shadow: 0 2px 2px #888;
    clear: both;
    background: #111;
}

#sidebar li {
    float: left;
	/* height in adjust file */
	width: inherit;
    display: inline;
	box-shadow: inset 0 -1px 2px #888888;
    /* CSS3 Slick transition  */
    -webkit-transition: background 0.07s linear;
    transition: background 0.07s linear;
}

#sidebar li:hover {
	background-color: #7c7c7c;
    background-color: rgba(0,0,0,0.55);
}

#sidebar li:hover a {
    color:white;
	text-shadow: 1px 1px 2px #222222;
}

#sidebar a{
    display:block;
    color:black;
    padding: 0 0 0 10px;
    width: inherit;
    height: inherit;
}

#sidebar span {
    display:inline-block;
}

#sidebar img {
    float:left;
}

/************************************/
/* JUMBOTRON IMAGE DESIGN           */
/************************************/
.jumbotron {
	width: inherit;
	position: relative;
	display: block;
	clear: both;
	z-index: 1;
}

.jumbotron > img {
	display: block;
	z-index: 10;
}

.jumbo-description {
	background: #f80;
	color: white;
	padding: 5px 10px 20px 10px;
	z-index: 20;
}

.jumbotron p, .jumbotron ul,  .jumbotron h1, .jumbotron h2 , .jumbotron h3{
	text-shadow: 1px 1px 2px #333;
}

.jumbo-description h1 > span {
	border-bottom: none;	
}


/************************************/
/* SKINNYTRON IMAGE DESIGN          */
/************************************/
.skinnytron {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	z-index: 1;
}

.skinnytron > img {
	display: block;
	z-index: 10;
}

.skinny-description {
	background: #f80;
	color: white;
	padding: 5px 10px 10px 10px;
	z-index: 20;
}

.skinnytron p, .skinnytron ul,  .skinnytron h1, .skinnytron h2, .skinnytron h3  {
	text-shadow: 1px 1px 2px #333;
}

.skinny-description h1 > span {
	border-bottom: none;	
}


/************************************/
/* PURE-CSS OPTIONS GRID BOX DESIGN */
/************************************/
.grid-box {
	padding: 1%;
}

.options-grid{
	position: relative;
	display: block;
	clear: both;
	z-index: 1;
	box-shadow: 1px 2px 5px #999;
}

.options-grid > img {
	display: block;
	z-index: 10;
}

.options-description {
	background: #f80;
	padding: 1.5em 10px 10px 10px;
	z-index: 20;
	position: relative;
	width: 100%;
}

.options-description p, .options-description pre, .options-description ul,  
.options-description h1, .options-description h2 , .options-description h3{
	text-shadow: 1px 1px 2px #333;
	padding: 0 10%;
}

.options-grid h1 > span {
	border-bottom: none;	
}

.options-icon {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	margin: auto;
	cursor: pointer;
}