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

  Theme Name: Resteau
  Theme URI: http://themes.playnethemes.com/resteau
  Author: Playne Themes
  Author URI: http://playnethemes.com
  Description: A gorgeous, minimalistic restaurant WordPress theme built to emphasize your business. Packed with great functionalities such as full support for the Restaurant Reservations plugin.
  Version: 1.0
  Text Domain: resteau
  License: GNU General Public License
  License URI: license/GPL.txt
  Tags: one-column, two-columns, grid-layout, custom-header, editor-style, custom-menu, custom-colors, featured-image-header, featured-images, sticky-post, theme-options, translation-ready, food-and-drink

/*--------------------------------------------------------------*/
/*	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
  5.6 - Sticky Navigation
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 - Animations
15.0 - Plugin 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, button, input, select, textarea {
    color: #6c7479;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
  	clear: both;
  	font-family: "Lora", serif;
  	font-weight: 400;
  	line-height: 1.5;
  	margin-bottom: 30px;
    word-break: break-word;
}

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

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

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

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

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

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: #283037;
  	font-family: "Lora", "Georgia", serif;
  	font-size: 24px;
  	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;
  	line-height: 1.6;
  	margin-bottom: 40px;
  	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;
}

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
/*--------------------------------------------------------------*/

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

.accent {
    color:#b0976d;
}

.padded {
    padding: 20px;
}

.odd {
    background: #f9fafb;
}

.odd.has-featured-image {
    background: #141719;
}

.dark {
    background: #141719;
    color:#999;
}

.dark h1, 
.dark h2, 
.dark h3, 
.dark h4, 
.dark h5, 
.dark h6, 
.dark h1 a, 
.dark h2 a, 
.dark h3 a, 
.dark h4 a, 
.dark h5 a, 
.dark h6 a {
    color:#FFF;
}

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

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

@media (max-width:600px) {
  .float-left,
  .float-right {
    float:none !important;
  }
  .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;
}

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

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

.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.alignleft {
    margin: .5em 2em .5em 0;
}

.wp-caption.alignright {
    margin: .5em 0 1.5em 2em;
}

.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%;
  	text-transform: none;
  	font-size: 17px;
  	font-weight: 400;
  	letter-spacing: 0;
  	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: "Lora", 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: dotted 1px #c7d6e4;
  	height: 1px;
  	margin: 1.6em 0;
}

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: 18px;
  	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: #f0f0f0;
}
table thead th {
  	font-weight: bold;
}

table td, #content table th {
  	padding: 10px;
}

table td {
  	border-bottom: solid 1px #f0f0f0;
}

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

table tr:nth-child(even) {
  	background: #f0f0f0;
}

@media(min-width:601px) {
  .flex_center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
}

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

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: #131414;
	border: none;
	border-radius: 0px;
 	color: #fff;
	font-family: "Lora", sans-serif;
	font-size: 17px;
	font-weight: 400;
	padding: 15px 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[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="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select,
#secondary #subscribe-email input[type="email"] {
  	color: #6c7479;
  	background: #fff;
  	-moz-box-sizing: border-box;
    box-sizing: border-box;
  	-webkit-appearance: none;
  	padding: 12px 15px;
  	border: solid 1px #EEE;
  	border-radius: 0px;
  	transition: .1s ease;
    font-size:17px;
}

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

select {
  	background: #fff 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: #6c7479;
}

:-moz-placeholder {
  	color: #6c7479;
}

::-moz-placeholder {
  	color: #6c7479;
}

:-ms-input-placeholder {
  	color: #6c7479;
}

/*--------------------------------------------------------------*/
/*	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
/*--------------------------------------------------------------*/

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

#navigation {
    position:relative;
    padding-top:50px;
}

.menu-cta {
    border-bottom: 2px solid;
    border-color: #b0976d;
    margin-left: 20px;
}

.header-menu .main-navigation li a {
    color:#FFF;
    line-height:1;
    display:inline-block;
    position:relative;
    font-family:'Lora', serif;
    font-size:22px;
    padding-bottom:8px;
    border-bottom:2px solid;
    border-color:#b0976d;
}

.main-navigation {
  	font-size: 18px;
  	font-weight: 400;
  	display: inline-block;
  	width: 100%;
}

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

.edge.sub-menu,
.edge.children {
    right:0;
    left:auto;
}

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

.main-navigation li {
  	display: inline-block;
  	position: relative;
    margin-right:20px;
}

