/* Global Style */

/* -------------------------------- 
Import Fonts
-------------------------------- */
@import url('fonts.css');
@import url('simple-line-icons.css');
@import url('linear-icons.css');

/* -------------------------------- 
Primary Styles
-------------------------------- */
html { 
  font-size: 62.5%;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  text-rendering: optimizelegibility !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f9f9f9;
}
body { 
  text-rendering: optimizelegibility !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff !important;
  overflow-y: scroll;
  overflow-x: hidden !important;
}

@media screen and (min-width:1170px) {
	body { 
	  background-color: #454545 !important;
	}	
}

::selection { background:#ed1c24; color:#ffffff; }
::-moz-selection { background:#ed1c24; color:#ffffff; }

.rf-main-content .no-transform { text-transform: none; }

.clearfix { clear: both; }
.h5 { height: 5px; width: 100%; }
.h10 { height: 10px; width: 100%; }
.h15 { height: 15px; width: 100%; }
.h20 { height: 20px; width: 100%; }
.h25 { height: 25px; width: 100%; }
.h30 { height: 30px; width: 100%; }
.h35 { height: 35px; width: 100%; }
.h40 { height: 40px; width: 100%; }
.h45 { height: 45px; width: 100%; }
.h50 { height: 50px; width: 100%; }
.hr { border-top: 1px solid rgba(0, 0, 0, 0.2); }
.break { border-top: 1px solid rgba(0, 0, 0, 0.2); }

/* global text colors */
.text-pink { color: #eb3893 !important; }
.text-pink:hover { color: #eb3893 !important; }
.text-white { color: #fff !important; }
.text-white:hover { color: #fff !important; }

/* global background colors */
.bg-black { background-color: #000 !important; }
.bg-white { background-color: #fff !important; }
.bg-grey { background-color: #1e1e1e !important; }
.bg-lt-grey { background-color: #f3f4f5 !important; }
.bg-red { background-color: #ed1c24 !important; }

@media screen and (max-width:640px) {
	.hide-xs { display: none !important; }
}
@media screen and (min-width:768px) and (max-width:1169px) {
	.hide-sm { display: none !important; }
}
@media screen and (min-width:1200px) and (max-width:1366px) {
	.hide-md { display: none !important; }
}
@media screen and (min-width:1400px) {
	.hide-lg { display: none !important; }
}

.shout,
.shout > b {
	font-family: 'Mark Pro Bold', Arial, sans-serif;
}
.shout::after {
	font-family: "FontAwesome";
	font-size: 14px;
	content: "\f0da";
	margin: 0 6px;
	vertical-align: middle;
}
img { max-width: 100% !important; }

a.tipsy { 
	cursor:pointer;
	width: 14px;
	height: 14px;
	margin-left: 5px;
	margin-bottom: 2px;
	vertical-align: middle;
	display: inline-block;
	background-image: url('../images/icon_q.svg');
	background-repeat: no-repeat;
	background-size: contain !important;
	text-decoration: none;
}
.tooltipsy {
	padding: 10px;
	max-width: 200px;
	font: 13px 'Mark Pro Light', Arial, sans-serif;
	color: #ffffff;
	background: #1e1e1e;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing:grayscale;
}

/* Scroll to top */
#scrollUp {
    background-image: url('../images/top.png');
	background-size: contain;
    bottom: 20px;
    right: 20px;
    width: 30px;    /* Width of image */
    height: 30px;   /* Height of image */
	outline: none;
}
@media screen and (max-width:640px){
	#scrollUp {
		bottom: 10px;
    	right: 10px;
		width: 25px;    /* Width fix */
		height: 25px;   /* Height fix */
	}	
}
@media screen and (min-width:768px) and (max-width:1169px){
	#scrollUp {
		width: 27px;    /* Width fix */
		height: 27px;   /* Height fix */
	}	
}

/* In-House Banner Transition */
.fadeIn{
  -webkit-animation: fade-in 0.5s ease;
  -moz-animation: fade-in ease-in-out 0.5s both;
  -ms-animation: fade-in ease-in-out 0.5s both;
  -o-animation: fade-in ease-in-out 0.5s both;
  animation: fade-in 0.5s ease;
  visibility: visible;
  -webkit-backface-visibility: hidden;
}
 
@-webkit-keyframes fade-in{
	 0%{opacity:0.25;} 5%{opacity:0.05;} 10%{opacity:0.1;} 15%{opacity:0.15;} 20%{opacity:0.2;} 25%{opacity:0.25;} 
	 30%{opacity:0.3;} 35%{opacity:0.35;} 40%{opacity:0.4;} 45%{opacity:0.45;} 50%{opacity:0.5;} 55%{opacity:0.55;} 
	 60%{opacity:0.6;} 65%{opacity:0.65;} 70%{opacity:0.7;} 75%{opacity:0.75;} 80%{opacity:0.8;} 85%{opacity:0.85;} 
	 90%{opacity:0.9;} 95%{opacity:0.95;} 100%{opacity:1;}
}
@-moz-keyframes fade-in{
	 0%{opacity:0.25;} 5%{opacity:0.05;} 10%{opacity:0.1;} 15%{opacity:0.15;} 20%{opacity:0.2;} 25%{opacity:0.25;} 
	 30%{opacity:0.3;} 35%{opacity:0.35;} 40%{opacity:0.4;} 45%{opacity:0.45;} 50%{opacity:0.5;} 55%{opacity:0.55;} 
	 60%{opacity:0.6;} 65%{opacity:0.65;} 70%{opacity:0.7;} 75%{opacity:0.75;} 80%{opacity:0.8;} 85%{opacity:0.85;} 
	 90%{opacity:0.9;} 95%{opacity:0.95;} 100%{opacity:1;}
}
@-o-keyframes fade-in{
	 0%{opacity:0.25;} 5%{opacity:0.05;} 10%{opacity:0.1;} 15%{opacity:0.15;} 20%{opacity:0.2;} 25%{opacity:0.25;} 
	 30%{opacity:0.3;} 35%{opacity:0.35;} 40%{opacity:0.4;} 45%{opacity:0.45;} 50%{opacity:0.5;} 55%{opacity:0.55;} 
	 60%{opacity:0.6;} 65%{opacity:0.65;} 70%{opacity:0.7;} 75%{opacity:0.75;} 80%{opacity:0.8;} 85%{opacity:0.85;} 
	 90%{opacity:0.9;} 95%{opacity:0.95;} 100%{opacity:1;}
}
@keyframes fade-in{
	 0%{opacity:0.25;} 5%{opacity:0.05;} 10%{opacity:0.1;} 15%{opacity:0.15;} 20%{opacity:0.2;} 25%{opacity:0.25;} 
	 30%{opacity:0.3;} 35%{opacity:0.35;} 40%{opacity:0.4;} 45%{opacity:0.45;} 50%{opacity:0.5;} 55%{opacity:0.55;} 
	 60%{opacity:0.6;} 65%{opacity:0.65;} 70%{opacity:0.7;} 75%{opacity:0.75;} 80%{opacity:0.8;} 85%{opacity:0.85;} 
	 90%{opacity:0.9;} 95%{opacity:0.95;} 100%{opacity:1;}
}

.rf-main-content {
  /* adjust view of main content */
  padding: 0 !important;
  box-shadow: none;
}
.rf-main-content.sr-display {
  /* fix for search results display */
  padding: 0 !important;
  box-shadow: none;
}
@media screen and (min-width:1170px) {
	.rf-main-content {
	  box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
	}
	.rf-main-content.sr-display {
	  box-shadow: 0 0 150px rgba(0, 0, 0, 0.25);
	}	
}

@media screen and (max-width:1169px){
	.rf-main-content {
	  padding: 0 !important;
	  background-color: #f9f9f9;
	}
	.rf-main-content.sr-display {
	  /* fix for search results display */
	  padding: 0 !important;
	}
	a.tipsy {
	  cursor:pointer;
	  width: 12px;
	  height: 12px;
	  margin-bottom: 4px;
	}
}

@media screen and (min-width:768px) and (max-width:1169px){
	.rf-main-content {
	  padding: 50px 0 0 0 !important;
	  background-color: #f9f9f9;
	}
	.rf-main-content.sr-display {
	  /* fix for search results display */
	  padding: 10px 0 0 0 !important;
	}
}

/* FORMS */
.boltforms-row label {
	display: none !important;
}

/*----- Validation ----- */
input[type='text'].focus,
input[type='password'].focus,
input[type='number'].focus,
input[type='email'].focus,
input[type='url'].focus,
textarea.focus,
select.focus
{ 
	border-color: #000; 
}
input[type='text'].inactive,
input[type='number'].inactive,
input[type='email'].inactive,
input[type='url'].inactive,
textarea.inactive,
select.inactive,
option.inactive
{
	color: #999;
	font-style: italic;
}
input[type='text'].invalid,
input[type='password'].invalid,
input[type='number'].invalid,
input[type='email'].invalid,
input[type='url'].invalid, 
textarea.invalid, select.invalid
{
	border: 2px solid #ed1c24 !important;
}

span.checkbox-container {
	border: 1px solid transparent;
	display: block;
	width: 17px;
	height: 17px;
	padding: 0;
	margin: 3px 6px 20px 0;
	float: left;
}
span.checkbox-container.invalid {
	border: 2px solid #ed1c24 !important;
}

select.inactive option {
	color: #000;
	font-style: normal;
}
select option.inactive,
select.inactive option.inactive {
	color: #999;
	font-style: italic;
}

@media screen and (max-width:640px) {
	span.checkbox-container {
		margin-bottom: 50px;
	}
}

/*----- Store ----- */
.rf-main-content .main-body-wide .centerColumn .information {
  text-transform: none;
  font: 15px 'Mark Pro Light', Arial, sans-serif;
  color: #000000;
  padding: 0;
}

.rf-main-content .main-body-wide .centerColumn form,
.rf-main-content .main-body-wide .centerColumn select,
.rf-main-content .main-body-wide .centerColumn input,
.rf-main-content .main-body-wide .centerColumn textarea {
  margin: 5px 0;
  padding: 4px 12px;
  background: #ffffff;
  line-height: 15px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font: 15px 'Mark Pro Light', Arial, sans-serif;
  text-transform: capitalize;
}
.rf-main-content .main-body-wide .centerColumn textarea#enquiry {
  margin: 5px 0 !important;
  text-transform: none !important;
  width: 65% !important;
  resize: none !important;
}
.rf-main-content .main-body-wide .centerColumn form {
  border: none;
}
.rf-main-content .main-body-wide .centerColumn input[type=email],
.rf-main-content .main-body-wide .centerColumn input#login-email-address,
.rf-main-content .main-body-wide .centerColumn input#email-address,
.rf-main-content .main-body-wide .centerColumn input[type=password],
.rf-main-content .main-body-wide .centerColumn input#login-password,
.rf-main-content .main-body-wide .centerColumn input#password-new,
.rf-main-content .main-body-wide .centerColumn input#password-confirm {
  text-transform: none !important;
}

.rf-main-content .main-body-wide .centerColumn select,
.rf-main-content .main-body-wide .centerColumn input[type=text],
.rf-main-content .main-body-wide .centerColumn input[type=password] {
  width: 65%;
}
.rf-main-content .main-body-wide .centerColumn select:focus,
.rf-main-content .main-body-wide .centerColumn input[type=text]:focus,
.rf-main-content .main-body-wide .centerColumn input[type=password]:focus {
  outline: none !important;
}

.rf-main-content .main-body-wide .centerColumn select {
  width: 35%;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: #ffffff url('../images/select-arrow.png') no-repeat !important;
  background-position: right !important;
  text-indent: 1px;
  color: #1e1e1e;
}

@media screen and (max-width:640px){
	.rf-main-content .main-body-wide .centerColumn select,
	.rf-main-content .main-body-wide .centerColumn input[type=text],
	.rf-main-content .main-body-wide .centerColumn input[type=password] {
	  width: 91%;
	}
	.rf-main-content .main-body-wide .centerColumn label {
	  font-size: 13px;
	  width: auto;
	}
	.rf-main-content .main-body-wide .centerColumn textarea#enquiry {
	  width: 91% !important;
	}
}

@media screen and (min-width:768px) and (max-width:1169px){
	.rf-main-content .main-body-wide .centerColumn select,
	.rf-main-content .main-body-wide .centerColumn input[type=text],
	.rf-main-content .main-body-wide .centerColumn input[type=password] {
	  width: 80%;
	}
	.rf-main-content .main-body-wide .centerColumn textarea#enquiry {
	  width: 80% !important;
	}
	.rf-main-content .main-body-wide .centerColumn label {
	  font-size: 14px;
	}
}

.rf-main-content .main-body-wide .centerColumn textarea {
  margin: auto;
  display: block;
  width: 80%;
}

.rf-main-content .main-body-wide .centerColumn input:focus,
.rf-main-content .main-body-wide .centerColumn select:focus,
.rf-main-content .main-body-wide .centerColumn textarea:focus {
  background: #ffffff;
  border: 1px solid #b5b5b5;
}

.rf-main-content .main-body-wide .centerColumn input.submit_button {
  float: left;
  cursor: pointer;
  margin-top: 3px;
  padding: 6px 12px;
  background: #ed1c24;
  font-family: 'Mark Pro Bold', Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none; 
  border: 1px solid #ed1c24;
  color: #ffffff;
  -webkit-appearance: none;
  outline: none;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, #ed1c24 50%, #ffffff 50%);
  -webkit-transition: background-position .15s;
  -moz-transition: background-position .15s;
  transition: background-position .15s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rf-main-content .main-body-wide .centerColumn fieldset {
  padding: 0.5em 0;
  margin: 0;
  width: 100%;
}

.rf-main-content .main-body-wide .centerColumn legend {
  padding: 20px 0 10px 0;
  font-family: 'Mark Pro Bold', Arial, sans-serif;
  width: 100%;
  outline: none;
}

.rf-main-content .main-body-wide .centerColumn label,
.rf-main-content .main-body-wide .centerColumn h4.optionName {
  line-height: 1.5em;
  display: inline;
  padding: 0.2em;
  text-transform: capitalize;
}

.rf-main-content .main-body-wide .centerColumn label.checkboxLabel,
.rf-main-content .main-body-wide .centerColumn label.radioButtonLabel {
  margin: 0.5em 0.3em;
  width: auto;
}

/* Content body signup form */
.rf-main-content .main-body .body-signup,
.rf-main-content .main-body-wide .body-signup {
  width: 100%;
  min-height: 200px;
  margin: 0 auto 30px;
  padding: 15px 30px;
  background: #1e1e1e url('../images/rf-content/body_signup_bg.jpg') no-repeat;
  background-size: cover;
}
.rf-main-content .main-body .body-signup .bs-overlay,
.rf-main-content .main-body-wide .body-signup .bs-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  
}
.rf-main-content .main-body .body-signup .lead,
.rf-main-content .main-body-wide .body-signup .lead {
  width: 44%;
  height: auto;
  padding: 15px 0 5px;
  float: left;
}
.rf-main-content .main-body .body-signup .form,
.rf-main-content .main-body-wide .body-signup .form {
  width: 54%;
  height: auto;
  padding: 20px 0 10px;
  float: right;
}
.rf-main-content .main-body .body-signup .lead h1,
.rf-main-content .main-body-wide .body-signup .lead h1 {
  font: 54px/54px 'SSProBlack',Arial,sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}
.rf-main-content .main-body .body-signup .lead h1 > span,
.rf-main-content .main-body-wide .body-signup .lead h1 > span {
  font-family: 'SSPro',Arial,sans-serif;
}
.rf-main-content .main-body .body-signup .form .input-left,
.rf-main-content .main-body .body-signup .form .input-right,
.rf-main-content .main-body-wide .body-signup .form .input-left,
.rf-main-content .main-body-wide .body-signup .form .input-right {
  width: 49%;
  height: auto;
  padding: 0;
}
.rf-main-content .main-body .body-signup .form .input-left,
.rf-main-content .main-body-wide .body-signup .form .input-left { float: left; }
.rf-main-content .main-body .body-signup .form .input-right,
.rf-main-content .main-body-wide .body-signup .form .input-right { float: right; }

.rf-main-content .main-body .body-signup .form input,
.rf-main-content .main-body-wide .body-signup .form input { margin: 5px 0; }
.rf-main-content .main-body .body-signup .form button,
.rf-main-content .main-body-wide .body-signup .form button {
  display: inline-block;
  text-decoration: none; 
  border: 2px solid #ed1c24;
  padding: 6px 15px;
  min-width: 140px;
  text-align: center;
  margin: 5px 0;
  font: 16px 'Mark Pro Bold',Arial,sans-serif;
  line-height: 18px;
  text-transform: uppercase;
  float: left;
  color: #ffffff;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, #ed1c24 50%, #ffffff 50%);
  -webkit-transition: background-position .15s;
  -moz-transition: background-position .15s;
  transition: background-position .15s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rf-main-content .main-body .body-signup .form button:hover,
.rf-main-content .main-body .body-signup .form button:focus,
.rf-main-content .main-body-wide .body-signup .form button:hover,
.rf-main-content .main-body-wide .body-signup .form button:focus {
	background: #ffffff\6;
	background-position: 0 100%;
	color: #ed1c24;
}
.rf-main-content .main-body .body-signup .form #mce-error-response,
.rf-main-content .main-body .body-signup .form #mce-success-response,
.rf-main-content .main-body-wide .body-signup .form #mce-error-response,
.rf-main-content .main-body-wide .body-signup .form #mce-success-response {
    font: 13px 'Mark Pro Bold',Arial,sans-serif !important;
	color: #ffffff !important;
}
.rf-main-content .main-body .body-signup .form #mce-error-response a,
.rf-main-content .main-body .body-signup .form #mce-success-response a,
.rf-main-content .main-body-wide .body-signup .form #mce-error-response a,
.rf-main-content .main-body-wide .body-signup .form #mce-success-response a {
	font-family: 'Mark Pro Bold',Arial,sans-serif !important;
	color: #ffffff !important;
	text-decoration: underline;
}
@media screen and (max-width:640px) {
	.rf-main-content .main-body .body-signup,
	.rf-main-content .main-body-wide .body-signup {
	  height: auto;
	  min-height: 100px;
	  margin: 0 auto 30px;
	  padding: 5px 15px;
	}
	.rf-main-content .main-body .body-signup .lead,
	.rf-main-content .main-body-wide .body-signup .lead {
	  width: 100%;
	  padding: 0;
	}
	.rf-main-content .main-body .body-signup .form,
	.rf-main-content .main-body-wide .body-signup .form {
	  width: 100%;
	  padding: 0;
	  float: left;
	}
	.rf-main-content .main-body .body-signup .lead h1,
	.rf-main-content .main-body-wide .body-signup .lead h1 {
	  font-size: 27px;
	  line-height: 20px;
	  padding: 0;
	  margin-bottom: 0;
	}
}
@media screen and (min-width:768px) and (max-width:1169px) {
	.rf-main-content .main-body .body-signup .lead h1,
	.rf-main-content .main-body-wide .body-signup .lead h1 {
	  font-size: 38px;
	  line-height: 43px;
	}
	.rf-main-content .main-body .body-signup .lead,
	.rf-main-content .main-body-wide .body-signup .lead {
	  padding: 15px 0;
	}
}


/* General link behaviour */
.rf-main-content a,
.rf-main-content a.body {
  transition: none;
  color: #ed1c24;
  outline: none !important;
}
.rf-main-content a:hover,
.rf-main-content a:focus,
.rf-main-content a:active {
  color: #ed1c24;
  text-decoration: none;
  transition: all ease-in .15s;
  -moz-transition: all ease-in .15s;
  -webkit-transition: all ease-in .15s;
  -o-transition: all ease-in .15s;
}
.rf-main-content a.body:hover,
.rf-main-content a.body:focus,
.rf-main-content a.body:active {
  text-decoration: underline !important;
}

.rf-main-content h1,
.rf-main-content h2,
.rf-main-content h3,
.rf-main-content h4,
.rf-main-content h5,
.rf-main-content h6 {
  font-family: 'Mark Pro Bold', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1e1e1e;
}
.rf-main-content p,
.rf-main-content ul.content > li {
  font: 15px 'Mark Pro Light', Arial, sans-serif;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #454545;
}
.rf-main-content ul.content > li {
  list-style: none;
  list-style-image: url('../images/list2.png');
  margin-left: 15px;
  padding: 6px 0 8px 0;
}
.rf-main-content b,
.rf-main-content strong {
  font-family: 'Mark Pro Bold', Arial, sans-serif !important;
}

@media screen and (max-width:640px) {
	.rf-main-content p,
	.rf-main-content ul.content > li {
	  font-size: 14px;
	  line-height: 20px;
	}	
}

@media screen and (min-width:768px) and (max-width:1169px) {
	.rf-main-content p,
	.rf-main-content ul.content > li {
	  font-size: 14px;
	  line-height: 20px;
	}
}

.rf-main-content .container {
  padding: 0;
  width: 100%;  
}

.rf-main-content .row {
  margin: 0 auto;
  width: 100%; 
}

/* -------------------------------- 
Breadcrumbs
-------------------------------- */
.rf-main-content .breadrumbs {
  padding: 0;
  width: 100%;
  background-color: #f9f9f9;
}

.rf-main-content .breadcrumbs .crumbs .breadcrumb {
  background-color: #f9f9f9;
}

.rf-main-content .breadcrumbs .crumbs {
  padding: 0 87px;
  margin: -8px 0 0 0;
  width: 100%;
  max-height: 22px;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb {
  padding: 0;
  margin: 0;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li,
.rf-main-content .breadcrumbs .crumbs p.info {
  font-size: 12px;
  padding: 0 0 3px 0 !important;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li {
  max-width: 100%;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li + li:before {
  content: "/ ";
  /* font-size: 12px; */
  color: #454545;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  padding: 0 1px;
}
.rf-main-content .breadcrumbs .crumbs p.info {
  display: inline-block;
  float: right;
  font-weight: normal;
  line-height: 1.6em;
}
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=mailto],
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=tel] {
  /* spacing the links */
  margin-left: 8px;
}
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=mailto]::before,
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=tel]::before {
  font-family: "Simple-Line-Icons";
  margin-right: 3px;
}
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=mailto]::before {
  content: "\e01f";
  margin-right: 5px;
}
.rf-main-content .breadcrumbs .crumbs p.info > a[href^=tel]::before {
  content: "\e010";
}

@media screen and (max-width: 640px) {
  .rf-main-content .breadcrumbs .crumbs,
  .rf-main-content .breadcrumbs .crumbs ol.breadcrumb {
	/*
	padding: 0;
	height: auto;
	*/
	display: none !important;
  }
  /*
  .rf-main-content .breadcrumbs .crumbs ol.breadcrumb {
	width: 100%;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li {
	font-size: 11px;
  }

  .rf-main-content .breadcrumbs .crumbs p.info {
	font-size: 11px;
	float: left;
	padding-top: 5px;
	width: 100%;
  }
  */
}

@media screen and (min-width: 768px) and (max-width: 1169px) {
  .rf-main-content .breadcrumbs .crumbs {
	padding: 0 17px;
  }
  .rf-main-content .breadcrumbs .crumbs p.info {
	display: none;
  }
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li {
  font-family: 'Mark Pro Light', Arial, sans-serif;
  color: #454545;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li.active,
.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li > span.active {
  font-family: 'Mark Pro Bold', Arial, sans-serif;
  color: #454545;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li a,
.rf-main-content .breadcrumbs .crumbs p.info a {
  color: #454545;
  text-decoration: none;
  outline: none;
}

.rf-main-content .breadcrumbs .crumbs p.info a {
  font-family: 'Mark Pro Light', Arial, sans-serif;
}

.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li a:hover,
.rf-main-content .breadcrumbs .crumbs ol.breadcrumb > li a:focus,
.rf-main-content .breadcrumbs .crumbs p.info a:hover,
.rf-main-content .breadcrumbs .crumbs p.info a:focus {
  color: #ed1c24;
  text-decoration: none;
}

/* -------------------------------- 
Main Layout
-------------------------------- */
.rf-main-content .main {
  padding: 0;
  margin: 0;
  height: auto;
}

@media screen and (max-width: 640px) {
	.rf-main-content .main {
	  /* padding: 0 5px; */
	}	
}
@media screen and (min-width:768px) and (max-width: 1169px) {
	.rf-main-content .main {
	  /* fix positioning */
	  margin: -10px 0 0 0;
	}	
}

.rf-main-content .main h1 {
  font-family: 'ProximaNovaCnXBold', Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px; 
}

.rf-main-content .sidebar-left {
  padding-top: 40px;
  padding-left: 85px;
  padding-right: 15px;
  height: auto;
  text-align: left;
  width: 23% !important;
}

.rf-main-content .sidebar-left .sidenav {
  padding-bottom: 0;
}

.rf-main-content .sidebar-left .sidenav h4 > a {
  color: #1e1e1e;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  outline: none;
}

.rf-main-content .sidebar-left .sidenav ul {
  margin-top: -5px;
}

.rf-main-content .sidebar-left .sidenav ul > li {
  padding-left: 0;
  line-height: 2em;
  list-style: none;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  outline: none;
}
/* Main Side Menu Children */
.rf-main-content .sidebar-left .sidenav ul > li.submenu {
  padding-left: 10px;
  line-height: 2em;
  list-style: none;
  font-size: 11px;
  text-transform: uppercase;
  font-family: 'Mark Pro Light', Arial, sans-serif;
}
/* Children of Children of Main Side Menu */
.rf-main-content .sidebar-left .sidenav ul > li.submenu.child {
  padding-left: 30px;
  line-height: 2em;
  list-style: none;
  font-size: 12px;
  text-transform: capitalize;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* truncate text */
}

/* Reset Button */
.rf-main-content .sidebar-left .sidenav ul > li.submenu.child.reset a,
.rf-main-content .sidebar-left .sidenav ul > li.submenu.child.sm-btn a {
  color: #ed1c24;
  font-size: 13px;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  border: 1px solid #ed1c24;
  padding: 0 6px;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, #ffffff 50%, #ed1c24 50%);
  -webkit-transition: background-position .15s;
  -moz-transition: background-position .15s;
  transition: background-position .15s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rf-main-content .sidebar-left .sidenav ul > li.submenu.child.reset a:hover,
.rf-main-content .sidebar-left .sidenav ul > li.submenu.child.sm-btn a:hover {
  background: #ed1c24\6;
  background-position: 0 100%;
  color: #ffffff;
}

.rf-main-content .sidebar-left .sidenav ul > li.submenu.child.last {
  margin-bottom: 5px;
}

/* Remove link outline on all side navigation */
.rf-main-content .sidebar-left .sidenav ul > li a,
.rf-main-content .sidebar-left .sidenav ul > li.submenu a,
.rf-main-content .sidebar-left .sidenav ul > li.submenu.child a {
  outline: none !important;
}

@media screen and (min-width:768px) and (max-width:1169px){
	.rf-main-content .sidebar-left .sidenav ul > li.submenu {
	  padding-left: 10px;
	}
	.rf-main-content .sidebar-left .sidenav ul > li.submenu.child {
	  padding-left: 10px;
	}
	.rf-main-content .sidebar-left .sidenav h4 > a,
	.rf-main-content .sidebar-left .sidenav ul > li {
	  font-size: 12px;
	}
	.rf-main-content .sidebar-left .sidenav ul > li.submenu {
	  font-size: 11px;
	  line-height: 2.2em;
	}
	.rf-main-content .sidebar-left .sidenav ul > li.submenu.child {
	  font-size: 12px;
	  line-height: 2.1em;
	}
}

.rf-main-content .sidebar-left .sidenav a {
  color: #000000;
  text-decoration: none; 
}

.rf-main-content .sidebar-left .sidenav a.active {
  color: #ed1c24;
  text-decoration: none;
}

.rf-main-content .sidebar-left .sidenav a:hover,
.rf-main-content .sidebar-left .sidenav a:focus {
  color: #ed1c24;
  text-decoration: none;
}

.rf-main-content .sidebar-left .sidenav ul.mininav > li {
  list-style: none;
  font-family: 'Mark Pro Light', Arial, sans-serif;
  text-transform: capitalize;
  font-size: 13px;
  line-height: 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.rf-main-content .sidebar-left .sidenav ul.mininav > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rf-main-content .sidebar-left .sidenav ul.mininav > li a {
  color: inherit;
  -webkit-transition: color 0.3s, box-shadow 0.3s;
  -moz-transition: color 0.3s, box-shadow 0.3s;
  transition: color 0.3s, box-shadow 0.3s;
}
.rf-main-content .sidebar-left .sidenav ul.mininav > li a:hover,
.rf-main-content .sidebar-left .sidenav ul.mininav > li a:focus {
  color: #ed1c24;
}

/*------- MOBILE SELECT MENU (IMPORTANT) --------*/
@media screen and (min-width: 768px) {
  /* hide the dd menu in tablet and desktop devices */
  .rf-main-content .sidebar-left .sidenav menu select {
	  display: none;
  }
}
@media screen and (max-width: 640px) {
  /* hide redundant sidenav in mobile */
  .rf-main-content .sidebar-left .sidenav menu h4,
  .rf-main-content .sidebar-left .sidenav menu ul,
  .rf-main-content .sidebar-left hr {
	display: none !important;
  }
  /* show dd menu in mobile devices <=640px */
  .rf-main-content .sidebar-left .sidenav menu select {
	  width: 100% !important;
	  height: 30px !important;
	  border: 1px solid #999999 !important;
	  outline: 0 !important;
	  -webkit-appearance: none !important;
	  -moz-appearance: none !important;
	  appearance: none !important;
	  background: #ffffff url('../images/select-arrow.png') no-repeat !important;
	  font-family: 'Mark Pro Bold', Arial, sans-serif;
	  background-position: right !important;
	  text-indent: 3px;
  }
  .rf-main-content .sidebar-left .sidenav menu select option#level_1 {
	  font: 13px 'Mark Pro Light', Arial, sans-serif;
	  text-transform: uppercase;
	  text-indent: 7px;
	  padding: 3px 0;
  }
  .rf-main-content .sidebar-left .sidenav menu select option#level_1:before {
	  content: " ";
  }  
  .rf-main-content .sidebar-left .sidenav menu select option#level_2 {
	  font: 12px 'Mark Pro Light', Arial, sans-serif;
	  text-transform: uppercase;
	  padding: 3px 0;
	  text-indent: 7px;
  }  
  .rf-main-content .sidebar-left .sidenav menu select option#level_2:before {
	  content: "------ ";
	  font: 'Mark Pro Light', Arial, sans-serif;
  }  
  .rf-main-content .sidebar-left .sidenav menu select option#level_3 {
	  font: 13px 'Mark Pro Light', Arial, sans-serif;
	  text-transform: capitalize;
	  padding: 3px 0;
	  margin-bottom: 5px;
	  text-indent: 7px;
  }  
  .rf-main-content .sidebar-left .sidenav menu select option#level_3:before {
	  content: "---------- ";
	  font: 'Mark Pro Light', Arial, sans-serif;
  }  
  .rf-main-content .sidebar-left .sidenav menu select option#menu_lead {
	  font: 'Mark Pro Light', Arial, sans-serif;
	  text-transform: none;
	  padding: 4px 0;
	  text-indent: 7px;
  }
  .rf-main-content .sidebar-left .sidenav menu select option#no_display {
	  display: none;
  }
  .rf-main-content .sidebar-left .sidenav menu select option.active {
	  color: #ed1c24;
  }
  .rf-main-content .sidebar-left .sidenav menu select option.active:before {
	  color: #1e1e1e;
  }
}
.rf-main-content .sidebar-right,
.rf-main-content .sidebar-right-wide,
.rf-main-content .ds-results-right {
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 80px;
  height: auto;
  text-align: left;
  width: 20%;
}
.rf-main-content .sidebar-right-wide,
.rf-main-content .ds-results-right {
  width: 33%;
}
.rf-main-content .sidebar-right .recommended-side h5,
.rf-main-content .sidebar-right-wide .recommended-side h5,
.rf-main-content .ds-results-right .ds-results-side h5 {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Mark Pro Bold', Arial, sans-serif;
  text-align: center;
}
.rf-main-content .sidebar-right .recommended-side,
.rf-main-content .sidebar-right-wide .recommended-side,
.rf-main-content .ds-results-right .ds-results-side {
  width: 100%;
  height: auto;
  margin: 3px 0 0 0;
}
.rf-main-content .main-body,
.rf-main-content .main-body-wide,
.rf-main-content .ds-results {
  background-color: #ffffff;
  margin: 30px 0;
  padding: 10px 15px;
  height: auto;
  min-height: 750px;
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 57%;
}

