/*-------------------------------------------------------------------------------------

  Theme Name: Screeyn
  Theme URI: http://themes.screeynthemes.com/screeyn
  Author: Miniml
  Author URI: http://screeynthemes.com
  Description: A gorgeous, minimalistic Woocommerce theme designed to emphasize your products to let them tell a story. Packed with great functionalities such as ajax pagination and a sleek login/register form.
  Version: 1.03
  Text Domain: screeyn
  License: GNU General Public License
  License URI: license/GPL.txt
  Tags: three-columns, custom-colors, custom-background, custom-logo, editor-style, featured-images, theme-options, e-commerce, translation-ready

/*--------------------------------------------------------------*/
/*	TABLE OF CONTENTS
/*---------------------------------------------------------------

1.0 - Reset
2.0 - Typography
3.0 - Basic elements
4.0 - Form Elements
5.0 - Navigation
	5.1 - Links
	5.2 - Main Menu
	5.3 - Post Navigation
	5.4 - Page Navigation
	5.5 - Mobile Menu
6.0 - Accessibility
7.0 - Widgets
8.0 - Comments
9.0 - Media
10.0 - Header
11.0 - Content
  11.1 - Modules
  11.2 - General
12.0 - Posts
13.0 - Footer
14.0 - Specific

----------------------------------------------------------------*/

/*--------------------------------------------------------------*/
/*	1.0 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,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;margin:0;padding:0;text-decoration:none;vertical-align:baseline}img{vertical-align:bottom}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}.clearfix::after{content:"";display:table;clear:both}.none{display:none}*,*:before,*:after {-moz-box-sizing: border-box;box-sizing: border-box;}

/*--------------------------------------------------------------*/
/*	2.0 TYPOGRAPHY
/*--------------------------------------------------------------*/

body,
#sb-site {
    background:#F4F4F4;
}

body,
button,
input,
select,
textarea {
    color: #707070;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
}

.site-move {
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: "Merriweather", Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
    color: #282828;
}

h1 {
    font-size: 30px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
    font-size: 28px;
}
@media (max-width: 600px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
    font-size: 26px;
}
@media (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
    font-size: 24px;
}
@media (max-width: 600px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
    font-size: 22px;
}
@media (max-width: 600px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
    font-size: 20px;
}
@media (max-width: 600px) {
  h6 {
    font-size: 18px;
  }
}

b, strong {
    font-weight: bold;
}

dfn, cite, em, i {
  	font-style: italic;
}

blockquote {
  	color: #282828;
  	font-family: "Merriweather", serif;
  	font-size: 24px;
    font-weight: 300;
  	line-height: 1.6;
  	margin: 0 0 1.4em 0;
  	position: relative;
  	padding: 0 0 0 50px;
}

blockquote:after {
  	content: "\201C";
  	font-family: Georgia, serif;
  	font-weight: 400;
  	position: absolute;
  	left: 0;
  	top: 0;
  	font-size: 60px;
  	line-height: 1.1;
}

blockquote p {
  	margin-bottom: 1em;
}

.comments-area blockquote {
  	border-left-color: #D7DEE5;
  	font-family: "Noto Serif", "Georgia", serif;
  	font-size: 18px;
  	font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  	background: #f0f0f0;
  	font-family: "Courier 10 Pitch", Courier, monospace;
  	font-size: 15px;
  	font-size: 1.5rem;
  	line-height: 1.6;
  	margin-bottom: 1.6em;
  	max-width: 100%;
  	overflow: auto;
  	padding: 1.6em;
}

.comments-area pre {
  	background: #d7dee5;
}

code, kbd, tt, var {
  	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
  	border-bottom: 1px dotted #999;
  	cursor: help;
}

mark, ins {
  	background: #fff9c0;
  	text-decoration: none;
}

article {
    position:relative;
}

sup, sub {
  	font-size: 75%;
  	height: 0;
  	line-height: 0;
  	position: relative;
  	vertical-align: baseline;
}

sup {
  	bottom: 1ex;
}

sub {
  	top: .5ex;
}

small {
  	font-size: 75%;
}

big {
  	font-size: 125%;
}

/*--------------------------------------------------------------*/
/*	3.0 BASIC ELEMENTS
/*--------------------------------------------------------------*/

del {
    color:#707070;
    text-decoration:line-through;
}

.entry-content p {
    margin-bottom:30px;
}

.entry-content p:last-child {
    margin-bottom:0;
}

.entry-content p:before {
    content: '';
    display: table;
}

.entry-content p:after {
    clear: both;
    content: '';
    display: table;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.divider {
    margin-bottom:60px;
    padding-bottom:60px;
    border-bottom:1px solid;
    border-color:#EEE;
}

.accent {
    color:#b0976d;
}

.padded {
    padding: 20px;
}

.cta-link {
    color:#FFF;
    display:block;
    text-align:center;
    margin-top:70px;
    font-family: "Roboto", serif;
    font-weight: 300;
    font-size: 25px;
    background:#1d1d1d;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cta-link:hover {
    color:#FFF;
    background:#b0976d;
}

.border-link {
    border-bottom: 2px solid;
    border-color: #b0976d;
    padding-bottom:0px;
    color:#707070;
    display:inline-block;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.border-link:hover {
    color:#283037;
}

.even {
    background:#FFF;
}

.odd {
    background: #f4f4f4;
}

.float-right {
    float:right !important;
}

.float-left {
    float:left !important;
}

@media (max-width:600px) {
  .image-block,
  .video-block {
    margin-bottom:50px;
  }
}

.centered {
    text-align:center;
}

@media (max-width: 600px) {
  .no-scroll {
    overflow: hidden;
  }
}

body .hide-for-small {
	display:block;
  visibility:visible;
}

body .show-for-small {
	display:none;
  visibility:hidden;
}

@media (max-width: 800px) {
  body .hide-for-small {
    display: none !important;
    visibility: hidden !important;
  }
  body .show-for-small {
  	display: block;
    visibility: visible;
  }
}

.alignleft {
  	display: inline;
  	float: left;
  	margin: .5em 2em .5em 0;
}

@media (max-width: 600px) {
  .alignleft {
    max-width: 150px;
    margin-right: 1em;
  }
}

.alignright {
  	display: inline;
  	float: right;
  	margin: .5em 0 1.5em 2em;
}

@media (max-width: 600px) {
  .alignright {
    max-width: 150px;
    margin-left: 1em;
  }
}

.aligncenter {
  	clear: both;
  	display: block;
  	margin: 0 auto 1.5em auto;
}

.wp-caption {
  	margin: .5em 0 1.5em 0;
  	max-width: 100%;
  	text-align: left;
}

.wp-caption img[class*="wp-image-"] {
  	display: block;
  	margin: 0;
  	max-width: 100%;
}

.wp-caption-text, .gallery-caption {
  	padding: 0;
  	margin-top: 12px;
  	width: 100%;
  	color: #66727D;
  	text-transform: none;
  	font-size: 15px;
  	font-weight: 400;
  	letter-spacing: 0;
  	padding-left: 10px;
  	border-left: solid 2px #e3eaf0;
  	margin-bottom: 0;
}

#main .tiled-gallery {
  	margin-bottom: 1.4em;
}

.gallery {
  	margin-bottom: 0em;
}

.gallery-item {
  	display: inline-block;
  	text-align: center;
  	vertical-align: top;
  	width: 100%;
}

.entry-content .gallery-item a {
  	border: none;
}

.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%;
}

.pull-right {
  	float: right;
  	margin: 0 0 2% 5%;
  	text-align: right;
}

.pull-left {
  	float: left;
  	margin: 0 5% 2% 0;
}

.pull-right, .pull-left {
  	color: #283037;
  	font-family: "Roboto", serif;
  	font-size: 24px;
  	font-weight: 500;
  	line-height: 1.4;
  	width: 32%;
}

.pull-right:before, .pull-left:before {
  	content: " ";
  	background: url(images/screen-half.png);
  	height: 16px;
  	display: inline-block;
  	width: 100%;
}

@media (max-width: 800px) {
  .pull-right:before, .pull-left:before {
    height: 12px;
  }
}


@media (max-width: 800px) {
  .pull-right, .pull-left {
    font-size: 20px;
    width: 100%;
    margin: 0 0 5% 0;
    text-align: left;
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .pull-right, .pull-left {
    font-size: 18px;
  }
}

.sticky {
  width: auto;
}

.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
  content: '';
  display: table;
}

.clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after {
  clear: both;
}

hr {
  	background-color: transparent;
  	border: 0;
  	border-bottom: solid 1px;
    border-color: #dadada;
  	height: 1px;
  	margin: 50px 0;
    display:block;
}

ul, ol {
  	margin: 0 0 1.4em 25px;
}

ul {
  	list-style: circle;
}

ol {
  	list-style: decimal;
}

ul ul, ol ol, ul ol, ol ul {
  	margin: .6em 0 .6em 1.5em;
}

.entry-content li {
  	margin-bottom: 2%;
}

dt {
  	font-weight: bold;
}

dd {
  	margin: 0 1.5em 1.5em;
}

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

figure {
  	margin: 0;
}

/* Tables */
table {
  	font-size: 16px;
  	margin-bottom: 5%;
  	padding: 0;
  	width: 100%;
}