.main-navigation li a {
  	display: inline-block;
  	color: #999;
  	transition: .1s ease-in-out;
}

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

.site-footer .main-navigation .menu-item-has-children > a:after,
.header-menu .main-navigation .menu-item-has-children > a:after {
    content:'';
    margin-left:0px;
    font-size:0px;
}

.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;
  	float: right;
}

.main-navigation .sub-menu,
.main-navigation .children {
    padding-top:20px;
  	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:#131414;
}

.main-navigation .sub-menu:before,
.main-navigation .children:before {
  	width: 0;
  	height: 0;
  	border-left: 5px solid transparent;
  	border-right: 5px solid transparent;
  	border-bottom: 5px solid #283037;
  	position: absolute;
  	top: -5px;
  	left: 20px;
  	content: " ";
  	display: none;
}

@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;
  	width: 100%;
}

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

.main-navigation li ul a:hover,
.main-navigation li ul li a:hover {
  	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 {
    margin-top:100px;
  	display: block;
  	width: 100%;
  	position: relative;
  	text-align: center;
}

.post-navigation,
.post-navigation a,
.post-navigation .previous-post,
.post-navigation .next-post {
    color: #22222a;
}

.post-navigation .previous-post,
.post-navigation .next-post {
    display:inline-block;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size:22px;
}

.post-navigation .previous-post.disabled,
.post-navigation .next-post.disabled {
    cursor:default;
    opacity:0.5;
}

.post-navigation .next-post:before {
    content:'/';
    display:inline-block;
    color: #22222a;
    opacity:1;
}

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

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

.pagination .page-numbers {
    padding:10px;
    background:#F5F6F7;
    -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 {
    background:#b0976d;
    color:#FFF;
}


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

.nav-area .nav-widget .menu li {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    color: #FFF;
    padding: 0 0 20px 0;
}

.widget-area ul.socials {
    margin-top:50px;
}

.widget-area ul.socials li {
    padding-left:0;
    padding-right:20px;
}

.widget-area ul.socials li a {
    color:#b0976d;
}

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

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

.nav-area aside.four.columns,
.nav-area aside {
    width:100%;
    padding:0px 0 0 0;
    margin:0;
}

.nav-area aside:first-child {
    padding-top:0px;
    margin-bottom:100px;
}

.nav-area aside:last-child {
    margin:0 0 0 0;
}

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

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

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

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

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

#sb-site { background:#FFF; }

#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:#131414}.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: 500px;
    height: 100%;
    background-color: #141719;
    color: #999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
}

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

.header-menu .nav-icon-wrapper {
    position:relative;
    background:none;
    padding:0;
}

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

.nav-icon-wrapper {
    position:fixed;
    top:0px;
    right:0px;
    z-index:99;
    -webkit-backface-visibility: hidden;
}

.nav-icon {
    z-index:30;
    position:relative;
    float:right;
    width: 35px;
    height: 24px;
    -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;
    overflow:hidden;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #22222a;
    opacity: 1;
    right: 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: 11px;
    -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: 22px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

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

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

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

/*--------------------------------------------------------------*/
/*  5.6 STICKY NAVIGATION
/*--------------------------------------------------------------*/

#sticky-nav.show {
    right: 50px;
}

#sticky-nav {
    top:50px;
    right:-400px;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sticky-nav .container {
    z-index:20;
}

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

#sticky-nav.nav-icon-wrapper {
    background: #b0976d;
    padding: 15px 10px;
}

@media(max-width:600px) {
  #sticky-nav.show {
      right: 0px;
  }

  #sticky-nav {
      top:0px;
      right:0 !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
/*--------------------------------------------------------------*/

#secondary {
    display: inline-block;
    width: 23%;
    margin-bottom: 90px;
    vertical-align: top;
    position: relative;
    -webkit-backface-visibility: hidden;
}

#secondary aside {
    padding:30px;
    background: #f9fafb;
}

#secondary aside ul {
    margin:0;
    list-style:none;
}

#secondary aside ul li {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid;
    border-color: #EEE;
}

#secondary aside a {
    color:#999;
}

#secondary aside ul li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.sidebar-main {
    display: inline-block;
    width: 72%;
    float:right;
}

@media(max-width:600px) {
    #secondary,
    .sidebar-main {
      width:100%;
      float: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: #999;
    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;
}

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

.widget-area a {
    color: #b0976d;
}

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

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

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

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

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

.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: 4% 0 0 20px;
}

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