.rf-main-content .main-body-wide,
.rf-main-content .ds-results {
  margin-left: 6%;
  margin-right: 10px;
  width: 60%;
}

.rf-main-content .main-body-wide.full-width {
  margin-right: 0;
  width: 88%;
}

/* workout program pages */
.rf-main-content .main-body.page-100 {
  margin: 0;
  padding: 10px 0 40px;
  width: 100% !important;
  box-shadow: none;
  z-index: 12 !important;
}
.rf-main-content .main-body.page-100 .content-full-width {
	padding: 30px 90px;
	text-rendering: optimizelegibility !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 640px) {
	.rf-main-content .main-body,
	.rf-main-content .main-body-wide,
	.rf-main-content .main-body-wide.full-width,
	.rf-main-content .ds-results {
	  margin: 10px 0;
	  padding: 10px 15px;
	  width: 100% !important;
	  min-height: 550px;
	}
	.rf-main-content .main-body-wide,
	.rf-main-content .ds-results {
	  margin-left: 0;
	  margin-right: 0;
	  width: 100%;
	}
	.rf-main-content .main-body.page-100 {
	  padding: 10px 10px 40px;
	}
	.rf-main-content .main-body.page-100 .content-full-width {
	  padding: 20px 15px;
	}
}

.rf-main-content .main-body hr,
.rf-main-content .main-body-wide hr, {
  border-bottom: 1px medium rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 30px 0;
}

