


/*

font-family: 'Open Sans', sans-serif;
font-weight: 300, 400, 700, 800;

*/



/* General
-----------------------------------------------------------*/
body {
	background: url(../img/texture.jpg);
	font-size: 13px;
	line-height: 21px;	
    font-family: 'Open Sans', sans-serif;
}

p {
	font-size: 13px;
	line-height: 21px;	
}

h1, h2, h3, h4, h5, h6 {    
	font-weight: 800;    
	font-family: 'Open Sans', sans-serif;
}

h2 {
    color: #c4161c;
    font-size: 32px;
    line-height: 36px;
    margin: 0 0 10px;
}

h3 {
    color: #c4161c;
    font-size: 21px;
    line-height: 21px;
    margin: 0 0 5px;
}

h4 {
	font-size: 24px;	
	font-weight: 700;    
}

h5 {
	font-size: 18px;	
	font-weight: 700; 
}

h6 {
	margin: 0 0 5px;
}

ul, ol, dl {
    font-size: inherit;
    line-height: inherit;
}

a {
	color: #c4161c;
}

a:hover, a:focus {
	color: #c4161c;
}

.alignright {
	float: right;
	padding: 0 0 10px 15px;
}

.alignleft {
	float: left;
	padding: 0 15px 10px 0;
}

/* Button
-----------------------------------------------------------*/
[type="checkbox"], [type="file"], [type="radio"] {
    margin: 0 5px 0 0;
}

[type="email"], [type="text"], textarea {
    border: medium none;
    box-shadow: none;
    height: auto;
    margin: 0 0 20px;
    padding: 15px;
}

[type="email"]:focus, [type="text"]:focus, textarea:focus {
    background: #eee;
	border:none;
}

a.button, [type="submit"] {
    background: #c4161c none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    height: 48px;
    line-height: 1rem;
    margin: 0;
    padding: 15px;
    position: relative;
    text-align: left;
    transition: background-color 0.25s ease-out 0s, color 0.25s ease-out 0s;
    width: 100%;
}

a.button::before {
    background: rgba(0, 0, 0, 0) url("../img/little_angle.png") repeat scroll 0 0;
    content: "";
    display: block;
    height: 48px;
    left: -44px;
    position: absolute;
    top: 0;
    width: 44px;
}

a.button:hover, [type="submit"]:hover {    
	background: #c4161c;
	color: #000;
}

textarea[rows] {
    height: 200px;
}




/* Header
-----------------------------------------------------------*/
.header {
    background: white;
    border-top: 1px solid #ccc;
    margin: 10px 0 0;
	overflow: hidden;
}

.header .logo {
    background: #ffc430;
    padding: 0 0 5px;
}

.logo_bg {
    background: #ffc430 none repeat scroll 0 0;
    height: 100%;
    left: -142%;
    position: absolute;
    width: 148%;
    z-index: -1;
}

.angle {
    background: rgba(0, 0, 0, 0) url("../img/angle.png") repeat scroll 0 0;
    height: 148px;
    left: 142px;
    position: absolute;
    top: 0;
    width: 81px;   
	z-index: -1;
}

.phone_icon {
    background: #ccc none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    float: right;
    font-size: 18px;
    height: 40px;
    margin: 16px 0 0 20px;
    padding: 9px 0 0;
    text-align: center;
    width: 40px;    
	transition: background-color 0.25s ease-out 0s, color 0.25s ease-out 0s;
}

a.phone_icon:hover {
    background: #c4161c;
	color: white;
}


/*--- P ---*/
.header p {
    color: #c4161c;
    float: right;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 11px 0 0;
}


/*--- Info ---*/
ul.info {
	float:right;
	margin: 0;
}

ul.info li {
    border-right: 1px solid #ccc;
    float: left;
    list-style: outside none none;
    padding: 18px 16px 16px;
    text-align: right;
}

ul.info li:last-child {
    border-right: none;
    padding-right: 0;
}

ul.info li small {
    color: #c4161c;
    font-size: 11px;
    font-weight: 800;
}

ul.info li h4 {
    font-size: 19px;
    font-weight: 300;
    margin: -5px 0 0;
}

ul.info li a {
    color:black;
}


