@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,700);
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');


body {
    margin: 0 auto;
    color: #323232;
    font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}


/* Typography
----------------------------------------------------------------------------------------------------*/

a {
	/*color: #d83d44;*/
	text-decoration: none;
}
a:hover {
    /*color: inherit;*/
	text-decoration: underline;
}
a img {
	border: 0;
}
p {
	color: #323232;
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 14px;
	margin: 0;
}
ul,ol {
    margin-top:0;
}

[le_content_type="text"].le_content li {
    margin: .35em 0;
}

h1, h1 a, .title1, .title1 a {
	/*font-family: 'Oswald', 'Helvetica', Arial, sans-serif;*/
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 28px;
	/*font-weight: 700;*/
	margin: 0;
}
h2, h2 a, .title2, .title2 a {
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 26px;
	/*font-weight: 700;*/
	margin: 0;
}
h3, h3 a, .title3, .title3 a {
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 24px;
	/*font-weight: 700;*/
	margin: 0;
}
h4, h4 a, .title4, .title4 a {
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 24px;
	/*font-weight: 700;*/
	margin: 0;
}
h5, h5 a, .title5, .title5 a {
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 18px;
	/*font-weight: 400;*/
	margin: 0;
}
h6, h6 a, .title6, .title6 a {
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 18px;
	/*font-weight: 400;*/
	margin: 0;
}
.title1,.title1 a,.title2,.title2 a,.title3,.title3 a,.title4,.title4 a,.title5,.title5 a,.title6,.title6 a {
    display:inline-block;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .title1 a:hover, .title2 a:hover, .title3 a:hover, .title4 a:hover, .title5 a:hover, .title6 a:hover {
	/*text-decoration: none;*/
}

/* make sure font awesome icons that are links do not have underline on hover */
.fa a:hover, a.fa:hover {
    text-decoration: none;
}
.whiteText p, .whiteText h1, .whiteText h2, .whiteText h3, .whiteText h4, .whiteText h5, .whiteText h6 {
    color: #ffffff;
}

/* General Custom Coding
----------------------------------------------------------------------------------------------------*/
.CustomColor1 {
    color: #c40009;
}
.CustommColor2 {
    color: #ffffff;
}
.redHeader {
    background-color: rgb(163, 0, 13);
    padding: 6px 15px;
    margin: 40px 0px 30px 0px;
    border-radius: 10px;
}
.request-form .form-group {
    color: #ffffff !important;
}

/*-----------------EXPAND-----------------------------------------*/

.expandparagraph {
    margin-bottom: 15px;
}
.expand h2 {
    position: relative; 
    margin-bottom: 5px;
}
.expand h2:before {
    content: "+";
    margin-right: 10px;
    color: #AC000E;
    display: inline-block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.expand h2.active {
    color: #91010b;
}
.expand h2.active:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4/90);
}
.expand h2:hover {
    cursor: pointer;
    color: #AC000E;
}
/*-----------------END EXPAND-------------------------------------*/


/* Forms
----------------------------------------------------------------------------------------------------*/

.le_form {
	color: #323232;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	margin: 0;
}
.le_form_name {
    color: #323232;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px 0;
    text-transform: uppercase;
}
.wrapper-inner input[type="submit"] {
	padding: 5px 15px;
	border: 0px solid transparent;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	margin: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
	border-radius: 0px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
	transition: all .2s ease;
}
.wrapper-inner input[type="submit"]:hover {
	cursor: pointer;
}
.wrapper-inner input[type="text"], .wrapper-inner input[type="password"], .wrapper-inner textarea, #search_form_value {
	padding: 4px 5px;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 0px;
	color: #323232;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	margin: 0;
}

.wrapper-inner #search_form_button {
    padding: 8px 15px 9px 15px;
    position: relative;
    top: -1px;
}
.checkbox {
    color: #ffffff;
}


/* -- Bootstrap form tweaks -- */
.form-control {
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}

/* -- Hide input placehoder text on focus --*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

::-webkit-input-placeholder {
    font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
}
:-moz-placeholder { /* older Firefox*/
     font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
}
::-moz-placeholder { /* Firefox 19+ */ 
    font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
} 
:-ms-input-placeholder { 
    font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
}


.form-group label.title3 {
    padding-top: 30px;
    margin-bottom: 15px;
    display: block;
}

.le_form label {
    font-weight: normal;
}
.label {
    color: #ffffff;
}

/* -- fieldset clearing -- */
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin:20px 0;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

@media all and (min-width: 768px) {
    .form-inline .form-control {
        max-width: 150px;
    }
}

/* ---- Form Alerts --- */
.le_form_container .error {
    color: #000;
    padding: 3px 8px;
    background-color: #fdcece;
}

.form-inline .no-labels label.error,.no-labels label.error {
    display:block !important;
}

.form-inline label.error {
    display:block;
    position: absolute;
    color: red;
    background: pink;
    padding: 2px 3px;
    border-radius: 2px;
    z-index: 2;
    color: #cd1719;
    font-size: 12px;
}
/* - List Classes - */
/* Use the following CSS code if you want to have a class per icon */
.checklist ul { 
    padding-left:20px; 
    list-style:none; 
}
.checklist ul li { 
    margin-bottom:10px; 
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin:0 5px 0 -15px;
}
.checklist-circle ul { 
    padding-left:20px; 
    list-style:none; 
}
.checklist-circle ul li { 
    margin-bottom:10px; 
}
.checklist-circle ul li:before {    
    font-family: 'FontAwesome';
    content: '\f058';
    margin:0 5px 0 -15px;
}

/* Site Classes
----------------------------------------------------------------------------------------------------*/