.rf-main-content .sidebar-left hr,
.rf-main-content .sidebar-right hr,
.rf-main-content .sidebar-right-wide hr,
.rf-main-content .ds-results-right hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  margin: 5px 0;
}

@media screen and (max-width: 640px) {
	.rf-main-content .sidebar-left {
	  padding-top: 15px;
	  padding-left: 10px;
	  padding-right: 10px;
	  width: 100% !important;
	  background: #fff;
	}
	.rf-main-content .sidebar-right,
	.rf-main-content .sidebar-right-wide,
	.rf-main-content .ds-results-right {
	  padding-top: 0;
	  padding-left: 5px;
	  padding-right: 5px;
	  width: 100% !important;
	}
	.rf-main-content .sidebar-right .recommended-side h5,
	.rf-main-content .sidebar-right-wide .recommended-side h5,
	.rf-main-content .ds-results-right .ds-results-side h5 {
	  font-size: 15px;
	  padding-bottom: 3px;
	  text-align: left;
	  border-bottom: 1px solid #000000;
	}
	
	.rf-main-content .sidebar-right .recommended-side img,
	.rf-main-content .sidebar-right-wide .recommended-side img,
	.rf-main-content .ds-results-right .ds-results-side img {
	  margin: 6px 0;
	}
	
	.rf-main-content .sidebar-left hr,
	.rf-main-content .sidebar-right hr,
	.rf-main-content .sidebar-right-wide hr,
	.rf-main-content .ds-results-right hr {
	  margin: 10px 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 1169px) {
	.rf-main-content .sidebar-left {
	  padding-top: 40px;
	  padding-left: 20px;
	  padding-right: 10px;
	}
	.rf-main-content .main-body,
	.rf-main-content .main-body-wide,
	.rf-main-content .ds-results {
	  width: 75% !important;
	}
	.rf-main-content .main-body-wide.full-width {
	  width: 96% !important;
	}
	.rf-main-content .main-body.page-100 .content-full-width {
	  padding: 40px 30px;
	}
	.rf-main-content .main-body-wide,
	.rf-main-content .ds-results {
	  margin-left: 2%;
	  margin-right: 10px;
	  width: 72% !important;
	}
	.rf-main-content .sidebar-right,
	.rf-main-content .sidebar-right-wide,
	.rf-main-content .ds-results-right {
	  padding-top: 0 !important;
	  padding-left: 0 !important;
	  padding-right: 0 !important;
	  width: 75% !important;
	  margin-right: 2% !important;
	  margin-left: auto !important;
	  float: right !important;
	}
	.rf-main-content .sidebar-right-wide,
	.rf-main-content .ds-results-right {
	  width: 22.5% !important;
	  padding: 30px 0 10px 0 !important;
	}
	.rf-main-content .sidebar-right .recommended-side h5{
	  font-size: 15px;
	  padding-bottom: 3px;
	  text-align: left;
	  border-bottom: 1px solid #000000;
	}
	.rf-main-content .sidebar-right-wide .recommended-side h5,
	.rf-main-content .ds-results-right .ds-results-side h5 {
	  font-size: 14px;
	  padding-bottom: 0;
	  padding-top: 10px;
	  text-align: center;
	}
	
	.rf-main-content .sidebar-right .recommended-side img,
	.rf-main-content .sidebar-right-wide .recommended-side img,
	.rf-main-content .ds-results-right .ds-results-side img {
	  margin: 6px 0;
	}
}

/* -------------------------------- 
Footer
-------------------------------- */
.footer {
  padding: 0 15px;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  /* Quote spinner only in large screens */
  .footer .text-spinner {
	background-color: #1e1e1e;
	width: 100% !important;
	max-height: 50px;
	padding: 10px 70px 10px 90px;
  }
  .footer .text-spinner .image#spinner-logo {
	height: 30px;
	width: 30px;
	float: left;
	margin: 0 10px 0 0;
	padding: 3px 0;
	/*background: url('../images/rf-spinner-logo.svg') no-repeat !important;
	background-position: center !important;
	background-size: contain !important;*/
	display: inline-block;
  }
  .footer .text-spinner .image#spinner-logo > i {
	font-size: 24px;
	color: #ffffff;
  }
  .footer .text-spinner .text {
	width: auto;
	display: inline-block;
	border-left: 1px solid #454545;
	margin: 0;
	padding: 0 15px;
  }
  .footer .text-spinner .text h2 {
	color: #ffffff;
	font: 20px 'ProximaNovaExCnLight', Arial, sans-serif !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px;
	margin: 0;
	padding: 5px 0;
  }
}
@media screen and (max-width: 1199px) {
  /* hide in smaller screens */
  .footer .text-spinner {
	display: none;
  }
}
.footer .top {
  background-color: #000000;
  padding: 20px 70px 20px 90px;
  width: 100% !important;
}

