/*!
Theme Name: Miles Theme
Author: Jeromy Condon
Author URI: http://rustygeorge.com/
Description: ACF & other embedded plugins not to be distributed separately.
Version: 1.0
*/
@import url(assets/lib.css);


/*
|====================================================
| OVERALL LAYOUT COMPONENTS 
| 
| gray: #d6d5d3;
|====================================================
*/
* {
	box-sizing: border-box;
}

body {
	font-family: soleto, sans-serif;
	font-weight: normal;
	line-height: 1.5;
	background: #222;
	color: #3C3C3E;
}

.page-wrap {
	max-width: 1800px;
	margin: 0 auto;
	background: #fff;
}

.section.padded {
	padding: 70px;
}

.texture {
	background: url(assets/miles-bg-texture.jpg) repeat left top #eee;
}

.flex {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
}

.flex.wrap {
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
}

.flex > div {
	-ms-flex: 1;
	    -webkit-box-flex: 1;
	        flex: 1;
}

.flex > div.two {
	-ms-flex: 2;
	    -webkit-box-flex: 2;
	        flex: 2;
}

h1, h2, h3, h4 {
	margin-top: 0;
	font-family: industry, sans-serif;
	font-weight: bold;
}

h1 {
	font-size: 3em;
	text-transform: uppercase;
	line-height: 1.1;
}

h2 {
	font-size: 2.5em;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1.5em;
}

h3 {
	font-size: 2em;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1.1em;
}

h4 {
	font-family: soleto, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1.1em;
}

a {
	color: #D0333A;
	text-decoration: none;
}

.button a {
	display: inline-block;
	background: #D0333A;
	color: #fff;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
}

a.button {
	display: inline-block;
	background: #404042;
	color: #fff;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
	transition: all .3s ease;
}

a.button:hover {
	background: #545457;
}

.button-special a {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
}

a.button-special {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
	transition: all .3s ease;
}

a.button-special:hover {
	background: #545457;
	color: #fff;
}

img {
	max-width: 100%;
	height: auto;
}

.title {
	font-size: 2.5em;
	font-family: industry, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.1;

}

.centered-text {
	text-align:center;
}

.line {
	padding-bottom: 15px;
	background: url(assets/header-line.svg) no-repeat bottom center transparent;
	background-size: 70px 5px;
}

/*
|====================================================
| HEADER & NAV 
|====================================================
*/
header {
	background: #fff;
	position: fixed;
	min-height: 100px;
	z-index: 900;
	top: 0;
	left:0;
	right:0;
	border-bottom: solid 10px #d6d5d3;
}

header > div {
	display:-ms-flexbox;
	display:-webkit-box;
	display:flex;
	-ms-flex-pack: justify;
	    -webkit-box-pack: justify;
	        justify-content: space-between;
	-ms-flex-align: center;
	    -webkit-box-align: center;
	        align-items: center;
	max-width: 1800px;
	margin: 0 auto;
	padding: 20px 135px;
}

header ul {
	list-style: none;
	margin: 0;
	padding:0;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
}

header ul.top-menu {
	-ms-flex-pack: end;
	    -webkit-box-pack: end;
	        justify-content: flex-end;
}

header ul.bottom-menu {
	-ms-flex-pack: end;
	    -webkit-box-pack: end;
	        justify-content: flex-end;
	font-size: 1.3em;
	align-items: center;
}

header li {
	margin: 0 10px 0 10px;
	text-align: center;
}

header .top-menu a {
	color: #D0333A;
	font-size: .75em;
	font-weight: bold;
}

header .bottom-menu a {
	color: #3C3C3E;
	font-weight: bold;
}

header .current-menu-item a {
	color: #D0333A;
}

header .menu-item-has-children {
	position: relative;
}

header .menu-item-has-children:hover .sub-menu {
	display: block;
}

header ul.sub-menu {
	position: absolute;
	top: 30px;
	bottom: -170px;
	width: 100%;
	display: none;
	background: transparent;
	padding-top: 20px;
}

header ul.sub-menu:before {
	content:"";
	display: block;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 20px 15px;
	border-color: transparent transparent #d0333b transparent;
}

header .sub-menu li {
	text-align:center;
	background: #D0333A;
	padding: 10px 0;
}