.site-footer .widget-area aside li {
    display:inline-block;
    padding:0 10px;
}

.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: #fff;
  	border-right: none;
  	border-bottom: none;
  	color: #283037;
  	box-shadow: none;
}

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

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

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

#wp-calendar tr th {
  	background: #283037;
  	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: solid 1px #f3f3f3;
  	border-top: solid 1px #f3f3f3;
}

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

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

#wp-calendar a:hover {
  	color: #66727D;
}

.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
/*--------------------------------------------------------------*/

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

#comments {
    padding:50px;
    margin-top:100px;
}

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

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

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

.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: 15px;
}

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

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

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

.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: 40px;
    background:none;
  	padding-bottom: 40px;
}

.comment-list .children {
  margin: 100px 0 0 10%;
}

.comment-list .children li {
  	margin-bottom: 50px;
  	padding-bottom: 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: middle;
  	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: 20px;
  }
}

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

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

.comment-reply-title {
  	display: block;
    margin-bottom:10px;
}

#content p.logged-in-as {
    margin-bottom:50px;
}

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

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

.comment-reply-title small a {
  	font-size: 13px;
}

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

.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 {
    color: #6c7479;
  	display: inline-block;
  	float: left;
  	margin-bottom: 10px;
  	font-size: 18px;
}

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

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

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

.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-bottom: 1.5em;
}

.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-area {
    position:relative;
}

.header-area-inner.container .site-title {
    text-align:center;
    font-size:80px;
}

.header-area-inner.container .site-logo {
    max-width:300px;
}

.page-template-template-homepage .header-area-inner.container {
    margin-top:190px;
    margin-bottom:220px;  
}

.header-area-inner.container {
    margin-top:70px;
    margin-bottom:100px;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.page-template-template-homepage .header-area-inner.container .site-title {
    font-size:200px;
}

.page-template-template-homepage .header-area-inner.container .site-logo {
    max-width:600px;
}

@media(max-width:600px) {
  .page-template-template-homepage .header-area-inner.container .site-title {
      font-size:100px;
  }
}

/* General */

#intro {
    width:100%;
    padding:50px 0 0 0;
    max-width:600px;
    position:relative;
    z-index:10;
    margin:0 auto;
    color:#999;
}

#intro h1, 
#intro h2, 
#intro h3, 
#intro h4, 
#intro h5, 
#intro h6 {
    color:#FFF;
    font-size:38px;
    margin:0;
    padding:0;
    font-weight:300;
}

@media(max-width:600px) {
  #intro h1, 
  #intro h2, 
  #intro h3, 
  #intro h4, 
  #intro h5, 
  #intro h6 {
      font-size:28px;
  }
}

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

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

#intro a {
    color:#999;
    display:inline-block;
    margin: 0;
    transition: .2s ease;
}

.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;
    overflow:hidden;
    z-index:0;
    background-color: #141719;
}

.site-header .header-container {
    height:100%;
    display: flex;
    align-items: center;
}

#header-background {
    overflow:hidden;
    position:absolute;
    top:0;
    right:0;
    bottom: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;
    opacity:0.5;
}

.site-title {
    font-size: 50px;
    margin: 0;
    text-align:left;
    padding:0;
    line-height: 1.2;
    display: inline-block;
    width: 100%;
    font-weight:400;
    font-family: "Hitch Hike", serif;
}

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

.site-logo {
  	line-height: 1;
  	margin: 0 auto;
    max-width:600px;
    height:auto;
  	text-align: center;
  	display: inline-block;
}

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

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

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

.no-results {
    text-align:center;
}

/* Blog items
-------------------------------------------------*/

#content .blog-item-inner .entry-header p {
    margin-bottom:20px;
}

.blog-item-inner {
    overflow:hidden;
    background:#f9fafb;
}

.odd .blog-item-inner {
    background:#FFF;
}

.blog-item-image {
    overflow:hidden;
}

.blog-item-inner .entry-header {
    margin:0;
    padding:30px;
}

.blog-item-inner img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-item-inner:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.blog-item-inner a.more-info {
    padding-top:20px;
    display:block;
    color:#6c7479;
}

.blog-item-inner a.more-info:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 30px;
    vertical-align: middle;
    margin-left: 10px;
    height: 1px;
    background: #b0976d;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.blog-item-inner:hover a.more-info:after {
    width:50px;
}