hr {
    border: 0;
    height: 1px;
}
.le_bin {
    display:none;
    background-color: #ffffff;
    background: rgba(255,255,255,.8);
}
.le-edit-open .le_bin {
    display:block;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.le_binItem {display:none;}
.le_binItem.hascon {display:block;}

.le-edit-open .le_bin {display:none;}
.le-edit-open .le_bin.hasbin {display:block;}
.textCenter {
    text-align: center;
}
.textLeft {
    text-align: left;
}
.textRight {
    text-align: right;
}
.mt10 {
    margin-top:10px;
}

.mt20 {
    margin-top:20px;
}

.mb10 {
    margin-bottom:10px;
}

.mb20 {
    margin-bottom:20px;
}
/* Buttons
----------------------------------------------------------------------------------------------------*/

.se_button a, a.se_button {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	padding: 15px 20px;
	line-height: 1em;
	border:0px solid transparent;
	font-family:"Droid Sans", sans-serif;
	font-weight:400;
}
.se_button a:hover, a:hover.se_button {
    text-decoration: none;
}
.se_button.button2 a, a.se_button.button2{
    padding: 8px 15px;
}
.se_button.fullwidthButton a, a.se_button.fullwidthButton{
    display: block;
    text-align: center;
}
.se_button.largeButton a, a.se_button.largeButton {
	padding: 20px 30px;
	font:24px;
	border-radius:8px;
	font-weight: bold;
}

.seFormButton, .wrapper input[type="submit"].seFormButton {
    padding: 8px 15px 9px 15px;
    font-family: "Droid Sans",sans-serif;
    font-style: italic;
}

.se_social {
    margin: 10px 0;
}

.se_social a{
    margin:0 4px;
}

.se_siteBranding {
    line-height:1;
    padding: 10px 0;
}

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

@media (max-width: 768px) { 
    .se_siteBranding img {
        max-height: 80px;
    }
}

.se_siteBranding a {
	word-break: break-word;
	max-width: 100%;
}
.se_siteBranding a:hover {
    text-decoration: none;
}
.le_logo_text {
    font-size:100%;
    transition: all .3s ease
}

.se_tagline {
    margin-top: 10px;
	color: #323232;
	font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 18px;
	height: auto;
	opacity: 1;
	transition: all .2s ease;
}

.seFormButton {
    background: red;
    color: #fff;
}

#primaryMenu.se_menu li.le_menuitem_level_0 li.le_menuitem_level_1 a {
    font-size:.9em;
}
.se_cta {
    display: block;
    margin-bottom: 20px;
	padding: 20px;
	font-size: 24px;
	background-color: #ffffff;
	border: 7px solid rgba(71, 63, 73, .7);
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	transition: all .2s ease;
}

.se_cta:hover {
    border-color: #0da0b0;
}

.se_cta a, a.se_cta {
    color: #ffffff;
}
.se_cta a:hover, a:hover.se_cta {
    color: #e0e0e0;
    text-decoration: none;
}


/* Wrapper / Container
----------------------------------------------------------------------------------------------------*/
.wrapper {
    width: 100%;
    position: relative;
    overflow:hidden;
}

.le-logged-in .wrapper.page-wrapper {
    top: 40px;
}

.wrapper-inner {
	width: 100%;
	margin-left: 200px;
	float: right;
	position: relative;
	transition: padding .3s ease;
}

.OpenMobileMenu .wrapper-inner {
    /*padding-left: 200px;*/
}

.se_WrapperContent {
    padding-top: 40px;
    padding-bottom: 40px;
}

.container {
    width: auto !important;
    max-width: 1170px;
    padding: 0 40px;
}


@media (min-width: 769px) { 
    .wrapper-inner {
        padding-left: 200px;
    }
}

/* Top Bar
----------------------------------------------------------------------------------------------------*/
#top-bar {
    padding: 10px;
    border-bottom:1px solid rgba(0,0,0,.12);
}

#search-form-wrap {
    overflow: hidden;
    margin-bottom: 30px;
}

#primaryMenu #search_form {
    position: relative;
}

#primaryMenu #search_form_value {
    color: #555;
    font-size: 13px;
    width:100% !important;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0px;
    padding: 3px 5px;
    padding-right: 24px;
    transition: all .2s ease;
}

#primaryMenu #search_form_button {
    display: block;
    background: transparent;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #777;
}

#primaryMenu #search_form_button:hover {
    color: #000;
}

#primaryMenu #search_form_value:focus #primaryMenu #search_form_button {
    color: #000;
}

@media (min-width: 768px) { 
    #primaryMenu #search_form {
        width: 100%;
        margin: 0;
        float:right;
    }
    
    #primaryMenu #search_form_value {

    }
    #primaryMenu #search_form_value:focus {
        
    }
}


/* Header
----------------------------------------------------------------------------------------------------*/

.header {
	padding: 0;
	background-color: #d83d44;
}
.header p, .header a, .header h1, .header h2, .header h3, .header h4, .header h5, .header h6 {
    color: #ffffff;
}

.se_header { /* replace this with new file picker image when ready */
    position: relative;
}


/* Navigation (se_menu)
----------------------------------------------------------------------------------------------------*/

.mobile-header-wrap.se_menu {
    padding: 0 20px;
}

.navicon {
    display: block;
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 10px;
    line-height: 45px;
    height: 45px;
    padding: 0px 35px;
    text-transform: uppercase;
    background: transparent !important;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    top: 0;
    right: 0;
    font-size: 30px;
}
.navicon:hover {
    cursor: pointer;
}

.OpenMobileMenu .navicon {
}

.le-logged-in.OpenMobileMenu .navicon {
}

#primaryMenu.se_menu {
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
    height: 100%;
    width: 180px;
    margin-right: 180px;
    float: left;
    overflow-x: visible;
    /*overflow-y: auto;*/
    padding: 20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    transition: left .3s ease;
}

.le-logged-in #primaryMenu.se_menu {
    top: 40px;
}

.le-edit-open #primaryMenu.se_menu, .le-design-open #primaryMenu.se_menu {
    left: 180px;
}

.menu-wrap {
    padding-left:0;
    margin-bottom: 20px;
}
.MainMenu {
    display: block;
    padding-top: 0;
    width: 100%;
}
.MainMenu ul {
    margin: 0;
    padding: 0;
}

.MainMenu ul.le_menu_level_0 {
    margin: 0;
	padding: 40px 0 10px 0;
	/*text-align: center;*/
}
.MainMenu li {
    position: relative;
	list-style-type: none;
	text-decoration: none;
}

.MainMenu .le_menu_level_container {
	position: relative;
}

.MainMenu ul.le_menu_level_0 {
    margin: 0;
	padding: 0;
}
.MainMenu li.le_menuitem_level_0 {
	/*display: inline-block;*/
    padding: 0;
}

.MainMenu li.le_menuitem_level_0 a {
	display: block;
    padding: 15px 22px;
    margin: 0 -20px;
    font-family: 'Open Sans', Helvetica, arial, sans-serif;
    font-size: 15px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.MainMenu li.le_menuitem_level_0 a:hover {
	color: #323232;
}

.MainMenu .le_menu_level_1_container {
    position: fixed;
    left: 180px;
    margin-top: -35px;
    min-width: 180px;
}

.le-edit-open .le_menu_level_1_container, .le-design-open .le_menu_level_1_container {
    left: 400px;
}
.MainMenu ul.le_menu_level_1 {
	height: auto;
	position: relative;
	right: 0;
	z-index: 10;
	display: none;
    margin: 0;
	padding: 0;
	text-align: left;
}
.MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
	display: block;
}

.MainMenu li.le_menuitem_level_1 a {
	display: block;
	padding: 10px;
	margin: 0;
	color: #323232;
    font-family: 'Open Sans', Helvetica, arial, sans-serif;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	/*min-width: 180px;*/
}
.MainMenu li.le_menuitem_level_1 a:hover {
	color: #d83d44;
    background-image: none;
}