.footer .top h4,
.footer .top p > span {
  color: #ffffff;
  text-transform: uppercase;
  font: 12px 'Mark Pro Light', Arial, sans-serif; 
}
.footer .top h4 > small {
  color: #ffffff;
}
.footer .top p > span {
  line-height: 30px !important; 
}

.footer .top .ft-ns-signup,
.footer .top #mc-embedded-subscribe-form {
	width: 100%;
	margin: 10px 0 10px 0;
}
.footer .top .input-left,
.footer .top .input-right {
	width: 50%;
	margin-bottom: 8px;
}
.footer .top .input-left {
	padding: 0 4px 0 0;
}
.footer .top .input-right {
	padding: 0 0 0 4px;
}
.footer .top .ft-ns-name,
.footer .top #mce-FNAME,
.footer .top #mce-LNAME {
	width: 100%;
	padding: 9px 12px;
	font: 15px 'Mark Pro Light', Arial, sans-serif;
	line-height: 17px;
	float: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0;
	background: #ffffff;
	color: #454545;
}
.footer .top .ft-ns-email,
.footer .top #mce-EMAIL {
	width: 70%;
	padding: 9px 12px;
	font: 15px 'Mark Pro Light', Arial, sans-serif;
	line-height: 17px;
	float: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0;
	background: #ffffff;
	color: #454545;
}
.footer .top input::placeholder {
	color: #454545;
}
.footer .top input:-webkit-input-placeholder {
	color: #454545;
}
.footer .top input::-moz-placeholder {
	color: #454545;
}
.footer .top input:-ms-input-placeholder {
	color: #454545;
}
.footer .top .ft-ns-submit {
	width: 28%;
	padding: 6px 12px;
	font: 15px 'Mark Pro Bold', Arial, sans-serif;
	line-height: 20px;
	cursor: pointer;
	float: right;
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 2px solid #ed1c24;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	background-size: 100% 200%;
	background-image: linear-gradient(to bottom, #ed1c24 50%, #ffffff 50%);
	-webkit-transition: background-position .15s;
	-moz-transition: background-position .15s;
	transition: background-position .15s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.footer .top .ft-ns-submit:hover,
.footer .top .ft-ns-submit:focus,
.footer .top .ft-ns-submit:active {
	background: #ffffff\6;
	background-position: 0 100%;
	color: #ed1c24;
	border: 2px solid #ed1c24;
}
.footer .top .social-networks,
.footer .top .addthis_horizontal_follow_toolbox {
	margin: 0 0 10px 0;
	padding: 0;
	z-index: 10 !important;
	clear: both;
}
.footer .top .addthis_horizontal_follow_toolbox a {
	/* space the addthis buttons */
	margin: 0 5px 5px 0;
}
.footer .top .social-networks a.social-nav {
	display: inline-block !important;
	margin-right: 8px;
}
.footer .top .social-networks a.social-nav:hover {
	opacity: 0.95 !important;
}
.footer .top .links-1,
.footer .top .links-2 {
	padding: 0 0 0 20px;
	width: 100%;
}
.footer .top .footer-left,
.footer .top .footer-right {
	padding: 0;
	width: 45%;
}
.footer .top .footer-left {
	padding: 0 0 0 30px;
}
.footer .top .footer-left { float: left; }
.footer .top .footer-right { float: right; }

.footer .top ul {
	list-style: none;
	padding: 0;
}
.footer .top a {
	color: #999999;
	font: 13px 'Mark Pro Light', Arial, sans-serif;
	text-decoration: none;
}
.footer .top a:hover {
	color: #fff;
	text-decoration: none;
}
/* Disclaimer */
.footer .top .disclaimer {
	padding: 0;
	margin: 20px 0 0 0;
}
.footer .top .disclaimer p {
	font: 12px 'Mark Pro Light', Arial, sans-serif;
	line-height: 17px;
	color: #999999;
	font-weight: 500 !important;
}
.footer .top .disclaimer p.fda {
	border: 1px solid #999999;
	padding: 6px 14px;
	clear: both;
}

.footer .top p.signup-lead {
	color: #999999;
	line-height: 15px;
	font: 14px 'Mark Pro Light', Arial, sans-serif;
}
.footer .top .mce-box,
.footer .top .fda-box {
	z-index: 10 !important;
	padding: 0;
	clear: both;
}
.footer .top .mce-box {
	margin: 0 0 5px 0;
}
.footer .top .left,
.footer .top .center,
.footer .top .right {
  padding: 20px 20px 20px 0;
  width: calc(100%/3);
}

.footer .top .center { padding: 20px 0 0 30px; }
.footer .top .left { float: left; }
.footer .top .right { float: right; }

.footer .top .center iframe { /* twitter iframe */ height: 86px; }

.footer .top .center p {
	color: #999999;
	font: 14px 'Mark Pro Light', Arial, sans-serif;
	text-align: left;
	margin: 10px 0;
}
.footer .top .center a {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	outline: none;
}
.footer .top .center a:hover {
	text-decoration: underline;
}

.footer .bottom {
  background-color: #1e1e1e;
  padding: 80px 70px 50px 90px;
  width: 100% !important;
  text-align: center;
}

.footer .bottom .footer-impression {
  width: 100%;
  height: auto;
}

.footer .bottom .footer-impression p.site-name {
  font: 13px 'Mark Pro Bold', Arial, sans-serif;
  padding: 0 25%;
  color: #ffffff;
  line-height: 1.3em;
  text-transform: uppercase;
  margin: 10px 0;
}

.footer .bottom .footer-impression p.about {
  font: 12px 'Mark Pro Light', Arial, sans-serif;
  padding: 0 30%;
  text-align: center;
  color: #cccccc;
  line-height: 1.3em;
  text-transform: uppercase;
  margin: 10px 0;
}

.footer .bottom .footer-impression .image#footer-logo {
  height: 82px;
  width: 82px;
  margin: 0 auto;
  background: url('../img/rf-footer-logo.svg') no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

.footer .bottom p.copy {
  color: #999999;
  font: 14px 'Mark Pro Light', Arial, sans-serif;
  padding-top: 10px;
}
.footer .bottom p.url {
	color: #999999;
	font-size: 15px;
}
.footer .bottom p.url > a {
	color: #cccccc;
	font: 14px 'Mark Pro Light', Arial, sans-serif;
	text-decoration: none;
	padding: 0 10px;
}
.footer .bottom p.url > a:hover {
	color: #cccccc;
	text-decoration: underline;
}
.footer .bottom .designer {
  width: 30px;
  height: 30px;
  float: right;
  margin-right: 20px;
  background: transparent;
}
.footer .bottom .designer img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}
.footer .bottom .designer img:hover {
  opacity: 1;
}

@media screen and (max-width: 640px) {
	.footer {
	  padding: 0 15px;
	}
	.footer .top .left,
	.footer .top .center,
	.footer .top .right {
	  width: 100%;
	}
	.footer .top .left,
	.footer .top .center {
	  width: 100%;
	  text-align: center;
	}
	.footer .bottom .footer-impression p.site-name,
	.footer .bottom .footer-impression p.about {
	  font-size: 13px;
	  padding: 0;
	}
	.footer .bottom .footer-impression p.about {
	  font-size: 11px;
	  line-height: 18px;
	}
	.footer .top .mce-box,
	.footer .top .social-networks,
	.footer .top .addthis_horizontal_follow_toolbox {
		margin: 0 0 15px 0;
	}
	.footer .top .addthis_horizontal_follow_toolbox a {
		margin: 0 4px 5px 0;
	}
	.footer .top .ft-ns-signup,
	.footer .top #mc-embedded-subscribe-form {
		margin: 5px 0 5px 0;
	}
	.footer .top .input-left {
		padding: 0 3px 0 0;
		margin-bottom: 6px;
	}
	.footer .top .input-right {
		padding: 0 0 0 3px;
		margin-bottom: 6px;
	}
	.footer .top .ft-ns-submit {
		padding: 6px 10px;
		font-size: 14px !important;
	  	line-height: 20px;
	}
	.footer .top .disclaimer p {
		font-size: 13px;
	}
	.footer .top .disclaimer p.fda {
	    padding: 8px 6px;
	}
	.footer .top .center p,
	.footer .top .center a {
		/* text-align: center; */
		line-height: 18px;
	}	
}

