@charset "utf-8";

body,div,dl,dt,dd,p,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,blockquote,form{margin:0;padding:0;}
ul,ol{list-style:none;}
img,a img{border:none;display:block;}
*:link,*:visited{text-decoration:none;}
*:active,*:focus{outline:0;}
table{border-collapse:collapse;border-spacing:0;}
label,button{cursor:pointer;}
input,textarea,select{font-family:inherit;font-size:inherit;padding:0;margin:0;vertical-align:middle;}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0;}
input[type=number]{-moz-appearance:textfield;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;margin:0;padding:0;}

::-moz-selection { background-color: #e40123; color: #FFF; }
::selection { background-color: #e40123; color: #FFF; }

/*fade in effects*/
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in { opacity:0;-webkit-animation:fadeIn ease-in 1;-moz-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:0.25s;-moz-animation-duration:0.25s;animation-duration:0.25s; }

html 					{ height: 100%; overflow-y: scroll; }
body 					{ background-color: #FFF; color: #111; font-family: "din-2014", sans-serif; height: 100%; line-height: 1; }
body.noscroll			{ overflow: hidden; }
.page-layout 			{ height: 100%; min-width: 1220px; position: relative; }
.page-column            { background-color: #ebecee; height: 100%; position: fixed; top: 0; left: 0; width: 250px; }
.page-content	        { position: relative; margin-left: 250px; }
.page-content .inner    { padding: 30px; width: 900px; }
.clear:after			{ clear: both; content: ""; display: table; }
.mob-header				{ display: none; }
.mob-nav				{ display: none; }
.mob-footer				{ display: none; }

/* PAGE COLUMN
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-column *                  { -moz-transition: all .1s ease-out; -o-transition: all .1s ease-out; -webkit-transition: all .1s ease-out; transition: all .1s ease-out; }
.page-column .inner             { padding: 25px; }

.page-column a.logo             { display: inline-block; margin: 15px 0 25px; }
.page-column a.logo:hover img   { opacity: 0.8; }

/* PAGE NAV */
.page-nav                  { font-size: 16px; line-height: 35px; }
.page-nav ul               {  }
.page-nav ul li a          { border-bottom: 1px solid #ccc; color: #111; display: block; }
.page-nav ul li a:hover    { border-bottom: 1px solid #aaa; color: #e40123; }
.page-nav ul li.on>a       { color: #999; }
.page-nav ul li.book            { margin-bottom: 10px; }
.page-nav ul li.book a          { border-top: 2px solid #111; border-bottom: 2px solid #111; font-size: 28px; font-weight: 700; line-height: 60px; }
.page-nav ul li.book a:hover    { border-top: 2px solid #e40123; border-bottom: 2px solid #e40123; }

/* PAGE FOOTER */
.page-footer                { position: absolute; bottom: 0; left: 0; color: #777; width: 100%; }

.page-footer .footer-text           { color: #666; font-size: 14px; line-height: 22px; padding: 10px 0; text-align: center; }
.page-footer .footer-text strong    { color: #e40123; font-weight: normal; }
.page-footer .footer-text a         { color: #666; text-decoration: none; }
.page-footer .footer-text a:hover   { color: #888; text-decoration: underline; }
.page-footer .footer-links          { color: #AAA; font-size: 11px; line-height: 20px; padding: 5px 0; text-align: center; }
.page-footer .footer-links a        { color: #AAA; text-decoration: none; }
.page-footer .footer-links a:hover  { color: #999; text-decoration: underline; }

/* CONTENT
-------------------------------------------------------------------------------------------------*/
.page-content *             { -moz-transition: all .1s ease-out; -o-transition: all .1s ease-out; -webkit-transition: all .1s ease-out; transition: all .1s ease-out; }

/*elements*/
.page-content header		{ padding: 30px 0; }
.page-content h1			{ color: #111; font-size: 45px; font-weight: 400; line-height: 1.2; margin: 0 0 20px; }

.page-content p				{ color: #111; font-size: 18px; line-height: 25px; margin: 0 0 25px; }
.page-content hr 			{ background-color: #f1f2f3; border: none; clear: both; color: #f1f2f3; height: 1px; line-height: 1; margin: 30px 0; overflow: hidden; width: 100%; }
.page-content a				{ color: #e40123; text-decoration: underline; }
.page-content a:hover		{ color: #333; text-decoration: underline; }

.page-content p:last-child,
.page-content ol:last-child,
.page-content ul:last-child{ margin-bottom: 0; }
.page-content figure:only-child,
.page-content h2:only-child,
.page-content h3:only-child,
.page-content h4:only-child,
.page-content p:only-child,
.page-content ol:only-child,
.page-content ul:only-child{ margin-bottom: 0; }

.page-content .text-left    { text-align: left; }
.page-content .text-right   { text-align: right; }
.page-content .text-center  { text-align: center; }

/*lists*/
.page-content ul, 
.page-content ol			{ font-size: 18px; line-height: 25px; margin: 0 0 25px 20px; }
.page-content ul ul,
.page-content ul ol,
.page-content ol ol,
.page-content ol ul 		{ font-size: 100%; margin: 5px 0 5px 20px; }
.page-content ul 			{ list-style-type: square; }
.page-content ul ul 		{ list-style-type: disc; }
.page-content ul ul ul 		{ list-style-type: circle; }
.page-content ol 			{ list-style-type: decimal; }
.page-content ol ol 		{ list-style-type: lower-alpha;	}
.page-content ol ol ol		{ list-style-type: lower-roman; }
.page-content li			{ margin-bottom: 10px; }

/*page heading*/
.page-content .page-heading		   { background-color: #344251; border-bottom: 20px solid #e40123; padding: 120px 0 0; }
.page-content .page-heading h1     { color: #FFF; font-size: 38px; font-weight: normal; line-height: 40px; margin: 0; }

/*content blocks*/
.page-content .content-block                  { margin-bottom: 30px; }
.page-content .content-block:after 		      { clear: both; content: ""; display: table; }
.page-content .content-block .left            { float: left; width: 435px; }
.page-content .content-block .right           { float: right; width: 435px; }
.page-content .content-block .text            { max-width: 800px; }
.page-content .content-block figure img       { height: auto; width: 100%; }

/* HOME
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.home-content *             { -moz-transition: all .1s ease-out; -o-transition: all .1s ease-out; -webkit-transition: all .1s ease-out; transition: all .1s ease-out; }
.home-content	            { position: relative; margin-left: 250px; }
.home-content .inner        { width: 840px; }

.home-content header h1            { background-color: #344251; color: #FFF; font-size: 1.5em; font-weight: normal; line-height: 50px; margin: 0; padding: 20px 40px; }
.home-content header h2            { background-color: rgba(52,66,81,0.8); color: #FFF; font-size: 32px; font-weight: normal; line-height: 65px; margin: 0; padding: 20px 40px; }
.home-content header h2 span       { float: left; }
.home-content header h2 a          { background: #e40123 url(/assets/images/icons/arrow-next.svg) no-repeat 90% center; color: #FFF; display: inline-block; float: right; font-size: 27px; font-weight: normal; height: 65px; line-height: 65px; padding: 0 60px 0 20px; -webkit-background-size: 20px 20px; -o-background-size: 20px 20px; background-size: 20px 20px; }
.home-content header h2 a:hover    { background-color: #999; color: #FFF; }

body.vegas-container{position:static;z-index:-2}
.vegas-overlay{background: transparent center center}
.vegas-overlay,.vegas-slide,.vegas-slide-inner,.vegas-timer,.vegas-wrapper{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-timer{top:auto;bottom:0;height:2px}.vegas-timer-progress{width:0;height:100%;background:#fff;-webkit-transition:width ease-out;transition:width ease-out}.vegas-timer-running .vegas-timer-progress{width:100%}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0)}body .vegas-container{overflow:hidden!important;position:relative}.vegas-video{min-width:100%;min-height:100%;width:auto;height:auto}
body.vegas-container>.vegas-overlay,body.vegas-container>.vegas-slide,body.vegas-container>.vegas-timer{position:fixed;z-index:-1}:root body.vegas-container>.vegas-overlay,:root body.vegas-container>.vegas-slide,_::full-page-media,_:future{bottom:-76px}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}.vegas-transition-blur,.vegas-transition-blur2{opacity:0;-webkit-filter:blur(32px);filter:blur(32px)}.vegas-transition-blur-in,.vegas-transition-blur2-in{opacity:1;-webkit-filter:blur(0);filter:blur(0)}.vegas-transition-blur2-out{opacity:0}.vegas-transition-flash,.vegas-transition-flash2{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-flash-in,.vegas-transition-flash2-in{opacity:1;-webkit-filter:brightness(1);filter:brightness(1)}.vegas-transition-flash2-out{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-negative,.vegas-transition-negative2{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-negative-in,.vegas-transition-negative2-in{opacity:1;-webkit-filter:invert(0);filter:invert(0)}.vegas-transition-negative2-out{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-burn,.vegas-transition-burn2{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-burn-in,.vegas-transition-burn2-in{opacity:1;-webkit-filter:contrast(100%) saturate(100%);filter:contrast(100%) saturate(100%)}.vegas-transition-burn2-out{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-slideLeft,.vegas-transition-slideLeft2{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideLeft-in,.vegas-transition-slideLeft2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideLeft2-out,.vegas-transition-slideRight,.vegas-transition-slideRight2{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.vegas-transition-slideRight-in,.vegas-transition-slideRight2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideRight2-out{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideUp,.vegas-transition-slideUp2{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideUp-in,.vegas-transition-slideUp2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown,.vegas-transition-slideDown2,.vegas-transition-slideUp2-out{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-slideDown-in,.vegas-transition-slideDown2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown2-out{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-zoomIn,.vegas-transition-zoomIn2{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-zoomIn-in,.vegas-transition-zoomIn2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomIn2-out,.vegas-transition-zoomOut,.vegas-transition-zoomOut2{-webkit-transform:scale(2);transform:scale(2);opacity:0}.vegas-transition-zoomOut-in,.vegas-transition-zoomOut2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomOut2-out{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-swirlLeft,.vegas-transition-swirlLeft2{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-swirlLeft-in,.vegas-transition-swirlLeft2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlLeft2-out,.vegas-transition-swirlRight,.vegas-transition-swirlRight2{-webkit-transform:scale(2) rotate(-35deg);transform:scale(2) rotate(-35deg);opacity:0}.vegas-transition-swirlRight-in,.vegas-transition-swirlRight2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlRight2-out{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-animation-kenburns{-webkit-animation:kenburns ease-out;animation:kenburns ease-out}@-webkit-keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}.vegas-animation-kenburnsUp{-webkit-animation:kenburnsUp ease-out;animation:kenburnsUp ease-out}@-webkit-keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDown{-webkit-animation:kenburnsDown ease-out;animation:kenburnsDown ease-out}@-webkit-keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsLeft{-webkit-animation:kenburnsLeft ease-out;animation:kenburnsLeft ease-out}@-webkit-keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsRight{-webkit-animation:kenburnsRight ease-out;animation:kenburnsRight ease-out}@-webkit-keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpLeft{-webkit-animation:kenburnsUpLeft ease-out;animation:kenburnsUpLeft ease-out}@-webkit-keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpRight{-webkit-animation:kenburnsUpRight ease-out;animation:kenburnsUpRight ease-out}@-webkit-keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownLeft{-webkit-animation:kenburnsDownLeft ease-out;animation:kenburnsDownLeft ease-out}@-webkit-keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownRight{-webkit-animation:kenburnsDownRight ease-out;animation:kenburnsDownRight ease-out}@-webkit-keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}

/* SKIP SIZES
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.skip-sizes           { background-color: #f9f9fa; margin: 30px 0; padding: 30px; }
.skip-sizes img       { height: auto; width: 100%; }

/* WASTE TYPES
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.waste-types                           { margin: 30px 0; }
.waste-types table		               { border: none; border-collapse: collapse; width: 100%; }
.waste-types th	                       { background-color: #485562; border-bottom: 3px solid #FFF; color: #FFF; font-size: 18px; font-weight: bold; padding: 15px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-align: left; vertical-align: top; }
.waste-types td                        { background-color: #e1e3e5; border-bottom: 3px solid #FFF; font-size: 16px; line-height: 24px; padding: 20px 15px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-align: left; vertical-align: top; }
.waste-types td strong                 { font-size: 28px; }
.waste-types td.not                    { color: #e40123; }
.waste-types tr:nth-child(odd) td      { background-color: #f1f2f3; }

.waste-types th,
.waste-types td	                       { width: 35%; }
.waste-types th:first-child,
.waste-types td:first-child            { width: 30%; }

/* FAQ
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-content .faq *                { -moz-transition: none; -o-transition: none; -webkit-transition: none; transition: none; }
.page-content .faq                  { margin: 30px 0; }
.page-content .faq h3               { border-bottom: 1px solid #f1f2f3; color: #485562; font-size: 22px; font-weight: bold; line-height: 40px; margin: 15px 0 0; }
.page-content .faq h3:hover         { color: #e40123; cursor: pointer; }
.page-content .faq .answer          { background-color: #f9f9fa; display: none; font-size: 16px; line-height: 24px; padding: 15px; }

/* MEDIA QUERIES
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-height: 600px) {
    body { background-color: #fbfbfb;  }
    .page-column { position: absolute; height: auto; }
    .page-footer { position: relative; bottom: auto; left: auto; }
}

/* iPad - Portrait */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: portrait) {
	.page-layout {  } 
}

/* Mobile - Landscape */
@media screen and (min-device-width: 414px) and (max-device-width: 736px)  {
	.home-content .cycle-slideshow { min-height: 500px; }
}

/* Mobile - Portrait */
@media only screen and (max-width: 479px) {
	html { overflow-y: visible; }
    .page-column { display: none; }
	.page-layout { height: auto; min-width: 100px; height: auto; padding-top: 60px; position: relative; width: auto; }
    .page-content { margin: 0; float: none; width: 100%; }
    .page-content .inner { padding: 15px; width: auto; }

    .mob-header { background-color: #ebecee; display: block; position: fixed; top: 0; left: 0; height: 60px; width: 100%; z-index: 999; }
	.mob-header .logo { height: 40px; margin: 10px 0 10px 15px; width: 106px; }
	.mob-header .logo a { display: block; height: 100%; width: 100%;}
    .mob-header .logo img { height: 100%; width: 100%;}
	
    .mob-header .hamburger { background-color: transparent; padding: 20px 15px; display: inline-block; cursor: pointer; transition-property: opacity, filter; transition-duration: 0.15s; transition-timing-function: linear; font: inherit; color: inherit; text-transform: none; border: 0; overflow: visible; position: absolute; top: 0; right: 0; } 
    .mob-header .hamburger:hover { opacity: 0.7; }
    .mob-header .hamburger-box { width: 24px; height: 18px; display: inline-block; position: relative; }
    .mob-header .hamburger-inner { display: block; top: 50%; }
    .mob-header .hamburger-inner, 
    .mob-header .hamburger-inner::before, 
    .mob-header .hamburger-inner::after { width: 24px; height: 1px; background-color: #666; position: absolute; transition-property: transform; transition-duration: 0.15s; transition-timing-function: ease; }
    .mob-header .hamburger-inner::before,
    .mob-header .hamburger-inner::after { content: ""; display: block; }
    .mob-header .hamburger-inner::before { top: -6px; }
    .mob-header .hamburger-inner::after { bottom: -6px; }
    .mob-header .hamburger--squeeze .hamburger-inner { transition-duration: 0.075s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .mob-header .hamburger--squeeze .hamburger-inner::before { transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
    .mob-header .hamburger--squeeze .hamburger-inner::after { transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .mob-header .hamburger-active .hamburger-inner { transform: rotate(45deg);  transition-delay: 0.12s;  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .mob-header .hamburger-active .hamburger-inner::before { top: 0; opacity: 0; transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
    .mob-header .hamburger-active .hamburger-inner::after { bottom: 0; transform: rotate(-90deg); transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
    
	.mob-nav { background-color: #ebecee; border-top: 1px solid #CCC; display: none; font-size: 15px; overflow-y: auto; position: fixed; top: 60px; left: 0; bottom: 0; right: 0; width: 100%; z-index: 999; }
	.mob-nav ul li a { border-bottom: 1px solid #CCC; color: #111; display: block; height: 59px; line-height: 59px; overflow: hidden; padding: 0 15px; position: relative; text-transform: uppercase; }
	.mob-nav ul li.toggle { position: relative; }
    .mob-nav ul li.parent { position: relative; }
	.mob-nav ul>li.on>a { color: #666; }
	.mob-nav ul>li.book>a { color: #111; font-weight: bold; }
    
    .mob-footer { display: block; }
    .page-footer { background-color: #f9f9f9; padding: 40px 15px; position: relative; bottom: auto; left: auto; width: auto; }

    .page-content header { padding: 10px 0; }
    .page-content h1 { font-size: 20px; }
	.page-content p { font-size: 13px; line-height: 20px; margin: 0 0 20px; }
	.page-content ul, 
	.page-content ol { font-size: 13px; line-height: 20px; margin: 0 0 20px 20px; }
	.page-content hr { margin: 15px 0; }
    
    .page-content .page-heading { border-bottom: 5px solid #e40123; padding: 10px 0 0; }
    .page-content .page-heading h1 { font-size: 24px; line-height: 30px; }

    .page-content .content-block { margin-bottom: 15px; }
    .page-content .content-block .left { float: none; margin-bottom: 15px; width: auto; }
    .page-content .content-block .right { float: none; width: auto }
    
    .home-content { position: relative; margin-left: 0; }
    .home-content .inner { width: auto; }

    .home-content header h1 { font-size: 24px; line-height: 30px; padding: 45px 30px; text-align: center; }
    .home-content header h2 { font-size: 20px; line-height: 25px; padding: 45px 30px 60px; text-align: center; }
    .home-content header h2 span { float: none; }
    .home-content header h2 a { background-color: #e40123; float: none; font-size: 18px; height: 50px; line-height: 50px; margin-top: 20px; padding: 0 40px 0 15px; }
    
    .skip-sizes { padding: 0; }

    .waste-types th { font-size: 13px; line-height: 20px; padding: 10px; }
    .waste-types td { font-size: 13px; line-height: 20px; padding: 10px; }
    .waste-types td strong { font-size: 16px; line-height: 1.2; }
    
    .page-content .faq h3 { font-size: 16px; line-height: 25px; }
    .page-content .faq .answer { font-size: 13px; line-height: 20px; padding: 15px; }


    
}

.page-footer {
	background: #ebecee;
	padding-top: 5px;
}
.footer-logos img {
	margin: .5em auto 0;
	max-width: 100%;
    max-height: 40px;
}
.home-content header h1 {
    font-size: 24px;
    line-height: 1.25em;
}
.home-content header h1,
.home-content header h2 {
    padding: 20px 30px;
}