header .sub-menu a {
	color: #fff;
	font-family: soleto, sans-serif;
	font-weight:  normal;
	font-size: .7em;
	padding: 5px 10px;
	display: block;
}

header .sub-menu a {
	color: #fff!important;
}

/*=============overlay-nav=============*/

header .nav-toggle {
	height:30px;
	width: 30px;
	background: url(assets/hamburger.svg) no-repeat left top transparent;
	background-size: contain;
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -15px;
	display:none;
}

.overlay-nav-container {
	padding: 60px 30px 30px 30px;
	position: fixed;
	z-index:9999;
	z-index: -1;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background: #fff;
	opacity:0;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.overlay-nav-container ul {
	list-style:none;
	margin: 0;
	padding:0;
}

.overlay-nav-container .menu-item-has-children {
	display:-ms-flexbox;
	display:-webkit-box;
	display:flex;
	-ms-flex-pack: justify;
	    -webkit-box-pack: justify;
	        justify-content: space-between;
	-ms-flex-align: stretch;
	    -webkit-box-align: stretch;
	        align-items: stretch;
}

.overlay-nav-container .child-btn {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	width: 60px;
	-ms-flex-align: center;
	    -webkit-box-align: center;
	        align-items: center;
	-ms-flex-pack: center;
	    -webkit-box-pack: center;
	        justify-content: center;
	border-left: solid 1px #ccc;
	cursor: pointer;
}

.overlay-nav-container ul .sub-menu {
	display:none;
	position: absolute;
	z-index: 980;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	background: #fff;
	padding: 60px 30px 30px 30px;
}

.open .overlay-nav-container {
	opacity: 1;
	z-index:9999;
}

.nav-overlay-toggle {
	position: absolute;
	z-index: 990;
	top: 15px;
	right:30px;
	cursor: pointer;
}

.nav-overlay-toggle img {
	display:block;
}

.overlay-nav-container a {
	color: #3C3C3E;
	display: block;
	padding: 15px;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size: 1em;
}

.overlay-nav-container #menu-main-navigation {
	padding-top: 55px;
}

.overlay-nav-container li {
	border-top: solid 1px #ccc;
}

.overlay-nav-container ul .sub-menu.active-submenu {
	display:block;
}

.overlay-nav-container .back-btn {
	padding: 15px;
	cursor: pointer;
}

.overlay-nav-container .current-menu-parent a,
.overlay-nav-container .current-menu-item a {
	background: none;
}

/*=============overlay-nav=============*/




/*
|====================================================
| CONTENT-AREA
|====================================================
*/

.main {
	padding-top: 120px;
}

.employment-banner {
	background: #c2403f;

}

.employment-banner p {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.employment-banner p span {
	font-family: industry, sans-serif;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.5em;
	margin-right: 25px;
}

.employment-banner .banner-content {
	max-width: 1000px;
	padding: 25px 135px 20px 135px;
	margin:auto;
	background: url('assets/job-banner-logo.png') no-repeat left top;
	background-size: 300px 300px;
	background-position: top -100px left 50px;
}


.material-banner {
	background: #3C3C3E;

}

.material-banner p {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.material-banner p span {
	font-family: industry, sans-serif;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.5em;
	margin-right: 25px;
}

.material-banner .banner-content {
	max-width: 1000px;
	padding: 25px 135px 20px 135px;
	margin:auto;
	/* background: url('http://miles.rocks/wp-content/uploads/2017/02/Miles-mark.png') no-repeat left top; */
	background-size: 300px 300px;
	background-position: top -100px left 50px;
}


.hero {
	position: relative;
	background: #d6d5d3;
}

.hero h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 0 30px 0;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,.7);
}

.hero h1 span {
	display: block;
	font-size: 1.5em;
}

.hero img {
	display: block;
}

.intro-text.section.padded {
	padding: 70px 425px;
	text-align: center;
}

.intro-text p {
	color: #999;
}

.intro-text .button {
	padding-top: 30px;
}

.intro-text .button a {
	margin: 0 20px;
}

.cta-boxes.section {
	padding-left: 135px;
	padding-right: 135px;
	text-align: center;
}

