/* Google Fonts - Poppins */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');8?

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* body{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4070f4;
  overflow: hidden;
}*/
.input-box{
  position: relative;
  height: 35px;
  max-width: 55px;
  width: 100%;
  margin-top: 10px;
  margin-left: 0px;
  border-radius: 10px;
  border-width: 5px;
  border-color: #000;
  background-color: #B71E3F;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.input-box.open{
  max-width: 350px;
}
input{
  position: relative;
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding-left: 10px;
  background-color: #ffffff;
}
.input-box.open{
  padding: 0 10px 0 65px;
  background-color: #B71E3F;
  border-radius: 0px;
}
.icon{
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 60px;
  border-radius: 0px;
  border: 0px;
  border-color: #B71E3F;
  display: flex;
  justify-content: center;
  background-color: #B71E3F;
}
.search-icon,
.close-icon{
  position: absolute;
  top: 50%;
  font-size: 24px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-icon{
  color: #fff;
  
  transform: translateY(-50%) rotate(90deg);
}
.input-box.open .search-icon{
  transform: translateY(-50%) rotate(0);
}
.close-icon{
  right: -45px;
  color: #fff;
  padding: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
.input-box.open .close-icon{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) rotate(180deg);
}
.input-box.open .ask{
color: #000 !important;
font-size: 16px;
text-indent: 10px;
}

/*.input-box ::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

.input-box ::-ms-input-placeholder { /* Edge 12-18 */
  color: white;
}
*/