/**
 * AW Zipcode Search Styles
 *
 * @package AW_Zipcode_Search
 */

/* Banner Styles */
.aw-zipcode-search-banner {
    background-color: #003087;
    width: 100%;
}

/* Label Styles */
.aw-zipcode-label {
	font-family: pill-gothic-300mg,sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
	font-size: 1.25rem;
}

/* Input Styles */
.aw-zipcode-input {
    min-width: 200px;
}

/* Submit Button Styles */
#single-wrapper .aw-zipcode-submit {
    background-color: #00927b;
    color: #ffffff;
    border: none;
    padding: 0.375rem 2rem;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: uppercase;
}

#single-wrapper .aw-zipcode-submit:hover {
    background-color: #007a66;
    color: #ffffff;
}

#single-wrapper .aw-zipcode-submit:focus,
#single-wrapper .aw-zipcode-submit:active {
    background-color: #006856;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 146, 123, 0.5);
}

/* Form Styles */
.aw-zipcode-form {
    margin: 0;
}

/* Modal Styles */
.modal-header .aw-modal-close.close {
    color: #00927b;
    opacity: 1;
    font-size: 2.5rem;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.close.aw-modal-close:hover {
    color: #006856;
}

.close.aw-modal-close:focus {
    outline: none;
    color: #006856;
}

/* Location Results Styles */
.aw-location-results {
    padding: 0;
}

.aw-location-item {
    padding: 2rem;
    border: solid 2px #00927b;
}

.aw-location-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #00927b;
}

.aw-location-address {
    color: #000;
    font-size: 1.15rem;
}

.aw-visit-btn {
    background-color: #00927b;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.aw-visit-btn:hover,
#single-wrapper .btn-secondary:hover {
    background-color: #007a66;
    color: #ffffff;
    text-decoration: none;
}

.aw-visit-btn:focus,
.aw-visit-btn:active,
#single-wrapper .btn-secondary:focus,
#single-wrapper .btn-secondary:active {
    background-color: #006856;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 146, 123, 0.5);
}
#single-wrapper .btn-secondary {
    color: #fff;
    background-color: #00927b;
    border-color: #00927b;
}

#aw-zipcode-results-modal-title {
    color: #000;
}

#aw-zipcode-results-modal-title .results {
	color: #00927b;
	font-weight: 700;
}

#aw-zipcode-results-modal .modal-header {
    padding: 3rem;
    padding-bottom: 2rem;
	border: none;
}

#aw-zipcode-results-modal .modal-body {
    padding: 3rem;
    padding-top: 0rem;
}

.modal .btn-secondary {
	font-size: 1.25rem;
	padding: 0.75rem 1.5rem;
}
.aw-location-item+.aw-location-item {
    margin-top: 2rem;
}
@media screen and (max-width: 768px) {
	.aw-location-item > .row *+* {
		margin-top: 2rem;
	}
}