/* Color Tokens */
.primary {
	color: #FF0009; /* $primary */
}

.secondary {
	color: #D7D7D7; /* $secondary */
}

.tertiary {
	color: #FFF212; /* $tertiary */
}

.light {
	color: #FEFEFE; /* $light */
}

.dark {
	color: #201E1E; /* $dark */
}
/* End Color Tokens */

/* State Page Styles */
.state-page {
	padding-top: 0;
}

.state-page .main {
}

.state-page .box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1.5em;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.no-flexbox .state-page .box {
	display: table;
}

.no-flexbox .state-page .box > * {
	display: table-cell;
}

.no-flexbox .state-page header h1 {
	width: 80%;
}

.state-page header a {
}

.state-page .search-box {
	background-color: #E6E6E6; /* darken($light,5%) */
	padding: 1.5% 2%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.no-flexbox .state-page .search-box {
	display: table;
}

.no-flexbox .state-page .search-box > * {
	display: table-cell;
	vertical-align: middle;
}

.state-page .search-box input {
	display: block;
	border: solid 1px #DBDBDB;
	background-color: #FEFEFE; /* $light */
	padding: .25em .5em;
	color: #919191; /* darken($light,40%) */
	border-radius: .4em 0 0 .4em;
	border-right: none;
	transition: border-color .4s ease 0s;
	outline: none;
}

.state-page .search-box input:focus {
	border-color: #FF0009; /* $primary */
}

.state-page .search-box button {
	display: block;
	border: none;
	background-color: #D7D7D7; /* $secondary */
	padding: 0 1em;
	border-radius: 0 .4em .4em 0;
	transition: background-color .4s ease 0s;
}

.state-page .search-box button:hover {
	background-color: #FF0009; /* $primary */
}

.state-page .search-box button icon {
	color: #FEFEFE; /* $light */
	display: block;
	font-size: 1.25em;
}

.state-page .state-list {
}

.state-page .state-list > li {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 1.25em 0;
	border-bottom: solid 1px #DBDBDB;
}

.state-list .business-info {
	-webkit-flex: 0 1 33%;
	-ms-flex: 0 1 33%;
	flex: 0 1 33%;
	padding-right: 2%;
}

.state-list .business-info h3 {
	font-weight: bold;
	font-size: 1.25em;
	margin-bottom: .5em;
}

.state-list .business-info h3 a {
	color: #201E1E; /* $dark */
}

.state-list .business-info h3 a:hover {
	color: #D7D7D7; /* $secondary */
}

.state-list .business-info p, .state-list .business-info .phone {
	margin: .25em 0;
	position: relative;
	padding-left: 2em;
}

.state-list .business-info p:before, .state-list .business-info .phone:before {
	font-family: 'icomoon-ult';
	font-size: 1.2em;
	color: #FF0009; /* $primary */
	position: absolute;
	left: 0;
	top: .1em;
	line-height: 1;
}

.state-list .business-info .address {
}

.state-list .business-info .address:before {
	content: '\eed0';
}

.state-list .business-info .address a {
	display: block;
}

.state-list .business-info .phone {
	color: #201E1E; /* $dark */
}

.state-list .business-info .phone:before {
	content: '\f053';
}

.state-list .business-info .owner {
}

.state-list .business-info .owner:before {
	content: '\e1db';
}

.state-list .service-info {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-webkit-flex: 0 1 41%;
	-ms-flex: 0 1 41%;
	flex: 0 1 41%;
	padding: 0 2%;
	border-left: solid 1px #DBDBDB;
}

.state-list .service-info h4 {
	margin-bottom: .3rem;
	font-size: 1.125em;
	font-weight: bold;
	color: #201E1E; /* $dark */
}

.state-list .service-info .city-list {
}

.state-list .service-info .city-list li {
	display: inline;
}

.state-list .service-info .city-list li:not(:last-child):after {
	content: ',';
}

.state-list .map-area {
	-webkit-flex: 0 0 26%;
	-ms-flex: 0 0 26%;
	flex: 0 0 26%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.state-list .map-area .imap {
	display: block;
	width: 100%;
}
/* End State Page Styles */

/* 800px Responsive */
@media screen and (max-width:800px) {
	.state-list .business-info {
		-webkit-flex: 0 1 50%;
		-ms-flex: 0 1 50%;
		flex: 0 1 50%;
	}

	.state-list .service-info {
		display: none;
	}

	.state-list .map-area {
		-webkit-flex: 0 0 50%;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
	}
}
/* End 800px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	.state-page .box {
		padding-bottom: 1em;
	}

	.state-page header h1 {
		font-size: 2em;
	}

	.state-page .state-list > li {
		display: block;
		border: solid 1px #DBDBDB;
		padding: 4% 5%;
		margin: .75em auto;
	}

	.state-list .map-area {
		display: none;
	}

	.state-list .business-info {
		padding-right: 0;
	}

	.state-page .search-box input {
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}
/* End 550px Responsive */

/* 500px Responsive */
@media screen and (max-width:500px) {
	.state-page header h1 {
		font-size: 1.6667em;
	}
}
/* End 500px Responsive */

/* 450px Responsive */
@media screen and (max-width:450px) {
	.state-list .business-info h3 {
		font-size: 1.2em;
	}

	.state-page header a {
		display: none;
	}
}
/* End 450px Responsive */

.state-page header h1, .state-page header h2 {
	font-size: 2.5em;
	color: #FF0009;
}