@media screen and (min-width: 768px) and (max-width: 1169px) {
	.footer .bottom .footer-impression p.site-name,
	.footer .bottom .footer-impression p.about {
	  font-size: 13px;
	  padding: 0 15%;
	}
	.footer .top .ft-ns-signup,
	.footer .top #mc-embedded-subscribe-form {
		margin: 0 0 0 0;
	}
	.footer .top .input-left {
		padding: 0 2px 0 0;
		margin-bottom: 4px;
	}
	.footer .top .input-right {
		padding: 0 0 0 2px;
		margin-bottom: 4px;
	}
	.footer .top .ft-ns-email,
	.footer .top #mce-EMAIL {
	  width: 60%;
	  /*margin-bottom: 5px;*/
	}
	.footer .top .ft-ns-submit {
	  width: 38%;
	}
	.footer .top .addthis_horizontal_follow_toolbox .at-icon,
	.footer .top .addthis_horizontal_follow_toolbox .at-icon-wrapper {
	  width: 25px !important;
	  height: 25px !important;
	  line-height: 25px !important;
	}
	.footer .top .addthis_horizontal_follow_toolbox a {
		/* space the addthis buttons */
		margin: 0;
	}
	.footer .top .disclaimer p {
		font-size: 12px;
	}
	.footer .top .disclaimer p.fda {
	    padding: 6px 8px;
	}
	.footer .top a {
	  font-size: 12px;
	}
	.footer .top .center p,
	.footer .top .center a {
		font-size: 12px;
	}	
	.footer .top p.signup-lead {
	  font-size: 12px;
	}
}

