/*
	Theme Name: Loyalty Print 2016
	Theme URI: http://vaux.io
	Description: Custom Theme for Loyalty Print
	Version: 1.0
	Author: Vaux Studios
	Author URI: http://vaux.io
	Tags: Blank, HTML5, CSS3m Unyson

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
    color: #777777;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    line-height: 18px;
	width: 100%;
	height: 100%;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #2b2b2b;
    line-height: 1em;
}

hr {
	border-top: 10px solid #EBEBEB;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {

}

.header .vx-utility {
	border-bottom: 1px solid #d3d3d3;
	color: #6e6e6e;
	font-size: 12px;
	padding: 15px 0;
	display: none;
}

.header .vx-utility-menu {
	text-align: right;
}

.header .vx-menu-toggle {
	padding: 0;
}

/* logo */
.vx-logo-wrapper {
	position: relative;
}

.vx-logo-wrapper .logo {
    margin: 2em auto;
    float: left;
}
.logo-img {

}

.vx-logo-wrapper .phone-num {
	position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #262b32;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.25em;
    color: #353563;
}

.vx-logo-wrapper .phone-num p {
	margin: 0;
	font-size: 30px;
}

.vx-logo-wrapper .phone-num a.call-track {
	color: #353563;
}
/* nav */
.vx-menu-wrapper {
    background: #353563;
    color: #d5d3d3;
    box-shadow: -2px 5px 5px rgba(0,0,0,0.5) inset;
}

ul.vx-main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 0;
}

ul.vx-main-menu > li {
	display: inline-block;
	padding: 0;
	cursor: pointer;
	position: relative;
	border-left: 1px solid #000;
}

ul.vx-main-menu > li:last-child {
	border-right: 1px solid #000;
}

ul.vx-main-menu > li.menu-item-has-children {
	padding-right: 10px;
}

ul.vx-main-menu > li.menu-item-has-children > a:after {
    content: '\f0dd';
    font-family: FontAwesome;
    font-size: 12px;
    position: absolute;
    top: -3px;
    padding-right: 2px;
    padding-left: 10px;
}

ul.vx-main-menu > li > a {
    color: #FFF;
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 80px;
    margin: 0;
    padding: 0 25px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms ease-in 0s;
}

ul.vx-main-menu > li > ul.sub-menu {
	background: #fff;
	position: absolute;
	left: 0px;
	margin: 0;
	padding: 0;
	display: block;
	visibility: hidden;
	z-index: 4;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.15);
	-webkit-backface-visibility: hidden;
}

ul.vx-main-menu > li > ul > li {
	text-transform: none;
	display: block;
	float: none;
	margin: 0;
	padding: 0;
	position: relative;
}

ul.vx-main-menu > li > ul > li.menu-item-has-children > a:after {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 14px;
    top: 10px;
    position: absolute;
    padding-right: 2px;
    padding-left: 10px;
}

ul.vx-main-menu li ul li a {
	display: block;
    width: 220px;
    padding: 12px 20px;
    margin: 0;
    line-height: 1.7;
    letter-spacing: normal;
    font-size: 13px;
    color: #777;
    font-weight: 400;
    text-transform: none;
}

ul.vx-main-menu li ul li a:hover {
	background: #fafafa;
}

ul.vx-main-menu li:hover > ul {
    visibility: visible;
}

ul.vx-main-menu > li.current-menu-item {
	background: #5b5b95;
    color: #fff;
}

ul.vx-main-menu > li > ul > li > ul {
	position: absolute;
	left: 100%;
	top: 0;
	box-shadow: none;
	background-color: #fafafa;
	visibility: hidden;
	margin: 0;
	padding: 0;
}

ul.vx-main-menu > li > ul > li > ul > li:hover {
	background: #FFF;
}

/* Mobile Menu */

.toggle-button {
	background: none;
	padding: 0;
	margin: 0;
	border: none;
	font-size: 18px;
}

.vx-mobile-menu {
	padding: 2em 0 0 0;
	margin: 0;
	list-style: none;
}

.vx-mobile-menu li ul {
	display: none;
}

.vx-mobile-menu li:hover ul {
	display: block;
}

.vx-mobile-menu li a {
	display: block;
	padding: 10px 20px;
	color: #FFF;
}
/* sidebar */
.sidebar {

}
/* footer */
footer {
    background: #111;
}

footer .tagcloud a {
	font-size: 16px !important;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 5px 10px;
    border: 2px solid #db0a5b;
    transition: color 0.15s, border-color 0.15s;
    color: #999;
}

footer .tagcloud a:before {
    content: "#";
    margin-right: 1px;
    padding: 0px;
}

footer .tagcloud a:nth-of-type(1n+7) {display: none;}

footer .vx-widgets-wrapper {
	padding: 2em 0;
}

footer .vx-widgets-wrapper .widgets h3 {
    color: #929292;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px;
    text-transform: uppercase;
}

footer .vx-widgets-wrapper .widgets ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .vx-widgets-wrapper .widgets ul li {
	color: #dddddd;
    font-size: 12px;
    font-weight: 300;
    line-height: 35px;
}

footer .vx-widgets-wrapper .widgets ul li:last-child {
	border-bottom: none;
}

footer .vx-widgets-wrapper .widgets ul li a {
	color: #dddddd;
    font-size: 13px;
    text-transform: capitalize;
}

footer .vx-widgets-wrapper .widgets .last-col {
	text-align: right;
}

footer .vx-widgets-wrapper .widgets .last-col a.btn {
	margin-bottom: 1em;
}