/*--- Nav ---*/
.nav_bg {
    background: #ccc none repeat scroll 0 0;
    bottom: 0;
    height: 46px;
    position: absolute;
    width: 100%;
    z-index: 0;
}

ul.nav {
    background: #ccc none repeat scroll 0 0;
    float: right;
    margin: 13px 0 0;
}

ul.nav li {
    border-left: 1px solid white;
    float: left;
    list-style: outside none none;
    margin: 0 0 0 10px;
}

ul.nav li.menu-item-18::before, 
ul.nav li.menu-item-16::before, 
ul.nav li.menu-item-15::before, 
ul.nav li.menu-item-17::before {
    color: #c4161c;
	content: "\f291";
    font-family: FontAwesome;
    font-size: 16px;
    left: 12px;
    position: absolute;
    top: 13px;
}

ul.nav li.menu-item-16:before{
	content: "\f1b9";
}

ul.nav li.menu-item-15:before{
	content: "\f0ad";
}

ul.nav li.menu-item-17:before{
	content: "\f003";
}

ul.nav li a {
    color: #11498e;
    float: left;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 0 35px;
    padding: 12px 0;
}

ul.nav li a:hover,
ul.nav li.current_page_item > a {
	color: #c4161c;
}



/* Home
-----------------------------------------------------------*/