.page-template-template-homepage #content .features .container .entry-header {
    margin-bottom:0px;
    padding-top:60px;
}

/* Masonry items
-------------------------------------------------*/

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

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

/* Our Team
-------------------------------------------------*/

.team-block {
    position:relative;
}

.team-image-bg {
    z-index:1;
    position:absolute;
    top:0;
    left:0;
    width:80%;
    height:80%;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.team-text {
    position:relative;
    z-index:2;
}

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

.team-main-row .row {
    margin-top:70px;
}

.team-main-row .row:first-child {
    margin-top:0px;
}

.team-main-row .row:nth-child(odd) .team-block .team-text {
    float:right;
}

.team-main-row .row:nth-child(even) .team-block .team-text {
    float:left;
}

.team-main-row .row:nth-child(even) .team-block .team-image-bg {
    left:auto;
    right:0;
}

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

.team-main-row  .row .member-inner {
    padding: 100px 80px;
    margin: 200px auto 0px;
}

.team-main-row  .row .member-inner h4:before {
    content: '';
    width: 30px;
    height: 1px;
    background: #b0976d;
    display: block;
    margin-bottom: 20px;
    top: 50%;
}

@media(max-width:600px) {
  .team-image-bg {
    position:relative;
    height:350px;
    width:100%;
  }
  .team-main-row  .row .member-inner {
    padding: 50px;
    margin:0;
  }
  .team-text,
  .team-main-row .row:nth-child(odd) .team-block .team-text {
    float:none;
    padding-bottom:0px;
  }
}

/* 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: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0.5;
}

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

.feature-center .columns {
    float:none;
    margin:0 auto;
    margin-left:auto !important;
}

.feature-inner {
    padding: 100px 80px;
    margin: 0 auto;
}

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

.feature-inner h2 {
    color:#FFF;
}

.feature-inner h2:before {
    content:'';
    width:30px;
    height:1px;
    background:#b0976d;
    display:block;
    margin-bottom:20px;
    top:50%;
    position:relative;
}

.feature-inner .entry-header.centered h2:before {
    left:50%;
    margin-left:-15px;
}

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

/* Image left & right
-------------------------------------------------*/

.container.image-left,
.container.image-right {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
}

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

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

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

/* 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: 20px;
    font-weight: 400;
}

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

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

.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: #f9fafb transparent;
}

.single-testimonial {
    padding-bottom:60px;
}

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

/* Food menu
-------------------------------------------------*/

ul.tabs {
    margin: 0px 0 50px 0;
    padding: 0px;
    list-style: none;
    text-align:center;
}

ul.tabs li {
    background: none;
    display: inline-block;
    cursor: pointer;
    margin:0 15px;
    display:inline-block;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size:20px;
    color:#22222a;
}

@media(max-width:600px) {
    ul.tabs li {
      display:block;
      margin:10px 0px;
    }
}

ul.tabs li span {
    display:inline-block;
}

ul.tabs li span:after {
    content:'';
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width:0;
    height:2px;
    background:#b0976d;
    display:block;
}

ul.tabs li.current span:after {
    width:100%;
}

.odd .tab-content {
    background:#FFF;
}

.tab-content {
    display: none;
    padding: 50px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media(max-width:600px) {
  .tab-content {
    padding:50px 0;
  }
}

.tab-content.current{
    display: inherit;
}

.menu-block .menu-title {
    margin:0 0 30px 0;
    position:relative;
    font-size:26px;
}

.menu-block .menu-title {
    text-align:left;
}

.menu-block h5 {
    display:inline-block;
    max-width: 80%;
    margin:0;
}

.menu-block .menu-item .price {
    font-family: "Lora", serif;
    font-weight: 300;
    font-size:20px;
    padding:0;
    float:right;
}

@media(max-width:600px) {
    .menu-block .menu-item .price {
        float:none;
        display:block;
        margin-top:10px;
    }
}

.menu-block .menu-item h4 {
    margin-bottom:5px;
    display:inline-block;
}

.menu-block .menu-item p {
    padding-top:20px;
    max-width:80%;
}

@media(max-width:600px) {
    .menu-block .menu-item p {
        max-width:none;
    }
}

.item-category {
    margin-bottom:30px;
}

.item-category:last-child {
    margin-bottom:0px;
}

.item-category:last-child .item-category-inner {
    margin-bottom:0px;
}

.item-category-inner {
    padding-bottom: 50px;
}

.odd .item-category-inner {
    background:#FFF;
}

.item-category-inner {
    background: #f9fafb;
    padding: 20px 50px;
    margin-bottom:30px;
}

.menu-block .item-category:last-child {
    margin-bottom:0px;
}

/* 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:17px;
}

.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='#000',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: #6c7479;
    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;
}

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

ul.member-social li {
    display:inline-block;
    padding-right:10px;
}

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

/* Services 
-------------------------------------------------*/

#content .service-content p:last-child {
    margin-bottom:60px;
    padding-bottom:60px;
    border-bottom:1px solid;
    border-color:#EEE;
}

.services-page .service {
    padding-top:60px;
    margin-top:60px;
    border-top:1px solid #EEE;   
}

.services-page .service:first-child {
    margin:0;
    padding:0;
    border:none;
}

.service .content-div {
    padding:30px 0 0 0
}

.services li {
    width:50%;
    float:left;
    display:block; 
}

.services li:last-child:nth-child(odd) {
    width:100%;
    margin:0;
}

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

.services li h5 {
    color:#FFF;
}

.services li .content-div {
    color:#fff;
    position:relative;
    margin:0;
    word-wrap: break-word;
    padding:100px 50px;
    text-align:center;
    background:#b0976d; 
}

.services li .content-div img {
     margin-bottom:30px;
}

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

.service-image {
    margin-bottom:30px;
}

.service-image img {
    max-width:50px;
    height:auto;
    margin:0 auto;
}

/* Gallery 
-------------------------------------------------*/

.gallery {
    position:relative;
}

.gallery .pagingInfo {
    font-family: "Lora", serif;
    font-weight: 400;
    color:#FFF;
    font-size:25px;
}

.gallery .slide-info {
    position:absolute;
    top:80px;
    right:80px;
    z-index:20;
}

.gallery .touch-icon {
    position:absolute;
    bottom:40px;
    left:40px;
    z-index:20;
    color:#FFF;
    font-size:25px;
}

.gallery .touch-icon i {
    display:block;
    -webkit-animation: scrollwheel 2s infinite;
    -moz-animation: scrollwheel 2s infinite;
    -o-animation: scrollwheel 2s infinite;
    animation: scrollwheel 2s infinite;
}

@media(max-width:800px) {
  .slick-arrow {
      display:none !important;
  }
  .gallery .slide-info {
      top:40px;
      right:40px;
  }
}

.gallery-slider {
    background-color: #141719;
}

.gallery-slider div.slide:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#141719;
    opacity:0.5;
}

