
.btn_mic {
	border: none;
  padding: 0;
  border-radius: 100%;
  width: 56px!important;
  height: 56px!important;
  font-size: 30px!important;;
  color: #fff;
  padding: 0;
  margin: 0;
  background: red;
	position: relative;
	z-index: 999;
  display: inline-block;
    line-height: 56px!important;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
}

.pulse-ring {
  content: '';
  width: 56px!important;
  height: 56px!important;
	background: #E55940;
  border: 5px solid #E55940;
  border-radius: 50%;
  position: absolute;
  atop: -5px;
  aleft: -5px;
  animation: pulsate infinite 1.5s;
}

.pulse-ring.delay{
	// animation-delay: 1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}

.container_mic {
	display: flex;
  align-items: center;
  justify-content: center;
	height: 56px!important;
	background-color: #d8d8d8;
}

.m-left{
	margin-left: 56px!important * 3;
}

.type2{
	background: #E55940;
	top: -5px;
    left: 5px;
}

.type2 .pulse-ring{
	background: transparent;
}

@media (max-width: 768px) {

.btn_mic {
    border: none;
    padding: 0;
    border-radius: 100%;
    width: 30px!important;
    height: 30px!important;
    font-size: 20px!important;
    color: #fff;
    padding: 0;
    margin: 0;
    background: red;
    position: relative;
    z-index: 999;
    display: inline-block;
    line-height: 30px!important;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
}
	
.pulse-ring {
    content: '';
    width: 30px!important;
    height: 30px!important;
    background: #E55940;
    border: 5px solid #E55940;
    border-radius: 50%;
    position: absolute;
    atop: -5px;
    aleft: -5px;
    animation: pulsate infinite 1.5s;
}

}