/*
Theme Name: Logan
Theme URI: http://www.pixedelic.com/themes/logan
Author: Manuel Masia | Pixedelic
Author URI: http://www.pixedelic.com/
Description: A Wordpress theme by Manuel Masia (Pixedelic). If you think you're satisfied with the support or the updates, please consider to rate the theme with 5 stars on your ThemeForest "Downloads" section. It is very important and helpful for me and my business. Thank you.
Version: 1.3.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout, custom-colors, custom-menu, editor-style, featured-images, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: logan
Domain Path: /languages/
*/

/*------------------------------------------------------------------
[Table of contents]

0. Global
	0.1. Reset
	0.2. Tricks and WP core
	0.3. Media
	0.4. Typography
1. Body
	1.1. Header -- header#masthead
		#header-wrap
			#header-topbar
			#header-banner
				.site-branding
					.site-title
					.site-description
				.branding-side
		1.1.1 Site navigation -- nav#site-navigation
			1.1.1.2 Mobile navigation
		1.1.2 Top cart
		1.1.3 Search form
		1.1.4 Sliding bar
	1.2. Page -- #page
	1.3. Content -- #content
		1.3.1 Featured slideshow -- #featured_slides
		1.3.2 Post header
		1.3.3 Post meta -- .entry-meta
		1.3.4 Page builder
		1.3.5 Entry content
			.entry-content
		1.3.6 Buttons
		1.3.7 Forms
	1.4. Aside -- aside#secondary
	1.5. Footer -- footer#colophon
	1.6. WooCommerce
	1.7. Members
2. Extra
	2.1 3rd party plugins
-------------------------------------------------------------------*/

/*--------------------------------------------------------------
*
*	0. Global
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
0.1. Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
small {
	font-size: .85em;
}
strong {
	font-weight: bold!important;
}
em {
	font-style: italic;
}
html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}
* {
	outline: none;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
figure {
	margin: 0;
	position: relative;
	width: auto;
}
figcaption {
	background: rgba(255,255,255,.925);/*dynamic*/
	bottom: 0;
	color: #222324;/*dynamic*/
	font-style: italic;
	left: 0;
	opacity: 0;
	padding: 20px;
	pointer-events: none;
	position: absolute;
	width: 100%;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	transition: opacity .25s cubic-bezier(.33,0,.2,1);
}
figure:hover figcaption {
	opacity: 1;
}
table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 0 0 1.525rem;
	width: 100%;
}
table::before,
table::after {
	content: "";
	display: table;
}
table::after {
	clear: both;
}
td, th {
	border-collapse: collapse!important;
	padding: .5em;
	text-align: left;
	/*ltr*/
}
caption, th, td {
	text-align: left;/*ltr*/
}
th {
	font-weight: bold;
}
thead th {
	font-size: .775rem;
	text-transform: uppercase;
}
blockquote::before, blockquote::after,
q::before, q::after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a, .accent_color {
	color: #c6ac5e;/*dynamic*/
	text-decoration: none;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
a:focus {
	outline: 0;
}
div[role="listitem"] {
	display: list-item;
	list-style-type: none;
}
li {
	list-style-position: inside;
	margin-left: 1em;
	padding-left: 0;
}
ul > li.custom_li,
ul > li.custom_li li {
	list-style-type: none;
}
ul > li.custom_li::before,
ul > li.custom_li li::before {
	content: "\ead6";/*ltr*/
	display: inline-block;
	font-family: "budicon";
	font-size: .5em;
	margin-right: 1em;
	width: 1.2em;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1em;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
0.2. Tricks and WP core
--------------------------------------------------------------*/
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.margin_0 {
	margin: 0!important;
}
.hidden {
	display: none;
}
.hidden_important {
	display: none!important;
}
.fake_hidden {
    display: block;
    left: -4000px;
	position: absolute;
    visibility: hidden;
    z-index: -1;
}
.display_block {
	display: block!important;
}
.overflow_hidden {
	overflow: hidden!important;
}
.overflow_visible {
	overflow: visible!important;
}
.position_relative {
	position: relative;
}
.transparent_opacity {
	opacity: 0!important;
}
.no_size {
	height: 0!important;
	width: 0!important;
}
.no_margin {
	margin: 0!important;
}
.invisible {
	visibility: hidden!important;
}
.logan .under-index {
	position: relative;
	z-index: 0;
}
.logan .over-index {
	position: relative;
	z-index: 2;
}
.double-parallax {
    opacity: .25;
    position: absolute;
    top: -1em;
    width: 100%;
    z-index: -1;
}
.opacity_10 {
    opacity: .1;
}
.opacity_20 {
    opacity: .2;
}
.opacity_30 {
    opacity: .3;
}
.opacity_40 {
    opacity: .4;
}
.opacity_50 {
    opacity: .5;
}
.opacity_60 {
    opacity: .6;
}
.opacity_70 {
    opacity: .7;
}
.opacity_80 {
    opacity: .8;
}
.opacity_90 {
    opacity: .9;
}
.uppercase {
	text-transform: uppercase;
}
.width_100,
.wpb_single_image.width_100 img {
	width: 100%!important;
}
.cf::before, .cf::after {
	content: "";
	display: table;
}
.cf::after {
	clear: both;
}
.blurred {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='4');
}

/*--------------------------------------------------------------
0.3. Media
--------------------------------------------------------------*/
img {
	height: auto;
	max-width: 100%;
	vertical-align: top;
}
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	color: #acacaf;/*dynamic*/
	font-size: .875rem;
	font-style: italic;
	margin: 0.8075em 0;
}
.logan .tiled-gallery-caption {
	color: #222324;/*dynamic*/
	font-size: .875rem;
	font-style: italic;
}
.wp-caption .wp-caption-text em,
.logan .tiled-gallery-caption em {
	font-style: normal;
}
.wp-caption.alignleft {
	margin: 0 2rem 1rem 0;
}
.wp-caption.alignright {
	margin: 0 0 1rem 2rem;
}
.gallery {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin-bottom: 1.525rem;
	margin-left: -2rem;
}
.gallery-item {
	display: inline-block;
	margin: 0 0 2rem;
	padding-left: 2rem;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 100%;
	z-index: 0;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {
	color: #acacaf;/*dynamic*/
	font-size: .875em;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.gallery-columns-3 .gallery-item {
		max-width: 50%;
	}
	.gallery-columns-4 .gallery-item {
		max-width: 50%;
	}
	.gallery-columns-5 .gallery-item {
		max-width: 50%;
	}
	.gallery-columns-6 .gallery-item {
		max-width: 50%;
	}
}
@media screen and (max-width: 400px) {
	.gallery-columns-2 .gallery-item {
		max-width: 100%;
	}
	.gallery-columns-3 .gallery-item {
		max-width: 100%;
	}
	.gallery-columns-4 .gallery-item {
		max-width: 100%;
	}
	.gallery-columns-5 .gallery-item {
		max-width: 100%;
	}
	.gallery-columns-6 .gallery-item {
		max-width: 100%;
	}
}

[data-width][data-height] .mejs-overlay {
	height: 100%!important;
}
[data-width][data-height] .mejs-overlay-button {
	margin-top: -50px!important;
}
.wp-video {
	margin: auto;
}
#colorbox .wp-video {
	max-width: 100%;
}
#colorbox .mejs-container {
	max-width: 100%!important;
}
.fake_hidden .wp-playlist,
.pix-video-inline {
	width: 1024px;
	max-width: 100%;
}
.logan .mejs-container .mejs-controls div,
.logan .mejs-container *,
.logan .wp-playlist .wp-playlist-tracks {
	font-family: 'Lato';/*dynamic*/
}
.logan .wp-audio-shortcode.mejs-audio {
    background: #333333;
	height: 40px!important;
}
.logan .mejs-container .mejs-controls {
    background: rgba(0,0,0,.5);
    height: 40px;
    padding: 0;
}
.logan .wp-audio-shortcode.mejs-audio .mejs-container .mejs-controls {
	background: transparent;
}
.logan .mejs-container .mejs-controls > .mejs-playpause-button {
	height: 40px;
	text-indent: 10px;
    width: 60px;
}
.logan .mejs-container .mejs-controls > .mejs-playpause-button button {
	background: transparent;
	height: inherit;
	margin: 0;
	outline: 0!important;
	position: relative;
	width: inherit;
	z-index: 2;
}
.logan .mejs-container .mejs-controls > .mejs-playpause-button::after {
	color: #ffffff;
	content: "\f04b";
	display: block;
	font-family: 'FontAwesome';
	font-size: 12px;
    height: 40px;
    left: 0;
    line-height: 40px;
	position: absolute;
	text-align: center;
    top: 0;
    width: 60px;
    z-index: 0;
}
.logan .mejs-container .mejs-controls > .mejs-playpause-button.mejs-pause::after {
	content: "\f04c";
}
.logan .mejs-container .mejs-controls .mejs-time {
	height: 40px;
	line-height: 40px;
	min-width: 60px;
	padding: 0 10px;
}
.logan .wp-playlist .mejs-container .mejs-controls .mejs-time {
	min-width: 0;
}
.logan .mejs-controls .mejs-time-rail {
	height: 40px;
	padding: 0 10px;
}
.logan .mejs-controls .mejs-time-rail .mejs-time-total.mejs-time-slider {
    background: rgba(255,255,255,.35);
    height: 1px;
    margin: 0;
    top: 19px;
}
.logan .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #dac36d;/*dynamic*/
	height: 1px;
}
.logan .mejs-controls .mejs-time-rail .mejs-time-current::after {
    background: #ffffff;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    display: block;
    height: 11px;
    position: absolute;
    right: -6px;
    top: -5px;
    width: 11px;
}
.logan .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: transparent;
    margin-top: -5px;
}
.logan .mejs-container .mejs-controls .mejs-fullscreen-button,
.logan .mejs-container .mejs-controls .mejs-volume-button {
	height: 40px;
	position: relative;
	width: 40px;
}
.logan .mejs-container .mejs-controls .mejs-fullscreen-button button,
.logan .mejs-container .mejs-controls .mejs-volume-button button {
	background: transparent;
	height: 40px;
	margin: 0;
	position: relative;
	width: 40px;
	z-index: 1;
}
.logan .mejs-container .mejs-controls .mejs-fullscreen-button::after {
	color: #ffffff;
	content: "\f065";
	display: block;
	font-family: 'FontAwesome';
	font-size: 14px;
    height: 40px;
    left: 0;
    line-height: 40px;
	position: absolute;
	text-align: center;
    top: 0;
    width: 40px;
    z-index: 0;
}
.logan .mejs-container .mejs-controls .mejs-fullscreen-button.mejs-unfullscreen::after {
	content: "\f066";
}
.logan .mejs-container .mejs-controls .mejs-volume-button::after {
	color: #ffffff;
	content: "\f028";
	display: block;
	font-family: 'FontAwesome';
	font-size: 14px;
    height: 40px;
    left: 0;
    line-height: 40px;
	position: absolute;
	text-align: center;
    top: 0;
    width: 40px;
    z-index: 0;
}
.logan .mejs-overlay-loading span {
	background: transparent url(images/puff.svg) 50% 50% no-repeat;
}
.logan .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute::after {
	content: "\f026";
	text-indent: -5px;
}
.logan .mejs-controls .mejs-volume-button .mejs-volume-slider {
	background: rgba(0,0,0,.5);
	left: 7px;
}
.logan .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total,
.logan .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
	width: 1px;
}
.logan .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 9px;
    left: 7px;
    width: 9px;
}
.logan .mejs-controls .mejs-time-rail .mejs-time-buffering {
	height: 3px;
	margin-top: -1px;
}
.logan .wp-playlist {
    border: 0;
	color: inherit;
    font-size: .9em;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    position: relative;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container {
	height: 0!important;
	position: static;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls {
	background: transparent;
    display: inline-block;
    float: right;
    margin: -55px 15px 0 0;
   	position: static;
    width: auto;
}
.logan .mejs-controls a.mejs-horizontal-volume-slider {
	height: 40px;
	width: 80px;
}
.logan .mejs-overlay-button {
	background: url(images/bigplay.svg) no-repeat;
	background-position: center!important;
	opacity: 1;
}
.logan .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.logan .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	height: 4px;
	top: 18px;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-time {
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-time.mejs-duration-container::before {
	content: '/';
	display: inline-block;
    padding: 0 5px;
} 	
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-playpause-button {
	left: 15px;
	height: 100px;
	width: 100px;
	position: absolute;
	top: 15px;
	z-index: 2;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-playpause-button button {
	background: none;
	height: inherit;
	margin: 0;
	width: inherit;
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-playpause-button::after {
    background-color: rgba(0,0,0,.5);
    border: 2px solid rgba(255,255,255,.5);
    -moz-border-radius: 50%;
    border-radius: 50%;
	color: #ffffff;
	content: "\f04b";
	display: block;
	font-family: 'FontAwesome';
	font-size: 18px;
    height: 60px;
    left: 20px;
    line-height: 60px;
	position: absolute;
	text-align: center;
	text-indent: 3px;
	text-shadow: 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25);
    top: 20px;
    width: 60px;
	-webkit-transition: border .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: border .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: border .25s cubic-bezier(.33,0,.2,1);
	-o-transition: border .25s cubic-bezier(.33,0,.2,1);
	transition: border .25s cubic-bezier(.33,0,.2,1);
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-playpause-button:hover::after {
    border: 2px solid rgba(255,255,255,.85);
}
.logan .wp-playlist.wp-audio-playlist .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause::after {
	content: "\f04c";
	text-indent: 1px;
}
.logan .wp-playlist .wp-playlist-current-item {
	background: #222324;/*dynamic*/
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	border-width: 0;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	height: 120px;
	margin: 0;
	padding: 15px;
	position: relative;
}
.logan .wp-playlist .wp-playlist-item {
	display: table;
	padding: 0;
	width: 100%;
}
.logan .wp-playlist .wp-playlist-item:first-child:last-child {
	display: none;
}
.logan .wp-playlist .wp-playlist-item > a,
.logan .wp-playlist .wp-playlist-item > div {
	display: table-cell;
    line-height: 18px;
	padding: 12px 20px;
	position: relative;
	vertical-align: middle;
}
.logan .wp-playlist .wp-playlist-item > div {
	text-align: right;
}
.logan .wp-playlist .wp-playlist-item > a.wp-playlist-caption > span.wp-playlist-item-title {
	display: block;
	font-weight: bold;
}
.logan .wp-playlist .wp-playlist-item > a.wp-playlist-caption > span.wp-playlist-item-artist {
	color: #acacaf;/*dynamic*/
	display: block;
	font-weight: normal;
	font-size: .825em;
	text-transform: none;
}
.logan .wp-playlist .wp-playlist-item .wp-playlist-item-length {
	color: #acacaf;/*dynamic*/
	font-weight: normal;
	font-size: .725em;
	text-transform: none;
}
.logan .wp-playlist .wp-playlist-tracks {
	margin: 0;
}
.logan .wp-playlist .wp-playlist-item {
	background: #ffffff;/*dynamic*/
	border: solid rgba(33,34,35,.15);/*dynamic*/
	border-width: 0 1px 1px 1px;
	color: inherit;
}
.logan .wp-playlist .wp-playlist-item.wp-playlist-playing {
	background: rgba(33,34,35,.05);/*dynamic*/
	font-weight: inherit;
}
.logan .wp-playlist.wp-audio-playlist .mejs-controls .mejs-time-rail {
    height: 12px;
    left: 15px;
    padding: 0;
    position: absolute;
    right: 15px;
	top: 130px;
	width: auto!important;
}
.logan .wp-playlist.wp-audio-playlist .mejs-controls .mejs-time-rail .mejs-time-total.mejs-time-slider {
    top: 5px;
	width: 100%!important;
}
.logan .wp-playlist.wp-audio-playlist .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    background: rgba(0,0,0,.25);
    width: 100%;
}
.logan .wp-playlist.wp-audio-playlist .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    background: #ffffff;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-current-item > img {
	border: 1px solid rgba(255,255,255,.2);
	height: 100px;
	max-width: none;
	position: relative;
	width: 100px;
	z-index: 1;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-current-item > .wp-playlist-caption {
	position: relative;
	z-index: 1;
}
.logan .wp-playlist.wp-audio-playlist .mejs-controls .mejs-time-rail .mejs-time-float {
	z-index: 4;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-prev {
	cursor: pointer;
    height: 20px;
    left: 125px;
    position: absolute;
    top: 90px;
	width: 20px;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-prev::after {
	color: #ffffff;
	content: "\f049";
	display: block;
	font-family: 'FontAwesome';
	font-size: 14px;
	height: inherit;
	left: 0;
	line-height: 20px;
	position: absolute;
	text-align: center;
	text-shadow: 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25);
	top: 0;
	width: inherit;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-next {
	cursor: pointer;
    height: 20px;
    left: 155px;
    position: absolute;
    top: 90px;
	width: 20px;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-next::after {
	color: #ffffff;
	content: "\f050";
	display: block;
	font-family: 'FontAwesome';
	font-size: 14px;
	height: inherit;
	left: 0;
	line-height: 20px;
	position: absolute;
	text-align: center;
	text-shadow: 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25);
	top: 0;
	width: inherit;
}
.logan .wp-playlist.wp-audio-playlist .wp-playlist-current-cover {
	background-color: #222324;/*dynamic*/
	background-position: center;
	background-size: cover;
	bottom: -8px;
	left: -8px;
	opacity: .5;
	position: absolute;
	right: -8px;
	top: -8px;
}
.logan .wp-playlist .wp-playlist-item-meta.wp-playlist-item-title {
	color: #ffffff;
	font-family: 'Lato';/*dynamic*/
	font-size: 1.1em;
	font-weight: bold;
}
.logan .wp-playlist .wp-playlist-item-meta.wp-playlist-item-artist {
	color: #ffffff;
	font-family: 'Lato';/*dynamic*/
	font-size: .8em;
}
/*--------------------------------------------------------------
0.4. Typography
--------------------------------------------------------------*/
html {
	font-size: 18px;/*dynamic*/
}
body,
body.compare-products-window {
	font-family: "Merriweather";/*dynamic*/
	font-weight: 400;/*dynamic*/
	line-height: 1.7;/*dynamic*/
	overflow: hidden;
}
@media only screen and (max-width: 991px) {
	body,
	body.compare-products-window {
		word-wrap: break-word;
	}
}
h1, .logan .spu-box h1 {
	font-family: "Merriweather";/*dynamic*/
	font-size: 3.25em;/*dynamic*/
	font-weight: 300;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 3rem 0 1.525rem 0;
	word-break: break-word;
}
h1 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h1:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h1 {
	margin: 3rem 0 1.525rem 0;
}*/
#header-title h1 {
	margin-top: 0;
	word-break: break-word;
}
@media screen and (max-width: 599px) {
	h1 {
		font-size: 2em;/*dynamic*/
	}
}
div > h2, .content-wrap h2, .logan .spu-box h2 {
	font-family: "Merriweather";/*dynamic*/
	font-size: 2.65em;/*dynamic*/
	font-weight: 300;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 3rem 0 1.525rem 0;
	word-break: break-word;
}
h2 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h2:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h2 {
	margin: 3rem 0 1.525rem 0;
}*/

@media screen and (max-width: 599px) {
	h2 {
		font-size: 1.85em;/*dynamic*/
	}
}
h3, .logan .spu-box h3,
.logan .ts-testimonial-frontend-submission-form h1 {
	font-family: "Merriweather";/*dynamic*/
	font-size: 2em;/*dynamic*/
	font-weight: 600;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 3rem 0 1.525rem 0;
	word-break: break-word;
}
h3 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h3:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h3 {
	margin: 3rem 0 1.525rem 0;
}*/
@media screen and (max-width: 599px) {
	h3 {
		font-size: 1.65em;/*dynamic*/
	}
}
h4,
p.cart-empty {
	font-family: "Merriweather";/*dynamic*/
	font-size: 1.5em;/*dynamic*/
	font-weight: 600;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 3rem 0 1.525rem 0;
	word-break: break-word;
}
h4 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h4:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h4 {
	margin: 3rem 0 1.525rem 0;
}*/
h5,
h3#ship-to-different-address,
.woocommerce-account:not(.logged-in) .woocommerce h2 {
	font-family: "Merriweather";/*dynamic*/
	font-size: 1.175em;/*dynamic*/
	font-weight: 600;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 2rem 0 1rem;
	word-break: break-word;
}
h5 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h5:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h5 {
	margin: 1rem 0;
}*/
h6,
.cross-sells h2 {
	font-family: "Merriweather";/*dynamic*/
	font-size: 1em;/*dynamic*/
	font-weight: 600;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 1.5rem 0 1rem;
	word-break: break-word;
}
h6 + .subtitle {
	margin-top: -0.765rem;
}
.wpb_wrapper > h6:first-child {
	margin-top: 0;
}
/*.single-post .entry-content span.content-wrap h6 {
	margin: 1rem 0;
}*/
.hor-lined {
	overflow: hidden;
	padding: .1em 0;
	position: relative;
}
.hor-lined .inner-hor-lined {
	position: relative;
}
.hor-lined .inner-hor-lined::before,
.hor-lined .inner-hor-lined::after {
	background-color: #222324;/*dynamic*/
	content: '';
	height: 1px;
	opacity: .1;
	position: absolute;
	top: 50%;
	width: 10000px;
	z-index: 0;
}
.hor-lined .inner-hor-lined::before {
	left: -10020px;
}
.hor-lined .inner-hor-lined::after {
	left: calc( 100% + 20px );
}
p, .logan .spu-box p,
.content-wrap ul, .content-wrap ol {
	margin-bottom: 1em;
}
.content-wrap li ul, .content-wrap li ol {
	margin-bottom: 0;
}
p:last-child:not(:first-child),
.logan .spu-box p:last-child:not(:first-child) {
	margin-bottom: 0;
}
blockquote,
body.single-post nav.post-navigation {
	font-size: 1.275em;
	line-height: 1.45;
	margin: 2.325em auto;
	max-width: 90%;
	padding: 2.325em 0 1em;
	position: relative;
	text-align: center;
}
body.single-post nav.post-navigation {
	padding: 2.325em 0;
}
blockquote.quote-left {
	float: left;/*ltr*/
	margin: 2.325em 50px 2.325em auto;/*ltr*/
	max-width: 40%;
	text-align: left;/*ltr*/
}
blockquote.quote-right {
	float: right;/*ltr*/
	margin: 2.325em auto 2.325em 50px;/*ltr*/
	max-width: 40%;
	text-align: right;/*ltr*/
}
blockquote p:last-child {
	margin-bottom: 1em!important;
}
blockquote::before,
blockquote::after,
body.single-post nav.post-navigation::before,
body.single-post nav.post-navigation::after {
	border-color: #222324;/*dynamic*/
	border-style: solid;
	border-width: 1px 0;
	content: '';
	display: block;
	height: 5px;
	opacity: .15;
	position: absolute;
	width: 100%;
}
blockquote::before,
body.single-post nav.post-navigation::before {
	top: 0;
}
blockquote::after,
body.single-post nav.post-navigation::after {
	bottom: 0;
}
cite {
	font-size: .85em;
	font-variant: small-caps;
}
.pull-left {
	float: left;
	font-size: .875em;
	font-style: italic;
	margin: 30px 50px 30px -50px;
	max-width: 33.3333%;
	text-align: right;
}
body.has-sidebar .pull-left {
	margin: 30px 50px 30px 0;
}
.pull-left[data-wrap="image"],
img.pull-left {
	margin: 1em 2em 1em -50px;
}
img.alignleft {
	margin: .35em 2em 1em 0;
}
body.has-sidebar img.pull-left {
	margin: 1em 2em 1em 0;
}
hr {
	background-color: #222324;/*dynamic*/
	border-width: 0;
	clear: both;
	display: block;
	height: 1px;
	margin: 2.325em auto!important;
	opacity: .15;
	width: 100%;
}
mark, ins {
	background: #fdf0a0;
	text-decoration: none;
}
pre {
	background: #ffffff;/*dynamic*/
	background: -webkit-linear-gradient(top, #ffffff 98%, rgba(34,35,35,.075) 2%);/*dynamic*/
	background: -moz-linear-gradient(top, #ffffff 98%, rgba(34,35,35,.075) 2%);/*dynamic*/
	background: -ms-linear-gradient(top, #ffffff 98%, rgba(34,35,35,.075) 2%);/*dynamic*/
	background: -o-linear-gradient(top, #ffffff 98%, rgba(34,35,35,.075) 2%);/*dynamic*/
	background: linear-gradient(top, #ffffff 98%, rgba(34,35,35,.075) 2%);/*dynamic*/
	background-size: 2em 2em!important;
	background-position: 0 1em!important;
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	color: rgba(34,35,35,.5);/*dynamic*/
	font-family: "Courier 10 Pitch", Courier, monospace;/*dynamic*/
	font-size: 13px;/*dynamic*/
	line-height: 2em;
	margin-bottom: 1.525em;
	padding: 1em 1em 1em 2em;
	position: relative;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre::before {
	background: rgba(34,35,35,.1);
	content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1em;
}
.pull-right {
	float: right;
	font-size: .875em;
	font-style: italic;
	margin: 30px -50px 30px 50px;
	max-width: 33.3333%;
	text-align: left;
}
body.has-sidebar .pull-right {
	margin: 30px 0 30px 50px;
}
img.alignright {
	margin: .35em 0 1em 2em;
}
.single .hentry .featured-wrap {
	text-align: center;
}
.single.single-jetpack-portfolio .hentry > .featured-wrap,
.single.single-jetpack-portfolio .hentry > .featured-media {
	margin-bottom: 80px;
}
.single.single-jetpack-portfolio .hentry > .featured-wrap > img {
	margin-bottom: 0;
}
.single .hentry .featured-media {
	margin-bottom: 2.325em;
}
.single .hentry .video-player {
	margin-bottom: 2.325em;
	text-align: center;
}
.entry-content img.pull-right {
	margin: .5em -50px 1em 2em;
}
body.has-sidebar .entry-content img.pull-right {
	margin: .5em 0 1em 2em;
}
@media screen and (max-width: 479px) {
	.entry-content .pull-left,
	.entry-content .pull-left img,
	.entry-content .pull-right,
	.entry-content .pull-right img {
		display: block;
		float: none!important;
		margin: 1em auto!important;
		max-width: none!important;
	}
}
@media screen and (max-width: 1280px) {
	.entry-content .pull-left {
		margin: 30px 30px 30px 0;
	}
	.entry-content .pull-right {
		margin: 30px 0 30px 30px;
	}
}

.single-post:not(.single-format-chat):not(.single-format-status):not(.single-format-link):not(.no-first-line) .entry-content > p:first-child::first-line,
.single-post:not(.single-format-chat):not(.single-format-status):not(.single-format-link):not(.no-first-line) .entry-content > .content-wrap:first-child > p::first-line,
body:not(.blog):not(.archive) p.first-line::first-line {
	font-size: 1.275em;
	font-weight: bold;
	font-variant: small-caps;
	line-height: 1.45;
}
.single-post:not(.single-format-chat):not(.single-format-status):not(.single-format-link):not(.no-first-letter) .entry-content > p:first-child::first-letter,
.single-post:not(.single-format-chat):not(.single-format-status):not(.single-format-link):not(.no-first-letter) .entry-content > .content-wrap:first-child > p::first-letter,
body:not(.blog):not(.archive) p.first-letter::first-letter {
	color: rgba(34,35,35,.25);/*dynamic*/
	float: left;
	font-size: 4.6em;
	font-weight: bold;
	line-height: 1;
	margin-right: 15px;/*ltr*/
}
.single .entry-content span.content-wrap,
.single .entry-wrap span.content-wrap {
    display: block;
    margin: 0 auto;
}
.single footer.entry-footer,
.single nav.post-navigation,
.single #comments {
    margin: 2.325em auto 80px;
}
.single-jetpack-portfolio nav.post-navigation .nav-links > div {
	bottom: 20px;
	height: 60px;
	position: absolute;
	width: 40px;
	z-index: 3;
	-webkit-transition: left .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: left .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: left .25s cubic-bezier(.33,0,.2,1);
	-o-transition: left .25s cubic-bezier(.33,0,.2,1);
	transition: left .25s cubic-bezier(.33,0,.2,1);
}
.single-jetpack-portfolio nav.post-navigation .nav-links > div > a {
	color: inherit;
	left: 0;
	position: absolute;
	top: 0;
	width: 40px;
}
.single-jetpack-portfolio nav.post-navigation .nav-previous {
	left: 0;/*ltr*/
}
.single-jetpack-portfolio nav.post-navigation .nav-previous > a::after {
	background: #ffffff;/*dynamic*/
	border: 1px solid rgba(33,34,35,0.1);/*dynamic*/
	border-width: 1px 1px 1px 0;/*ltr*/
	content: '\ead4';/*ltr*/
	display: block;
	font-family: "budicon";
	font-size: 21px;
	line-height: 60px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 40px;
}
.single-jetpack-portfolio nav.post-navigation .nav-next {
	right: 0;/*ltr*/
}
.single-jetpack-portfolio nav.post-navigation .nav-next > a::after {
	background: #ffffff;/*dynamic*/
	border: solid rgba(33,34,35,0.1);/*dynamic*/
	border-width: 1px 0 1px 1px;/*ltr*/
	content: '\ead6';/*ltr*/
	display: block;
	font-family: "budicon";
	font-size: 21px;
	line-height: 60px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 40px;
}
.single-jetpack-portfolio nav.post-navigation .nav-links > div > a > span {
	background: #ffffff;/*dynamic*/
	border: 1px solid rgba(33,34,35,.1);/*dynamic*/
	display: block;
	height: 80px;
	line-height: 60px;
	position: absolute;
	top: -9px;
	white-space: nowrap;
	-webkit-transition: left .25s cubic-bezier(.33,0,.2,1), right .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: left .25s cubic-bezier(.33,0,.2,1), right .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: left .25s cubic-bezier(.33,0,.2,1), right .25s cubic-bezier(.33,0,.2,1);
	-o-transition: left .25s cubic-bezier(.33,0,.2,1), right .25s cubic-bezier(.33,0,.2,1);
	transition: left .25s cubic-bezier(.33,0,.2,1), right .25s cubic-bezier(.33,0,.2,1);
}
.single-jetpack-portfolio nav.post-navigation .nav-links > div > a > span .container-image-and-badge {
	display: inline-block;
	position: static;
}
.single-jetpack-portfolio nav.post-navigation .nav-links > div > a > span img,
.single-jetpack-portfolio nav.post-navigation .nav-links > div > a > span iframe {
	position: absolute;
	top: 10px;
}
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-previous > a > span {
	padding: 10px 80px 10px 50px;/*ltr*/
	left: 0;/*ltr*/
}
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-previous > a > span img,
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-previous > a > span iframe {
	right: 10px;/*ltr*/
}
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-next > a > span {
	padding: 10px 50px 10px 80px;/*ltr*/
	right: 0;/*ltr*/
}
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-next > a > span img,
.single-jetpack-portfolio nav.post-navigation .nav-links > .nav-next > a > span iframe {
	left: 10px;/*ltr*/
}
.logged-in-as {
	display: block;
	padding-bottom: 10px;
}
#commentform p {
	clear: both;
	overflow: hidden;
	position: relative;
}
.single-post nav.post-navigation .nav-links {
	display: table;
	overflow: hidden;
	position: relative;
	table-layout: fixed;
	width: 100%;
}
.single-post nav.post-navigation .nav-links::after {
	background: rgba(33,34,35,.15);/*dynamic*/
	bottom: -15px;
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: -15px;
	width: 1px;
}
.single-post nav.post-navigation .nav-links > div {
	display: table-cell;
	position: relative;
	text-align: left;/*ltr*/
	vertical-align: top;
	width: 50%;
}
@media only screen and (max-width: 500px) {
	.single-post nav.post-navigation .nav-links > div {
		display: block;
		width: 100%;
	}
	.single-post nav.post-navigation .nav-links > div + div {
		margin-top: 2em;
	}
	.single-post nav.post-navigation .nav-links::after {
	    bottom: auto;
	    height: 1px;
	    left: 0;
	    top: 50%;
	    width: 100%;
	}
}
.single-post nav.post-navigation .nav-links > div + div {
	text-align: right;/*ltr*/
}
.single-post nav.post-navigation .nav-links > div a {
	color: inherit;
	display: block;
	padding: 0 50px;
	position: relative;
}
.single-post nav.post-navigation .nav-links > div a::before {
	background: transparent url(images/angle-left-icon.php?fill=222324) no-repeat center;/*dynamic*//*ltr*/
	content: '';
	display: block;
	float: left;/*ltr*/
	margin: 0 0 0 -50px;/*ltr*/
	height: 1.5em;
	width: 50px;
}
.single-post nav.post-navigation .nav-links > div + div a::before {
	background: transparent url(images/angle-right-icon.php?fill=222324) no-repeat center;/*dynamic*//*ltr*/
	float: right;/*ltr*/
	margin: 0 -50px 0 0;/*ltr*/
}
#respond .comment-form-comment textarea {
	margin-bottom: 0;
	padding-bottom: 70px;
	resize: none;
	width: 100%!important;
}
#respond .form-submit {
	bottom: 15px;
	position: absolute;
	right: 15px;
}
#respond .form-submit input[type="submit"] {
	margin: 0;
}
#respond .comment-form-author {
	clear: none;
	float: left;/*ltr*/
	width: calc( 50% - 10px );
}
#respond .comment-form-email {
	clear: none;
	float: right;/*ltr*/
	width: calc( 50% - 10px );
}
.comment-subscription-form {
	font-size: .725em;
	margin: 0;
	text-transform: uppercase;
}
.form-allowed-tags pre {
	margin-top: 1em;
}
/*--------------------------------------------------------------
*
*	1. Body
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.1. Header
--------------------------------------------------------------*/
header#masthead {
	/*left: 0;*/
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 0;
	position: absolute;
	width: 100%;
	z-index: 100;
	-webkit-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1), left .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow .35s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1), left .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-box-shadow .35s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1), left .5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .35s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1), left .5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .35s cubic-bezier(0.23, 1, 0.32, 1);
	transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1), left .5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .35s cubic-bezier(0.23, 1, 0.32, 1);
}
body:not(.transparent-header) header#masthead,
body.transparent-header.sticky-reached header#masthead {
	background-color: #ffffff;/*dynamic*/
	-moz-box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	-webkit-box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	color: #222323;/*dynamic*/
}
body.boxed-layout header#masthead {
	left: auto;
	max-width: 1436px;/*dynamic*//* 1236 + 100 + 100 */
}
@media screen and (max-width: 1679px) {
	body.boxed-layout header#masthead {
		max-width: 1280px;/*dynamic*//* 1080 + 100 + 100 */
	}
}
@media screen and (max-width: 1279px) {
	body.boxed-layout header#masthead {
		max-width: 1000px;/*dynamic*//* 800 + 100 + 100 */
	}
}