@media (max-width: 800px) {
  table {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  table {
    font-size: 16px;
  }
}

table thead {
  	background: none;
}
table thead th {
  	font-weight: normal;
}

tbody {
  text-align:left;
}

table td,
table th {
  	padding: 20px;
}

table tr:last-child td {
  	border-bottom: none;
}

/*--------------------------------------------------------------*/
/*	4.0 FORM ELEMENTS
/*--------------------------------------------------------------*/

form p {
  margin-bottom:30px;
}

button,
input:not(input[type="radio"]),
textarea {
  	font-size: 100%;
  	margin: 0;
  	vertical-align: baseline;
  	*vertical-align: middle;
  	-webkit-appearance: none;
  	-moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.comment-navigation a {
	background: #141719;
	border: none;
  display:block;
	border-radius: 0px;
 	color: #fff !important;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
  text-align:center;
  text-transform:uppercase;
	font-weight: bold;
  letter-spacing:1px;
	padding: 17px 25px;
	-webkit-appearance: none;
	transition: .1s ease-in;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.comment-navigation a:hover {
  	background: #b0976d;
  	color: #fff;
  	cursor: pointer;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
.button:active,
.button:focus,
.comment-navigation a:focus,
.comment-navigation a:hover {
  	color: #fff;
  	outline: none;
}

input[disabled] {
    opacity:0.5;
}

input[type="checkbox"], input[type="radio"] {
  	padding: 0;
}

input[type="search"] {
  	-webkit-appearance: textfield;
  	-moz-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  	-webkit-appearance: none;
}

.searchform {
  	position: relative;
}

.searchform #s {
  	width: 100%;
  	font-size: 16px;
}

.searchform #searchsubmit {
  	position: absolute;
  	top: 0;
  	right: 0;
  	height: 100%;
  	background: transparent;
  	color: #627083;
  	padding: 14px 15px;
  	font-size: 15px;
}

.searchform #searchsubmit i {
  	-webkit-font-smoothing: antialiased;
  	line-height: 1.5;
  	font-size: 16px;
  	vertical-align: top;
}

@media (max-width: 800px) {
  .searchform #searchsubmit span {
    display: none;
  }
}

.widget-area .searchform #searchsubmit span {
  	display: none;
}

select {
  	font-size: 100%;
  	margin: 0;
  	vertical-align: baseline;
  	*vertical-align: middle;
  	width: 100%;
  	-webkit-appearance: normal;
  	-moz-box-sizing: border-box;
    box-sizing: border-box;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  	border: 0;
  	padding: 0;
}

input[type="tel"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select,
#secondary #subscribe-email input[type="email"] {
    display:block;
  	color: #707070;
    width:100%;
  	background: none;
  	-moz-box-sizing: border-box;
    box-sizing: border-box;
  	-webkit-appearance: none;
  	padding: 12px 15px;
  	border: solid 1px;
    border-color:#dadada;
  	border-radius: 0px;
  	transition: .1s ease;
    font-size:16px;
}

input[type="tel"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus,
#secondary #subscribe-email input[type="email"]:focus {
  	border: solid 1px;
    border-color: #C5CDD5;
  	outline: none;
  	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

select {
  	background: url("images/angle-down.png") right no-repeat;
  	background-size: 10px;
  	background-position: right 15px top 24px;
}

select:hover {
  	border-color: #D5DDE4;
  	cursor: pointer;
}

select:after {
  	content: "x";
}

@media (max-width: 800px) {
  input[name="post_password"] {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
  }
}

textarea {
  	overflow: auto;
  	/* Removes default vertical scrollbar in IE6/7/8/9 */
  	padding: 10px;
  	vertical-align: top;
  	/* Improves readability and alignment in all browsers */
 	width: 100%;
}

::-webkit-input-placeholder {
  	color: #707070;
}

:-moz-placeholder {
  	color: #707070;
}

::-moz-placeholder {
  	color: #707070;
}

:-ms-input-placeholder {
  	color: #707070;
}

/*--------------------------------------------------------------*/
/*	5.0 NAVIGATION
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------*/
/*	5.1 REGULAR LINKS
/*--------------------------------------------------------------*/

a {
  	color: #b0976d;
  	text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover, a:focus, a:active {
  	color: #b0976d;
}

/*--------------------------------------------------------------*/
/*	5.2 MAIN MENU
/*--------------------------------------------------------------*/

.cart-toggle {
    text-align:right;
}

#mobile-menu-2 {
    padding-top:10px;
}

#navigation {
    position:relative;
    padding:50px 0;
    background:#FFF;
}

#navigation .columns {
    padding:0px;
}

#navigation .main-navigation ul.cart-account {
    position:relative;
    float:right;
    padding: 0;
    margin: 0;
}

.mobile-toggle {
    line-height:36px;
}

#mobile-nav {
    background-color: #141719;
    color: #999;
}

#mobile-nav .cart-number-count {
    color: #999;
    border-color: #999;
}

#mobile-nav ul {
    list-style:none;
    margin:0;
    float:right;
    display:inline-block;
}

.icon-style .cart-icon {
    margin:2px 0;
    font-size:0px;
}

.text-style .cart-icon {
    color:#707070;
}

li.cart-icon {
    padding-left:25px;
    float:right;
}

li.cart-icon a {
    padding-left:0px !important;
}

.main-navigation {
  	text-align: center;
  	font-size: 16px;
  	font-family: "Roboto", sans-serif;
  	font-weight: 500;
  	display: inline-block;
  	width: 100%;
    padding-bottom:20px;
}

.main-navigation .page_item_has_children > a:after {
    content: "\e64b";
    font-family: "ti";
    margin-left: 6px;
    font-size: 10px;
    font-weight: bold;
}

.main-navigation .edge .sub-menu,
.main-navigation .edge .children {
    right:0 !important;
    left:auto !important;
}

/* Style two */

.style-two .main-navigation {
    text-align:left;
}

.style-two .main-navigation li a {
    padding: 0 15px 0 0;
}

.main-navigation ul {
  	margin: 0;
  	padding: 0;
}

.main-navigation li {
  	display: inline-block;
  	position: relative;
}

.main-navigation li a {
  	padding: 0 0 0 15px;
  	display: inline-block;
  	color: #707070;
    line-height:36px;
  	transition: .1s ease-in-out;
}

.main-navigation li.current-menu-item > a,
.main-navigation li:hover > a {
  	color: #000000;
}

.main-navigation .menu-item-has-children > a:after {
    content: "\e64b";
    font-family: "ti";
    margin-left: 6px;
    font-size: 10px;
    font-weight: bold;
}

.main-navigation .sub-menu .menu-item-has-children > a:after {
    content: "\e649";
    font-family: "ti";
    margin-left: 6px;
    font-size: 10px;
    font-weight: bold;
}

.main-navigation .sub-menu,
.main-navigation .children {
    padding-top:22px;
  	position: absolute;
  	width: 265px;
  	top: 100%;
  	left: 0px;
  	text-align: left;
  	margin: 0;
  	z-index: 50;
  	display: none;
}

.main-navigation .sub-menu li,
.main-navigation .children li {
    background:#141719;
}

@media (max-width: 800px) {
  .main-navigation .sub-menu:before,
  .main-navigation .children:before {
    display: none;
  }
}

.main-navigation li ul {
  	z-index: 100;
}

.main-navigation li ul li {
  	padding: 0 20px 12px 20px;
  	width: 100%;
}

.main-navigation li ul li:first-child {
    padding-top:12px;
}

.main-navigation li ul li:last-child {
    padding-bottom:12px;
}

.main-navigation li ul a,
.main-navigation li ul li a {
  	width: 100%;
  	display: inline-block;
  	padding: 0;
  	margin: 0;
  	font-size: 16px;
  	font-weight: normal;
  	text-transform: none;
  	line-height: 1.6;
  	color: #999:;
}

.main-navigation li ul a:hover,
.main-navigation li ul li:hover a,
.main-navigation li ul li a:hover,
.main-navigation li ul li.current-menu-item a {
  	color: #fff;
}

.main-navigation li ul li ul {
  	padding: 0;
}

.main-navigation ul ul {
  	top: 0;
}

.main-navigation li ul ul.sub-menu,
.main-navigation li ul ul.children {
  	left: 265px;
  	top: 0;
  	margin: 0;
  	z-index: 20;
  	position: absolute;
}

.main-navigation li ul ul.sub-menu:before,
.main-navigation li ul ul.children:before {
  	display: none;
}

.main-navigation li:hover > ul,
.main-navigation li li a:hover > ul {
  	display: block;
  	-webkit-animation-name: fadeIn;
  	animation-name: fadeIn;
  	-webkit-animation-duration: .1s;
  	animation-duration: .1s;
  	-webkit-animation-fill-mode: both;
  	animation-fill-mode: both;
}

/*--------------------------------------------------------------*/
/*	5.3 POST NAVIGATION
/*--------------------------------------------------------------*/

.post-navigation {
  	display: block;
  	width: 100%;
  	position: relative;
  	text-align: center;
}

.post-navigation .previous-post,
.post-navigation .next-post {
    height: 350px;
    overflow: hidden;
    position: relative;
    background-position: center center !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.post-navigation .previous-post:before,
.post-navigation .next-post:before {
    content: "";
    position: absolute;
    background: #141719;
    opacity: 0.80;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    right: 0;
    width: 100.1%;
    height: 100%;
}

.post-navigation .inner {
    z-index: 10;
    position: absolute;
    text-align: center;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.post-navigation .inner p {
    color: #b0976d;
}

.post-navigation .inner h2 a {
    color:#FFF;
}

.post-navigation .inner h2 {
    text-transform: none;
    line-height: 1.4;
    font-size: 24px;
    margin-bottom: 0px;
    margin-top: 10px;
}

.post-navigation .inner .arrow {
    color:#ccc;
    font-size:20px;
}


/*--------------------------------------------------------------*/
/*	5.4 PAGE NAVIGATION
/*--------------------------------------------------------------*/

.pagination {
  	display: inline-block;
  	width: 100%;
  	overflow: hidden;
  	text-align: center;
    margin-top:50px;
}

.pagination .page-numbers {
    padding:0px 10px;
    color:#707070;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    color: #b0976d;
}

/*--------------------------------------------------------------*/
/*	5.5 MOBILE MENU
/*--------------------------------------------------------------*/

#mobile-navigation .six.columns {
    width: 50% !important;
}

#mobile-navigation .columns {
    padding:0 !important;
}