@media screen and (max-width: 1169px) {
	.footer {
	  padding: 0 15px;
	}
	.footer .top {
	  padding: 0 0 20px 20px;
	}
	.footer .top a {
	  font-size: 13px;
	}
	.footer .top .center p,
	.footer .top .center a {
		font-size: 13px;
	}	
	.footer .top p.signup-lead {
	  font-size: 13px;
	}
	.footer .top .ft-ns-submit:hover,
	.footer .top .ft-ns-submit:focus,
	.footer .top .ft-ns-submit:active {
		background: #ed1c24;
		color: #ffffff;
		border: 2px solid #ed1c24;
		opacity: 0.9;
	}
	.footer .bottom {
	  padding: 40px 20px 30px 20px;
	}
	
	.footer .top .left,
	.footer .top .center,
	.footer .top .right {
	  padding: 20px 20px 20px 0;
	}

	.footer .top .center { padding: 20px 20px 0 0; }
	
	.footer .top .links-1,
	.footer .top .links-2 {
		padding-left: 15px;
	}
	
	.footer .top .disclaimer {
		margin: 10px 0 0 0;
	}
	
	.footer .top .footer-left {
		padding: 0;
		width:49%;
	}
	
	.footer .top .footer-right {
		padding: 0 0 0 10px;
		width:49%;
	}
	
	.footer .bottom {
	  padding-top: 40px;
	}
	
	.footer .bottom .footer-impression .image#footer-logo {
	  height: 66px;
	  width: 66px;
	}
	
	.footer .bottom p.copy {
	  font-size: 13px;
	  margin-top: 20px; 
	}
	.footer .bottom p.url,
	.footer .bottom p.url > a {
		font-size: 13px;
	}
	.footer .bottom .designer {
	  float: left;
	  margin-top: 20px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1169px) {
    .footer .top .center {
	  padding: 20px 10px 0 0;
  	}	
}



