#ss360-layer.ss360-overlay {
    padding: 30px 20px 30px 30px !important;
   
}

.searchContainer {
  position: relative;
  top: 2px;
  width: 100px;
  height: 16px;
  color: #fff;
  font-size: 12px;
}
.searchContainer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.searchContainer .search {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 75px;
  width: 40px;
  height: 40px;
  background: #999;
  border-radius: 50%;
  transition: all 1s;
  z-index: 4;
  transform: scale(0.5);
}
.searchContainer .search:hover {
  cursor: pointer;
  color: #66bb22;
}
.searchContainer .search::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 15px;
  right: 0;
  bottom: 0;
  left: 13px;
  width: 12px;
  height: 2px;
  background: white;
  transform: rotate(45deg);
  transition: all .5s;
}
.searchContainer .search::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -4px;
  right: 14px;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  transition: all .5s;
}
.searchContainer input {
  font-family: "Nunito Sans", sans-serif;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 18px;
  outline: none;
  border: none;
  background: #e3e3e3;
  color: #202020;
  padding: 0px 10px;
  border-radius: 30px;
  transition: all 1s;
  opacity: 0;
  z-index: 5;
  font-weight: bold;
}
.searchContainer input:hover {
  cursor: pointer;
}
.searchContainer input:focus {
  width: 200px;
  opacity: 1;
  cursor: text;
}
.searchContainer input:focus ~ .search {
  right: 0;
  background: #000;
  z-index: 6;
}
.searchContainer input:focus ~ .search::before {
  top: -2px;
  left: 2px;
  width: 20px;
  height: 2px;
}
.searchContainer input:focus ~ .search::after {
  top: -2px;
  left: 10px;
  width: 20px;
  height: 2px;
  border: none;
  background: white;
  border-radius: 0%;
  transform: rotate(-45deg);
}
.searchContainer input::placeholder {
  color: #000;
  opacity: 0.5;
  font-weight: bold;
}
