.search-icon {
  display: block;
  width: 50px;
  height: 41px;
  background-color: #FF7F00;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: fixed;
  right: 0px;
  top: 97px!important;
  text-align: center;
  z-index: 100;
  -moz-transition: top 0.7s;
  -o-transition: top 0.7s;
  -webkit-transition: top 0.7s;
  transition: top 0.7s;
} 
.search-icon i {
  line-height: 42px;
  color: #fff;
  font-size: 21px;
}
.search-icon i#close-search {
  display: none;
}
.search-icon:hover {
  cursor: pointer;
}

.search-icon.reverse {
  background-color: #FF7F00;
  top: 5px;
  z-index: 9999;
}
.search-icon.reverse i {
  color: #6a3261;
}
.search-icon.reverse i#open-search {
  display: none;
}
.search-icon.reverse i#close-search {
  display: inline;
}

@media screen and (min-width: 992px) {
  .search-icon {
    top: 95px;
  }
}
.search-bar {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #4e217b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
}

.search-bar .uncover-input {
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 200px;
  z-index: 101;
  background-color: #6a3261;
  -moz-animation: uncover 2s;
  -webkit-animation: uncover 2s;
  animation: uncover 2s;
}

@-moz-keyframes uncover {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
  }
}
@-webkit-keyframes uncover {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
  }
}
@keyframes uncover {
  0% {
    width: 100%;
  }
  100% {
    width: 0px;
  }
}
.search-bar .input-container {
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  -moz-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 100;
  height: 75px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-bar .input-container input {
  border: none;
  outline: 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 127, 0, 0.4);
  font-family: Yanone, Arial, Helvetica, sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  padding: 14px 7px;
  color: #fff;
  font-weight: 700;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: block !important;
  height: auto;
  min-width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-bar .input-container input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.search-bar .input-container input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.search-bar .input-container input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.search-bar .input-container input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.search-bar .input-container .search-button {
  border: none;
  outline: 0;
  background: none;
  padding: 0px 10px;
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 35px;
  color: #FF7F00;
}

@media screen and (min-width: 768px) {
  .search-bar .input-container {
    height: 84px;
    width: 83.3333%;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .search-bar .input-container input {
    font-size: 40px;
    padding: 10px 7px;
    height: 100%;
  }
  .search-bar .input-container .search-button {
    top: 14px;
    font-size: 45px;
  }
}
@media screen and (min-width: 992px) {
  .search-bar .input-container {
    height: 98px;
    width: 58.3333%;
  }
  .search-bar .input-container input {
    font-size: 50px;
  }
  .search-bar .input-container .search-button {
    font-size: 55px;
    top: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .search-bar .input-container {
    height: 112px;
    width: 50%;
  }
  .search-bar .input-container input {
    font-size: 60px;
  }
  .search-bar .input-container .search-button {
    font-size: 65px;
    top: 20px;
  }
}

@media (max-width: 667px) and (min-width: 375px) { 
  .search-icon {
    display: block;
    width: 50px;
    height: 49px;
    background-color: #FF7F00;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: fixed;
    right: 0px;
    top: 61px!important;
    text-align: center;
    z-index: 100;
    -moz-transition: top 0.7s;
    -o-transition: top 0.7s;
    -webkit-transition: top 0.7s;
    transition: top 0.7s;
}
  .search-icon i {
    line-height: 39px;
    color: #fff;
    font-size: 21px;
  }
  .search-icon i {
    line-height: 45px;
    color: #fff;
    font-size: 21px;
}
}