#mobile-navigation .search-toggle,
#mobile-navigation .cart-number-count {
    color:#999;
}

#mobile-navigation .nav-icon span {
    background:#999;
}

#mobile-navigation .cart-number-count {
    border-color:#999;
}

#mobile-navigation {
    padding:20px 0;
    background: #141719;
}

#menu-header {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid;
    border-color: #252525;
    position: relative;
    text-align: left;
    line-height:36px;
}

#menu-header span {
    line-height: 1;
    color: #999999;
    cursor:pointer;
    z-index: 99;
    font-size: 17px;
    margin-bottom: 0px;
}

.icon-style .search-toggle {
    font-size:0px;
    text-align:right;
    color:#000;
    vertical-align: top;
}

.icon-style .search-toggle:after {
    padding-left:10px;
    font-size:18px;
    content:"\e610";
    font-family:'ti';
    font-weight:bold;
}

.text-style .search-toggle {
    color:#707070;
}

/* Mobile menu button */

.nav-icon {
    vertical-align:middle;
    width: 24px;
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon span:nth-child(2) {
    top: 7px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon span:nth-child(3) {
    top: 14px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.sb-active-left .nav-icon span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 0px;
}

.sb-active-left .nav-icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.sb-active-left .nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
    left: 0px;
}

#mobile-nav {
    padding:15px 0;
}

.search-toggle {
    display:inline-block;
    cursor:pointer;
    line-height:36px;
}

.nav-icon {
    display:inline-block;
    cursor:pointer;
    font-size:18px;
}

.widget-area h4 {
    color:#FFF;
}

.widget-area {
    display: block;
    margin: 0;
    width: 100%;
    padding: 50px;
}

.widget-area ul.socials {
    padding-top:60px;
}

.widget-area ul.socials li {
    padding:0 10px 0 0;
}

.widget-area .widget-block aside:first-child {
    padding-top:0px;
}

.slide-sidebar .widget-area aside.four.columns,
.slide-sidebar .widget-area aside {
    width:100%;
    padding:60px 0 0 0;
    margin:0;
}

.slide-sidebar .widget-area aside:first-child {
    padding-top:0px;
}

.widget-area .menu {
    list-style:none;
    margin: 0;
    width: 100%;
}

.widget-area .menu li {
    display:block;
    padding:0 0 10px 0;
    font-size:16px;
}

.widget-area .menu li:last-child {
    padding:0 0 0 0;
}

.widget-area .menu li a {
    color:#999;
}

.widget-area .menu li.current-menu-item a,
.widget-area .menu li a:hover {
    color:#FFF;
}

.sb-overlay {
    content: "";
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    bottom: 0;
    background:#1d1d1d;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.sb-active .sb-overlay {
  visibility:visible;
  z-index:100;
  opacity:0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#sb-site, .sb-site-container, .sb-slidebar {margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body,html{width:100%;overflow-x:hidden}html{height:100%}body{min-height:100%;height:auto;position:relative}html.sb-scroll-lock.sb-active:not(.sb-static){overflow:hidden}#sb-site,.sb-site-container{width:100%;min-height:100vh;position:relative;z-index:1;}#sb-site:after,#sb-site:before,.sb-site-container:after,.sb-site-container:before{content:' ';display:table;clear:both}.sb-slidebar{height:100%;overflow-y:auto;position:fixed;top:0;z-index:0;display:none;background-color:#1d1d1d}.sb-slidebar,.sb-slidebar *{-webkit-transform:translateZ(0px)}.sb-left{left:0}.sb-right{right:0}.sb-slidebar.sb-static,html.sb-static .sb-slidebar{position:absolute}.sb-slidebar.sb-active{display:block}.sb-style-overlay{z-index:9999}.sb-momentum-scrolling{-webkit-overflow-scrolling:touch}.sb-slidebar{width:30%}.sb-width-thin{width:15%}.sb-width-wide{width:45%}@media (max-width:460px){.sb-slidebar{width:70%}.sb-width-thin{width:55%}.sb-width-wide{width:85%}}@media (min-width:481px){.sb-slidebar{width:55%}.sb-width-thin{width:40%}.sb-width-wide{width:70%}}@media (min-width:768px){.sb-slidebar{width:40%}.sb-width-thin{width:25%}.sb-width-wide{width:55%}}@media (min-width:992px){.sb-slidebar{width:30%}.sb-width-thin{width:15%}.sb-width-wide{width:45%}}@media (min-width:1200px){.sb-slidebar{width:20%}.sb-width-thin{width:5%}.sb-width-wide{width:35%}}#sb-site,.sb-site-container,.sb-slide,.sb-slidebar{-webkit-transform:translate(0px);-moz-transform:translate(0px);-o-transform:translate(0px);transform:translate(0px);-webkit-transition:-webkit-transform 400ms ease;-moz-transition:-moz-transform 400ms ease;-o-transition:-o-transform 400ms ease;transition:transform 400ms ease;-webkit-transition-property:-webkit-transform,left,right;-webkit-backface-visibility:hidden}.sb-hide{display:none}

.slide-sidebar {
    width: 400px;
    height: 100%;
    background-color: #141719;
    color: #999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -moz-box-shadow: inset 3px 0px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 3px 0px 5px rgba(0,0,0,0.1);
    box-shadow: inset 3px 0px 5px rgba(0,0,0,0.1);
}

.slide-sidebar.sb-left {
    -moz-box-shadow: inset -3px 0px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset -3px 0px 5px rgba(0,0,0,0.1);
    box-shadow: inset -3px 0px 5px rgba(0,0,0,0.1);
}

@media(max-width:600px) {
  .slide-sidebar {
      width:100%;
  }
}

.admin-bar .sb-slidebar,
.admin-bar #sb-site {
    margin-top:32px;
}

@media(max-width: 782px) {
  .admin-bar .sb-slidebar {
      margin-top:46px;
  }
}

@media(max-width: 600px) {
  .admin-bar #sb-site {
      margin-top:46px;
  }
  html {
    margin-top: 0px !important;
}
}

/*--------------------------------------------------------------*/
/*	6.0 ACCESSIBILITY
/*--------------------------------------------------------------*/

.screen-reader-text {
  	clip: rect(1px, 1px, 1px, 1px);
  	position: absolute !important;
  	margin: 0;
}

.screen-reader-text:hover, .screen-reader-text:active, .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-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 */
}

/*--------------------------------------------------------------*/
/*	7.0 WIDGETS
/*--------------------------------------------------------------*/

.widget .search-submit {
    display:none;
}

.widget-area input[type="text"],
.widget-area input[type="email"],
.widget-area input[type="url"],
.widget-area input[type="password"],
.widget-area input[type="search"],
.widget-area textarea,
.widget-area select {
    border:0px;
    color: #ccc;
    border-bottom: 2px solid;
    border-color: #b0976d;
    padding: 12px 0px;
    border-radius:0px;
    background:none;
    width:100%;
}

.widget-area button,
.widget-area input[type="button"],
.widget-area input[type="reset"],
.widget-area input[type="submit"] {
    display:none;
}

.widget-area ::-webkit-input-placeholder {
    color: #999;
}

.widget-area :-moz-placeholder {
    color: #999;
}

.widget-area ::-moz-placeholder {
    color: #999;
}

.widget-area :-ms-input-placeholder {
    color: #999;
}

.widget-area ul li a {
    padding:0;
    border:none;
}

.slide-sidebar .widget-area ul li a,
.slide-sidebar .widget-area,
.slide-sidebar .widget-area a {
  	color: #999;
}

.footer-widgets .widget-area ul li a,
.footer-widgets .widget-area,
.footer-widgets .widget-area a {
    color: #999;
}

.slide-sidebar .widget-area a:hover,
.footer-widgets .widget-area a:hover {
    color:#FFF;
}

.widget-area p {
    padding-bottom:30px;
}

.widget-area p:last-child {
    padding-bottom:0px;
}

.widget-area a:hover {
  	color: #fff;
}

.widget-area aside {
  	display: inline-block;
  	vertical-align: top;
  	position: relative;
  	z-index: 10;
  	-webkit-transform: translateZ(0);
}

.widget-area aside .widget-title,
.widget-area aside .widgettitle,
.widget-area .widget-grofile h4 a {
	  font-family:'Merriweather', serif;
  	font-size: 20px;
  	line-height: 1.6;
  	position: relative;
    color:#FFF;
  	margin-bottom: 20px;
}

.footer-widgets .widget-area aside .widget-title,
.footer-widgets .widget-area aside .widgettitle {
    color:#FFF;
}

.widget .tagcloud a {
    display: inline-block;
    float: left;
    font-size: 12px !important;
    line-height: 1;
    margin: 0 6px 6px 0;
    padding: 5px 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #b0976d;
    color:#FFF;
    border:none;
}

.widget-area .textwidget p:last-of-type {
  	margin-bottom: 0;
}

.widget-area aside ul {
  	margin: 0 0 0 0;
}

.widget-area aside ul.sub-menu,
.widget-area aside .children {
  	margin: 10px 0 0 0;
}

.widget-area aside ul.sub-menu li a:before,
.widget-area aside ul.children li a:before {
    content:"-";
    padding-right:15px;
}

.widget-area aside ul.sub-menu li:last-child,
.widget-area aside .children li:last-child {
  	margin-bottom: 0;
  	padding-bottom: 0;
  	border-bottom: none;
}

.widget-area aside li {
  	padding-bottom: 3px;
  	list-style: none;
  	position: relative;
}

