@charset "ISO-8859-1";

.quickOrder-quote-display .q-quote-header {
	border-bottom: 2px solid #0021a2;
}
.quick-add-input-section label{
	font-size:12px;
	font-weight:bold;
}
.cart-quote-block:before {
	content: "";
	display: inline-block;
	position: absolute;
	border: none;
	border-color: transparent transparent transparent #e5e5e5;
	left: 25px;
	top: 0;
	transform: rotate(90deg);
}

.cart-quote-block {
	display: none;
	background-color: #dfe9fa;
	color: black;
	padding: 5px 0px;
	border-radius: 5px;
}


/* speech to text css */

 .searchBar--buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: 1%;
    top: 15%;
  }
  
  
  #btn-go{
  	position:static;
  }
  
  #btn-go--mobiledevice{
  	width:auto;
  	margin-left: 0px;
  }

 .svg-button {
    padding: 3px;
    width: 30px;
    height: 28px;
    border-radius: 50%;
    background: #89da03;
    border: none;
    cursor: pointer;
  }
  
  #voiceIcon--mobiledevice{
    padding: 3px;
    width: 30px;
    height: 28px;
    border-radius: 50%;
    background: #89da03;
    border: none;
    cursor: pointer;
    position: absolute;
    margin-left: -39px;
    margin-top: 1.1%;
  }

  .svg-mic {
    fill: white;
  }

  #voiceIcon.active {
    background: red;
  }
  
  #voiceIcon--mobiledevice.active {
    background: red;
  }
  
  
  /*Pulse Animation*/
  .anim-pulse {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);f
    transform: scale(1);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }

  
  @media screen and (min-width:800px) and (max-width:1000px){
 	#voiceIcon--mobiledevice{
 	    margin-top: 0.8%;
 	}
  }
  
  
  @-moz-document url-prefix() {
	 .svg-button , .svg-button--Mobile {
 		display:none;
	  }
  }
  
  