.MainMenu .le_menu_level_2_container {
    background-color: inherit;
    padding-left: 12px;
    font-size: .9em;
}
.MainMenu li.le_menuitem_level_1:hover .le_menu_level_2_container {
	display: block;
}
.MainMenu ul.le_menu_level_2 {
    background-color: inherit;
}
.MainMenu .dropdown ul {
    display: block;
}
  
    /* --- end Navigation (se_menu) - ----*/

@media (min-width: 769px) {
    .mobile-header-wrap.se_menu {
        display:none;
    }
    .MainMenu .le_menu_level_2_container {
    	position: absolute;
    	width: 100%;
    	z-index: 10;
    	left:100%;
    	margin-top: -35px;
    	padding: 0;
    	display: none;
    	font-size: 1em;
    }
    
}/* end 769 MQ */

@media (max-width: 768px) {
    #primaryMenu.se_menu {
        left: -200px;
    }
    .OpenMobileMenu #primaryMenu.se_menu {
        left: 0;
    }
}

.menu-inner {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    margin:0 -20px;
    padding: 0 20px;
}

/* Menu Element
----------------------------------------------------------------------------------------------------*/
.menu_element ul{
    list-style: none;
    padding: 0;
    margin:10px 0;
}



/* Main Content
----------------------------------------------------------------------------------------------------*/

.content {
	/*padding: 60px 0;*/
	padding: 0;

}
.contentInner {
    padding: 15px;
}

.htmlSlide {
    width: 100%!important;
    max-width: 100%!important;
}

/* Footer
----------------------------------------------------------------------------------------------------*/

.footer {
    background-color: #323232;
	padding: 30px 0;
    /*text-align: center;*/
}
.footer-base {
    padding-top:15px;
}
.footer p {
	font-size: 13px;
	color: #ffffff;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/

@media (min-width: 400px) {
    #primaryMenu.se_menu {
        width: 200px;
        margin-right: 200px;
    }
    .MainMenu .le_menu_level_1_container {
        left: 200px;
        min-width: 180px;
    }
    
    .le-edit-open #primaryMenu.se_menu, .le-design-open #primaryMenu.se_menu {
        left: 200px;
    }
}


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .middle-it {
        display:inline-block;
        vertical-align:middle;
        float: none;
    }
    
    .pull-it-right {
        margin-right: -15px;
    }
    
    .pull-it-left {
        margin-left: -15px;
    }
    

}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .MainMenu li.le_menuitem_level_0 a {
        /*padding: 10px 10px;*/
    }
    .MainMenu ul.le_menu_level_1 {
        margin: 0;
    }
    .MainMenu li.le_menuitem_level_1 a {
        /*padding: 5px 10px;*/
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200) {
    .MainMenu li.le_menuitem_level_0 a {
        /*padding: 10px 15px;*/
    }
    .MainMenu ul.le_menu_level_1 {
        margin: 0;
    }
    .MainMenu li.le_menuitem_level_1 a {
        /*padding: 5px 10px;*/
    }
}

/* Resets
----------------------------------------------------------------------------------------------------*/

a#forgot_password_link {
    background: none !important;
    padding: 0 !important;
    line-height: 30px;
}

button::-moz-focus-inner,
	input[type="button"]::-moz-focus-inner,
	input[type="submit"]::-moz-focus-inner,
	input[type="reset"]::-moz-focus-inner {
	padding: 0 !important;
	border: 0 none !important;
}
img {
    max-width: 100%;
    height: auto;
}

.wrapper-inner img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

#feature img {
	vertical-align: middle;
    width: 100%;
	height: auto;
}
#feature .le_plugin_slider_container {
    margin:auto;
}
.wrapper-inner table {
	border-spacing: 0 !important;
}

/* MINDBODY Overrides
----------------------------------------------------------------------------------------------------*/

.le_mb_wrapper {
    padding-top:10px;
}

/* MINDBODY Appointments Page Overrides
----------------------------------------------------------------------------------------------------*/
.mb_appt_wrapper {
}

/* ------------------------------------------
  Overrides - Services and MB
  --------------------------------------------- */

/* ------- Staff Pages ------ */

.wrapper-inner #le_mb_get_staff .staff_side {
	width: 100% !important;
	margin-left: 0 !important;
}

.wrapper-inner #le_mb_get_staff .staff_info{
    margin-bottom: 20px;
}

/* ----- Class Pages ----- */
#le_mb_class_page #class_info img {
    margin-bottom: 20px;
    padding-left: 0;
}

#le_mb_class_page #class_info h4 {
    clear: both;
    margin-bottom: 10px;
}

#le_mb_class_page .staff_info img {
    margin-bottom: 20px;
    border: 1px solid #d4d4d4;
}

#le_mb_class_page .staff_info h4 {
    margin-bottom: 10px;
}

.wrapper-inner .staff_info .firstname,.wrapper-inner .staff_info .lastname {
    font-size:18px;
}

/* ------- list Schedule ------ */

.mb_listview_date #forward, .mb_listview_date #back {
    width: 40px;
    height: 40px;
    font-size: 28px;
    transition:all .2s ease;
}

.wrapper-inner #le_mb_list_schedule .master_date {
    padding-top:0;
}
.wrapper-inner #le_mb_list_schedule .title_date {
    padding-left: 20px;
}
.wrapper-inner #le_mb_list_schedule .row_date {
    padding-left: 20px;
}
.title_date, .title_class, .title_staff {
    position:relative;
    top:-5px;
}  

.wrapper-inner #le_mb_list_schedule .row_class {
    padding-left:20px;
}

.wrapper-inner #le_mb_list_schedule .row_staff {
    padding-left:2px;
}

/* ------- MB login ----- */
#login_form .mb_login_existing_row {
    display: block;
    clear: both;
    overflow: hidden;
}

#le_mb_loginsignup #new_clients {
    border-left: 1px solid rgba(0,0,0,.23);
}

/* Clear
----------------------------------------------------------------------------------------------------*/

/* Clear Floated Elements */
/* http://sonspring.com/journal/clearing-floats */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clearfix:after {
	clear: both;
	content:' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

  .le_metro_silver_button {
    display: inline-block;
    min-width: 75px;      
  }
  
@media all and (max-width: 768px) {
    #new_clients {
        min-width: 300px;
    }
    #new_clients label {
        text-align: left !important;
    }
    #existing_clients {
        min-width: 300px;
    }
    #existing_clients label {
        text-align: left !important;
    }
    .mb_login_existing_label {
         text-align: left !important;
    }
}

/* Box Slider Fixes and Customizations
----------------------------------------------------------------------------------------------------*/
.bx-viewport .htmlSlide {
    padding-bottom: 0 !important;
}

.bx-wrapper .htmlPanel { /* Fixes shift of content when fade transition is applie */
    left: 0;
}

.bx-wrapper .bx-controls-direction a {
    z-index: 800 !important;
}