/* instagram feed */
.insta-feed {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	padding: 0;
	margin: 0;
	clear: both;
	background: transparent;
}
#instafeed {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
}
#instafeed a > img, #instafeed > img {
	display: inline-block;
	width: calc(100%/5);
	height: auto;
	opacity: 1;
	-webkit-transition: all 0.1s 0.1s !important;
  	-moz-transition: all 0.1s 0.1s !important;
  	transition: all 0.1s 0.1s !important;
}
#instafeed a > img:hover, #instafeed > img:hover {
	opacity: .8;
	-webkit-transition: all 0.1s 0.1s !important;
  	-moz-transition: all 0.1s 0.1s !important;
  	transition: all 0.1s 0.1s !important;
}

#lhc_status_container {
    -webkit-border-top-left-radius: 4px !important;
    -moz-border-radius-topleft: 4px !important;
    border-top-left-radius: 4px !important;
    padding: 0 0px 0px 10px !important;
    width: 150px !important;
    font: 12px 'Mark Pro Bold', Arial, sans-serif !important;
	font-weight: 500 !important;
    background-color: #f6f6f6;
}
@media screen and (max-width: 640px) {
  #lhc_status_container {
    display: none;
  }
  #instafeed a > img, #instafeed > img {
	width: calc(100%/3);
  }
}
#lhc_status_container .status-icon {
    font: 12px 'Mark Pro Bold', Arial, sans-serif !important;
    color: #454545 !important;
    padding: 7px 10px 7px 25px !important;
}
#lhc_need_help_container {
    border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	margin-left: -110px !important;
}
#lhc_need_help_main_title {
    font: 13px 'Mark Pro Bold', Arial, sans-serif !important;
	margin-bottom: 5px !important;
}
#lhc_need_help_sub_title {
    font: 12px 'Mark Pro Light', Arial, sans-serif !important;
}
#lhc_container {
    -webkit-border-bottom-left-radius: 0 !important;
    -moz-border-radius-bottomleft: 0 !important;
    border-bottom-left-radius: 0 !important;
	-webkit-border-bottom-right-radius: 0 !important;
    -moz-border-radius-bottomright: 0 !important;
    border-bottom-right-radius: 0 !important;
}
#widget-layout.row label, #widget-layout.row .form-control {
    font-size: 12px;
	font-family: 'Mark Pro Light', Arial, sans-serif !important;
}
#widget-layout.row .form-control {
    box-shadow: none; !important;
	border-radius: 3px !important;
}
#widget-layout.row textarea.form-control {
    resize: none !important;
}
#widget-layout.row .form-control:focus {
    border-color: #454545 !important;
}
#widget-layout.row h4,
#widget-layout.row h4.no-operators {
    font-size: 14px !important;
	font-family: 'Mark Pro Bold', Arial, sans-serif !important;
}