/*----- Main -----*/
.main {
	background: url(../img/bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 500px;
	border-bottom: 1px solid #c4161c;
}

.orbit-caption {
    padding: 20px 0;
}

.main h2 {
	color:white;
	margin:0;
}


/*----- Feature -----*/
.feature {
	background: #ffc430;
	margin: 30px 0;
}

.feature .feature_text {
    margin: 12px 10px 20px 0;    
	min-height: 166px;
}

.feature .feature_text ul {
    font-weight: 700;
    margin: 0 0 15px 15px;
}

.feature .feature_text p {
    font-weight: 700;
}

.feature .feature_image_wrap {
    margin: 20px 0 0 20px;
}

.feature .feature_image_wrap img {
    border-radius: 2px;
    width: 100%;
}

.feature .btn_wrap {
    margin: 0 0 0 0;
}


/*----- Our Services -----*/
.service_band {
    background: #e5e5e5 none repeat scroll 0 0;
    padding: 60px 0 50px;
}

.service_band hr {
    border-color: #666666;
    border-width: 3px;
    margin: 25px auto 30px;
    width: 100px;
}

.service_wrap {
    background: #ffc430 none repeat scroll 0 0;
    margin: 0 0 20px;
}

.service_wrap .top_section {
	background-image: url(../img/img.jpg) ;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;  
}

.service_wrap .top_section.ts2 {
	background-image: url(../img/img2.jpg);
}

.service_wrap .top_section.ts3 {
	background-image: url(../img/img3.jpg);
}

.service_wrap .top_section .dark {
	background: url(../img/dark.png);    
	padding: 60px 30px;    
	text-align: center;
}

.service_wrap .top_section i {
    background: #ffc430 none repeat scroll 0 0;
    border-radius: 50%;
    color: #c4161c;
    font-size: 19px;
    height: 50px;
    margin: 0 0 5px;
    padding: 14px 0 0;
    width: 50px;
}

.service_wrap .top_section h4 {
    color: white;
    margin: 0;
}

.service_wrap .top_section h5 {
    color:white;    
	margin: 0;
}

.service_wrap ul {
    margin: 15px 15px 15px 30px;    
	font-weight: 700;
}

.service_wrap ul li {
    line-height: 17px;
	margin: 0 0 5px;
}

.service_wrap .btn_wrap {
    bottom: 0;
    position: absolute;
    right: 0px;
}

.service_wrap .btn_wrap a.button {
    padding: 15px 25px;
    text-align: center;
}




/* Content
-----------------------------------------------------------*/
.header_title h2 {
    color: #000;
    margin: 30px 0;
}

.content {
    background: white;
    min-height: 420px;
    padding: 50px 0 ;
}

.content h3 {
    margin: 30px 0 10px;
}

.content h3:first-child {
	margin: 0 0 10px;
}

.content ul {
	margin: 10px 0 20px 25px;
}

.content img.attachment-header {
    margin: 0 0 10px;
}



/* Sidebar
-----------------------------------------------------------*/
.sidebar {
	margin: 0 0 0 20px;
}

.sidebar .feature {
    margin: 0 0 10px;
    text-align: center;
}

.sidebar .feature .feature_text {
    margin: 10px 25px 0;
    min-height: 0;
    padding: 0 0 10px;
}

.sidebar .feature .feature_image_wrap {
    margin: auto;
    max-width: 75%;
    padding: 30px 25px 10px;
}



/* Carwash
-----------------------------------------------------------*/
.car-wash .content img.size-header {
	margin: 10px 0 20px 20px;
	float:right;
	max-width: 70%;
}




/* Gallery
-----------------------------------------------------------*/
.gallery_wrap {
    background: #ccc none repeat scroll 0 0;
    margin: 30px 0 0;
    padding: 10px 10px 0;
}

.gallery_wrap .gall_item {
    margin: 0 0 10px;
    overflow: hidden;
}

.gallery_wrap .gall_item img {
	width: 100%;
}

.gallery_wrap .gall_item p {
    background: #c4161c none repeat scroll 0 0;
    bottom: 0;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    margin: 0;
    padding: 10px 10px 10px 5px;
    position: absolute;
    right: 0;
    text-align: right;
}

.gallery_wrap .gall_item p::before {
    background: rgba(0, 0, 0, 0) url("../img/little_angle.png") repeat scroll 0 0;
    content: "";
    display: block;
    height: 48px;
    left: -44px;
    position: absolute;
    top: 0;
    width: 44px;
}

.gallery_wrap .row  {
    margin: 0 -5px;
}

.gallery_wrap .row .columns {
    padding: 0 5px;
}






/* Contact Us
-----------------------------------------------------------*/
.contact-us .content form {
    background: #ccc;
    border-left: 3px solid #c4161c;
    border-radius: 0 3px 3px 0;
    margin: 8px 0 25px;
    padding: 40px;
}

.contact-us .content form label {
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 5px;
    text-align: left;
}

.contact-us .content form label small {
    color: #11498e;
    float: right;
}

.contact-us .content form [type="submit"] {
    max-width: 100px;
    text-align: center;
}

.contact-us .content form .wpcf7-radio {
    display: block;
    margin: 0 0 20px;
}

.contact-us .content form span.wpcf7-list-item {
    background: #c4161c none repeat scroll 0 0;
    border-radius: 2px;
    color: white;
    line-height: 18px;
    margin: 0 1% 1% 0;
    padding: 18px 20px;
    width: 22%;
}

.contact-us .content form span.wpcf7-list-item.first {
    width: 31%;
}

.contact-us .content form span.wpcf7-list-item.last {
    margin: 0;
}



/* Footer
-----------------------------------------------------------*/
.footer {
    background: black none repeat scroll 0 0;
    color: white;
    padding: 40px 0;
    text-align: right;
}

.footer ul {
    float:left;
	margin: 0;
}

.footer ul li {
    float:left;
	margin: 0 20px 10px 0;
	list-style:none;
	border-right: 1px solid #c4161c;
}

.footer ul li:last-child {
	border: none;
}

.footer ul li a {
    color: #c4161c;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px 0 0;
}

.footer ul li a:hover {
    color: #981217;
}

.footer small {
    color: #c4161c;
    font-size: 12px;
    font-weight: 800;
}

.footer p {
    line-height: 17px;
    margin: 0 0 10px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #ccc;
}

.bottom {
	background: #222;
	padding: 10px 0;
}

.bottom a {
	background: url(../img/x.png) no-repeat center left;
   	color: white;
    display: block;
    font-size: 11px;
    margin: auto;
    padding: 0 0 0 20px;
    width: 112px;
}


@media only screen and (max-width: 75em) { 
	.header p { font-size: 13px; letter-spacing: 0;}
}


@media only screen and (max-width: 64em) { 



/* General
-----------------------------------------------------------*/
a.button, [type="submit"] {
    font-size: 15px;
}
	
	
/* Header
-----------------------------------------------------------*/
.angle {
    left: 89px;
    width: 81px;
}

ul.nav li.menu-item-18::before, 
ul.nav li.menu-item-16::before, 
ul.nav li.menu-item-15::before, 
ul.nav li.menu-item-17::before {
    display: none;
}

ul.info li {
    padding: 5px;
}

.header .logo {
    width: 113px;
}

.header p {
    border: 1px solid #ccc;
	border-right: none;
	border-left: none;
	border-bottom: none;
    margin: 0 -15px 0 0;
    padding: 10px 20px;
}

.nav_bg {
    display: none;
}

.menu_icon {
    cursor: pointer;
    display: block;
    float: right;
    margin: 0 -15px 0 10px;
}

.menu_icon::after {
    background: white none repeat scroll 0 0;
    border-left: 1px solid #dbdada;
    box-shadow: none;
    color: #11498e;
	content: "\f0c9";    	
   	display: inline-block;
    font-family: FontAwesome;
    font-size: 32px;
    height: 63px;
    padding: 16px 0 0;
    position: relative;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 50px;
}

.menu_icon:hover:after {
	background: #ddd; 
}

.position-right.is-transition-push::after {
    border-left: 2px solid #11498e;
    box-shadow: none;
}

#offCanvasRight .close-button {
    background: #c4161c none repeat scroll 0 0;
    color: white;
    font-size: 22px;
    height: 32px;
    padding: 5px 11px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
}

#offCanvasRight label {
    background: #11498e none repeat scroll 0 0;
    clear: both;
    color: white;
    display: block;
    font-size: 12px;
    font-weight: 700;
    height: 32px;
    padding: 5px 20px;
    text-transform: uppercase;
}