#header-spacer {
	display: none;
	position: relative;
	z-index: 2;
}

header#masthead::before {/*dynamic*/
	content: '';
	display: block;
	height: 5px;/*dynamic*/
	position: relative;
	width: 100%;
	z-index: 3;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDE2MDAgNSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGxpbmVhckdyYWRpZW50IGlkPSJoYXQwIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9Ii0xLjQyMTA4NTQ3MTUyMDJlLTE0JSIgeTE9IjUwJSIgeDI9IjEwMCUiIHkyPSI1MCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZTg5YTdjIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSI0OCUiIHN0b3AtY29sb3I9IiNmMmNmNjgiIHN0b3Atb3BhY2l0eT0iMSIvPgo8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3ZGRkY2UiIHN0b3Atb3BhY2l0eT0iMSIvPgogICA8L2xpbmVhckdyYWRpZW50PgoKPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjE2MDAiIGhlaWdodD0iNSIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+);/*dynamic*/
	background-image: -moz-linear-gradient(left, #e89a7c 0%, #f2cf68 48%, #7dddce 100%);/*dynamic*/
	background-image: -o-linear-gradient(left, #e89a7c 0%, #f2cf68 48%, #7dddce 100%);/*dynamic*/
	background-image: -webkit-linear-gradient(left, #e89a7c 0%, #f2cf68 48%, #7dddce 100%); /*dynamic*/
	background-image: linear-gradient(left, #e89a7c 0%, #f2cf68 48%, #7dddce 100%);/*dynamic*/
}
#header-topbar {
	-moz-box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	-webkit-box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	box-shadow: 0 1px 0 rgba(34,35,35,.1);/*dynamic*/
	position: relative;
	margin-top: 0;
	padding: 0 16px;
	width: 100%;
	z-index: 3;
	-webkit-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1);
	-o-transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1);
	transition: margin-top .25s cubic-bezier(.33,0,.2,1), background-color .25s cubic-bezier(.33,0,.2,1), color .25s cubic-bezier(.33,0,.2,1);
}
#header-topbar .top-bar-element a {
	color: inherit;
	text-decoration: none;
}
#topbar-wrap {
	margin: 0 auto;
	max-width: 1236px;
	width: 100%;
}
@media screen and (max-width: 1679px) {
	#topbar-wrap {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#topbar-wrap {
		max-width: 800px;
	}
}
#topbar-wrap > div {
	line-height: 24px;/*dynamic*/
}
#topbar-wrap.floating {
	text-align: center;
}
#topbar-wrap.floating > div {
	display: inline-block!important;
	float: none!important;
	text-align: center;
	vertical-align: top;
}
#topbar-wrap div.top-bar-element {
	color: inherit;
	display: inline-block;
	font-family: "Lato";/*dynamic*/
	font-size: 11px;/*dynamic*/
	font-weight: normal;/*dynamic*/
	padding: 5px 10px;
	text-decoration: none;
	text-transform: none;/*dynamic*/
	vertical-align: top;
	white-space: nowrap;
}
#topbar-wrap div.top-bar-element.element-type-icon {
	padding: 5px 6px;
}
#topbar-wrap div.top-bar-element.element-type-text .top-bar-element-icon,
#topbar-wrap div.top-bar-element.element-type-wishlist .top-bar-element-icon {
	margin-right: .5em;/*ltr*/
}
#topbar-wrap div.top-bar-element.element-type-text + .element-type-icon,
#topbar-wrap div.top-bar-element.element-type-wishlist + .element-type-icon {
	margin-left: 5px;/*ltr*/
}
#topbar-wrap div.top-bar-element.element-type-icon + .element-type-text,
#topbar-wrap div.top-bar-element.element-type-icon + .element-type-wishlist {
	margin-left: 5px;/*ltr*/
}
#topbar-wrap .element-type-icon:last-child {
	margin-right: 5px;/*ltr*/
}
#topbar-wrap div.top-bar-element .top-bar-element-icon::before {
	position: relative;
	top: .1em;
}
#topbar-wrap div.top-bar-element .top-bar-element-icon[class*="facebook"]::before {
	margin-left: -.2em;
	margin-right: .2em;
}
#topbar-wrap > div [class*="logan-icon"] {
	font-size: 14px;
}
#topbar-wrap .wpml_custom_language_top_selector li {
	cursor: pointer;
	list-style-type: none;
	position: relative;
}
#topbar-wrap .wpml_custom_language_top_selector li img {
	display: inline-block;
	margin: 0 5px;
	vertical-align: text-top;
}
#topbar-wrap .wpml_custom_language_top_selector li {
	list-style-type: none;
}
#topbar-wrap .wpml_custom_language_top_selector > li::after {
	content: '\ead7';
	display: inline-block;
	font-family: "budicon";
	font-size: 10px;
	font-style: normal!important;
	left: .2em;/*ltr*/
	line-height: inherit;
	position: relative;
	top: .1em;
	width: 1em;
}
#topbar-wrap .wpml_custom_language_top_selector > li > ul {
	background-color: #ffffff;/*dynamic*/
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	-webkit-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	clip: rect(0px, 1390px, 2000px, -2000px);
	color: #222324;/*dynamic*/
	display: block!important;
	left: -15px;/*ltr*/
	margin: 0;
	opacity: 0;
	position: absolute;
	text-align: left;
	top: -1000000px;
	width: 150px;
	z-index: 1;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}
#topbar-wrap .alignright .wpml_custom_language_top_selector > li > ul {
	left: auto;/*ltr*/
	right: -15px;/*ltr*/
	text-align: right;/*ltr*/
}
#topbar-wrap .wpml_custom_language_top_selector > li:hover > ul {
	opacity: 1;
	top: 29px;/*dynamic*/
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
	transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
}
#topbar-wrap .alignright .wpml_custom_language_top_selector > li > ul > li {
	border-bottom: 1px solid rgba(34, 35, 35, .1);/*dynamic*/
	display: block;
}
#topbar-wrap .alignright .wpml_custom_language_top_selector > li > ul > li:last-child {
	border-bottom: 0;
}
#topbar-wrap .alignright .wpml_custom_language_top_selector > li > ul > li > a {
	display: block;
	padding: 5px 15px;
}
body.sticky-reached #header-topbar {
	margin-top: -40px;/*dynamic*/
}
body.header-classic-centered.sticky-reached #header-topbar,
body.header-classic.sticky-reached #header-topbar {
	margin-top: -94px;/*dynamic*/
}
#header-wrap {
	display: table;
	margin: 0 auto;
	max-width: 1236px;
	width: 100%;
}
body.header-wide #header-wrap,
body.header-wide #ghost-layout,
body.header-wide #topbar-wrap {
	max-width: none!important;
}
@media screen and (max-width: 1679px) {
	#header-wrap {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#header-wrap {
		max-width: 800px;
	}
}
#header-banner {
	display: table;
	position: relative;
	z-index: 0;
}

#header-wrap .site-branding {
	display: table-cell;
	font-size: 26px;/*dynamic*/
	height: 86px;/*dynamic*/
	padding: 0 16px;
	vertical-align: middle;
	-webkit-transition: height 375ms cubic-bezier(.33,0,.2,1), font-size 375ms cubic-bezier(.33,0,.2,1), padding 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: height 375ms cubic-bezier(.33,0,.2,1), font-size 375ms cubic-bezier(.33,0,.2,1), padding 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: height 375ms cubic-bezier(.33,0,.2,1), font-size 375ms cubic-bezier(.33,0,.2,1), padding 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: height 375ms cubic-bezier(.33,0,.2,1), font-size 375ms cubic-bezier(.33,0,.2,1), padding 375ms cubic-bezier(.33,0,.2,1);
	transition: height 375ms cubic-bezier(.33,0,.2,1), font-size 375ms cubic-bezier(.33,0,.2,1), padding 375ms cubic-bezier(.33,0,.2,1);
}
body.sticky-reached:not(.header-side) #header-wrap .site-branding {
	font-size: 22px;/*dynamic*/ /* rounded (60px/86px)*30px*/
	height: 60px;/*dynamic*/
}
#header-wrap .logo_wrap {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: table-cell;
	height: inherit;
	padding-right: 12px;/*ltr*/
	position: relative;
	vertical-align: middle;
	-webkit-transition: max-width 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: max-width 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: max-width 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: max-width 375ms cubic-bezier(.33,0,.2,1);
	transition: max-width 375ms cubic-bezier(.33,0,.2,1);
}
#header-wrap .logo_wrap img {
	max-height: 100%;
	float: left;
	left: 0;
	top: auto;
	-webkit-transition: opacity 375ms cubic-bezier(.33,0,.2,1), max-height 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity 375ms cubic-bezier(.33,0,.2,1), max-height 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity 375ms cubic-bezier(.33,0,.2,1), max-height 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: opacity 375ms cubic-bezier(.33,0,.2,1), max-height 375ms cubic-bezier(.33,0,.2,1);
	transition: opacity 375ms cubic-bezier(.33,0,.2,1), max-height 375ms cubic-bezier(.33,0,.2,1);
}
#header-wrap .logo_wrap.logo-count-2 img:first-child {
	opacity: 0;
}
#header-wrap .logo_wrap.logo-count-2 img:last-child {
	opacity: 1;
	position: absolute;
}
#header-wrap .site-branding-wrap {
	display: table-cell;
	text-align: left;/*ltr*/
	vertical-align: middle;
}
#header-wrap .site-title {
	font-family: "Lato";/*dynamic*/
	font-size: 1em;
	font-weight: 700;/*dynamic*/
	letter-spacing: .15em;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: 0;
	text-transform: uppercase;/*dynamic*/
	-webkit-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: color 375ms cubic-bezier(.33,0,.2,1);
	transition: color 375ms cubic-bezier(.33,0,.2,1);
}
#header-wrap .site-title a {
	color: inherit;
	text-decoration: none;
}
#header-wrap .site-description {
	color: inherit;
	font-family: "Lato";/*dynamic*/
	font-size: 0.305em;/*dynamic*/
	line-height: 1;/*dynamic*/
	margin: .25em 0 0;
	text-transform: uppercase;/*dynamic*/
	white-space: nowrap;
	-webkit-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: color 375ms cubic-bezier(.33,0,.2,1);
	transition: color 375ms cubic-bezier(.33,0,.2,1);
}
#header-wrap .site-description a {
	color: inherit;
	text-decoration: none;
}
/*--------------------------------------------------------------
1.1.1 Site navigation
--------------------------------------------------------------*/
#nav-wrap {
	display: table;
	position: absolute;
	right: 0;
	top: 0;
}
#nav-wrap > nav {
	display: table-cell;
	position: relative;
}
nav#site-navigation {
	display: table;
	z-index: 1;
}

/* functions.php */

/*@media screen and (max-width: 1679px) {
	header#masthead nav#site-navigation > div > ul li > ul,
	header#masthead nav#site-navigation > div > ul > li > div,
	header#masthead nav#site-navigation > div > div[role="list"] div[role="listitem"] > div[role="list"],
	header#masthead nav#site-navigation > div > div[role="list"] > div[role="listitem"] > div {
		width: 180px;
	}
}
@media screen and (max-width: 1279px) {
	header#masthead nav#site-navigation > div > ul li > ul,
	header#masthead nav#site-navigation > div > ul > li > div,
	header#masthead nav#site-navigation > div > div[role="list"] div[role="listitem"] > div[role="list"],
	header#masthead nav#site-navigation > div > div[role="list"] > div[role="listitem"] > div {
		width: 133px;
	}
}*/
nav#site-navigation aside .textwidget h1:first-child,
nav#site-navigation aside .textwidget h2:first-child,
nav#site-navigation aside .textwidget h3:first-child,
nav#site-navigation aside .textwidget h4:first-child,
nav#site-navigation aside .textwidget h5:first-child,
nav#site-navigation aside .textwidget h6:first-child,
div#nav-appended aside .textwidget h1:first-child,
div#nav-appended aside .textwidget h2:first-child,
div#nav-appended aside .textwidget h3:first-child,
div#nav-appended aside .textwidget h4:first-child,
div#nav-appended aside .textwidget h5:first-child,
div#nav-appended aside .textwidget h6:first-child {
	margin-top: 0;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 206px;
}
header#masthead nav#site-navigation [data-cols="1"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="1"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 100%;
}
header#masthead nav#site-navigation [data-cols="2"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 50%;
}
header#masthead nav#site-navigation .wide_width [data-cols="2"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 50%;
}
header#masthead nav#site-navigation [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 33.33%;
}
header#masthead nav#site-navigation .wide_width [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 33.33%;
}
header#masthead nav#site-navigation [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 25%;
}
header#masthead nav#site-navigation .wide_width [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 25%;
}
header#masthead nav#site-navigation [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 20%;
}
header#masthead nav#site-navigation .wide_width [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 20%;
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	max-width: 16.66%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="1"] {
	width: 16.66%;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 412px;/*dynamic*/
}
header#masthead nav#site-navigation [data-cols="2"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="2"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 100%;
}
header#masthead nav#site-navigation [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	max-width: 75%;
}
header#masthead nav#site-navigation .wide_width [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 75%;
}
header#masthead nav#site-navigation [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	max-width: 50%;
}
header#masthead nav#site-navigation .wide_width [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 50%;
}
header#masthead nav#site-navigation [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	max-width: 40%;
}
header#masthead nav#site-navigation .wide_width [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 40%;
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	max-width: 33.33%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="2"] {
	width: 33.33%;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	width: 618px;/*dynamic*/
}
header#masthead nav#site-navigation [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="3"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	width: 100%;
}
header#masthead nav#site-navigation [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	max-width: 75%;
}
header#masthead nav#site-navigation .wide_width [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	width: 75%;
}
header#masthead nav#site-navigation [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	max-width: 60%;
}
header#masthead nav#site-navigation .wide_width [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	max-width: 60%;
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	max-width: 50%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="3"] {
	width: 50%;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	width: 824px;/*dynamic*/
}
header#masthead nav#site-navigation [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="4"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	width: 100%;
}
header#masthead nav#site-navigation [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	max-width: 80%;
}
header#masthead nav#site-navigation .wide_width [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	width: 80%;
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	max-width: 66.66%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="4"] {
	width: 66.66%;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="5"] {
	width: 1030px;/*dynamic*/
}
header#masthead nav#site-navigation [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="5"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="5"] .pixmenu-wrap-row > div[role="list"][data-col="5"] {
	width: 100%;
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="5"] {
	max-width: 83.33%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="5"] {
	width: 83.33%;
}
header#masthead nav#site-navigation .pixmenu-wrap-row > div[role="list"][data-col="6"] {
	width: 1236px;/*dynamic*/
}
header#masthead nav#site-navigation [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="6"] {
	max-width: 100%;
}
header#masthead nav#site-navigation .wide_width [data-cols="6"] .pixmenu-wrap-row > div[role="list"][data-col="6"] {
	width: 100%;
}
/*--------------------------------------------------------------
1.1.1.2 Mobile navigation
--------------------------------------------------------------*/
/* look in functions.php */

/*--------------------------------------------------------------
1.1.2 Top cart
--------------------------------------------------------------*/
#header-cart {
	position: absolute;
	right: 60px;/*ltr*/
	text-align: center;
	z-index: 2;
}

/* functions.php */

#top-cart-icon {
	color: inherit;
	display: inline-block;
	font-size: 20px;
	line-height: 86px;/*dynamic*/
	margin: auto;
	padding: 0 10px;
	position: relative;
	text-decoration: none;
	vertical-align: top;
	width: 50px;
	z-index: 1;
	-webkit-transition: line-height 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: line-height 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: line-height 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: line-height 375ms cubic-bezier(.33,0,.2,1);
	transition: line-height 375ms cubic-bezier(.33,0,.2,1);
}
body.sticky-reached:not(.header-side) #top-cart-icon {
	line-height: 60px;/*dynamic*/
}
#top-cart-icon svg {
	fill: #222324;/*dynamic*/
	left: 50%;
	margin: -21px 0 0 -14px;
	position: absolute;
	top: 50%;
	-webkit-transition: fill 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: fill 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: fill 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: fill 375ms cubic-bezier(.33,0,.2,1);
	transition: fill 375ms cubic-bezier(.33,0,.2,1);
}
#top-cart-amount {
	display: block;
	float: left;
	font-family: "Lato";/*dynamic*/
	font-size: 11px;/*dynamic*/
	font-weight: normal;/*dynamic*/
	margin: auto;
	text-align: center;
	width: 100%;
	-webkit-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: color 375ms cubic-bezier(.33,0,.2,1);
	transition: color 375ms cubic-bezier(.33,0,.2,1);
}

/* functions.php */

#top-mini-cart {
	background: #ffffff;/*dynamic*/
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	-webkit-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	clip: rect(0px, 1390px, 2000px, -2000px);
	color: #222324;/*dynamic*/
	display: block;
	font-size: .9rem;
	line-height: 1.4;
	margin: 0;
	opacity: 0;
	position: absolute;
	right: -1px;/*ltr*/
	text-align: left;
	top: -1000000px;
	width: 300px;
	z-index: 1;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}
@media screen and (min-width: 501px) {
	#header-cart:hover #top-mini-cart {
		opacity: 1;
		top: 86px;/*dynamic*/
		-webkit-transition: margin-top 375ms cubic-bezier(.33,0,.2,1), opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
		-moz-transition: margin-top 375ms cubic-bezier(.33,0,.2,1), opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
		-ms-transition: margin-top 375ms cubic-bezier(.33,0,.2,1), opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
		-o-transition: margin-top 375ms cubic-bezier(.33,0,.2,1), opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
		transition: margin-top 375ms cubic-bezier(.33,0,.2,1), opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .25s;
	}
}
body.sticky-reached:not(.header-side) #header-cart #top-mini-cart {
	margin-top: -26px;/*dynamic*//* 86px - 60px */
}

/* functions.php */

#top-mini-cart .product_list_widget li,
.widget_shopping_cart .product_list_widget li {
	background: #ffffff;/*dynamic*/
	border-bottom: 1px solid rgba(34,35,35,.1);/*dynamic*/
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 15px 30px 15px 45px;
	position: relative;
	width: 100%;
	-webkit-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: background 375ms cubic-bezier(.33,0,.2,1);
	transition: background 375ms cubic-bezier(.33,0,.2,1);
}
.widget_shopping_cart .product_list_widget li {
	padding: 15px 0 15px 15px;
}
.widget_shopping_cart .product_list_widget li:first-child {
	padding-top: 0;
}
#top-mini-cart .product_list_widget li:hover {
	background: #f6f6f6;/*dynamic*/
}
#top-mini-cart a,
.widget_shopping_cart .product_list_widget a,
.shop_table .product-name a {
	color: #c6ac5e;
	font-weight: bold;
	text-decoration: none;
}
#top-mini-cart .product_list_widget li a.remove,
.widget_shopping_cart .product_list_widget li a.remove {
	-moz-border-radius: 8px;
	border-radius: 8px;
	color: #343532;
	display: block;
	font-size: 16px;
	height: 16px;
	left: 20px;
	line-height: 16px;
	opacity: .75;
	position: absolute;
	text-align: center;
	top: 16px;
	width: 16px;
}
.widget_shopping_cart .product_list_widget li a.remove {
	left: -2px;
	top: 20px;
}
.widget_shopping_cart .product_list_widget li:first-child a.remove {
	top: 5px;
}
#top-mini-cart .product_list_widget li a img,
.widget_shopping_cart .product_list_widget li a img {
	-moz-border-radius: 30px;
	border-radius: 30px;
	float: right;/*ltr*/
	margin-left: 15px;/*ltr*/
	position: relative;
	top: auto;
	width: 60px;
}
#top-mini-cart .product_list_widget li span.quantity,
.widget_shopping_cart .product_list_widget li span.quantity {
	clear: left;/*ltr*/
	display: block;
}
#top-mini-cart p.total {
	border-bottom: 1px solid rgba(34,35,35,.1);/*dynamic*/
	float: left;
	font-weight: bold;
	margin-bottom: 0;
	padding: 20px 30px;
	text-align: center;
	width: 100%;
}
.widget_shopping_cart p.total {
	float: left;
	font-weight: bold;
	margin-bottom: 0;
	padding: 20px 20px 0;
	text-align: center;
	width: 100%;
}
#top-mini-cart p.total .amount,
.widget_shopping_cart p.total .amount {
	background: #ffffff;/*dynamic*/
	font-size: 1.15em;
	opacity: .5;
}
#top-mini-cart .amount,
.widget_shopping_cart .amount {
	display: inline!important;
}
#top-mini-cart p.buttons {
	background: #f6f6f6;/*dynamic*/
	float: left;
	font-weight: bold;
	margin-bottom: 0;
	width: 100%;
}
#top-mini-cart p.buttons a {
	background: transparent!important;
	border: 0!important;
	color: inherit!important;
	font-size: 12px!important;
	margin: 0;
	padding: 15px 30px;
	position: relative;
	text-align: center;
	width: 50%;
}
#top-mini-cart p.buttons a:first-child,
.widget_shopping_cart p.buttons a:first-child {
	float: left;/*ltr*/
}
#top-mini-cart p.buttons a:first-child:before,
.widget_shopping_cart p.buttons a:first-child:before {
	background: rgba(34,35,35,.05);/*dynamic*/
	bottom: 0;
	content: '';
	display: block;
	right: 0;/*ltr*/
	position: absolute;
	top: 0;
	width: 1px;
	-webkit-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: color 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: color 375ms cubic-bezier(.33,0,.2,1);
	transition: color 375ms cubic-bezier(.33,0,.2,1);
}
#top-mini-cart p.buttons a:last-child,
.widget_shopping_cart p.buttons a:last-child {
	float: right;/*ltr*/
}
#top-mini-cart dl.variation,
.widget_shopping_cart dl.variation,
.shop_table dl.variation {
    font-size: .75em;
    line-height: 1.5;
    margin: 5px 0;
    text-transform: uppercase;
}
#top-mini-cart dl.variation dt,
.widget_shopping_cart dl.variation dt,
.shop_table dl.variation dt {
	clear: left;/*ltr*/
	float: left;/*ltr*/
	font-weight: bold;
	margin-right: .1em;/*ltr*/
}
#top-mini-cart dl.variation dd,
#top-mini-cart dl.variation dd p,
.widget_shopping_cart dl.variation dd,
.widget_shopping_cart dl.variation dd p,
.shop_table dl.variation dd,
.shop_table dl.variation dd p {
	float: left;/*ltr*/
}
/*--------------------------------------------------------------
1.1.3 Search form
--------------------------------------------------------------*/
#header-search {
	position: absolute;
	right: 20px;/*ltr*/
	text-align: center;
	z-index: 1;
}

#top-search-icon {
	color: inherit;
	display: block;
	font-size: 16px;
	line-height: 86px;/*dynamic*/
	padding: 0 10px;
	text-decoration: none;
	-webkit-transition: height 375ms cubic-bezier(.33,0,.2,1), line-height 375ms cubic-bezier(.33,0,.2,1), color 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: height 375ms cubic-bezier(.33,0,.2,1), line-height 375ms cubic-bezier(.33,0,.2,1), color 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: height 375ms cubic-bezier(.33,0,.2,1), line-height 375ms cubic-bezier(.33,0,.2,1), color 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: height 375ms cubic-bezier(.33,0,.2,1), line-height 375ms cubic-bezier(.33,0,.2,1), color 375ms cubic-bezier(.33,0,.2,1);
	transition: height 375ms cubic-bezier(.33,0,.2,1), line-height 375ms cubic-bezier(.33,0,.2,1), color 375ms cubic-bezier(.33,0,.2,1);
}
body.sticky-reached:not(.header-side) #top-search-icon {
	height: 60px;/*dynamic*/
	line-height: 60px;/*dynamic*/
}
#top-search-icon::before {
	content: "\eaba";
	display: block;
	font-family: "budicon";
	font-style: normal!important;
}
#top-search-form {
	background: #ffffff;/*dynamic*/
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	-webkit-box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	box-shadow: 0 0 10px rgba(34,35,35,.1);/*dynamic*/
	clip: rect(0px, 1390px, 2000px, -2000px);
	color: #222324;/*dynamic*/
	display: block;
	font-size: .9rem;
	margin: 0;
	opacity: 0;
	padding: 15px 30px;
	position: absolute;
	right: 0;/*ltr*/
	text-align: left;
	top: -1000000px;
	width: 300px;
	z-index: 1;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	transition: opacity .25s cubic-bezier(.33,0,.2,1) .25s, top .01s .5s;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}
#top-search-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	font-size: inherit;
	margin: 0;
}
body.sticky-reached:not(.header-side):not(.header-classic) #header-search #top-search-form {
	margin-top: -26px;/*dynamic*//* 86px - 60px */
}

