
.search__voice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7em;
}

.search__voice--icon {
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.search__voice--disabled-icon{
  display: none;
  cursor: not-allowed;
}
.search__browser--warning{
    color: #832625;
    margin-right: 2.2em;
}
.mic-wrapper {
  position: relative;
  width: 55px;
  height: 55px;
}
.mic-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  background-color: #f2e9e9;
  border: 0.0625;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transform: scale(1);
  animation-delay: -0.75s; 
}

.mic-ripple.active {
  opacity: 1;
}

.mic-ripple.ripple1.active {
  animation: pulse 1.5s infinite ease-out;
}

.mic-ripple.ripple2.active {
  animation: pulse 1.5s infinite ease-out;
  animation-delay: 0.75s;
}
.mic-ripple.ripple2 {
  animation-delay: -1.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@media screen and (max-width: 991px) {
  .search__voice {
    padding: 0.5em;
  }
  .search__voice--icon {
    width: 30px;
    height: 30px;
  }
  .mic-wrapper {
    width: 30px;
    height: 30px;
  }
  .mic-ripple{
    width: 30px;
    height: 30px;
  }
  .search__voice--disabled-icon{
    width: 30px;
    height: 30px;
  }
}