.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a {
    background: #676767;
    background: rgba(0,0,0,.5);
}

.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a:hover,.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #333;
    background: rgba(0,0,0,.85);
}

/* --- BX slider arrows --- */

.wrapper-inner .bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 44px;
}

.wrapper-inner .bx-wrapper .bx-prev, .wrapper-inner .bx-wrapper .bx-prev:hover{
    background: url("https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/mmp3/site-slider-arrows.png") no-repeat 0 0;
}
.wrapper-inner .bx-wrapper .bx-next, .wrapper-inner .bx-wrapper .bx-next:hover {
    background: url("https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/mmp3/site-slider-arrows.png") no-repeat -32px 0;
}

/* ---- Scale map down on mobile devices for easier scrolling ----*/

.mobile-map {
	max-width: 100%;
}

@media only screen and (max-width : 992px) { 
	.mobile-map {
		max-width: 80%;
	}
}


/* ------------- Calendar Mods/Overrides ------------*/
.wrapper-inner .event_calendar {
    width: 100%;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
}

.calendarCells {
    padding: 4px;
}

.calendarCellsDate {
    line-height:1em;
}

.selections .action {
    width: auto;
    padding: 0px 10px;
    margin-right: 1px;
    color: #fff;
    border: 0;
}

.date_selection #today {
    background: #A8A8A8;
    color: #fff;
    border: 0;
    height: 27px;
}

.date_selection #startdate {
    height: 27px;
    width: 100px;
    padding: 0 4px;
}

/*-- Front end Event Creattion -- */
#event_header {
    background: #e8e8e8;
    padding: 10px;
}

#event_timezone {
    
}

#event_form .float_right:first-child {
    margin: 10px 10px 0 0;
}
#event_start .date {
    height: 28px;
}

#event_start .date_details {
    height: 28px;
}

#event_end .date_details {
    height: 28px;
}

/* ------------- End Calendar Mods/Overrides ------------*/


/* -- blog Service Styles -- */

#blog_sidebar.blog_sidebar {
    width: 35%;
    margin-left: 5%;
    padding: 20px;
    float: right;
}

#blog_sidebar #blog_sidebar_name {
    font-size: 1.35em;
    margin-bottom: 10px;
}

#blog_sidebar_image {
    display:block;
    margin: auto;
}

/* -- Post List -- */

#blog_post_listing.blog_post_listing_sidebar { /*This is actually the post listing container...not the sidebar*/
    width: 60%;
    float: left;
}

#blog_post_listing .blog_post_listing {
    border-bottom: 1px solid #e8e8e8;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

#blog_post_listing h1.blog_post_listing_title {
    line-height:1;
    margin-bottom: 10px;
}

#blog_post_listing .feature_blog_text {
    margin-left:0;
}


#blog_post_listing .blog_post_listing_footer_section {
    padding: 10px 0 0 0;
}

#blog_post_listing .blog_post_listing_footer_hr {
    display:none;
}

img.blog_post_listing_author_img, img.blog_post_author_img, .blog_post_comment_new_author_image {
    max-width:38px;
    height: auto;
}

.blog_post_listing_publishdatetime, .blog_post_listing_author {
font-size: 13px;
}

.blog_post_listing_author,.blog_post_author {
    font-weight: bold;
}

.blog_post_listing_content {
    /*clear: both;*/
}

.blog_post_listing_title_section {
    margin-right: 50px;
}

.blog_post_title, .blog_post_listing_title_link {
    font-size: 18px;
}

#blog_post_listing .feature_blog_image {
    margin-right: 20px;
}

#blog_post_listing .feature_blog_text {
    float: none;
}

.blog_post_listing_permalink {
    word-wrap: break-word;
}

a.read_more_link {
    display: table;
    background: #424242;
    padding: 5px 10px;
    border:0px solid transparent;
    color: #fff;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: none;
}

@media all and (max-width: 1024px) {
    #blog_post_listing.blog_post_listing_sidebar {
        width: 55%;
    }
    
    #blog_sidebar.blog_sidebar {
        width: 40%;
    }
}

@media all and (max-width: 767px) {
    #blog_sidebar.blog_sidebar {
        display:none;
    }
    #blog_post_listing.blog_post_listing_sidebar {
        width: 100%;
        padding-left: 0;
    }
}

@media all and (max-width: 600px) {
    #blog_post_listing .blog_post_listing_header_section {
        display:none;
    }
    #blog_post_listing .feature_blog_image {
        float:none;
        text-align: center;
        margin-bottom: 20px;
    }
    #blog_post_listing .blog_post_listing_title_section {
        margin: 0;
        text-align: center;
    }
    #blog_post_listing .feature_blog_text {
        text-align: center;
    }
    #blog_post_listing a.read_more_link {
        margin: 15px auto 0;
    }

}

/* --- Single (Full) Posts --- */
#blog_post .blog_post_title_section {
    margin: 10px 0;
}

#blog_post_content_section {
    max-width: 720px;
}

#blog_post .blog_post_comments_hr {
    display: none;
}
#blog_post .blog_post_footer_hr {
    margin: 30px 0 10px 0;
}

#blog_post .blog_post_footer_section {
    margin-bottom: 20px;
}

#blog_post_permalink {
    word-break: break-all;
}

/* --- blog Post Comments --- */
#blog_post_comments_section {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0px;
}

.blog_post_comments_header {
    padding:8px 15px;
}

h2#comments {
    font-size:18px;
}

#blog_post_comments_section .blog_post_comment_post_container {
    border: 0;
    background: rgba(0,0,0,.05);
    padding:30px 15px;
}

#blog_post_comments_section .blog_post_comment_new_comment_actions {
    text-align: left;
    margin-top: 15px;
}

.blog_post_tag_header {
    font-size: 14px;
}

/* -- blog Element Styles -- */

.blog_post_listing_element {
    margin-bottom: 30px;
}

.blog_post_listing_element h1.blog_post_listing_title, .blog_post_listing_element h1.blog_post_listing_title a {
    font-family: 'Open Sans', Helvetica, arial, sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: .5em;
}

.blog_post_listing_element .feature_blog_image {
    float: left;
    margin-right: 20px;
}    

.blog_post_listing_element .feature_blog_image img {
    padding: 0;
    border: 0;
}

.blog_post_listing_element .blog_post_listing_footer_hr {
    display: none;
}

.read_more_div a{
    display: inline-block;
    background: #424242;
    padding: 5px 10px;
    border:0px solid transparent;
    color: #fff;
    font-size: 14px !important;
    margin-top: 10px;
    text-decoration: none;
}

@media all and (max-width: 768px) {
    .blog_post_listing_element .feature_blog_image {
        float: none;
    }
}