/*--------------------------------------------------------------
1.1.4 Sliding bar
--------------------------------------------------------------*/
#hamburger-side-menu {
	cursor: pointer;
	display: block;
	height: 86px;/*dynamic*/
	position: absolute;
	width: 75px;
	z-index: 1;
	-webkit-transition: height 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: height 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: height 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: height 375ms cubic-bezier(.33,0,.2,1);
	transition: height 375ms cubic-bezier(.33,0,.2,1);
}
body.sticky-reached #hamburger-side-menu {
	height: 60px;/*dynamic*/
}
.hamburger-side-bar,
.hamburger-side-bar:after,
.hamburger-side-bar:before {
	height: 18px;
	width: 2px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

}
.hamburger-side-bar {
	background: #222323;/*dynamic*/
	left: 50%;
	margin: -9px 0 0 -1px;
	position: absolute;
	top: 50%;
	-webkit-transition: background .5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: background .5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: background .5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: background .5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: background .5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-side-bar.animate {
	background: rgba(255, 255, 255, 0);
}
.hamburger-side-bar:before {
	background: #222323;/*dynamic*/
	content: "";
	position: absolute;
	right: 5px;
	top: 0;
	-webkit-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -ms-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -o-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-side-bar:after {
	background: #222323;/*dynamic*/
	content: "";
	left: 5px;
	position: absolute;
	top: 0;
	-webkit-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -ms-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -o-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-side-bar.animate:after {
	-webkit-transform:translatex(-5px) rotate(45deg);
	-moz-transform: translatex(-5px) rotate(45deg);
	-ms-transform: translatex(-5px) rotate(45deg);
	-o-transform: translatex(-5px) rotate(45deg);
	transform: translatex(-5px) rotate(45deg);
	-webkit-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -ms-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), -o-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: top .5s cubic-bezier(0.23, 1, 0.32, 1), transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-side-bar.animate:before {
	-webkit-transform: translatex(5px) rotate(-45deg);
	-moz-transform: translatex(5px) rotate(-45deg);
	-ms-transform: translatex(5px) rotate(-45deg);
	-o-transform: translatex(5px) rotate(-45deg);
	transform: translatex(5px) rotate(-45deg);
	-webkit-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -ms-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), -o-transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: bottom .5s cubic-bezier(0.23, 1, 0.32, 1), transform .5s cubic-bezier(0.23, 1, 0.32, 1), background.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#sliding-bar {
	background: #ffffff;/*dynamic*/
	bottom: 0;
	color: #222323;/*dynamic*/
	left: -1000000px;
	opacity: 0;
	padding: 0;
	padding: 50px 130px 50px 30px;
	position: fixed;
	top: 0;
	width: 400px;
	z-index: 0;
	-webkit-transition: opacity .01s .5s;
	-moz-transition: opacity .01s .5s;
	-ms-transition: opacity .01s .5s;
	-o-transition: opacity .01s .5s;
	transition: opacity .01s .5s;
}
body.slided #sliding-bar {
	opacity: 1;
	-webkit-transition: opacity .01s;
	-moz-transition: opacity .01s;
	-ms-transition: opacity .01s;
	-o-transition: opacity .01s;
	transition: opacity .01s;
}
body.sided #sliding-bar {
	display: none;
}
body.logged-in.admin-bar #sliding-bar {
	top: 32px;
}
/*--------------------------------------------------------------
1.2. Page
--------------------------------------------------------------*/
#page_holder {
	margin: 0 auto;
	position: relative;
}
#page {
	background: #ffffff;/*dynamic*/
	-moz-box-shadow: 0 0 0 rgba(34,35,35,.15);/*dynamic*/
	-webkit-box-shadow: 0 0 0 rgba(34,35,35,.15);/*dynamic*/
	box-shadow: 0 0 0 rgba(34,35,35,.15);/*dynamic*/
	left: 0;
	margin: 0;
	max-width: inherit;
	overflow: hidden;
	position: relative;
	z-index: 1;
	-webkit-transition: margin .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-box-shadow .5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-filter .5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: margin .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-box-shadow .5s cubic-bezier(0.23, 1, 0.32, 1), -moz-filter .5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: margin .5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .5s cubic-bezier(0.23, 1, 0.32, 1), -ms-filter .5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: margin .5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .5s cubic-bezier(0.23, 1, 0.32, 1), -o-filter .5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: margin .5s cubic-bezier(0.23, 1, 0.32, 1), border .5s cubic-bezier(0.23, 1, 0.32, 1), filter .5s cubic-bezier(0.23, 1, 0.32, 1);
}
body.boxed-layout #page_holder {
	-moz-box-shadow: 0 0 8px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.25);
	box-shadow: 0 0 8px rgba(0,0,0,.25);
	max-width: 1436px;/*dynamic*//* 1236 + 100 + 100 */
}
body.slided #page {
	-moz-box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
	-webkit-box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
	box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
	margin-left: 300px;
	margin-right: -300px;
}
@media screen and (max-width: 860px) {
	body.sided.page-template-page-left-sidebar #page {
		-moz-box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		-webkit-box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		box-shadow: -10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		margin-left: 300px;
		margin-right: -300px;
	}
	body.sided.page-template-page-right-sidebar #page {
		-moz-box-shadow: 10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		-webkit-box-shadow: 10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		box-shadow: 10px 0 20px rgba(34,35,35,.15);/*dynamic*/
		margin-left: -300px;
		margin-right: 300px;
	}
}
#ghost-layout,
#ghost-layout-for-sliding {
	margin: 0 auto;
	position: relative;
	max-width: 1236px;/*dynamic*/
	width: 100%;
	z-index: -10000;
}
body.slided #ghost-layout,
body.sided.page-template-page-left-sidebar #ghost-layout {
	left: 300px;
}
body.sided.page-template-page-right-sidebar #ghost-layout {
	right: 300px;
}
@media screen and (max-width: 1679px) {
	#ghost-layout,
	#ghost-layout-for-sliding {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#ghost-layout,
	#ghost-layout-for-sliding {
		max-width: 800px;
	}
}
/*--------------------------------------------------------------
1.3. Content
--------------------------------------------------------------*/
#content {
	position: relative;
	width: 100%;
}
#content::before, #content::after {
	content: "";
	display: table;
}
#content::after {
	clear: both;
}

#content section.boxed {
	margin: 0 auto;
	width: 100%;
}
#container {
	background-color: inherit;
	display: block;
	float: left;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 2;
}
#page-wrap {
	margin: auto;
	max-width: 1236px;
	padding: 80px 0 0;
	position: relative;
	width: calc( 100% - 50px );
}
@media screen and (max-width: 800px) {
	#page-wrap {
		padding: 40px 0 0;
	}
}
@media screen and (max-width: 1679px) {
	#page-wrap {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#page-wrap {
		max-width: 800px;
	}
}
/* 404 */
body.error404 #container,
body.search-no-results #container {
	background-repeat: no-repeat;
	padding: 50px 0 120px;
}
.error-404.not-found,
section.no-results.not-found {
	text-align: center;
}
.error-404.not-found #image_404 {
	margin-bottom: 40px;
	opacity: 0.15;
}
.error-404.not-found h2,
section.no-results.not-found h2 {
	font-weight: bold;
}
.error-404.not-found hr,
section.no-results.not-found hr {
	max-width: 600px;
}
.error-404.not-found form#searchform,
section.no-results.not-found form#searchform {
	margin: 50px auto;
	max-width: 600px;
	position: relative;
}
.error-404.not-found form#searchform::after,
section.no-results.not-found form#searchform::after {
    content: '\eaba';
    font-family: 'budicon';
    line-height: 3.25rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 3.25rem;
}
.error-404.not-found form#searchform input[type="submit"],
section.no-results.not-found form#searchform input[type="submit"] {
	cursor: pointer;
    height: 3.25rem;
    margin: 0;
	position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
}
/* Search result */
body.search-results .search-list {
	margin-bottom: 80px;
}
body.search-results .search-list > article:not(:last-child) {
    border-bottom: 1px solid rgba(33,34,35,.1);/*dynamic*/
    padding-bottom: 1.5em;
    margin-bottom: 2em;
}
body.search-results .search-list > article > .alignleft:first-child {
    margin-right: 20px;/*ltr*/
	width: 100px;
}
body.search-results .search-list .entry-title {
	font-weight: bold;
	margin-bottom: 1em;
}
body.search-results .search-list > article.has-post-thumbnail > .alignleft:last-child {
	max-width: calc(100% - 120px);
}
body.search-results .search-list .search-results-entry small.post-type {
	display: block;
	font-style: italic;
	margin-top: -1em;
	text-transform: lowercase;
}

body.no-page-title #page-wrap {
	padding-top: 0;
}
/*body #primary {
	margin-bottom: 80px;
}*/
#main > .hentry > .entry-content > *:last-child:not(.vc_row):not(.vc_row-full-width) {
	margin-bottom: 80px;
}
body.page-template-page-narrow #primary {
	margin: auto;
	position: relative;
	width: 75%;
}
body.page-template-page-right-sidebar #primary {
	float: left;/*ltr*/
	padding: 0 50px 0 0;/*ltr*/
	position: relative;
	width: 75%;
}
body.page-template-page-right-sidebar #primary::before {
	background-color: #ffffff;/*dynamic*/
    bottom: 0;
	content: '';
    display: block;
    right: -3500px;
    position: absolute;
    top: 0;
    width: 3500px;
    z-index: 2;
}
body.page-template-page-left-sidebar #primary {
	float: right;/*ltr*/
	padding: 0 0 0 80px;/*ltr*/
	position: relative;
	width: 75%;
}
body.page-template-page-left-sidebar #primary::before {
	background-color: #ffffff;/*dynamic*/
    bottom: 0;
	content: '';
    display: block;
    left: -3500px;
    position: absolute;
    top: 0;
    width: 3500px;
    z-index: 1;
}
body.none-sidebar-selected:not(.page-template-default) #primary {
	float: none!important;
	margin: auto!important;
	padding-left: 0!important;
	padding-right: 0!important;
}
body.logan:not(.page-template-default):not(.page-template-page-narrow) #primary:first-child {
	padding-top: 40px;
}
#primary {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 860px) {
	body.page-template-page-narrow #primary,
	body.page-template-page-right-sidebar #primary,
	body.page-template-page-left-sidebar #primary {
		float: none;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
}
#primary {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 800px) {
	#primary {
		padding-left: 0;
		padding-right: 0;
	}
}
#pix-share-start {
	border: solid rgba(33,34,35,.1);/*dynamic*/
    border-width: 1px 0;
	margin: 100px auto 50px;
	max-width: 1024px;
	padding: 20px 0;
	position: relative;
	text-align: center;
	width: calc( 100% - 50px );
}
@media screen and (max-width: 1679px) {
	#pix-share-start {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#pix-share-start {
		max-width: 800px;
	}
}
#pix-share-start .likeThis {
	border: 1px solid rgba(33,34,35,.1);/*dynamic*/
	-moz-border-radius: 50%;
	border-radius: 50%;
	height: 80px;
	line-height: 80px;
	width: 80px;
}
#pix-share-start .likeThis::before {
	color: #c6ac5e;/*dynamic*/
    font-size: 1.1em;
	margin-top: -.125em;
}
#pix-share-start .likeThis.done::before {
	content: '\f004';
}
#pix-share-start > div {
	display: inline-block;
	float: none;
	padding-bottom: 10px;
	padding-top: 10px;
	vertical-align: middle;
}
#pix-share-start > .liking-box {
	margin-top: -.25em;
}
#pix-share-start > div + div {
	margin-left: 30px;/*ltr*/
}
#pix-share-start .sd-content ul,
#pix-share-start .sd-content li {
	margin-bottom: 0!important
}

/*--------------------------------------------------------------
1.3.2 Post header
--------------------------------------------------------------*/
#header-title {
	background: inherit;
	display: table;
    min-height: 320px;
	overflow: hidden;
    padding: 120px 0 100px;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 3;
}
@media screen and (max-width: 800px) {
	#header-title {
	    padding: 60px 0 50px;
	}
}
#header-title::after {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
#header-title .header-cell {
	display: table-cell;
	height: 100%;
	max-width: 1236px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
	vertical-align: middle;
	width: 100%;
	z-index: 2;
}
@media screen and (max-width: 800px) {
	#header-title .header-cell {
		padding-left: 25px;
		padding-right: 25px;
	}
}

#header-title div[data-parallax-o-fade] {
    bottom: 0px;
    display: table;
    height: inherit;
    padding: inherit;
	position: absolute;
    top: 0px;
    width: 100%;
    z-index: 2;
}
#parrallax_wrap {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
}
#header_parallax_bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	position: absolute;
	height: 100%;
	top: 0;
	width: 100%;
	z-index: 0;
}
#header_ext_video {
	left: 0;
	position: absolute;
	height: 100%;
	top: 0;
	width: 100%;
	z-index: 0;
}
#header_ext_video iframe {
	position: relative;
}
#header-title .header-wrap {
	margin: auto;
	max-width: 1236px;
	width: 100%;
}
@media screen and (max-width: 1679px) {
	#header-title .header-wrap {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	#header-title .header-wrap {
		max-width: 800px;
	}
}

#header-title + .header-title-border {
	background: #222324;
	display: block;
	height: 1px;
	max-width: 1236px;
	margin: -1px auto 0;
	opacity: .1;
	position: relative;
	vertical-align: top;
	width: calc( 100% - 50px );
	z-index: 3;
}
@media screen and (max-width: 1679px) {
	#header-title + .header-title-border {
		max-width: 1080px;
	}
}
#header_parallax_bg .mejs-layers,
#header_parallax_bg .mejs-controls,
#header_parallax_bg .mejs-clear {
    display: none!important;
}
#header_parallax_bg video {
	height: 100%;
	width: 100%;
}
nav#breadcrumbs,
.single-post #header-title .entry-meta {
	bottom: 10px;
	font-size: .685em;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}
nav#breadcrumbs > div {
	margin: auto;
	max-width: 1236px;
	width: calc( 100% - 50px );
}
@media screen and (max-width: 1679px) {
	nav#breadcrumbs > div {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	nav#breadcrumbs > div {
		max-width: 800px;
	}
}
.single .entry-meta {
	bottom: 15px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}
@media screen and (max-width: 800px) {
	nav#breadcrumbs {
		left: 25px;
		width: calc( 100% - 50px );
	}
}

nav#breadcrumbs a {
	color: inherit;
	text-decoration: none;
}
.cat-links {
	color: #c6ac5e;/*dynamic*/
	display: block;
	font-family: "Lato";/*dynamic*/
	font-size: 13px;/*dynamic*/
	font-weight: bold;/*dynamic*/
	position: relative;
	text-transform: uppercase;/*dynamic*/
}
.cat-links a {
	color: inherit;
	text-decoration: none;
}
.post-list {
	-webkit-transition: height .4s cubic-bezier(.33,0,.2,1);
	-moz-transition: height .4s cubic-bezier(.33,0,.2,1);
	-ms-transition: height .4s cubic-bezier(.33,0,.2,1);
	-o-transition: height .4s cubic-bezier(.33,0,.2,1);
	transition: height .4s cubic-bezier(.33,0,.2,1);
}
.post-list .post-list-overlay-gutter {
	background: #ffffff;/*dynamic*/
	height: 100%;
	left: 0;/*ltr*/
	position: absolute;
	top: 0;
	z-index: 1;
}
.post-list .slick-list {
	z-index: 0;
}
.post-list.slick-slider .slick-arrow,
.gallery-shortcode-slideshow.slick-slider .slick-arrow,
.wpb_gallery_slidesslick.slick-slider .slick-arrow {
	background: transparent url(images/angle-left-icon.php?fill=222324) no-repeat center;/*dynamic*/
	background-size: 16px;
	border: 0;
	cursor: pointer;
	display: block;
	height: 30px;
	right: 30px;/*ltr*/
	overflow: hidden;
	position: absolute;
	text-indent: -9999px;
	top: -40px;
	width: 30px;
	z-index: 2;
}
.post-list.slick-slider .slick-arrow.slick-next,
.gallery-shortcode-slideshow.slick-slider .slick-arrow.slick-next,
.wpb_gallery_slidesslick.slick-slider .slick-arrow.slick-next {
	background-image: url(images/angle-right-icon.php?fill=222324);/*dynamic*/
	left: auto;/*ltr*/
	right: 0;/*ltr*/
}
.post-list .cat-links {
	font-size: 11px;
	padding: 0 0 5px;
}
.post-list .has-post-thumbnail .cat-links,
.post-list .format-audio .cat-links,
.post-list .format-image .cat-links,
.post-list .format-video .cat-links,
.post-list .format-gallery .cat-links {
	padding: 1em 0 5px;
}
.post-list.project-list .has-post-thumbnail .cat-links,
.post-list.project-list .format-gallery .cat-links,
.post-list.project-list .format-video .cat-links {
	font-weight: normal;
	padding: 0;
}
#header-title strong {
	font-weight: bold;
}
#header-title em {
	font-style: italic;
}
.entry-title a {
	color: inherit;
	text-decoration: none;
}
.post-list .entry-excerpt blockquote {
	font-size: 1.5rem;
	margin: 1em 0;
	max-width: none;
	padding: 0 0 0 30px;/*ltr*/
}
.post-list .entry-excerpt blockquote::before,
.post-list .entry-excerpt blockquote::after {
	display: none;
}
.post-list .format-quote .entry-quote::before {
	border-color: #222324;/*dynamic*/
	border-style: solid;
	border-width: 0 1px;
	bottom: 0;
	content: '';
	display: block;
	opacity: .15;
	position: absolute;
	top: 2em;
	width: 5px;
}
.post-list .entry-excerpt > a {
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}
.post-list .entry-excerpt .entry-quote {
	display: block;
	position: relative;
	z-index: 1;
}
.post-list .entry-excerpt .entry-quote blockquote {
	text-align: inherit;
}
.post-list .entry-title {
	margin: 0;
}
.post-list .format-status .entry-title {
	font-weight: bold;
	margin: 1em 0;
}
.post-list .format-status .entry-text.has-bg-img .entry-title {
	color: #ffffff;/*dynamic*/
}
.entry-subtitle,
.subtitle {
	color: #acacaf;/*dynamic*/
	font-family: "Merriweather";/*dynamic*/
	font-size: 1.2rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 25px;
}
.post-list .entry-subtitle {
	font-size: .625em;
	margin: .325em 0 .25em;
}
span.entry-subtitle {
	margin-top: 0;
}
.entry-subtitle a {
	color: inherit;
	text-decoration: none;
}
.post-list .featured-media-wrap,
.post-list .featured-media {
	display: block;
	overflow: hidden;
	position: relative;
}
.post-list .featured-media-wrap iframe,
.post-list .featured-media iframe {
	float: left;
}
.post-list .text-position-below .featured-media-wrap:not(:last-child),
.post-list .text-position-below .featured-media:not(:last-child) {
	margin-bottom: 10px;
}
.post-list .text-position-left .featured-media-wrap,
.post-list .text-position-left .featured-media {
	float: right;
	margin: 0 0 0 15px;
	width: calc( 50% - 15px );
}
.post-list .text-position-left .entry-text {
	float: left;
	margin: 0 15px 0 0;
	width: calc( 50% - 15px )!important;
}
.post-list .text-position-right .featured-media-wrap,
.post-list .text-position-right .featured-media {
	float: left;
	margin: 0 15px 0 0;
	width: calc( 50% - 15px );
}
.post-list .text-position-right .entry-text {
	float: left;
	margin: 0 0 0 15px;
	width: calc( 50% - 15px )!important;
}
@media only screen and (max-width: 500px) {
	.post-list article.text-position-left .for-reveal,
	.post-list article.text-position-right .for-reveal {
		display: block!important;
	}
	.post-list .text-position-right .featured-media-wrap,
	.post-list .text-position-left .featured-media-wrap,
	.post-list .text-position-right .featured-media,
	.post-list .text-position-left .featured-media,
	.post-list .text-position-left .entry-text,
	.post-list .text-position-right .entry-text {
		width: 100%!important;
	}
}
.post-list.project-list .text-position-below .featured-media-wrap:not(:last-child),
.post-list.project-list .text-position-below .featured-media:not(:last-child) {
	margin-bottom: 1em;
}
.post-list .entry-text {
	margin: auto;
	text-align: center;
}
.post-list .text-align-left .entry-text {
	text-align: left;
}
.post-list .text-align-right .entry-text {
	text-align: right;
}
.post-list .text-align-center .entry-text {
	text-align: center;
}
.post-list article:not(.format-standard) .entry-format {
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    height: 1.5em;
    vertical-align: sub;
    width: 1.5em;
    z-index: 10;
}
.post-list article:not(.format-standard) .entry-format + a::before {
	display: inline-block;
	content: ' / ';
	margin:0 .5em;
}
.post-list article.format-aside .entry-format {
	background-image: url(images/aside-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-aside .entry-format {
	background-image: url(images/aside-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-image .entry-format {
	background-image: url(images/image-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-image .entry-format {
	background-image: url(images/image-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-video .entry-format {
	background-image: url(images/video-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-video .entry-format {
	background-image: url(images/video-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-link .entry-format {
	background-image: url(images/link-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-link .entry-format {
	background-image: url(images/link-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-gallery .entry-format {
	background-image: url(images/gallery-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-gallery .entry-format {
	background-image: url(images/gallery-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-status .entry-format {
	background-image: url(images/status-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.format-status .entry-text.has-bg-img .entry-format {
	background-image: url(images/status-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.text-position-over.format-status .entry-format {
	background-image: url(images/status-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-chat .entry-format {
	background-image: url(images/chat-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-chat .entry-format {
	background-image: url(images/chat-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-audio .entry-format {
	background-image: url(images/audio-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.text-position-over.format-audio .entry-format {
	background-image: url(images/audio-icon.php?fill=ffffff);/*dynamic*/
}
.post-list article.format-quote .cat-links {
	margin: 1rem auto -1rem;
}
.post-list article.format-quote .entry-format {
	background-image: url(images/quote-icon.php?fill=c6ac5e);/*dynamic*/
}
.post-list article.format-quote .entry-text.has-bg-img .entry-format {
	background-image: url(images/quote-icon.php?fill=ffffff);/*dynamic*/
}
.post-list .text-position-over .featured-media-wrap,
.post-list .text-position-hover .featured-media-wrap {
	margin-bottom: 0;
}
.pix-media-icon {
	display: block;
	position: relative;
}
.pix-media-icon::after,
.post-list .text-position-over .featured-media-wrap::after,
.post-list .text-position-hover .featured-media-wrap::after,
.post-list .text-position-hover .featured-video::after,
.post-list .text-position-over .featured-video::after/*,
.post-list .featured-media-wrap::after,
.post-list .featured-media::after*/ {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDM3OCAyNTEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIzNzgiIGhlaWdodD0iMjUxIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: linear-gradient(bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	content: '';
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.pix-media-icon::before {
	color: #ffffff;
	content: "\f04b";
	font-family: 'FontAwesome';
	font-size: 21px;
	line-height: 30px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: calc(50% - 15px);
	width: 100%;
	z-index: 2;
}
.pix-media-icon::before,
.pix-media-icon::after,
.post-list.project-list .text-position-hover .featured-media-wrap::after,
.post-list.project-list .text-position-hover .featured-video.featured-media::after {
	opacity: 0;
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1);
}
.pix-media-icon:hover::before,
.pix-media-icon:hover::after,
.post-list.project-list .text-position-hover:hover .featured-media-wrap::after,
.post-list.project-list .text-position-hover:hover .featured-video.featured-media::after {
	opacity: 1;
}
.post-list.fluid-width-video-wrapper {
	position: relative;
	z-index: 0;
}
.post-list .featured-media-wrap img {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: -moz-transform .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: -ms-transform .35s cubic-bezier(.33,0,.2,1);
	-o-transition: -o-transform .35s cubic-bezier(.33,0,.2,1);
	transition: transform .35s cubic-bezier(.33,0,.2,1);
	z-index: 0;
}
.post-list.project-list .featured-media-wrap img {
	-webkit-transition: -webkit-transform .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: -moz-transform .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: -ms-transform .5s cubic-bezier(.33,0,.2,1);
	-o-transition: -o-transform .5s cubic-bezier(.33,0,.2,1);
	transition: transform .5s cubic-bezier(.33,0,.2,1);
}
.post-list article.format-gallery .featured-media-wrap div.gallery-second-img {
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), -webkit-transform .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), -moz-transform .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), -ms-transform .35s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1), -o-transform .35s cubic-bezier(.33,0,.2,1);
	transition: opacity .35s cubic-bezier(.33,0,.2,1), transform .35s cubic-bezier(.33,0,.2,1);
}
.post-list.project-list article.format-gallery .featured-media-wrap div.gallery-second-img {
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1), -webkit-transform .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1), -moz-transform .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1), -ms-transform .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1), -o-transform .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1), transform .5s cubic-bezier(.33,0,.2,1);
}
.post-list article:not(.format-gallery):hover .featured-media-wrap img,
.post-list article:not(.format-gallery):hover article.text-position-over .featured-media-wrap img,
.post-list article:not(.format-gallery):hover article.text-position-hover .featured-media-wrap img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.post-list article.format-gallery:hover .featured-media-wrap div.gallery-second-img {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.post-list.project-list .entry-meta {
	padding: 0;
}
.post-list article.text-position-over .logan-button.more-link,
.post-list article.text-position-hover .logan-button.more-link {
	background: transparent;
	border: 1px solid #ffffff!important;/*dynamic*/
	border-radius: 4px;
	color: #ffffff;/*dynamic*/
}
.post-list article:not(.text-position-over):not(.text-position-hover) .logan-button.more-link {
	margin-bottom: 1px;
	padding: 0.65em 1.5em!important;
}
.post-list.project-list article:not(.text-position-below) .enlarge-featured-media:not(.media-wrapper) {
	background-image: url(images/plus-icon.php?fill=ffffff);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 26px;
    display: inline-block;
    height: 32px;
    margin: 0 auto 10px;
	position: relative;
    width: 32px;
}
.post-list.project-list article.text-position-below .enlarge-featured-media::before,
.post-list.project-list article .enlarge-featured-media.media-wrapper::before {
	background-image: -moz-radial-gradient(center center, circle, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);/*dynamic*/
	background-image: -o-radial-gradient(center center, 480px 480px, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);/*dynamic*/
	background-image: -webkit-radial-gradient(center center, 480px 480px, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);/*dynamic*/
	background-image: radial-gradient(center center, 480px 480px, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);/*dynamic*/
	content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
	position: absolute;
	top: 0;
    width: 100%;
	z-index: 10;
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1);
}
.post-list.project-list article.text-position-below .enlarge-featured-media::after,
.post-list.project-list article .enlarge-featured-media.media-wrapper::after {
	background-image: url(images/plus-icon.php?fill=ffffff);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 26px;
	content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
	position: absolute;
	top: 0;
    width: 100%;
	z-index: 11;
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1);
}
.post-list.project-list article.text-position-below:hover .enlarge-featured-media::before,
.post-list.project-list article.text-position-below:hover .enlarge-featured-media::after,
.post-list.project-list article:hover .enlarge-featured-media.media-wrapper::before,
.post-list.project-list article:hover .enlarge-featured-media.media-wrapper::after {
	opacity: 1;
}
.post-list.project-list .logan-button {
	margin-top: 20px;
}
.post-list.project-list .entry-meta + a {
	margin-left: 20px;/*ltr*/
}
.post-list .mejs-poster.mejs-layer {
	background-size: cover;
}
.logan-pagination {
	font-size: 1rem;
	margin-top: 50px;
	text-align: center;
}
.logan-pagination:last-child {
	margin-bottom: 80px;
}
.page-links {
	font-size: 1rem;
	padding-bottom: 80px;
	padding-top: 50px;
	text-align: center;
}
.vc_column-inner .logan-pagination {
	margin-bottom: 0;
}
.logan-pagination ul {
	display: inline-block;
}
.logan-pagination li {
	display: block;
	float: left;
	height: 44px;
	line-height: 44px;
	margin: 0 -1px 0 0;
	width: 44px;
}
.logan-pagination li {
	list-style-type: none;
}
.page-links > a,
.page-links > span {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	margin-right: -1px;
	vertical-align: middle;
	width: 44px;
}
.page-links > span.label + a {
	margin-left: .75rem;
}
.page-links > a {
	color: inherit;
}
.page-links > span:not(.label) {
	color: #c6ac5e;/*dynamic*/
}
.page-links span {
	border-style: solid;
	border-width: 1px;
}
.logan-pagination li span,
.logan-pagination li a,
.page-links a span {
	background: #ffffff;/*dynamic*/
	border-style: solid;
	border-width: 1px;
	display: block;
	overflow: hidden;
	text-align: center;
	width: 100%;
}
.logan-pagination li span {
	background: transparent;
	border-color: transparent;
	color: #c6ac5e;
}
.logan-pagination li span.current {
	margin-left: 1px;
}
.page-links > span {
	border-color: transparent;
}
.logan-pagination li a,
.page-links a span {
	border-color: #e5e5e5;/*dynamic*/
	color: inherit;
}
.logan-pagination li:last-child a {
	border-width: 1px;
}
.logan-pagination li a.prev.page-numbers {
	background-image: url(images/angle-left-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	text-indent: -99999px;
}
.logan-pagination li a.next.page-numbers {
	background-image: url(images/angle-right-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	text-indent: -99999px;
}
#infinite-handle {
    /*display: none;*/
	position: relative;
	top: -50px;
}
.logan-infinite-handle.button {
    background: transparent;
	border: 1px solid rgba(33,34,35,.1)!important;/*dynamic*/
    color: inherit;
    margin: -20px 0 20px;
}
.logan-infinite-handle.button svg {
	display: inline-block;
	margin: -.25em 0 0;/*ltr*/
	opacity: 0;
	vertical-align: middle;
	width: 0px;
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1), margin .5s cubic-bezier(.33,0,.2,1), width .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1), margin .5s cubic-bezier(.33,0,.2,1), width .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1), margin .5s cubic-bezier(.33,0,.2,1), width .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1), margin .5s cubic-bezier(.33,0,.2,1), width .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1), margin .5s cubic-bezier(.33,0,.2,1), width .5s cubic-bezier(.33,0,.2,1);
}
.logan-infinite-handle.button.infinite-loading svg {
	opacity: 1;
	margin: -.25em 8px 0 0;/*ltr*/
	width: 20px;
}
/*--------------------------------------------------------------
1.3.3 Post meta
--------------------------------------------------------------*/
.entry-meta {
	display: inline-block;
	font-size: 13px;/*dynamic*/
	font-style: italic;
	line-height: 1.5;
	margin-top: 15px;
	position: relative;
}
.entry-meta.has_avatar {
	padding-left: 40px;/*ltr*/
}
/*h5 + .entry-meta,
h6 + .entry-meta {
	padding-top: 8px;
}*/
article.avatar-1 .entry-meta {
	text-align: left;/*ltr*/
}
.entry-meta a {
	color: inherit;
	text-decoration: none;
}
.entry-meta a img {
	-moz-border-radius: 50%;
	border-radius: 50%;
	max-width: 30px;
}
.entry-meta span.author.vcard {
	font-style: normal;
	text-transform: uppercase;
}
.entry-meta .author.avatar {
	margin: 0 0 0 -40px;/*ltr*/
	position: absolute;
	top: calc(50% - 15px);
}
.single .entry-meta .author.avatar {
	margin: -10px 0 0 -60px;
}
.entry-meta .byline + .posted-on::before {
	content: "\A/\A";
}
.entry-meta .estimated-time::before {
	content: "\ebfb";
	display: inline-block;
	font-family: "budicon";
	font-style: normal!important;
	vertical-align: middle;
}
.entry-meta .meta-second-line::before {
	content: '';
	display: block;
}
.entry-meta .meta-second-line > * + * {
	margin-left: 10px;/*ltr*/
}
.liking-comments::before {
	content: "\e915";
	display: inline-block;
	font-family: "budicon";
	font-style: normal!important;
	margin-right: .25em;/*ltr*/
	vertical-align: middle;
}
.review-box {
	display: block;
	font-family: 'Lato';/*dynamic*/
	font-size: 11px;/*dynamic*/
	position: absolute;
	right: 0;
	top: 0;
	/*-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	transform-origin: 50% 0;*/
	z-index: 2;
}
.review-wp-total-only-box {
	background: #c6ac5e!important;
	color: #ffffff;
	display: inline-block;
	height: auto;
	padding: 10px 0!important;
	text-align: center;
	width: 60px;
}
.widget .tab-content .review-wp-total-only-box {
	background: transparent!important;
	color: inherit!important;
	padding: 0!important;
	width: auto!important;
}
#wpreview-rendered-content .review-wp-total-only-box {
	background: #fdf0a0!important;
	color: inherit;
	padding: 0 2px!important;
	width: auto;
}
.wp_review_tab_widget_content .wp-review-tab-pagination a {
	display: inline-block;
	margin-top: 1em!important;
}
.wp_review_tab_widget_content .wp-review-tab-pagination a span {
	display: none;
}
.wp_review_tab_widget_content .wp-review-tab-pagination a.previous::after {
	content: "\ead4";
	font-family: "budicon";
	display: block;
	line-height: 1em;
	width: 1em;
}
.wp_review_tab_widget_content .wp-review-tab-pagination a.next::after {
	content: "\ead6";
	font-family: "budicon";
	display: block;
	line-height: 1em;
	width: 1em;
}
.has-post-thumbnail .review-wp-total-only-box,
.format-gallery .review-wp-total-only-box,
.format-video .review-wp-total-only-box,
#featured_slides.featured-caption-sheet .review-wp-total-only-box {
	background: rgba(34,35,35,.5)!important;/*dynamic*/
	color: #ffffff;/*dynamic*/
}
span[class^="review-symbol-"] {
	display: inline-block;
}
span[class^="review-symbol-"]::after {
	display: inline-block;
	font-size: .85em;
	margin-left: 3px;/*ltr*/
}
.review-symbol-star::after {
	content: "\ead1";
	font-family: "budicon";
	font-style: normal!important;
}
.review-symbol-percentage::after {
	content: "%";
}
.review-symbol-point::after {
	content: "/ 10";
}
/*--------------------------------------------------------------
1.3.5 Entry content
--------------------------------------------------------------*/
body.single-post .entry-content {
	font-size: 1.1rem;
}
.progress-holder {
	display: block;
}
.post-list .for-reveal {
	overflow: hidden;
	position: relative;
}
.post-list .sticky.hentry .for-reveal {
	padding: 2em 2em 1em;
}
.post-list article.format-quote > .entry-text,
.post-list article.format-status > .entry-text.has-bg-img {
	background-position: -999999;
	background-repeat: no-repeat;
	background-size: 0 0;
	overflow: hidden;
	padding: 1em 20px;
	position: relative;
}
.post-list article.format-quote > .entry-text.has-bg-img,
.post-list article.format-quote > .entry-text.has-bg-img .cat-links a,
.post-list article.format-status > .entry-text.has-bg-img,
.post-list article.format-status > .entry-text.has-bg-img .cat-links a {
	color: #ffffff!important;
}
.post-list article.format-quote > .entry-text::before,
.post-list article.format-status > .entry-text.has-bg-img::before {
	border: 4px solid rgba(33,34,35,.1);/*dynamic*/
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.post-list article.format-quote > .entry-text.has-bg-img::before,
.post-list article.format-status > .entry-text.has-bg-img::before {
	background-color: rgba(0,0,0,.6);
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDM3OCAyNTEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIzNzgiIGhlaWdodD0iMjUxIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	background-image: linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%); /* gradient overlay */
	border: 0;
}
.post-list article.format-quote > .entry-text.has-bg-img::after,
.post-list article.format-status > .entry-text.has-bg-img::after {
    background-image: inherit;
    background-position: center;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: -moz-transform .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: -ms-transform .35s cubic-bezier(.33,0,.2,1);
	-o-transition: -o-transform .35s cubic-bezier(.33,0,.2,1);
	transition: transform .35s cubic-bezier(.33,0,.2,1);
}
.post-list article.format-quote:hover > .entry-text.has-bg-img::after,
.post-list article.format-status:hover > .entry-text.has-bg-img::after {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.post-list[data-columns="1"] > article {
	width: 100%;
}
.post-list[data-columns="2"] > article {
	width: calc(50% - 1px);
}
.post-list[data-columns="3"] > article {
	width: calc(33.33% - 1px);
}
.post-list[data-columns="3"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
	width: calc(66.66% - 1px);
}
.post-list[data-columns="4"] > article {
	width: calc(25% - 1px);
}
.post-list[data-columns="4"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
	width: calc(50% - 1px);
}
.post-list[data-columns="5"] > article {
	width: calc(20% - 1px);
}
.post-list[data-columns="5"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
	width: calc(40% - 1px);
}
.post-list[data-columns="6"] > article {
	width: calc(16.66% - 1px);
}
.post-list[data-columns="6"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
	width: calc(33.33% - 1px);
}
@media screen and (max-width: 991px) {
	.post-list[data-landscape="1"] > article {
		width: 100%;
	}
	.post-list[data-landscape="2"] > article {
		width: calc(50% - 1px);
	}
	.post-list[data-landscape="2"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: 100%;
	}
	.post-list[data-landscape="3"] > article {
		width: calc(33.33% - 1px);
	}
	.post-list[data-landscape="3"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(66.66% - 1px);
	}
	.post-list[data-landscape="4"] > article {
		width: calc(25% - 1px);
	}
	.post-list[data-landscape="4"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(50% - 1px);
	}
	.post-list[data-landscape="5"] > article {
		width: calc(20% - 1px);
	}
	.post-list[data-landscape="5"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(40% - 1px);
	}
	.post-list[data-landscape="6"] > article {
		width: calc(16.66% - 1px);
	}
	.post-list[data-landscape="6"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(33.33% - 1px);
	}
}
@media screen and (max-width: 768px) {
	.post-list[data-portrait="1"] > article {
		width: 100%;
	}
	.post-list[data-portrait="2"] > article {
		width: calc(50% - 1px);
	}
	.post-list[data-portrait="2"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: 100%;
	}
	.post-list[data-portrait="3"] > article {
		width: calc(33.33% - 1px);
	}
	.post-list[data-portrait="3"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(66.66% - 1px);
	}
	.post-list[data-portrait="4"] > article {
		width: calc(25% - 1px);
	}
	.post-list[data-portrait="4"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(50% - 1px);
	}
	.post-list[data-portrait="5"] > article {
		width: calc(20% - 1px);
	}
	.post-list[data-portrait="5"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(40% - 1px);
	}
	.post-list[data-portrait="6"] > article {
		width: calc(16.66% - 1px);
	}
	.post-list[data-portrait="6"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(33.33% - 1px);
	}
}
@media screen and (max-width: 400px) {
	.post-list[data-phone="1"] > article {
		width: 100%;
	}
	.post-list[data-phone="2"] > article {
		width: calc(50% - 1px);
	}
	.post-list[data-phone="2"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: 100%;
	}
	.post-list[data-phone="3"] > article {
		width: calc(33.33% - 1px);
	}
	.post-list[data-phone="3"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(66.66% - 1px);
	}
	.post-list[data-phone="4"] > article {
		width: calc(25% - 1px);
	}
	.post-list[data-phone="4"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(50% - 1px);
	}
	.post-list[data-phone="5"] > article {
		width: calc(20% - 1px);
	}
	.post-list[data-phone="5"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(40% - 1px);
	}
	.post-list[data-phone="6"] > article {
		width: calc(16.66% - 1px);
	}
	.post-list[data-phone="6"][data-double="yes"]:not([data-grid="carousel"]) > article:first-child {
		width: calc(33.33% - 1px);
	}
}
.post-list .slick-list article {
	margin-bottom: 0!important;
}
.post-list article.text-position-over .entry-text,
.post-list article.text-position-hover .entry-text {
	bottom: 0;
	padding: 20px 5%!important;
	position: absolute;
	z-index: 2;
}
.post-list.project-list article.text-position-over .entry-text,
.post-list.project-list article.text-position-hover .entry-text {
	bottom: 0;
	min-height: 50%;
	max-height: 100%;
	position: absolute;
	width: 100%;
}
.post-list.project-list article.text-position-over .entry-table,
.post-list.project-list article.text-position-hover .entry-table {
	display: table;
	height: 100%;
	width: 100%;
}
.post-list.project-list article.text-position-over .entry-cell,
.post-list.project-list article.text-position-hover .entry-cell {
	display: table-cell;
	vertical-align: middle;
}
.post-list.project-list article.text-position-hover .entry-cell {
	opacity: 0;
	-webkit-transform: translatey(10px);
	-moz-transform: translatey(10px);
	-ms-transform: translatey(10px);
	-o-transform: translatey(10px);
	transform: translatey(10px);
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1), -webkit-transform .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1), -moz-transform .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1), -ms-transform .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1), -o-transform .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1), transform .5s cubic-bezier(.33,0,.2,1);
}
.post-list.project-list article.text-position-hover:hover .entry-cell {
	opacity: 1;
	-webkit-transform: translatey(0);
	-moz-transform: translatey(0);
	-ms-transform: translatey(0);
	-o-transform: translatey(0);
	transform: translatey(0);
}
.pix-portfolio-filters {
	font-size: 12px;/*dynamic*/
	line-height: 1.5em;
	margin-bottom: 2.5em;
	text-align: center;
}
.pix-portfolio-filters a {
	color: #acacaf!important;
	font-family: "Lato";/*dynamic*/
	font-size: inherit!important;
	display: inline-block;
	line-height: 2.175em;
	margin-right: .1em;
	padding: .25em .5em;
	text-decoration: none;
	text-transform: uppercase;
}
.pix-portfolio-filters a.selected {
	color: inherit!important;
}
.post-list article.text-position-over .entry-text *,
.post-list article.text-position-hover .entry-text * {
	color: #ffffff!important;/*dynamic*/
}
.post-list .entry-content {
	clear: both;
	font-size: 1rem;
	margin: 20px 0;
}
.post-list article.text-position-left .entry-content,
.post-list article.text-position-right .entry-content {
	clear: none;
}
.post-list article.text-position-left .for-reveal,
.post-list article.text-position-right .for-reveal {
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.post-list article.text-position-left .for-reveal > .featured-media-wrap,
.post-list article.text-position-left .for-reveal > .featured-media,
.post-list article.text-position-right .for-reveal > .entry-text {
	order: 2;
}
.post-list article.text-position-right .for-reveal > .featured-media-wrap,
.post-list article.text-position-right .for-reveal > .featured-media,
.post-list article.text-position-left .for-reveal > .entry-text {
	order: 1;
}
.content-wrap > table:not(.letmebe) tbody tr:nth-child(odd),
.format-chat .entry-content:not(.entry-excerpt) > p:nth-child(odd),
.format-chat .entry-content:not(.entry-excerpt) > .content-wrap:nth-child(odd) > p {
	background: rgba(33,34,35,.05);/*dynamic*/
}
.format-chat .entry-content:not(.entry-excerpt) > p,
.format-chat .entry-content:not(.entry-excerpt) > .content-wrap > p {
	margin: 0;
	padding: .5em;
}
.gallery-shortcode-slideshow,
.logan .tiled-gallery {
	margin: 2.535em auto;
}
.single .hentry .featured-media .gallery-shortcode-slideshow,
.logan.single .hentry .featured-media .tiled-gallery {
	margin-top: 0;
}
@media screen and (max-width: 400px) {
	.logan .tiled-gallery .gallery-row,
	.logan .tiled-gallery .gallery-group,
	.logan .tiled-gallery .tiled-gallery-item img {
		height: auto!important;
		width: 100%!important;
	}
}
@media screen and (min-width: 800px) {
	.slideshow-carousel-caption.wp-caption {
		background: #ffffff;/*dynamic*/
		font-size: .925rem;
		font-style: italic;
		margin: 0 auto;
		max-width: 60%;
		opacity: 0;
		padding: 1em;
		position: absolute;
		text-align: right;
		right: 1em;
		top: 1em;
		z-index: 2;
		-webkit-transition: opacity 1s 0s cubic-bezier(.33,0,.2,1);
		-moz-transition: opacity 1s 0s cubic-bezier(.33,0,.2,1);
		-ms-transition: opacity 1s 0s cubic-bezier(.33,0,.2,1);
		-o-transition: opacity 1s 0s cubic-bezier(.33,0,.2,1);
		transition: opacity 1s 0s cubic-bezier(.33,0,.2,1);
	}
	.slideshow-carousel-caption.wp-caption .wp-caption-text {
		color: #222324;/*dynamic*/
	}
	.slideshow-carousel-caption.wp-caption .wp-caption-text em {
		font-style: normal;
	}
	.slick-slide.slick-active .slideshow-carousel-caption.wp-caption {
		opacity: 1;
		-webkit-transition: opacity 1s .5s cubic-bezier(.33,0,.2,1);
		-moz-transition: opacity 1s .5s cubic-bezier(.33,0,.2,1);
		-ms-transition: opacity 1s .5s cubic-bezier(.33,0,.2,1);
		-o-transition: opacity 1s .5s cubic-bezier(.33,0,.2,1);
		transition: opacity 1s .5s cubic-bezier(.33,0,.2,1);
	}
}

.edit-link {
	clear: both;
	display: block;
}
.edit-link a {
	color: #acacaf;
	font-family: "Lato";/*dynamic*/
	font-size: 12px;/*dynamic*/
	line-height: 2.175em;
	margin-bottom: 1em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
.edit-link a.vc_inline-link:before {
	content: '/';
	margin: 0 1em 0 .5em;
}
#related-items-section {
	margin: 80px auto;
}
#related-items-section > h5#related-items-title {
	font-weight: bold;
	text-align: center;
}
#related-items-section > .related-list {
	margin: 40px auto 0 -30px;
}
#related-items-section > .related-list > article {
	float: left;/*ltr*/
	padding-left: 30px;
	width: 33.33%;
}
#related-items-section > .related-list.related-columns-1 > article{
    width: 100%;
}
#related-items-section > .related-list.related-columns-2 > article{
    width: 50%;
}
#related-items-section > .related-list.related-columns-3 > article{
    width: 33.33%;
}
#related-items-section > .related-list.related-columns-4 > article{
    width: 25%;
}
#related-items-section > .related-list.related-columns-5 > article{
    width: 20%;
}
#related-items-section > .related-list.related-columns-6 > article{
    width: 16.665%;
}
#related-items-section > .related-list.related-columns-7 > article{
    width: 14.285%;
}
#related-items-section > .related-list.related-columns-8 > article{
    width: 12.5%;
}
@media (min-width: 601px) and (max-width: 1024px) {
	#related-items-section > .related-list.related-columns-3 > article{
        width: 50%;
    }
	#related-items-section > .related-list.related-columns-4 > article{
        width: 50%;
    }
	#related-items-section > .related-list.related-columns-5 > article{
        width: 33.33%;
    }
	#related-items-section > .related-list.related-columns-6 > article{
        width: 33.33%;
    }
	#related-items-section > .related-list.related-columns-7 > article{
        width: 25%;
    }
	#related-items-section > .related-list.related-columns-8 > article{
        width: 25%;
    }
}
@media (min-width: 321px) and (max-width: 600px) {
	#related-items-section > .related-list.related-columns-3 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-3 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-4 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-5 > article{
        width: 50%;
    }
	#related-items-section > .related-list.related-columns-6 > article{
        width: 50%;
    }
	#related-items-section > .related-list.related-columns-7 > article{
        width: 50%;
    }
	#related-items-section > .related-list.related-columns-8 > article{
        width: 50%;
    }
}
@media (max-width: 320px) {
	#related-items-section > .related-list.related-columns-2 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-3 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-4 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-5 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-6 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-7 > article{
        width: 100%;
    }
	#related-items-section > .related-list.related-columns-8 > article{
        width: 100%;
    }
}
#related-items-section .entry-title {
	font-size: .775em;
}
#related-items-section video a {
	display: none!important;
}
#related-items-section .hentry .featured-media {
	margin-bottom: 0!important;
}