.widget-area aside li:before {
  	content: "\f0da";
  	font-family: "FontAwesome";
  	position: absolute;
  	left: -18px;
  	top: 3px;
  	color: #A1B0BD;
  	font-size: 12px;
  	display: none;
}

.widget-area aside li ul li {
  	list-style: circle;
}

.widget-area aside li:last-child {
  	margin-bottom: 0;
  	border-bottom: none;
  	padding-bottom: 0;
}

#calendar_wrap {
  	background: none;
  	border-right: none;
  	border-bottom: none;
  	color: #999;
  	box-shadow: none;
}

#wp-calendar {
  	font-size: 16px;
  	margin: 0;
  	max-width: 100%;
}

#wp-calendar caption {
  	text-align: center;
	background: none;
	padding: 5px 10px;
  	font-weight: bold;
}

#wp-calendar tr th,
#wp-calendar tr td {
  	text-align: center;
}

#wp-calendar tr th {
  	background: #b0976d;
  	color: #fff;
  	margin: -10px -10px 10px -10px;
  	font-size: 11px;
  	font-weight: bold;
  	padding: 10px 0;
}

#wp-calendar tbody tr td {
  	padding: 2px 0;
  	border-right: 0px;
  	border-top: 0px;
}

#wp-calendar tfoot td {
  	border-top: 0px;
  	border-right: 0px;
  	padding: 7px 0 5px 0;
  	font-weight: bold;
  	font-size: 10px;
  	text-transform: uppercase;
}

#wp-calendar a {
  	color: #999;
}

#wp-calendar a:hover {
  	color: #999;
}

.widget_rss li {
  	margin-bottom: 15px;
  	padding-bottom: 15px;
}

.widget_rss li:last-child {
  	border-bottom: none;
  	margin-bottom: 0;
  	padding-bottom: 0;
}

.widget_rss li .rsswidget {
  	display: inline-block;
  	width: 100%;
}

.widget_rss .rss-date, .widget_rss cite {
  	font-size: 14px;
  	text-transform: uppercase;
  	display: inline-block;
  	margin: 10px 0;
}

/*--------------------------------------------------------------*/
/*	8.0 COMMENTS
/*--------------------------------------------------------------*/

.comment-content p {
    padding-bottom:30px;
}

.comment-content p:last-child {
    padding-bottom:0px;
}

.comment-navigation {
  	font-size: 16px;
  	margin: 0 0 6% 0;
}

.comment-navigation .button {
  	display: inline-block;
}

.comment-navigation .button:empty {
  	display: none;
}

.comment-navigation .nav-previous a:before {
  	content: "\f0a8";
  	font-family: "FontAwesome";
  	margin-right: 10px;
}

.comment-navigation .nav-next a:after {
  	content: "\f0a9";
  	font-family: "FontAwesome";
  	margin-left: 10px;
}

.page .comments-area {
  	margin-top: 5%;
}

.comments-title {
  	margin-bottom: 50px;
}

.comments-title span {
  	border-bottom: solid 3px;
}

#commentform {
  	display: inline-block;
  	width: 100%;
}

.comment-list #commentform {
  	margin-top: 2%;
}

.comment-info {
  	display: inline-block;
  	margin-bottom: 30px;
}

.comment-content {
  	font-size: 18px;
}

#content .comment-content p {
    margin-bottom:30px;
}

.bypostauthor .comment-list .avatar:after {
  	content: "\f007";
  	font-family: "FontAwesome";
  	font-size: 16px;
  	margin-left: 1rem;
  	position: relative;
  	top: 0;
}

.comment-list,
.comment-list li {
  	margin: 0;
  	counter-reset: li;
    background:none;
}

.comment-list > li {
  	list-style-type: none;
  	margin-bottom: 50px;
    background:none;
  	padding-bottom: 50px;
}

.comment-list .children {
  	margin: 50px 0 0 50px;
}

.comment-list .children li {
  	margin-bottom: 50px;
  	padding-bottom: 50px;
}

.comment-list .children li:first-child {
  	padding-top: 50px;
}

.comment-list .children li:last-child {
  	margin-bottom: 0;
  	padding-bottom: 0;
  	border-bottom: none;
}

.comment-list .children > li {
  	list-style: none;
}

.comment-list .reply {
  	margin-bottom: 0;
}

.comment-list .avatar {
  	display: inline-block;
  	margin-right: 5%;
  	border-radius: 100px;
  	vertical-align: top;
  	width: 8%;
}

.comment-wrap {
  	display: inline-block;
  	width: 84%;
  	vertical-align: top;
}

.comment-cite {
    color:#283037;
  	font-style: normal;
  	display: inline-block;
  	width: 100%;
    margin-bottom:5px;
  	font-size: 24px;
  	line-height: 1;
}

@media (max-width: 600px) {
  .comment-cite {
    font-size: 18px;
  }
}

.comment-cite a {
  	color: #283037;
}

.comment-time, .comment-edit-link {
  	color: #707070;
  	font-size: 15px;
  	font-weight: 400;
  	vertical-align: top;
}

.comment-reply-title {
  	display: inline-block;
  	font-size: 36px;
  	margin-bottom: 6%;
  	width: 100%;
}

@media (max-width: 600px) {
  .comment-reply-title {
    font-size: 24px;
  }
}

.comment-reply-title small {
  	display: inline-block;
  	float: right;
}

.comment-reply-title small a {
  	color: #66727D;
  	font-size: 13px;
  	text-transform: uppercase;
  	letter-spacing: 1px;
  	font-weight: 400;
  	vertical-align: top;
  	padding-top: 18px;
  	display: inline-block;
}

.comment-reply-title small a:hover {
  	color: #EB5252;
}

@media (max-width: 600px) {
  .comment-reply-title small a {
    display: inline-block;
    margin-left: 0;
  }
}

.comment-list .comment-reply-title {
  	margin-bottom: 3%;
}

.logged-in-as, .comment-notes {
  	margin-bottom: 2%;
  	display: none;
  	color: #66727D;
  	font-size: 13px;
  	text-transform: uppercase;
  	letter-spacing: 1px;
  	font-weight: 400;
}

.comment-notes {
  	display: none;
}

.required {
  	color: #F35959;
}

.logged-in-as a {
  	color: #283037;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
  	display: inline-block;
  	width: 100%;
}

@media (max-width: 800px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url,
  .comment-form-comment {
    width: 100%;
    margin-right: 0;
  }
}

.comment-list #respond {
  	border-top: dotted 1px #C2C9D0;
  	display: inline-block;
  	margin-top: 4%;
  	padding-top: 6%;
  	width: 100%;
}

@media (max-width: 800px) {
  .comment-form-url {
    margin-bottom: 1em;
  }
}

.comment-form label {
  	display: inline-block;
  	float: left;
  	margin-bottom: 10px;
}

@media (max-width: 800px) {
  .comment-form label {
    float: none;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .comment-form label {
    font-size: 16px;
  }
}

.comment-form input:not([type='submit']), .comment-form textarea {
  width: 82%;
  font-size: 16px;
  float: right;
}

@media (max-width: 800px) {
  .comment-form input:not([type='submit']), .comment-form textarea {
    float: none;
    width: 100%;
  }
}

#content p.form-submit {
 	display: inline-block;
  	margin-bottom: 0;
  	width: 100%;
}

#reply-title {
    display:none;
}

.comment-form #submit {
  	width: auto;
  	float: right;
}

@media (max-width: 600px) {
  .comment-form #submit {
    margin: 0;
    width: 100%;
  }
}

.form-allowed-tags {
  	display: none;
}

.comment-subscription-form {
  	margin-bottom: 0;
}

.comment-subscription-form label {
  	font-weight: normal;
  	font-size: 14px;
}

.comment-subscription-form {
  	display: inline-block;
  	width: 100%;
  	line-height: 1.4;
}

.comment-subscription-form .subscribe-label {
  	float: right;
  	margin: 0;
}

#respond .comment-form-fields div.comment-form-field {
  	width: 100% !important;
}

.comment-awaiting-moderation {
  	margin-top: 4%;
  	display: inline-block;
  	width: 100%;
  	font-size: 16px;
  	font-style: normal;
}

.comment-awaiting-moderation:before {
  	content: "\f06a";
  	font-family: "FontAwesome";
  	margin-right: 10px;
}