.gallery-slider div.slide {
    height:700px;
    background-position:center center;
    background-repeat:none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position:relative;
}

@media(max-width:600px) {
    .gallery-slider div.slide {
      height:400px;
    }  
}

.gallery-div {
    position:relative;
    overflow:hidden;
}

.gallery-div .gallery-div-bg {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery-div:hover .gallery-div-bg {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery-div-inner {
    position:relative;
    overflow:hidden;
}

.gallery-div-bg {
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    background-position:center center;
    background-repeat:none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.gallery-block div.gallery-div {
    padding:30px;
}

.gallery-block div.gallery-div:nth-child(1) {
    padding-left:0px;
}

.gallery-block div.gallery-div:nth-child(2) {
    padding-right:0px;
}

.gallery-block .row:nth-child(odd) div.gallery-div:nth-child(2) .gallery-div-inner,
.gallery-block .row:nth-child(even) div.gallery-div:nth-child(1) .gallery-div-inner {
    height:250px;
    margin-top:75px;
}

.gallery-block .row:nth-child(odd) div.gallery-div:nth-child(1) .gallery-div-inner,
.gallery-block .row:nth-child(even) div.gallery-div:nth-child(2) .gallery-div-inner {
    height:400px;
}

.gallery-block .row:nth-child(odd) div.gallery-div:nth-child(2),
.gallery-block .row:nth-child(even) div.gallery-div:nth-child(1) {
    width:40%;
}

.gallery-block .row:nth-child(odd) div.gallery-div:nth-child(1),
.gallery-block .row:nth-child(even) div.gallery-div:nth-child(2) {
    width:60%;
}

@media(max-width:600px) {
  .gallery-block .row:nth-child(odd) div.gallery-div:nth-child(2),
  .gallery-block .row:nth-child(even) div.gallery-div:nth-child(1),
  .gallery-block .row:nth-child(odd) div.gallery-div:nth-child(1),
  .gallery-block .row:nth-child(even) div.gallery-div:nth-child(2) {
      width:100%;
      padding:0;
      margin-bottom:50px;
  } 
  .gallery-block .row:nth-child(odd) div.gallery-div:nth-child(2) .gallery-div-inner,
  .gallery-block .row:nth-child(even) div.gallery-div:nth-child(1) .gallery-div-inner,
  .gallery-block .row:nth-child(odd) div.gallery-div:nth-child(1) .gallery-div-inner,
  .gallery-block .row:nth-child(even) div.gallery-div:nth-child(2) .gallery-div-inner {
      height:300px;
      margin-top:0px;
  } 
}

a.lightbox {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}

.gallery-block .gallery-caption {
    opacity:0;
    bottom:30px;
    left:30px;
    padding:10px 15px;
    font-size:20px;
    border:none;
    position:absolute;
    color:#FFF;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gallery-div h4 {
    font-size:24px;
    margin:0;
    color:#FFF;
    position: absolute;
    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%);
}

.background-image:before {
    opacity:0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='#000',GradientType=0 );
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gallery-div:hover .gallery-caption,
.gallery-div:hover .background-image:before {
    opacity:1;
}

@media (max-width:800px) {
  .gallery-block .gallery-caption,
  .gallery-block .background-image:before {
      opacity:1;
  } 
}

.gallery-block div.gallery-div {
    float:left;
    box-sizing: border-box;
    display:block;
}

.gallery-block div.gallery-div .background-image {
    position:absolute;
    top:0;
    bottom:0;
    right: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;
    position:relative;
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow:hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gallery-block div.gallery-div .background-image a {
    z-index:2;
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    left:0;
    width:100%;
    height:100%;
}

.gallery-block div.gallery-div:hover .background-image {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

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

#content article.banner .container-small {
    padding:200px 0;
}

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

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

.page-template-template-homepage #content .banner-inner h2 {
    color:#FFF;
    margin:0;
    font-weight:300;
    padding:0 !important;
    font-size:35px;
}

.banner-inner p {
    padding-top:15px;
    color:#ccc;
}

.container.banner-text {
    max-width:700px;
}

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

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

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

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

.entry-header.hidden {
    display:none;
}

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

article .entry-header:only-child {
    margin-bottom:0px;
}

#content article {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position:relative;
}

.offset-container .entry-header,
.page-template-template-homepage #content .news .container .entry-header {
    padding-top:30px;
    margin-bottom:30px;
}