#offCanvasRight ul.nav {
    float: none;
    margin: 0;
}

#offCanvasRight ul.nav li {
    float: none;
	margin: 0;
}

#offCanvasRight ul.nav li a {
    display: block;
    margin: 0;
    padding: 15px 20px;
    width: 100%;
}

#offCanvasRight ul.nav li a:hover {
}

#offCanvasRight ul.nav li.current_page_item > a {
}



/* Home
-----------------------------------------------------------*/

/*--- Main ---*/
.main {
    height: 400px;
}


/*--- Feature ---*/
.feature img {
    display: block;
    margin: 20px auto 10px;
}

.feature h2,
.feature .feature_text ul,
.feature .feature_text p {
    text-align: center;
}

.feature .btn_wrap {
    margin: 0 0 0 44px;
}

.feature h2 {
    font-size: 24px;
    line-height: 28px;
}

.feature .feature_image_wrap {
    margin: 40px 40px 0;
}


/*--- Service ---*/
.service_band {
    background: #e5e5e5 none repeat scroll 0 0;
    padding: 50px 0 15px;
}

.service_wrap .top_section .dark {
    padding: 40px 15px;
}

.service_wrap .top_section h4 {
    font-size: 14px;
}

.service_wrap .top_section h5 {
    font-size: 12px;
}

.service_wrap {
    padding: 0 0 50px;
}

.service_wrap .btn_wrap {
    bottom: -50px;
}



/* Carwash
-----------------------------------------------------------*/
.car-wash .content img.size-header {
    max-width: 100%;
    width: 100%;
}


/* Sidebar
-----------------------------------------------------------*/
.sidebar {
	margin: 0;
}


.sidebar .feature img {
    margin: auto;
}



/* Gallery
-----------------------------------------------------------*/
.gallery_wrap {
    margin: 30px 0 0;
}

.gallery_wrap .gall_item p {
    padding: 5px;
}


/* Content
-----------------------------------------------------------*/
.header_title h2 {
    font-size: 24px;
    margin: 15px 0;
}

.content {
    padding: 30px 0 15px;
}



/* Contact
-----------------------------------------------------------*/
.contact-us .content form span.wpcf7-list-item {
    margin: 0 !important;
    width: 50% !important;
	border-radius:0;
}





}







@media only screen and (max-width: 40em) {

/* Header 
-----------------------------------------------------------*/
.header {
	border-bottom:1px solid #ccc;
}

.header .logo {
    height: 71px;
    padding: 5px 5px 5px 0;
    width: 73px;
}

.header p {
    border: medium none;
    font-size: 11px;
    line-height: 16px;
    margin: 0 -15px 0 0;
    padding: 20px 10px 0;
    text-align: right;
    width: 77%;
}

.angle {
    display:none;
}

ul.info {
    display: none;
}

ul.info li,
ul.info li:last-child {
    border: medium none;
    padding: 20px 20px 0;
    text-align: left;
}

.menu_icon::after {
    height: 71px;
    padding: 20px 0 0;
    width: 54px;
}

#offCanvasRight ul.info {
    display: block;
}