/*--------------------------------------------------------------*/
/*	9.0 MEDIA
/*--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  	border: none;
  	margin-bottom: 0;
  	margin-top: 0;
  	padding: 0;
}

.site-main .gallery {
  	margin:50px 0;
}

.entry-content p img {
    margin-bottom:20px;
}

.gallery a img {
  	border: none;
  	height: auto;
  	width: 100%;
  	max-width: 100%;
}

.gallery dd, .gallery figcaption {
  	font-size: 15px;
  	text-align: left;
  	margin: 0 0 15px 0;
  	line-height: 1.5;
}

.gallery-item {
  	display: inline-block;
  	vertical-align: top;
  	padding-right: 20px;
}

embed, iframe, object {
  	max-width: 100%;
}

#content .wp-playlist-light {
  	color: #55626D;
  	padding: 0;
}

#content .mejs-container, #content .mejs-embed, #content .mejs-embed body {
  	background: none;
}

#content .mejs-container {
  	margin-bottom: 1em;
  	height: 75px !important;
}

#content .mejs-container a {
  	border-bottom: none;
}

#content .mejs-container a:hover {
  	background: transparent;
}

#content .wp-playlist {
  	border: none;
  	background: none;
  	margin: 0 0 1.5em 0;
  	padding: 0;
}

#content .wp-playlist-tracks {
  	margin-top: 3.5%;
}

#content .wp-playlist-item {
  	border-bottom: dotted 1px #CAD1D8;
  	padding: 0;
}
#content .wp-playlist-item:last-child {
  	border-bottom: none;
}

#content .wp-playlist-item .wp-playlist-caption,
#content .wp-playlist-item-length {
  	padding: 2%;
}
@media (max-width: 800px) {
  #content .wp-playlist-item .wp-playlist-caption,
  #content .wp-playlist-item-length {
    padding: 4%;
  }
}

#content .wp-playlist-item .wp-playlist-caption {
  	color: #283037;
  	display: inline-block;
  	border-bottom: none;
}

#content .wp-playlist-item .wp-playlist-caption:hover {
  	background: none;
  	border-bottom: none;
}

#content .wp-playlist-caption, #content .wp-playlist-item-title {
  	font-size: 18px;
}
@media (max-width: 800px) {
  #content .wp-playlist-caption, #content .wp-playlist-item-title {
    font-size: 16px;
  }
}

#content .wp-playlist-current-item {
  	height: auto !important;
}

#content .wp-playlist-current-item .wp-playlist-caption {
  	margin-bottom: 1.5%;
}

#content .wp-playlist-current-item img {
  	display: none;
}

#content .wp-playlist-current-item .wp-playlist-item-title {
  	color: #283037;
  	font-size: 30px;
  	font-weight: 500;
}
@media (max-width: 800px) {
  #content .wp-playlist-current-item .wp-playlist-item-title {
    font-size: 22px;
  }
}

#content .wp-playlist-current-item .wp-playlist-item-album {
  	font-size: 20px;
}
@media (max-width: 800px) {
  #content .wp-playlist-current-item .wp-playlist-item-album {
    font-size: 16px;
  }
}

#sb-site .mejs-controls {
  	background: #424a55;
  	height: 75px;
  	padding: 0 20px;
}
@media (max-width: 800px) {
  #sb-site .mejs-controls {
    padding: 0 10px;
  }
}

#sb-site .mejs-controls .mejs-button button:hover {
  	background-color: transparent !important;
}

#sb-site .mejs-controls .mejs-time {
  	height: 56px;
  	padding-top: 18px;
}

#sb-site .mejs-controls .mejs-time span {
  	line-height: 40px;
}

#sb-site .mejs-controls > div {
  	height: 60px;
}

#sb-site .mejs-controls .mejs-time-rail .mejs-time-loaded {
  	background: #5E7383;
  	height: 14px;
}

#sb-site .mejs-controls .mejs-time-rail .mejs-time-current {
  	background: #e3eaf0;
  	height: 14px;
}

#sb-site .mejs-controls .mejs-time-rail .mejs-time-total {
  	background: #5E7383;
  	height: 14px;
  	margin: 26px 10px;
}

#sb-site .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  	background: #5E7383;
  	height: 14px;
  	top: 29px;
}

#sb-site .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  	background: #e3eaf0;
  	height: 14px;
  	top: 29px;
}

#sb-site .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  	background: #5E7383;
  	height: 14px;
}

#sb-site .mejs-controls .mejs-button button {
  	margin: 29px 5px;
}

#sb-site .mejs-controls .mejs-button button:focus {
  	border: none;
  	box-shadow: none;
  	outline: none;
}

/*--------------------------------------------------------------*/
/*	10.0 HEADER
/*--------------------------------------------------------------*/

/* Header Top */

.header-top-widgets {
    text-align:right;
}

.header-top {
    padding:15px 0;
    background: #1d1d1d;
}

.header-top,
.header-top a,
.header-top .main-navigation li a {
    color:#999;
}

.header-top .main-navigation li a:hover,
.header-top .main-navigation li.current-menu-item a {
    color:#FFF;
}

.header-top .columns {
    padding-top:0px;
    padding-bottom:0px;
}

.header-top .main-navigation {
    text-align:left;
}

.header-top .main-navigation .sub-menu,
.header-top .main-navigation .children {
    padding-top:15px;
}

.header-top .main-navigation li a {
    padding-left:0px;
    padding-right:20px;
}

/* General */

.error404 #intro,
.page-template-template-homepage #intro {
    padding:60px 0 60px 0;
}

@media(max-width:600px) {
    .page-template-template-homepage #intro {
        padding:60px 0 60px 0;
    }
}

#intro {
    max-width: 600px;
    padding: 60px 0 0 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.page-template-template-homepage #intro {
    max-width:700px;
}

#intro *:last-child {
    margin-bottom:0px;
}

#intro p {
    color:#ccc;
    font-size:20px;
}

.down-arrow {
    font-size:30px;
    position:absolute;
    bottom:20px;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    color:#FFF;
    width:50px;
    height:50px;
    text-align:center;
    cursor:pointer;
}

.down-arrow i {
    padding:10px;
    color:#999;
}

.site-header {
    position:relative;
}

#header-background {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    background-color: #EEEEEE;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index:-1;
}

.site-title {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: -1px;
    font-family: 'Merriweather', sans-serif;
    margin:0;
    text-align:center;
    line-height:36px;
}

.style-three .site-title {
    text-align:left;
}

.style-three .site-logo {
    display:block;
    text-align:left;
}

.style-three .cart-toggle {
    padding-left:50px;
}

.style-three .cart-toggle,
.style-three .menu-main-container {
    float:right;
}

.site-title a {
  	color: #000;
  	transition: .1s ease-in;
}

.site-logo {
  	line-height: 1;
  	margin: 0;
  	text-align: center;
  	display: inline-block;
}

.site-logo:empty {
  	margin: 0;
}

.site-logo img {
    max-height:60px;
    width:auto;
}

#logo-area {
    text-align:center;
}

@media(max-width:600px) {
  #logo-area.columns.six {
      width:100%;
      margin:0;
  }
}

/*--------------------------------------------------------------*/
/*	11.0 CONTENT
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------*/
/*  11.1 MODULES
/*--------------------------------------------------------------*/

/* Containers
-------------------------------------------------*/

.page-template-template-homepage article header {
    margin-bottom:50px;
}

.page-template-template-homepage article.banner header {
    margin-bottom:0px;
}

.page-template-template-homepage article header h2 {
    margin-bottom:0px;
}

.page-template-template-homepage article header p {
    margin-top:20px;
}

.page-template-template-homepage article header:empty {
    margin:0;
}

.page-template-template-homepage article .container {
    padding:70px 0;
}

.page-template-template-homepage article.shop-latest-items .container,
.page-template-template-homepage article.shop-sale-items .container,
.page-template-template-homepage article.shop-categories .container,
.page-template-template-homepage article.press .container,
.page-template-template-homepage article.features .container,
.page-template-template-homepage article.testimonials .container,
.page-template-template-homepage article.news .container {
    padding-bottom:60px;
}

.page-template-template-homepage article.empty-header .container {
    padding-top:60px;
}

.page-template-template-homepage article.video-left .container,
.page-template-template-homepage article.video-right .container,
.page-template-template-homepage article.blocked .container,
.page-template-template-homepage article.title-left .container {
    padding:60px 0;
}

.page-template-template-homepage article.banner .container {
    padding:60px 0;
}

/* Full Features
-------------------------------------------------*/

.full-features .row {
    display:flex;
}

.single-full-feature-inner {
    max-width:90%;
    margin:0 auto;
}

.single-full-feature-inner a {
    color: #ccc;
    font-size: 16px;
    text-align: center;
    margin: 10px 15px 0 0;
    transition: .2s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid;
    border-color: #b0976d;
}

.single-full-feature-inner a:hover {
    color: #FFF;
}

.single-full-feature {
    color:#FFF;
    position:relative;
}

.single-full-feature h4 {
    color:#FFF;
    position:relative;
    padding-bottom:15px;
}

.single-full-feature h4:after {
    left:50%;
    margin-left:-22.5px;
    content:"";
    position:absolute;
    bottom:0;
    width:45px;
    height:1px;
    background:#b0976d;
}

.single-full-feature-bg {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-position:center center;
    background-repeat:none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.single-full-feature-bg:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#282828;
    opacity:0.5;
}

.single-full-feature-inner {
    padding:150px 50px;
    position:relative;
    z-index:1;
}

/* Features
-------------------------------------------------*/

.feature-img {
    padding-bottom:30px;
}

.feature-img img {
    max-width:65px;
    height:auto;
}

.single-feature.columns.six {
    padding:0 0 0 0;
}

/* Testimonials
-------------------------------------------------*/

.page-template-template-homepage article header.testimonial-header {
    margin-bottom:0px;
    margin-top:30px;
}

.page-template-template-homepage article header.testimonial-header h3 {
    margin-bottom:0px;
    font-size: 15px;
    font-weight: 400;
}

.page-template-template-homepage article header p.position {
    margin:0;
}

.single-testimonial {
    position:relative;
    width: 50%;
    display:inline-block;
    float:left;
    padding:30px 30px 60px 30px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity:0;
}

@media(max-width:600px) {
  .single-testimonial {
      width: 100%;
      margin-right:0%;
  }
}

.even .testimonial-text {
    background:#F4F4F4;
}

.odd .testimonial-text {
    background:#fff;
}

.single-testimonial.six.columns {
    padding:0;
    margin-top:30px;
    margin-bottom:30px;
}

.single-testimonial:after {
    position: absolute;
    left: 11%;
    bottom: 30px;
    display: block;
    width: 0;
    content: "";
    border-width: 30px 30px 0 0;
    border-style: solid;
    border-color: #f4f4f4 transparent;
}

.even .single-testimonial:after {
    border-color: #f4f4f4 transparent;
}

.odd .single-testimonial:after {
    border-color: #fff transparent;
}

.testimonial-image {
    float:left;
    margin-right:15px;
}

.testimonial-image img {
    width:55px;
    height:55px;
    border-radius: 50%;
}

.testimonial-text {
    padding:50px;
}

.testimonial-name {
    display:inline-block;
}

/* Press
-------------------------------------------------*/