.page-template-template-homepage #content .testimonials .container .entry-header {
    margin-bottom:30px;
}

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

.entry-header h1,
.entry-header h2,
.entry-header h3,
.entry-header h4,
.entry-header h5,
.entry-header h6 {
    position:relative;
    margin-bottom:0px;
}

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

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

.page-template-template-homepage #content .diensten .container {
    padding-bottom:90px;
}

.page-template-template-homepage #content .features .container {
    padding-top:60px;
    padding-bottom:60px;
}

.page-template-template-homepage #content .offset-container .container {
    padding-top:90px;
    padding-bottom:90px;
}

.page-template-template-homepage #content .title-item .container-small {
    padding-top:200px;
    padding-bottom:200px;
}

@media(max-width:600px) {
  .page-template-template-homepage #content .title-item .container-small {
      padding-top:150px;
      padding-bottom:150px;
  } 
}

.page-template-template-homepage #content .container-small,
.page-template-template-homepage #content .container {
    padding-top:120px;
    padding-bottom:120px;
}

.page-template-template-homepage #content .testimonials .container {
    padding-bottom:60px;
}

.blog .container.padded,
.archive .container.padded {
    padding:70px 0 100px 0;
}

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

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

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

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

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

.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%; 
      margin:0; 
      padding:0; 
  }

}

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

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

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

.blog-item {
    width: 50%;
    padding: 50px 60px;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

footer.entry-footer {
    margin:50px 0 0 0;
}

footer.entry-footer ul {
    margin:0;
}

footer.entry-footer ul li:last-child {
    margin-bottom:0;
}

.entry-footer,
.entry-footer a,
.entry-footer-author a {
    color: #6c7479;
}

.entry-footer-author {
    margin-bottom:20px;
}

.entry-footer li {
    display:block;
}

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

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

.blog-item .date,
.single-post .date {
    padding-right:5px;
}

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

.blog-item h2 {
    font-size:30px;
}

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

.entry-meta a {
    color:#6c7479;
}

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

#post-loader {
    margin-top:70px;
    text-align:center;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size:20px;
}