.cta-boxes .flex {
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.cta-boxes .flex > div {
	max-width: 45%;
	width: 45%;
	xmax-width: 100%;
	-ms-flex: none;
	    -webkit-box-flex: 0;
	        flex: none;
	xmargin: 0 15px;
}

.cta-boxes .flex > div.col-1-1 {
	max-width: 100%;
	width: 100%;
	padding-top: 40px;
}

.cta-box .text {
	text-align: center;
	padding: 40px;
}

.cta-box .button a {
	background: #555;
}

.cta-box .button.reverse a {
	background: #D0333A;
}

.cta-box .button a:hover {
	background: #D0333A;
}

.cta-box .button.reverse a:hover {
	background: #C5C4C2;
}

.section.bg-image {
	xbackground: #484e4e;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}


.section.bg-image.alt {
	background-repeat: repeat;
	background-size: auto;
}



.section.bg-image.texture {
	xbackground: #eee;
}

.section.bg-image .flex {
	padding: 165px 400px;
	color: #fff;
	text-align:center;
	background-color: rgba(0,0,0,.6);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.section.bg-image.alt .flex,
.section.bg-image.alt:hover .flex {
	background: transparent;
}

.section.bg-image:hover .flex{
	background-color: rgba(0,0,0,.15);
}

.page-template-_TEMPL-single-product-page .section.bg-image:hover .flex,
.page-template-_TEMPL-single-product-page .section.bg-image .flex {
	background-color: rgba(0,0,0,.15);
}

.section.bg-image p {
	color: #ccc;
}

.featured-project.section {
	margin-bottom: 10px;
}

.featured-project .button.dual,
.cta-box .button.dual {
	display: none;
}

.featured-project h2 {
	margin-bottom: 15px;
}

.featured-project.section.texture .flex {
	padding-top: 60px;
	padding-bottom: 60px;
}

.featured-project.section.texture .title {
	margin-bottom: 30px;
	font-size: 2em;
	color: #3C3C3E;
}

.featured-projects .flex > div {
	max-width: 360px;
}

.featured-projects .cta-box .text {
	padding: 30px;
}

.featured-projects.section h3 {
	font-size: 1.5em;
}

.featured-projects h3 a {
	color: #D0333A;
}

.featured-projects .cta-box .text p {
	color: #555;
	margin-bottom: 40px;
}

.cta-boxes.body-copy .cta-box .text {
	text-align:left;
}

.contact-page.cta-boxes .flex > div {
	background: #f1f1f1;
	max-width: 600px;
	box-shadow: 10px 10px 0px #E3E3E3;
}

.contact-page .cta-box .text {
	padding: 70px;
}

.contact-page.cta-boxes.section {
	padding-left: 265px;
	padding-right: 265px;
}

.product-list.section {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: justify;
	    -webkit-box-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.product-list.section > div {
	width: 49.8%;
}

.product-list.section .section.bg-image .flex {
	padding: 180px 150px;
	height: 100%;
}

.single-project .intro-text h2 {
	color: #ccc;
	margin-bottom: 20px;
}

.single-project .project-images {

}

.single-project .project-images img {
	display: block;
	/*margin-bottom: 30px;*/
	/*margin: 0 auto 15px;*/
}








.wpgmza_map {
	float: none!important;
}

.coverage-map {
	padding: 0 100px;
}

.custom-maps-area {
	position: relative;
	height:850px;
	z-index:500;
}

.coverage-map .map-controls {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background: #363638;
	color: #7F7F81;
	font-size: 1.5em;
	font-family: industry, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.1;
	text-align:center;
}

.coverage-map .map-controls > div {
	padding: 50px 50px;
	cursor: pointer;
	/*border-bottom: solid 2px #7F7F81;*/
	position: relative;
}

.coverage-map .map-controls .current {
	background: #D0333A;
	color: #fff;
}

.coverage-map .map-controls .current:after{
	content: "";
	display: block;
	position: absolute;
	z-index: 600;
	right:50%;
	bottom: -30px;
	margin-right: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 30px 0 30px;
	border-color: #d0333b transparent transparent transparent;
/*	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 0 20px 30px;
	border-color: transparent transparent transparent #d0333b;*/
}

.custom-maps-area .custom-maps {
	position: absolute;
	z-index: 525;
	top:0;
	right:0;
	bottom:0;
	left:0;
	overflow: hidden;
}
.custom-maps-area .rgc-map {
	position: absolute;
	z-index:530;
	top:0;
	right:0;
	bottom:0;
	left:0;
	opacity: 0;
	-webkit-transition: opacity .8s ease-in-out;
	transition: opacity .8s ease-in-out;
}

.custom-maps-area .rgc-map.current {
	z-index: 540;
	opacity: 1;
}







.affiliate {
	margin: 0 15px;
}

.pagination {
	padding: 30px;
}

.pagination a {

}

/*.position {
	padding-left: 135px;
    padding-right: 135px;
    margin-bottom: 40px;
}

.position h2 {
	margin-bottom: .5em;
}*/

.empl-benefits .flex  {
	-ms-flex-align: center;
	    -webkit-box-align: center;
	        align-items: center;
}

.empl-benefits .flex > div {
	padding: 0 40px;
}

.galleria-container {
	background: #eee!important;
}

.calculators {
	background: url(assets/miles-bg-texture-dark.jpg) repeat left top;
}

.calculators .cta-box {
	border: solid 1px #ddd;
	background: #eee;
	padding: 50px;
	height: 100%;
}

.calculators .form-box {
	width: 300px;
	margin: auto;
	font-family: industry, sans-serif;
	font-weight: bold;
	text-align: right;
}

.calculators > .flex > div {
	width: 46%;
	margin:0 1%;
}

.calculators .results {
	padding-top: 30px;
	color: #aaa;
}

.calculators .num {
	color: #222;
	font-size: 3em;
	line-height: 1;
}

.calculators .flex {
	padding: 5px 0;
}

.calculators .flex > div {
	padding: 0 5px;
}

.form-box input[type="text"] {
	border: solid 1px #ddd;
	width: 100%;
	padding: 0 5px;
}

.form-box input[type="submit"] {
	display: block;
	width: 100%;
	margin: 0;
	border: none;
	background: #D0333A;
	color: #fff;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
}

.open-positions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.open-positions > div {
	display: block;
	width:520px;
	margin: 0 15px 30px 15px;
	padding: 50px;
	background: #fff;
}

.open-positions-inquiry-title {
	font size: 2em;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
	color: #D0333A;
}

.open-positions-inquiry-message {
	font size: .9em;
	text-transform: uppercase;
	font-family: arial, sans-serif;
	font-weight: normal;
	color: #3C3C3E;
}


.job-title {
	font-size: 1.5em;
	line-height: 1.1;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
	margin-bottom: 15px;
	color: #D0333A;
}

.position > a {
	display: block;
	color: inherit;
}

.job-meta {
	font-size: .9em;
	margin-bottom:10px;
}

.job-meta strong {
	font-size: 1.1em;
	font-weight: bold;
	text-transform:uppercase;
}

.job-applications > a {
	display: inline-block;
	margin: 0;
	border: none;
	background: #D0333A;
	color: #fff;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
}

.job-description-requirements {
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}

.job-listing-single {
	max-width: 700px;
	margin: auto;
}

table#legal-table {
	background: #fff;
	border-collapse: collapse;
	border: solid 1px #aaa;
}

table#legal-table thead tr {
	background: #d6d5d3;
	padding: 3px;
	border-bottom: solid 3px #aaa;
}

table#legal-table td {
	padding: 10px;
	width: 50%;
}

table#legal-table tr:nth-child(even) {
	background: #eee;
}

