html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}

html,body {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#content {
	position: relative;
	z-index: 1;
}

/* index */
.masthead {
	color: #fff;
	padding-top: 80px;
}

.masthead h1 {
	font-size: 100px;
}

.masthead .lead {
	color: #9c9c9c;
	font-size: 30px;
}

.masthead ul a {
	color: #fff;
	font-size: 14px;
}

#go-fire:hover,#go-fire:focus {
	background-color: #F16022;
}

#go-earth:hover,#go-earth:focus {
	background-color: #84b231;
}

#go-water:hover,#go-water:focus {
	background-color: #5e95cc;
}

#go-wind:hover,#go-wind:focus {
	background-color: #bababa;
}

#go-love:hover,#go-love:focus {
	background-color: #c63d4e;
}

footer {
	border-top: 1px solid #ddd;
	padding: 30px;
	margin-top: 50px;
}

/* Small devices (tablets,  and up) */
@media ( min-width : 768px) {
	.masthead {
		padding-top: 150px;
	}
}

/* bootstrap */ /*
.row > [class*="col-"] {
  margin-bottom: 20px;
}*/
.navbar-demo .navbar-container {
	position: relative;
	min-height: 100px;
	z-index: 100;
}

.navbar-demo .navbar.navbar-fixed-top,.navbar-demo .navbar.navbar-fixed-bottom
	{
	position: absolute;
	top: 50px;
	z-index: 0;
}

.navbar-demo .navbar.navbar-fixed-top .container,.navbar-demo .navbar.navbar-fixed-bottom .container
	{
	max-width: 90%;
}

.btn-group {
	margin-bottom: 10px
}

.form-inline select,.form-inline input[type="text"],.form-inline input[type="password"]
	{
	width: 180px;
}

.input-group {
	margin-bottom: 10px;
}

.pagination {
	margin-top: 0;
}

.navbar-inverse {
	margin: 110px 0
}

.bs-header {
	background: linear-gradient(limegreen, transparent),
		linear-gradient(-90deg, skyblue, transparent),
		linear-gradient(90deg, coral, transparent);
	background-blend-mode: screen;
	height: 110px;
	padding: 0px;
	padding-top: 45px;
	padding-left: 30px;
	color: #fff;
}

.bs-header h1 {
	margin-bottom: 2px !important;
	font-size: 16px;
	font-weight: bold;
	font-family: 'Open Sans Condensed', sans-serif;
}

.bs-header>span {
	font-size: 12px;
	padding: 0px !important;
	margin: 0px !important;
}

@media ( max-width : 640px ) {
	.buttons-table th:nth-child(4),.buttons-table th:nth-child(5),.buttons-table th:nth-child(6),.buttons-table td:nth-child(4),.buttons-table td:nth-child(5),.buttons-table td:nth-child(6)
		{
		display: none;
	}
}

/* extras */
.menu-list {
	margin-top: 30px;
}

.menu-list.affix {
	position: static;
}

.page-header {
	padding-top: 50px;
}

/* Small devices (tablets,  and up) */
@media ( min-width : 768px) {
	.menu-list.affix {
		position: fixed;
		top: 0;
		width: 160px;
		margin-top: 90px;
	}
}

/* Medium devices (desktops,  and up) */
@media ( min-width : 992px) {
	.menu-list.affix {
		width: 212px;
	}
}

/* Large devices (large desktops,  and up) */
@media ( min-width : 1200px) {
	.menu-list.affix {
		width: 260px;
	}
}

.bs-callout {
	padding: 20px;
	margin: 20px 0;
	border: 1px solid #eee;
	border-left-width: 5px;
	border-radius: 3px;
}

.bs-callout-info {
	border-left-color: #5bc0de;
}

#preloader {
	width: 48px;
	height: 51px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -0px 0 0 -0px;
	display: none;
	/*background-color:rgba(255,255,255,0.8);*/
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.element-animation-circle{
  animation: animationFramescircle ease .8s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: animationFramescircle ease .8s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFramescircle ease .8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFramescircle ease .8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFramescircle ease .8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFramescircle{
  0% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  25% {
    opacity:0.9;
    transform:  scaleX(1.40) scaleY(1.40) ;
  }
  64% {
    opacity:0.9;
    transform:  scaleX(1.40) scaleY(1.40) ;
  }
  100% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes animationFramescircle{
  0% {
    opacity:1;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
  }
  25% {
    opacity:0.9;
    -moz-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  64% {
    opacity:0.9;
    -moz-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  100% {
    opacity:1;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes animationFramescircle {
  0% {
    opacity:1;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
  }
  25% {
    opacity:0.9;
    -webkit-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  64% {
    opacity:0.9;
    -webkit-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  100% {
    opacity:1;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes animationFramescircle {
  0% {
    opacity:1;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
  }
  25% {
    opacity:0.9;
    -o-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  64% {
    opacity:0.9;
    -o-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  100% {
    opacity:1;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes animationFramescircle {
  0% {
    opacity:1;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
  }
  25% {
    opacity:0.9;
    -ms-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  64% {
    opacity:0.9;
    -ms-transform:  scaleX(1.40) scaleY(1.40) ;
  }
  100% {
    opacity:1;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}