.tags-links {
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	font-size: 12px;/*dynamic*/
	line-height: 1.5em;
	text-transform: uppercase;
}
.tags-links a {
	background: rgba(21, 21, 21, 0.1);/*dynamic*/
	color: inherit!important;
	font-family: "Lato";/*dynamic*/
	font-size: inherit!important;
	margin-right: .1em;
	padding: .25em .5em;
	text-decoration: none;
	white-space: nowrap;
}
.author-profile.vcard {
	margin: 1rem 0;
}
.author-profile.vcard:last-child {
	margin-bottom: 0;
}
.author-profile-inside,
div#review {
	border: 4px solid rgba(33,34,35,.15);/*dynamic*/
	margin: 50px auto;
	padding: 50px 50px 35px;
	position: relative;
	text-align: center;
	z-index: 1;
}
div#review {
	padding: 25px 50px 35px;
	text-align: inherit;
}
.author-profile-inside::before {
    background-color: #ffffff;/*dynamic*/
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid rgba(33,34,35,.15);
    content: '';
    display: block;
    height: 124px;
    left: calc( 50% - 62px );
    position: absolute;
    top: -42px;
    width: 124px;
    z-index: -1;
}
.author-profile-inside::after {
    background-color: #ffffff;/*dynamic*/
	content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.author-profile-inside img.avatar {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin-bottom: -80px;
	position: relative;
	top: -80px;
	width: 100px;
}
.author-profile-inside .author-name.fn.n {
	margin-top: 1.525rem;
}
.author-profile-inside .author-name.fn.n small {
	font-size: 0.813em;
	font-style: italic;
}
.author-profile-inside .author-name.fn.n a[rel="author"] {
	font-size: .775rem;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
}
.author-profile-inside .author-description.author-bio {
	font-size: .875rem;
}
.author-profile-inside .author-description.author-social a {
	color: inherit;
	font-size: 16px;
	margin-right: .75rem;
	opacity: .75;
}
.review-wrapper {
    font-size: .9rem;
    margin-top: 2.535rem;
}
.review-wrapper,
.review-wrapper .review-title,
.logan .review-wrapper li {
	background: transparent!important;
	border: 0;
	padding-left: 0;
	padding-right: 0;
}
.review-wrapper .review-title {
	border-bottom: 1px solid rgba(33,34,35,.1);/*dynamic*/
	font-weight: bold;
	margin-bottom: .535em;
	max-width: calc( 100% - 200px );
    padding-bottom: 1.535em;
}
.review-percentage .review-result-wrapper.author-review,
.review-point .review-result-wrapper.author-review,
.review-percentage .author-review .review-result,
.review-point .author-review .review-result {
	height: 10px;
}
.review-total-star.allowed-to-rate .review-result-wrapper {
	background: transparent!important;
}
.review-wrapper .review-total-wrapper {
    border: 4px solid rgba(33,34,35,.1);
    bottom: -4px;
    margin: 0;
    padding: 1em;
    position: absolute;
    right: -4px;/*ltr*/
    text-align: center;
    top: -4px;
	width: 200px;
}
@media only screen and (max-width: 500px) {
	.review-wrapper .review-total-wrapper {
	    border-width: 4px 0 0;
	    bottom: auto;
	    height: 150px;
	    position: relative;
	    right: auto;
	    top: auto;
	    width: 100%;
	}
}
.review-percentage .author-review .review-result,
.review-point .author-review .review-result {
	background-color: #222324!important;/*dynamic*/
}
.review-percentage .author-review.review-result-wrapper,
.review-point .author-review.review-result-wrapper {
	background: rgba(34,35,35,.1)!important;/*dynamic*/
}
.review-wrapper .review-desc {
    border-top: 4px solid rgba(33,34,35,.1);
	margin-top: 1.535em;
	padding: 1.535em 0;
	max-width: calc( 100% - 200px );
	width: 100%;
}
.review-wrapper .user-review-area {
	max-width: calc( 100% - 200px );
	width: 100%;
}
.review-total-wrapper span.review-total-box {
	font-size: 2rem;
	left: 0;
	margin-top: -1em;
	padding: 0;
	position: absolute;
    text-align: inherit;
    top: 50%;
}
.review-total-wrapper .review-total-star {
    left: 0;
    margin: 1em 0 0;
	position: absolute;
    top: 50%;
    width: 100%;
}
.review-total-wrapper .review-total-star .review-result-wrapper {
    font-size: 18px;
    margin: auto;
	position: relative;
    width: 5em;
}
.review-wrapper .review-list {
	max-width: calc( 100% - 200px );
}
@media only screen and (max-width: 500px) {
	.review-wrapper .review-title,
	.review-wrapper .review-desc,
	.review-wrapper .user-review-area,
	.review-wrapper .review-list {
		max-width: none;
	}
}
.user-review-area {
    border-top: 4px solid rgba(33,34,35,.1);
    padding: 2em 0;
}
.percentage-icon {
	font-size: .65em;
	top: -.35em;
}
.commentlist li,
.comment-list li,
.comment-list li,
.comment-list .bypostauthor {
	list-style-type: none;
	margin-bottom: 2.535em;
	position: relative;
}
.commentlist img.avatar,
.comment-list img.avatar {
	-moz-border-radius: 50%;
	border-radius: 50%;
	float: left;/*ltr*/
}
.commentlist .comment-text,
.comment-list .comment-text {
	float: right;/*ltr*/
	width: calc( 100% - 80px );
}
.commentlist p.meta,
.comment-list .comment-meta {
	border-bottom: 1px solid rgba(34,35,35,.1)!important;/*dynamic*/
	margin-bottom: 1em;
	padding-bottom: 1.535em;
	position: relative;
}
.comment-list .comment-content.comment {
	padding-right: 2.5em;/*ltr*/
	position: relative;
}
.commentlist .star-rating {
	float: right;/*ltr*/
}
.comment-list li article {
	overflow: hidden;
	position: relative;
}
.comment-list li li:last-child {
	margin-bottom: 0;
}
.comment-list li ol {
	margin-top: 2.535em;
}
.commentlist time,
.comment-list time {
	color: #acacaf;/*dynamic*/
	display: block;
	font-size: .725em;
	text-transform: lowercase;
}
.commentlist time > span,
.comment-list time > span {
	font-style: italic;
	text-transform: none;
}
.commentlist [itemprop="author"],
.comment-list [itemprop="author"] {
	font-size: 1.125em;
}
#comments {
	clear: both;
	display: block;
}
#comments > h3 {
	background-color: transparent!important;
	background-image: url(images/plus-icon.php?fill=222324);/*dynamic*/
	background-position: right 20px center;/*ltr*/
	background-repeat: no-repeat;
	background-size: 12px;
	-moz-border-radius: 0;/*dynamic*/
	border-radius: 0;/*dynamic*/
	border: solid rgba(34,35,35,.1)!important;
    border-width: 1px 0!important;
	color: inherit!important;/*dynamic*/
	font-size: 12px;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	line-height: inherit!important;
    margin: 0!important;
	padding: 0!important;/*ltr*/
	position: relative;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
}
#comments > h3.ui-state-active {
	background-image: url(images/cancel-icon.php?fill=222324);/*dynamic*/
}
#comments > h3 > a {
	color: inherit;
	display: block;
	padding: 0 40px 0 0!important;/*ltr*/
}
#comments > h3 > a > span {
	display: inline-block;
    padding: 1em 0!important;
    position: relative;
}
#comments > h3 > a > span::after {
	content: '';
    position: absolute;
    background-color: #222324;/*dynamic*/
    height: 2px;
    display: block;
    bottom: 0;
    left: 0;
    width: 0;
    -webkit-transition: width .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: width .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: width .25s cubic-bezier(.33,0,.2,1);
	-o-transition: width .25s cubic-bezier(.33,0,.2,1);
	transition: width .25s cubic-bezier(.33,0,.2,1);
}
#comments > h3.ui-state-active > a > span::after {
	width: 100%;
}
#comments > div.panel {
	border-bottom: 1px solid rgba(34,35,35,.1)!important;
	padding: 50px 0 20px;
}
#comments .post-author,
#cancel-comment-reply-link {
	background: rgba(21, 21, 21, 0.1);/*dynamic*/
	color: inherit!important;
	float: right;/*ltr*/
	font-family: "Lato";/*dynamic*/
	font-size: 10px;/*dynamic*/
	font-weight: bold;/*dynamic*/
	line-height: 1.5em;
	margin-right: .1em;
	padding: .25em .5em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
#cancel-comment-reply-link {
	top: 1em;
}
.comment-list li .reply {
    position: absolute;
    right: 0;/*ltr*/
    top: -0.275em;
}
.comment-list li .reply > a {
	color: #acacaf;/*dynamic*/
    font-size: .725rem;
    display: block;
    height: 1.8rem;
    line-height: 1.8rem;
    padding: 0 1em;
    position: relative;
    text-indent: -99999px;
    text-transform: uppercase;
    z-index: 1;
}
.comment-list li .reply > a::after {
	content: '\eac0';
	display: inline-block;
	float: right;/*ltr*/
	font-family: 'budicon';
	font-size: 18px;
    text-indent: 0;
}
.comment-list li .comment-reply-title {
    margin-top: 2rem;
}
.comment-list #respond {
	margin-bottom: 6.25rem;
	position: relative;
}
#respond #reply-title {
	text-align: center;
}
.comment-list #respond #reply-title {
	text-align: inherit;
}
.single-post #main > *:last-child {
	margin-bottom: 80px;
}