/* Home
-----------------------------------------------------------*/

/*--- Main ---*/
.main {
    height: 170px;
}

.orbit-caption {
    padding: 10px;
}

.main h2 {
    font-size: 14px;
    line-height: 20px;
}


/*--- Feature ---*/
.feature {
    margin: 15px 0 0;
}

.feature h2 {
    font-size: 19px;
    line-height: 24px;
    margin: 0 0 5px;
}

.feature .feature_text {
    min-height: 0;
}

.feature .feature_image_wrap {
    margin: 25px 60px 10px;
}

.feature .feature_image_wrap img {
    margin: 0;
}


/*--- Service  ---*/
.service_band {
    margin: 15px 0 0;
    padding: 30px 0 0;
}

.service_band h2 {
    font-size: 26px;
    line-height: 30px;
}

.service_band hr {
    margin: 15px auto 20px;
    width: 75px;
}

.service_wrap .btn_wrap {
    bottom: 0px;
}




/* Content
-----------------------------------------------------------*/
.header_title h2 {
    font-size: 21px;
    line-height: 27px;
    margin: 10px 0;
}

.content {
    padding: 20px 0 10px;
}



/* Sidebar
-----------------------------------------------------------*/
.sidebar {
	margin: 20px 0 0;
}






/* Gallery
-----------------------------------------------------------*/
.gallery_wrap {
    margin: 20px 0 0;
}






/* Contact Us
-----------------------------------------------------------*/
.contact-us .content form {
    padding: 30px;
}

.contact-us .content {
	text-align: center;
}

.contact-us .content form {
    padding: 17px;
}

.contact-us .content form .wpcf7-radio {
    text-align: left;
}

.contact-us .content form span.wpcf7-list-item {
    font-size: 12px;
    padding: 5px 20px;    
	width: 100% !important;
}

.contact-us .content form span.wpcf7-list-item.first {
    padding-top:20px;  
}

.contact-us .content form span.wpcf7-list-item.last {
    padding-bottom:20px;  
}

.contact-us .content form .wpcf7-radio {
    margin: 0 0 15px;
}



/* Footer
-----------------------------------------------------------*/
.footer {
    text-align: center;  
	padding: 25px 0;
}




}










/* IE 
-----------------------------------------------------------*/
.ie8 .row               { width:1000px !important; }
.ie8 .row .row			{ width:100%   !important; }
.ie8 .row .row .row     { width:100%   !important; }
.ie8 .large-centered    { width:100%   !important; }
.ie8 .columns           { float:left; padding: 0 20px;}
.ie8 .large-1.columns   { width:  8%; }
.ie8 .large-2.columns   { width: 15%; }
.ie8 .large-3.columns   { width: 25%; }
.ie8 .large-4.columns   { width: 33%; }
.ie8 .large-5.columns   { width: 40%; }
.ie8 .large-6.columns   { width: 50%; }
.ie8 .large-7.columns   { width: 58%; }
.ie8 .large-8.columns   { width: 66%; }
.ie8 .large-9.columns   { width: 75%; }
.ie8 .large-10.columns  { width: 83%; }
.ie8 .large-11.columns  { width: 90%; }
.ie8 .large-12.columns  { width: 100%;}
.ie8 .hide-for-large-up { display:none; }





/* Visibility Classes 
-----------------------------------------------------------*/	

@media only screen { /* small displays */
	.show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
		display: inherit !important; }
	.hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
		display: none !important; }}

@media only screen and (min-width: 40.063em) { /* medium displays */
	.hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
		display: inherit !important; }
	.show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
		display: none !important; }}

@media only screen and (min-width: 64.063em) { /* large displays */
	.hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
		display: inherit !important; }
	.show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
		display: none !important; }}

@media only screen and (min-width: 90.063em) { /* xlarge displays */
	.hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
		display: inherit !important; }
	.show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
		display: none !important; }}

@media only screen and (min-width: 120.063em) { /* xxlarge displays */
	.hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
		display: inherit !important; }
	.show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
		display: none !important; }}