.gform_wrapper .gsection {
	background: #dedede;
	padding: 15px 15px 10px 15px!important;
	border-bottom: solid 5px #3C3C3E!important;
}

.gform_wrapper h1 {
	margin: 30px 0!important;
}

.main .gform_wrapper .gform_page_footer input.button {
 	display: inline-block;
	background: #D0333A;
	color: #fff;
	padding: 12px 30px 10px;
	text-transform: uppercase;
	font-family: industry, sans-serif;
	font-weight: bold;
	border: none;
 }

 .main .gform_wrapper .field_description_below .gfield_description {
 	padding-top: 0;
 }

 .main .gform_wrapper div.validation_error {
 	background: pink;
 }

/*
|====================================================
| FOOTER
|====================================================
*/
footer .title {
	font-size: 1.3em;
	margin-bottom: 10px;
}

footer .flex > div {
	-ms-flex: 1;
	    -webkit-box-flex: 1;
	        flex: 1;
}

footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer ul a {
	color: #D0333A;
}

/*
|====================================================
| MEDIA QUERIES
|====================================================
*/



@media (max-width: 1450px) {
	header > div {
		padding: 20px;
	}

	.intro-text.section.padded {
		padding: 70px;
	}

	.cta-boxes .flex > div {
		max-width: 49%;
	}

	.featured-projects.cta-boxes .flex > div {
		max-width: 24%;
	}

	.section.bg-image .flex {
		padding: 70px;
	}

	.product-list.section .section.bg-image .flex {
		padding: 70px;
	}

	.contact-page.cta-boxes .flex > div {
		max-width: 49%;
	}
}