/*--------------------------------------------------------------
1.3.6 Buttons
--------------------------------------------------------------*/
.logan-button-wrap {
	display: block;
	position: relative;
	white-space: pre;
}
.logan-button-separator {
	background: #ffffff;/*dynamic*/
	-moz-box-shadow: 0 0 10px rgba(33,34,35,.15);/*dynamic*/
	box-shadow: 0 0 10px rgba(33,34,35,.15);/*dynamic*/
	display: inline-block;
	-moz-border-radius: 2000px;
	border-radius: 2000px;
	color: #222324;/*dynamic*/
	height: 60%;
	font-family: "Lato";/*dynamic*/
	font-size: 10px;/*dynamic*/
	font-weight: bold;/*dynamic*/
	padding: 0 10px;
    position: absolute;
    text-align: center;
    top: 50%;
    word-wrap: normal!important;
    z-index: 2;
}
.logan-button-separator-border {
	background: rgba(33,34,35,.15);/*dynamic*/
	bottom: 1px;
	display: inline-block;
	position: absolute;
	top: 1px;
	width: 1px;
	z-index: 1;
}
.logan-button-separator > i {
	font-size: 18px;
	line-height: inherit;
}
.logan-button-wrap a {
	z-index: 0;
}
.logan .logan-button,
.logan .vc_btn3,
.logan .vc_general.vc_btn3.logan-button,
.logan .vc_btn3[class*="vc_btn3-color-"],
.logan .vc_btn3[class*="vc_btn3-color-"][class*="vc_btn3-style-"],
input[type="submit"],
.button,
.shipping-calculator-button,
table.compare-list .add-to-cart td a,
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab > a,
.widget.null-instagram-feed p > a,
.widget.widget_null-instagram-feed p > a,
body.logan #page .ts-timeline-css-button-link,
body.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .ts-advanced-google-map-controls-search-button,
.logan .ts-testimonial-frontend-submission-form input[type="button"],
.logan .ts-testimonial-frontend-submission-form input[type="submit"] {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(198, 172, 94, 0);/*dynamic*/
	-moz-border-radius: 3px;/*dynamic*/
	border-radius: 3px;/*dynamic*/
	border: 1px solid #c6ac5e;/*dynamic*/
	color: #222324;/*dynamic*/
	cursor: pointer;
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	font-size: 12px;/*dynamic*/
	display: inline-block;
	line-height: 1.667em;/*dynamic*/
	padding: 1em 2.125em;
	position: relative;
	text-align: center;
	text-decoration: none;
    text-shadow: none;
	text-transform: uppercase;/*dynamic*/
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	-webkit-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
}
body.logan #page .ts-timeline-css-button-link,
body.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .ts-advanced-google-map-controls-search-button,
.logan .ts-testimonial-frontend-submission-form input[type="button"],
.logan .ts-testimonial-frontend-submission-form input[type="submit"] {
	border: 1px solid #c6ac5e!important;/*dynamic*/
}
.logan [data-tabs-button="yes"] .vc_tta-tabs-list {
	margin-bottom: 10px!important;
	margin-top: 10px!important;
}
.logan .ts-creative-link-uppercase {
	color: inherit;/*dynamic*/
	cursor: pointer;
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	font-size: 12px;/*dynamic*/
	line-height: 1.667em;/*dynamic*/
	padding: 1em 2.125em;
	text-transform: uppercase;/*dynamic*/
}
.gw-go-footer-row-inner {
	font-family: "Lato";/*dynamic*/
}
.logan .gw-go-btn {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-border-radius: 3px;/*dynamic*/
	border-radius: 3px;/*dynamic*/
	cursor: pointer;
	font-weight: bold;/*dynamic*/
	font-size: 12px;/*dynamic*/
	display: inline-block;
	height: auto;
	line-height: 1.667em;/*dynamic*/
	padding: 1em 2.125em;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
	-webkit-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
	transition: background-color .35s cubic-bezier(0.23, 1, 0.32, 1), border .35s cubic-bezier(0.23, 1, 0.32, 1), color .35s cubic-bezier(0.23, 1, 0.32, 1);
}
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab > a {
	-moz-border-radius: 3px!important;/*dynamic*/
	border-radius: 3px!important;/*dynamic*/
}
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab:not(.vc_active) > a {
	border-color: transparent!important;
}
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab > a::before,
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab > a::after {
	display: none!important;
}
.logan .vc_tta-tabs-list .vc_tta-tab > a i,
.logan .vc_tta-panels .vc_tta-panel-heading a i {
    position: relative;
	top: -.15em;
   	vertical-align: middle;
}
.logan .vc_tta-tabs-list .vc_tta-tab > a [data-icon-position="before"] i,
.logan .vc_tta-panels .vc_tta-panel-heading a [data-icon-position="before"] i {
	margin-right: .5em;
}
.logan .vc_tta-tabs-list .vc_tta-tab > a [data-icon-position="after"] i,
.logan .vc_tta-panels .vc_tta-panel-heading a [data-icon-position="after"] i {
	margin-left: .5em;
}
.logan .logan-button:not(.vc_btn3),
input[type="submit"],
.button,
.shipping-calculator-button,
table.compare-list .add-to-cart td a {
	margin-top: 15px;
}
.logan .logan-button-wrap .logan-button {
	margin-top: 0;
}
.logan .logan-button-wrap .logan-button i {
	font-size: 20px;
    position: relative;
    top: -0.1em;
	vertical-align: middle;
}
.logan .logan-button-wrap .logan-button i.custom-color {
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-ms-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.logan .logan-button-wrap.button-doubled .width_100 {
	width: 50%!important;
}
.logan .logan-button:not(.infinite-loading):hover,
.logan .vc_btn3:hover,
.logan .vc_general.vc_btn3.logan-button:hover,
.logan .vc_btn3[class*="vc_btn3-color-"]:hover,
.logan .vc_btn3[class*="vc_btn3-color-"][class*="vc_btn3-style-"]:hover,
input[type="submit"]:hover,
.buttonn:not(.infinite-loading):hover,
.shipping-calculator-button:hover,
table.compare-list .add-to-cart td a:hover,
.logan [data-tabs-button="yes"] .vc_tta-tabs-list .vc_tta-tab > a:hover,
.widget.null-instagram-feed p > a:hover,
.widget.widget_null-instagram-feed p > a:hover {
	background: rgba(198, 172, 94, 1);/*dynamic*/
	border: 1px solid #c6ac5e;/*dynamic*/
	color: #ffffff;/*dynamic*/
}
body.logan #page .ts-timeline-css-button-link:hover,
body.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .ts-advanced-google-map-controls-search-button:hover,
.logan .ts-testimonial-frontend-submission-form input[type="button"]:hover,
.logan .ts-testimonial-frontend-submission-form input[type="submit"]:hover {
	background: rgba(198, 172, 94, 1)!important;/*dynamic*/
	border: 1px solid #c6ac5e!important;/*dynamic*/
	color: #ffffff;/*dynamic*/
}

.logan .vc_grid-btn-load_more a.vc_btn3,
.logan .vc_grid-btn-load_more a.vc_btn3:hover,
.logan .vc_grid-btn-load_more a.vc_btn3[class*="vc_btn3-color-"][class*="vc_btn3-style-"],
.logan .vc_grid-btn-load_more a.vc_btn3[class*="vc_btn3-color-"][class*="vc_btn3-style-"]:hover {
    background: transparent!important;
	border: 1px solid rgba(33,34,35,.1)!important;/*dynamic*/
    color: inherit!important;
}
.logan .vc_btn3.vc_btn3-style-outline-custom,
.logan .vc_btn3.vc_btn3-style-outline,
.logan .vc_btn3.vc_btn3-style-outline-custom:hover,
.logan .vc_btn3.vc_btn3-style-outline:hover,
.logan .vc_btn3.vc_btn3-style-outline-custom:focus,
.logan .vc_btn3.vc_btn3-style-outline:focus {
	border-width: 1px;
}
.logan .vc_btn3.vc_btn3-shape-rounded {
	border-radius: 3px!important;
}
.logan .vc_grid-btn-load_more a.vc_btn3.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
	padding-left: 4em!important;
}
.logan .vc_grid-btn-load_more a.vc_btn3.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
	padding-right: 4em!important;
}
/*--------------------------------------------------------------
1.3.7 Forms
--------------------------------------------------------------*/
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */;
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	background: transparent;
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: none!important;
	-webkit-box-shadow: none!important;
	box-shadow: none!important;
	color: inherit;
	float: left;
	font-family: inherit;
	font-size: 1rem;
	min-height: 3.25em;
	padding: .675em 1em!important;
	display: inline-block;
	margin: 0 0 1em;
	width: 100%!important;
}
input[type="number"] {
	max-width: 80px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):last-child {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-bottom: 0;
}
table input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="number"]) {
	width: auto!important;
}
input[name="post_password"] {
	display: block!important;
	float: none!important;
	max-width: 400px;
}
textarea,
select[multiple],
.logan .ts-testimonial-frontend-submission-form textarea {
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-border-radius: 0;
	border-radius: 0;
	float: left;
	font-family: inherit;
	font-size: inherit;
	min-height: 200px;
	padding: 1em;
	display: inline-block;
	margin-bottom: 1em;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}
textarea:last-child,
select[multiple]:last-child {
	margin-bottom: 0;
}
select:not([multiple]), .select2-container .select2-choice,
.logan p.CaptionCont.SlectBox,
.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .SumoSelect>.CaptionCont,
.logan #lang_sel a.lang_sel_sel {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;/*dynamic*/
	background-image: url(images/dropdown-bg.php?fill=222324);/*dynamic*/
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) 50%;
	background-size: 10px;
	border: 1px solid rgba(34,35,35,.1);/*dynamic*/
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: none!important;
	-webkit-box-shadow: none!important;
	box-shadow: none!important;
	color: #222324;/*dynamic*/
	font-family: "Merriweather";/*dynamic*/
	font-size: .925em;
	font-weight: 400;/*dynamic*/
	line-height: 3;/*dynamic*/
	height: 3em;
	outline: 0!important;
	padding: 0 35px 0 15px;/*ltr*/
}
.select2-results li {
	list-style-type: none;
}
.select2-search input {
	margin-bottom: 0!important;
}
.select2-container .select2-choice .select2-arrow {
	display: none;
}
.select2-search input {
	background-color: transparent;
	background-image: url(images/quickview-icon.php?fill=222324);/*dynamic*/
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 16px;
}
.select2-drop-active {
	border-color: rgba(34,35,35,.1);/*dynamic*/
}
/*target Internet Explorer 9 and Internet Explorer 10:*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	select {
		background:none;
		padding: 5px;
	}
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select[multiple]:focus {
	background-color: #ffffff;/*dynamic*/
	border-color: rgba(34,35,35,.1);/*dynamic*/
}
::-webkit-input-placeholder {
	color: #898b8f;/*dynamic*/
	font-style: italic;
}
::-moz-placeholder {
	color: #898b8f;/*dynamic*/
	font-style: italic;
}
:-ms-input-placeholder {
	color: #898b8f;/*dynamic*/
	font-style: italic;
}
::input-placeholder {
	color: #898b8f;/*dynamic*/
	font-style: italic;
}
.wpcf7-form span[role="alert"] {
	display: none!important;
}
.wpcf7-form span.wpcf7-form-control {
	border-bottom: 2px solid transparent;
}
.wpcf7-form .wpcf7-not-valid {
	border-bottom-color: #f16a2e!important;
}
.wpcf7-response-output {
	background-color: rgba(87, 200, 95, .15);/*dynamic*/
	background-image: url(images/check-icon.php?fill=222324);/*dynamic*/
	background-position: 20px 30px;/*ltr*/
	background-repeat: no-repeat;
	background-size: 12px;
	border: 0!important;
	color: inherit;
	float: left;
	margin: 0!important;
    padding: 20px 20px 20px 40px!important;/*ltr*/
    width: 100%;
}
.wpcf7-response-output.wpcf7-validation-errors {
	background-color: rgba(241, 106, 46, .15);/*dynamic*/
	background-image: url(images/cancel-icon.php?fill=222324);/*dynamic*/
}
.wpcf7-form-control.wpcf7-submit {
	margin: auto!important;
}
form.wpcf7-form p::before, form.wpcf7-form p::after {
	content: "";
	display: table;
}
form.wpcf7-form p::after {
	clear: both;
}
.wpcf7-form-control.wpcf7-recaptcha {
	margin-bottom: 1rem;
}
form.wpcf7-form input,
form.wpcf7-form textarea,
form.wpcf7-form select[multiple] {
	margin-bottom: 0!important;
}
form.wpcf7-form textarea {
	height: 160px;
	min-height: 0;
}
.logan-typo-separator {
	display: block;
	margin: 30px auto;
	overflow: hidden;
	width: 100%;
}

/*--------------------------------------------------------------
1.4. Aside
--------------------------------------------------------------*/
#toggle_aside_secondary {
	display: none;
}
@media screen and (max-width: 860px) {
	body.page-template-page-left-sidebar #toggle_aside_secondary,
	body.page-template-page-right-sidebar #toggle_aside_secondary {
		background-color: #ffffff;/*dynamic*/
		background-image: url(images/sidebar-left-icon.php?fill=222324);/*dynamic*/
		background-position: center;
		background-repeat: no-repeat;
		background-size: 20px;
		/*border: 1px solid rgba(34,35,35,.1);/*dynamic
		border-width: 0 1px 1px 0;*/
		-moz-box-shadow: 0 0 10px rgba(33,34,35,.25);/*dynamic*/
		-webkit-box-shadow: 0 0 10px rgba(33,34,35,.25);/*dynamic*/
		box-shadow: 0 0 10px rgba(33,34,35,.25);/*dynamic*/
		cursor: pointer;
		display: block;
		height: 60px;
		left: 0;
		opacity: 1;
		position: fixed;
		width: 60px;
		z-index: 10;
		-webkit-transition: left .5s cubic-bezier(0.23, 1, 0.32, 1), right .5s cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: left .5s cubic-bezier(0.23, 1, 0.32, 1), right .5s cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: left .5s cubic-bezier(0.23, 1, 0.32, 1), right .5s cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: left .5s cubic-bezier(0.23, 1, 0.32, 1), right .5s cubic-bezier(0.23, 1, 0.32, 1);
		transition: left .5s cubic-bezier(0.23, 1, 0.32, 1), right .5s cubic-bezier(0.23, 1, 0.32, 1);
	}
	body.page-template-page-right-sidebar #toggle_aside_secondary {
		background-image: url(images/sidebar-right-icon.php?fill=222324);/*dynamic*/
		left: auto;
		right: 0;
	}
	body.slided.page-template-page-left-sidebar #toggle_aside_secondary,
	body.sided.page-template-page-left-sidebar #toggle_aside_secondary {
		left: 300px;
	}
	body.slided.page-template-page-right-sidebar #toggle_aside_secondary {
		right: -300px;
	}
	body.sided.page-template-page-right-sidebar #toggle_aside_secondary {
		right: 300px;
	}
}
aside#secondary {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: inherit;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}
#primary:first-child + aside#secondary,
#primary:first-child + div > aside#secondary {
	padding-bottom: 50px;
	padding-top: 40px;
}
@media screen and (min-width: 861px) {
	#page-wrap > aside#secondary {
		width: 25%!important;
	}
	aside#secondary.is_stuck {
		left: auto!important;
		overflow: visible!important;
	}
}
@media screen and (max-width: 860px) {
	aside#secondary {
		background: #ffffff;/*dynamic*/
		bottom: 0;
		color: #222323;/*dynamic*/
		left: 0;
		margin-bottom: 0;
		opacity: 0;
		padding: 0;
		padding: 50px 130px 50px 30px;
		position: fixed;
		top: 0;
		width: 400px!important;
		z-index: 0;
		-webkit-transition: opacity .01s .5s;
		-moz-transition: opacity .01s .5s;
		-ms-transition: opacity .01s .5s;
		-o-transition: opacity .01s .5s;
		transition: opacity .01s .5s;
	}
	body.page-template-page-right-sidebar aside#secondary {
		left: auto!important;
		padding: 50px 30px 50px 130px;
		right: 0;
		top: 0!important;
	}
	body.sided aside#secondary {
		opacity: 1;
		-webkit-transition: opacity .01s;
		-moz-transition: opacity .01s;
		-ms-transition: opacity .01s;
		-o-transition: opacity .01s;
		transition: opacity .01s;
	}
	body.slided aside#secondary {
		display: none;
	}
}
body.page-template-page-right-sidebar aside#secondary {
	float: right;/*ltr*/
}
body.page-template-page-left-sidebar aside#secondary {
	float: left;/*ltr*/
}
aside.widget > select {
	width: 100%;
}
#secondary aside.widget,
#secondary .rpwwt-widget,
#sliding-bar aside.widget,
#sliding-bar .rpwwt-widget,
.wpb_widgetised_column aside.widget,
.wpb_widgetised_column .rpwwt-widget {
	font-size: .925em;
	line-height: 1.5;
	margin-bottom: 2em;
}
.site-info aside.widget {
	margin-bottom: 0;
	padding-bottom: 0;
}
@media screen and (max-width: 860px) {
	#secondary aside.widget:first-child,
	#secondary .rpwwt-widget:first-child {
		margin-top: 2em;
	}
}
aside.widget:last-child,
.rpwwt-widget:last-child {
	margin-bottom: 0;
}
.widget-title {
	font-weight: bold;
	margin: .5em 0 1em;
	text-align: center;
}
.widget > ul > li,
.widget > ul > li > ul li,
.widget > [class^="menu-"] > ul > li,
.widget > [class^="menu-"] > ul > li > ul li {
	margin: 0;
	padding: .5em 0;
}
.widget > ul > li ulm
.widget > [class^="menu-"] > ul > li ul {
	padding: 0;
}
.widget > ul > li:not(:last-child),
.widget > ul > li > ul li:not(:last-child),
.widget > [class^="menu-"] > ul > li:not(:last-child),
.widget > [class^="menu-"] > ul > li > ul li:not(:last-child) {
	border-bottom: 1px solid rgba(34,35,35,.1);/*dynamic*/
}
.widget > ul > li > a,
.widget > ul > li > ul li > a,
.widget > [class^="menu-"] > ul > li > a,
.widget > [class^="menu-"] > ul > li > ul li > a {
	color: inherit;
	font-weight: bold;
}
.wpb_content_element .widget > h2:first-child {
	margin-top: 0;
}
.widget_search input[type="search"] {
	background-image: url(images/quickview-icon.php?fill=222324)!important;/*dynamic*/
	background-position: right 15px center!important;/*ltr*/
	background-repeat: no-repeat!important;
	background-size: 16px!important;
	padding-right: 50px!important;/*ltr*/
}
.widget_search input[type="submit"] {
    background: transparent!important;
    border-width: 0!important;
    cursor: pointer;
    height: 55px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    width: 50px;
}
.product-categories li {
	margin: 0;
}
.product-categories li {
	list-style-type: none;
}
.product-categories li > a {
	color: inherit;
	font-weight: bold;
}
.product-categories li .count {
	float: right;/*ltr*/
}
.widget .logan-button, .widget input[type="submit"], .widget .button {
	background: #ffffff;/*dynamic*/
    border: 1px solid rgba(33,34,35,.1)!important;
	color: #222324;/*dynamic*/
	float: left;/*ltr*/
    padding: .5em 1em;
}
.widget_price_filter .ui-slider-horizontal {
	background: rgba(34,35,35,.1);/*dynamic*/
    height: 4px;
    margin: 1rem 0 .75rem;
    position: relative;
    width: 100%;
    z-index: 1;
}
.widget_price_filter .block_small .ui-slider-horizontal {
    margin: 10px 0;
}
.widget_price_filter .ui-slider-horizontal a,
.widget_price_filter .ui-slider-horizontal span {
	border: 1px solid rgba(34,35,35,.25);/*dynamic*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: ew-resize;
    background: #ffffff;/*dynamic*/
    height: 14px;
    margin: -5px 0 0 -5px;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    width: 14px;
    z-index: 3;
}
.widget_price_filter .active .ui-slider-horizontal a,
.widget_price_filter .active .ui-slider-horizontal span {
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}
.widget_price_filter .ui-slider-range {
	background: #c6ac5e;
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2;
}
.widget_price_filter .active .ui-slider-range {
    -moz-transition: none!important;
    -webkit-transition: none!important;
    -o-transition: none!important;
    -ms-transition: none!important;
    transition: none!important;
}
.widget_price_filter .price_slider_amount button {
	float: left;/*ltr*/
    margin: 0;
}
.widget_price_filter .price_slider_amount .price_label {
	float: right;/*ltr*/
	font-size: .9em;
	text-transform: lowercase;
}
.widget.yith-woocompare-widget a.title {
	color: inherit;
	font-weight: bold;
}
.widget.yith-woocompare-widget a.remove {
	background-color: transparent!important;
	background-image: url(images/cancel-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px;
	height: 16px;
	text-indent: -99999px;
	width: 16px;
}
.widget.yith-woocompare-widget a.clear-all {
	background: #ffffff;/*dynamic*/
	color: #222324;/*dynamic*/
	float: left;/*ltr*/
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	font-size: 12px;/*dynamic*/
	display: inline-block;
	line-height: 1.667em;/*dynamic*/
	margin-top: 15px;
    padding: .5em 0;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
}
.tagcloud {
	font-size: 12px;/*dynamic*/
	line-height: 1.5em;
}
.tagcloud a {
	background: rgba(21, 21, 21, 0.1);/*dynamic*/
	color: inherit!important;
	font-family: "Lato";/*dynamic*/
	font-size: inherit!important;
	font-weight: bold;/*dynamic*/
	line-height: 2.175em;
	margin-right: .1em;
	padding: .25em .5em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
.instagram-pics {
	margin: 0 -1%;
	width: 102%;
}
.instagram-pics li {
	float: left!important;/*ltr*/
	margin: 0!important;
	padding: 1%;
	width: 33.33%;
}
.instagram-pics li {
	list-style-type: none;
}
.instagram-pics li a {
	float: left;/*ltr*/
	text-align: center;
	width: 100%;
}
.instagram-pics li a img {
	display: inline-block;
	float: left;/*ltr*/
}
.widget > ul.instagram-pics {
	margin-left: 0 -5px;
}
.widget > ul.instagram-pics > li {
	border-bottom: 0;
	padding: 5px 0 0 5px;
}
.instagram-pics li {
	list-style-type: none;
}
.widget.null-instagram-feed p,
.widget.widget_null-instagram-feed p {
	text-align: center;
}
.widget.null-instagram-feed p a,
.widget.widget_null-instagram-feed p a {
	margin-top: 1rem;
	padding: .5em 1em;
}
.widget_calendar table {
	border-collapse: separate;
	margin-bottom: 0;
	width: 100%;
}
.widget_calendar caption {
	font-size: .875rem;
	font-weight: bold;
	margin: 0 0 10px;
	text-align: center;
	text-transform: uppercase;
}
.widget_calendar th {
	line-height: 2.5em;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}
.widget_calendar tfoot td {
	border-top: 1px solid rgba(21, 21, 21, 0.1);
	font-size: .825rem;
	font-weight: bold;
	line-height: 2.5em;
	margin: 0;
	padding: 1em 0;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle;
}
.widget_calendar tfoot td#next {
	text-align: right;
}
.widget_calendar tbody td {
	line-height: 2.5em;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}
.widget_calendar tbody td a {
	-moz-border-radius: 2px;
	border-radius: 2px;
	display: block;
}
.widget_calendar tbody td#today {
	position: relative;
}
.widget_calendar tbody td#today::before {
	-moz-border-radius: 2px;
	border-radius: 2px;
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.widget_archive select,
.widget_categories select {
	display: block;
	margin: 10px 0;
}
.widget_contact_info .contact-map {
	margin-bottom: 10px;
}
.widget_recent-posts-widget-with-thumbnails img,
.widget.recent-posts-widget-with-thumbnails img {
	max-width: none;
	width: auto;
}
.widget ul.product_list_widget li {
	float: left;
	margin: 0 0 1em;
	min-height: 65px;
	overflow: hidden;
	padding-left: 70px;/*ltr*/
	position: relative;
	width: 100%;
}
.product_list_widget li {
	list-style-type: none;
}
.product_list_widget li a {
	color: inherit;
}
.product_list_widget li img {
	float: left;
	margin: 5px 10px 5px -70px;/*ltr*/
	width: 60px;
}
.widget .product_list_widget .star-rating {
    clear: right;
	float: none;
    margin: 0;
}
.product_list_widget li .amount,
.product_list_widget li ins {
	display: block;
	font-weight: normal;
}
.product_list_widget li ins .amount {
	display: inline;
}
.product_list_widget .reviewer {
	font-variant: small-caps;
	text-transform: lowercase;
}
.widget_layered_nav li,
.widget_layered_nav_filters li {
	margin: 0;
}
.widget_layered_nav li,
.widget_layered_nav_filters li {
	list-style-type: none;
}
.widget_layered_nav a,
.widget_layered_nav_filters a {
	color: inherit;
	font-weight: bold;
}
.widget_layered_nav .count {
	float: right;/*ltr*/
}
.widget_layered_nav_filters a::before {
	content: "\00d7";
	padding-right: 5px;/*ltr*/
}
.woocommerce-product-search {
	background-color: transparent;
	background-image: url(images/quickview-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	position: relative;
}
.woocommerce-product-search label {
	display: none;
}
.woocommerce-product-search input[type="search"] {
	background-image: url(images/quickview-icon.php?fill=222324)!important;/*dynamic*/
	background-position: right 15px center!important;/*ltr*/
	background-repeat: no-repeat!important;
	background-size: 16px!important;
	padding-right: 50px!important;/*ltr*/
}
.woocommerce-product-search input[type="submit"] {
    background: transparent!important;
    border-width: 0!important;
    cursor: pointer;
    height: 55px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    width: 50px;
}
.widget .children {
	padding-left: 1em;/*ltr*/
}
.wp_review_tab_widget_content li {
	list-style-type: none;
}
ul.recentcomments {
	font-size: .925rem;
}
li.recentcomment {
	margin: 0 0 1em;
	overflow: hidden;
}
li.recentcomment::before {
	display: none!important;
}
ul.recentcomments li.recentcomment:not(:last-child) {
	border-bottom: 1px solid rgba(33,34,35,.1);/*dynamic*/
}
li.recentcomment:last-child {
	margin: 0;
}
ul.recentcomments .alignleft {
	margin: 5px 10px 5px 0;/*ltr*/
}
ul.recentcomments img.avatar {
	background: transparent;
	border: 0;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding: 0;
	width: 70px;
}
ul.recentcomments .recent-comment-author {
	font-variant: small-caps;
	font-weight: bold;
}
.widget > ul.recentcomments > li > a {
	font-style: italic;
	font-weight: normal;
}
/*--------------------------------------------------------------
/*--------------------------------------------------------------
1.5. Footer
--------------------------------------------------------------*/
footer#colophon {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	bottom: 0;
	color: #ffffff;/*dynamic*/
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 1;
	-webkit-transition: margin-left .5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: margin-left .5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: margin-left .5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: margin-left .5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: margin-left .5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (min-width: 801px) {
	body.header-side footer#colophon {
		width: calc(100% - 280px);
	}
}
body.slided footer#colophon.fixed-footer {
	margin-left: 0.1px;/*webkit workaround*/
}
footer#colophon .footer-composer,
footer#colophon .footer-widgets,
footer#colophon .site-info {
	font-size: 15px;/*dynamic*/
	margin: auto;
	max-width: 1236px;/*dynamic*/
	width: 100%;
}
footer#colophon .footer-composer {
	margin: 100px auto 0;
}
footer#colophon .footer-widgets {
	padding: 100px 0 50px;
}
footer#colophon .site-info {
	padding: 50px 0;
	text-align: center;
}
footer#colophon .footer-widgets + .site-info {
	border-top: 1px solid rgba(255,255,255,.25);/*dynamic*/
}
body.boxed-layout footer#colophon.fixed-footer {
	max-width: 1436px;/*dynamic*//* 1236 + 100 + 100 */
}
body footer#colophon.fixed-footer.just-fixed {
	position: fixed;
}
footer#colophon .footer-composer,
footer#colophon .footer-widgets,
footer#colophon .site-info {
	max-width: 1236px;
	width: calc( 100% - 50px );
}
@media screen and (max-width: 1679px) {
	footer#colophon .footer-composer,
	footer#colophon .footer-widgets,
	footer#colophon .site-info {
		max-width: 1080px;
	}
}
@media screen and (max-width: 1024px) {
	footer#colophon .footer-composer,
	footer#colophon .footer-widgets,
	footer#colophon .site-info {
		max-width: 800px;
	}
}
footer#colophon .footer-widgets > div {
	margin: 0 -15px;
}
footer#colophon .footer-widgets > div > .footer-widgets-column {
	float: left;/*ltr*/
	padding: 0 15px;
}
footer#colophon .footer-widgets.columns-1 > div > .footer-widgets-column {
	width: 100%;
}
footer#colophon .footer-widgets.columns-2 > div > .footer-widgets-column {
	width: 50%;
}
footer#colophon .footer-widgets.columns-3 > div > .footer-widgets-column {
	width: 33.33%;
}
footer#colophon .footer-widgets.columns-4 > div > .footer-widgets-column {
	width: 25%;
}
@media screen and (max-width: 1023px) {
	footer#colophon .footer-widgets:not(.columns-1) > div > .footer-widgets-column {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	footer#colophon .footer-widgets > div > .footer-widgets-column {
		width: 100%;
	}
}
#logan_back_to_top {
	background-color: rgba(33,34,35,.9);/*dynamic*/
	bottom: 22px;
	color: #ffffff;/*dynamic*/
	display: block;
    font-size: 12px;
	height: 30px;
    line-height: 34px;
	opacity: 0;
	position: fixed;
	right: 22px;
    text-align: center;
	width: 30px;
	z-index: 1;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: all .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: all .35s cubic-bezier(.33,0,.2,1);
	-o-transition: all .35s cubic-bezier(.33,0,.2,1);
	transition: all .35s cubic-bezier(.33,0,.2,1);
}
body.scroll-top-reached #logan_back_to_top {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/*--------------------------------------------------------------
1.6. WooCommerce
--------------------------------------------------------------*/
.demo_store {
    background-color: rgba(0,0,0,.85);
    bottom: 0;
    color: #dddddd;
    font-size: .85rem;
    left: 0;
    margin: 0;
    padding: .5rem 1.725rem;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 99;
}
p.woocommerce-result-count {
	font-size: .925em;
	font-variant: small-caps;
	margin: 0;
	padding: 10px 0;
	text-transform: lowercase;
}
@media screen and (min-width: 601px) {
	p.woocommerce-result-count {
		clear: right;
		float: right;/*ltr*/
	}
	form.woocommerce-ordering {
		float: left;/*ltr*/
	}
}
.woocommerce-pagination {
	margin: 30px auto 50px;
	text-align: center;
}
.woocommerce-pagination ul {
	display: inline-block;
}
form.woocommerce-ordering + .woocommerce-pagination {
	margin: 0 auto;
	text-align: inherit;
}
@media screen and (min-width: 601px) {
	form.woocommerce-ordering + .woocommerce-pagination {
		float: right;/*ltr*/
	}
}
@media screen and (max-width: 600px) {
	form.woocommerce-ordering + .woocommerce-pagination {
		display: none;
	}
}
.woocommerce-pagination li {
	display: block;
	float: left;
	height: 44px;
	line-height: 44px;
	margin: 0 -1px 0 0;
	width: 44px;
}
.woocommerce-pagination li {
	list-style-type: none;
}
.woocommerce-pagination li span,
.woocommerce-pagination li a {
	background: #ffffff;/*dynamic*/
	border-style: solid;
	border-width: 1px;
	display: block;
	overflow: hidden;
	text-align: center;
	width: 100%;
}
.woocommerce-pagination li span {
	background: transparent;
	border-color: transparent;
	color: #acacaf;/*dynamic*/
}
.woocommerce-pagination li a {
	border-color: #e5e5e5;/*dynamic*/
	color: inherit;
}
.woocommerce-pagination li:last-child a {
	border-width: 1px;
}
.woocommerce-pagination li a.prev.page-numbers {
	background-image: url(images/angle-left-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	text-indent: -99999px;
}
.woocommerce-pagination li a.next.page-numbers {
	background-image: url(images/angle-right-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	text-indent: -99999px;
}
ul.products {
	clear: both;
}
ul.products li {
	display: block;
	float: left;
	margin: 0;
	text-align: center;
}
ul.products li {
	list-style-type: none;
}
ul.products li > a {
	color: inherit;
	display: block;
	padding: 20px 0 0;
}
ul.products li.product-category h3 {
	padding: 20px 0 0;
}
ul.products li.product-category h3 mark {
	background: transparent;
}
.product-image-loop-wrap {
	display: block;
	overflow: hidden;
	position: relative;
}
.product-image-loop-wrap .wp-post-image {
	display: inline-block;
	position: relative;
	vertical-align: top;
	z-index: 0;
}
.image-wrap {
	position: relative;
}
.product-image-loop-wrap .hover-image {
	left: 0;
	position: absolute;
	opacity: 0;
	top: 0;
	z-index: 1;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), -webkit-transform .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), -moz-transform .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), -ms-transform .35s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1), -o-transform .35s cubic-bezier(.33,0,.2,1);
	transition: opacity .35s cubic-bezier(.33,0,.2,1), transform .35s cubic-bezier(.33,0,.2,1);
}
ul.products li:hover .hover-image {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
ul.products .product-categories-in-loop {
	color: #acacaf;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-size: 12px;/*dynamic*/
	font-weight: bold;/*dynamic*/
	text-transform: uppercase;/*dynamic*/
}
ul.products h3 {
	color: #222324;/*dynamic*/
	font-family: "Merriweather";/*dynamic*/
	font-size: 1rem;/*dynamic*/
	font-weight: normal;/*dynamic*/
	line-height: 1.5;/*dynamic*/
	margin: 0 0 .175em;
	text-transform: none;/*dynamic*/
}
ul.products .onsale,
ul.products .out-of-stock {
	color: #ffffff;/*dynamic*/
	display: block;
	font-family: "Lato";/*dynamic*/
	font-size: 11px;/*dynamic*/
	font-weight: bold;/*dynamic*/
	padding: 3px 8px;
	position: absolute;
	left: 8px;
	text-transform: uppercase;/*dynamic*/
	top: 8px;
	z-index: 3;
}
ul.products .onsale {
	background-color: #f57661;/*dynamic*/
}
ul.products .product-out-of-stock .onsale {
	display: none;
}
ul.products .out-of-stock {
	background-color: #989b9b;/*dynamic*/
}
ul.products .price {
	display: block;
	font-size: 1.1rem;/*dynamic*/
}
ul.products .price del,
ul.products .price del .amount {
	color: #acacaf;/*dynamic*/
	font-size: .95rem;
	font-weight: normal;
}

ul.products .amount,
ul.products ins,
ul.product_list_widget ins {
	background: none;
	font-weight: bold;
}
ul.products del .amount {
	font-weight: normal;
}
.single-product #main > *:last-child {
	margin-bottom: 80px;
}
.yith-wcwl-add-to-wishlist,
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
	display: inline-block!important;
	margin: 0!important;
	vertical-align: top;
}
.yith-wcwl-add-to-wishlist a {
	background-image: url(images/wishlist-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	display: inline-block!important;
	float: left;
	font-size: 1px;
	height: 30px;
	padding: 0;
	text-indent: -99999px;
	vertical-align: top;
	width: 30px;
}
.yith-wcwl-add-to-wishlist .hide a {
	background-image: url(images/wishlist-icon.php?fill=c6ac5e);/*dynamic*/
}
.yith-wcwl-wishlistaddedbrowse.show,
.yith-wcwl-wishlistexistsbrowse.show {
	display: none!important;
}
.logan .yith-wcwl-add-to-wishlist img {
	display: none!important;
}
#yith-wcwl-popup-message {
	display: none!important;
}
.shop_icons_wrap {
	background-color: rgba(255,255,255,1);/*dynamic*/
	bottom: 0;
	display: block;
	left: 0;/*ltr*/
	opacity: 0;
	padding: 4px 8px;
	position: absolute;
	z-index: 3;
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), left .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), left .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), left .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1), left .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	transition: opacity .35s cubic-bezier(.33,0,.2,1), left .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
}
.shop_icons_wrap .clear {
	display: none;
}
ul.products .button.compare,
.single-product .button.compare {
	display: none;
}
ul.products .image-wrap .button.compare,
.single-product .images .button.compare {
	background-color: transparent;
	background-image: url(images/compare-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	border: 0!important;
	display: inline-block;
	font-size: 1px;
	height: 30px;
	margin: 0;
	text-indent: -99999px;
	padding: 0;
	vertical-align: top;
	width: 30px;
}
@media screen and (max-width: 1024px) {
ul.products .image-wrap .button.compare,
.single-product .images .button.compare {
		display: none!important;
	}
}
@media screen and (min-width: 861px) {
	ul.products li:hover .shop_icons_wrap,
	.images:hover .shop_icons_wrap {
		bottom: 8px;
		left: 8px;/*ltr*/
		opacity: 1;
	}
}
@media screen and (max-width: 860px) {
	ul.products li .shop_icons_wrap,
	.images .shop_icons_wrap {
		bottom: 8px!important;
		left: 8px!important;/*ltr*/
		opacity: 1!important;
	}
}
ul.products .wpb_wl_preview_area {
	display: none;
	display: inline-block;
	position: relative;
	top: auto;
	vertical-align: top;
	width: auto;
}
@media screen and (max-width: 1024px) {
	ul.products .wpb_wl_preview_area {
		display: none!important;
	}
}
ul.products .wpb_wl_preview_area .wpb_wl_preview {
	background-color: transparent;
	background-image: url(images/quickview-icon.php?fill=222324);/*dynamic*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	cursor: pointer;
	display: inline-block!important;
	float: left;
	font-size: 1px;
	height: 30px;
	opacity: 1;
	padding: 0;
	text-indent: -99999px;
	vertical-align: top;
	visibility: visible;
	width: 30px;
}
ul.products .add_to_cart_button span {
	display: block;
	height: 100%;
}
ul.products .button.product_type_simple,
ul.products .button.product_type_variable,
ul.products .button.product_type_grouped {
	background-color: #222324;/*dynamic*/
	background-image: url(images/arrow-right-icon.php?fill=c6ac5e);/*dynamic*//*ltr*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	-moz-border-radius: 0!important;
	border-radius: 0!important;
	border-width: 0!important;
	bottom: 0;
	display: block;
	height: 38px;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: 0;/*ltr*/
	overflow: hidden;
	text-indent: -99999px;
	width: 38px;
	z-index: 3;
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
	transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), bottom .35s cubic-bezier(.33,0,.2,1);/*ltr*/
}
ul.products .add_to_cart_button.product_type_simple {
	background-image: url(images/add-to-cart-icon.php?fill=c6ac5e);/*dynamic*/
    background-position: 10px;
}
ul.products .add_to_cart_button.product_type_variable,
ul.products .product_type_grouped {
	background-image: url(images/list-icon.php?fill=c6ac5e);/*dynamic*/
}
@media screen and (min-width: 861px) {
	ul.products li:hover .add_to_cart_button,
	ul.products li:hover .button.product_type_simple,
	ul.products li:hover .button.product_type_grouped {
		bottom: 8px;
		right: 8px;/*ltr*/
		opacity: 1;
	}
}
@media screen and (max-width: 860px) {
	ul.products li .add_to_cart_button,
	ul.products li .button.product_type_simple,
	ul.products li .button.product_type_grouped {
		bottom: 8px!important;
		right: 8px!important;/*ltr*/
		opacity: 1!important;
	}
}
ul.products .add_to_cart_button.added,
ul.products .add_to_cart_button.loading {
	padding: 0 0 0 1em;/*ltr*/
}
ul.products .add_to_cart_button.added,
ul.products .add_to_cart_button.loading {
	background-image: url(images/check-2-icon.php?fill=c6ac5e);/*dynamic*/
}
ul.products .added_to_cart {
	display: none;
}
.single-product.no-title .entry-content {
	padding-top: 70px;
}
.single-product .images,
.single-product .summary.entry-summary {
	float: left;/*ltr*/
	position: relative;
	width: calc( 50% - 20px );
}
.single-product .images {
	cursor: crosshair;
	margin-right: 20px;/*ltr*/
}
.single-product .summary.entry-summary {
	margin-left: 20px;/*ltr*/
}
@media screen and (max-width: 800px) {
	.single-product .images,
	.single-product .summary.entry-summary {
		margin-left: 0;
		width: 100%;
	}
	.single-product .summary.entry-summary {
		margin-top: 25px;
	}
}