.single-press p {
    margin-top:30px;
    font-style:italic;
}

.single-press img {
    max-width:200px;
    height:auto;
}

/* Members
-------------------------------------------------*/

.members-page .single-member {
    padding-bottom:30px;
    margin-bottom:30px;
    border-bottom:1px solid #EEE;
}

.members-page .single-member .member-text {
    padding:30px 0;
}

.members-page .single-member:last-child {
    padding-bottom:0px;
    margin-bottom:0px;
    border-bottom:none;
}

.members-page .single-member .member-text .member-position {
    font-size:16px;
}

.single-member {
    overflow:hidden;
}

@media(max-width:800px) {
    .single-member {
        width:100%;
        float:none;
    }
}

.single-member .member-text {
    padding:30px 0 0 0;
}

.single-member .member-image {
    overflow: hidden;
    position:relative;
}

.single-member .member-image:before {
    opacity:0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e5e5e5', endColorstr='#282828',GradientType=0 );
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-member .member-image .overlay-text {
    opacity: 0;
    bottom: 30px;
    left: 0px;
    padding: 10px 15px;
    font-size: 18px;
    width:100%;
    border: none;
    z-index:11;
    position: absolute;
    color: #FFF;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-member .member-image .overlay-text a {
    color:#FFF;
}

.single-member .member-image:hover:before,
.single-member .member-image:hover .overlay-text {
    opacity:1;
}

@media(max-width:800px) {
  .single-member .member-image:before,
  .single-member .member-image .overlay-text {
    opacity:1;
  }
}

.single-member .member-image img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-member .member-image:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.members-block {
  overflow:hidden;
}

.single-member .member-text .member-position {
    font-size: 16px;
}

.single-member .member-text .member-info {
    margin-top:10px;
    display:inline-block;
    border-bottom: 2px solid;
    border-color: #b0976d;
}

.single-member .member-image {
  text-align:center;
}

.members-block .single-member:nth-child(3n+3) {
  margin-right:0;
}

.single-member .member-text h6 {
    margin-bottom:5px;
    font-size:22px;
}

.single-member ul.member-social {
  list-style:none;
  margin:0;
}

.single-member ul.member-social li {
  font-size:16px;
  padding:0px 10px 0 0;
  display:inline-block;
}

.single-member ul.member-social li a {
    color: #707070;
    transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
}

.single-member ul.member-social li.facebook a:hover {
    color:#3b5998;
}

.single-member ul.member-social li.linkedin a:hover {
    color:#007bb6;
}

.single-member ul.member-social li.dribbble a:hover {
    color:#ec4a89;
}

.single-member ul.member-social li.twitter a:hover {
    color:#3bcaff;
}

.single-member ul.member-social li.googleplus a:hover {
    color:#d34836;
}

.single-member ul.member-social li.mail a:hover {
    color:#2d2d2d;
}

.member-text .entry-header h2 {
    margin-bottom:15px;
    padding-bottom:20px;
}

/* Features Left & Right
-------------------------------------------------*/

.feature-image {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

@media (max-width:550px) {
    .feature-image {
        height:350px;
        min-height:350px !important;
    }
}

.feature-inner {
    padding: 120px 15%;
    margin: 0 auto;
}

.feature-text {
    position:relative;
    z-index:100;
}

.feature-left .feature-inner {
    padding:120px 15% 120px 0;
}

.feature-right .feature-inner {
    padding:120px 0 120px 15%;
}

@media(max-width:600px) {
  .feature-left .feature-inner {
      padding:0 0 30px 0;
  }

  .feature-right .feature-inner {
      padding:30px 0 0 0;
  }
}

/* Banner
-------------------------------------------------*/

div.parallax-mirror {
    z-index: -1 !important;
}

.banner-background {
    background-position:center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position:relative;
    width:100%;
    height:100%;
    top:0;
    left:0;
    position:absolute;
}

#content article.banner .container {
    padding:70px 0;
}

.banner-inner {
    background-position:center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position:relative;
}

.banner-text {
    position:relative;
    z-index:10;
}

.banner-text header {
    max-width:600px;
}

.banner-text header.centered {
    margin:0 auto;
}

.banner-text h2 {
    color:#FFF;
    margin:0;
    font-size:30px;
    padding:0 !important;
}

.banner-inner a {
    display:inline-block;
    color:#ccc;
    font-size:20px;
    text-align: center;
    margin: 0 15px;
    transition: .2s ease;
    padding-bottom:0px;
    border-bottom:2px solid;
    border-color:#b0976d;
}

.banner-inner a:hover {
    color:#FFF;
}

.banner-inner:before {
    content:"";
    background:#282828;
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    display:block;
    z-index:0;
    opacity:0.35;
}

.shop-banner img {
    width: 100%;
    max-width: none;
}

/*--------------------------------------------------------------*/
/*  11.2 GENERAL
/*--------------------------------------------------------------*/

.error404 #navigation {
    background:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;
}

#error404-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index:-1;
}

.error404 .vertical-center {
    text-align:center;
}

.error404 #sb-site {
    background-color: #141719;
}

.error404 .nav-icon span {
    background: #FFF;
}

.error404 .icon-style .cart-number-count {
    border-color:#FFF;
    color:#FFF;
}

.error404 .entry-title {
    font-size:35px;
}

.error404 .entry-paragraph {
    font-size:18px;
}

.error404 .search-toggle,
.error404 .cart-number-count,
.error404 #logo-area .site-title,
.error404 #logo-area .site-title a,
.error404 .entry-title {
    color: #FFF;
}

.error404 .cart-number-count {
    border-color: #FFF;
}

.vertical-center {
    padding:250px 0;
    position: absolute;
    display: inline-block;
    top: 50%;
    width:100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.error404 {

}

.entry-header {
    margin-bottom:30px;
}

.entry-header:empty,
.entry-header.container:empty {
    padding-top:0 !important;
    padding-bottom:0 !important;
}

.entry-header h2 {
    position:relative;
    margin-bottom:0px;
}

.page-template-template-homepage #content h2 {
    font-size:30px;
    padding-bottom:30px;
}

.centered.entry-header h2:after {
    left:50%;
    margin-left:-22.5px;
}

.entry-header h2:after {
    left:0;
    content:"";
    position:absolute;
    bottom:0;
    width:45px;
    height:1px;
    background:#b0976d;
}

.entry-header p {
    margin-top:30px;
}

.page-template-template-product-categories .container.padded {
    padding:70px 0;
}

.date .container.padded,
.author .container.padded,
.blog .container.padded,
.category #primary.container.padded,
.tag #primary.container.padded {
    padding:70px 0 70px 0;
}

.container.padded,
.container-small.padded {
    padding:40px 0px;
}

.container.padded {
    padding:50px 0;
}

.post-type-archive-product .product-container.container.padded {
    padding:30px 0 30px 0;
}

.page-template-template-team .container.padded {
    padding:30px 0 30px 0;
}

.container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-small {
    position: relative;
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
}

.page-container {
    max-width:960px;
    margin:0 auto;
}

@media(max-width:800px) {
  .container,
  .container-small {
      width:90%;
  }
}

.column,
.columns {
    width: 100%;
    float: left;
    padding:30px 0;
    box-sizing: border-box;
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .column,
  .columns {
    margin-left: 7%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.columns {
      width: 3.08333333333%;
  }

  .two.columns {
      width: 10.8333333333%;
  }

  .three.columns {
      width: 19.75%;
  }

  .four.columns {
      width: 28.6666666667%;
  }

  .five.columns {
      width: 38.5%;
  }

  .six.columns {
      width: 46.5%;
  }

  .seven.columns {
      width: 54.5%;
  }

  .eight.columns {
      width: 64.3333333333%;
  }

  .nine.columns {
      width: 73.25%;
  }

  .ten.columns {
      width: 82.1666666666%;
  }

  .eleven.columns {
      width: 89.917%;
  }

  .twelve.columns {
      width: 100%;
      margin-left: 0;
  }

  .full-half {
      width: 50%;
  }

}

.full-half {
    margin:0 !important;
    padding:0 !important;
}

#content p, .embed-vimeo {
    margin-bottom: 30px;
}

#content p:last-child {
    margin-bottom:0px;
}

/*--------------------------------------------------------------*/
/*	12.0 POSTS
/*--------------------------------------------------------------*/

.featured-area .gallery-div {
    height:450px;
    float:left;
    background-size:cover;
    background-position: center center;
}

.featured-area .gallery-div:nth-child(1),
.featured-area .gallery-div:nth-child(4),
.featured-area .gallery-div:nth-child(5),
.featured-area .gallery-div:nth-child(8),
.featured-area .gallery-div:nth-child(9),
.featured-area .gallery-div:nth-child(12),
.featured-area .gallery-div:nth-child(13),
.featured-area .gallery-div:nth-child(16),
.featured-area .gallery-div:nth-child(17) {
    width: 60%;
}

.featured-area .gallery-div:nth-child(2),
.featured-area .gallery-div:nth-child(3),
.featured-area .gallery-div:nth-child(6),
.featured-area .gallery-div:nth-child(7),
.featured-area .gallery-div:nth-child(10),
.featured-area .gallery-div:nth-child(11),
.featured-area .gallery-div:nth-child(14),
.featured-area .gallery-div:nth-child(15),
.featured-area .gallery-div:nth-child(18) {
    width: 40%;
}

.featured-area .gallery-div:last-child:nth-child(odd) {
    width:100%;
}

@media (max-width: 600px) {
  .featured-area .gallery-div {
      width:100% !important;
      height:300px;
  }
}

.fluid-width-video-wrapper {
    margin:20px 0;
}

.featured-area {
    margin-bottom:50px;
}

.byline {
    margin-bottom:15px;
}

.byline a {
    color:#707070;
}