@media (max-width: 1100px) {

	.employment-banner .banner-content {
		padding: 10px 10px 5px 10px;
		text-align:center;
	}

	.employment-banner p span {
		font-size: 1.1em;
	}

	.employment-banner .button {
		font-size: .9em;
	}

	nav {
		display:none;
	}
	header .nav-toggle {
		display:block;
	}

	header > div {
		-ms-flex-pack: start;
		    -webkit-box-pack: start;
		        justify-content: flex-start;
	}

	.section.padded {
		padding: 40px;
	}

	.intro-text.section.padded {
		padding: 40px;
	}

	.section.bg-image .flex {
		padding: 40px;
	}

	.product-list.section .section.bg-image .flex {
		padding: 40px;
	}

	.contact-page.cta-boxes.section {
		padding: 40px;
	}

	.position {
		padding: 0 40px;
	}

	.calculators > .flex {
		-ms-flex-direction: column;
		    -webkit-box-orient: vertical;
		    -webkit-box-direction: normal;
		        flex-direction: column;
	}

	.calculators > .flex > div {
		width: 100%;
		margin: 0 0 30px 0;
	}

	.coverage-map {
		padding: 0 50px;
	}

	.coverage-map .map-controls {
	    font-size: .8em;
	}

	.coverage-map .map-controls > div {
		padding: 15px;
	}

	.coverage-map .map-controls .current:after {
		right:50%;
		bottom: -10px;
		margin-right: -15px;
		border-width: 15px 15px 0 15px;
	}
}

@media (max-width: 950px) {
	.main {
		padding-top: 75px;
	}
	header {
		min-height: 75px;
	}

	header > div {
		padding: 10px 20px;
	}

	header .logo {
		max-width: 150px;
	}

	.hero h1 {
		padding:0;
		margin:0;
	}

	.cta-boxes .flex {
		display: block;
	}

	.cta-boxes .flex > div {
		max-width: 100%;
		width: 100%;
		margin-bottom: 15px;
	}

	.featured-projects.cta-boxes .flex > div {
		max-width: 100%;
		margin-bottom: 15px;
	}

	.product-list.section {
		display: block;
	}

	.product-list.section > div {
		width: 100%;
	}

	.contact-page.cta-boxes .flex > div {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.empl-benefits .flex  {
	display: block;
	}

	.empl-benefits .flex > div {
		width: 100%;
		max-width: 100%;
	}

	footer .flex {
		-ms-flex-direction: column;
		    -webkit-box-orient: vertical;
		    -webkit-box-direction: normal;
		        flex-direction: column;
	}

	footer .flex > div {
		-ms-flex: auto;
		    -webkit-box-flex: 1;
		        flex: auto;
		margin-bottom: 15px;
		text-align: center;
	}

	footer .flex > div:first-child {
		-ms-flex-order: 5;
		    -webkit-box-ordinal-group: 6;
		        order: 5;
	}

	footer .title br {
		display: none;
	}

}

@media (max-width: 650px) {
	body {
		font-size: 14px;
	}
	.hero h1 {
		font-size: 1.9em;
	}

	h1 {
		font-size: 2em;
	}

	.title {
		font-size: 1.7em;
	}

	h2 {
		font-size: 1.7em;
	}

	.position {
		padding: 0 20px;
	}

	.button a {
		display: block;
	}

	.intro-text .button a {
		margin-bottom: 15px;
	}

	.calculators .cta-box {
		padding: 20px;
	}

	.calculators .form-box {
		width: 230px;
	}

	.coverage-map .map-controls {
	    display:block;
	}

	.coverage-map .map-controls .current:after {
		display:none;
	}
	
	.psgal figure {
		width: 100%!important;
	}

}