
#trigger-overlay{
  background-color: transparent;
  border: none;
}

.overlay1 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255, 0.9);
  z-index: 999;
  overflow-y: scroll;
}
.overlay-contentscale {
  visibility: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
  transition: transform 0.5s, visibility 0s 0.5s;
}
.overlay-contentscale.open {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.overlay1 .overlay-close {
  /*width: 80px;
  height: 80px;*/
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  background: none;
  border: none;
  font-size: 40px;
  color: black;
  outline: none;
  z-index: 100;
}

.overlay1 .overlay-close i{
  cursor: pointer;
}

.tl_search_inner {
  width: 750px;
  margin: 0 auto;
  padding-top: 200px;
}

.tl_search_inner form {
  float: left;
  width: 100%;
  position: relative;
}

.tl_search_inner form input[type="text"] {
  font-size: 14px;
  color: black;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  padding: 0;
  background: transparent;
  border:none;
  border-bottom: 1px solid black;
  position: relative;
  float: left;
  width: 100%;
  padding-left: 10px;
}

.tl_search_inner form .submit {
  font-size: 18px;
  color: #F438A3;
  height: 40px;
  line-height: 40px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  background-color: transparent;
  border: #F438A3;
}

@media only screen and (max-width: 600px) {
 .tl_search_inner{
  width: 100%;
 }

 .tl_search_inner form input[type="text"] {
  padding-right: 45px;
 }

}