.entry-footer {
    text-align:center;
    margin-top:70px;
}

.entry-footer .tags-links {
    margin-bottom:30px;
}

.entry-footer .tags-links a:before {
    content:"#";
}

.entry-footer .tags-links a {
    padding:0 10px 0 0;
}

.entry-footer img {
    border-radius:50%;
    margin:0 auto;
    width:60px;
    height:60px;
}

.post {
  	width: 100%;
  	display: inline-block;
  	position: relative;
}

.search-post {
    margin-bottom:60px;
    padding-bottom:60px;
    border-bottom:1px solid;
    border-color:#EEE;
}

.blog-post-image {
    overflow:hidden;
    margin-bottom:30px;
    position:relative;
    height:300px;
}

.blog-post-image .background-image {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    transition: all 0.7s ease;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.blog-post-image:hover .background-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.blog-wrapper {
    margin-right:-30px;
    margin-left:-30px;
}

@media(max-width:600px) {
    .blog-wrapper {
        margin-right:0;
        margin-left:0;
    }
}

.blog-item .date,
.single-post .date {
    display:block;
    font-family: "Merriweather", Helvetica, sans-serif;
    font-weight: 300;
    font-size:24px;
}

.blog-item .date {
    font-size:20px;
}

header.blog-item-header {
    margin-bottom:30px;
}

header.blog-item-header h2 {
    margin-bottom:0;
    display:inline-block;
}

#intro .byline-category a {
    border:none;
    margin:0;
}

p.readmore {
    margin-top:30px;
}

.blog-item .entry-header {
    padding: 00;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 90%;
}

.blog-item .entry-header h2 {
    margin:0;
}

.entry-meta {
    margin: 0 0 15px 0;
    font-weight: 500;
}

.entry-meta a {
    color:#707070;
}

.blog-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 70px 2%;
}

.blog-item {
    padding:30px;
    width:33.33333%;
    float:left;
    display:block;
    opacity: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media(max-width:600px) {
  .blog-item {
    width:100%;
  }
}

/*--------------------------------------------------------------*/
/*	13.0 FOOTER
/*--------------------------------------------------------------*/

.footer-widgets .widget-area {
    padding:0;
}

.socials {
    margin:0;
    list-style:none;
}

.socials li {
    display:inline-block;
    padding:0 5px;
}

.socials li a {
    font-size:0px;
}

.socials li a:before {
    font-size:16px;
    font-family: "ti";
}

.socials li a.dribbble:before {
    content:"\e743";
}

.socials li a.dropbox:before {
    content:"\e742";
}

.socials li a.email:before {
    content:"\e75a";
}

.socials li a.facebook:before {
    content:"\e741";
}

.socials li a.github:before {
    content:"\e73f";
}

.socials li a.google:before {
    content:"\e73e";
}

.socials li a.instagram:before {
    content:"\e73d";
}

.socials li a.linkedin:before {
    content:"\e735";
}

.socials li a.pinterest:before {
    content:"\e731";
}

.socials li a.reddit:before {
    content:"\e752";
}

.socials li a.rss:before {
    content:"\e75f";
}

.socials li a.skype:before {
    content:"\e72d";
}

.socials li a.tumblr:before {
    content:"\e74c";
}

.socials li a.twitter:before {
    content:"\e74b";
}

.socials li a.mail:before {
    content:"\e75a";
}

.socials li a.vimeo:before {
    content:"\e74a";
}

.socials li a.youtube:before {
    content:"\e728";
}

.screeyn-social-sharing a.share {
    font-size:0px;
    padding-right:15px;
}

.screeyn-social-sharing a.share:before {
    font-family:'ti';
    font-size:16px;
    color:#707070;
}

.screeyn-social-sharing a.share-facebook:before {
    content:"\e741";
}

.screeyn-social-sharing a.share-google:before {
    content:"\e73e";
}

.screeyn-social-sharing a.share-pinterest:before {
    content:"\e731";
}

.screeyn-social-sharing a.share-twitter:before {
    content:"\e74b";
}

.site-footer {
  	padding: 60px 0;
  	background:#141719;
}

.site-footer .site-info {
    text-align:center;
}

.site-footer .socials {
    margin-bottom:20px;
    text-align:center;
}

.footer-style-two.site-footer .socials {
    text-align:right;
}

.footer-style-two.site-footer .socials li {
    padding:0 0 0 10px;
}

.footer-style-three.site-footer .socials {
    text-align:right;
    margin-bottom:0px;
}

.footer-style-three.site-footer .socials li {
    padding:0 0 0 10px;
}

@media(max-width:600px) {
  .footer-style-two.site-footer .socials,
  .footer-style-three.site-footer .socials  {
      text-align:left;
  }

  .footer-style-two.site-footer .socials li,
  .footer-style-three.site-footer .socials li {
      padding:0 10px 0 0;
  }
}

.footer-style-two.site-footer,
.footer-style-three.site-footer {
    padding:50px 0;
}

.footer-style-two .main-navigation,
.footer-style-three .main-navigation {
    text-align:left;
}

.site-footer, .site-footer a {
    color:#999;
}

.site-footer .site-info,
.site-footer .site-info a {
    color: #999;
}

.site-footer span.copyright-year:before {
	content:"\A9";
}

#footer-menu {
    list-style:none;
}

#footer-menu li a {
    display:inline-block;
    padding:0 10px;
    color:#999;
}

.footer-style-two #footer-menu li a,
.footer-style-three #footer-menu li a {
    padding: 0 10px 0 0;
}

@media (max-width:600px) {
    #footer-menu li {
        display:block;
        padding:5px;
    }
}

/*--------------------------------------------------------------*/
/*	14.0 SPECIFIC
/*--------------------------------------------------------------*/

/* FAQ page template */

.item-category:first-child .faq-cat-title {
    margin-top:0;
}

.faq-cat-title {
    margin-top:30px;
}

.faq-toggle {
    cursor:pointer;
}

.faq-item {
    padding:30px 0;
}

span.faq-toggle-title {
    width:90%;
    display:inline-block;
}

span.toggle-icon {
    width:10%;
    display:inline-block;
    text-align:right;
}

html.search-open {
    overflow:hidden;
}

.search-overlay {
    position:fixed;
    top:0px;
    bottom:0px;
    height:100%;
    width:100%;
    left:0px;
    right:0px;
    z-index:99999;
    background-color:#141719;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.search-overlay.open {
    visibility: visible;
    opacity: 0.97;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
}

.search-overlay .search-close {
    background:transparent;
    border:none;
    font-size:20px;
    cursor:pointer;
    padding-bottom:30px;
    color:#999;
}

.search-overlay .search-form-wrapper {
    margin:0px auto;
    max-width:900px;
    position:relative;
    width:80%;
    color:#666;
    text-align:center;
}

.search-overlay form input[type='submit'] {
    display:none;
}

.search-form-box {
    width:100%;
    height:100%;
    position:relative;
}

.search-form-box-inner {
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
}

.search-overlay form input {
    text-align:center;
    background:none;
    border:none !important;
    font-size:40px;
    font-weight:300;
    height:100px;
    padding:0;
    margin:0;
    width:100% !important;
    color:#999;
}

@media(max-width:600px) {
  .search-overlay form input {
    font-size:25px;
  }
}

.search-overlay form input::-webkit-input-placeholder {
    color:#999;
}

.search-overlay form input:-moz-placeholder {
    color:#999;
}

.search-overlay form input::-moz-placeholder {
    color:#999;
}

.search-overlay form input:-ms-input-placeholder {
    color:#999;
}

.info-box-inner .close:before {
    content:"\e646";
    line-height:40px;
    font-family:'ti';
    font-size:18px;
    color:#FFF;
}

.info-box-inner .close {
    font-size:0px;
    cursor:pointer;
    background:#bb946b;
    position:absolute;
    width:40px;
    height:40px;
    top:0;
    right:0;
    text-align:center;
}

.info-box-inner h3 {
    margin-bottom:15px;
}

.info-box-inner {
    color:#777777;
    position: absolute;
    width:90%;
    background:#FFF;
    padding:50px;
    max-width:500px;
    margin:0 auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.info-box-overlay:before {
    content:"";
    background:#141719;
    opacity:0.97;
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    left:0;
    width:100%;
    height:100%;
}

.info-box-overlay.hide {
    display:none;
    visibility:hidden;
    z-index:-1;
    opacity:0;
}

.hide {
    display:none;
}

.info-box-overlay {
    position:fixed;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    z-index:100;
    visibility: visible;
    opacity:1;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
}

.nopreload .fadeIn, .nopreload .pulse, .nopreload .tada, .nopreload .bounce, .nopreload .flipInX, .nopreload .flipInY, .nopreload .fadeInLeft, .nopreload .fadeInRight, .nopreload .fadeInUp, .nopreload .fadeInDown, .nopreload .bounceInLeft, .nopreload .bounceInRight, .nopreload .bounceInUp, .nopreload .bounceInDown, .nopreload .fadeIn, .nopreload .fadeInSlower {
    opacity:0;
    -webkit-animation-name: none;
    animation-name: none;
}

.absoluted {
    position:absolute;
    top:0;
}

#site-wrapper {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

#site-wrapper.nopreload {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity:0;
}

#site-wrapper.loaded {
    opacity: 1;
    -webkit-font-smoothing: antialiased;
}

#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    z-index:99999;
    background:#b0976d;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

.nopreload .fadeIn, .nopreload .pulse, .nopreload .tada, .nopreload .bounce, .nopreload .flipInX, .nopreload .flipInY, .nopreload .fadeInLeft, .nopreload .fadeInRight, .nopreload .fadeInUp, .nopreload .fadeInDown, .nopreload .bounceInLeft, .nopreload .bounceInRight, .nopreload .bounceInUp, .nopreload .bounceInDown, .nopreload .fadeIn, .nopreload .fadeInSlower {
    opacity:0;
    -webkit-animation-name: none;
    animation-name: none;
}