#post-loader .loader-button {
    cursor:pointer;
    color:#22222a;
    display:inline-block;
    border-bottom:2px solid;
    border-color:#b0976d;  
}

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

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

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

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

.socials li a:before {
    font-size:18px;
    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";
}

.site-footer {
  	padding: 100px 0;
  	background:#141719;
    text-align:center;
}

.site-footer .socials,
.site-footer #footer-navigation {
    margin-bottom:20px;
}

.site-footer #footer-navigation li {
    margin:0px 10px;
}

.site-footer .container {
    max-width:650px;
}

.single .site-footer {
    margin-top: 0;
}

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

.site-footer a:hover {
    color:#FFF;
}

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

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

#footer-menu {
    list-style:none;
    margin:0 0 15px 0;
}

#footer-menu li {
    display:inline-block;
    padding:0 5px;
}

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

/*--------------------------------------------------------------*/
/*	14.0 ANIMATIONS
/*--------------------------------------------------------------*/

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

@-webkit-keyframes scrollwheel {
  0% {
    -webkit-transform: translateX(10px);
    opacity: 1;
  }
  50% {
      -webkit-transform: translateX(0px);
    opacity: 1;
  }
  100% {
      -webkit-transform: translateX(10px);
    opacity: 1;
  }
}

@keyframes scrollwheel {
  0% {
    transform: translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(10px);
    opacity: 1;
  }
}

@-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
/*--------------------------------------------------------------*/

/* Restaurant reservations */

.rtb-booking-form .reservation > legend {
    display:none;
}

#content .rtb-booking-form p:empty {
    margin-bottom:0;
}

.rtb-message,
.rtb-booking-form fieldset {
  background: #f9fafb;
  border: none;
  margin: 0 0 20px 0 !important;
  padding: 20px !important;
  position: relative;
}

.odd .rtb-message,
.odd .rtb-booking-form fieldset {
  background: #fff;
}

.rtb-booking-form fieldset.reservation {
  margin-bottom: 0!important;
  padding-bottom: 0!important;
}

.rtb-booking-form fieldset.contact {
  padding-top: 0 !important;
}

.rtb-booking-form fieldset > div {
  margin: 0 0 15px !important;
}

@media only screen and (min-width: 600px) {
  .rtb-booking-form fieldset {
    margin: 0 0 40px 0 !important;
    padding: 40px !important;
  }

  .rtb-booking-form fieldset > div {
    margin: 0 0 20px !important;
  }
}

.rtb-booking-form fieldset.contact {
  margin-bottom: 0 !important;
}

.rtb-booking-form fieldset.contact > div:last-child {
  margin: 0 !important;
}

.rtb-booking-form legend {
  display: none;
}

.rtb-booking-form label {
  display: inline-block;
}

.rtb-booking-form input {
  max-width: none !important;
}

@media only screen and (min-width: 600px) {
  #rtb-time,
  #rtb-party,
  .rtb-booking-form select,
  body .contact-form select {
    background-position: 98%;
  }
}

#rtb-time,
#rtb-party {
  background-position: 96%;
}

.rtb-booking-form .add-message {
  display: none;
}

.rtb-text.phone {
  margin-bottom: 0 !important;
}

.rtb-booking-form button {
  width: 100%;
  padding:20px 25px;
}

.rtb-message {
  margin: 0 0 50px 0 !important;
  padding: 50px !important;
}

.rtb-message {
  color: #17b962;
}

.rtb-message p:last-child {
  margin-bottom: 0;
}

/* 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:#131414 !important;
    opacity:1 !important;
}

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

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

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

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

/* 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;
}

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

    display: block;

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

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

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

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

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

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

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

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

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

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

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

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    padding: 0;
    z-index: 9999;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-size: 25px;
    line-height: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 80px;
    bottom: 50px;
}
.slick-prev:before
{
    content: "Previous";
}
.slick-next
{
    left: 80px;
    bottom: 90px;
}
.slick-next:before
{
    content: "Next";
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.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
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Restaurant Booking plugin */

body .picker__table {
    background: rgba(0,0,0,0.3);
    margin:0;
    border-bottom: 10px solid;
    border-top: 10px solid;
    border-color: rgba(0,0,0,0);
}