/* -- Mobile Only Theme Styles -- */
@media all and (max-width: 768px) {
    .mobile-center {
        text-align: center !important; /* needs important incase Aurora advanced tab align setting differs */
        margin: auto;
    }
    .mobile-hide {
        display: none !important; /* needs important incase Aurora advanced tab align setting differs */
    }
}


/* --------- End Theme Styles --------- */

/* Extra Modular Grid/Layout Styles */

.no-gutter-left {
    padding-left:0;
}

/* ---- General Classes ---- */

.padding-10 {
    padding:10px;
}

.padding-15 {
    padding:15px;
}

.padding-20 {
    padding:20px;
}

.width-50per {
    width: 50%;
}

.width-75per {
    width: 75%;
}

.center-all {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
}

.text-shadow-dark {
    text-shadow: 0px 1px 1px rgba(0,0,0,.4);
}

.text-shadow-light {
    text-shadow: 0px 1px 1px rgba(255,255,255,.4);
}

.img-frame img,img.img-frame,.video-frame iframe{
    padding: 4px;
    border: 1px solid rgba(0,0,0,.08);
    background: transparent;
    transition: all .2s ease;
}

.img-frame img:hover,img.img-frame:hover,.video-frame iframe:hover{
    padding: 4px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.08);

}

.img-frame.img-zoom{
    overflow:hidden;
}

.img-zoom img {
    transition: all .2s ease;
}

.img-zoom img:hover {
    transform: scale(1.2);

}

.list-inline ul{
    list-style: none;
    padding: 0 0 0 5px;
    margin: 0;
}

.list-inline ul li{
    display: inline;
    padding: 0;
    margin: 0 10px 0 0;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters[class^="col-"],
.no-gutters[class*=" col-"]{
  padding-right: 0;
  padding-left: 0;
}
.row-same-height {
    display:table;
}
.row-same-height [class^="col-"],
.row-same-height [class*="col-"]{
    display: table-cell;
    float: none;
    vertical-align: top;
    padding: 0 15px;
}

.row-same-height.sh-va-middle [class^="col-"],
.row-same-height.sh-va-middle [class*="col-"]{
    vertical-align: middle;
}


@media all and (max-width: 768px) {
    .row-same-height {
        display:block;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        float:left;
    }
    
}

.force-width img {
    width: 100%;
    height: auto;
}

/* ------- System fixes (These should be added to Aurora and not done in the template) ---- */
#auroraContentContainer {
	min-width:100%;
	position: relative;
	top: 0px;
}

.le-logged-in #auroraContentContainer {
	top: 40px;
}

.le_region_name {
    font-family: 'Helvetica', arial, sans-serif !important;
    font-weight: normal !important;
}

.le_region_overlay_container {
    margin-top:0;
}

/* -- Search Results Page -- */
.search_result {
  clear: both;
}
/* -- Search Element -- */
#search_form_value {
    padding: 7px 5px 6px 5px;
}

/* ------- End System fixes (These should be added to Aurora and not done in the template) ---- */

/* --- Dark BG compensations --- */
#login label {
    color: #777;
}


/* ========================================== Theme Speficic UI Styles ========================================== */
.expander {
    visibility: hidden;
    position: fixed;
    z-index: 1001;
    top:40px;
    left:0;
    width: 0;
    height: 0;
    overflow: hidden;
    line-height: 26px;
    text-align: center;
    background: #537fbc;
    color: white;
    cursor: pointer;
    border-radius: 0 0 2px 0;
    transition: left .2s ease;
}
.expander:hover {
    background: #3e63b8;
}

.le-edit-open .expander,
.le-design-open .expander{
    left: 200px;
    visibility: visible;
    width: 26px;
    height: 26px;
}

.expander:before {
    display: block;
    font-family: "FontAwesome";
    content: '\f065';
    transform: rotate(90deg);
}
.expanded-view .expander {
    left:0;
}
.expanded-view .expander:before {
    content: '\f066';
}

/* --- Expanded View Toggles --- */
.aurora_side_bar_title {
    transition: left .2s ease;
}

.le-edit-open.expanded-view .aurora_side_bar_title,
.le-design-open.expanded-view .aurora_side_bar_title {
    position: relative;
    opacity:0;
    left: -200px;
}

.le-edit-open.expanded-view .showSB,
.le-design-open.expanded-view .showSB {
    opacity:0;
    left: -200px !important;
}

.le-edit-open.expanded-view #auroraContentContainer,
.le-design-open.expanded-view #auroraContentContainer{
    left: 0;
}

@media (min-width: 769px) {
    .le-edit-open.expanded-view .wrapper-inner, .le-design-open.expanded-view .wrapper-inner {
        padding-left: 0;
    }
    .le-edit-open.expanded-view #primaryMenu.se_menu, .le-design-open.expanded-view #primaryMenu.se_menu {
        left: 0;
    }
}


/* --- Helper Instructions when in edit mode --- */

.edit-instructions {
    display: none;
}