#loader .loader {
    margin: 30px auto;
    font-size: 2px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #999;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loadingCircle 1.1s infinite linear;
    animation: loadingCircle 1.1s infinite linear;
}

#loader .loader,
#loader .loader:after {
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

@-webkit-keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #08090a;
  z-index: 9999;
}

#loading-status {
  width:100px;
  height:100px;
  position:absolute;
  left:50%;
  top:50%;
  background-repeat:no-repeat;
  background-position:center;
  margin:-50px 0 0 -50px;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-24%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    visibility: visible;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 6%, 0);
    transform: translate3d(0, 6%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 6%, 0);
    transform: translate3d(0, 6%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-faster {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes smoothFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes smoothFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*--------------------------------------------------------------*/
/*	15.0 PLUGIN SPECIFIC
/*--------------------------------------------------------------*/

/* WPML */

.header-top #lang_sel_list li {
    float:none;
}

.header-top #lang_sel_list ul a {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 34px;
}

.header-top #lang_sel_list ul {
    border-top:0px;
}

.header-top #lang_sel_list a.lang_sel_sel,
.header-top #lang_sel_list a.lang_sel_sel:visited {
    color:#999;
    background:none;
}

.header-top #lang_sel_list a.lang_sel_sel:hover,
.header-top #lang_sel_list a.lang_sel_sel.selected {
    color:#FFF;
    background:none;
}

/* Contact Form 7 */

.wpcf7-form input[type='text'], .wpcf7-form input[type='email'] {
    margin-bottom: 0px;
    width: 100%;
    max-width: 100%;
}

.wpcf7-form p:last-of-type {
    margin-bottom:0 !important;
}

.wpcf7-form {
	text-align: left;
}

.wpcf7-form input[type="text"] {
	margin-top: 10px;
}

.wpcf7-not-valid-tip {
	background: none!important;
	border: none!important;
	color: #FF4633;
	position: relative!important;
}

div.wpcf7-mail-sent-ok {
	background: #3FC380;
	border: 2px solid #3FC380!important;
	border-radius: 2px;
	color: #FFF;
}

div.wpcf7-spam-blocked,
div.wpcf7-mail-sent-ng,
div.wpcf7-validation-errors {
	background: #FF4949;
	border: 2px solid #FF4949!important;
	border-radius: 2px;
	color: #FFF;
}

div.wpcf7-response-output {
	line-height: 26px;
	margin: 30px 0 0 0!important;
	padding: 0.6em 1em!important;
	text-align: center;
}

.wpcf7-form p {
	color: #252525;
	margin-bottom: 15px;
}

.wpcf7-form span {
	color: #FF4949;
	font-size: 16px;
	font-weight: normal;
	margin-top: 10px;
}

.wpcf7-submit {
	padding: 8px 15px;
}

div.wpcf7 img.ajax-loader {
	display: inline;
}

#lightcase-overlay {
    background:#141719 !important;
    opacity:0.97 !important;
}

.lightcase-icon-prev:before,
.lightcase-icon-close:before,
.lightcase-icon-next:before {
    font-family:'ti' !important;
}

.lightcase-icon-prev:before {
    content:"\e64a" !important;
}

.lightcase-icon-next:before {
    content:"\e649" !important;
}

.lightcase-icon-close:before {
    font-size: 22px;
    content:"\e646" !important;
}

#lightcase-nav a[class*='lightcase-icon-'] {
    font-size:25px !important;
}

#lightcase-nav a[class*='lightcase-icon-']:hover {
    text-shadow: none !important;
}

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
    display:none !important;
}

#lightcase-info #lightcase-sequenceInfo {
    font-size:14px !important;
}

#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-pause,
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-play {
    display:none !important;
}

#lightcase-case:not([data-lc-type=error]) #lightcase-content {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-prev,
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-next,
#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-close,
#lightcase-info #lightcase-sequenceInfo {
    color:#999 !important;
}

#lightcase-case[data-lc-type=image] #lightcase-content,
#lightcase-case[data-lc-type=video] #lightcase-content {
    background: none !important;
}

#lightcase-loading,
#lightcase-loading:focus {
    display: none !important;
}

#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-close {
    top:30px !important;
    right:30px !important;
}

#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-next {
    right:30px !important;
}

#lightcase-nav a[class*='lightcase-icon-'].lightcase-icon-prev {
    left:30px !important;
}

/* Slick Slider */

.featured-carousel .featured-caption {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    right: 0;
    left: 0;
    z-index: 10;
    margin:0 auto;
    width: 90%;
    max-width: 1200px;
    text-align: left;
}

.featured-carousel .featured-caption.right-align {
    text-align:right;
}

.featured-carousel .featured-caption.center-align {
    text-align:center;
}

.featured-carousel .featured-caption a {
    display: inline-block;
    color: #ccc;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 5px;
    text-align: center;
    margin: 20px 0 0 0;
    transition: .2s ease;
    border-bottom: 1px solid;
    border-color: #b0976d;
}

.featured-carousel .featured-caption-inner {
    position:relative;
    max-width: 500px;
    display: inline-block;
    font-size: 18px;
}

.featured-carousel .featured-caption-inner.hidden {
    opacity:0;
}

.featured-carousel .featured-caption h2 {
    margin-bottom:15px;
    font-size:28px;
}

.featured-carousel .featured-caption.light h2 {
    color:#282828;
}

.featured-carousel .featured-caption.light a,
.featured-carousel .featured-caption.light p {
    color:#707070;
}

.featured-carousel .featured-caption.dark a,
.featured-carousel .featured-caption.dark p {
    color:#ccc;
}

.featured-carousel .featured-caption.dark h2 {
    color:#FFF;
}

@media(max-width:600px) {
  .featured-carousel .featured-caption {
      position:relative;
      bottom: 0;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      text-align:left !important;
      padding:50px 0;
  }
}

/* Nano scroller */

.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.nano > .nano-content:focus {
  outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  background : rgba(0,0,0,.25);
  position   : absolute;
  width      : 10px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity    : .01;
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;
  border-radius         : 5px;
}
.nano > .nano-pane > .nano-slider {
  background: #444;
  background: rgba(0,0,0,.5);
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;
  border-radius         : 3px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}

.slick-slider { position: relative; display: block; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; }
.slick-list:focus { outline: none; }
.slick-loading .slick-list {}
.slick-list.dragging { cursor: pointer; cursor: hand; }
.slick-slider .slick-track { -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; left: 0; top: 0; display: block; }
.slick-track:before, .slick-track:after { content: ""; display: table; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide { float: left; height: 100%; min-height: 1px; display: none; position:relative; }
[dir="rtl"] .slick-slide { float: right; }
.slick-slide img { display: block; position:relative;}
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide {margin:0; display: block; }
.testimonial-slider .slick-initialized .slick-slide {margin:0px 0px;}
.slick-initialized .slick-center { opacity: 1; transition: all 300ms ease; }
.slick-initialized .slick-center { transition: all 300ms ease; }
.slick-initialized .slick-center img { opacity:1.0; }
.testimonial-slider  .slick-initialized .slick-center img { opacity:1.0; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }
.slick-prev, .slick-next { z-index:99; position: absolute; display: block; line-height: 0; font-size: 0; cursor: pointer;bottom:0; background: #1d1d1d; color: transparent; padding: 0; border: none; outline: none; margin:0;}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus { outline: none; color: transparent; }
.slick-prev:hover:before, .slick-next:hover:before { color:#FFF; opacity: 1; }
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before { opacity: 1; }
.slick-prev:before, .slick-next:before { width:56px; padding:20px; display:block;font-family: "ti"; font-size: 15px; line-height: 1; color: #FFF; opacity: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transition: opacity 0.5s ease-in-out; -moz-transition: opacity 0.5s ease-in-out; transition: opacity 0.5s ease-in-out;}
.slick-prev { right: 56px; text-align:center; }
[dir="rtl"] .slick-prev { left: auto; }
.slick-prev:before { transition: .1s ease-in; content:"\e629"; }
[dir="rtl"] .slick-prev:before { content:"\e629"; }
.slick-next { right: 0px; text-align:center; }
[dir="rtl"] .slick-next { left: -25px; right: auto; }
.slick-next:before { transition: .1s ease-in; content: "\e628"; }
[dir="rtl"] .slick-next:before { content: "\e628"; }
.slick-initialized .slick-slide:hover img { opacity:1.0; }
.slick-dots li {
  display: inline-block;
  position:relative;
  width: 8px;
  height: 8px;
  cursor:pointer;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background:none;
  border: solid 2px #d2d8d9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slick-dots li:hover, .slick-dots li.slick-active {
  filter: Alpha(Opacity=100);
  opacity: 1;
  border:none;
  background:#b0976d;
  border: solid 2px #b0976d;
}
.slick-dots { margin:30px 0 0 0; position: relative; list-style: none; display: block; text-align: center; padding: 0; width: 100%; }
.slick-dots li button { border: 0; background: transparent; display: block; height: 8px; width: 8px; outline: none; line-height: 0; font-size: 0; color: transparent; padding: 5px; cursor: pointer; }
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before { position: absolute; top: 0; left: 0; content: ""; width: 20px; height: 20px; font-family: "slick"; font-size: 6px; line-height: 20px; text-align: center; color: black; opacity: 0.25; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.variation dt, .variation dd {
    display: inline-block;
}

dd {
    margin-left: 0;
}

dt {
    margin-right: 1.5em;
}

@media (max-width: 870px) {
    .variation {
        text-align: left;
    }
}

table td, table th {
    padding-bottom: 0;
}