.single-product .images .thumbnails {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}
.single-product .images .zoomImg {
	z-index: 1;
}
.single-product .images .thumbnails a {
	display: block;
	margin: 5px 5px 0 0;
}
.single-product .images .thumbnails a.selected {
	cursor: crosshair;
}
.single-product .images .thumbnails a img {
	display: block;
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1);
	transition: opacity .35s cubic-bezier(.33,0,.2,1);
}
.single-product .images .thumbnails a.selected img {
	opacity: .3;
}
.single-product .images:hover .thumbnails img {
	opacity: .3;
}
.single-product .images:hover .thumbnails a.selected img {
	opacity: .075;
}
.single-product .images .thumbnails a:not(.selected):hover img {
	opacity: 1!important;
}
.single-product .out-of-stock {
	color: #f57661;/*dynamic*/
	font-weight: bold;
}
.single-product .summary.entry-summary .price .amount {
	font-size: 1.65rem;
	font-weight: bold;
}
.single-product .summary.entry-summary .price del,
.single-product .summary.entry-summary .price del .amount {
	color: #acacaf;/*dynamic*/
	font-size: 1.25rem;
	font-weight: normal;
}
.woocommerce-tabs {
	clear: both;
	display: block;
	margin-bottom: 80px;
	padding-top: 40px;
}
.woocommerce-tabs > h3,
.vc_tta-accordion .vc_tta-panel-title,
.logan .vc_toggle_logan .vc_toggle_title {
	background-color: transparent!important;
	background-image: url(images/plus-icon.php?fill=222324);/*dynamic*/
	background-position: right 20px center;/*ltr*/
	background-repeat: no-repeat;
	background-size: 12px;
	-moz-border-radius: 0;/*dynamic*/
	border-radius: 0;/*dynamic*/
	border-bottom: solid rgba(34,35,35,.1)!important;
    border-width: 0 0 1px!important;
	color: inherit!important;/*dynamic*/
	font-size: 12px;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	line-height: inherit!important;
    margin: 0!important;
	padding: 0!important;/*ltr*/
	position: relative;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
}
.logan .vc_tta-tab [data-vc-tabs] > span {
	font-size: 12px;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	line-height: inherit!important;
    margin: 0!important;
	padding: 0!important;/*ltr*/
	position: relative;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
}
.logan .vc_toggle_logan .vc_toggle_title h4 {
	color: inherit!important;
	font-size: inherit!important;
	font-family: inherit!important;
	font-weight: inherit!important;
	line-height: inherit!important;
    margin: 0!important;
	padding: 0!important;
	text-decoration: none;
	text-transform: inherit!important;
}
.woocommerce-tabs > h3.ui-state-active,
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title,
.logan .vc_toggle_logan .vc_toggle_active .vc_toggle_title {
	background-image: url(images/cancel-icon.php?fill=222324);/*dynamic*/
}
.woocommerce-tabs > h3 > a,
.vc_tta-accordion .vc_tta-panel-title > a {
	color: inherit;
	display: block;
	padding: 0 40px 0 0!important;/*ltr*/
}
.woocommerce-tabs > h3 > a > span,
.vc_tta-accordion .vc_tta-panel-title > a > span {
	display: inline-block;
    padding: 1em 0!important;
    position: relative;
}
.logan .vc_toggle_logan .vc_toggle_title > h4 {
	color: inherit;
	display: inline-block;
    padding: 1em 40px 1em 0!important;/*ltr*/
    position: relative;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title > a > i,
.logan .vc_toggle_logan .vc_toggle_title > i {
	display: none!important;
}
@media screen and (max-width: 400px) {
	.vc_tta-panel-title {
		background-color: transparent!important;
		background-image: url(images/plus-icon.php?fill=222324);/*dynamic*/
		background-position: right 20px center;/*ltr*/
		background-repeat: no-repeat;
		background-size: 12px;
		-moz-border-radius: 0;/*dynamic*/
		border-radius: 0;/*dynamic*/
		border-bottom: solid rgba(34,35,35,.1)!important;
	    border-width: 0 0 1px!important;
		color: inherit!important;/*dynamic*/
	}
	.vc_tta-panel.vc_active .vc_tta-panel-title {
		background-image: url(images/cancel-icon.php?fill=222324);/*dynamic*/
	}
	.vc_tta-panel-title > a {
		color: inherit;
		display: block;
		padding: 0 40px 0 0!important;/*ltr*/
	}
	.vc_tta-panel-title > a > span {
		display: inline-block;
	    padding: 1em 0!important;
	    position: relative;
	}
}
.woocommerce-tabs > h3 > a > span::after {
	content: '';
    position: absolute;
    background-color: #222324;/*dynamic*/
    height: 2px;
    display: block;
    bottom: 0;
    left: 0;
    width: 0;
    -webkit-transition: width .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: width .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: width .25s cubic-bezier(.33,0,.2,1);
	-o-transition: width .25s cubic-bezier(.33,0,.2,1);
	transition: width .25s cubic-bezier(.33,0,.2,1);
}
.woocommerce-tabs > h3.ui-state-active > a > span::after {
	width: 100%;
}
.woocommerce-tabs > div.entry-content,
.logan .vc_tta-accordion .vc_tta-panel-body,
.logan .vc_toggle_logan .vc_toggle_content {
	border-bottom: 1px solid rgba(34,35,35,.1)!important;
	padding: 20px 0;
}
.woocommerce-tabs > div h2 {
	display: none!important;
}
.woocommerce-product-rating {
	margin-bottom: 1em;
}
.star-rating, p.stars {
    float: left;
    font-size: 0;
    height: 16px;
    margin: 0 5px 0 0;/*ltr*/
    position: relative;
    text-indent: -99999px;
    width: 80px;
}
ul.products .star-rating,
.widget .star-rating {
	display: block;
	float: left;
	height: 12px;
	margin: 0 calc( 50% - 30px ) 5px;
	vertical-align: top;
    width: 60px;
}
p.stars {
    float: none;
    margin: .2em 0 1.75em;
}
.summary.entry-summary .star-rating {
    margin-top: 4px;
}
#reviews .comment-form-author,
#reviews .comment-form-email {
	width: calc( 50% - 15px );
}
@media (max-width: 600px) {
	#reviews .comment-form-author,
	#reviews .comment-form-email {
		width: 100%;
	}
}
#reviews .comment-form-rating label,
#reviews .comment-form-rating p.stars {
	display: inline-block;
	margin-right: 15px;/*ltr*/
	vertical-align: baseline;
}
#reviews #review_form_wrapper {
	border-top: 1px solid rgba(34,35,35,.1)!important;
	margin-top: 1.535em;
	padding-top: 1.535em;
}
.summary.entry-summary .sharedaddy.sd-sharing-enabled {
	border-top: 1px solid rgba(34,35,35,.1)!important;
	margin-top: 1.525rem;
    padding-top: 1.525rem;
}
.summary.entry-summary .variations td.label {
	font-weight: bold;
}
table.variations {
	padding-bottom: 20px;
	position: relative;
}
table.variations td.label {
	padding-left: 0;/*ltr*/
}
table.variations td.value {
	width: 100%;
}
.reset_variations {
	bottom: -10px;
	color: #acacaf;
    font-weight: normal;
    font-family: 'Lato';
    font-size: 11px;
    left: 0;
    position: absolute;
    text-transform: uppercase;
}
.woocommerce div[role="list"].products div[role="listitem"] .star-rating {
    bottom: 7px;
    position: absolute;
    opacity: 0;
    margin: 0;
    -webkit-transition: opacity 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
    z-index: -1;
}
@media (min-width: 1025px) {
    .woocommerce div[role="list"].products div[role="listitem"]:hover .star-rating {
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .woocommerce div[role="list"].products div[role="listitem"] .star-rating {
        opacity: 1;
    }
}
.group_table td {
	display: inline-block;
	padding: 0;
}
body:not(.rtl) .group_table td.product-thumb {
    float: left;
    margin-right: 30px;
}
body.rtl .group_table td.product-thumb {
    float: right;
    margin-left: 30px;
}
.group_table td.price {
    border: 0!important;
    margin: 20px 0 0!important;
    padding: 0!important;
}
.summary.entry-summary .woocommerce-review-link {
    color: inherit!important;
    display: inline-block;
    font-weight: normal;
    font-family: 'Lato';/*dynamic*/
    font-size: 11px;/*dynamic*/
    text-transform: uppercase;/*dynamic*/
}
.star-rating::before, p.stars::before {
	background-image: url(images/star-o-icon.php?fill=c6ac5e);/*dynamic*/
	background-position: left center;
	background-repeat: repeat-x;
	background-size: 16px;
	content: '';
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    text-indent: 0;
    width: 100%;
}
ul.products .star-rating::before,
.widget .star-rating::before {
	background-size: 12px;
    height: 12px;
}
.star-rating > span,
p.stars > span a {
    color: inherit;
    display: block;
    height: inherit;
    overflow: hidden;
    text-align: left;
}
p.stars > span a {
    float: left;
    height: 100%;
    position: absolute;
}
.star-rating > span::before,
p.stars > span a::before {
	background-image: url(images/star-icon.php?fill=c6ac5e);/*dynamic*/
	background-position: left center;
	background-repeat: repeat-x;
	background-size: 16px;
	content: '';
    display: block;
    height: 16px;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-indent: 0;
    width: inherit;
}
ul.products .star-rating > span::before,
.widget .star-rating > span::before {
	background-size: 12px;
    height: 12px;
}
p.stars > span a::before {
    opacity: 0;
}
p.stars > span a:hover::before {
    opacity: 1;
}
p.stars > span a.active::before {
    opacity: 1;
}
p.stars > span a.star-1 {
    width: 16px;
    z-index: 5;
}
p.stars > span a.star-2 {
    width: 32px;
    z-index: 4;
}
p.stars > span a.star-3 {
    width: 48px;
    z-index: 3;
}
p.stars > span a.star-4 {
    width: 64px;
    z-index: 2;
}
p.stars > span a.star-5 {
    width: 80px;
    z-index: 1;
}
.single-product .onsale {
	display: none;
}
.entry-content .woocommerce-message {
	background-color: rgba(87, 200, 95, .15);/*dynamic*/
	background-image: url(images/check-icon.php?fill=222324);/*dynamic*/
	background-position: 20px 30px;/*ltr*/
	background-repeat: no-repeat;
	background-size: 12px;
	color: inherit;
	float: left;
	margin-bottom: 40px;
    padding: 20px 20px 20px 40px;/*ltr*/
    width: 100%;
}
.entry-content .woocommerce-message a {
	background: #222324!important;/*dynamic*/
	-moz-border-radius: 0;/*dynamic*/
	border-radius: 0;/*dynamic*/
    border: 0px!important;
	color: #ffffff!important;/*dynamic*/
	cursor: pointer;
	float: right!important;/*ltr*/
	font-size: 12px;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-weight: bold;/*dynamic*/
	line-height: 1.667em;/*dynamic*/
    margin: -5px 0!important;
	padding: 1em 2.125em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;/*dynamic*/
}
.single-product .woocommerce-main-image,
.single-product .woocommerce-main-image img {
	display: block;
	overflow: hidden;
	position: relative;
}
.single-product .summary.entry-summary .price {
	border-bottom: 1px solid rgba(34,35,35,.1);/*dynamic*/
	display: block;
	margin-bottom: 1.525rem;
	padding-bottom: 1.525rem;
}
.single-product .summary.entry-summary .single_variation .price {
	border: 0;
}
.price ins {
	background: none;
}
.single-product .summary.entry-summary [itemprop="description"] p:last-child:not(:first-child) {
	border-bottom: 1px solid rgba(34,35,35,.1);/*dynamic*/
	margin-bottom: 1.525rem;
	padding-bottom: 1.525rem;
}
.single-product .summary.entry-summary .quantity {
	display: inline-block;
	margin-right: 15px;/*ltr*/
	vertical-align: middle;
}
.single-product .summary.entry-summary input[type="number"] {
	border-width: 0 0 3px 0;
	font-weight: bold;
	height: 47px;
	min-height: 0;
	padding: 0 5px;
	text-align: center;
	text-indent: 12px;
	width: 80px!important;
}
.single-product .summary.entry-summary button[type="submit"] {
	margin-top: 0;
    -webkit-transition: opacity 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
}
.single-product .summary.entry-summary button[type="submit"][disabled] {
	cursor: default;
	opacity: .3;
}
.single-product .summary.entry-summary .yith-wcwl-add-to-wishlist,
.single-product .summary.entry-summary .compare.button {
	display: none!important;
}
.woo-images-spinner-wrap {
	background: rgba(255,255,255,.85);/*dynamic*/
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
    -webkit-transition: opacity 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
}
.images.loading .woo-images-spinner-wrap {
	opacity: 1;
}
.logan .summary .product_meta {
	border-top: 1px solid rgba(34,35,35,.1)!important;
	color: #acacaf;/*dynamic*/
	font-family: 'Lato';/*dynamic*/
	font-style: normal;
	font-size: 12px;
	font-weight: bold;
	margin-top: 1.525rem;
    padding-top: 1.525rem;
	text-transform: uppercase;/*dynamic*/
}
.product_meta > span a,
.product_meta > span span {
	color: inherit;
	font-weight: 300;
}
.product_meta > span {
	display: block;
}
.woocommerce-cart .woocommerce {
	overflow: hidden;
}
.woocommerce-cart .woocommerce > form {
	clear: both;
	overflow: auto!important;
}
.woocommerce li {
	list-style-type: none;
	margin: 0;
}
.shop_table {
	min-width: 600px;
}
.shop_table td.product-remove,
.shop_table td.product-remove a {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	color: inherit;
	text-align: center;
	width: 20px;
}
.shop_table td.product-thumbnail {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	width: 80px;
}
.shop_table td,
.shop_table.woocommerce-checkout-review-order-table tfoot th {
	border-top: 1px solid rgba(33,34,35,.1);/*dynamic*/
	vertical-align: middle;
}
.shop_table.woocommerce-checkout-review-order-table thead th {
	border-bottom: 1px solid rgba(33,34,35,.1);/*dynamic*/
}
@media (max-width: 600px) {
	.shop_table.woocommerce-checkout-review-order-table {
		display: block;
		min-width: 0;
	}
	.shop_table.woocommerce-checkout-review-order-table thead {
		display: none;
	}
	.shop_table.woocommerce-checkout-review-order-table th,
	.shop_table.woocommerce-checkout-review-order-table td {
		display: block;
	}
	.shop_table dl.variation {
		overflow: hidden;
	}
}
.shop_table td.product-subtotal {
	font-weight: bold;
}
.shop_table .product-subtotal {
	text-align: right;/*ltr*/
}
.shop_table .product-thumbnail img {
	float: left;
	width: 80px;
}
.shop_table input[type="number"] {
    border-width: 1px!important;
    font-size: inherit!important;
    font-weight: bold;
    line-height: inherit;
    min-height: 0!important;
    padding: 0!important;
    text-align: center;
    text-indent: 12px;
    width: 80px!important;
}
.shop_table label[for="coupon_code"] {
	display: none;
}
.shop_table #coupon_code {
	float: left;/*ltr*/
	margin: 0;
    max-width: 250px;
}
.shop_table input[name="apply_coupon"],
.shop_table input[name="apply_coupon"]:hover {
	background: transparent!important;
	border: 0!important;
	color: inherit!important;
	float: left;/*ltr*/
	margin: 0;
	min-height: 3.25rem;
}
.shop_table input[name="update_cart"],
.cart-collaterals button[name="calc_shipping"],
.shop_table input[name="update_cart"]:hover,
.cart-collaterals button[name="calc_shipping"]:hover {
	background-color: transparent!important;
	background-image: url(images/refresh-icon.php?fill=222324);/*dynamic*/
	background-position: left center;/*ltr*/
	background-repeat: no-repeat;
	background-size: 12px;
	border: 0!important;
	color: inherit!important;
	float: right;/*ltr*/
	margin: 0;
	min-height: 3.25rem;
	padding: 1em 0 1em 2.125em;/*ltr*/
}
.shipping-calculator-button {
	margin-bottom: 1em;
}
.cart-collaterals {
	float: right;/*ltr*/
	overflow: auto;
	padding-bottom: 25px;
    text-align: right;/*ltr*/
	width: 100%;

}
.cart-subtotal .amount {
	font-weight: bold;
}
.shipping-calculator-form input {
	float: none!important;
}
.cart_totals h2 {
	display: none;
}
.cart-collaterals td {
	text-align: inherit;
}
.cart-collaterals table {
	min-width: 600px;
}
@media only screen and (max-width: 767px) {
	.cart-collaterals table {
		min-width: 0!important;
	}
}
.cart-collaterals table,
.cart-collaterals .order-total td,
.cart-collaterals .order-total th {
	border-top: 1px solid rgba(33,34,35,.1);/*dynamic*/
}
.cart-collaterals th {
	font-size: 1.215rem;
	font-variant: small-caps;
	text-transform: lowercase;
}
.cart-collaterals td .amount {
	font-size: 1rem;
}
.cart-collaterals .order-total td .amount {
	font-size: 1.425rem;
}
.woocommerce-shipping-calculator {
	font-size: 1rem;
	min-width: 350px;
}
@media only screen and (max-width: 767px) {
	.woocommerce-shipping-calculator {
		min-width: 0!important;
	}
}
.woocommerce-shipping-calculator section {
	clear: both;
	width: 100%;
}
.woocommerce-shipping-calculator > p {
	margin: 0;
}
.cross-sells h2 {
	text-align: left;
}
p.cart-empty,
p.return-to-shop {
	text-align: center;
}
p.return-to-shop {
	background: url(images/cart-empty-icon.php?fill=acacaf) center 30px no-repeat;/*dynamic*/
	padding: 140px 0;
}
table.shop_table.woocommerce-checkout-review-order-table .scrollable {
	margin: 0!important;
}
table.shop_table.woocommerce-checkout-review-order-table .pinned {
    border-width: 0 1px 0 0!important;
    overflow: hidden!important;
	width: 1px!important;
}
[data-pin-log="button_pinit_floating"] {
	display: none!important;
}
.woocommerce-info {
	font-weight: bold;
	margin-bottom: 1.525rem;
}
body.woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([name="coupon_code"]),
body.woocommerce-checkout textarea {
	margin-bottom: 1.525rem;
}
body.woocommerce-checkout .payment_method_paypal img {
	display: inline-block;
	margin: -5px 10px 0;
	vertical-align: middle;
}
body.woocommerce-checkout .payment_methods.methods p,
body.woocommerce-checkout .create-account p:first-child {
	font-size: .9em;
	font-style: italic;
}
body.woocommerce-checkout p.create-account {
	border-top: 1px solid rgba(33,34,35,.1);/*dynamic*/
	font-weight: bold;
	padding-top: 1.535em;
}
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout #order_comments_field {
	border-top: 1px solid rgba(33,34,35,.1);/*dynamic*/
	padding-top: 1.535em;
}
body.woocommerce-checkout .about_paypal {
	font-size: .725em;
	font-weight: bold;
	text-transform: uppercase;
}
body.woocommerce-checkout #order_review {
	padding-bottom: 25px;
}
.woocommerce-info + form.login,
.woocommerce-info + form.checkout_coupon {
	border-bottom: 1px solid rgba(33,34,35,.1);/*dynamic*/
	margin-bottom: 1.535em;
}
form.checkout label {
	display: inline-block;
}
.payment_box {
	background-color: rgba(33,34,35,.1);/*dynamic*/
	padding: 1em;
}
.payment_box p:last-child {
	margin-bottom: 0;
}
.create-account {
	overflow: hidden;
}
.woocommerce-account:not(.logged-in) .woocommerce {
	border: 1px solid rgba(33,34,35,.15);/*dynamic*/
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 30px;
}
.woocommerce-account:not(.logged-in) .woocommerce h2 {
	font-weight: bold!important;
	margin-top: 0;
}
.woocommerce-account:not(.logged-in) .woocommerce input {
	margin-bottom: 1em!important;
}
.woocommerce-account:not(.logged-in) .woocommerce label[for="rememberme"],
.woocommerce-account:not(.logged-in) .woocommerce .lost_password {
	font-size: .725em;
	text-transform: uppercase;
}
.woocommerce-account .woocommerce > p {
	border-bottom: 1px solid rgba(33,34,35,.15);/*dynamic*/
	padding-bottom: 40px;
}
.woocommerce-account .woocommerce {
	overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;/*ltr*/
    width: 30%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: .5em;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul a {
    color: inherit!important;
    font-weight: bold;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:not(.is-active) a {
    opacity: .5;
    -webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -moz-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -ms-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -o-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    transition: opacity .25s cubic-bezier(.33,0,.2,1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:not(.is-active) a:hover {
    opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: right;/*ltr*/
    width: calc(70% - 30px);
}
@media (max-width: 600px) {
	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}
}
.woocommerce .col2-set.addresses .col-1 {
	float: left;/*ltr*/
	width: calc(50% - 20px);
}
.woocommerce .col2-set.addresses .col-2 {
	float: right;/*ltr*/
	width: calc(50% - 20px);
}
@media (max-width: 600px) {
	.woocommerce .col2-set.addresses .col-1,
	.woocommerce .col2-set.addresses .col-2 {
		float: none;
		width: 100%;
	}
}
.woocommerce-error {
    background-color: rgba(241, 106, 46, .15);/*dynamic*/
    border: 1px solid #f16a2e;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 1em;
}
body.woocommerce-order-received h3,
body.woocommerce-order-received h5 {
    font-weight: bold;
    text-align: center;
}
body.woocommerce-order-received h5 {
	margin-top: 0;
}
.woocommerce-thank-you {
	border: 1px solid rgba(33,34,35,.15);/*dynamic*/
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 50px 30px;
    text-align: center;
}
.woocommerce-thank-you ul {
	display: inline-block;
	margin: auto;
	text-align: left;
}
.woocommerce-thank-you ul li {
	margin: 0;
}
.woocommerce-billing-fields p::before,
.woocommerce-billing-fields p::after {
	content: "";
	display: table;
}
.woocommerce-billing-fields p::after {
	clear: both;
}
.woocommerce-billing-fields p input {
	margin-bottom: 0!important;
}

body.woocommerce-order-received .customer_details {
    overflow: hidden;
    text-align: center;
}
body.woocommerce-order-received dt {
	display: inline;
	font-weight: bold;
	margin-right: .5em;/*ltr*/
}
body.woocommerce-order-received dd {
	display: inline;
}
body.woocommerce-order-received dd::after {
	clear: both;
	content: '';
	display: block;
}
body.woocommerce-order-received .col2-set.addresses {
	text-align: center;
}
body.woocommerce-order-received .col2-set.addresses > div,
body.woocommerce-order-received .col2-set.addresses > div h3 {
	text-align: left;/*ltr*/
}
body.woocommerce-order-received .col2-set.addresses > address {
	display: inline-block;
	text-align: left;/*ltr*/
}
ul.products li,
[data-cols="3"] > ul.products li {
    width: 33.33%;
}
.woocommerce.columns-1 ul.products li,
[data-cols="1"] > ul.products li {
    width: 100%;
}
.woocommerce.columns-2 ul.products li,
[data-cols="2"] > ul.products li {
    width: 50%;
}
.woocommerce.columns-4 ul.products li,
[data-cols="4"] > ul.products li {
    width: 25%;
}
.woocommerce.columns-5 ul.products li,
[data-cols="5"] > ul.products li {
    width: 20%;
}
.woocommerce.columns-6 ul.products li,
[data-cols="6"] > ul.products li {
    width: 16.665%;
}
.woocommerce.columns-7 ul.products li,
[data-cols="7"] > ul.products li {
    width: 14.285%;
}
.woocommerce.columns-8 ul.products li,
[data-cols="8"] > ul.products li {
    width: 12.5%;
}
.woocommerce.columns-9 ul.products li,
[data-cols="9"] > ul.products li {
    width: 11.11%;
}
.woocommerce.columns-10 ul.products li,
[data-cols="10"] > ul.products li {
    padding: 0 0 30px 30px;
    width: 10%;
}
@media (max-width: 600px) {
    ul.products {
        margin-left: 0!important;
    }
    ul.products li {
        padding-left: 0!important;
        width: 100%!important;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
    .woocommerce.columns-3 ul.products li,
    ul.products li.columns-3,
	[data-cols="3"] > ul.products li {
        width: 50%;
    }
    .woocommerce.columns-4 ul.products li,
    ul.products li.columns-4,
	[data-cols="4"] > ul.products li {
        width: 50%;
    }
    .woocommerce.columns-5 ul.products li,
    ul.products li.columns-5,
	[data-cols="5"] > ul.products li {
        width: 33.33%;
    }
    .woocommerce.columns-6 ul.products li,
    ul.products li.columns-6,
	[data-cols="6"] > ul.products li {
        width: 33.33%;
    }
    .woocommerce.columns-7 ul.products li,
    ul.products li.columns-7,
	[data-cols="7"] > ul.products li {
        width: 25%;
    }
    .woocommerce.columns-8 ul.products li,
    ul.products li.columns-8,
	[data-cols="8"] > ul.products li {
        width: 25%;
    }
}
@media (min-width: 321px) and (max-width: 600px) {
    .woocommerce.columns-2 ul.products li,
    ul.products li.columns-2,
	[data-cols="2"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-3 ul.products li,
    ul.products li.columns-3,
	[data-cols="3"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-4 ul.products li,
    ul.products li.columns-4,
	[data-cols="4"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-5 ul.products li,
    ul.products li.columns-5,
	[data-cols="5"] > ul.products li {
        width: 50%;
    }
    .woocommerce.columns-6 ul.products li,
    ul.products li.columns-6,
	[data-cols="6"] > ul.products li {
        width: 50%;
    }
    .woocommerce.columns-7 ul.products li,
    ul.products li.columns-7,
	[data-cols="7"] > ul.products li {
        width: 50%;
    }
    .woocommerce.columns-8 ul.products li,
    ul.products li.columns-8,
	[data-cols="8"] > ul.products li {
        width: 50%;
    }
}
@media (max-width: 320px) {
    .woocommerce.columns-2 ul.products li,
    ul.products li.columns-2,
	[data-cols="2"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-3 ul.products li,
    ul.products li.columns-3,
	[data-cols="3"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-4 ul.products li,
    ul.products li.columns-4,
	[data-cols="4"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-5 ul.products li,
    ul.products li.columns-5,
	[data-cols="5"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-6 ul.products li,
    ul.products li.columns-6,
	[data-cols="6"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-7 ul.products li,
    ul.products li.columns-7,
	[data-cols="7"] > ul.products li {
        width: 100%;
    }
    .woocommerce.columns-8 ul.products li,
    ul.products li.columns-8,
	[data-cols="8"] > ul.products li {
        width: 100%;
    }
}


.woo-images-spinner {
	-webkit-animation: rotate 1.5s linear infinite;
	-moz-animation: rotate 1.5s linear infinite;
	-ms-animation: rotate 1.5s linear infinite;
	-o-animation: rotate 1.5s linear infinite;
	animation: rotate 1.5s linear infinite;
	left: calc( 50% - 20px );
	position: absolute;
	top: calc( 50% - 20px );
	width: 40px;
	height: 40px;
}

svg.rainbow-spinner {
	-webkit-animation: rotate 1.5s linear infinite;
	-moz-animation: rotate 1.5s linear infinite;
	-ms-animation: rotate 1.5s linear infinite;
	-o-animation: rotate 1.5s linear infinite;
	animation: rotate 1.5s linear infinite;
	height: 100%;
	width: 100%;
}

svg.rainbow-spinner circle,
.woo-images-spinner svg circle {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation:
    dash 1.5s ease-in-out infinite 0s,
    rainbow 6s ease-in-out infinite -0.75s;
  -moz-animation:
    dash 1.5s ease-in-out infinite 0s,
    rainbow 6s ease-in-out infinite -0.75s;
  -ms-animation:
    dash 1.5s ease-in-out infinite 0s,
    rainbow 6s ease-in-out infinite -0.75s;
  -o-animation:
    dash 1.5s ease-in-out infinite 0s,
    rainbow 6s ease-in-out infinite -0.75s;
  animation:
    dash 1.5s ease-in-out infinite 0s,
    rainbow 6s ease-in-out infinite -0.75s;
  stroke-linecap: round;
  fill: none;
  stroke-width: 5;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

#intro-loader {
	background: #ffffff!important;/*dynamic*/
	left: 0;
	height: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}
#introLoaderSpinner {
	display: none!important;
}
#intro-spinner {
	height: 40px;
	left: calc( 50% - 20px );
	position: fixed;
	top: calc( 50% - 20px );
	width: 40px;
	z-index: 100000;
}

/*--------------------------------------------------------------
1.7. Members
--------------------------------------------------------------*/
body.single-member #primary {
	margin-bottom: 80px;
}
body.single-member .featured-wrap,
body.single-member .entry-content.has-featured-image {
	width: calc( 50% - 20px );
}
body.single-member .entry-content.has-featured-image > *:first-child {
	margin-top: 0!important;
}
body.single-member .pix-member-socials {
	border-top: 1px solid rgba(33,34,35,.15);
	margin-top: 2.325em;
	padding: 2.325em 1em 0;
}
body.single-member .pix-member-socials a {
	color: inherit;
}
body.single-member .pix-member-socials a::after {
	content: '';
	display: inline-block;
	width: 15px;
}
body.single-member .pix_progress_bar {
	border-top: 1px solid rgba(33,34,35,.15);
	margin-top: 2.325em;
	padding-top: 2.325em;
}
.pix_progress_bar small {
	display: block;
	font-size: .75em;
	padding: 0;
}
.pix_progress_bar small.amount-progress {
	opacity: 0;
	position: absolute;
    right: 0;/*ltr*/
    top: -2em;
}
.pix_single_bar {
	background: rgba(33,34,35,.1);/*dynamic*/
	-moz-border-radius: 1px;
	border-radius: 1px;
	display: block;
	height: 5px;
	margin: .2em 0 1em;
	position: relative;
	width: 100%;
}
.pix_bar_track, .pix_bar {
	display: block;
	height: inherit;
	position: relative;
}
.pix_bar {
	background: #dac36d;/*dynamic*/
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.member-list > li {
	margin: 0;
	text-align: center;
}
.member-list > li {
	list-style-type: none;
}
.member-list[data-columns="1"] > li {
	width: 100%;
}
.member-list[data-columns="2"] > li {
	width: 50%;
}
.member-list[data-columns="3"] > li {
	width: 33.33%;
}
.member-list[data-columns="4"] > li {
	width: 25%;
}
.member-list[data-columns="5"] > li {
	width: 20%;
}
.member-list[data-columns="6"] > li {
	width: 16.66%;
}
@media only screen and (max-width: 991px) {
	.member-list[data-columns="2"] > li {
		width: 100%;
	}
	.member-list[data-columns="3"] > li {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.member-list[data-columns="4"] > li {
		width: 100%;
	}
	.member-list[data-columns="5"] > li {
		width: 100%;
	}
	.member-list[data-columns="6"] > li {
		width: 100%;
	}
}
@media screen and (max-width: 991px) {
	.member-list[data-landscape="1"] > li {
		width: 100%;
	}
	.member-list[data-landscape="2"] > li {
		width: calc(50% - 1px);
	}
	.member-list[data-landscape="3"] > li {
		width: calc(33.33% - 1px);
	}
	.member-list[data-landscape="4"] > li {
		width: calc(25% - 1px);
	}
	.member-list[data-landscape="5"] > li {
		width: calc(20% - 1px);
	}
	.member-list[data-landscape="6"] > li {
		width: calc(16.66% - 1px);
	}
}
@media screen and (max-width: 768px) {
	.member-list[data-portrait="1"] > li {
		width: 100%;
	}
	.member-list[data-portrait="2"] > li {
		width: calc(50% - 1px);
	}
	.member-list[data-portrait="3"] > li {
		width: calc(33.33% - 1px);
	}
	.member-list[data-portrait="4"] > li {
		width: calc(25% - 1px);
	}
	.member-list[data-portrait="5"] > li {
		width: calc(20% - 1px);
	}
	.member-list[data-portrait="6"] > li {
		width: calc(16.66% - 1px);
	}
}
@media screen and (max-width: 400px) {
	.member-list[data-phone="1"] > li {
		width: 100%;
	}
	.member-list[data-phone="2"] > li {
		width: calc(50% - 1px);
	}
	.member-list[data-phone="3"] > li {
		width: calc(33.33% - 1px);
	}
	.member-list[data-phone="4"] > li {
		width: calc(25% - 1px);
	}
	.member-list[data-phone="5"] > li {
		width: calc(20% - 1px);
	}
	.member-list[data-phone="6"] > li {
		width: calc(16.66% - 1px);
	}
}
.member-list > li .member-wrap {
	display: inline-block;
	position: relative;
}
.member-list > li span.member-info {
	background: rgba(255,255,255,.98);/*dynamic*/
	bottom: 10px;
	-moz-box-shadow: 0 0 40px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,.5);
	box-shadow: 0 0 40px rgba(0,0,0,.5);
	display: block;
	left: 10px;
	padding: 30px 20px;
	position: absolute;
	right: 10px;
}
.member-list > li span.member-info span {
	display: block;
}
.member-list > li span.member-info.below {
	background: transparent;
	bottom: auto;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: auto;
	margin-bottom: 1em;
	position: relative;
	right: auto;
}
.member-list > li span.member-info.hover {
	background: rgba(255,255,255,.95);/*dynamic*/
	opacity: 0;
	top: 10px;
	-webkit-transform: translatey(20px);
	-moz-transform: translatey(20px);
	-ms-transform: translatey(20px);
	-o-transform: translatey(20px);
	transform: translatey(20px);
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1), -webkit-transform .5s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1), -moz-transform .5s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1), -ms-transform .5s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1), -o-transform .5s cubic-bezier(.33,0,.2,1);
	transition: opacity .5s cubic-bezier(.33,0,.2,1), transform .5s cubic-bezier(.33,0,.2,1);
}
.member-list > li span.member-info.hover:hover {
	opacity: 1;
	-webkit-transform: translatey(0);
	-moz-transform: translatey(0);
	-ms-transform: translatey(0);
	-o-transform: translatey(0);
	transform: translatey(0);
}
.member-list > li span.member-info.hover > span {
	display: table;
	height: 100%;
	width: 100%;
}
.member-list > li span.member-info.hover > span > span {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
.member-list .member-name {
	margin: 0;
}
.member-list .member-role {
	font-size: .75em;
}
.member-list .member-socials {
	display: block;
	margin-top: 1em;
}
.member-list .member-socials a {
	color: inherit;
	display: inline-block;
	margin: 0 6px;
}

/*--------------------------------------------------------------
*
*	2. Extra
*
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.1 3rd party plugins
--------------------------------------------------------------*/
/*
*	Visual Composer
*/
.wpb_single_image .vc_figure {
	max-width: 100%;
}
html.touch .vc_video-bg {
	display: none!important;
}
@media only screen and (min-width: 1025px) {
	.wpb_animate_when_almost_visible:not([data-parallax="on"]) {
		opacity: 0;
		-webkit-transition: opacity .75s cubic-bezier(.33,0,.2,1), -webkit-transform .75s cubic-bezier(.33,0,.2,1);
		-moz-transition: opacity .75s cubic-bezier(.33,0,.2,1), -moz-transform .75s cubic-bezier(.33,0,.2,1);
		-ms-transition: opacity .75s cubic-bezier(.33,0,.2,1), -ms-transform .75s cubic-bezier(.33,0,.2,1);
		-o-transition: opacity .75s cubic-bezier(.33,0,.2,1), -o-transform .75s cubic-bezier(.33,0,.2,1);
		transition: opacity .75s cubic-bezier(.33,0,.2,1), transform .75s cubic-bezier(.33,0,.2,1);
	}
	.pix_animate_bar_almost_visible:not([data-parallax="on"]) {
		width: 0;
		-webkit-transition: width 2s cubic-bezier(.33,0,.2,1);
		-moz-transition: width 2s cubic-bezier(.33,0,.2,1);
		-ms-transition: width 2s cubic-bezier(.33,0,.2,1);
		-o-transition: width 2s cubic-bezier(.33,0,.2,1);
		transition: width 2s cubic-bezier(.33,0,.2,1);
	}
	.wpb_top-to-bottom:not([data-parallax="on"]) {
		-webkit-transform: translatey(-60px);
		-moz-transform: translatey(-60px);
		-ms-transform: translatey(-60px);
		-o-transform: translatey(-60px);
		transform: translatey(-60px);
	}
	.wpb_bottom-to-top:not([data-parallax="on"]) {
		-webkit-transform: translatey(60px);
		-moz-transform: translatey(60px);
		-ms-transform: translatey(60px);
		-o-transform: translatey(60px);
		transform: translatey(60px);
	}
	.wpb_left-to-right:not([data-parallax="on"]) {
		-webkit-transform: translatex(-60px);
		-moz-transform: translatex(-60px);
		-ms-transform: translatex(-60px);
		-o-transform: translatex(-60px);
		transform: translatex(-60px);
	}
	.wpb_right-to-left:not([data-parallax="on"]) {
		-webkit-transform: translatex(60px);
		-moz-transform: translatex(60px);
		-ms-transform: translatex(60px);
		-o-transform: translatex(60px);
		transform: translatex(60px);
	}
	/*.wpb_appear:not([data-parallax="on"]) {
		-webkit-transform: scale(1,1);
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
		-o-transform: scale(1,1);
		transform: scale(1,1);
	}*/
	.logan-typo-separator .wpb_animate_when_almost_visible.wpb_appear:not([data-parallax="on"]) {
		-webkit-transform: scale(0,1);
		-moz-transform: scale(0,1);
		-ms-transform: scale(0,1);
		-o-transform: scale(0,1);
		transform: scale(0,1);
	}
	.logan_start_animation:not([data-parallax="on"]) {
		opacity: 1;
		-webkit-transform: translatex(0) translatey(0);
		-moz-transform: translatex(0) translatey(0);
		-ms-transform: translatex(0) translatey(0);
		-o-transform: translatex(0) translatey(0);
		transform: translatex(0) translatey(0);
	}
	.logan_start_animation {
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	.logan-typo-separator .logan_start_animation.wpb_appear:not([data-parallax="on"]) {
		opacity: 1;
		-webkit-transform: scale(1,1);
		-moz-transform: scale(1,1);
		-ms-transform: scale(1,1);
		-o-transform: scale(1,1);
		transform: cale(1,1);
	}
}
@media only screen and (max-width: 1024px) {
	.wpb_animate_when_almost_visible:not([data-parallax="on"]) {
		opacity: 1;
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
	}
}
.pix_animate_bar_almost_visible.logan_start_animation:not([data-parallax="on"]) {
	width: 100%;
}
body.logan .vc_row:not(.vc_gitem_row):not(.vc_grid) {
	border-style: solid;
	margin-left: -20px;
    margin-right: -20px;
}
body.logan .vc_row.vc_row-has-fill {
	padding-top: 80px;
}
@media only screen and (min-width: 768px) {
	body.logan .vc_row.vc_vertical_pos {
		display: table;
		table-layout: fixed;
		width: calc(100% + 40px);
	}
	body.logan .vc_row.vc_vertical_pos .wpb_column {
		display: table-cell;
		float: none;
	}
	body.logan .vc_row.vc_vertical_pos_top .wpb_column {
		vertical-align: top;
	}
	body.logan .vc_row.vc_vertical_pos_middle .wpb_column {
		vertical-align: middle;
	}
	body.logan .vc_row.vc_vertical_pos_bottom .wpb_column {
		vertical-align: bottom;
	}
}
body.logan .wpb_row,
body.logan .wpb_content_element {
	margin-bottom: 0;
	position: relative;
}
body.logan .vc_column-inner,
/*body.logan .wpb_content_element,*/
body.logan ul.wpb_thumbnails-fluid > li,
body.logan .last_toggle_el_margin,
body.logan .wpb_button,
/*body.logan .vc_row.vc_vertical_pos,*/
.post-list-wrap,
.post-list {
	margin-bottom: 80px;
}
.vc_column-inner .post-list-wrap:last-child {
	margin-bottom: 0;
}
body.logan .wpb_content_element:not(:last-child) {
	margin-bottom: 40px;
}
.post-list-wrap .post-list {
	margin-bottom: 0;
}
body.logan .vc_col-has-fill>.vc_column-inner,
body.logan .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
body.logan .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	padding-top: 0;
}
body.logan .vc_column-inner {
	padding-left: 20px;
	padding-right: 20px;
}
.logan .vc_parallax {
	overflow: visible;
}
.vc_row[data-vc-parallax-image] .pix-parallax-wrap {
	overflow: hidden;
}
.logan .vc_row[data-vc-parallax-image] .pix-parallax-wrap,
.logan .vc_row[data-vc-parallax-image] .pix-parallax {
	background-position: center;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
[data-offset-param] {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
}
.vc-row-logan-shadow {
	display: block;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 120px;
}
.vc-row-logan-shadow.dir-bottom {
	bottom: 0;
}
.vc-row-logan-shadow.dir-top {
	top: 0;
}
.vc-row-logan-shadow.dir-bottom::after {
	background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.2)), color-stop(75%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	content: '';
	display: block;
	height: 200%;
	left: 10%;
	opacity: .5;
	position: absolute;
	top: 0;
	width: 80%;
}
.vc-row-logan-shadow.dir-top::after {
	background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.2)), color-stop(75%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	bottom: 0;
	content: '';
	display: block;
	height: 200%;
	left: 10%;
	opacity: .5;
	position: absolute;
	width: 80%;
}
.vc-logan-overlay {
	bottom: 0;
	left: 0;
	position: absolute!important;
	right: 0;
	top: 0;
}
.vc_tta-tab::before {
	display: none;
}
.vc_images_carousel {
	max-width: 100%;
}
.vc_carousel-indicators {
	display: none!important;
}
.vc_images_carousel .slick-arrow {
	background: transparent url(images/angle-left-icon.php?fill=222324) no-repeat center;/*dynamic*/
	background-size: 16px;
	border: 0;
	cursor: pointer;
	display: block;
	height: 30px;
	right: 30px;/*ltr*/
	overflow: hidden;
	position: absolute;
	text-indent: -9999px;
	top: -40px;
	width: 30px;
	z-index: 2;
}
.vc_images_carousel .slick-arrow.slick-next {
	background-image: url(images/angle-right-icon.php?fill=222324);/*dynamic*/
	left: auto;/*ltr*/
	right: 0;/*ltr*/
}
.vc_images_carousel .slick-arrow.slick-disabled {
	display: none!important;
}
.slick-slider .slick-dots {
	bottom: 10px;
	opacity: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	transition: opacity .25s cubic-bezier(.33,0,.2,1);
}
.slick-slider:hover .slick-dots {
	opacity: 1;
}
.slick-slider .slick-dots li {
	background: #222324;/*dynamic*/
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 6px;
	line-height: 6px;
	margin: 0 6px;
	opacity: .5;
	width: 6px;
	-webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .25s cubic-bezier(.33,0,.2,1);
	transition: opacity .25s cubic-bezier(.33,0,.2,1);
}
.slick-slider .slick-dots li.slick-active {
	cursor: default;
}
.slick-slider .slick-dots li:hover,
.slick-slider .slick-dots li.slick-active {
	opacity: 1;
}
.slick-slider .slick-dots li {
	list-style-type: none;
}
.slick-slider .slick-dots li > button {
	visibility: hidden;
}

.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow img,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border img,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,
.logan .wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img,
.logan .wpb_text_column.mild-pix-box-shadow,
.logan span.mild-pix-box-shadow {
	-moz-box-shadow: 0 10px 30px rgba(0,0,0,.3);/*dynamic*/
	-webkit-box-shadow: 0 10px 30px rgba(0,0,0,.3);/*dynamic*/
	box-shadow: 0 10px 30px rgba(0,0,0,.3);/*dynamic*/
}
/*.vc_row.vc_row-o-full-height {
    min-height: 100vh!important;
}*/
.forcefullwidth_wrapper_tp_banner {
	overflow: hidden;
}
.pix-image-box {
	position: relative;
	text-align: center;
}
.pix-image-box a {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	width: auto;
}
.pix-image-box img {
	position: relative;
	vertical-align: top;
	z-index: 0;
	-webkit-transition: -webkit-transform .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: -moz-transform .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: -ms-transform .35s cubic-bezier(.33,0,.2,1);
	-o-transition: -o-transform .35s cubic-bezier(.33,0,.2,1);
	transition: transform .35s cubic-bezier(.33,0,.2,1);
}
.pix-image-box:hover img {
	-webkit-transform: scale(1.025);
	-moz-transform: scale(1.025);
	-ms-transform: scale(1.025);
	-o-transform: scale(1.025);
	transform: scale(1.025);
}
.image-box-entry-box {
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}
.image-box-entry-box > div {
	display: table;
	height: 100%;
	width: 100%;
}
.image-box-entry-box > div > div {
	display: table-cell;
	padding: 30px;
}
span[data-icon-position="above"] {
	display: block;
	text-align: center;
}
span[data-icon-position="above"] i {
	display: block;
	margin-bottom: 1rem;
}
.vc_tta-container[data-tabs-fullwidth="yes"] .vc_tta-tabs-container {
	margin: 0!important;
}
.vc_tta-container[data-tabs-fullwidth="yes"] ul.vc_tta-tabs-list {
	display: table!important;
	table-layout: fixed;
	width: 100%;
}
.vc_tta-container[data-tabs-fullwidth="yes"] ul.vc_tta-tabs-list > li {
	display: table-cell!important;
	vertical-align: bottom;
}
.vc_tta-container[data-tabs-nostyle="yes"] .vc_tta-tab > a {
	background: transparent!important;
	border-width: 0!important; 
	color: inherit!important;
	opacity: .35;
	-webkit-transition: opacity .5s cubic-bezier(.33,0,.2,1)!important;
	-moz-transition: opacity .5s cubic-bezier(.33,0,.2,1)!important;
	-ms-transition: opacity .5s cubic-bezier(.33,0,.2,1)!important;
	-o-transition: opacity .5s cubic-bezier(.33,0,.2,1)!important;
	transition: opacity .5s cubic-bezier(.33,0,.2,1)!important;
}
.vc_tta-container[data-tabs-nostyle="yes"] .vc_tta-tab > a:hover {
	opacity: 1;
}
.vc_tta-container[data-tabs-nostyle="yes"] .vc_tta-tab.vc_active > a {
	opacity: 1;
}
.vc_tta-container[data-tabs-nostyle="yes"] .vc_tta-tabs .vc_tta-panels {
	background: transparent!important;
	border-width: 0!important;
}
.vc_tta-container[data-tabs-nostyle="yes"] .vc_tta.vc_general .vc_tta-panel-body {
	padding: 50px 0 30px;
}
.logan .vc_tta-tabs .vc_tta-panels,
.logan .vc_tta-tabs .vc_tta-panels::after,
.logan .vc_tta-tabs .vc_tta-panels::before {
	border-color: rgba(34,35,35,.1)!important;/*dynamic*/
}
.logan .vc_tta-tabs .vc_tta-panels {
	background-color: #ffffff!important;/*dynamic*/ 
}
.logan .vc_tta.vc_general .vc_tta-panel-body {
	padding: 2em;
}
.logan .vc_tta-tab > a,
.logan .vc_tta-tab.vc_active > a {
	background-color: #ffffff!important;/*dynamic*/ 
    color: inherit!important;
}
.logan .vc_tta-tabs-position-top .vc_tta-tab > a {
	border-bottom-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-left-color: transparent!important;
	border-right-color: transparent!important;
	border-top-color: transparent!important;
}
.logan .vc_tta-tabs-position-top .vc_tta-tab.vc_active > a {
	border-bottom-color: transparent!important;
	border-left-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-right-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-top-color: rgba(34,35,35,.1)!important;/*dynamic*/
}
.logan .vc_tta-tabs-position-bottom .vc_tta-tab > a {
	border-bottom-color: transparent!important;
	border-left-color: transparent!important;
	border-right-color: transparent!important;
	border-top-color: rgba(34,35,35,.1)!important;/*dynamic*/
}
.logan .vc_tta-tabs-position-bottom .vc_tta-tab.vc_active > a {
	border-bottom-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-left-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-right-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-top-color: transparent!important;
}
.logan .vc_tta-tabs-position-right .vc_tta-tab > a {
	border-bottom-color: transparent!important;
	border-left-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-right-color: transparent!important;
	border-top-color: transparent!important;
}
.logan .vc_tta-tabs-position-right .vc_tta-tab.vc_active > a {
	border-bottom-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-left-color: transparent!important;
	border-right-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-top-color: rgba(34,35,35,.1)!important;/*dynamic*/
}
.logan .vc_tta-tabs-position-left .vc_tta-tab > a {
	border-bottom-color: transparent!important;
	border-left-color: transparent!important;
	border-right-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-top-color: transparent!important;
}
.logan .vc_tta-tabs-position-left .vc_tta-tab.vc_active > a {
	border-bottom-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-left-color: rgba(34,35,35,.1)!important;/*dynamic*/
	border-right-color: transparent!important;
	border-top-color: rgba(34,35,35,.1)!important;/*dynamic*/
}
.logan .vc_tta.vc_general .vc_tta-tab.vc_active > a::after,
.logan .vc_tta.vc_general .vc_tta-tab.vc_active > a::before {
	display: none!important;
}
.logan .vc_pagination.vc_pagination-style-outline .vc_pagination-item::before {
	display: none!important;
}
.logan .vc_pagination.vc_pagination-style-outline .vc_pagination-trigger {
	border-width: 0;
	background: #222324;/*dynamic*/
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 6px;
    line-height: 6px;
    margin: 0 6px;
    opacity: .5;
    width: 6px;
    -webkit-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -moz-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -ms-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    -o-transition: opacity .25s cubic-bezier(.33,0,.2,1);
    transition: opacity .25s cubic-bezier(.33,0,.2,1);
}
.logan .vc_pagination-color-grey.vc_pagination-style-flat .vc_pagination-trigger,
.logan .vc_pagination-color-grey.vc_pagination-style-outline .vc_active .vc_pagination-trigger,
.logan .vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background: #222324;/*dynamic*/
	opacity: 1;
}
li.vc_pagination-item::before {
	display: none;
}
.vc_row-o-full-height::after,
.vc_row-o-full-height::before {
	content: none!important;
	display: none!important;
}

.pix-icon-wrap {
	display: table;
	/*margin-bottom: 80px;*/
	width: 100%;
}
.pix-icon-wrap + .pix-icon-wrap {
	margin-top: 40px;
}
.pix-icon-wrap[data-position*="center"] {
	display: block;
}
.pix-icon-wrap > div {
	display: table-cell;
}
.pix-icon-wrap[data-position*="center"] > div {
	display: block;
}
.pix-icon-wrap[data-position*="center"] > div:first-child {
	margin-bottom: 20px;
}
.pix-icon-wrap[data-position*="center"] > div.pix-icon-box {
	text-align: center;
}
.pix-icon-wrap[data-position*="left"] > div.pix-icon-box {
	text-align: left;
}
.pix-icon-wrap[data-position*="right"] > div.pix-icon-box {
	text-align: right;
}
.pix-icon-wrap.pix-icon-wrap-circle > div.pix-icon-box > i {
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.pix-icon-wrap.pix-icon-wrap-rounded > div.pix-icon-box > i {
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.pix-icon-wrap > div.pix-icon-box > i {
	display: block;
}
.pix-icon-wrap[data-position*="top"] > div {
	vertical-align: top;
}
.pix-icon-wrap[data-position*="bottom"] > div {
	vertical-align: bottom;
}
.pix-icon-wrap[data-position*="middle"] > div {
	vertical-align: middle;
}
.pix-icon-text-box > *:first-child {
	margin-top: 0!important
}
.wpb_gallery_slides li,
.vc_chart .vc_chart-legend li {
	list-style-type: none;
}
.vc_carousel-control,
.vc_carousel-indicators {
	display: none!important;
}
.vc_carousel-inner,
.vc_carousel-slideline {
	overflow: visible!important;
}
.vc_grid-item h4 {
	margin-top: 1em;
}
.logan .vc_gitem-zone {
	background-color: transparent!important;
}
.logan .vc_gitem-zone .vc_custom_heading > div {
	color: inherit!important;
	font-family: inherit!important;
}
.logan .vc_gitem-zone-img {
	visibility: visible;
}
.logan .vc_message_box {
	padding: 2em 2em 2em 5em;/*ltr*/
}
.logan .vc_message_box-icon {
	width: 5em;
}
.logan .vc_message_box-solid-icon .vc_message_box-icon {
	width: 4em;
}
/*--------------------------------------------------------------*/
/*
*	Go Pricing
*/
.gw-go-col.gw-go-clean-style14 .gw-go-header-img .gw-go-header-top::before {
	background-color: #000000;
}
ul.gw-go-body li {
	padding: 20px!important;
}
/*--------------------------------------------------------------*/
/*
*	Visual composer Extend
*/
ul.ts-fancy-list-wrapper > li,
ul.ts-horizontal-steps-list > li {
	list-style-type: none;
}
.logan .ts-fancy-list-container,
.logan .ts-fancy-list-container .ts-fancy-list-wrapper {
	font-size: inherit!important;
	line-height: inherit!important;
}
.logan .ts-fancy-list-container .ts-fancy-list-wrapper li,
.logan .ts-fancy-list-container .ts-fancy-list-wrapper li div {
	font-size: inherit;
	line-height: inherit;
}
.ts-horizontal-step-icon {
	background-size: cover!important;
	background-repeat: no-repeat;
	background-position: center;
}
.logan .ts-horizontal-steps ul li .ts-horizontal-step-title {
	font-size: inherit!important;
}
.logan .ts-horizontal-steps ul li {
	padding-left: 20px;
	padding-right: 20px;
}
.logan .ts-horizontal-steps ul li .ts-horizontal-step-icon {
	-webkit-box-shadow: 0 0 0 10px #ffffff!important;/*dynamic*/
    -moz-box-shadow: 0 0 0 10px #ffffff!important;/*dynamic*/
    box-shadow: 0 0 0 10px #ffffff!important;/*dynamic*/
}
.logan .ts-horizontal-steps ul li .ts-horizontal-step-icon:after {
	left: calc( 100% + 10px );
}
.logan .ts-icon-counter .ts-counter-value {
	font-weight: bold!important;
}
.logan .circle-text, 
.logan .circle-text-half {
	color: inherit;
	font-family: 'Merriweather';/*dynamic*/
	font-weight: bold;
}
.logan .circle-info, 
.logan .circle-info-half {
	color: inherit;
	font-family: 'Lato';/*dynamic*/
	top: -.25em;
}
.logan .ts-testimonial-main {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border: 1px solid rgba(33,34,35,.1)!important;
	-moz-box-sizing: border-box!important;
	box-sizing: border-box!important;
	margin-bottom: 10px!important;
	padding: 40px!important;
	text-align: center;
}
.logan .ts-testimonial-main * {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.logan .ts-testimonial-main.style2,
.logan .ts-testimonial-main.style4 {
	background: transparent;
	color: #ffffff;/*dynamic*/
	border: 1px solid rgba(255,255,255,.25)!important;
}
.logan .owl-dots .owl-dot.active span,
.logan .owl-dots .owl-dot:hover span {
	background: transparent;
	border: 2px solid #d6d6d6;
}
.logan .ts-owlslider-controls {
	display: none!important;
}
.logan .owl-dots .owl-dot span {
	margin: 5px;
}
.logan .owl-carousel2 .owl-stage-outer {
	margin-top: 0;
}
.logan .ts-testimonial-main.style1 .ts-testimonial-content,
.logan .ts-testimonial-main.style4 .ts-testimonial-statement {
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    font-style: inherit;
    line-height: inherit;
    padding: 0;
    position: relative;
}
.logan .ts-testimonial-main.style4 .ts-testimonial-statement::before {
	display: none;
}
.logan .ts-testimonial-main.style2 .blockquote, 
.logan .ts-testimonial-main.style2 blockquote {
    background: transparent;
    border: none;
    color: inherit;
    filter: none;
    padding: 0!important;
    text-align: center;
}
.logan .ts-testimonial-main .quotes,
.logan .ts-testimonial-main .laquo,
.logan .ts-testimonial-main .raquo,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-overlay,
.logan .ts-testimonial-main.style1 .ts-testimonial-arrow,
.logan .ts-testimonial-main.style4 .ts-testimonial-bottom-arrow {
	display: none!important;
}
.logan .ts-testimonial-main.style1 .ts-testimonial-user,
.logan .ts-testimonial-main.style2 .information {
	background: transparent;
	display: inline-block;
	float: none;
	margin-top: 10px;
	text-align: left;/*ltr*/
	width: auto;
}
.logan .ts-testimonial-main.style3 .photo,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-info {
	background: transparent;
	border: 0;
	display: inline-block;
	float: none;
	height: auto;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;/*ltr*/
	width: auto;
}
.logan .ts-testimonial-main.style1 .ts-testimonial-user-thumb,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-image {
	-webkit-box-shadow: none!important;
	-moz-box-shadow: none!important;
	box-shadow: none!important;
    border: 0;
    float: left;
    height: auto!important;
    margin: 0 10px 0 -50px;/*ltr*/
    width: auto!important;
}
.logan .ts-testimonial-main.style2 .information > img,
.logan .ts-testimonial-main.style3 .photo > img {
    float: left;
    margin: 0 10px 0 -50px;/*ltr*/
}
.logan .ts-testimonial-main.style1 .ts-testimonial-user-thumb img,
.logan .ts-testimonial-main.style3 .photo > img {
    border: 10px solid rgba(33,34,35,.1);/*dynamic*/
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 80px!important;
    width: 80px!important;
}
.logan .ts-testimonial-main.style2 .information > img,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-image img {
    border: 10px solid rgba(255,255,255,.25);/*dynamic*/
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 80px!important;
    width: 80px!important;
}
.logan .ts-testimonial-main.style3 .sign {
    text-align: left;/*ltr*/
    float: none;
    display: inline;
    width: auto;
}
.logan .ts-testimonial-main.style3 .content {
	font-style: inherit;
    line-height: inherit;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
}
.logan .ts-testimonial-main.style1 .ts-testimonial-user-name,
.logan .ts-testimonial-main.style2 .information > .author,
.logan .ts-testimonial-main.style3 .sign span.author,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-name {
	color: inherit;
	font-family: "Lato";/*dynamic*/
	font-size: .9em;
	font-style: inherit;
	font-weight: bold;
	margin: 2em 0 0 65px;/*ltr*/
	padding: 0;
	text-shadow: none;
	text-transform: uppercase;
}
.logan .ts-testimonial-main.style1 .ts-testimonial-user-meta,
.logan .ts-testimonial-main.style2 .information > .metadata,
.logan .ts-testimonial-main.style3 .photo > .sign .metadata,
.logan .ts-testimonial-main.style4 .ts-testimonial-author-position {
	color: #dac36d;/*dynamic*/
	font-family: "Lato";/*dynamic*/
	font-size: .725em;
	font-style: inherit;
	margin-left: 65px;
	padding: 0;
	text-shadow: none;
	text-transform: uppercase;
}
.alignleft .ts-counter-icon-holder {
	float: left;/*ltr*/
}
.alignright .ts-counter-icon-holder {
	float: right;/*ltr*/
}
.logan .ts-icon-counter table, 
.logan .ts-icon-counter table th, 
.logan .ts-icon-counter table tr, 
.logan .ts-icon-counter table tr td {
	padding: 0!important;
}
.logan .ts-countdown-parent.style-1 .ce-days, 
.logan .ts-countdown-parent.style-1 .ce-dseconds,
.logan .ts-countdown-parent.style-1 .ce-hours,
.logan .ts-countdown-parent.style-1 .ce-minutes,
.logan .ts-countdown-parent.style-1 .ce-mseconds,
.logan .ts-countdown-parent.style-1 .ce-seconds {
	font-size: 30px;
    font-weight: bold;
}
.logan .ts-countdown-parent.style-1 .col {
	word-wrap: normal;
}
.logan .ts-countdown-parent.style-1 .ce-days-label,
.logan .ts-countdown-parent.style-1 .ce-dseconds-label,
.logan .ts-countdown-parent.style-1 .ce-hours-label,
.logan .ts-countdown-parent.style-1 .ce-minutes-label,
.logan .ts-countdown-parent.style-1 .ce-mseconds-label,
.logan .ts-countdown-parent.style-1 .ce-seconds-label {
	font-family: 'Lato';/*dynamic*/
}
.SumoSelect>.optWrapper.open {
	margin-top: 11px;
}
.logan p.CaptionCont.SlectBox label {
	display: none;
}
.logan .ts-timeline-css-filters > label,
.logan .ts-timeline-css-sorter > label,
.logan .ts-timeline-css-container .ts-timeline-css-filters .SumoSelect .select-all,
.logan .ts-timeline-css-container .ts-timeline-css-sorter .SumoSelect .select-all {
	font-family: "Lato";/*dynamic*/
	font-size: 14px!important;
	text-transform: uppercase;
}
.logan .ts-timeline-css-container .ts-timeline-css-filters .SumoSelect .select-all,
.logan .ts-timeline-css-container .ts-timeline-css-sorter .SumoSelect .select-all {
	background-color: rgba(33,34,35,.05);/*dynamic*/
}
.logan .SumoSelect>.optWrapper>.options>li:hover {
	background: transparent!important;
}
.logan .SumoSelect > .optWrapper > .options > li {
	border-bottom: none;
	font-family: "Lato";/*dynamic*/
	font-size: 14px!important;
	text-transform: uppercase;
}
.logan .SumoSelect .select-all.partial>span i,
.logan .SumoSelect .select-all.selected>span i,
.logan .SumoSelect>.optWrapper.multiple>.options>li.selected span i {
	background-color: transparent;
	background-image: url(images/check-icon.php?fill=222324);/*dynamic*/
	background-size: 8px;
	border: 1px solid rgba(33,34,35,.15);/*dynamic*/
}
.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .ts-advanced-google-map-controls-search-button::before {
	display: none;
}
body.logan .ts-advanced-google-map-container,
body.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls {
	background: transparent;
	border-width: 0;
	padding-left: 0;
	padding-right: 0;
}
.logan .ts-advanced-google-map-container .ts-advanced-google-map-controls .ts-advanced-google-map-controls-search-input {
	margin-right: 10px;
}
.logan .ts-timeline-css-container {
	text-align: center;
}
.logan .ts-timeline-css-container .ts-timeline-css-wrapper {
	text-align: left;/*ltr*/
}
.logan .ts-timeline-css-container .ts-timeline-css-spine {
    background: none!important;
}
.logan .ts-timeline-css-container .ts-timeline-css-spine:after {
    border: solid #222324;/*dynamic*/
    border-width: 0 1px;
    bottom: 0;
    content: '';
    display: block;
    left: calc(50% - 2px);
    opacity: 0.15;
    position: absolute;
    top: 0;
    width: 4px;
}
.logan .ts-timeline-css-wrapper .ts-timeline-css-break .ts-timeline-css-text-wrap {
    background: #ffffff;/*dynamic*/
    border: 0!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    box-shadow: none!important;
    color: inherit!important;
    outline: 0!important;
    padding: 1em 0;
}
.logan .nchgrid-caption-text {
	display: none;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-text-wrap {
	box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    -o-box-shadow: none!important;
}
.logan div.nch-lb-grid .nchgrid-item .nchgrid-caption,
.logan div.nchgrid-item.nch-lightbox-image a .nchgrid-caption,
.logan div.ts-hover-image .details {
	background: none!important;
}
.logan a.ts-hover-slide:hover,
.logan div.nchgrid-item:hover,
.logan div.ts-hover-iframe:hover,
.logan div.ts-hover-image:hover,
.logan div.ts-hover-motion:hover,
.logan div.ts-hover-popup:hover,
.logan div.ts-hover-vimeo:hover,
.logan div.ts-hover-youtube:hover {
	box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    -o-box-shadow: none!important;
}
.logan a.ts-hover-slide:hover>img, 
.logan div.nchgrid-item:hover a img,
.logan div.nchgrid-item:hover>img,
.logan div.ts-hover-iframe:hover>img,
.logan div.ts-hover-image:hover>img,
.logan div.ts-hover-motion:hover>img,
.logan div.ts-hover-popup:hover>img,
.logan div.ts-hover-vimeo:hover>img,
.logan div.ts-hover-youtube:hover>img {
    transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -moz-transform: none;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-event .ts-timeline-css-text-wrap {
	background: #ffffff;/*dynamic*/
	border: 1px solid rgba(33,34,35,.15)!important;/*dynamic*/
	-moz-border-radius: 3px;
	border-radius: 3px;
	box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    -o-box-shadow: none!important;
	color: inherit;
	padding: 1em;
}
h3.ts-timeline-css-title {
	color: inherit!important;
	font-weight: bold!important;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-date .ts-timeline-css-date-connect::before,
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-date .ts-timeline-css-date-connect::after {
	display: none!important;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-date,
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-date .ts-timeline-css-date-text {
	background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 0;
    background: transparent;
	color: inherit;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	padding: 1em 0;
	text-shadow: none;
	text-transform: none;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-css-date .ts-timeline-css-date-text .ts-timeline-css-date-icon {
	display: none;
}
.logan .ts-timeline-css-container .ts-timeline-css-content .ts-timeline-media {
	margin: .5em auto 1.5em!important
}
.logan .ts-timeline-css-button-wrapper {
	height: auto;
	overflow: hidden;
	text-align: center;
}
.logan .ts-timeline-css-button-wrapper a.ts-timeline-css-button-link {
	margin-top: 1em;
	width: auto;
}
.logan .ts-timeline-css-social,
.logan .ts-timeline-css-container .ts-timeline-css-content.ts-timeline-css-content-show-tags .ts-timeline-css-section .ts-timeline-css-output-tags,
.logan .ts-timeline-css-container .ts-timeline-css-content.ts-timeline-css-content-show-cats .ts-timeline-css-section .ts-timeline-css-output-cats,
.logan .ts-timeline-css-metadata,
.logan .ts-timeline-css-editlinks {
	display: none;
}
.logan .ts-timeline-css-container .ts-timeline-css-button-container {
	border-top: 1px solid rgba(33,34,35,.15)!important;/*dynamic*/
}
.logan .ts-timeline-css-columns .ts-timeline-css-event-left:before,
.logan .ts-timeline-css-columns .ts-timeline-css-event-right:before,
.logan .ts-timeline-css-left .ts-timeline-css-event:before,
.logan .ts-timeline-css-right .ts-timeline-css-event:before {
	background: rgba(33,34,35,.15)!important;/*dynamic*/
	border-width: 0;
	height: 1px;
}
.logan .ts-timeline-css-columns .ts-timeline-css-event-left:after,
.logan .ts-timeline-css-columns .ts-timeline-css-event-right:after,
.logan .ts-timeline-css-left .ts-timeline-css-event:after,
.logan .ts-timeline-css-right .ts-timeline-css-event:after {
    background-color: #ffffff!important;/*dynamic*/
    border: 4px solid #ffffff!important;/*dynamic*/
    box-shadow: 0 0 2px rgba(33,34,35,.15), inset 0 0 100px rgba(33,34,35,.25)!important;/*dynamic*/
    -webkit-animation-name: none;
    -moz-animation-name: none;
    animation-name: none;
}
.logan .ts-testimonial-frontend-submission-form {
	border-width: 0;
	padding: 0;
}
.logan .ts-testimonial-frontend-submission-form h1:before {
	display: none;
}
.logan .ts-testimonial-frontend-submission-form ul li {
	border: 0;
}
.logan .ts-testimonial-frontend-submission-form ul li>label {
    background: transparent;
    height: auto;
    padding: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.logan .ts-testimonial-frontend-submission-form ul li label:before {
	display: none;
}
.logan .ts-testimonial-frontend-submission-form li>span {
	background: transparent;
    padding: 0;
    margin: 0;
    color: inherit;
    font-size: 12px;
}
/*--------------------------------------------------------------*/
/*
*	Jetpack ShareDaddy
*/

.sharedaddy.sd-sharing-enabled h3 {
	display: none!important;
}
.sharedaddy li {
	list-style-type: none;
}
.sharedaddy .googleplus1_button > .g-plus,
.sharedaddy .googleplus1_button > .g-plus > iframe,
.sharedaddy .twitter_button > iframe {
	width: 65px!important;
}

/*--------------------------------------------------------------*/
/*
*	Rev Slide
*/
.fullscreen-container,
.fullwidthbanner-container {
	left: 0!important;
	right: 0!important;
	width: auto!important;
}
body.logan .tp-tab-desc {
	font-family: "Merriweather";/*dynamic*/
}
body.logan .tp-tab-title {
	font-family: "Lato";/*dynamic*/
	font-size: 12px;
}
body.logan .tp-tab-date {
	font-family: "Lato";/*dynamic*/
}

.tparrows.preview1,
.tparrows.hades,
.hades .tp-arr-allwrapper {
	height: 72px!important;
	width: 72px!important;
}
.tparrows.preview1:before,
.tparrows.hades:before {
	font-family: "budicon"!important;
	font-size: 24px!important;
	height: 72px!important;
	line-height: 72px!important;
	width: 72px!important;
}
.tp-leftarrow.preview1:before,
.tp-leftarrow.hades:before {
	content: '\ead4'!important;
}
.tp-rightarrow.preview1:before,
.tp-rightarrow.hades:before {
	content: '\ead6'!important;
}

/*--------------------------------------------------------------*/
/*
*	WP Review
*/
.review-list li,
.review-wrapper, 
.review-title,
.review-desc p {
	color: inherit!important;
}
.review-list li {
	list-style-type: none;
}
/*.percentage-point .review-result {
	background-color: rgba(33,34,35,.85)!important;/*dynamic*/
/*}*//* http://www.pixedelic.com/themes/logan/all-manner-of-grotesque-figures-and-drawings/ */

/*--------------------------------------------------------------*/
/*
*	Like This
*/

.likeThis {
	color: inherit;
	display: inline-block;
	font-style: normal;
}
.likeThis::before {
	content: '\f08a';
	display: inline-block;
	font-family: 'FontAwesome';
	font-style: normal!important;
	margin-right: .25em;/*ltr*/
	vertical-align: middle;
}
.likeThis.done::before {
	content: '\f004';
}
#qLtempOverlay {
	background: #ffffff!important;/*dynamic*/
}

/*--------------------------------------------------------------*/
/*
*	Live search
*/
.logan .spu-bg {
	background-color: #dddcdc;
}
.logan .spu-box {
	-moz-box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
	-webkit-box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
	box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-size: cover;
    background-repeat: no-repeat!important;
    display: table;
    overflow: hidden;
    padding: 50px 40px 40px;
}
.logan .spu-content {
	display: table-cell;
	vertical-align: middle;
}
.logan .spu-close {
    -webkit-appearance: none;
    appearance: none;
    background-color: #222324;
    background-image: url(images/cancel-icon.php?fill=c6ac5e);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    border: 0;
    display: block;
    height: 30px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: -8px;
    overflow: hidden;
    text-indent: -99999px;
    top: -8px;
    width: 30px;
    z-index: 3;
    -webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
    -moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
    -ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
    -o-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
    transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
}
.logan .spu-close i {
	display: none;
}
.logan .spu-box:hover .spu-close {
    opacity: 1;
    right: 0;
    top: 0;
}
/*--------------------------------------------------------------*/
/*
*	Live search
*/
.searchwp-live-search-results {
	opacity:0;
	transition:opacity .25s ease-in-out;
	-moz-transition:opacity .25s ease-in-out;
	-webkit-transition:opacity .25s ease-in-out;
	height:0;
	overflow:hidden;
	z-index:9999;
	position:absolute;
	display:none;
}

.searchwp-live-search-results-showing {
	display:block;
	opacity:1;
	height:auto;
	overflow:auto;
}

.searchwp-live-search-no-results {
	padding:3em 2em 0;
	text-align:center;
}
.searchwp-live-search-results {
	border: 0!important;
	border-top: 1px solid rgba(34,35,35,.1)!important;
	-moz-border-radius: 0!important;
	border-radius: 0!important;
	-moz-box-shadow: none!important;/*dynamic*/
	-webkit-box-shadow: none!important;/*dynamic*/
	box-shadow: none!important;/*dynamic*/
	float: left;
	font-size: .9rem;
	left: auto!important;
	line-height: 1.4;
	margin: 20px -30px -15px!important;
	position: relative!important;
	top: auto!important;
	width: calc( 100% + 60px )!important;
}
.searchwp-live-search-results a {
	background: #ffffff;/*dynamic*/
	border-bottom: 1px solid rgba(34,35,35,.1);
	color: #c6ac5e;/*dynamic*/
	display: block;
	float: left;/*ltr*/
	padding: 15px 25px;
	text-decoration: none;
	white-space: normal!important;
	width: 100%;
	-webkit-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-moz-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-ms-transition: background 375ms cubic-bezier(.33,0,.2,1);
	-o-transition: background 375ms cubic-bezier(.33,0,.2,1);
	transition: background 375ms cubic-bezier(.33,0,.2,1);
}
.searchwp-live-search-results small {
	color: #343535;/*dynamic*/
	font-style: italic;
}
.searchwp-live-search-results a:last-child {
	border-bottom: 0;
	margin-bottom: 10px;
}
.searchwp-live-search-results a:hover {
	background: #f6f6f6;/*dynamic*/
}
.searchwp-live-search-results img {
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	float: left;
	margin: 0 10px 0 0;/*ltr*/
	vertical-align: middle;
	width: 50px;
}
.searchwp-live-search-results .spinner {
	left: 50%!important;
	position: absolute!important;
	top: 50%!important;
}
.searchwp-live-search-results .spinner > div > div {
	background: rgba(34,35,35,.75)!important;/*dynamic*/
}

.wpb_wl_quick_view_content {
	display: none!important;
}
#cboxLoadedContent .mfp-hide {
	display: block!important;
}
.wpb_wl_quick_view_content {
	height: 5000px;
	position: absolute;
	width: 5000px;
}
#cboxLoadedContent .wpb_wl_quick_view_content {
	height: inherit;
	margin: 0;
	overflow: hidden;
	position: static;
	width: auto;
}
#cboxLoadedContent .wpb_wl_quick_view_content .product_title.entry-title {
	margin: 0;
}
.single-product.wpb_wl_quick_view_content .images,
.single-product.wpb_wl_quick_view_content .summary.entry-summary {
	margin: 0;
	max-width: 560px;
	width: 50%;
}
.single-product.wpb_wl_quick_view_content .woocommerce-main-image,
.single-product.wpb_wl_quick_view_content .woocommerce-main-image img {
	max-width: none;
}
.single-product.wpb_wl_quick_view_content .summary.entry-summary {
	height: inherit;
	overflow: auto;
	padding: 40px;
}
.single-product.wpb_wl_quick_view_content [itemprop="description"] {
	font-size: .925em;
}
.single-product.wpb_wl_quick_view_content .compare {
	display: none!important;
}
.single-product.wpb_wl_quick_view_content .shop_icons_wrap {
	padding: 0;
}
.single-product.wpb_wl_quick_view_content .shop_icons_wrap a {
	height: 38px;
	width: 38px;
}
/*.single-product.wpb_wl_quick_view_content h3 + .woocommerce-product-rating {
	margin-top: -1.25rem;
}*/
.wishlist-title {
	display: none;
}
.woocommerce table.wishlist_table thead th,
.woocommerce table.wishlist_table tbody td {
    border-color: rgba(33,34,35,.1);/*dynamic*/
}
.woocommerce table.wishlist_table thead th {
	border-top: 0;
}
.woocommerce table.wishlist_table {
	font-size: inherit;
}
.wishlist_table tr td,
.wishlist_table tr th.wishlist-delete,
.wishlist_table tr th.product-checkbox {
	text-align: inherit;
}
.wishlist_table tr th.product-checkbox {
	text-align: center;
}
.woocommerce .wishlist_table td.product-add-to-cart span.dateadded {
	color: #acacaf;/*dynamic*/
	display: block;
	font-size: .775em;
	text-transform: uppercase;
}
.woocommerce .wishlist_table td.product-add-to-cart .remove_from_wishlist {
	display: none!important;
}
.woocommerce .wishlist_table td.product-add-to-cart a {
	display: inline-block!important;
	-moz-border-radius: 0;/*dynamic*/
	border-radius: 0;/*dynamic*/
	line-height: 1.667em;/*dynamic*/
	padding: 1em 2.125em;
}
.wishlist_table tfoot {
	display: none;
}

/*--------------------------------------------------------------*/
/*
*	Recent posts with thumbnails
*/
.logan .rpwwt-widget ul li {
	margin: 0;
}
.logan .recent-posts-widget-with-thumbnails img {
	margin: .3em .75em 0 0!important;
	max-width: 100px!important;
}
.logan .rpwwt-post-date {
	color: #acacaf;/*dynamic*/
	font-size: .75em;
	font-style: italic;
}

/*--------------------------------------------------------------*/
/*
*	Latest tweets
*/
.logan .latest-tweets li {
	list-style-type: none;
	margin-left: 30px;/*ltr*/
	margin-bottom: 15px;
}
.logan .latest-tweets li::before {
	content: "\ed07";
	display: inline-block!important;
    float: left;/*ltr*/
    font-family: "budicon";
    font-size: 12px;
	margin-left: -30px;/*ltr*/
    margin-right: 0;/*ltr*/
    margin-top: 6px;
    width: 30px;
    text-align: left;/*ltr*/
}
.logan .latest-tweets p.tweet-text {
    margin-bottom: 0;
}
.logan .latest-tweets p.tweet-text a {
	font-style: italic;
}
.logan .latest-tweets li time {
	color: #acacaf;/*dynamic*/
	font-family: 'Lato';/*dynamic*/
    font-size: .775em;
    text-transform: uppercase;
}

/*--------------------------------------------------------------*/
/*
*	WPML
*/
.widget #lang_sel,
.widget #lang_sel li,
.widget #lang_sel ul ul {
	font-family: inherit;
	width: 100%;
	z-index: 10;
}
#lang_sel img.iclflag {
	vertical-align: baseline;
}
.widget #lang_sel ul ul {
	margin-top: 17px!important;
}
.logan #lang_sel a,
.logan #lang_sel a:visited {
    font-size: inherit;
    text-decoration: none!important;
    color: inherit;
    border: 1px solid rgba(33,34,35,.1);/*dynamic*/
    background: #ffffff;/*dynamic*/
    padding-left: 10px;
    line-height: 32px;
}

/* Foundation v2.1.4 http://foundation.zurb.com */
/* Artfully masterminded by ZURB  */

/* --------------------------------------------------
Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Page Name 1
:: Page Name 2
*/


/* -----------------------------------------
Shared Styles
----------------------------------------- */

table th { font-weight: bold; }
table td, table th { padding: 9px 10px; text-align: left; }

/* Mobile */
@media only screen and (max-width: 767px) {

	table.responsive { margin-bottom: 0; }

	.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
	.pinned table { border-right: none; border-left: none; width: 100%; }
	.pinned table th, .pinned table td { white-space: nowrap; }
	.pinned td:last-child { border-bottom: 0; }

	div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
	div.table-wrapper div.scrollable { margin-left: 35%; }
	div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }

	table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
	table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }


}

.toc-storybar {
	height: 100%;
	position: absolute;
	width: 100%;
}
.toc-bar {
	background: rgba(34,35,35,.35);/*dynamic*/
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
}
.toc-bar::after {
	background: rgba(34,35,35,.15);/*dynamic*/
	content: '';
	height: 100%;
	position: absolute;
	right: -1000001px;
	width: 1000000px;
}
#progress,
#tehBars {
	bottom: 0;
	height: 15px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 10000000;
}
#tehBars {
	opacity: 0;
	-webkit-transition: opacity 1s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity 1s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity 1s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity 1s cubic-bezier(.33,0,.2,1);
	transition: opacity 1s cubic-bezier(.33,0,.2,1);
}
#tehBars.started {
	opacity: 1;
}
#colorbox {
	-moz-box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
	-webkit-box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
	box-shadow: 0 0 100px rgba(33,34,35,.5);/*dynamic*/
}
#colorbox, #cboxOverlay, #cboxWrapper {
	left: 0;
	overflow: visible!important;
	position: absolute;
	top: 0;
	z-index: 9999;
}
#cboxWrapper {
	max-width: none;
}
#cboxOverlay {
	cursor: default!important;
	height: 100%;
	position: fixed;
	width: 100%;
}
.cboxPrevent {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
	display: none;
}
#cboxContent {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	position:relative;
}
#cboxLoadedContent {
	overflow: hidden;
}
#cboxTitle{
	margin:0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic{
	height:100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{
	cursor: pointer;
}
#cboxClose {
	-webkit-appearance: none;
	appearance: none;
	background-color: #222324;/*dynamic*/
	background-image: url(images/cancel-icon.php?fill=c6ac5e);/*dynamic*//*ltr*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	border: 0;
	display: block;
	height: 30px;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: -8px;/*ltr*/
	overflow: hidden;
	text-indent: -99999px;
	top: -8px;
	width: 30px;
	z-index: 3;
	-webkit-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
	-moz-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
	-ms-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
	-o-transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
	transition: opacity .35s cubic-bezier(.33,0,.2,1), right .35s cubic-bezier(.33,0,.2,1), top .35s cubic-bezier(.33,0,.2,1);
}
#cboxContent:hover #cboxClose {
	opacity: 1;
	right: 0;/*ltr*/
	top: 0;
}

