.skins {
  position: fixed;
  top: 120px;
  left: -222px;
  transition: .3s ease-in-out;
}

.skins:hover {
  left: 0;
}

.skin-colors {
  list-style: none;
  padding: 20px;
  margin: 0;
  background-color: #fff;
  width: 222px;
  border: 1px solid #e7e7e7;
}

.skin-colors li {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  cursor: pointer;
  margin: 4px;
  transition: .3s ease-in-out;
}

.skin-colors li:hover {
  opacity: .7;
}

.skin-colors li.active::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 20px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  position: absolute;
  color: #fff;
}

.skin-toggler {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  right: -49px;
  top: 0;
  background-color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  color: #888;
  border: 1px solid #e7e7e7;
  border-left: 0;
}

.map {
  width: 100%;
  height: 200px;
}

.captcha {
  background: #fff;
  height: 46px;
  padding: 8px;
  position: relative;
}

.captcha .code {
  height: 30px;
}

.captcha .refresh {
  height: 30px;
  position: absolute;
  right: 5px;
  top: 7px;
  z-index: 1;
  cursor: pointer;
}

.navheader {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.navheader .upper {
  background: url(../assets/img/bg_header.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 3px solid #a75f57;
}

.navheader .inner {
  overflow: hidden;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 14px 0px;
}

.navheader .left_logo {
  height: 75px;
  float: left;
  margin-left: 10px;
  transition: all 0.5s;
}

.navheader.small .left_logo {
  height: 45px;
}

.navheader .right_logo {
  float: right;
  padding: 10px 0;
  transition: all 0.5s;
}

.navheader.small .right_logo {
  padding: 5px 0;
}

.navheader .right_logo img {
  padding: 0 18px;
  height: 54px;
  transition: all 0.5s;
}

.navheader.small .right_logo img {
  height: 35px;
}

.navheader .title {
  font-family: 'Times New Roman', Times, serif;
  color: #00863d;
  font-size: 30px;
  float: left;
  margin-top: 22px;
}

.navmenu {
  background: rgb(167,94,87);
  background: -moz-linear-gradient(180deg, rgba(167,94,87,1) 0%, rgba(133,73,67,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(167,94,87,1) 0%, rgba(133,73,67,1) 100%);
  background: linear-gradient(180deg, rgba(167,94,87,1) 0%, rgba(133,73,67,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a75e57",endColorstr="#854943",GradientType=1);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.navmenu .col {
  float: left;
  width: 50%;
}

.navmenu a {
    color: #fff3ce;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 18px 8px;
    display: inline-block;
}

.navmenu a:hover {
    color: #fff;
}

.user_types_radio {
  border: 1px solid #e5e5e5;
  padding: 15px;
  border-radius: 5px;
}

.user_types_radio label {
  display: block;
  margin-top: 15px;
}

@media (max-width: 767px){
.skins {
  top: 80px;
}
}