/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.results_row_large_left_column {
    width: 80%;
    display: inline-block;
}
button.excel-export-btn {
    line-height: 1;
    transition: all .4s;
	margin-bottom: 0px;
    display: inline-block;
    color: #FFF;
    text-transform: uppercase;
    background: #175d38;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1em;
    padding: 8px 19px;
    border: none;
    margin-top: 10px;
}
button.excel-export-btn:hover {
    background: #117841;
}
.pdf-status {
    font-size: 12px;
    color: #175d38;
	opacity: 0;
	transition: opacity .4s;
}
.pdf-status.visible {
    opacity: 1;
}
.pdf-status:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #c9d337;
    border-bottom: 2px solid #c9d337;
    border-radius: 50%;
    vertical-align: middle;
	animation: spinner .8s infinite linear;
}
@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.print-options {
	padding: 0 0px 10px; 
	text-align: right; 
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
@media(max-width:980px) {
	.print-options button {
		flex: 1 1 48%;
	}
}
div#zipcode_error,
div#city_error,
div#state_error {
    display: inline-block;
    width: 78%;
    clear: both;
    color: #ff0000;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px;
}
button.print-pdf {
    margin-bottom: 0px;
    display: inline-block;
    color: #276020;
    text-transform: uppercase;
    background: #c9d337;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1em;
    padding: 8px 19px;
    border: none;
    margin-top: 10px;
}
button.print-pdf:hover {
    color: #c9d337;
    background: #276020;
}
button.print-top-10, button.print-top-5 {
    margin-bottom: 0px;
    display: inline-block;
    color: #276020;
    text-transform: uppercase;
    background: #c9d337;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1em;
    padding: 8px 19px;
    border: none;
    margin-top: 10px;
}
button.print-top-10:hover, button.print-top-5:hover {
    color: #c9d337;
    background: #276020;
    border: none;
}

.qsl_search_item select {
	background:white;
	-webkit-appearance:listbox; 
	-moz-appearance:listbox;
}