﻿.autocomplete-suggestions {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   border: 1px solid #999;
   background: #FFF;
   cursor: default;
   overflow: auto;
   -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
   -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
   box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
   padding: 2px 5px;
   white-space: nowrap;
   overflow: hidden;
	cursor: pointer;
}

.autocomplete-no-suggestion {
   padding: 2px 5px;
}

.autocomplete-selected {
   background: #F0F0F0;
}

.autocomplete-suggestions strong {
   font-weight: bold;
   color: #000;
}

.autocomplete-group {
   padding: 2px 5px;
   font-weight: bold;
   font-size: 16px;
   color: #000;
   display: block;
   border-bottom: 1px solid #000;
}

input#autocomplete {
   font-size: 28px;
   padding: 10px;
   border: 1px solid #CCC;
   display: block;
   margin: 20px 0;
	width: 100%;
	position: relative;
}

.autocomplete-container {
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

button#pdu-search {
	height: 45px;
	margin-left: 12px;
	font-size: 16px;
	margin-top: 0px;
	min-width: 170px;
	border-radius: 9px;
	line-height: 1;
}

@media (max-width:991px) {
	button#pdu-search {
		height: 45px;
		margin-left: 12px;
		font-size: 11px;
		font-weight: bold;
		margin-top: 0px;
		min-width: 60px;
		padding: 0px;
		line-height: 1.2;
		border-radius: 9px;
	}
}