#ult-fs-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);

    opacity: 0;
}

#ult-fs-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#ult-fs-search input[type="text"] {
    position: relative;
  float: left;
  margin-top: 100px !important;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    outline: none;
}
#ult-fs-search input[placeholder]{
padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 30px;}
#ult-fs-search .btn {
      position: relative;
  left: 0;
  margin-top: 50px;
  width: 100%;
  border-radius: 0;
  padding: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5em;
  background-color: #6bb2e6;
  border: 0;
  color: white;
}
#ult-fs-search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #6bb2e6;
    border:0;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}