/***** Search *****/
.searchform {
  float: left;
  width: 100%;
}
.searchform:after {
  content: "";
  background: #2d2c40;
  bottom: 0;
  width: 0%;
  height: 1px;
  position: absolute;
  transition: 1s all;
  -webkit-transition: 1s all;
  left: 0;
}
.box-search-menu.active .searchform:after{ width: 100%; }
.searchform .btntext {
  z-index: 1;
  width: 200px;
  height: 33px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 32px;
  outline: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.searchform .search-btn {

  right: 0px;
  top: 0;
  z-index: 2;
  width: 52px;
  height: 48px;
  border: 1px solid #e0e0e0;
  line-height: 24px;
  background: #fff;
  color: #616161;
  outline: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 20px;
  cursor: pointer;
}
.searchform .search-btn:hover{
  background: #ff6709;
  color: #fff;
}
.searchform #searchsubmit {
  background: url("images/icon_search.png") no-repeat scroll center center rgba(0, 0, 0, 0);
  border: medium none;
  float: left;
  height: 24px;
  padding: 0;
  width: 19%;
}



@media only screen and (min-width: 995px) and (max-width: 1200px) {
  .searchform .btntext{ width: 170px; }
}

@media only screen and (max-width: 768px){
  .searchform .btntext{
    position: unset;
  }
  .searchform .btntext{ width: 250px; }
}