



.btn-yellow{
  background: #fd9800;
  color: #fff;
}

.main-content{
  color: #fff;
  background-color: #fff;
}

.navbar-menu{
  list-style: none;
  padding:0;
}
.navbar-menu{
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.navbar-menu li{
  float: left;
  margin-right: 2.125rem;
}
.navbar-menu a{
  color: #999999;
  letter-spacing: 0.025em;
  font-weight: 600;
  text-transform: uppercase;
}
.nav > li > a{
  padding:0;
}
.nav > li > a:hover, .nav > li > a:focus{
  background: none;
}
.navbar-menu .active > a,
.navbar-menu .active a,
.navbar-menu a:hover,
.navbar-menu a:focus{
  color: #000;
  text-decoration: none;
}

.navbar-menu ul{
  background: #FFF;
  display: none;
  list-style: none;
  padding:0;
  margin: 0;
  position: absolute;
}
.navbar-menu ul li{
  float: none;
  margin: 0;
  padding:0;
  padding: 0 2rem 1rem 2rem;
}
.navbar-menu ul li a{
  font-size: 1.142rem;
  font-weight: normal;
  text-transform: none;
  white-space: nowrap;
}
.navbar-menu ul li:first-child{
  padding-top:2.4rem;
}



select {
  display: inline-block;
  width:100%;
  font-size: 1rem;
  border-radius: 0.75em;
  color: #3d3d3d;
  background-color:#fff;
  border:0;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  padding:0.2rem 1rem 0;
  height:3.6em;
  /*
  -webkit-box-shadow:none;
          box-shadow:none;
      -webkit-appearance: none;
  -webkit-transition: all .15s;
       -o-transition: all .15s;
          transition: all .15s;
          */
}
select:focus{
  border-color: #fd9800;
  outline: 0;
}

select.select-gray{
  background: #f6f6f6;
}






input[type="checkbox"], input[type="radio"]{
	position: absolute;
	right: 9000px;
}

/*Check box*/
input[type="checkbox"] + .label-text:before{
	content: "\f096";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}

input[type="checkbox"]:checked + .label-text:before{
	content: "\f14a";
	color: #2980b9;
	animation: effect 250ms ease-in;
}

input[type="checkbox"]:disabled + .label-text{
	color: #aaa;
}

input[type="checkbox"]:disabled + .label-text:before{
	content: "\f0c8";
	color: #ccc;
}

/*Radio box*/
input[type="radio"] + .label-text:before{
	content: "\f10c";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}

input[type="radio"]:checked + .label-text:before{
	content: "\f192";
	color: #8e44ad;
	animation: effect 250ms ease-in;
}

input[type="radio"]:disabled + .label-text{
	color: #aaa;
}

input[type="radio"]:disabled + .label-text:before{
	content: "\f111";
	color: #ccc;
}

/*Radio Toggle*/
.toggle {
  margin-right: 20px;
}
.toggle input[type="radio"] + .label-text,
.toggle input[type="radio"] + .label-text:before{
  cursor: pointer;
}
.toggle input[type="radio"] + .label-text:before{
	content: "\f204";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 10px;
}

.toggle input[type="radio"]:checked + .label-text:before{
	content: "\f205";
	color: #fd9800;
	animation: effect 250ms ease-in;
}

.toggle input[type="radio"]:disabled + .label-text{
	color: #aaa;
}

.toggle input[type="radio"]:disabled + .label-text:before{
	content: "\f204";
	color: #ccc;
}

@keyframes effect{
	0%{transform: scale(0);}
	25%{transform: scale(1.3);}
	75%{transform: scale(1.4);}
	100%{transform: scale(1);}
}






.double-osborne1, .double-osborne2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*background-color: #fd9800;*/
  background-image: url(/site/assets/images/osborne/loading_osborne.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-osborne 2.0s infinite ease-in-out;
  animation: sk-osborne 2.0s infinite ease-in-out;
}
.double-osborne2 {
  -webkit-animation-delay: -2.0s;
  animation-delay: -2.0s;
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
  opacity: 0.8;
  background-image: url(/site/assets/images/osborne/loading_osborne.png);
}
@-webkit-keyframes sk-osborne {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-osborne {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
