#search-suggestion-wrapper {
	position: relative;
}
.bpm-suggestion-panel {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d9d9d9;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 8px 8px;
	z-index: 20;
	max-height: 360px;
	overflow: auto;
}
.bpm-suggestion-columns {
	display: flex;
}
.bpm-suggestion-left {
	width: 32%;
	border-right: 1px solid #eee;
	margin: 0;
	padding: 10px 0;
	list-style: none;
}
.bpm-suggestion-left li {
	padding: 0;
	cursor: pointer;
}

.bpm-suggestion-left-item {
	border-bottom: 1px solid #f0f0f0;
}

.bpm-suggestion-left-item:last-child {
	border-bottom: 0;
}

.bpm-suggestion-left-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 16px;
	text-align: left;
}

.bpm-suggestion-left-text {
	color: rgb(112, 112, 112);
	font-size: 0.9rem;
	line-height: 1.2;
	font-weight: 600;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bpm-suggestion-left-desc {
	color: #707070;
	font-size: 12px;
	line-height: 1.3;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bpm-suggestion-left li:hover,
.bpm-suggestion-left li:focus {
	background: #f5f9fc;
}
.bpm-suggestion-right {
	width: 68%;
	padding: 8px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-content: flex-start;
}
.bpm-suggestion-card {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid #ececec;
	border-radius: 8px;
	padding: 10px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bpm-suggestion-card:hover {
	border-color: #d8d8d8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bpm-suggestion-card-image,
.bpm-suggestion-card-image-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 4px;
	object-fit: cover;
	flex: 0 0 56px;
}
.bpm-suggestion-card-image-placeholder {
	background: linear-gradient(135deg, #eef2f6, #dfe5ec);
}
.bpm-suggestion-card-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	text-align: left;
}
.bpm-suggestion-title {
	margin: 0;
	color: #007cc3;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.bpm-suggestion-desc {
	margin: 6px 0 0;
	color: #1f1f1f;
	font-size: 12px;
	text-align: left;
	line-height: 1.35;
	font-weight: 400;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
@media all and (max-width: 992px) {
	.bpm-suggestion-panel {
		top: calc(100% + 6px);
	}
	.bpm-suggestion-columns {
		flex-direction: column;
	}
	.bpm-suggestion-left,
	.bpm-suggestion-right {
		width: 100%;
	}
	.bpm-suggestion-left {
		border-right: 0;
		border-bottom: 1px solid #eee;
	}
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}
  
.popup.show {
    display: block;
}

.voice-search:focus{
    outline: 2px solid blue;
}
  
.voice-search {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: 0.5s;
    position: absolute;
    right: 2%;
    top: 80%;
    transform: translateY(-50%);
}
.voice-search::before {
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 50%;
    opacity: 0.2;
    position: absolute;
} 
.voice-search.active {
    background: #ff0000;
}
.voice-search.active::before {
    background: #f1f1f1;
    animation: bounce 0.8s ease-in-out infinite 0.5s;
    z-index: 2;
}
.voice-search:hover .mic {
    animation: shake 0.2s linear infinite;
}
@keyframes bounce {
    0% {
      transform: scale(1);
    }
    25% {
      transform: scale(1.4);
    }
    75% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.3);
    }
}
@media only screen and (max-width: 1024px) {
  .voice-search {
      position: absolute;
      right: 1%;
      top: 80%;
      transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .voice-search {
      position: absolute;
      right: 2%;
      top: 80%;
      transform: translateY(-50%);
  }
}
@media only screen and (max-width: 480px) {
  .voice-search {
      position: absolute;
      right: 2%;
      top: 80%;
      transform: translateY(-50%);
  }
}