body .picker__year {
    font-style: normal;
}

body table.picker__table thead,
body table.picker__table td,
body table tr:nth-child(even) {
    background: none;
    border:none;
    border-bottom:0px;
}

body .picker--opened .picker__holder {
    background: rgba(0,0,0,0.8);
}

body #rtb-date_root .picker__button--clear, 
body #rtb-date_root .picker__button--today {
    color:#FFF;
}

body .picker__button--clear:hover, 
body .picker__button--close:hover, 
body .picker__button--today:hover {
    color:#FFF;
    background:#b0976d;
}

body .picker__day {
    color: #FFF;
} 

body .picker__list-item {
    border-bottom: 0px;
    border-top: 0px;
    margin-bottom: 0px;
    position: relative;
    background: #141719;
    color:#999;
    padding: .75em 1.25em;
}

body .picker__list {
    padding:0;
    margin:0;
}

body .picker__list,
body #rtb-time_root .picker__list, 
body #rtb-time_root .picker__list li {
    margin:0;
}

body .picker__day--outfocus {
    color: #999;
}

body .picker--time .picker__button--clear {
    background: #b0976d;
    color: #FFF;
    width:100%;
    margin:0;
    padding: 0.75em 1.25em;
    font-weight:400;
    text-transform:none;
    font-family:'Lora', serif;
    font-size:20px;
}

body .picker--time .picker__button--clear:focus, 
body .picker--time .picker__button--clear:hover {
    background: #b0976d;
    border-color: none;
    cursor: pointer;
    color: #fff;
    outline: 0;
}

body .picker--focused .picker__list-item--highlighted, 
body .picker__list-item--highlighted:hover, 
body .picker__list-item:hover {
    background: #b0976d;
    cursor: pointer;
    color: #FFF;
}

body .picker__button--clear:before,
body .picker__button--today:before,
body .picker__button--close:before {
    content:'';
    font-size:0px;
    top: 0;
    margin:0;
    width: 0;
    border-top: 0px;
}

body .picker--focused .picker__day--disabled, 
body .picker__day--disabled, 
body .picker__day--disabled:hover {
    opacity:0.5;
    background:none;
    color:#999;
    border:none;
}

body .picker__day--today:before {
    border-top: 0px;
    border-left: 0px;
}

body .picker__button--clear, 
body .picker__button--close, 
body .picker__button--today {
    background:none;
    border:none;
    font-weight:400;
    color:#FFF;
    width:33.3333333333%;
}

body .picker--focused .picker__day--highlighted, 
body .picker__day--highlighted:hover, 
body .picker__day--infocus:hover, 
body .picker__day--outfocus:hover {
    background: #b0976d;
    color: #fff;  
}

body .picker--focused .picker__day--selected, 
body .picker__day--selected, 
body .picker__day--selected:hover {
    background: #b0976d;
    color: #fff;
}

body .picker__header {
    padding: .75em 0;
    margin-top:0;
    font-family: "Lora", serif;
    font-weight: 400;
    color:#FFF;
    border-bottom:10px solid;
    border-color:rgba(0,0,0,0.3);
}

body .picker__nav--next, 
body .picker__nav--prev {
    padding: .75em 0;
    border:none;
    top:0;
}

body #rtb-date_root .picker__nav--next, 
body #rtb-date_root .picker__nav--prev {
    min-height:0;
}

body .picker__nav--next:hover, 
body .picker__nav--prev:hover {
    background:none;
    color:#FFF;
}

body .picker__nav--next {
    right:0;
    padding-right:20px;
} 

body .picker__nav--prev {
    left:0;   
    padding-left:20px;
}

body .picker__nav--next:before {
    content:'\2192';
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    border-left:0;
    width:auto;
    height:auto;
}

body .picker__nav--prev:before {
    content:'\2190';
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    width:auto;
    height:auto;
}

body .picker__box {
    font-size: 1.5em;
    border-bottom-width: 0px;
    border-radius: 0;
    border:none;
    padding:0;
    box-shadow:none;
    background: #141719;
}

body .picker--opened .picker__frame {
    top: 50%;
    bottom:auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rtb-message p {
    color: #6c7479;
}

.rtb-message p:before {
    color:#17b962;
    padding-right:5px;
    content: "\e64d";
    font-family:'ti';
}

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

.site {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site.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.loaded {
    opacity: 1;
}

#nprogress {
    pointer-events: none;
}

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