.le-edit-open .edit-instructions {
    display: block;
    clear: both;
    padding: 10px;
    border-radius: 2px;
    background: rgba(199,232,42,.2);
}
.le-edit-open .edit-instructions a{ 
    text-decoration: underline;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
#le_equipment-types {
}
#le_footer {
    margin-top: 0px;
    padding-top: px;
    padding-bottom: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 12px;
}
#le_footerMid {
}
#le_footerRight {
}
#le_header-right {
}
#le_section-one-content2 {
    background-color: rgb(243, 176, 79);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_About #le_headerContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/inside-2.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_About #le_section-four {
    background-color: rgb(153, 153, 153);
}
.aurora_About #le_section-one {
    background-color: rgb(123, 126, 129);
}
.aurora_About #le_section-three {
    background-color: rgb(153, 153, 153);
    padding-top: 35px;
    padding-bottom: 25px;
}
.aurora_About #le_section-two {
    background-color: rgb(255, 255, 255);
}
.aurora_About #le_section-two-area1 {
    background-color: rgb(123, 126, 129);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_About #le_section-two-area4 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.aurora_About #le_section-two-area5 {
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
}
.aurora_about-me #le_headerRegion {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/blog-thumb-coffee.jpg);
}
.aurora_appointments #le_headerContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/exercise-86200_1920.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_appointments #le_section-one {
    background-color: rgb(81, 80, 80);
}
.aurora_appointments #le_section-one-content1 {
    background-color: rgb(81, 80, 80);
    padding-top: px;
    padding-bottom: px;
}
.aurora_appointments #le_section-three {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.aurora_appointments #le_section-two-area1 {
    background-color: rgb(81, 80, 80);
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: px;
}
.aurora_contact #le_feature {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: px;
}
.aurora_contact #le_feature-content1 {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.aurora_contact #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/contact-feature.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 50px;
}
.aurora_contact #le_headerContainer {
    background-size: cover;
    padding-top: px;
    padding-bottom: px;
}
.aurora_contact #le_section-four {
    padding-top: px;
    padding-bottom: 15px;
}
.aurora_contact #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/healthclubmmp/cco-images/inside-1.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 140px;
    padding-bottom: 140px;
}
.aurora_contact #le_section-two {
    background-color: rgb(0, 0, 0);
    padding-top: 0px;
    padding-bottom: px;
}
.aurora_contact #le_section-two-area1 {
    background-color: rgb(0, 0, 0);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_contact-us #le_headerContainer {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_contact-us #le_section-four-area7 {
    padding-bottom: 15px;
}
.aurora_contact-us #le_section-one {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_contact-us #le_section-three {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_contact-us #le_section-two {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_contact-us #le_section-two-area1 {
    padding-top: 25px;
    padding-right: 40px;
    padding-bottom: 25px;
    padding-left: 40px;
    color: rgb(0, 0, 0);
}
.aurora_CuttersChoppers #le_section-one {
    margin-top: px;
    margin-bottom: 40px;
}
.aurora_CuttersChoppers #le_section-one-content1 {
}
.aurora_FAQandInformation #le_section-one-content6 {
    background-color: rgb(211, 211, 211);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    color: rgb(0, 0, 0);
}
.aurora_features #le_feature {
    text-align: center;
    color: rgb(255, 255, 255);
}
.aurora_features #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 50px;
}
.aurora_features #le_headerRegion {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_features #le_section-four {
    background-color: rgb(70, 70, 70);
    padding-bottom: 40px;
}
.aurora_features #le_section-four-area1 {
    background-color: rgb(255, 255, 255);
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}
.aurora_features #le_section-four-area2 {
    padding-bottom: 40px;
    font-weight: normal;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 60px;
}
.aurora_features #le_section-four-area3 {
    padding-bottom: 40px;
    font-weight: normal;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 60px;
}
.aurora_features #le_section-four-area4 {
    font-weight: normal;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 60px;
}
.aurora_features #le_section-four-area5 {
    font-weight: normal;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 60px;
}
.aurora_features #le_section-four-area6 {
    color: rgb(255, 255, 255);
    font-size: px;
    line-height: px;
}
.aurora_features #le_section-four-area7 {
    color: rgb(255, 255, 255);
    font-size: px;
    line-height: px;
}
.aurora_features #le_section-one {
    background-color: rgb(237, 237, 237);
    padding-top: 40px;
    padding-bottom: 50px;
}
.aurora_features #le_section-one-content1 {
    font-size: px;
}
.aurora_features #le_section-one-content4 {
    padding-top: 60px;
}
.aurora_features #le_section-one-content7 {
    padding-top: 40px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
}
.aurora_features #le_section-one-content8 {
    background-color: rgb(0, 0, 0);
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    color: rgb(70, 70, 70);
    font-size: 24px;
}
.aurora_features #le_section-one-content9 {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    color: rgb(255, 255, 255);
    font-size: 24px;
}
.aurora_features #le_section-three {
    background-color: rgb(237, 237, 237);
    padding-top: 40px;
    padding-bottom: 40px;
}
.aurora_features #le_section-two-area1 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}
.aurora_features #le_section-two-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 40px;
}
.aurora_features #le_section-two-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/relax-569318_1280.jpg);
    background-size: cover;
    background-position: bottom center;
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 40px;
}
.aurora_features #le_section-two-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/photo-1414073875831-b47709631146.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.aurora_features #le_section-two-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/de9uL9L7RSmzV4SAoAO5_Lauren-and-Winona-Under-a-pass-1.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.aurora_features #le_section-two-area6 {
    background-color: rgb(230, 225, 218);
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    font-size: 24px;
}
.aurora_features #le_section-two-area7 {
    background-color: rgb(237, 234, 229);
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    font-size: 24px;
}
.aurora_features #le_section-two-area8 {
    background-color: rgb(230, 225, 218);
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center;
    font-size: 24px;
}
.aurora_features #le_section-two-area9 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}
.aurora_features #le_section1 {
    background-color: rgb(237, 237, 237);
    margin-top: px;
    padding-top: 40px;
    padding-bottom: 50px;
}
.aurora_features #le_section1-content 4 {
    padding-top: 60px;
}
.aurora_features-copy #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-color: rgb(0, 0, 0);
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 50px;
}
.aurora_features-copy #le_headerRegion {
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_featureContainer {
    margin-top: 0px;
}
.aurora_home #le_headerContainer {
}
.aurora_home #le_masthead {
    background-color: rgba(0, 0, 0, 0.5);
}
.aurora_home #le_masthead-region {
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 30px;
    padding-bottom: 20px;
}
.aurora_home #le_masthead-right {
    color: rgb(255, 255, 255);
}
.aurora_home #le_menu-region {
}
.aurora_home #le_sec2 1 Con {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_sec2 Con 1 {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_sec2 Con 1 A {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_sec2 X 1 {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_sec2-1 Con {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_sectio-five {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/mmp1/section5-image.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
.aurora_home #le_section-five {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/mmp1/photo-1421757381940-5d269570b21c-1440.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding-top: px;
    padding-bottom: px;
}
.aurora_home #le_section-five-area1 {
    padding-top: 180px;
    padding-bottom: 180px;
    font-size: px;
}
.aurora_home #le_section-four {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-four-area1 {
    padding-bottom: 25px;
}
.aurora_home #le_section-four-area2 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-four-area3 {
    color: rgb(255, 255, 255);
}
.aurora_home #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/gohmannsupply/smokehouse.jpg);
    background-size: cover;
    background-position: center center;
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: 40px;
    padding-right: px;
    padding-bottom: 40px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-one-area1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: 30px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-one-area2 {
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_home #le_section-one-content {
    background-color: rgb(0, 166, 81);
    color: rgb(255, 255, 255);
}
.aurora_home #le_section-six {
    background-color: rgb(245, 245, 245);
    padding-top: 90px;
    padding-bottom: 90px;
}
.aurora_home #le_section-three {
    background-size: cover;
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: 70px;
    padding-right: px;
    padding-bottom: 40px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-three-area1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-three-area2 {
    background-color: rgb(214, 214, 214);
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-three-area3 {
    padding-top: 30px;
    padding-bottom: px;
    text-align: center;
}
.aurora_home #le_section-two {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area2 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area3 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area4 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area5 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section-two-area6 {
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
}
.aurora_home #le_section-two-row1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_home #le_section2-1 {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_section2-content 1 {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_section2_content {
    background-color: rgb(230, 225, 218);
}
.aurora_home #le_section2_content 1 {
    background-color: rgb(230, 225, 218);
}
.aurora_HomeProcessor #le_section-one-content3 {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_meet-the-team #le_feature-content1 {
    background-color: rgb(0, 0, 0);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
}
.aurora_meet-the-team #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/bw-team-header.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 250px;
}
.aurora_meet-the-team #le_headerRegion {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/bw-team-header.jpg);
    background-size: cover;
}
.aurora_meet-the-team #le_section-three {
    background-color: rgb(245, 245, 245);
    padding-top: 90px;
    padding-bottom: 90px;
}
.aurora_meet-the-team #le_section-three-area1 {
    text-align: center;
}
.aurora_meet-the-team #le_section-three-area2 {
    background-color: rgb(255, 255, 255);
    padding-top: 20px;
    text-align: center;
    line-height: 24px;
}
.aurora_meet-the-team #le_section-three-area3 {
    background-color: rgb(255, 255, 255);
    padding-top: 20px;
    text-align: center;
    line-height: 24px;
}
.aurora_meet-the-team #le_section-three-area4 {
    background-color: rgb(255, 255, 255);
    padding-top: 20px;
    text-align: center;
    line-height: 24px;
}
.aurora_meet-the-team #le_section1 {
    padding-top: px;
    padding-bottom: px;
}
.aurora_my-training #le_feature {
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 250px;
    padding-bottom: 50px;
    text-align: center;
    color: rgb(255, 255, 255);
}
.aurora_my-training #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: px;
}
.aurora_my-training #le_header {
    border-width: px;
}
.aurora_NewEquipement #le_section-one-content1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_NewEquipement #le_section-one-content2 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_NewEquipement #le_section-three {
    padding-top: 30px;
    padding-bottom: 30px;
}
.aurora_NewEquipement #le_section-three-area3 {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    color: rgb(0, 0, 0);
}
.aurora_NewEquipement #le_section-three-area4 {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_our-team #le_headerContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-3.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_our-team #le_section-one {
    background-color: rgb(81, 80, 80);
}
.aurora_our-team #le_section-two-area1 {
    background-color: rgb(81, 80, 80);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_our-team #le_section-two-area9 {
    padding-top: 25px;
    padding-right: 40px;
    padding-bottom: 25px;
    padding-left: 40px;
}
.aurora_Pre-OwnedEquipment #le_primary-area1 {
}
.aurora_Pre-OwnedEquipment #le_section-one {
    margin-top: px;
    margin-bottom: 30px;
}
.aurora_Pre-OwnedEquipment #le_section-one-content1 {
    border-width: px;
    border-radius: px;
    margin-top: px;
    margin-right: px;
    margin-bottom: px;
    margin-left: px;
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    font-size: px;
    line-height: px;
}
.aurora_Pre-OwnedEquipment #le_section-one-content2 {
    background-color: rgb(244, 182, 91);
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_requestquotethanks #le_section-one {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_requestquotethanks #le_section-one-content2-2 {
    background-color: rgb(245, 181, 97);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    color: rgb(0, 0, 0);
}
.aurora_schedule #le_headerContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-1.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_schedule #le_section-one {
    background-color: rgb(81, 80, 80);
}
.aurora_schedule #le_section-two {
}
.aurora_schedule #le_section-two-area1 {
    background-color: rgb(81, 80, 80);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_serivices #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/home-feature2.jpg);
    background-color: rgb(0, 0, 0);
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 50px;
}
.aurora_services #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/healthclubmmp/cco-images/inside-2.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_services #le_section-one-area1 {
}
.aurora_services #le_section-one-area2 {
    font-style: italic;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.aurora_services #le_section-one-area3 {
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: px;
}
.aurora_services #le_section-three {
    padding-bottom: 30px;
}
.aurora_services #le_section-three-area1 {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
}
.aurora_services #le_section-three-area5 {
    background-color: rgb(230, 225, 218);
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    color: rgb(255, 255, 255);
}
.aurora_services #le_section-two {
    background-color: rgb(230, 225, 218);
    padding-top: 25px;
    padding-bottom: px;
}
.aurora_services #le_section-two-area1 {
    background-color: rgb(0, 0, 0);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_services #le_section-two-area2 {
    background-color: rgb(230, 225, 218);
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 15px;
}
.aurora_services #le_section-two-area3 {
    background-color: rgb(230, 225, 218);
    padding-top: px;
    padding-right: px;
    padding-bottom: px;
    padding-left: px;
    text-align: center;
    font-size: 16px;
}
.aurora_services #le_section-two-area4 {
    background-color: rgb(230, 225, 218);
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    text-align: center;
    font-size: 16px;
}
.aurora_services #le_section-two-area5 {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    font-size: 14px;
}
.aurora_site-features #le_section-one-content8 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/fitness-375472_1920.jpg);
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_site-features #le_section-one-content9 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/weights.jpg);
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_site-features #le_section-three-area2 {
    background-color: rgb(153, 153, 153);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_site-features #le_section-three-area3 {
    background-color: rgb(153, 153, 153);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_site-features #le_section-three-area4 {
    background-color: rgb(153, 153, 153);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_site-features #le_section-two-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/fitness-719539_1920.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_site-features #le_section-two-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/inside-2.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_site-features #le_section-two-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/gym-595597_1920.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_site-features #le_section-two-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/inside-1.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_site-features #le_section-two-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-1.jpg);
    padding-top: 125px;
    padding-right: px;
    padding-bottom: 125px;
    padding-left: px;
}
.aurora_site-features #le_section-two-area7 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-2.jpg);
    padding-top: 125px;
    padding-right: px;
    padding-bottom: 125px;
    padding-left: px;
}
.aurora_site-features #le_section-two-area8 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-3.jpg);
    padding-top: 125px;
    padding-right: px;
    padding-bottom: 125px;
    padding-left: px;
}
.aurora_Supplies #le_section-one-content6 {
    text-align: center;
}
.aurora_Supplies #le_section-one-content9 {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    text-align: center;
    color: rgb(0, 0, 0);
}
.aurora_template-features #le_section-one-content1 {
    color: rgb(255, 255, 255);
}
.aurora_template-features #le_section-one-content2 {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_template-features #le_section-one-content8 {
    background-color: rgb(70, 70, 70);
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_template-features #le_section-one-content9 {
    background-color: rgb(255, 255, 255);
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_template-features #le_section-three-area2 {
    background-color: rgb(230, 225, 218);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
}
.aurora_template-features #le_section-three-area3 {
    background-color: rgb(230, 225, 218);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
}
.aurora_template-features #le_section-three-area4 {
    background-color: rgb(230, 225, 218);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
}
.aurora_template-features #le_section-two-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/media/img-feature2.jpg);
    background-size: cover;
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    color: rgb(255, 255, 255);
    font-size: 24px;
}
.aurora_template-features #le_section-two-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/media/img-feature1.jpg);
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    color: rgb(255, 255, 255);
    font-size: 24px;
}
.aurora_template-features #le_section-two-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/blueflowers.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-right: 10px;
    padding-bottom: 125px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