footer .vx-copyright-wrapper {
	background: #1d1d1d;
    padding: 30px 0px 30px 0px;
}

footer .vx-copyright-wrapper .copyright {
	margin-bottom: 0px;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: #999;
}

/*------------------------------------*\
    GLOBAL
\*------------------------------------*/

.fw-container {
	max-width: 1200px;
}

.fw-container-fluid .fw-col-xs-12 {
	padding: 0 !important;
}

.fw-heading h2 {
	font-weight: 200;
    text-transform: uppercase;
    font-size: 30px;
    position: relative;
    margin-bottom: 1.5em;
}

.fw-heading h4 {
	display: inline-block;
    padding: 0 20px;
    position: relative;
    color: #262b32;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.fw-heading h4:after, .fw-heading h2:after {
	background: rgba(0, 0, 0, 0) url("images/divider.png") no-repeat scroll center top;
    bottom: -27px;
    content: "";
    display: block;
    height: 23px;
    left: 0;
    margin: 0 auto;
    padding: 0 10px;
    position: absolute;
    right: 0;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.page.home section {

}

/*------------------------------------*\
    Pages w/Sidebar
\*------------------------------------*/
.page .fw-row .shortcode-widget-area.fw-sidebar {
	background: rgba(53, 53, 99, 0.09);
	border-radius: 8px;
}

.page .fw-row .shortcode-widget-area.fw-sidebar .gform_widget h3 {
	background-color: #353563;
	color: #FFF;
	padding: 1em;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
}

.page .fw-row .shortcode-widget-area.fw-sidebar .gform_widget h3:before {
	content: '\f298';
    font-family: FontAwesome;
    padding-right: 10px;
}

.page .fw-row .shortcode-widget-area.fw-sidebar .gform_widget .gform_wrapper {
	padding: 0 1em;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=image], .gform_wrapper .gform_footer input[type=submit] {
	background-color: #23ba9b;
	color: #FFF;
	padding: 10px 20px;
	border-radius: 3px;
	font-size: 20px;
	display: block;
	border: none;
	font-weight: 800;
}

/*------------------------------------*\
    SINGLE
\*------------------------------------*/
.single-post .entry-content {
    line-height: 36px;
    letter-spacing: 0.03em;
}

.single-post h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px;
}

.single-post article img {
	width: 100%;
	height: auto;
}

/*------------------------------------*\
    LOOP
\*------------------------------------*/

.vx-loop {
	
}

.vx-loop article h2 {
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 20px 0;
	font-size: 30px;
}

.vx-loop article:nth-child(2n+1) {
	clear: left;
}

/*------------------------------------*\
    PAGINATION
\*------------------------------------*/
.page-numbers { padding: 20px; 0; text-align: center; border: none !important; white-space: normal !important; }
.page-numbers li {
	border: none !important;
	float: none !important;
}
.page-numbers a,
.page-numbers span { line-height:1.25; margin:0 7px 0 0; display:inline-block; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; padding:5px 9px 4px; }
.page-numbers a.page-numbers { background: #0bbe5f; color: #FFF; }
.page-numbers a.next { background:none; float:right; font-weight:600; color: #0bbe5f;}
.page-numbers a.prev { background:none; float:left; font-weight:600; color: #0bbe5f; }
.page-numbers a.next:hover,
.page-numbers a.prev:hover { background:none; }

.page-numbers span.current { background: #F5F5F5; color: #555; }

/*------------------------------------*\
    FW SHORTCODES
\*------------------------------------*/
.fw-shortcode-latest-posts h2 {
	line-height: 1em;
	font-size: 22px;
}


/*------------------------------------*\
    eCommerce
\*------------------------------------*/
.vx-commerce-wrapper {
	margin: 1em auto;
}


.btn {
    color: #FFF;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 20px;
    display: block;
    text-align: center;
    line-height: 1.25em;
}

.btn:hover {
	color: #FFF;
}

.btn-purple {
	background-color: #353563;
}

.btn-purple:hover {
	background-color: #272752;
}

.btn-green {
	background-color: #23ba9b;
}

.btn-green:hover {
	background-color: #029C7C;
}

/*------------------------------------*\
	SLIDE OUT MENU
\*------------------------------------*/

.slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 256px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.slideout-panel {
  position:relative;
  z-index: 1;
  will-change: transform;
  background-color: #FFF;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

#panel {
	background-color: #FFF;
	overflow-x: hidden;
}

#menu {
    background-color: #353563;
    background-image: linear-gradient(145deg, #353563, #2F2F57);
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/



@media only screen and (min-width:320px) {

}
@media only screen and (max-width:480px) {
	.vx-logo-wrapper .logo {
		float: none;
		margin: 1em auto;
		text-align: center;
	}
	
	.vx-logo-wrapper .phone-num {
	    position: static;
	    transform: none;
	    text-align: center;
	    font-size: 22px;
    }
    
    .vx-logo-wrapper .phone-num p {
	    display: none;
    }
    
    .fw-mobile-hide-element {
		display: none;
	}
}
@media only screen and (max-width:768px) {
	.header .vx-utility-menu {
	    text-align: center;
	}
	
	.fw-tablet-hide-element {
		display: none;
	}

}
@media only screen and (max-width:1024px) {
	.vx-menu-wrapper {
		display: none;
	}
	
	.fw-tablet-landscape-hide-element {
		display: none;
	}
	
	.header .vx-utility {
		display: block;
	}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (max-width:1280px) {
	.fw-desktop-hide-element {
		display: none;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#db0a5b;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#db0a5b;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#db0a5b;
	color:#FFF;
	text-shadow:none;
}


/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
