body {
    background-color: white;
}

#app {
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--fixed-header-height);
}

.container {
    width: 100%;
    max-width: var(--max-container-width);
    margin-left: auto;
    margin-right: auto;
}

.max_width{
    max-width:var(--max-container-width);
}

.max_width_small{
    max-width:var(--max-container-width-small);
}

header {
    width: 100%;
    background-color: var(--light);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.50);
    z-index: 10;
    display: flex;
    align-items: end;
    color: var(--dark);
    min-height: 100px;
}

.corp_nav {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--issue-color);
    box-shadow: var(--shadow);
    color: white;
    padding: 0 var(--gutter);
    align-items: center;
    min-height: var(--fixed-header-height);
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 20;

}

.strap{
	display: none;
}

.strap a{
    font-weight: var(--heavy);
    color:white;
    text-decoration: none;
	display: flex;
	height:100%;
	border-bottom: 2px solid transparent;
	align-items: center;
}

.strap a:hover,
.strap a:focus{
    color:white;
    border-color: white;
}

@media(min-width: 768px ){

	.strap{
		display: flex;
		height:100%
	}
	.corp_nav {
		grid-template-columns: 320px 1fr;
	}

	.utility_belt {
		justify-content: end;
	}

}



.header_grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	margin-inline: 0;
	width: 100%;
	/* position: fixed;
	top: 44px;
	z-index: 5; */
	background-color: white;
	padding: 1rem var(--gutter) 0 var(--gutter);
}

.h_logo {
    display: flex;
    align-items: center;
}

.hg_2 {
    display: flex;
    flex-direction: column;
}




.logo {
    max-height: 80px;
    width: auto;
}

#was_layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.was_message{
	display: flex;
	justify-content: center;
	padding: 16px 44px 12px 44px;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	background: var(--yellow, #F3C84D);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.40) inset;
	color: var(--dark, #181818);
	font-size: 14px;
	font-weight: 700;
	line-height: 120%; /* 16.8px */
	text-transform: uppercase;
	text-wrap: balance;

	a{
		color: var(--dark, #181818);
		text-decoration: underline;
	}

	a:hover{
		text-decoration: none;
	}
}

.was_warning{
	display: flex;
	justify-content: start;
	align-items: center;
	border-radius: 4px;
	gap: 4px;
	padding: 4px 8px;
	align-self: stretch;
	width: fit-content;
	background: var(--yellow, #F3C84D);
	color: var(--dark, #181818);
	font-size: 14px;
	font-weight: 600;
	line-height: 120%; /* 16.8px */
	margin-block:8px;
}

.was_hero {
    /* aspect-ratio: 1366 / 300; */
	min-height: 414px;
	background: var(--dark, #181818);
	color: white;
	width: 100%;
	display: grid;
	align-content: center;
	justify-content: center;
    position: relative;
	/* padding: calc(2.5 * var(--gap-small)) calc(2  * var(--gap-small)); */
	padding: 40px 32px;

}

.wh_no_image{
	min-height: 250px;
}

.wh_has_filters{
	min-height:200px;
}

.wash_text{
    font-size: 1.125rem;
    font-weight: 400;
}

.wash_image{
    position: absolute;
    top: 0; left: 0; right:0; bottom: 0;
}

 .was_hero picture,
 .was_hero img {
    width:100%;
    height: 100%;
    object-fit: cover;
  }

  .wash_content{
    background-color: var(--tint);
    color: white;
    padding:var(--gap-small) 0;
    z-index: 1;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 160%;
    text-align: center;
  }

 .wash_no_background{
	background-color: var(--dark);
 }

  .wash_content_home{
    background-color: transparent;
    max-width: var(--max-container-width-small);
  }


  .wash_spacer{
    min-height: 300px;
  }

@media(min-width: 768px) {

    .millco_layout {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 1rem;
    }

    /* old safari doesn't support flexbox gap */
    @supports (-webkit-min-device-pixel-ratio:0) and (not(translate: none)) {

        .millco_layout {
            display: grid;
            grid-template-columns: 16% 16% 66%;
            width: 100%;
            grid-gap: 1rem;
            gap: 1rem;
        }

    }

    .millco_col_1 {
        flex: 1;
    }

    .millco_col_2 {
        display: block;
        flex: 4;
    }

    .millco_col_3 {
        flex: 1;
    }

}

.nav-container {
    position: fixed;
    top: -3000px;
    width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    background: var(--issue-colour, #2C494D);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    z-index: 30;
}

.toggled .nav-container {
    top: 0;
    transition: var(--transition);
}


.sticky {
    position: sticky;
    top: 68px;
}

main{
    background-color: white;
	overflow-wrap: break-word;
}

.panels {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    z-index: 10;
    padding:32px var(--gutter) 28px var(--gutter);
}

.panel_separator{
margin: 0 0 var(--gap-small) 0;
height: 1px;
}

.was_cols{
    display: grid;
    gap: var(--gap);
    width:100%;
    max-width: var(--max-container-width);
    margin-inline: auto;
}


@media(min-width: 762px ){
    .was_cols{
        grid-template-columns: 2fr 4fr;
    }
}

@media(min-width: 992px ){
    .was_cols{
        grid-template-columns: 2fr 4fr 2fr;
    }
}

aside{
    display: flex;
    flex-direction: column;
}

.aside_top{
	flex:1;
	height: 100%;
}

.aside_middle{
    display: flex;
    flex-direction: column;
    flex:1;
    justify-content: center;
}

.aside_bottom{
    display: flex;
    flex-direction: column;
    justify-content: end;
	margin-top: auto;
}

footer {
    background-color: var(--dark);
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer_layout{
    display: grid;
    grid-template-columns: 1fr;
    gap:var(--gap);
}


@media(min-width: 992px ){
    .footer_layout{
        grid-template-columns: 1fr 4fr;
    }
}

.fl_address_col{
    color: var(--white, #FFF);
    font-size: 12px;
    line-height: 160%; /* 19.2px */
}

.fl_address_col p{
    margin-bottom: 1.1em;
}

.fl_address_col p:last-child{
    margin-bottom: 0;
}

.credits {
    border-top: 1px solid var(--pale-dark, #CCC9BC);
    padding:var(--gap-small);
    font-size: 0.75rem;
    line-height: 160%; /* 19.2px */
    width:100%;
}

.cr_grid {
    display: flex;
    align-items: end;
    justify-content: center;
    gap:4px;
}

footer a{
    color: var(--white, #FFF);
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
    color: var(--white, #FFF);

}

.dev_banner{
	position: fixed;
	top: 44px;
	left: 0;
	z-index: 1000;
    background-color: var(--accent);
    color: white;
    padding: var(--gap-small);
    text-align: center;
    font-size: 0.75rem;
    line-height: 160%;
    font-weight: 600;
	width: fit-content;
	opacity: 0.72;
}