input::-ms-clear {
   display: none;
}
.containerser {
  position: absolute;
  margin: auto;
  top: 50px;
  left: 0;
  right: 0;
  width: 300px;
  height: 50px;
}
.containerser .search {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #fa558f;
  border-radius: 50%;
  transition: all 1s;
  z-index: 4;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
}
.containerser .search:hover {
  cursor: pointer;
}
.containerser .search::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 22px;
  right: 0;
  bottom: 0;
  left: 22px;
  width: 12px;
  height: 2px;
  background: white;
  transform: rotate(45deg);
  transition: all .5s;
}
.containerser .search::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -5px;
  right: 0;
  bottom: 0;
  left: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  transition: all .5s;
}
.containerser input {
  font-family: 'Inconsolata', monospace;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  background: #fa558f;
  color: white;
  text-shadow: 0 0 10px #fa558f;
  padding: 0 30px 0 20px;
  border-radius: 30px;
  box-shadow: 0 0 25px 0 #fa558f, 0 20px 25px 0 rgba(0, 0, 0, 0.2);
  transition: all 1s;
  opacity: 0;
  z-index: 5;
  font-weight: bolder;
  letter-spacing: 0.1em;
}
.containerser input:hover {
  cursor: pointer;
}
.containerser input:focus {
  width: 300px;
  opacity: 1;
  cursor: text;
}
.containerser input:focus ~ .search {
  right: -250px;
  background: #151515;
  z-index: 6;
}
.containerser input:focus ~ .search::before {
  top: 0;
  left: 0;
  width: 25px;
}
.containerser input:focus ~ .search::after {
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  border: none;
  background: white;
  border-radius: 0%;
  transform: rotate(-45deg);
}
.containerser input::placeholder {
  color: white;
  opacity: 0.5;
  font-weight: bolder;
}
.containerser .search2 {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #fa558f;
  border-radius: 50%;
  transition: all 1s;
  
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
  right: -250px;
  
  z-index: 6;
}
.containerser .search2:hover {
  cursor: pointer;
}
.containerser .search2::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 22px;
  right: 0;
  bottom: 0;
  left: 22px;
  width: 12px;
  height: 2px;
  background: white;
  transform: rotate(45deg);
  transition: all .5s;
}
.containerser .search2::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -5px;
  right: 0;
  bottom: 0;
  left: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  transition: all .5s;
}
@media(max-width:300px){
.containerser {
  width: 100%;

 }
 }