.aurora_template-features #le_section-two-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/pine-leaves-691639_1280.jpg);
    background-size: cover;
    padding-top: 125px;
    padding-right: 10px;
    padding-bottom: 125px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
.aurora_template-features #le_section-two-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/dragonfly.jpg);
    background-size: cover;
    padding-top: 50px;
    padding-right: 10px;
    padding-bottom: 50px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 18px;
}
.aurora_template-features #le_section-two-area7 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/ferns.jpg);
    padding-top: 50px;
    padding-right: 10px;
    padding-bottom: 50px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 18px;
}
.aurora_template-features #le_section-two-area8 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/dandelion.jpg);
    background-size: cover;
    padding-top: 50px;
    padding-right: 10px;
    padding-bottom: 50px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 18px;
}
.aurora_test #le_feature {
    text-align: center;
    color: rgb(255, 255, 0);
    font-size: 50px;
}
.aurora_test #le_featureContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/contact-feature.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 50px;
}
.aurora_test-1 #le_headerRegion {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/media/bw-team-header.jpg);
    background-color: rgb(255, 255, 255);
    background-size: cover;
    background-position: center left;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.05);
    border-width: 1px;
    padding-top: 20px;
    padding-bottom: 90px;
    text-align: center;
    line-height: 24px;
}
.aurora_test-1 #le_section-four {
    background-color: rgb(121, 0, 0);
}
.aurora_test-1 #le_section-four-area1 {
}
.aurora_test-1 #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/template-test---alex/IMG_0888.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
.aurora_test-1 #le_section-one-content3 {
    background-color: rgba(0, 0, 0, 0.39);
}
.aurora_test-1 #le_section-three {
}
.aurora_test-1 #le_section-two {
    background-color: rgb(230, 225, 218);
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.05);
    border-width: 1px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.aurora_test-1 #le_section-two-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/template-test---alex/IMG_1314/IMG_1314_1500x1000.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: none;
    background-position: center center;
}
.aurora_test-1 #le_section-two-area7 {
    border-style: solid;
    border-color: rgb(75, 0, 130);
}
.aurora_test-2---page-with-feature-header #le_feature-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt1/template-test---alex/IMG_1763/IMG_1763_1471x980.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_test-2---page-with-feature-header #le_featureContainer {
    background-color: rgb(230, 225, 218);
}
.aurora_thanks #le_section-one {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_thanks #le_section-one-content2-2 {
    background-color: rgb(245, 181, 97);
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}
.aurora_WhatsNew #le_section-one {
}
.aurora_WhatsNew #le_section-three {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/gohmannsupply/smokehouse.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
}
.aurora_workshops #le_headerContainer {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/vibemb/cco-images/cta-2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_workshops #le_section-one {
    background-color: rgb(81, 80, 80);
}
.aurora_workshops #le_section-two-area1 {
    background-color: rgb(81, 80, 80);
    padding-top: 25px;
    padding-bottom: 25px;
}
.aurora_workshops #le_section-two-area9 {
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 40px;
}
.navicon {
    color: rgb(255, 255, 255);
}
.seFormButton {
    background-color: rgb(212, 0, 13);
    color: rgb(255, 255, 255);
}
.se_body,.se_bgColor_thumb,.se_bgImg_thumb {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/gohmannsupply/vertical-gradient3.png);
    background-color: rgb(36, 37, 37);
    background-repeat: repeat-x;
    background-position: top center;
}
.se_button a, a.se_button {
    background-color: rgb(212, 0, 13);
    color: rgb(255, 255, 255);
    font-size: 18px;
    border-color: rgb(90, 94, 97);
    border-width: 0px;
}
.se_button a:hover, a.se_button:hover {
    background-color: rgb(161, 5, 22);
    border-color: rgb(123, 126, 129);
}
.se_cta {
    background-color: rgb(255, 94, 0);
    border-color: rgb(184, 48, 4);
}
.se_cta .le_content a {
}
.se_cta .le_content a:hover {
}
.se_cta .le_content, .se_cta .le_content a {
}
.se_cta:hover {
    border-color: rgb(255, 255, 255);
}
.se_footer {
    background-color: rgb(161, 5, 22);
}
.se_footer a {
}
.se_footer a:hover {
}
.se_footer p, .se_footer h1, .se_footer h2, .se_footer h3, .se_footer h4, .se_footer h5, .se_footer  {
}
.se_header {
    background-color: rgb(0, 0, 0);
}
.se_header a {
}
.se_header a:hover {
}
.se_header p, .se_header h1, .se_header h2, .se_header h3, .se_header h4, .se_header h5, .se_header  {
}
.se_mainContent {
}
.se_menu {
    background-color: rgb(232, 232, 232);
}
.se_menu .le_menu_level_1_container, .se_menu ul.le_menu_level_2 {
    background-color: rgb(232, 232, 232);
}
.se_menu li.le_menuitem_level_0 a,.navicon {
    color: rgb(36, 37, 37);
    background-color: rgb(232, 232, 232);
}
.se_menu li.le_menuitem_level_0 a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(252, 13, 28);
}
.se_menu li.le_menuitem_level_1 a {
    color: rgb(81, 80, 80);
}
.se_menu li.le_menuitem_level_1 a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(252, 13, 28);
}
.se_siteBranding a {
    font-size: 40px;
    color: rgb(0, 166, 81);
    font-weight: normal;
}
.se_siteBranding:hover, .se_siteBranding a:hover {
}
.se_social a {
    color: rgb(255, 94, 0);
    font-size: 30px;
}
.se_social a:hover {
    color: rgb(184, 48, 4);
}
.se_tagline {
    color: rgb(255, 255, 255);
}
.se_wrapperContent a, .se_WrapperContent a, .se_mainContent a {
}
.se_wrapperContent a:hover, .se_WrapperContent a:hover,.se_mainContent a:hover {
}
.se_wrapperContent, .se_WrapperContent, .se_mainContent .le_content, .se_mainContent p, .se_mainCont {
}
a {
    color: rgb(252, 13, 28);
}
a:hover {
    color: rgb(212, 0, 13);
}
blockquote {
    font-family: 'Playfair Display';
    font-size: 22px;
    font-style: italic;
}
h1, h1 a, .title1, .title1 a {
    font-family: 'Roboto Slab';
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}
h2, h2 a, .title2, .title2 a {
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: rgb(255, 255, 255);
}
h3, h3 a, .title3, .title3 a {
    font-size: 18px;
    color: rgb(255, 255, 255);
}
h4, h4 a, .title4, .title4 a {
    color: rgb(255, 255, 255);
}
h5, h5 a, .title5, .title5 a {
    font-size: 15px;
}
h6, h6 a, .title6, .title6 a {
}
hr {
    background-color: rgb(255, 255, 255);
}
p, ul, ol, dl {
    font-family: 'Source Sans Pro';
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.5;
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */

/*-------------- Account Preset [Mobile] End----------------- */
/*-------------- Account Preset End ----------------- */