.cboxPhoto{
	float: left;
	margin: auto;
	border: 0;
	display: block;
	max-width: none;
	-ms-interpolation-mode: bicubic;
}
.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border:0;
}
#colorbox, #cboxContent, #cboxLoadedContent{
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}
#colorbox{
	outline: 0;
}
#cboxTopLeft{
	display: none;
}
#cboxTopRight {
	display: none;
}
#cboxBottomLeft {
	display: none;
}
#cboxBottomRight {
	display: none;
}
#cboxMiddleLeft {
	display: none;
}
#cboxMiddleRight {
	display: none;
}
#cboxTopCenter {
	display: none;
}
#cboxBottomCenter {
	display: none;
}
#cboxContent {
	overflow: hidden;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxTitle {
	position: absolute;
	bottom: 2.2222rem;
	left: 0;
	text-align: center;
	width: 100%;
}
#cboxCurrent {
	display: none!important;
}
#cboxPrevious, #cboxNext {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32px;
	border: 0;
	height: 50px;
	margin-top: -25px;
	padding: 0;
	text-indent: -99999px;
	width: 50px;
	position: fixed;
	top: 50%;
	z-index: 99999999;
}
#cboxPrevious {
	background-image: url(images/angle-left-icon.php?fill=222324);/*dynamic*/
	left: 0;
}
#cboxNext {
	background-image: url(images/angle-right-icon.php?fill=222324);/*dynamic*/
	right: 0;
}
#cboxOverlay {
	background: #dddcdc!important;/*dynamic*/
}
#cboxOverlay::after {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#cboxContent {
	background: #ffffff;/*dynamic*/
}
.cBox-quick-view #cboxContent {
	background:#ffffff;
}
.cboxIframe {
	background:#ffffff;
}
#cboxTitle {
	color:#ffffff;
	text-shadow: 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25), 0 0 20px rgba(0,0,0,.25);
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    position: relative;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-slider .slick-list,
.slick-track, .slick-slide,
.slick-track, .slick-slide *,
.slick-track, .slick-slide *::after {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.tooltipster-shadow {
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #222324;/*dynamic*/
	color: #ffffff;/*dynamic*/
}
.tooltipster-shadow .tooltipster-content {
	font-size: 0.785rem;
	line-height: 1.35;
	padding: 8px 10px;
}

/*!Animate.css - http://daneden.me/animate Licensed under the MIT license -http://opensource.org/licenses/MIT Copyright (c) 2015 Daniel Eden*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}