/**
	Libra-Responsive Personal Blog Template
 	Copyright (c) 2015, Pophonic 

	Author: Pophonic
	Profile: themeforest.net/user/pophonic
	
**/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Body and main container
2.0 Page loader
3.0 Elements
	3.1 Heading
	3.2 Divider
	3.3 Button
	3.4 Blockquote
	3.5 Drop cap
	3.6 Lists
	3.7 Breadcrumbs
	3.8 Social media share
4.0 Logo
5.0 Navigation menu
6.0 Search section
7.0 Featured image
8.0 Page title, heading and post meta
9.0 Homepage slider
10.0 Homepage carousel
11.0 Post lists
	11.1 Post lists standard
	11.2 Post lists blog list
	11.3 Post lists masonry
12.0 Archive page
13.0 Post single
	13.1 Post tags
	13.2 Post pagination
	13.3 Post author
	13.4 Post related posts
	13.5 Post comments
	13.6 Post type gallery 1
14.0 Form input
15.0 Sidebar widget
	15.1 Widget about us
	15.2 Widget recent posts
	15.3 Widget categories
	15.4 Widget instagram
	15.5 Widget follow subscribe
	15.6 Widget banner sidebar
	15.7 Widget tag cloud
	15.8 Widget sidebar color
16.0 Footer
	16.1 Footer instagram
	16.2 Footer widget
	16.3 Footer bottom
17.0 Back to top
18.0 Hover effect
19.0 Media queries for responsive design
--------------------------------------------------------------*/


/********************************************
1.0 Body and main container
*********************************************/
body {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 1.571428571428571;
	color: #8a8a8a;
	background-color: #3b4348;
}

.box {
	margin: 0 0 30px;
}

.nopadding {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.addpadding {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.bgimage,
#particles,
.bg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#particles {
	z-index: 1;
}

.bg-overlay {
	z-index: 0;
}

.container-wrapper {
	position: relative;
	min-height: 100vh;
	z-index: 2;
}

.row.section-wrapper {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: -30px;
}

.content-body,
.post-single-content-body {
	border-radius: 10px;
	overflow: hidden;
}

.content-section-body,
.sidebar-section-body {
	padding: 0;
}

.content-details-body {
	padding: 54px 30px 60px 30px;
	background-color: #fff;
}


/********************************************
2.0 Page loader
*********************************************/
.preloader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #3b4348;
	z-index: 99999;
}

.preloader-particles-wrapper {
	position: relative;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
}


/********************************************
3.0 Elements
*********************************************/
p {
	margin: 0 0 1.5em;
}

a:focus {
	text-decoration: none;
}

.font-number {
	font-family: 'Open Sans', sans-serif;
}

.img-div-cover img {
	width: 100%;
	height: auto;
}

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

.bgimage-cover,
.fit-img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


/********************************************
3.1 Heading
*********************************************/
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: #4a4a4a;
}


/********************************************
3.2 Divider
*********************************************/
.layout-divider {
	position: relative;
	width: 100%;
	height: 1px;
	margin: 30px 0;
	background-color: #757575;
	clear: both;
}

.layout-divider:before {
	position: absolute;
	content: '';
	width: 60px;
	height: 3px;
	top: -1px;
	left: 50%;
	margin: 0 0 0 -30px;
	background-color: #e7cd3b;
}


/********************************************
3.3 Button
*********************************************/
.button-section-title {
	font-weight: 600;
	color: #4a4a4a;
	margin: 0 0 14px;
}

.button-element button {
	margin: 0 7px 10px 0;
}

button {
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 12px 25px 11px 25px;
	border: none;
	border-radius: 4px;
	background-color: #8a8a8a;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

button.btn-small {
	font-size: 0.857142em;
	padding: 9px 18px 8px 18px;
}

button.btn-white {
	color: #7a7a7a;
	background-color: #fff;
	border: #7a7a7a solid 2px;
	padding: 10px 23px 9px 23px;
}

button.btn-small.btn-white {
	padding: 7px 16px 6px 16px;
}

button.btn-dark {
	background-color: #1d2123;
}

button.btn-grey {
	background-color: #66727b;
}

button.btn-blue {
	background-color: #6574ad;
}

button.btn-green {
	background-color: #73b1b0;
}

button.btn-yellow {
	background-color: #e7cd3b;
}

button.btn-orange {
	background-color: #cdaf0a;
}

button.btn-red {
	background-color: #c4693d;
}

button:hover {
	background-color: #aaaaaa;
}

button:focus {
	outline: 0;
}

button.btn-white:hover {
	color: #fff;
	background-color: #1d2123;
	border: #1d2123 solid 2px;
}

button.btn-dark:hover {
	background-color: #66727b;
}

button.btn-grey:hover {
	background-color: #75838d;
}

button.btn-blue:hover {
	background-color: #7080be;
}

button.btn-green:hover {
	background-color: #7dc0bf;
}

button.btn-yellow:hover {
	background-color: #f1d640;
}

button.btn-orange:hover {
	background-color: #dabb0e;
}

button.btn-red:hover {
	background-color: #d87545;
}


/********************************************
3.4 Blockquote
*********************************************/
blockquote {
	position: relative;
	font-family: 'Courgette', cursive;
	font-size: 1.714285em;
	line-height: 1.2em;
	text-align: center;
	color: #8a8a8a;
	padding: 35px;
	border: none;
	border-radius: 4px;
	background-color: #f3f3f3;
}

blockquote:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 3px;
	margin-left: -30px;
	background-color: #e7cd3b;
}

blockquote.blockquote2 {
	color: #cacaca;
	background-color: #66727b;
}

/********************************************
3.5 Drop cap
*********************************************/
.dropcap {
	float: left;
	color: #dfdfdf;
	font-size: 5.1428em;
	line-height: 0.85em;
	padding: 0 19px 0 0;
}


/********************************************
3.6 Lists
*********************************************/
.custom-list {
	list-style: none;
	margin: 0 0 10px 35px !important;
}

.custom-list li i {
	font-size: 12px;
	margin: 3px 0 0;
	color: #e7cd3b;
}

.custom-list li {
	margin: 0 0 9px;
	padding: 0 0 0 2px;
}

/********************************************
3.7 Breadcrumbs
*********************************************/
.breadcrumbs {
	background-color: #1d2123;
}

.breadcrumbs ul {
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 11px 30px 13px 30px;
}

.breadcrumbs.breadcrumbs-left ul {
	text-align: left;
}

.breadcrumbs ul li {
	position: relative;
	display: inline;
	font-size: 0.857142em;
	text-transform: uppercase;
	margin: 0 24px 0 0;
}

.breadcrumbs ul li:last-child {
	margin: 0;
}

.breadcrumbs ul li:after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 1px;
	height: 10px;
	margin: 7px -14px 0 0;
	background-color: #7a7a7a;
}

.breadcrumbs ul li:last-child:after {
	display: none;
}

.breadcrumbs ul li a {
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.breadcrumbs ul li a:hover {
	text-decoration: none;
	color: #fff;
}


/********************************************
3.8 Social media share
*********************************************/
/* ===== Style 1 ===== */
.social-media-share {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-media-share li {
	display: inline;
	font-size: 17px;
	margin: 0 14px 0 0;
}

.social-media-share li:last-child {
	margin: 0;
}

.social-media-share li a {
	color: #aaaaaa;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.social-media-share li a:hover {
	color: #7a7a7a;
}

/* ===== Style 2 ===== */
.social-media-share2 {
	position: relative;
}

.social-media-share2:after {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	margin: -1px 0 0;
	background-color: #e7e7e7;
	z-index: 1;
}

.social-media-share2 ul {
	position: relative;
	list-style: none;
	margin: 0 auto;
	padding: 0 10px;
	display: table;
	overflow: hidden;
	background-color: #fff;
	z-index: 2;
}

.social-media-share2 ul li {
	float: left;
	text-align: center;
	margin: 0 5px 0 0;
}

.social-media-share2 ul li:last-child {
	margin: 0;
}

.social-media-share2 ul li a {
	display: inline-block;
	width: 29px;
	height: 29px;
	line-height: 29px;
	color: #eeeeee;
	border-radius: 50%;
	background-color: #66727b;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.social-media-share2 ul li a:hover {
	color: #fff;
	background-color: #e7cd3b;
}


/********************************************
4.0 Logo
*********************************************/
.logo {
	text-align: center;
	height: 70px;
	margin: 30px 0;
}

.logo img {
	height: 100%;
	width: auto;
}


/********************************************
5.0 Navigation menu
*********************************************/
.nav-menu {
	position: relative;
	min-height: 49px;
	margin: 0 0 30px;
	padding: 49px 0 0;
	background-color: #1d2123;
	border-radius: 10px;
}

.burger-menu {
	position: absolute;
	top: 13px;
	left: 15px;
	width: 20px;
	height: 17px;
	cursor: pointer;
}

.burger-menu i {
	font-size: 23px;
	color: #cacaca;
		
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.burger-menu:hover i {
	color: #fff;
}

.nav-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu > ul {
	display: none;
	border-top: #4a4a4a solid 1px;
}

.nav-menu > ul > li:first-child > a {
	padding: 15px 15px 7px 15px;
}

.nav-menu > ul > li:last-child > a {
	padding: 7px 15px 15px 15px;
}

.nav-menu ul li > a {
	display: block;
	font-size: 1em;
	font-weight: 600;
	color: #cacaca;
	text-transform: uppercase;
	padding: 7px 15px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.nav-menu ul li:hover > a {
	text-decoration: none;
	color: #fff;
}

.nav-menu ul li.current-menu > a {
	color: #fff;
}

.nav-menu ul ul {
	padding: 0 0 0 15px;
}

.nav-menu ul ul li a {
	font-size: 0.857142em;
}


/********************************************
6.0 Search section
*********************************************/
/* ===== Search open ===== */
.search-open {
	position: absolute;
	top: 14px;
	right: 15px;
	width: 17px;
	height: 17px;
	cursor: pointer;
}

.search-open i {
	font-size: 18px;
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.search-open:hover i {
	color: #fff;
}

/* ===== Search overlay ===== */
.search-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(21,23,25,0.95);
}

.search-overlay .container {
	position: relative;
	height: 100vh;
}

/* ===== Search close ===== */
.overlay-close-wrapper {
	position: absolute;
	top: 30px;
	right: 30px;
}

.overlay-close {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.overlay-close:before,
.overlay-close:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 40px;
	height: 2px;
	margin: 14px 0 0 -5px;
	background-color: #7a7a7a;
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.overlay-close:hover:before,
.overlay-close:hover:after {
	background-color: #fff;
}

.overlay-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.overlay-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* ===== Search input ===== */
.search-input {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.search-form input {
	width: 100%;
	height: 52px;
	text-align: center;
	border: none;
	border-bottom: #3a3a3a solid 2px;
	padding: 0;
	background-color: transparent;
	font-size: 1.2857em;
}

.search-form input:focus {
	outline: 0;
}

/* ===== Placeholder color ===== */
.search-form .placeholder { /* Internet Explorer 9 */
	color: #8a8a8a;
}

.search-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #8a8a8a;
}

.search-form input::-webkit-input-placeholder { /* WebKit browsers */
    color: #8a8a8a;
}

.search-form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #cacaca;
}

.search-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #cacaca;
}

/* ===== Animation ===== */
.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	-moz-transition: opacity 0.5s, visibility 0s 0.5s;
	-ms-transition: opacity 0.5s, visibility 0s 0.5s;
	-o-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-hugeinc .search-form {
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	-ms-perspective: 1200px;
	-o-perspective: 1200px;
	perspective: 1200px;
}

.overlay-hugeinc .search-form form {
	opacity: 0.4;
	
	-webkit-transform: translateY(-25%) rotateX(35deg);
	-moz-transform: translateY(-25%) rotateX(35deg);
	-ms-transform: translateY(-25%) rotateX(35deg);
	-o-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	-moz-transition: -moz-transform 0.5s, opacity 0.5s;
	-ms-transition: -ms-transform 0.5s, opacity 0.5s;
	-o-transition: -o-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open .search-form form {
	opacity: 1;
	width:100%;
	
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay-hugeinc.close .search-form form {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	-moz-transform: translateY(25%) rotateX(-35deg);
	-ms-transform: translateY(25%) rotateX(-35deg);
	-o-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}


/********************************************
7.0 Featured image
*********************************************/


/********************************************
8.0 Page title, heading and post meta
*********************************************/
.page-title h1,
.page-title h2,
.page-title h3 {
	position: relative;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 35px;
	color: #4a4a4a;
	border-bottom: #e7e7e7 solid 1px;
}

.page-title h1 {
	font-size: 1.714285em;
	padding: 0 0 10px;
}

.page-title h2 {
	font-size: 1.571428em;
	padding: 0 0 12px;
}

.page-title h3 {
	font-size: 1.428571em;
	padding: 0 0 12px;
}

.page-title.subtitle h2 {
	font-size: 1.285714em;
	padding: 0 0 13px;
}

.page-title h1:after,
.page-title h2:after,
.page-title h3:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 3px;
	background-color: #e7cd3b;
}

.page-title.title-center {
	text-align: center;
}

.page-title.title-center h1:after,
.page-title.title-center h2:after,
.page-title.title-center h3:after {
	left: 50%;
	margin: 0 0 0 -30px;
}


/********************************************
9.0 Homepage slider
*********************************************/
.home-slider {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background-color: #576269;
}

.home-slider .slides li {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.home-slide-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
}

.flex-caption {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	z-index: 2;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	
	-webkit-animation: slideIn;
	-moz-animation: slideIn;
	-o-animation: slideIn;
	animation: slideIn;
	
	-webkit-animation-duration: 1.6s;
	-moz-animation-duration: 1.6s;
	-o-animation-duration: 1.6s;
	animation-duration: 1.6s;
}

/* Alternate Caption CSS */
@-webkit-keyframes slideIn { 0% { margin-top: -80px; opacity: 0; }
  100% { margin-top: 0px; opacity: 1; } }

@-moz-keyframes slideIn { 0% { margin-top: -80px; opacity: 0; }
  100% { margin-top: 0px; opacity: 1; } }

@-o-keyframes slideIn { 0% { margin-top: -80px; opacity: 0; }
  100% { margin-top: 0px; opacity: 1; } }

@keyframes slideIn { 0% { margin-top: -80px; opacity: 0; }
  100% { margin-top: 0px; opacity: 1; } }

/* Alternate Caption CSS END */

.home-slide-caption {
	width: 65%;
	margin: auto;
}

.home-slide-caption h1 {
	font-size: 1em;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.3em;
	margin: 0 0 22px;
}

.home-slide-category {
	display: none;
	margin: 0 0 19px;
}

.home-slide-category a {
	font-size: 0.857142em;
	color: #fff;
	text-transform: uppercase;
	background-color: #e7cd3b;
	padding: 7px 15px;
	margin: 0 5px 0 0;
	border-radius: 4px;
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.home-slide-category a:last-child {
	margin: 0;
}

.home-slide-category a:hover {
	text-decoration: none;
	background-color: #1d2123;
}

.home-slide-link a {
	position: relative;
	font-size: 0.857142em;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 0px 9px 0px;
	border-radius: 4px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.home-slide-link a:before,
.home-slide-link a:after {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	height: 2px;
	background-color: #fff;
	
	-webkit-transition: background-color 0.1s ease-in-out;
	-moz-transition: background-color 0.1s ease-in-out;
	-ms-transition: background-color 0.1s ease-in-out;
	-o-transition: background-color 0.1s ease-in-out;
	transition: background-color 0.1s ease-in-out;
}

.home-slide-link a:before {
	top: 0;
}

.home-slide-link a:after {
	bottom: 0;
}

.home-slide-link a:hover {
	text-decoration: none;
	padding: 10px 10px 9px 10px;
	background-color: #1d2123;
}

.home-slide-link a:hover:before,
.home-slide-link a:hover:after {
	background-color: transparent;
}

/* ===== Slider Custom Navigation ===== */
.home-slide-nav {
	position: absolute;
	top: 50%;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	z-index: 5;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.home-slide-nav a {
	position: absolute;
	width: 30px;
	height: 30px;
	display: block;
	top: 50%;
	margin-top: -15px;
	text-align: center;
	text-decoration: none;
	z-index: 10;
	cursor: pointer;
	background-color: #1d2123;
	border-radius: 50%;
	opacity: 0.75;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
	
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

.home-slide-nav a:hover {
	opacity: 1;
}

.home-slide-nav .slide-prev {
	left: 15px;
}

.home-slide-nav .slide-next {
	right: 15px;
}

.home-slide-nav a i {
	font-size: 22px;
	line-height: 30px;
	color: #fff;
}

.home-slide-nav .slide-prev i {
	margin: -1px 0 0 -2px;
}

.home-slide-nav .slide-next i {
	margin: -1px -2px 0 0;
}


/********************************************
10.0 Homepage carousel
*********************************************/
.home-carousel {
	margin: 0 0 30px;
}

.carousel-item {
	position: relative;
}

.carousel-item img {
	border-radius: 10px;
}

.carousel-item .carousel-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 1;
	background-color: rgba(0,0,0,0.5);
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.carousel-item:hover .carousel-title {
	background-color: rgba(231,205,59,0.75);
}

.carousel-item .carousel-title h3 {
	position: relative;
	top: 50%;
	margin: 0;
	font-size: 1.285714em;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	padding: 20px 30px 19px 30px;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.carousel-item:hover .carousel-title h3 {
	padding: 35px 30px 34px 30px;
}

.carousel-item .carousel-title h3:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 40px;
	height: 2px;
	margin: 0 0 0 -20px;
	background-color: #e7cd3b;
	opacity: 1;
	
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.carousel-item:hover .carousel-title h3:after {
	opacity: 0;
}

/* ===== Custom navigation ===== */
.home-carousel-nav {
	width: 35px;
	height: 20px;
	margin: auto;
	overflow: hidden;
}

.carouselArrow {
	font-size: 34px;
	color: #fff;
	line-height: 0;
	margin: -7px 0 0;
	cursor: pointer;
	opacity: 0.65;
	
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.carouselArrow:hover {
	opacity: 1;
}

.carouselArrow.prev {
	float: left;
}

.carouselArrow.next {
	float: right;
}


/********************************************
11.0 Post lists
*********************************************/
.post-list article {
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 30px;
}

.post-list article:last-child {
	margin: 0;
}

.post-img {
	position: relative;
	overflow: hidden;
}

.post-img .overlay-hover {
	opacity: 0;
	z-index: 1;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.post-img:hover .overlay-hover {
	opacity: 0.4;
}

.post-img .post-list-category {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 19px 30px;
	background-color: rgba(36,41,44,0.5);
	z-index: 3;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.post-img:hover .post-list-category {
	bottom: 0 !important;
}

.post-media-category {
	text-align: center;
	padding: 15px 30px;
	background-color: #576269;
}

.post-list-category ul,
.post-media-category ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-list-category ul li,
.post-media-category ul li {
	position: relative;
	display: inline;
	font-size: 0.928571em;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 0 30px 0 0;
}

.post-list-category ul li:last-child,
.post-media-category ul li:last-child {
	margin: 0;
}

.post-list-category ul li:after,
.post-media-category ul li:after {
	position: absolute;
	content: '';
	top: 0;
	right: -17px;
	width: 1px;
	height: 13px;
	background-color: #cacaca;
}

.post-list-category ul li:last-child:after,
.post-media-category ul li:last-child:after {
	display: none;
}

.post-list-category ul li a,
.post-media-category ul li a {
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-list-category ul li a:hover,
.post-media-category ul li a:hover {
	color: #fff;
	text-decoration: none;
}

.post-entry {
	position: relative;
	padding: 10px 30px;
	background-color: #fff;
}

.post-type-slide .post-entry {
}

.post-entry:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.post-entry h2 {
	position: relative;
	font-size: 1.571428em;
	font-weight: 600;
	color: #4a4a4a;
	line-height: 1.2em;
	text-transform: uppercase;
	margin: 0 0 25px;
	padding: 0 0 11px;
	border-bottom: #e7e7e7 solid 1px;
}

.post-entry h2:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 3px;
	background-color: #e7cd3b;
}

.post-entry h2 a {
	color: #4a4a4a;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-entry h2 a:hover {
	text-decoration: none;
	color: #7a7a7a;
}

.post-description {
	margin: 0 0 5px;
	overflow: hidden;
}

.post-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-meta ul li {
	position: relative;
	display: inline;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.857142em;
	text-transform: uppercase;
	margin: 0 25px 0 0;
	white-space: nowrap;
}

.post-meta ul li:last-child {
	margin: 0;
}

.post-meta ul li:nth-child(3) span {
	margin: 0 0 0 7px;
}

.post-meta ul li:after {
	position: absolute;
	content: '';
	top: 2px;
	right: -14px;
	width: 1px;
	height: 13px;
	background-color: #e7e7e7;
}

.post-meta ul li:last-child:after {
	display: none;
}

.post-meta ul li a {
	color: #aaaaaa;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-meta ul li a:hover {
	text-decoration: none;
	color: #e7cd3b;
}

.post-share {
	min-height: 55px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 18px 30px 16px 30px;
	background-color: #f5f5f5;
}

.share-btn,
.share-masonry {
	width: 70px;
	position: relative;
	padding: 0 0 0 23px;
	color: #7a7a7a;
	cursor: pointer;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.share-btn:before,
.share-masonry:before {
	position: absolute;
	font-family: FontAwesome;
	content: '\f1e0';
	top: -2px;
	left: 0;
	font-size: 14px;
	color: #cacaca;
}

.share-btn:hover,
.share-masonry:hover {
	color: #aaaaaa;
}

.read-more-btn {
	float: right;
}

.read-more-btn a {
	position: relative;
	color: #7a7a7a;
	padding: 0 0 0 23px;
		
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.read-more-btn a:before {
	position: absolute;
	top: -4px;
	left: 0;
	font-size: 14px;
	color: #cacaca;
}

.read-more-btn a:hover {
	text-decoration: none;
	color: #aaaaaa;
}

.pagination {
	margin: 30px 0 0;
	overflow: hidden;
}

.pagination.pagination-masonry {
	margin: 0;
}

.pagination.pagination-masonry-fullwidth {
	display: table;
	margin: 0 auto;
}

.pagination.pagination-fullwidth {
	display: table;
	margin: 0 auto;
	margin-top: 30px;
}

.pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}

.pagination.pagination-fullwidth ul {
	float: none;
}

.pagination ul li {
	float: left;
	margin: 0 0 0 8px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 40px;
}

.pagination ul li:first-child {
	margin: 0;
}

.pagination ul li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #d2d2d2;
	background-color: #66727b;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.pagination ul li:hover a,
.pagination ul li.pagination-active a {
	text-decoration: none;
	color: #fff;
	background-color: #e7cd3b;
}

.post-video iframe {
	border: none;
}

.post-audio {
	overflow: hidden;
}

.post-audio iframe {
	width: 100%;
	border: none;
}


/********************************************
11.1 Post lists standard
*********************************************/
.share-standard {
	margin: 15px 0 0 0;
	padding: 0;
	list-style: none;
}

.share-standard li {
	position: relative;
	display: inline;
	font-size: 14px;
	margin: 0 0 0 26px;
}

.share-standard li:first-child {
	margin: 0;
}

.share-standard li:before {
	position: absolute;
	content: '';
	top: 1px;
	left: -15px;
	width: 1px;
	height: 13px;
	background-color: #cacaca;
}

.share-standard li:first-child:before {
	display: none;
}

.share-standard li a {
	color: #aaaaaa;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.share-standard li a:hover {
	color: #7a7a7a;
}

.post-gallery {
	width: 100%;
	overflow: hidden;
	background-color: #576269;
}

.megafolio-container {
	position: relative;
	width: 100%;
}

.mega-entry:first-child {
	border-radius: 10px 10px 0px 0px;
	overflow: hidden;
}

.mega-entry .mega-overlay-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	opacity: 0;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.mega-entry:hover .mega-overlay-hover {
	opacity: 0.4;
}

.post-list-slide {
	background-color: #576269;
}

.post-list-slide .slides li {
	border-radius: 10px 10px 0px 0px;
	overflow: hidden;
}

.post-list-slide .slides li figure {
	position: relative;
}

.flexControl-custom {
	padding: 21px 30px 0px 30px;
	background-color: #fff;
}

.flexControl-custom-nav {
	margin: 0;
	padding: 0;
	text-align: center;
}

.flexControl-custom-nav li {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 6px 0 0;
	border-radius: 50%;
	background-color: #e7e7e7;
	cursor: pointer;
	
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.flexControl-custom-nav li:last-child {
	margin: 0;
}

.flexControl-custom-nav li.flex-active {
	position: relative;
	bottom: -2px;
	background-color: transparent;
	border: #d2d2d2 solid 2px;
}

.post-audio iframe {
	margin: 0 0 -6px;
}


/********************************************
11.2 Post lists blog list
*********************************************/
article.post-blog-list {
	border-radius: 0px;
	overflow: inherit;
}

.blog-list-img {
	margin: 0 0 15px;
}

.blog-list-img figure {
	position: relative;
	height: 242px;
	border-radius: 10px;
	overflow: hidden;
}

.blog-list-img figure .overlay-hover {
	opacity: 0;
}

.blog-list-img figure:hover .overlay-hover {
	opacity: 0.4;
}

.post-blog-list .post-entry {
	border-radius: 10px;
	padding: 0 0 55px !important;
	background-color: #f5f5f5 !important;
}

.post-blog-list .post-entry:after {
	display: none;
}

.blog-list-details {
	padding: 40px 30px;
	background-color: #fff;
	border-radius: 10px 10px 0 0;
	
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.post-blog-list .post-entry h2 {
	font-size: 1.285714em !important;
	padding: 0 0 12px !important;
}

.post-blog-list .post-meta ul li {
	font-size: 0.785714em;
	margin: 0 25px 0 0;
}

.post-blog-list .post-meta ul li:after {
	right: -15px;
	height: 12px;
}

.post-blog-list .post-description {
	margin: 0 0 -5px;
}

.post-blog-list .post-meta ul li:nth-child(3) span {
	margin: 0;
}

.post-blog-list .post-meta ul li:nth-child(4) span {
	margin: 0 0 0 6px;
}

.post-blog-list.post-type-video .blog-list-img figure:before,
.post-blog-list.post-type-audio .blog-list-img figure:before {
	position: absolute;
	font-family: FontAwesome;
	font-size: 30px;
	text-align: center;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	color: #fff;
	border-radius: 50%;
	background-color: rgba(36,41,44,0.6);
	z-index: 1;
}

.post-blog-list.post-type-video .blog-list-img figure:before {
	content: '\f008';
	line-height: 58px;
}

.post-blog-list.post-type-audio .blog-list-img figure:before {
	content: '\f130';
	line-height: 60px;
}

.blog-list-share {
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 16px;
	height: 16px;
	line-height: 16px;
	margin: 0 0 0 -8px;
	text-align: center;
	cursor: pointer;
}

.blog-list-share i {
	font-size: 16px;
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.blog-list-share:hover i {
	color: #aaaaaa;
}

.share-tooltip {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0 0 0 -76px;
	padding: 10px 20px;
	border-radius: 4px;
	background-color: #1d2123;
	z-index: 3;
	
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

.share-tooltip ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

.share-tooltip ul:before {
	position: absolute;
	content: '';
	top: -14px;
	left: 50%;
	width: 15px;
	height: 15px;
	margin: 0 0 0 -6.5px;
	border-radius: 2px;
	background-color: #1d2123;
	
	transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.share-tooltip ul li {
	display: inline;
	margin: 0 20px 0 0;
}

.share-tooltip ul li:last-child {
	margin: 0;
}

.share-tooltip ul li a {
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.share-tooltip ul li a:hover {
	color: #fff;
}


/********************************************
11.3 Post lists masonry
*********************************************/
.post-masonry .container {
	width: 100%;
}

.masonry-article-wrap {
	position: relative;
}

.masonry-wrapper .post-entry {
}

.masonry-wrapper .post-type-slide .post-entry {
}

.masonry-wrapper .post-entry h2 {
	font-size: 1.285714em !important;
	padding: 0 0 12px !important;
}

.masonry-wrapper .post-meta ul li {
	font-size: 0.785714em;
}

.masonry-wrapper .post-meta ul li:after {
	height: 12px;
}

.masonry-wrapper .share-tooltip {
	top: 100% !important;
	left: 0 !important;
	right: inherit !important;
	margin: 0;
}

.masonry-wrapper .share-tooltip ul:before {
	left: 50% !important;
	margin: 0 0 0 -6.5px !important;
}


/********************************************
12.0 Archive page
*********************************************/
.archive-title {
	position: relative;
	margin: 0 0 30px;
	padding: 33px 30px;
	text-align: center;
	border-radius: 10px;
	background-color: #576269;
}

.archive-title:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	margin: 0 0 0 -30px;
	width: 60px;
	height: 3px;
	background-color: #e7cd3b;
}

.archive-title span {
	position: relative;
	display: inline-block;
	font-size: 18px;
	color: #cacaca;
	margin: 0 25px 0 0;
}

.archive-title span:after {
	position: absolute;
	content: '';
	top: 7px;
	right: -14px;
	width: 1px;
	height: 13px;
	background-color: #9a9a9a;
}

.archive-title h1 {
	display: inline;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}


/********************************************
13.0 Post single
*********************************************/
.post-single-details-body {
	padding: 54px 30px 60px 30px;
	background-color: #fff;
}

.post-single-details-body .page-title h1,
.post-single-details-body .page-title h2,
.post-single-details-body .page-title h3 {
	margin: 0 0 14px;
}

.post-single-details-body .subtitle h2 {
	margin: 0 0 31px;
}

.post-single-details-body .post-meta {
	margin: 0 0 29px;
}

.post-single-details-body .post-meta ul li:nth-child(3) span {
	margin: 0;
}

.post-single-details-body .post-meta ul li:nth-child(4) span {
	margin: 0 0 0 6px;
}


/********************************************
13.1 Post tags
*********************************************/
.post-single-tags {
	margin: 0 0 45px;
	overflow: hidden;
}

.post-single-tags h5 {
	margin: 0 0 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.post-single-tags a {
	font-size: 0.928571em;
	color: #8a8a8a;
	text-decoration: none;
	float: left;
	margin: 0px 5px 5px 0px;
	white-space: nowrap;
	background-color: #f2f2f2;
	padding: 0px 16px;
	border-radius: 4px;
	line-height: 32px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.post-single-tags a:hover {
	color: #fff;
	background-color: #e7cd3b;
}


/********************************************
13.2 Post pagination
*********************************************/
.post-pagination-wrap {
	margin: 42px 0 -43px 0;
	overflow: hidden;
}

.post-pagination {
	margin: 0 0 30px;
}

.post-pagination span {
	position: relative;
	font-size: 0.857142em;
	color: #9a9a9a;
	text-transform: uppercase;
}

.post-pagination h4 {
	margin: 1px 0 0;
	font-size: 1.285714em;
	font-weight: 600;
	color: #4a4a4a;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-pagination:hover h4 {
	color: #e7cd3b;
}

.post-pagination a:hover {
	text-decoration: none;
}

.post-pagination.pagination-prev {
	float: left;
	padding: 0 15px 0 0;
}

.post-pagination.pagination-next {
	float: right;
	text-align: right;
	padding: 0 0 0 15px;
}

.post-pagination.pagination-prev span {
	padding: 0 0 0 15px;
}

.post-pagination.pagination-next span {
	padding: 0 15px 0 0;
}

.post-pagination.pagination-prev span:before,
.post-pagination.pagination-next span:after {
	position: absolute;
	top: 0;
	font-family: FontAwesome;
	font-size: 10px;
	color: #e7cd3b;
}

.post-pagination.pagination-prev span:before {
	left: 0;
	content: '\f053';
}

.post-pagination.pagination-next span:after {
	right: 0;
	content: '\f054';
}


/********************************************
13.3 Post author
*********************************************/
.post-author {
	position: relative;
	padding: 40px 30px 35px 30px;
	background-color: #576269;
}

.post-author-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #576269;
	opacity: 0.75;
	z-index: 1;
}

.post-author-details {
	position: relative;
	z-index: 2;
}

.post-author-details > figure {
	margin: 0 0 27px;
}

.post-author-details > figure img {
	border-radius: 50%;
}

.post-author-details h3 {
	position: relative;
	margin: 0 0 20px;
	padding: 0 0 23px;
	font-size: 1.285714em;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}

.post-author-details h3:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 1px;
	margin: 0 0 0 -30px;
	background-color: #e7cd3b;
}

.post-author-description {
	color: #fff;
}

.post-author-social-media {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-author-social-media li {
	display: inline;
	margin: 0 15px 0 0;
}

.post-author-social-media li:last-child {
	margin: 0;
}

.post-author-social-media li a {
	color: #fff;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-author-social-media li a:hover {
	color: #e7cd3b;
}


/********************************************
13.4 Post related posts
*********************************************/
.post-related {
	margin: 0 0 12px;
}

.post-related .container {
	width: 100%;
}

.post-related-item figure {
	position: relative;
	margin: 0 0 19px;
}

.post-related-item figure .overlay-hover {
	opacity: 0;
}

.post-related-item figure:hover .overlay-hover {
	opacity: 1;
}

.post-related-item h4 {
	margin: 0;
	font-size: 1em;
	line-height: 1.4em;
}

.post-related-item h4 a {
	color: #7a7a7a;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-related-item h4 a:hover {
	text-decoration: none;
	color: #e7cd3b;
}


/********************************************
13.5 Post comments
*********************************************/
.post-comments {
	margin: 0 0 17px;
}

.post-comments .page-title span {
	font-family: 'Open Sans', sans-serif;
	margin: 0 0 0 10px;
}

.comment-list,
.comment-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list > li {
	margin: 0 0 30px;
	border-bottom: #e7e7e7 solid 1px;
}

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

.comment-list ul li {
	padding: 30px 0 0;
	border-top: #e7e7e7 solid 1px;
}

.comment-list ul li:first-child {
	border-top: none;
}

.comment-list ul {
	border-top: #e7e7e7 solid 1px;
}

.comment-wrapper {
	margin: 0 0 30px;
}

.comment-avatar {
	text-align: center;
}

.comment-avatar img {
	margin: 0 0 25px;
	border-radius: 50%;
}

.comment-name {
	margin: 0 0 15px;
	font-weight: 600;
	color: #4a4a4a;
}

.comment-name a {
	color: #4a4a4a;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.comment-name a:hover {
	color: #e7cd3b;
	text-decoration: none;
}

.comment-date {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.857142em;
	font-weight: 400;
	color: #aaaaaa;
	margin: 0 0 0 8px;
}

.comment-reply a {
	font-weight: 600;
	color: #e7cd3b;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.comment-reply a:hover {
	color: #4a4a4a;
	text-decoration: none;
}


/********************************************
13.6 Post type gallery 1
*********************************************/
.post-gallery-slide {
	position: relative;
	overflow: hidden;
	background-color: #576269;
}

.post-gallery-slide .slides li {
	position: relative;
	border-radius: 10px 10px 0px 0px;
	overflow: hidden;
}

.post-gallery-slide .slides li figure .overlay-hover {
	opacity: 0;
}

.post-gallery-slide .slides li figure:hover .overlay-hover {
	opacity: 0.4;
}


/********************************************
14.0 Form input
*********************************************/
.contact-form input[type=text],
.contact-form textarea {
	width: 100%;
	border-radius: 4px;
	border: #dadada solid 1px;
	position: relative;
	z-index: 2;
	background-color: transparent;
}

.contact-form input[type=text] {
	height: 45px;
	padding: 0 20px;
}

.contact-form textarea {
	height: 215px;
	padding: 11px 20px;
}

.contact-form input[type=text]:focus,
.contact-form textarea:focus {
	outline: 0;
}

.contact-form input[type=submit] {
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: -6px 0 0;
	padding: 12px 25px 11px 25px;
	border: none;
	border-radius: 4px;
	background-color: #66727b;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.contact-form input[type=submit]:hover {
	background-color: #75838d;
}

.contact-form input[type=submit]:focus {
	outline: 0;
}

.contact-form .box {
	position: relative;
}

.contact-form input ~ label,
.contact-form textarea ~ label {
	position: absolute;
	top: 13px;
	left: 20px;
	font-size: 0.928571em;
	color: #9a9a9a;
	z-index: 1;
}

.contact-form input:focus ~ label,
.contact-form textarea:focus ~ label,
.contact-form input:valid ~ label,
.contact-form textarea:valid ~ label {
	display: none;
}

.loading {
	display: none;
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -80px;
	color: #fff;
}

#reply_message {
	display: none;
	text-align: center;
	padding: 15px 0 0;
	clear: both;
}


/********************************************
15.0 Sidebar widget
*********************************************/
.widget {
	margin: 0 0 30px;
}

.widget:last-child {
	margin: 0;
}

.widget-title {
	margin: 0 0 15px;
	padding: 19px 30px;
	border-radius: 10px;
	background-color: #1d2123;
}

.widget-title h3 {
	margin: 0;
	font-size: 1.285714em;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

.widget-detail {
	position: relative;
	padding: 40px 30px;
	border-radius: 10px;
	color: #d2d2d2;
	background-color: #576269;
	overflow: hidden;
}

.widget-detail:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 3px;
	margin-left: -30px;
	background-color: #e7cd3b;
}

.disableSticky {
	transform: none !important;
}


/********************************************
15.1 Widget about us
*********************************************/
.widget_about_us .widget-detail {
	padding: 0;
}

.widget-about-detail {
	padding: 35px 30px;
}

.widget-about-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.widget-about-social ul li {
	display: inline;
	margin: 0 15px 0 0;
}

.widget-about-social ul li:last-child {
	margin: 0;
}

.widget-about-social ul li a {
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.widget-about-social ul li a:hover {
	color: #fff;
}


/********************************************
15.2 Widget recent posts
*********************************************/
.recent-wrap {
	display: table;
	width: 100%;
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: #858585 solid 1px;
}

.recent-wrap:last-child {
	margin: 0;
	padding: 0;
	border: none !important;
}

.recent-post-thumb {
	display: table-cell;
	vertical-align: top;
	width: 80px;
}

.recent-post-thumb figure {
	position: relative;
	width: 80px;
	height: 80px;
	overflow: hidden;
}

.recent-post-thumb figure .overlay-hover {
	opacity: 0;
}

.recent-post-thumb figure:hover .overlay-hover {
	opacity: 1;
}

.recent-post-detail {
	display: table-cell;
	vertical-align: top;
	padding: 0 0 0 20px;
}

.recent-post-detail h4 {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.6em;
	margin: -2px 0 10px 0;
	color: #d2d2d2;
}

.recent-post-detail a {
	font-weight: 600;
	color: #fff;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.recent-post-detail a:hover {
	text-decoration: none;
	color: #e7cd3b;
}


/********************************************
15.3 Widget categories
*********************************************/
.widget_categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_categories ul li {
	font-weight: 600;
	padding: 15px 0px 14px 0px;
	border-bottom: #858585 solid 1px;
}

.widget_categories ul li:first-child {
	padding: 0px 0px 14px 0px;
}

.widget_categories ul li:last-child {
	padding: 15px 0px 0px 0px;
	border: none !important;
}

.widget_categories ul li span {
	font-family: 'Open Sans', sans-serif;
	margin: 0 0 0 10px;
}

.widget_categories ul li a {
	position: relative;
	color: #d2d2d2;
	padding: 0 0 0 21px;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.widget_categories ul li a:hover {
	text-decoration: none;
	color: #fff;
}

.widget_categories ul li > ul {
	padding: 0 0 0 20px;
}

.widget_categories ul li > ul li:first-child {
	padding: 15px 0px 14px 0px;
}

.widget_categories ul ul {
	margin-top: 14px;
	border-top: #858585 solid 1px;
}

.widget_categories ul li a:before {
	position: absolute;
	content: '';
	top: -1px;
	left: 0;
	font-family: FontAwesome;
	content: '\f10c';
	font-size: 12px;
	color: #cacaca;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.widget_categories ul li a:hover:before {
	content: '\f111';
	color: #fff;
}


/********************************************
15.4 Widget instagram
*********************************************/
.widget.widget_instagram {
	margin: 0 0 15px;
	overflow: hidden;
}

.widget_instagram .widget-detail {
	width: calc(100% + 45px);
	padding: 0 15px;
	margin: 0 0 0 -22px;
	border-radius: 0;
	background-color: transparent !important;
}

.widget_instagram .widget-detail:after {
	display: none;
}

.widget_instagram ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_instagram ul li {
	width: 33.33333%;
	float: left;
	padding-left: 7.5px;
	padding-right: 7.5px;
	margin: 0 0 15px;
}

.widget_instagram ul li img {
	width: 100%;
	height: auto;
}

.widget_instagram ul li figure {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.widget_instagram ul li figure .overlay-hover {
	opacity: 0;
}

.widget_instagram ul li figure:hover .overlay-hover {
	opacity: 1;
}


/********************************************
15.5 Widget follow subscribe
*********************************************/
.widget_follow_subscribe .widget-detail {
	padding: 36px 30px 40px 30px;
}

.widget_follow_subscribe p {
	text-align: center;
}

.follow-subscribe-social {
	margin: 0 0 15px;
	padding: 0 0 14px;
	border-bottom: #858585 solid 1px;
}

.follow-subscribe-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.follow-subscribe-social ul li {
	display: inline;
	margin: 0 15px 0 0;
}

.follow-subscribe-social ul li:last-child {
	margin: 0;
}

.follow-subscribe-social ul li a {
	font-size: 17px;
	color: #cacaca;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.follow-subscribe-social ul li a:hover {
	color: #fff;
}

form.subscribe {
	margin-top: -7px;
}

form.subscribe input {
	display: block;
	width: 100%;
}

.subscribe-email {
	height: 45px;
	border-radius: 4px;
	border: none;
	margin: 0 0 15px;
	padding: 0 15px;
	font-size: 0.928571em;
	background-color: rgba(255,255,255,0.2);
}

.subscribe-email:focus {
	outline: 0;
}

/* ===== Placeholder color ===== */
form.subscribe .placeholder { /* Internet Explorer 9 */
	color: #cacaca;
}

form.subscribe input:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #cacaca;
}

form.subscribe input::-webkit-input-placeholder { /* WebKit browsers */
    color: #cacaca;
}

form.subscribe input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fafafa;
}

form.subscribe input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fafafa;
}

.subscribe-button {
	height: 45px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	border-radius: 4px;
	border: none;
	background-color: #e7cd3b;
	
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

.subscribe-button:hover {
	background-color: #f1d640;
}

.subscribe-button:focus {
	outline: 0;
}


/********************************************
15.6 Widget banner sidebar
*********************************************/
.widget_banner_sidebar .widget-detail {
	padding: 0;
	border-radius: 0;
	background-color: transparent !important;
}

.widget_banner_sidebar .widget-detail:after {
	display: none;
}

.widget_banner_sidebar .widget-detail img {
	max-width: 100%;
	height: auto;
}


/********************************************
15.7 Widget tag cloud
*********************************************/
.widget_tag_cloud .widget-detail {
	padding: 0;
	border-radius: 0;
	background-color: transparent !important;
}

.widget_tag_cloud .widget-detail:after {
	display: none;
}

.widget_tag_cloud .tagcloud {
	overflow: hidden;
}

.widget_tag_cloud .tagcloud a {
	font-size: 0.928571em;
	color: #d2d2d2;
	text-decoration: none;
	float: left;
	margin: 0px 5px 5px 0px;
	white-space: nowrap;
	background-color: #576269;
	padding: 0px 16px;
	border-radius: 4px;
	line-height: 37px;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tagcloud a:hover {
	color: #fff;
	background-color: #e7cd3b;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.widget_tag_cloud .tagcloud a span {
	font-family: 'Open Sans', sans-serif;
	margin: 0 0 0 5px;
}


/********************************************
15.8 Widget sidebar color
*********************************************/
.widget-detail.widget-color {
	color: #fff;
	background-color: #e7cd3b;
}

.widget-detail.widget-color:after {
	background-color: #1d2123;
}

.widget-color .widget-about-social ul li a {
	color: #fff;
}

.widget-color .widget-about-social ul li a:hover {
	color: #1d2123;
}

.widget-color .recent-wrap {
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}

.widget-color .recent-post-detail h4,
.widget-color .recent-post-detail a {
	color: #fff;
}

.widget-color .recent-post-detail a:hover {
	color: #1d2123;
}

.widget_categories .widget-color ul li {
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}

.widget_categories .widget-color ul ul {
	border-top: rgba(255,255,255,0.5) solid 1px;
}

.widget_categories .widget-color ul li a,
.widget_categories .widget-color ul li a:hover,
.widget_categories .widget-color ul li a:before,
.widget_categories .widget-color ul li a:hover:before {
	color: #fff;
}

.widget-color .follow-subscribe-social {
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}

.widget-color .follow-subscribe-social ul li a {
	color: #fff;
}

.widget-color .follow-subscribe-social ul li a:hover {
	color: #1d2123;
}

.widget-color .subscribe-email {
	background-color: rgba(255,255,255,0.4);
}

/* ===== Placeholder color ===== */
.widget-color form.subscribe .placeholder { /* Internet Explorer 9 */
	color: #fff;
}

.widget-color form.subscribe input:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #fff;
}

.widget-color form.subscribe input::-webkit-input-placeholder { /* WebKit browsers */
    color: #fff;
}

.widget-color form.subscribe input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.widget-color form.subscribe input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
}

.widget-color .subscribe-button {
	color: #fff;
	background-color: #2a2a2a;
}

.widget-color .subscribe-button:hover {
	background-color: #3f3f3f;
}


/********************************************
16.0 Footer
*********************************************/
.footer-section {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.footer-wrapper {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.footer-details {
	padding: 40px 30px 10px 30px;
	background-color: #576269;
}


/********************************************
16.1 Footer instagram
*********************************************/
.footer-instagram {
	background-color: #576269;
}

.footer-instagram h2 {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.285714em;
	font-weight: 600;
	color: #fff;
	background-color: #1d2123;
	padding: 27px 30px;
}

.footer-instagram-carousel,
.footer-carousel figure {
	position: relative;
}

.footer-carousel figure .overlay-hover {
	opacity: 0;
	z-index: 2;
}

.footer-carousel figure:hover .overlay-hover {
	opacity: 1;
}

/* ===== Custom Navigation ===== */
.footer-instagram-carousel .footer-carouselArrow {
	position: absolute;
	top: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0;
	border-radius: 50%;
	background-color: rgba(36,41,44,0.65);
	z-index: 1;
	cursor: pointer;
	font-size: 24px;
	color: rgba(255,255,255,0.85);
	text-align: center;
	line-height: 34px;
	opacity: 0;
	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

.footer-instagram-carousel:hover .footer-carouselArrow {
	opacity: 1;
}

.footer-instagram-carousel .footer-carouselArrow:hover {
	background-color: rgba(36,41,44,0.85);
	color: rgba(255,255,255,1);
}

.footer-carouselArrow.prev {
	left: 15px;
}

.footer-carouselArrow.next {
	right: 15px;
}

.footer-carouselArrow.prev i {
	margin: 0 2px 0 0;
}

.footer-carouselArrow.next i {
	margin: 0 0 0 2px;
}


/********************************************
16.2 Footer widget
*********************************************/
.footer-details .widget-title {
	margin: 0 0 30px;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
}

.footer-details .widget-title h3 {
	position: relative;
	font-size: 1.142857em;
	padding: 0 0 12px;
	border-bottom: #858585 solid 1px;
}

.footer-details .widget-title h3:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 40px;
	height: 3px;
	background-color: #e7cd3b;
}

.footer-details .widget-detail {
	padding: 0;
	border-radius: 0;
	color: #cacaca;
	background-color: transparent !important;
}

.footer-details .widget-detail:after {
	display: none;
}

/* ===== Footer widget about us ===== */
.footer-details .widget-about-detail {
	padding: 25px 0 0 !important;
}

.footer-details .widget-about-social ul {
	text-align: left;
}

.footer-details .widget-about-social ul li {
	font-size: 17px;
}

.footer-details .widget-about-social ul li a {
	color: #cacaca !important;
}

.footer-details .widget-about-social ul li a:hover {
	color: #fff !important;
}

/* ===== Footer widget recent posts ===== */
.footer-details .recent-wrap {
	border-bottom: #858585 solid 1px;
}

.footer-details .recent-post-detail h4 {
	color: #cacaca;
}

/* ===== Footer widget categories ===== */
.footer-details .widget_categories ul li {
	border-bottom: #858585 solid 1px;
}

.footer-details .widget_categories ul li a {
	color: #cacaca;
}

.footer-details .widget_categories ul li a:hover {
	color: #fff;
}

.footer-details .widget_categories ul ul {
	border-top: #858585 solid 1px;
}

.footer-details .widget_categories ul li a:before {
	color: #cacaca;
}

.footer-details .widget_categories ul li a:hover:before {
	color: #fff;
}

/* ===== Footer widget instagram ===== */
.footer-details .widget_instagram .widget-detail {
	width: calc(100% + 45px);
	padding: 0 15px;
	margin: 0 0 0 -22px;
}

/* ===== Footer widget follow subscribe ===== */
.footer-details .widget_follow_subscribe p,
.footer-details .follow-subscribe-social ul {
	text-align: left;
}

.footer-details .follow-subscribe-social {
	border-bottom: #858585 solid 1px;
}

.footer-details .follow-subscribe-social ul li a {
	color: #cacaca;
}

.footer-details .follow-subscribe-social ul li a:hover {
	color: #fff;
}

.footer-details .subscribe-email {
	background-color: rgba(255,255,255,0.2);
}

.footer-details form.subscribe .placeholder { /* Internet Explorer 9 */
	color: #cacaca;
}

.footer-details form.subscribe input:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #cacaca;
}

.footer-details form.subscribe input::-webkit-input-placeholder { /* WebKit browsers */
    color: #cacaca;
}

.footer-details form.subscribe input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fafafa;
}

.footer-details form.subscribe input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fafafa;
}

.footer-details .subscribe-button {
	background-color: #e7cd3b;
}

.footer-details .subscribe-button:hover {
	background-color: #f1d640;
}

/* ===== Footer widget tag cloud ===== */
.footer-details .widget_tag_cloud .tagcloud a {
	color: #dadada;
	background-color: #6f7c85;
}

.footer-details .widget_tag_cloud .tagcloud a:hover {
	color: #fff;
	background-color: #e7cd3b;
}


/********************************************
16.3 Footer bottom
*********************************************/
.footer-bottom {
	min-height: 45px;
	font-size: 12px;
	color: #aaaaaa;
	padding: 13px 30px !important;
	background-color: #1e2225;
}

.footer-bottom a {
	color: #eaeaea;
	
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.footer-bottom a:hover {
	text-decoration: none;
	color: #fff;
}

.bottom-text-left {
	margin: 0 0 2px;
}

.bottom-text-left,
.bottom-text-right {
	text-align: center;
}


/********************************************
17.0 Back to top
*********************************************/
.back-to-top {
	display: none;
	position: fixed;
	bottom: 2em;
	right: 2em;
	width: 48px;
	height: 48px;
	text-align: center;
	color: #dadada;
	border-radius: 4px;
	z-index: 1000;
	background-color: rgba(102,114,123,0.85);
	
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.back-to-top:hover {
	color: #fff;
	background-color: rgba(102,114,123,1);
}

.back-to-top i {
	font-size: 30px;
	line-height: 44px;
}


/********************************************
18.0 Hover effect
*********************************************/
.overlay-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
		
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}


/********************************************
19.0 Media queries for responsive design
*********************************************/
@media (min-width: 480px) {
	.content-details-body {
		padding: 54px 40px 60px 40px;
	}
	
	.overlay-close {
		width: 40px;
		height: 40px;
	}
	
	.overlay-close:before,
	.overlay-close:after {
		width: 54px;
		margin: 19px 0 0 -7px;
	}
	
	.search-form input {
		height: 56px;
		font-size: 1.7142em;
	}
	
	.social-media-share2 ul {
		padding: 0 15px;
	}
	
	.social-media-share2 ul li {
		margin: 0 10px 0 0;
	}
	
	.home-slide-category {
		display: block;
	}
	
	.home-slide-caption {
		width: 70%;
	}
	
	.home-slide-caption h1 {
		font-size: 1.2857142em;
	}
	
	.home-slide-link a {
		font-size: 1em;
		padding: 10px 0px;
	}
	
	.home-slide-link a:hover {
		padding: 10px;
	}
	
	.page-title h1 {
		font-size: 2.142857em;
	}
	
	.page-title h2 {
		font-size: 2em;
		padding: 0 0 10px;
	}
	
	.page-title h3 {
		font-size: 1.714285em;
		padding: 0 0 11px;
	}
	
	.post-single-details-body .page-title h1 {
		font-size: 2em;
	}
	
	.breadcrumbs ul {
		padding: 11px 40px 13px 40px;
	}
	
	.post-img .post-list-category {
		padding: 19px 40px;
	}
	
	.post-media-category {
		padding: 15px 40px;
	}
	
	.post-entry {
		padding: 10px 30px;
	}
	
	.post-type-slide .post-entry {
	}
	
	.masonry-wrapper .post-entry {
	}
	
	.masonry-wrapper .post-type-slide .post-entry {
	}
	
	.post-entry h2 {
		font-size: 2em;
		padding: 0 0 9px;
	}
	
	.post-share {
		padding: 18px 40px 16px 40px;
	}
	
	.flexControl-custom {
		padding: 21px 40px 0px 40px;
	}
	
	.blog-list-img figure {
		height: 325px;
	}
	
	.blog-list-details {
		padding: 40px;
	}
	
	.archive-title {
		padding: 33px 40px;
	}
	
	.archive-title span,
	.archive-title h1 {
		font-size: 2em;
	}
	
	.archive-title span:after {
		top: 11px;
		height: 20px;
	}
	
	.post-single-details-body {
		padding: 54px 40px 60px 40px;
	}
	
	.post-author {
		padding: 40px 40px 35px 40px;
	}
	
	.widget-title {
		padding: 19px 40px;
	}
	
	.widget-detail {
		padding: 40px;
	}
	
	.widget-about-detail {
		padding: 35px 40px;
	}
	
	.widget_follow_subscribe .widget-detail {
		padding: 36px 40px 40px 40px;
	}
	
	.footer-details .widget_follow_subscribe .widget-detail {
		padding: 0;
	}
	
	.footer-details {
		padding: 40px 40px 10px 40px;
	}
	
	.footer-instagram h2 {
		padding: 27px 40px;
	}
	
	.footer-carouselArrow.prev {
		left: 20px;
	}
	
	.footer-carouselArrow.next {
		right: 20px;
	}
	
	.footer-bottom {
		padding: 13px 40px !important;
	}
}

@media (min-width: 768px) {
	.logo {
		height: auto;
		margin: 60px 0 40px 0;
	}
	
	.logo img {
		height: auto;
	}
	
	.nav-menu {
		min-height: 60px;
		padding: 60px 0 0;
	}
	
	.nav-menu > ul > li:first-child > a {
		padding: 15px 25px 7px 25px;
	}
	
	.nav-menu > ul > li:last-child > a {
		padding: 7px 25px 15px 25px;
	}
	
	.nav-menu ul li > a {
		padding: 7px 25px;
	}
	
	.nav-menu ul ul {
		padding: 0 0 0 25px;
	}
	
	.burger-menu {
		top: 18px;
		left: 25px;
	}
	
	.search-open {
		top: 20px;
		right: 25px;
	}
	
	.overlay-close-wrapper {
		top: 30px;
		right: 20px;
	}
	
	.search-form input {
		height: 60px;
		font-size: 2.1428em;
	}
	
	.home-slide-caption {
		width: 76%;
	}
	
	.home-slide-caption h1 {
		font-size: 2.142857em;
		line-height: 1.2em;
		margin: 0 0 46px;
	}
	
	.home-slide-category {
		margin: 0 0 32px;
	}
	
	.home-slide-link a {
		padding: 15px 0px;
	}
	
	.home-slide-link a:hover {
		padding: 15px;
	}
	
	.home-slide-nav a {
		width: 42px;
		height: 42px;
		margin-top: -21px;
	}
	
	.home-slide-nav .slide-prev {
		left: 25px;
	}
	
	.home-slide-nav .slide-next {
		right: 25px;
	}
	
	.home-slide-nav a i {
		font-size: 28px;
		line-height: 42px;
	}
	
	.home-slide-nav .slide-prev i {
		margin: -1px 0 0 -2px;
	}
	
	.home-slide-nav .slide-next i {
		margin: -1px -4px 0 0;
	}
	
	.post-share {
		overflow: hidden;
	}
	
	.share-btn {
		float: left;
	}
	
	.share-standard {
		margin: -1px 0 0 0;
	}
	
	.share-standard li:first-child {
		margin: 0 0 0 26px;
	}
	
	.share-standard li:first-child:before {
		display: block;
	}
	
	.blog-list-box {
		display: table;
		width: 100%;
	}
	
	.blog-list-img,
	.blog-list-box .blog-entry {
		display: table-cell;
		vertical-align: top;
	}
	
	.blog-list-img {
		margin: 0;
		width: 230px;
		padding: 0 15px 0 0;
	}
	
	.blog-list-img figure {
		width: 100%;
		height: 211px;
	}
	
	.post-blog-list .post-entry {
		padding: 0 40px 0 0 !important;
	}
	
	.blog-list-details {
		min-height: 211px;
		padding: 40px 30px;
		border-radius: 10px 0 0 10px;
		
		-webkit-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-moz-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-ms-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-o-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
	}
	
	.post-blog-list .post-entry h2 {
		margin: -4px 0 25px 0;
	}
	
	.post-blog-list .post-meta {
		margin: 0 0 -6px;
	}
	
	.blog-list-share {
		left: inherit;
		right: 12px;
		bottom: 50%;
		margin: 0 0 -8px;
	}
	
	.share-tooltip {
		top: 64%;
		left: inherit;
		right: 0;
		margin: 0;
	}
	
	.share-tooltip ul:before {
		left: inherit;
		right: -7px;
		margin: 0;
	}
	
	.widget_instagram ul li {
		width: 20%;
	}
	
	.comment-list > li > ul {
		padding: 0 0 0 120px;
	}
	
	.comment-wrapper {
		margin: 0;
		display: table;
		width: 100%;
	}
	
	.comment-avatar {
		width: 90px;
		text-align: inherit;
		display: table-cell;
		vertical-align: top;
	}
	
	.comment-avatar figure {
		height: 90px;
		margin: 0 0 30px;
	}
	
	.comment-details {
		position: relative;
		display: table-cell;
		vertical-align: top;
		padding: 0 0 0 30px;
	}
	
	.comment-name {
		padding: 0 60px 0 0;
	}
	
	.comment-reply {
		position: absolute;
		top: 0;
		right: 0;
	}
	
	.contact-form.comment-input input[type=text] {
		width: 320px;
	}
}

@media (min-width: 992px) {
	.content-section-body {
		padding-right: 15px;
	}
	
	.sidebar-section-body {
		padding-left: 15px;
	}
	
	.nav-menu {
		padding: 0 60px;
	}
	
	.nav-menu > ul {
		display: block !important;
		border: none;
		text-align: center;
	}
	
	.nav-menu ul li {
		position: relative;
		display: inline-block;
		margin: 0 -2px;
	}
	
	.nav-menu ul li:after {
		position: absolute;
		display: block;
		content: '';
		top: 0;
		width: 0;
		height: 100%;
		background-color: #e7cd3b;
		z-index: 1;
		opacity: 0;
		
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		
		-webkit-transition: all 0.18s ease-in-out;
		-moz-transition: all 0.18s ease-in-out;
		-ms-transition: all 0.18s ease-in-out;
		-o-transition: all 0.18s ease-in-out;
		transition: all 0.18s ease-in-out;
	}

    .nav-menu ul li a.active {
        background-color: #e7cd3b !important;
        color: #fff;
    }
	
	.nav-menu ul li:hover:after,
	.nav-menu ul li.current-menu:after {
		width: 100%;
		opacity: 1;
	}
	
	.nav-menu ul li > a {
		position: relative;
		width: 100%;
		display: inherit;
		padding: 19px 17px !important;
		z-index: 2;
	}
	
	.nav-menu ul ul {
		position: absolute;
		width: 200px;
		top: 100%;
		left: 0;
		padding: 0;
		background-color: #282d30;
		text-align: left;
		z-index: 3;
		
		-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
		-moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
		-ms-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
		-o-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
		box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
	}
	
	.nav-menu > ul > li > ul.submenuRight {
		left: inherit;
		right: 0;
	}
	
	.nav-menu ul ul ul {
		top: 0;
		left: 100%;
		z-index: 4;
	}
	
	.nav-menu > ul > li > ul.submenuRight > li ul,
	.nav-menu > ul > li > ul ul.nextmenuRight,
	.nav-menu > ul > li > ul ul.nextmenuRight ul {
		left: -100% !important;
	}
	
	.nav-menu ul ul li {
		width: 100%;
		margin: 0;
		border-bottom: #3f474c solid 1px;
	}
	
	.nav-menu ul ul li:last-child {
		border-bottom: none;
	}
	
	.nav-menu ul ul li:after {
		width: 100%;
		opacity: 1;
		background-color: transparent;
		
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.nav-menu ul ul li:hover:after {
		background-color: #e7cd3b;
	}
	
	.nav-menu ul ul li > a {
		color: #aeaeae;
		padding: 15px 17px 14px 17px !important;
	}
	
	/* ===== Submenu border radius start ===== */
	.nav-menu ul ul,
	.nav-menu ul ul li:last-child:after {
		border-radius: 0 0 4px 4px;
	}
	
	.nav-menu ul ul ul {
		border-radius: 0 4px 4px 4px;
	}
	
	.nav-menu > ul > li > ul.submenuRight > li ul,
	.nav-menu > ul > li > ul ul.nextmenuRight,
	.nav-menu > ul > li > ul ul.nextmenuRight ul {
		border-radius: 4px 0 4px 4px !important;
	}
	
	.nav-menu ul ul ul li:first-child:after {
		border-radius: 0 4px 0 0;
	}
	
	.nav-menu > ul > li > ul.submenuRight > li ul li:first-child:after,
	.nav-menu > ul > li > ul ul.nextmenuRight li:first-child:after {
		border-radius: 4px 0 0 0;
	}
	/* ===== Submenu border radius end ===== */
	
	.burger-menu {
		display: none;
	}
	
	.overlay-close-wrapper {
		top: 60px;
		right: 15px;
	}
	
	.search-form input {
		height: 66px;
		font-size: 2.5714em;
	}
	
	.home-slide-caption {
		width: 62%;
	}
	
	.home-slide-caption h1 {
		line-height: 1.4em;
		margin: 0 0 65px;
	}
	
	.home-slide-category {
		margin: 0 0 29px;
	}
	
	.home-slide-link a {
		padding: 18px 0px 17px 0px;
	}
	
	.home-slide-link a:hover {
		padding: 18px 18px 17px 18px;
	}
	
	.home-slide-nav .slide-prev {
		left: 30px;
	}
	
	.home-slide-nav .slide-next {
		right: 30px;
	}
	
	.blog-list-img {
		width: 175px;
	}
	
	.blog-list-img figure {
		height: 160px;
	}
	
	.blog-list-details {
		min-height: 160px;
	}
	
	.post-list-fullwidth .post-blog-list .blog-list-img {
		width: 315px;
	}
	
	.post-list-fullwidth .post-blog-list .blog-list-img figure {
		height: 211px;
	}
	
	.post-list-fullwidth .post-blog-list .blog-list-details {
		min-height: 211px;
	}
	
	.share-tooltip {
		right: -55px;
	}
	
	.share-tooltip ul:before {
		left: 50%;
		right: inherit;
		margin: 0 0 0 -6.5px;
	}
	
	.widget_instagram ul li {
		width: 33.33333%;
	}
	
	.bottom-text-left {
		margin: 0;
	}
	
	.bottom-text-left {
		text-align: left;
	}
	
	.bottom-text-right {
		text-align: right;
	}
}

@media (min-width: 1200px) {
	.home-slider .home-slide-nav .slide-prev,
	.post-gallery-slide .home-slide-nav .slide-prev {
		left: -30px;
		opacity: 0;
		
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.home-slider .home-slide-nav .slide-next,
	.post-gallery-slide .home-slide-nav .slide-next {
		right: -30px;
		opacity: 0;
		
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.home-slider:hover .home-slide-nav .slide-prev,
	.post-gallery-slide:hover .home-slide-nav .slide-prev {
		left: 30px;
		opacity: 0.75;
	}
	
	.home-slider:hover .home-slide-nav .slide-next,
	.post-gallery-slide:hover .home-slide-nav .slide-next {
		right: 30px;
		opacity: 0.75;
	}
	
	.home-slider:hover .home-slide-nav a:hover,
	.post-gallery-slide:hover .home-slide-nav a:hover {
		opacity: 1;
	}
	
	.blog-list-img {
		width: 255px;
	}
	
	.post-list-fullwidth .post-blog-list .blog-list-img {
		width: 330px;
	}
	
	.blog-list-img figure {
		height: 211px;
	}
	
	.blog-list-details {
		min-height: 211px;
	}
	
	.footer-details .widget_follow_subscribe form {
		padding: 0 50px 0 0;
	}
}

/* == CUSTOM ==  */

/* == Animations == */
.image-overlay {
    position: relative;
    cursor: default;
    overflow: hidden;
}
.image-overlay img {
    width: 100%;
}
/* overlay horizontal slide*/
.overlay-hslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 0%;
    top: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-hslide a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-hslide a .icon-overlay {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-hslide {
    width: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay vertical slide*/
.overlay-vslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 0%;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-vslide a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-vslide a .icon-overlay {
    font-size: 40px;
    margin: 0;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-vslide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay fade*/
.overlay-fade {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-fade a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-fade a .icon-overlay {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-fade {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay zoom*/
.overlay-zoom {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-zoom a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-zoom a .icon-overlay,
.overlay-zoom a .icon-overlay.double {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-zoom {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.zoom-image img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.zoom-image:hover img {
    -webkit-transform: scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}
.rotate-image-right img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rotate-image-right:hover img {
    -webkit-transform: rotate(15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}
.rotate-image-left img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rotate-image-left:hover img {
    -webkit-transform: rotate(-15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(-15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(-15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}

/*--------------
      Menu
---------------*/
.wojo.menu {
    margin: 1rem 0rem;
    background-color: #FFFFFF;
    font-size: 0px;
    font-weight: normal;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    border-radius: 0.1875rem;
}
.wojo.menu:first-child {
    margin-top: 0rem;
}
.wojo.menu:last-child {
    margin-bottom: 0rem;
}
.wojo.menu:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.wojo.menu > .item:first-child {
    border-radius: 0.1875em 0px 0px 0.1875em;
}
.wojo.menu > .item:last-child {
    border-radius: 0px 0.1875em 0.1875em 0px;
}
.wojo.menu .item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    vertical-align: middle;
    line-height: 1;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
    -moz-transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
/*--------------
    Colors
---------------*/
/* Text Color */
.wojo.menu .item,
.wojo.menu .item > a:not(.button) {
    color: rgba(0, 0, 0, 0.75);
}
.wojo.menu .item .item,
.wojo.menu .item .item > a:not(.button) {
    color: rgba(30, 30, 30, 0.7);
}
.wojo.menu .item .item .item,
.wojo.menu .item .item .item > a:not(.button) {
    color: rgba(30, 30, 30, 0.6);
}
.wojo.menu .dropdown .menu .item,
.wojo.menu .dropdown .menu .item a:not(.button) {
    color: rgba(0, 0, 0, 0.75);
}
/* Hover */
.wojo.menu .item .menu a.item:hover,
.wojo.menu .item .menu .link.item:hover {
    color: rgba(0, 0, 0, 0.85);
}
.wojo.menu .dropdown .menu .item a:not(.button):hover {
    color: rgba(0, 0, 0, 0.85);
}
/* Active */
.wojo.menu .active.item,
.wojo.menu .active.item a:not(.button) {
    color: rgba(0, 0, 0, 0.85);
    border-radius: 0px;
}
/*--------------
      Items
---------------*/
.wojo.menu .item {
    position: relative;
    display: inline-block;
    padding: 0.83em 0.95em;
    border-top: 0em solid rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wojo.menu .menu {
    margin: 0em;
}
.wojo.menu .item.left,
.wojo.menu .menu.left {
    float: left;
}
.wojo.menu .item.right,
.wojo.menu .menu.right {
    float: right;
}
/*--------------
    Borders
---------------*/
.wojo.menu .item:before {
    position: absolute;
    content: '';
    top: 0%;
    left: 0px;
    width: 1px;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.05)));
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
}
.wojo.menu > .menu:not(.right):first-child > .item:first-child:before,
.wojo.menu .item:first-child:before {
    display: none;
}
.wojo.menu .menu.right .item:before,
.wojo.menu .item.right:before {
    right: auto;
    left: 0px;
}
/*--------------
  Text Content
---------------*/
.wojo.menu .text.item > *,
.wojo.menu .item > p:only-child {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.6);
}
.wojo.menu .item > p:first-child {
    margin-top: 0px;
}
.wojo.menu .item > p:last-child {
    margin-bottom: 0px;
}
/*--------------
     Button
---------------*/
.wojo.menu:not(.vertical) .item > .button {
    position: relative;
    top: -0.05em;
    margin: -0.55em 0;
    padding-bottom: 0.55em;
    padding-top: 0.55em;
    font-size: 0.875em;
}
/*--------------
     Inputs
---------------*/
.wojo.menu:not(.vertical) .item > .input {
    margin-top: -0.85em;
    margin-bottom: -0.85em;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    width: 100%;
    vertical-align: top;
}
.wojo.menu .item > .input input {
    padding-top: 0.35em;
    padding-bottom: 0.35em;
}
.wojo.vertical.menu .item > .input input {
    margin: 0em;
    padding-top: 0.63em;
    padding-bottom: 0.63em;
}
/* Action Input */
.wojo.menu:not(.vertical) .item > .button.labeled > .icon {
    padding-top: 0.6em;
}
.wojo.menu:not(.vertical) .item .action.input > .button {
    font-size: 0.8em;
    padding: 0.55em 0.8em;
}
/* Resizes */
.wojo.small.menu:not(.vertical) .item > .input input {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.wojo.large.menu:not(.vertical) .item > .input input {
    top: -0.125em;
    padding-bottom: 0.6em;
    padding-top: 0.6em;
}
.wojo.large.menu:not(.vertical) .item .action.input > .button {
    font-size: 0.8em;
    padding: 0.9em;
}
.wojo.large.menu:not(.vertical) .item .action.input > .button > .icon {
    padding-top: 0.8em;
}
/*--------------
     Header
---------------*/
.wojo.menu .header.item {
    background-color: rgba(0, 0, 0, 0.04);
    margin: 0em;
}
.wojo.vertical.menu .header.item {
    font-weight: bold;
}
/*--------------
    Dropdowns
---------------*/
.wojo.menu .dropdown .menu .item .icon {
    float: none;
    margin: 0em 0.75em 0em 0em;
}
.wojo.menu .dropdown.item .menu {
    left: 1px;
    margin: 0px;
    min-width: -webkit-calc(99%);
    min-width: -moz-calc(99%);
    min-width: calc(99%);
    -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.wojo.secondary.menu .dropdown.item .menu {
    left: 0px;
    min-width: 100%;
}
.wojo.menu .pointing.dropdown.item .menu {
    margin-top: 0.75em;
}
.wojo.menu .simple.dropdown.item .menu {
    margin: 0px !important;
}
.wojo.menu .dropdown.item .menu .item {
    width: 100%;
    color: rgba(0, 0, 0, 0.75);
}
.wojo.menu .dropdown.item .menu .active.item {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.wojo.menu .wojo.dropdown .menu .item:before {
    display: none;
}
/*--------------
     Labels
---------------*/
.wojo.menu .item > .label {
    background-color: rgba(0, 0, 0, 0.35);
    color: #FFFFFF;
    margin: -0.15em 0em -0.15em 0.5em;
    padding: 0.3em 0.8em;
    vertical-align: baseline;
}
.wojo.menu .item > .floating.label {
    padding: 0.3em 0.8em;
}
/*--------------
      Images
---------------*/
.wojo.menu .item > img:only-child {
    display: block;
    max-width: 100%;
    margin: 0em auto;
}
/*******************************
             States
*******************************/
/*--------------
      Hover
---------------*/
.wojo.link.menu .item:hover,
.wojo.menu .link.item:hover,
.wojo.menu a.item:hover,
.wojo.menu .wojo.dropdown .menu .item:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.02);
}
.wojo.menu .wojo.dropdown.item.active {
    background-color: rgba(0, 0, 0, 0.02);
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-bottom-right-radius: 0em;
    border-bottom-right-radius: 0em;
    -moz-border-bottom-left-radius: 0em;
    border-bottom-left-radius: 0em;
}
/*--------------
      Down
---------------*/
.wojo.link.menu .item:active,
.wojo.menu .link.item:active,
.wojo.menu a.item:active,
.wojo.menu .wojo.dropdown .menu .item:active {
    background-color: rgba(0, 0, 0, 0.05);
}
/*--------------
     Active
---------------*/
.wojo.menu .active.item {
    background-color: rgba(0, 0, 0, 0.01);
    color: rgba(0, 0, 0, 0.95);
    -webkit-box-shadow: 0em 0.2em 0em inset;
    box-shadow: 0em 0.2em 0em inset;
}
.wojo.vertical.menu .active.item {
    border-radius: 0em;
    -webkit-box-shadow: 0.2em 0em 0em inset;
    box-shadow: 0.2em 0em 0em inset;
}
.wojo.vertical.menu > .active.item:first-child {
    border-radius: 0em 0.1875em 0em 0em;
}
.wojo.vertical.menu > .active.item:last-child {
    border-radius: 0em 0em 0.1875em 0em;
}
.wojo.vertical.menu > .active.item:only-child {
    border-radius: 0em 0.1875em 0.1875em 0em;
}
.wojo.vertical.menu .active.item .menu .active.item {
    border-left: none;
}
.wojo.vertical.menu .active.item .menu .active.item {
    padding-left: 1.5rem;
}
.wojo.vertical.menu .item .menu .active.item {
    background-color: rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*--------------
     Disabled
---------------*/
.wojo.menu .item.disabled,
.wojo.menu .item.disabled:hover {
    cursor: default;
    color: rgba(0, 0, 0, 0.2);
    background-color: transparent !important;
}
/*--------------------
     Loading
---------------------*/
/* On Form */
.wojo.menu.loading {
    position: relative;
}
.wojo.menu.loading:after {
    position: absolute;
    top: 0%;
    left: 0%;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8) url(../images/loader-large.gif) no-repeat 50% 50%;
    visibility: visible;
}
/*******************************
             Types
*******************************/
/*--------------
    Vertical
---------------*/
.wojo.vertical.menu .item {
    display: block;
    height: auto !important;
    border-top: none;
    border-left: 0em solid rgba(0, 0, 0, 0);
    border-right: none;
}
.wojo.vertical.menu > .item:first-child {
    border-radius: 0.1875em 0.1875em 0px 0px;
}
.wojo.vertical.menu > .item:last-child {
    border-radius: 0px 0px 0.1875em 0.1875em;
}
.wojo.vertical.menu .item > .label {
    float: right;
    text-align: center;
}
.wojo.vertical.menu .item > i.icon {
    float: right;
    width: 1.22em;
    margin: 0em 0em 0em 0.5em;
}
.wojo.vertical.menu .item > .label + i.icon {
    float: none;
    margin: 0em 0.25em 0em 0em;
}
/*--- Border ---*/
.wojo.vertical.menu .item:before {
    position: absolute;
    content: '';
    top: 0%;
    left: 0px;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%);
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.03)), color-stop(1.5em, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.03)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%);
}
.wojo.vertical.menu .item:first-child:before {
    background-image: none !important;
}
/*--- Dropdown ---*/
.wojo.vertical.menu .dropdown.item > i {
    float: right;
    content: "\f0da";
}
.wojo.vertical.menu .dropdown.item .menu {
    top: 0% !important;
    left: 100%;
    margin: 0px 0px 0px 1px;
    -webkit-box-shadow: 0 0px 1px 1px #DDDDDD;
    box-shadow: 0 0px 1px 1px #DDDDDD;
}
.wojo.vertical.menu .dropdown.item.active {
    border-top-right-radius: 0em;
    border-bottom-right-radius: 0em;
}
.wojo.vertical.menu .dropdown.item .menu .item {
    font-size: 1rem;
}
.wojo.vertical.menu .dropdown.item .menu .item i.icon {
    margin-right: 0em;
}
.wojo.vertical.menu .dropdown.item.active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*--- Sub Menu ---*/
.wojo.vertical.menu .item > .menu {
    margin: 0.5em -0.95em 0em;
}
.wojo.vertical.menu .item > .menu > .item {
    padding: 0.5rem 1.5rem;
    font-size: 0.875em;
}
.wojo.vertical.menu .item > .menu > .item:before {
    display: none;
}
/*--------------
     Tiered
---------------*/
.wojo.tiered.menu > .sub.menu > .item {
    color: rgba(0, 0, 0, 0.4);
}
.wojo.tiered.menu > .menu > .item:hover {
    color: rgba(0, 0, 0, 0.8);
}
.wojo.tiered.menu .item.active {
    color: rgba(0, 0, 0, 0.8);
}
.wojo.tiered.menu > .menu .item.active:after {
    position: absolute;
    content: '';
    margin-top: -1px;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #FBFBFB;
}
.wojo.tiered.menu .sub.menu {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 0em;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFFFFF;
}
.wojo.tiered.menu .sub.menu .item {
    font-size: 0.875rem;
}
.wojo.tiered.menu .sub.menu .item:before {
    background-image: none;
}
.wojo.tiered.menu .sub.menu .active.item {
    padding-top: 0.83em;
    background-color: transparent;
    border-radius: 0 0 0 0;
    border-top: medium none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.7) !important;
}
.wojo.tiered.menu .sub.menu .active.item:after {
    display: none;
}
/* Inverted */
.wojo.inverted.tiered.menu > .menu > .item {
    color: rgba(255, 255, 255, 0.5);
}
.wojo.inverted.tiered.menu .sub.menu {
    background-color: rgba(0, 0, 0, 0.2);
}
.wojo.inverted.tiered.menu .sub.menu .item {
    color: rgba(255, 255, 255, 0.6);
}
.wojo.inverted.tiered.menu > .menu > .item:hover {
    color: rgba(255, 255, 255, 0.9);
}
.wojo.inverted.tiered.menu .active.item:after {
    display: none;
}
.wojo.inverted.tiered.menu > .sub.menu > .active.item,
.wojo.inverted.tiered.menu > .menu > .active.item {
    color: #ffffff !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/* Tiered pointing */
.wojo.pointing.tiered.menu > .menu > .item:after {
    display: none;
}
.wojo.pointing.tiered.menu > .sub.menu > .item:after {
    display: block;
}
/*--------------
     Tabular
---------------*/
.wojo.tabular.menu {
    background-color: transparent;
    border-bottom: 1px solid #DCDDDE;
    border-radius: 0em;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.wojo.tabular.menu .item {
    background-color: transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    padding-left: 1.4em;
    padding-right: 1.4em;
    color: rgba(0, 0, 0, 0.6);
}
.wojo.tabular.menu .item:before {
    display: none;
}
/* Hover */
.wojo.tabular.menu .item:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.8);
}
/* Active */
.wojo.tabular.menu .active.item {
    position: relative;
    background-color: #FFFFFF;
    color: rgba(0, 0, 0, 0.8);
    border-color: #DCDDDE;
    font-weight: bold;
    margin-bottom: -1px;
    border-bottom: 1px solid #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px 5px 0 0;
}
/* Coupling with segment for attachment */
.wojo.attached.tabular.menu {
    position: relative;
    z-index: 2;
}
.wojo.tabular.menu ~ .bottom.attached.segment {
    margin: 1px 0px 0px 1px;
}
/*--------------
   Pagination
---------------*/
.wojo.pagination.menu {
    margin: 0em;
    display: inline-block;
    vertical-align: middle;
}
.wojo.pagination.menu .item {
    min-width: 3em;
    text-align: center;
}
.wojo.pagination.menu .icon.item i.icon {
    vertical-align: top;
}
.wojo.pagination.menu.floated {
    display: block;
}
/* active */
.wojo.pagination.menu .active.item {
    border-top: none;
    padding-top: 0.83em;
    background-color: #e7cd3b;
    color:#fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.pagination.menu .active.item:hover{
    background-color: #e7cd3b;
    cursor: default;
}
.wojo.pagination.menu .item:hover {
    background-color: #E14D43;
    color:#fff;
}
/*--------------
   Secondary
---------------*/
.wojo.secondary.menu {
    background-color: transparent;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.secondary.menu > .menu > .item,
.wojo.secondary.menu > .item {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: auto !important;
    margin: 0em 0.25em;
    padding: 0.5em 1em;
    border-radius: 0.3125em;
}
.wojo.secondary.menu > .menu > .item:before,
.wojo.secondary.menu > .item:before {
    display: none !important;
}
.wojo.secondary.menu .item > .input input {
    background-color: transparent;
    border: none;
}
.wojo.secondary.menu .link.item,
.wojo.secondary.menu a.item {
    opacity: 0.8;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.wojo.secondary.menu .header.item {
    border-right: 0.1em solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    border-radius: 0em;
}
/* hover */
.wojo.secondary.menu .link.item:hover,
.wojo.secondary.menu a.item:hover {
    opacity: 1;
}
/* active */
.wojo.secondary.menu > .menu > .active.item,
.wojo.secondary.menu > .active.item {
    background-color: rgba(0, 0, 0, 0.08);
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.secondary.vertical.menu > .active.item {
    border-radius: 0.3125em;
}
/* inverted */
.wojo.secondary.inverted.menu .link.item,
.wojo.secondary.inverted.menu a.item {
    color: rgba(255, 255, 255, 0.5);
}
.wojo.secondary.inverted.menu .link.item:hover,
.wojo.secondary.inverted.menu a.item:hover {
    color: rgba(255, 255, 255, 0.9);
}
.wojo.secondary.inverted.menu .active.item {
    background-color: rgba(255, 255, 255, 0.1);
}
/* disable variations */
.wojo.secondary.item.menu > .item {
    margin: 0em;
}
.wojo.secondary.attached.menu {
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*---------------------
   Secondary Pointing
-----------------------*/
.wojo.secondary.pointing.menu {
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}
.wojo.secondary.pointing.menu > .menu > .item,
.wojo.secondary.pointing.menu > .item {
    margin: 0em 0em -3px;
    padding: 0.6em 0.95em;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    border-radius: 0em;
    -webkit-transition: color 0.2s
;
    -moz-transition: color 0.2s
;
    transition: color 0.2s
;
}
/* Item Types */
.wojo.secondary.pointing.menu .header.item {
    margin-bottom: -3px;
    background-color: transparent !important;
    border-right-width: 0px !important;
    font-weight: bold !important;
    color: rgba(0, 0, 0, 0.8) !important;
}
.wojo.secondary.pointing.menu .text.item {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.wojo.secondary.pointing.menu > .menu > .item:after,
.wojo.secondary.pointing.menu > .item:after {
    display: none;
}
/* Hover */
.wojo.secondary.pointing.menu > .menu > .link.item:hover,
.wojo.secondary.pointing.menu > .link.item:hover,
.wojo.secondary.pointing.menu > .menu > a.item:hover,
.wojo.secondary.pointing.menu > a.item:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
/* Down */
.wojo.secondary.pointing.menu > .menu > .link.item:active,
.wojo.secondary.pointing.menu > .link.item:active,
.wojo.secondary.pointing.menu > .menu > a.item:active,
.wojo.secondary.pointing.menu > a.item:active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.wojo.secondary.pointing.menu > .menu > .item.active,
.wojo.secondary.pointing.menu > .item.active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*---------------------
   Secondary Vertical
-----------------------*/
.wojo.secondary.vertical.pointing.menu {
    border: none;
    border-right: 3px solid rgba(0, 0, 0, 0.1);
}
.wojo.secondary.vertical.menu > .item {
    border: none;
    margin: 0em 0em 0.3em;
    padding: 0.6em 0.8em;
    border-radius: 0.1875em;
}
.wojo.secondary.vertical.menu > .header.item {
    border-radius: 0em;
}
.wojo.secondary.vertical.pointing.menu > .item {
    margin: 0em -3px 0em 0em;
    border-bottom: none;
    border-right: 3px solid transparent;
    border-radius: 0em;
}
/* Hover */
.wojo.secondary.vertical.pointing.menu > .item:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
/* Down */
.wojo.secondary.vertical.pointing.menu > .item:active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.wojo.secondary.vertical.pointing.menu > .item.active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.85);
}
/*--------------
    Inverted
---------------*/
.wojo.secondary.inverted.menu {
    background-color: transparent;
}
.wojo.secondary.inverted.pointing.menu {
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}
.wojo.secondary.inverted.pointing.menu > .item {
    color: rgba(255, 255, 255, 0.7);
}
.wojo.secondary.inverted.pointing.menu > .header.item {
    color: #FFFFFF !important;
}
/* Hover */
.wojo.secondary.inverted.pointing.menu > .menu > .item:hover,
.wojo.secondary.inverted.pointing.menu > .item:hover {
    color: rgba(255, 255, 255, 0.85);
}
/* Down */
.wojo.secondary.inverted.pointing.menu > .menu > .item:active,
.wojo.secondary.inverted.pointing.menu > .item:active {
    border-color: rgba(255, 255, 255, 0.4);
}
/* Active */
.wojo.secondary.inverted.pointing.menu > .menu > .item.active,
.wojo.secondary.inverted.pointing.menu > .item.active {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}
/*---------------------
   Inverted Vertical
----------------------*/
.wojo.secondary.inverted.vertical.pointing.menu {
    border-right: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}
/*--------------
    Text Menu
---------------*/
.wojo.text.menu {
    background-color: transparent;
    margin: 1rem -1rem;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.text.menu > .item {
    opacity: 0.8;
    margin: 0em 1em;
    padding: 0em;
    height: auto !important;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: opacity 0.2s ease
;
    -moz-transition: opacity 0.2s ease
;
    transition: opacity 0.2s ease
;
}
.wojo.text.menu > .item:before {
    display: none !important;
}
.wojo.text.menu .header.item {
    background-color: transparent;
    opacity: 1;
    color: rgba(50, 50, 50, 0.8);
    font-size: 0.875rem;
    padding: 0em;
    text-transform: uppercase;
    font-weight: bold;
}
/*--- fluid text ---*/
.wojo.text.item.menu .item {
    margin: 0em;
}
/*--- vertical text ---*/
.wojo.vertical.text.menu {
    margin: 1rem 0em;
}
.wojo.vertical.text.menu:first-child {
    margin-top: 0rem;
}
.wojo.vertical.text.menu:last-child {
    margin-bottom: 0rem;
}
.wojo.vertical.text.menu .item {
    float: left;
    clear: left;
    margin: 0.5em 0em;
}
.wojo.vertical.text.menu .item > i.icon {
    float: none;
    margin: 0em 0.83em 0em 0em;
}
.wojo.vertical.text.menu .header.item {
    margin: 0.8em 0em;
}
/*--- hover ---*/
.wojo.text.menu .item:hover {
    opacity: 1;
    background-color: transparent;
}
/*--- active ---*/
.wojo.text.menu .active.item {
    background-color: transparent;
    padding: 0em;
    border: none;
    opacity: 1;
    font-weight: bold;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/* disable variations */
.wojo.text.pointing.menu .active.item:after {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.text.attached.menu {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.inverted.text.menu,
.wojo.inverted.text.menu .item,
.wojo.inverted.text.menu .item:hover,
.wojo.inverted.text.menu .item.active {
    background-color: transparent;
}
/*--------------
    Icon Only
---------------*/
.wojo.icon.menu,
.wojo.vertical.icon.menu {
    width: auto;
    display: inline-block;
    height: auto;
}
.wojo.icon.menu > .item {
    height: auto;
    text-align: center;
    color: rgba(60, 60, 60, 0.7);
}
.wojo.icon.menu > .item > .icon {
    display: block;
    float: none !important;
    opacity: 1;
    margin: 0em auto !important;
}
.wojo.icon.menu .icon:before {
    opacity: 1;
}
/* Item Icon Only */
.wojo.menu .icon.item .icon {
    margin: 0em;
}
.wojo.vertical.icon.menu {
    float: none;
}
/*--- inverted ---*/
.wojo.inverted.icon.menu .item {
    color: rgba(255, 255, 255, 0.8);
}
.wojo.inverted.icon.menu .icon {
    color: #ffffff;
}
/*--------------
   Labeled Icon
---------------*/
.wojo.labeled.icon.menu {
    text-align: center;
}
.wojo.labeled.icon.menu > .item > .icon {
    display: block;
    font-size: 1.5em !important;
    margin: 0em auto 0.3em !important;
}
/*******************************
           Variations
*******************************/
/*--------------
    Colors
---------------*/
/*--- Light Colors  ---*/
.wojo.menu .green.active.item,
.wojo.green.menu .active.item {
    border-color: #A1CF64 !important;
    color: #A1CF64 !important;
}
.wojo.menu .red.active.item,
.wojo.red.menu .active.item {
    border-color: #D95C5C !important;
    color: #D95C5C !important;
}
.wojo.menu .blue.active.item,
.wojo.blue.menu .active.item {
    border-color: #6ECFF5 !important;
    color: #6ECFF5 !important;
}
.wojo.menu .purple.active.item,
.wojo.purple.menu .active.item {
    border-color: #564F8A !important;
    color: #564F8A !important;
}
.wojo.menu .orange.active.item,
.wojo.orange.menu .active.item {
    border-color: #F05940 !important;
    color: #F05940 !important;
}
.wojo.menu .teal.active.item,
.wojo.teal.menu .active.item {
    border-color: #00B5AD !important;
    color: #00B5AD !important;
}
/*--------------
    Inverted
---------------*/
.wojo.inverted.menu {
    background-color: #333333;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.inverted.menu .header.item {
    margin: 0em;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.inverted.menu .item,
.wojo.inverted.menu .item > a {
    color: #FFFFFF;
}
.wojo.inverted.menu .item .item,
.wojo.inverted.menu .item .item > a {
    color: rgba(255, 255, 255, 0.8);
}
.wojo.inverted.menu .dropdown .menu .item,
.wojo.inverted.menu .dropdown .menu .item a {
    color: rgba(0, 0, 0, 0.75) !important;
}
.wojo.inverted.menu .item.disabled,
.wojo.inverted.menu .item.disabled:hover {
    color: rgba(255, 255, 255, 0.2);
}
/*--- Border ---*/
.wojo.inverted.menu .item:before {
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.03)), color-stop(50%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.03)));
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
}
.wojo.vertical.inverted.menu .item:before {
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.03)), color-stop(50%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.03)));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
}
/*--- Hover ---*/
.wojo.link.inverted.menu .item:hover,
.wojo.inverted.menu .link.item:hover,
.wojo.inverted.menu a.item:hover,
.wojo.inverted.menu .dropdown.item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.wojo.inverted.menu a.item:hover,
.wojo.inverted.menu .item > a:hover,
.wojo.inverted.menu .item .menu a.item:hover,
.wojo.inverted.menu .item .menu .link.item:hover {
    color: #ffffff;
}
/*--- Down ---*/
.wojo.inverted.menu a.item:active,
.wojo.inverted.menu .dropdown.item:active,
.wojo.inverted.menu .link.item:active,
.wojo.inverted.menu a.item:active {
    background-color: rgba(255, 255, 255, 0.15);
}
/*--- Active ---*/
.wojo.inverted.menu .active.item {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.2);
}
.wojo.inverted.menu .active.item,
.wojo.inverted.menu .active.item a {
    color: #ffffff !important;
}
.wojo.inverted.vertical.menu .item .menu .active.item {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
/*--- Pointers ---*/
.wojo.inverted.pointing.menu .active.item:after {
    background-color: #5B5B5B;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.inverted.pointing.menu .active.item:hover:after {
    background-color: #4A4A4A;
}
/*--------------
    Selection
---------------*/
.wojo.selection.menu > .item {
    color: rgba(0, 0, 0, 0.4);
}
.wojo.selection.menu > .item:hover {
    color: rgba(0, 0, 0, 0.6);
}
.wojo.selection.menu > .item.active {
    color: rgba(0, 0, 0, 0.85);
}
.wojo.inverted.selection.menu > .item {
    color: rgba(255, 255, 255, 0.4);
}
.wojo.inverted.selection.menu > .item:hover {
    color: rgba(255, 255, 255, 0.9);
}
.wojo.inverted.selection.menu > .item.active {
    color: #FFFFFF;
}
/*--------------
     Floated
---------------*/
.wojo.floated.menu {
    float: left;
    margin: 0rem 0.5rem 0rem 0rem;
}
.wojo.right.floated.menu {
    float: right;
    margin: 0rem 0rem 0rem 0.5rem;
}
/*--------------
 Inverted Colors
---------------*/
/*--- Light Colors  ---*/
.wojo.grey.menu {
    background-color: #F0F0F0;
}
/*--- Inverted Colors  ---*/
.wojo.inverted.green.menu {
    background-color: #A1CF64;
}
.wojo.inverted.green.pointing.menu .active.item:after {
    background-color: #A1CF64;
}
.wojo.inverted.red.menu {
    background-color: #D95C5C;
}
.wojo.inverted.red.pointing.menu .active.item:after {
    background-color: #F16883;
}
.wojo.inverted.blue.menu {
    background-color: #6ECFF5;
}
.wojo.inverted.blue.pointing.menu .active.item:after {
    background-color: #6ECFF5;
}
.wojo.inverted.purple.menu {
    background-color: #564F8A;
}
.wojo.inverted.purple.pointing.menu .active.item:after {
    background-color: #564F8A;
}
.wojo.inverted.orange.menu {
    background-color: #F05940;
}
.wojo.inverted.orange.pointing.menu .active.item:after {
    background-color: #F05940;
}
.wojo.inverted.teal.menu {
    background-color: #00B5AD;
}
.wojo.inverted.teal.pointing.menu .active.item:after {
    background-color: #00B5AD;
}
/*--------------
     Fitted
---------------*/
.wojo.fitted.menu .item,
.wojo.fitted.menu .item .menu .item,
.wojo.menu .fitted.item {
    padding: 0em;
}
.wojo.horizontally.fitted.menu .item,
.wojo.horizontally.fitted.menu .item .menu .item,
.wojo.menu .horizontally.fitted.item {
    padding-top: 0.83em;
    padding-bottom: 0.83em;
}
.wojo.vertically.fitted.menu .item,
.wojo.vertically.fitted.menu .item .menu .item,
.wojo.menu .vertically.fitted.item {
    padding-left: 0.95em;
    padding-right: 0.95em;
}
/*--------------
   Borderless
---------------*/
.wojo.borderless.menu .item:before,
.wojo.borderless.menu .item .menu .item:before,
.wojo.menu .borderless.item:before {
    background-image: none;
}
/*-------------------
       Compact
--------------------*/
.wojo.compact.menu {
    display: inline-block;
    margin: 0em;
    vertical-align: middle;
}
.wojo.compact.vertical.menu {
    width: auto !important;
}
.wojo.compact.vertical.menu .item:last-child::before {
    display: block;
}
/*-------------------
        Fluid
--------------------*/
.wojo.menu.fluid,
.wojo.vertical.menu.fluid {
    display: block;
    width: 100% !important;
}
/*-------------------
      Evenly Sized
--------------------*/
.wojo.item.menu,
.wojo.item.menu .item {
    width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
    text-align: center;
}
.wojo.menu.two.item .item {
    width: 50%;
}
.wojo.menu.three.item .item {
    width: 33.333%;
}
.wojo.menu.four.item .item {
    width: 25%;
}
.wojo.menu.five.item .item {
    width: 20%;
}
.wojo.menu.six.item .item {
    width: 16.666%;
}
.wojo.menu.seven.item .item {
    width: 14.285%;
}
.wojo.menu.eight.item .item {
    width: 12.500%;
}
.wojo.menu.nine.item .item {
    width: 11.11%;
}
.wojo.menu.ten.item .item {
    width: 10.0%;
}
.wojo.menu.eleven.item .item {
    width: 9.09%;
}
.wojo.menu.twelve.item .item {
    width: 8.333%;
}
/*--------------
     Fixed
---------------*/
.wojo.menu.fixed {
    position: fixed;
    z-index: 999;
    margin: 0em;
    border: none;
    width: 100%;
}
.wojo.menu.fixed,
.wojo.menu.fixed .item:first-child,
.wojo.menu.fixed .item:last-child {
    border-radius: 0px !important;
}
.wojo.menu.fixed.top {
    top: 0px;
    left: 0px;
    right: auto;
    bottom: auto;
}
.wojo.menu.fixed.right {
    top: 0px;
    right: 0px;
    left: auto;
    bottom: auto;
    width: auto;
    height: 100%;
}
.wojo.menu.fixed.bottom {
    bottom: 0px;
    left: 0px;
    top: auto;
    right: auto;
}
.wojo.menu.fixed.left {
    top: 0px;
    left: 0px;
    right: auto;
    bottom: auto;
    width: auto;
    height: 100%;
}
/* Coupling with Grid */
.wojo.fixed.menu + .wojo.grid {
    padding-top: 2.75rem;
}
/*-------------------
       Pointing
--------------------*/
.wojo.pointing.menu .active.item:after {
    position: absolute;
    bottom: -0.3em;
    left: 50%;
    content: "";
    margin-left: -0.3em;
    width: 0.6em;
    height: 0.6em;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background-image: none;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    -webkit-transition: background 0.2s ease
;
    -moz-transition: background 0.2s ease
;
    transition: background 0.2s ease
;
}
/* Don't double up pointers */
.wojo.pointing.menu .active.item .menu .active.item:after {
    display: none;
}
.wojo.vertical.pointing.menu .active.item:after {
    position: absolute;
    top: 50%;
    margin-top: -0.3em;
    right: -0.4em;
    bottom: auto;
    left: auto;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
/* Colors */
.wojo.pointing.menu .active.item:after {
    background-color: #FCFCFC;
}
.wojo.pointing.menu .active.item:hover:after {
    background-color: #FAFAFA;
}
.wojo.vertical.pointing.menu .menu .active.item:after {
    background-color: #F4F4F4;
}
.wojo.pointing.menu a.active.item:active:after {
    background-color: #F0F0F0;
}
/*--------------
    Attached
---------------*/
.wojo.menu.attached {
    margin: 0rem;
    border-radius: 0px;
    /* avoid rgba multiplying */
    -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
    box-shadow: 0px 0px 0px 1px #DDDDDD;
}
.wojo.top.attached.menu {
    border-radius: 0.1875em 0.1875em 0px 0px;
}
.wojo.menu.bottom.attached {
    border-radius: 0px 0px 0.1875em 0.1875em;
}
/*--------------
     Sizes
---------------*/
.wojo.small.menu .item {
    font-size: 0.875rem;
}
.wojo.small.vertical.menu {
    width: 13rem;
}
.wojo.menu .item {
    font-size: 1rem;
}
.wojo.vertical.menu {
    width: 15rem;
}
.wojo.large.menu .item {
    font-size: 1.125rem;
}
.wojo.large.menu .item .item {
    font-size: 0.875rem;
}
.wojo.large.menu .dropdown .item {
    font-size: 1rem;
}
.wojo.large.vertical.menu {
    width: 18rem;
}

/* == Segment == */
.wojo.segment {
    position: relative;
    background-color: #fff;
    margin: 1em 0;
    padding: 1em;
    border-radius: .225em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.wojo.segment:first-child {
    margin-top: 0
}
.wojo.segment:last-child {
    margin-bottom: 0
}
.wojo.segment:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.wojo.segment > :first-child {
    margin-top: 0
}
.wojo.segment > :last-child {
    margin-bottom: 0
}
.wojo.segment > .content {
    padding: 1em
}
/* == Types == */
.wojo.piled.segment {
    margin: 2em 0;
    -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.15);
    -ms-box-shadow: 0 0 1px 1px rgba(0,0,0,0.15);
    -o-box-shadow: 0 0 1px 1px rgba(0,0,0,0.15);
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.15)
}
.wojo.piled.segment:first-child {
    margin-top: 0
}
.wojo.piled.segment:last-child {
    margin-bottom: 0
}
.wojo.piled.segment:after,
.wojo.piled.segment:before {
    background-color: #FFF;
    visibility: visible;
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    position: absolute;
    width: 100%;
    -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.1)
}
.wojo.piled.segment:after {
    -webkit-transform: rotate(1.2deg);
    -ms-transform: rotate(1.2deg);
    transform: rotate(1.2deg);
    top: 0;
    z-index: -1
}
.wojo.piled.segment:before {
    -webkit-transform: rotate(-1.2deg);
    -ms-transform: rotate(-1.2deg);
    transform: rotate(-1.2deg);
    top: 0;
    z-index: -2
}
.wojo.stacked.segment {
    padding-bottom: 1.7em
}
.wojo.stacked.segment:after,
.wojo.stacked.segment:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: rgba(0,0,0,0.02);
    width: 100%;
    height: 5px;
    visibility: visible
}
.wojo.stacked.segment:before {
    bottom: 0
}
.wojo.stacked.inverted.segment:after,
.wojo.stacked.inverted.segment:before {
    background-color: rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.35)
}
.wojo.raised.segment {
    -webkit-box-shadow: 0 1px 2px 1px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.1)
}
/* == Variations == */
.wojo.basic.segment {
    position: relative;
    background-color: transparent;
    border: 1px solid #EDEDED;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04);
    border-radius: 0;
    padding: 0;
}
.wojo.basic.segment:first-child {
    padding-top: 0
}
.wojo.basic.segment:last-child {
    padding-bottom: 0
}
.wojo.fitted.segment {
    padding: 0;
    border: 0
}
.wojo.tabular.segment {
    background-color: #fff;
    padding:0;
    margin:0;
    margin-bottom:4px;
    border-radius: 0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.075);
    display:table;
    width:100%
}
/*
.wojo.tabular.segment > section,
.wojo.tabular.segment > aside  {
  display:table-cell;
  padding:0
}
.wojo.tabular.segment > section  {
  width: auto;
}
*/
.wojo.secondary.segment {
    background-color: #fff;
}
.wojo.tertiary.segment1 {
    border: 1px solid rgba(0,0,0,.075);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04);
    margin: 0;
    padding: 1.5em;
    position: relative;
    z-index: 1;
    background-color: #576269;
    border-radius: 10px;
    color: #d2d2d2;
}
.wojo.tertiary.segment:before {
    background: #F4BF1E;
    color: #F4BF1E;
    content: "";
    display: block;
    height: 40px;
    left: 0;
    position: absolute;
    text-indent: 5px;
    top: 1em;
    width: 2px;
}
/* == Colors == */
.wojo.info.segment .header,
.wojo.positive.segment .header,
.wojo.danger.segment .header,
.wojo.negative.segment .header,
.wojo.warning.segment .header,
.wojo.purple.segment .header,
.wojo.teal.segment .header,
.wojo.info.segment .footer,
.wojo.positive.segment .footer,
.wojo.danger.segment .footer,
.wojo.negative.segment .footer,
.wojo.warning.segment .footer,
.wojo.purple.segment .footer,
.wojo.teal.segment .footer {
    background-color: #5795AF;
    color: #fff;
    border-radius: .225em .225em 0 0;
    padding: 1em;
}
.wojo.info.segment .footer,
.wojo.positive.segment .footer,
.wojo.danger.segment .footer,
.wojo.negative.segment .footer,
.wojo.warning.segment .footer,
.wojo.purple.segment .footer,
.wojo.teal.segment .footer {
    border-radius: 0 0 .225em .225em;
}
.wojo.info.segment .header a.link,
.wojo.positive.segment .header a.link,
.wojo.danger.segment .header a.link,
.wojo.negative.segment .header a.link,
.wojo.warning.segment .header a.link,
.wojo.purple.segment .header a.link,
.wojo.teal.segment .header a.link {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}
.wojo.info.segment .header a.link {
    color: #5795AF;
}
.wojo.positive.segment .header a.link {
    color: #3E7558;
}
.wojo.danger.segment .header a.link,
.wojo.negative.segment .header a.link {
    color: #ac7070;
}
.wojo.warning.segment .header a.link {
    color: #FEDD8C;
}
.wojo.purple.segment .header a.link {
    color: #87719f;
}
.wojo.teal.segment .header a.link {
    color: #61A299;
}
.wojo.positive.inverted.segment,
.wojo.danger.inverted.segment,
.wojo.negative.inverted.segment,
.wojo.warning.inverted.segment,
.wojo.purple.inverted.segment,
.wojo.teal.inverted.segment,
.wojo.info.inverted.segment,
.wojo.info.segment .header a.link:hover,
.wojo.positive.segment .header a.link:hover,
.wojo.danger.segment .header a.link:hover,
.wojo.negative.segment .header a.link:hover,
.wojo.warning.segment .header a.link:hover,
.wojo.purple.segment .header a.link:hover,
.wojo.teal.segment .header a.link:hover {
    color: #fff;
    text-shadow: none;
}
.wojo.positive.inverted.segment,
.wojo.positive.segment .header,
.wojo.positive.segment .footer {
    background-color: #61A270;
}
.wojo.danger.inverted.segment,
.wojo.danger.segment .header,
.wojo.danger.segment .footer,
.wojo.negative.inverted.segment,
.wojo.negative.segment .header,
.wojo.negative.segment .footer {
    background-color: #A26161
}
.wojo.warning.inverted.segment,
.wojo.warning.segment .header,
.wojo.warning.segment .footer {
    background-color: #EDAA10
}
.wojo.purple.inverted.segment,
.wojo.purple.segment .header,
.wojo.purple.segment .footer {
    background-color: #7A6591
}
.wojo.teal.inverted.segment,
.wojo.teal.segment .header,
.wojo.teal.segment .footer {
    background-color: #3CC9CA
}
.wojo.info.inverted.segment,
.wojo.info.segment .header,
.wojo.info.segment .footer {
    background-color: #5795AF
}
.wojo.info.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #5795AF;
    border-top: 0
}
.wojo.positive.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #B2D280;
    border-top: 0
}
.wojo.danger.segment:not(.fitted),
.wojo.negative.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #A26161;
    border-top: 0
}
.wojo.warning.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #EDAA10;
    border-top: 0
}
.wojo.purple.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #7A6591;
    border-top: 0
}
.wojo.teal.segment:not(.fitted) {
    box-shadow: 0 -2px 0 0 #3CC9CA;
    border-top: 0
}
.wojo.positive.inverted.segment,
.wojo.danger.inverted.segment,
.wojo.negative.inverted.segment,
.wojo.warning.inverted.segment,
.wojo.purple.inverted.segment,
.wojo.teal.inverted.segment,
.wojo.info.inverted.segment {
    -webkit-box-shadow:none;
    box-shadow:none
}
/* == Aligned == */
.wojo.left.aligned.segment {
    text-align: left
}
.wojo.right.aligned.segment {
    text-align: right
}
.wojo.center.aligned.segment {
    text-align: center
}
.wojo.justified.segment {
    text-align: justify;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}
/* == Floated == */
.wojo.floated.segment,
.wojo.left.floated.segment {
    float: left
}
.wojo.right.floated.segment {
    float: right
}
/* == Attached == */
.wojo.segment.attached {
    top: -1px;
    bottom: -1px;
    border-radius: 0;
    margin: 0;
    -webkit-box-shadow:none;
    box-shadow:none
}
.wojo.top.attached.segment {
    top: 0;
    bottom: -1px;
    margin-top: 1em;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0
}
.wojo.segment.top.attached:first-child {
    margin-top: 0
}
.wojo.segment.bottom.attached {
    top: -1px;
    bottom: 0;
    margin-top: 0;
    margin-bottom: 1em;
    border-radius: 0 0 5px 5px
}
.wojo.segment.bottom.attached:last-child {
    margin-bottom: 0
}
/* == Loading == */
.wojo.segment.loading {
    position: relative
}
.wojo.segment.loading:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8) url(../images/loader-large.gif) no-repeat 50% 50%;
    visibility: visible;
    z-index: 5000;
}

/* == Item Rating/Voting == */
.wojo.rating-read b,
.wojo.rating-vote b {
    font-family: Icons;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    font-size: 1em;
    color: #7D7D7D;
    cursor: pointer
}
.wojo.rating-read b {
    cursor: default
}
.wojo.rating-read b:before,
.wojo.rating-vote b:before {
    content: "\f005";
    padding-right: 4px;
    color: #717171
}
.wojo.rating-read b.rated:before,
.wojo.rating-vote b:hover:before,
.wojo.rating-vote b.rated:before {
    content: "\f005";
    color: #5DCFF3;
    transition: color .2s;
    -o-transition: color .2s;
    -ms-transition: color .2s;
    -moz-transition: color .2s;
    -webkit-transition: color .2s
}
.wojo.rating-vote b.rated:hover:before {
    color: #FCC44D
}
.wojo.rating-read i,
.wojo.rating-vote i {
    padding-left: 5px;
    font-size: 12px!important
}
.wojo.rating-vote {
    display: block;
}
.wojo.rating-vote b,
.wojo.rating-vote.small b {
    font-size: 1.8em;
    margin-right: 0.3em
}
.wojo.rating-vote.small b {
    font-size: 1.2em;
}
.wojo.voting {
    display: inline-block;
    background: #404040;
    border-radius: 4px;
}
.wojo.voting b {
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    display: inline-block;
    padding-left: 5px
}
.wojo.voting a {
    display: inline-block;
    padding: 7px 15px;
}
.wojo.voting i {
    font-size: 1em!important;
    color: #FCC44D
}
.wojo.voting a.vote-up > i {
    color: #92CF5C
}
.wojo.voting a.vote-up:hover {
    background: #92CF5C;
    border-radius: 3px 0 0 3px
}
.wojo.voting a.vote-down:hover {
    background: #FCC44D;
    border-radius: 0 3px 3px 0
}
.wojo.voting a.vote-up:hover > i,
.wojo.voting a.vote-down:hover > i {
    color: #fff
}

/* == Messge == */
.wojo.message {
    position: relative;
    min-height: 18px;
    margin: 1em 0;
    height: auto;
    padding: 1em;
    line-height: 1.33;
    color: rgba(0,0,0,0.6);
    box-shadow: inset 0 -2px 0 0 rgba(0,0,0,0.15);
    -webkit-transition: opacity .1s ease, color .1s ease, background .1s ease, 0 .1s ease;
    transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: .325em;
    background-color: #E7ECF0;
}
/* == Notices == */
#wojo-overlay {
    position: fixed;
    top: 45%;
    right: 10px;
    max-width: 350px;
    z-index: 9999;
}
.wojo.message.notice {
    border-radius: .225em;
    box-shadow: 6px 6px 0 0 rgba(0,0,0,0.08), inset 5px 0 0 0 rgba(0,0,0,0.3), inset 6px 0 0 0 rgba(255,255,255,0.15);
    margin-top: 1px;
    margin-bottom: 0;
}
.wojo.message.notice span {
    font-weight: 600;
    font-family: 'Quicksand';
}
.wojo.message.notice p {
    margin-top: 0;
}
.wojo.message.notice a.notice-close {
    opacity: 0;
}
.wojo.message.notice:hover a.notice-close {
    opacity: 1;
}
.wojo.message.notice i.icon.close {
    position: absolute;
    right: 1em;
    top: .5em;
    color: rgba(255,255,255,0.8)
}
.wojo.message.notice.success {
    background-color: #444;
    color: #B2D280;
}
.wojo.message.notice.info {
    background-color: #444;
    color: #BED3EA
}
.wojo.message.notice.warning {
    background-color: #444;
    color: #FEDD8C
}
.wojo.message.notice.error {
    background-color: #444;
    color: #d6909a
}
.wojo.message:first-child {
    margin-top: 0
}
.wojo.message:last-child {
    margin-bottom: 0
}
.wojo.message.basic.notice {
    box-shadow: inset 5px 0 0 0 rgba(0,0,0,0.3);
}
/* == Content == */
.wojo.message .header {
    margin: 0;
    font-size: 1.35em;
    font-weight: 700;
    font-family: 'Quicksand'
}
.wojo.message p {
    margin: 1em 0
}
.wojo.message p:first-child {
    margin-top: 0
}
.wojo.message p:last-child {
    margin-bottom: 0
}
.wojo.message .header + p {
    margin-top: .3em
}
.wojo.message > :first-child {
    margin-top: 0
}
.wojo.message > :last-child {
    margin-bottom: 0
}
.wojo.message ul.list {
    list-style-position: inside;
    margin: .2em 0;
    padding: 0
}
.wojo.message ul.list li:first-child {
    margin-top: .5em
}
.wojo.message ul.list li {
    position: relative;
    list-style-type: none;
    margin: 0 0 .3em 1em;
    padding: 0;
    font-weight: 600;
    font-family: 'Quicksand'
}
.wojo.message ul.list li:before {
    position: absolute;
    content: '\2022';
    top: -.05em;
    left: -.8em;
    height: 100%;
    vertical-align: baseline;
    opacity: 0.5
}
/* == Dismissable == */
.wojo.message > .close.icon {
    cursor: pointer;
    position: absolute;
    top: 1em;
    right: 1em;
    opacity: 0.7;
    -webkit-transition: opacity .1s linear;
    transition: opacity .1s linear
}
.wojo.message > .close.icon:hover {
    opacity: 1
}
/* == Variations == */
.wojo.compact.message {
    display: inline-block
}
.wojo.attached.message {
    margin-left: -1px;
    margin-right: -1px;
    margin-bottom: -1px;
    border-radius: .325em .325em 0 0;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset
}
.wojo.attached + .wojo.attached.message:not(.top):not(.bottom) {
    margin-top: -1px;
    border-radius: 0
}
.wojo.bottom.attached.message {
    margin-top: -1px;
    border-radius: 0 0 .325em .325em
}
.wojo.bottom.attached.message:not(:last-child) {
    margin-bottom: 1em
}
.wojo.attached.icon.message {
    display: block;
    width: auto
}
.wojo.icon.message {
    display: table;
    width: 100%
}
.wojo.icon.heading.message {
    margin: 0;
    box-shadow: none;
    background-color: #F7F6F2;
    border-bottom: 1px solid #CCCBBF;
    border-radius: 0
}
.wojo.icon.heading.message.green {
    box-shadow: inset 0 6px 0 0 #6EC586;
}
.wojo.icon.heading.message.purple {
    box-shadow: inset 0 6px 0 0 #9F5ED6;
}
.wojo.icon.heading.message.orange {
    box-shadow: inset 0 6px 0 0 #DBA766;
}
.wojo.icon.heading.message.dust {
    box-shadow: inset 0 6px 0 0 #71716F;
}
.wojo.icon.heading.message.blue {
    box-shadow: inset 0 6px 0 0 #676BD9;
}
.wojo.icon.heading.message.sky {
    box-shadow: inset 0 6px 0 0 #62A8DB;
}
.wojo.icon.heading.message.coral {
    box-shadow: inset 0 6px 0 0 #A46E70;
}
.wojo.icon.heading.message.teal {
    box-shadow: inset 0 6px 0 0 #70A49B;
}
.wojo.icon.heading.message.mortar {
    box-shadow: inset 0 6px 0 0 #4F3F50;
}
.wojo.icon.heading.message:before,
.wojo.icon.heading.message:after {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: 100%;
    left: 50px;
    margin-left: -10px;
}
.wojo.icon.heading.message:before {
    border-top: 10px solid #CCCBBF;
    border-top: 10px solid #CCCBBF;
    margin-top: 0px;
}
.wojo.icon.heading.message:after {
    border-top: 10px solid #F7F6F2;
    margin-top: -1px;
    z-index: 1;
}
.wojo.icon.heading.message > .icon:not(.close) {
    font-size: 2em;
    opacity: 0.75;
    vertical-align: top;
}
.wojo.icon.message > .icon:not(.close) {
    display: table-cell;
    vertical-align: middle;
    font-size: 4em;
    opacity: 0.75
}
.wojo.icon.message a.helper {
    font-size: 2em;
    line-height: 1
}
.wojo.icon.message > .icon + .content {
    padding-left: 1em
}
.wojo.icon.message > .content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.wojo.inverted.message {
    background-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.95)
}
.wojo.floating.message {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05) inset;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05) inset
}
/* == Colors == */
.wojo.black.message,
.wojo.inverted.message {
    background-color: #5C6166;
    color: rgba(255,255,255,0.95);
}
.wojo.info.message {
    background-color: #bed3ea;
    color: #3a6da2;
}
.wojo.warning.message {
    background-color: #fedd8c;
    color: #ba8505;
}
.wojo.success.message,
.wojo.positive.message {
    background-color: #a9d5be;
    color: #3e7558;
}
.wojo.error.message,
.wojo.negative.message {
    background-color: #d6909a;
    color: #6d2d36;
}
.wojo.inverted.message .header,
.wojo.black.message .header {
}
.wojo.info.message .header,
.wojo.warning.message .header,
.wojo.success.message .header,
.wojo.positive.message .header,
.wojo.error.message .header,
.wojo.negative.message .header {
}
/* == Size == */
.wojo.small.message {
    font-size: .875em
}
.wojo.message {
    font-size: 1em
}
.wojo.large.message {
    font-size: 1.125em
}
.wojo.huge.message {
    font-size: 1.5em
}
.wojo.massive.message {
    font-size: 2em
}

fieldset {
    border: 1px solid silver;
    margin: 0;
    padding: .35em .625em .75em
}
legend {
    border: 0;
    padding: 0
}
.not-allowed {
    cursor: not-allowed
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
.font-normal {
    text-transform: none
}
.content-left {
    text-align: left
}
.content-center {
    text-align: center
}
.content-right {
    text-align: right
}
.show-all {
    display: inherit
}
.hide-all {
    display: none
}
.relative {
    position: relative
}
.wojo-grid {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0
}
.columns {
    clear: both;
}
.columns:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.columns.gutters {
    margin-left: -2em
}
.columns.small-gutters {
    margin-left: -1em
}
.columns.mini-gutters {
    margin-left: -0.5em
}
.columns.horizontal-gutters {
    margin-left: -2em
}
.columns.small-horizontal-gutters {
    margin-left: -1em
}
.columns.mini-horizontal-gutters {
    margin-left: -0.5em
}
.screen-95 {
    width: 95%;
    float: left
}
.screen-90 {
    width: 90%;
    float: left
}
.screen-85 {
    width: 85%;
    float: left
}
.screen-80 {
    width: 80%;
    float: left
}
.screen-75 {
    width: 75%;
    float: left
}
.screen-70 {
    width: 70%;
    float: left
}
.screen-65 {
    width: 65%;
    float: left
}
.screen-60 {
    width: 60%;
    float: left
}
.screen-55 {
    width: 55%;
    float: left
}
.screen-50 {
    width: 50%;
    float: left
}
.screen-45 {
    width: 45%;
    float: left
}
.screen-40 {
    width: 40%;
    float: left
}
.screen-35 {
    width: 35%;
    float: left
}
.screen-30 {
    width: 30%;
    float: left
}
.screen-25 {
    width: 25%;
    float: left
}
.screen-20 {
    width: 20%;
    float: left
}
.screen-15 {
    width: 15%;
    float: left
}
.screen-10 {
    width: 10%;
    float: left
}
.screen-5 {
    width: 5%;
    float: left
}
.screen-33 {
    width: 33.33%;
    float: left
}
.screen-66 {
    width: 66.66%;
    float: left
}
.screen-100 {
    width: 100%;
    clear: both;
    float: none
}
[class*="screen-"], [class*="row"] {
    margin-top:0;
}
.two.columns > .row {
    width: 50%;
    float: left
}
.three.columns > .row {
    width: 33.33%;
    float: left
}
.four.columns > .row {
    width: 25%;
    float: left
}
.five.columns > .row {
    width: 20%;
    float: left
}
.six.columns > .row {
    width: 16.66%;
    float: left
}
.seven.columns > .row {
    width: 14.28%;
    float: left
}
.eight.columns > .row {
    width: 12.50%;
    float: left
}
.nine.columns > .row {
    width: 11.11%;
    float: left
}
.ten.columns > .row {
    width: 10%;
    float: left
}
body.animated *[class*="screen-"] body.animated *[class*="row"] {
    -webkit-transition-property: width, font-size, line-height;
    -moz-transition-property: width, font-size, line-height;
    -o-transition-property: width, font-size, line-height;
    -ms-transition-property: width, font-size, line-height;
    transition-property: width, font-size, line-height;
    -webkit-transition-duration: 125ms;
    -moz-transition-duration: 125ms;
    -o-transition-duration: 125ms;
    -ms-transition-duration: 125ms;
    transition-duration: 125ms;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -o-transition-delay: 0;
    -ms-transition-delay: 0;
    transition-delay: 0
}
.wojo-grid .columns.gutters>[class*="screen-"], .wojo-grid .columns.gutters>[class*="row"] {
    padding-left:2em;
    margin-bottom:2em
}
.wojo-grid .columns.small-gutters>[class*="screen-"], .wojo-grid .columns.small-gutters>[class*="row"] {
    padding-left:1em;
    margin-bottom:1em
}
.wojo-grid .columns.mini-gutters>[class*="screen-"], .wojo-grid .columns.mini-gutters>[class*="row"] {
    padding-left:.5em;
    margin-bottom:.5em
}
.wojo-grid .columns.horizontal-gutters>[class*="screen-"], .wojo-grid .columns.horizontal-gutters>[class*="row"] {
    padding-left:2em
}
.wojo-grid .columns.small-horizontal-gutters>[class*="screen-"], .wojo-grid .columns.small-horizontal-gutters>[class*="row"] {
    padding-left:1em
}
.wojo-grid .columns.mini-horizontal-gutters>[class*="screen-"], .wojo-grid .columns.mini-horizontal-gutters>[class*="row"] {
    padding-left:.5em
}
.wojo-grid .columns.vertical-gutters>[class*="screen-"], .wojo-grid .columns.vertical-gutters>[class*="row"] {
    margin-bottom:2em
}
.wojo-grid .columns.small-vertical-gutters>[class*="screen-"], .wojo-grid .columns.small-vertical-gutters>[class*="row"] {
    margin-bottom:1em
}
.wojo-grid .columns.mini-vertical-gutters>[class*="screen-"], .wojo-grid .columns.mini-vertical-gutters>[class*="row"] {
    margin-bottom:.5em
}
[class*="screen-"]:empty:after,
[class*="row"]:empty:after {
    content: "\00a0"
}
*[class*="screen-"]>*[class*="screen-"] {
    margin-left: 0
}
.screen-push-left {
    float: left
}
.screen-push-center {
    float: none;
    margin-left: auto;
    margin-right: auto
}
.screen-push-right {
    float: right
}
.screen-align-left {
    text-align: left
}
.screen-align-center {
    text-align: center
}
.screen-align-right {
    text-align: right
}
.space {
    margin: 2em
}
.small-space {
    margin: 1em
}
.small-space-pad {
    padding: 1em
}
.mini-space {
    margin: .5em
}
.vspace {
    margin-top: 2em;
    margin-bottom: 2em
}
.hspace {
    margin-left: 2em;
    margin-right: 2em
}
.vertical-space {
    margin-top: 2em;
    margin-bottom: 2em
}
.small-vertical-space {
    margin-top: 1em;
    margin-bottom: 1em
}
.mini-vertical-space {
    margin-top: .5em;
    margin-bottom: .5em
}
.horizontal-space {
    margin-left: 2em;
    margin-right: 2em
}
.small-horizontal-space {
    margin-left: 1em;
    margin-right: 1em
}
.mini-horizontal-space {
    margin-left: .5em;
    margin-right: .5em
}
.top-space {
    margin-top: 2em
}
.no-top-space {
    margin-top: 0
}
.small-top-space {
    margin-top: 1em
}
.mini-top-space {
    margin-top: .5em
}
.right-space {
    margin-right: 2em
}
.small-right-space {
    margin-right: 1em
}
.mini-right-space {
    margin-right: .5em
}
.bottom-space {
    margin-bottom: 2em
}
.no-bottom-space {
    margin-bottom: 0
}
.small-bottom-space {
    margin-bottom: 1em
}
.mini-bottom-space {
    margin-bottom: .5em
}
.left-space {
    margin-left: 2em
}
.small-left-space {
    margin-left: 1em
}
.mini-left-space {
    margin-left: .5em
}
@media screen and (min-width:960px) {
    .hide-screen {
        display: none
    }
    .show-screen {
        display: inherit
    }
}
@media screen and (min-width:650px) and (max-width:1024px) {
    .wojo-grid {
        width: auto;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0
    }
    .columns {
        clear: both;
        zoom: 1
    }
    .columns:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden
    }
    .columns.gutters {
        margin-left: -1.5em
    }
    .columns.small-gutters {
        margin-left: -0.75em
    }
    .columns.mini-gutters {
        margin-left: -0.375em
    }
    .columns.horizontal-gutters {
        margin-left: -1.5em
    }
    .columns.small-horizontal-gutters {
        margin-left: -0.75em
    }
    .columns.mini-horizontal-gutters {
        margin-left: -0.375em
    }
    .tablet-95 {
        width: 95%;
        float: left
    }
    .tablet-90 {
        width: 90%;
        float: left
    }
    .tablet-85 {
        width: 85%;
        float: left
    }
    .tablet-80 {
        width: 80%;
        float: left
    }
    .tablet-75 {
        width: 75%;
        float: left
    }
    .tablet-70 {
        width: 70%;
        float: left
    }
    .tablet-65 {
        width: 65%;
        float: left
    }
    .tablet-60 {
        width: 60%;
        float: left
    }
    .tablet-55 {
        width: 55%;
        float: left
    }
    .tablet-50 {
        width: 50%;
        float: left
    }
    .tablet-45 {
        width: 45%;
        float: left
    }
    .tablet-40 {
        width: 40%;
        float: left
    }
    .tablet-35 {
        width: 35%;
        float: left
    }
    .tablet-30 {
        width: 30%;
        float: left
    }
    .tablet-25 {
        width: 25%;
        float: left
    }
    .tablet-20 {
        width: 20%;
        float: left
    }
    .tablet-15 {
        width: 15%;
        float: left
    }
    .tablet-10 {
        width: 10%;
        float: left
    }
    .tablet-5 {
        width: 5%;
        float: left
    }
    .tablet-33 {
        width: 33.33%;
        float: left
    }
    .tablet-66 {
        width: 66.66%;
        float: left
    }
    .tablet-100 {
        width: 100%;
        clear: both;
        float: none
    }
    .two.columns > .row {
        width: 100%;
    }
    .three.columns > .row,
    .four.columns > .row {
        width: 50%;
    }
    .five.columns > .row,
    .six.columns > .row,
    .seven.columns > .row {
        width: 33%;
    }
    .eight.columns > .row,
    .nine.columns > .row,
    .ten.columns > .row {
        width: 25%;
    }

    [class*="tablet-"], [class*="row"] {
        margin-top:0;
    }
    body.animated *[class*="tablet-"],
    body.animated *[class*="row"] {
        -webkit-transition-property: width, font-size, line-height;
        -moz-transition-property: width, font-size, line-height;
        -o-transition-property: width, font-size, line-height;
        -ms-transition-property: width, font-size, line-height;
        transition-property: width, font-size, line-height;
        -webkit-transition-duration: 125ms;
        -moz-transition-duration: 125ms;
        -o-transition-duration: 125ms;
        -ms-transition-duration: 125ms;
        transition-duration: 125ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        -o-transition-delay: 0;
        -ms-transition-delay: 0;
        transition-delay: 0
    }
    .wojo-grid .columns.gutters>[class*="tablet-"], .wojo-grid .columns.gutters>[class*="row"] {
        padding-left:1.5em;
        margin-bottom:1.5em
    }
    .wojo-grid .columns.small-gutters>[class*="tablet-"], .wojo-grid .columns.small-gutters>[class*="row"] {
        padding-left:.75em;
        margin-bottom:.75em
    }
    .wojo-grid .columns.mini-gutters>[class*="tablet-"], .wojo-grid .columns.mini-gutters>[class*="row"] {
        padding-left:.375em;
        margin-bottom:.375em
    }
    .wojo-grid .columns.horizontal-gutters>[class*="tablet-"], .wojo-grid .columns.horizontal-gutters>[class*="row"] {
        padding-left:1.5em
    }
    .wojo-grid .columns.small-horizontal-gutters>[class*="tablet-"], .wojo-grid .columns.small-horizontal-gutters>[class*="row"] {
        padding-left:.75em
    }
    .wojo-grid .columns.mini-horizontal-gutters>[class*="tablet-"], .wojo-grid .columns.mini-horizontal-gutters>[class*="row"] {
        padding-left:.375em
    }
    .wojo-grid .columns.vertical-gutters>[class*="tablet-"], .wojo-grid .columns.vertical-gutters>[class*="row"] {
        margin-bottom:1.5em
    }
    .wojo-grid .columns.small-vertical-gutters>[class*="tablet-"], .wojo-grid .columns.small-vertical-gutters>[class*="row"] {
        margin-bottom:.75em
    }
    .wojo-grid .columns.mini-vertical-gutters>[class*="tablet-"], .wojo-grid .columns.mini-vertical-gutters>[class*="row"] {
        margin-bottom:.375em
    }
    [class*="tablet-"]:empty:after,
    [class*="row"]:empty:after {
        content: "\00a0"
    }
    *[class*="tablet-"]>*[class*="tablet-"] {
        margin-left: 0
    }
    .tablet-push-left {
        float: left
    }
    .tablet-push-center {
        float: none;
        margin-left: auto;
        margin-right: auto
    }
    .tablet-push-none {
        float: none
    }
    .tablet-push-right {
        float: right
    }
    .tablet-align-left {
        text-align: left
    }
    .tablet-align-center {
        text-align: center
    }
    .tablet-align-right {
        text-align: right
    }
    .hide-tablet {
        display: none
    }
    .show-tablet {
        display: inherit
    }
}
@media screen and (max-width:769px) {
    .wojo-grid {
        width: auto;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0
    }
    .columns {
        clear: both;
        zoom: 1
    }
    .columns:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden
    }
    .columns.gutters {
        margin-left: -1em
    }
    .columns.small-gutters {
        margin-left: -0.5em
    }
    .columns.mini-gutters {
        margin-left: -0.25em
    }
    .columns.horizontal-gutters {
        margin-left: -1em
    }
    .columns.small-horizontal-gutters {
        margin-left: -0.5em
    }
    .columns.mini-horizontal-gutters {
        margin-left: -0.25em
    }
    .phone-95 {
        width: 95%;
        float: left
    }
    .phone-90 {
        width: 90%;
        float: left
    }
    .phone-85 {
        width: 85%;
        float: left
    }
    .phone-80 {
        width: 80%;
        float: left
    }
    .phone-75 {
        width: 75%;
        float: left
    }
    .phone-70 {
        width: 70%;
        float: left
    }
    .phone-65 {
        width: 65%;
        float: left
    }
    .phone-60 {
        width: 60%;
        float: left
    }
    .phone-55 {
        width: 55%;
        float: left
    }
    .phone-50 {
        width: 50%;
        float: left
    }
    .phone-45 {
        width: 45%;
        float: left
    }
    .phone-40 {
        width: 40%;
        float: left
    }
    .phone-35 {
        width: 35%;
        float: left
    }
    .phone-30 {
        width: 30%;
        float: left
    }
    .phone-25 {
        width: 25%;
        float: left
    }
    .phone-20 {
        width: 20%;
        float: left
    }
    .phone-15 {
        width: 15%;
        float: left
    }
    .phone-10 {
        width: 10%;
        float: left
    }
    .phone-5 {
        width: 5%;
        float: left
    }
    .phone-33 {
        width: 33.33%;
        float: left
    }
    .phone-66 {
        width: 66.66%;
        float: left
    }
    .phone-100 {
        width: 100%;
        clear: both;
        float: none
    }
    [class*="phone-"], [class*="phone"] {
        margin-top:0;
    }
    .two.columns > .row,
    .three.columns > .row,
    .four.columns > .row {
        width: 100%;
    }
    .five.columns > .row,
    .six.columns > .row,
    .seven.columns > .row {
        width: 50%;
    }
    .eight.columns > .row,
    .nine.columns > .row,
    .ten.columns > .row {
        width: 33%;
    }
    body.animated *[class*="phone-"],
    body.animated *[class*="row"] {
        -webkit-transition-property: width, font-size, line-height;
        -moz-transition-property: width, font-size, line-height;
        -o-transition-property: width, font-size, line-height;
        -ms-transition-property: width, font-size, line-height;
        transition-property: width, font-size, line-height;
        -webkit-transition-duration: 125ms;
        -moz-transition-duration: 125ms;
        -o-transition-duration: 125ms;
        -ms-transition-duration: 125ms;
        transition-duration: 125ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        -o-transition-delay: 0;
        -ms-transition-delay: 0;
        transition-delay: 0
    }
    .wojo-grid .columns.gutters>[class*="phone-"], .wojo-grid .columns.gutters>[class*="row"] {
        padding-left:1em;
        margin-bottom:1em
    }
    .wojo-grid .columns.small-gutters>[class*="phone-"], .wojo-grid .columns.small-gutters>[class*="row"] {
        padding-left:.5em;
        margin-bottom:.5em
    }
    .wojo-grid .columns.mini-gutters>[class*="phone-"], .wojo-grid .columns.mini-gutters>[class*="row"] {
        padding-left:.25em;
        margin-bottom:.25em
    }
    .wojo-grid .columns.horizontal-gutters>[class*="phone-"], .wojo-grid .columns.horizontal-gutters>[class*="row"] {
        padding-left:1em
    }
    .wojo-grid .columns.small-horizontal-gutters>[class*="phone-"], .wojo-grid .columns.small-horizontal-gutters>[class*="row"] {
        padding-left:.5em
    }
    .wojo-grid .columns.mini-horizontal-gutters>[class*="phone-"], .wojo-grid .columns.mini-horizontal-gutters>[class*="row"] {
        padding-left:.25em
    }
    .wojo-grid .columns.vertical-gutters>[class*="phone-"], .wojo-grid .columns.vertical-gutters>[class*="row"] {
        margin-bottom:1em
    }
    .wojo-grid .columns.small-vertical-gutters>[class*="phone-"], .wojo-grid .columns.small-vertical-gutters>[class*="row"] {
        margin-bottom:.5em
    }
    .wojo-grid .columns.mini-vertical-gutters>[class*="phone-"], .wojo-grid .columns.mini-vertical-gutters>[class*="row"] {
        margin-bottom:.25em
    }
    [class*="phone-"]:empty:after,
    [class*="row"]:empty:after {
        content: "\00a0"
    }
    *[class*="phone-"]>*[class*="phone-"] {
        margin-left: 0
    }
    .phone-push-left {
        float: left
    }
    .phone-push-center {
        float: none;
        margin-left: auto;
        margin-right: auto
    }
    .phone-push-none {
        float: none
    }
    .phone-push-right {
        float: right
    }
    .phone-align-left {
        text-align: left
    }
    .phone-align-center {
        text-align: center
    }
    .phone-align-right {
        text-align: right
    }
    .hide-phone {
        display: none
    }
    .show-phone {
        display: inherit
    }
}
body {
    color: #555;
    font-family: Ubuntu, Arial, sans-serif
}
.sans {
    font-family: Ubuntu, Arial, sans-serif
}
.serif {
    font-family: Times, "Times New Roman", serif
}
a {
    color: #0069d6;
    text-decoration: none
}
a:hover {
    color: #007ed5;
    text-decoration: underline
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit
}
h1 {
    font-size: 2.5em
}
h2 {
    font-size: 2em
}
h3 {
    font-size: 1.715em
}
h4 {
    font-size: 1.438em
}
h5 {
    font-size: 1.250em
}
h6 {
    font-size: 1em
}
h3,
h4,
h5,
h6 {
    line-height: 1.3
}
h1 small {
    font-size: .6em;
    color: #bfbfbf;
    font-weight: 100
}
small {
    color: inherit;
    font-size: .75em
}
p {
    line-height: 1.5
}
.push-left {
    float: left
}
.push-right {
    float: right
}
.push-center {
    float: none;
    margin-left: auto;
    margin-right: auto
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    zoom: 1
}
.clear {
    display: block;
    overflow: hidden
}
.no-margin {
    margin: 0
}

/* == Label == */
.wojo.label {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    padding: .3em .5em;
    font-family: 'Archivo Narrow';
    font-weight: 700;
    border-radius: .325em;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background .1s linear;
    transition: background .1s linear
}
.wojo.label:first-child {
    margin-left: 0
}
.wojo.label:last-child {
    margin-right: 0
}
a.wojo.label {
    cursor: pointer
}
.wojo.label a {
    cursor: pointer;
    color: inherit;
    opacity: 0.8;
    -webkit-transition: .2s opacity ease;
    transition: .2s opacity ease
}
.wojo.label a:hover {
    opacity: 1
}
.wojo.label .detail {
    display: inline-block;
    margin-left: .5em;
    font-weight: 700;
    opacity: 0.8
}
.wojo.label .icon {
    width: auto;
    font-size:1em;
}
/* == Removable label == */
.wojo.label .delete.icon {
    cursor: pointer;
    margin: 0 0 0 .5em;
    opacity: 0.7;
    -webkit-transition: background .1s linear;
    transition: background .1s linear
}
.wojo.label .delete.icon:hover {
    opacity: 0.99
}
/* == Coupling == */
.wojo.segment > .attached.label:first-child + * {
    margin-top: 2.5em
}
.wojo.segment > .bottom.attached.label:first-child ~ :last-child {
    margin-top: 0;
    margin-bottom: 2.5em
}
/* == Types == */
.wojo.image.label {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: .4em;
    padding-bottom: .4em;
    line-height: 1.5em;
    vertical-align: baseline;
    text-transform: none;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset
}
.wojo.image.label img {
    display: inline-block;
    height: 2.25em;
    margin: -.4em .8em -.4em -.8em;
    vertical-align: top;
    border-radius: .325em 0 0 .325em
}
/* == States == */
.wojo.label.disabled {
    opacity: 0.5
}
a.wojo.labels .label:hover,
a.wojo.label:hover,
a.wojo.label.active {
    background-color: #EBEBEB;
    border-color: #EBEBEB;
    color: rgba(0,0,0,0.7)
}
.wojo.labels a.label:hover:before,
a.wojo.label:hover:before,
a.wojo.label.active:before {
    background-color: #EBEBEB;
    color: rgba(0,0,0,0.7)
}
/* == Variations == */
.wojo.tag.labels .label,
.wojo.tag.label {
    margin-left: 1em;
    position: relative;
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-radius: 0em 0.2857rem 0.2857rem 0em;
}
.wojo.tag.labels .label:before,
.wojo.tag.label:before {
    position: absolute;
    -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
    -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
    transform: translateY(-50%) translateX(50%) rotate(-45deg);
    top: 50%;
    right: 100%;
    content: '';
    background-color: #F5F5F5;
    background-image: none;
    width: 1.25em;
    height: 1.25em;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.wojo.tag.labels .label:after,
.wojo.tag.label:after {
    position: absolute;
    content: '';
    top: 50%;
    left: -0.25em;
    margin-top: -0.25em;
    background-color: #ffffff !important;
    width: 0.5em;
    height: 0.5em;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
    border-radius: 500rem;
}
/* == Ribbon == */
.wojo.ribbon.label {
    position: relative;
    margin: 0 .2em;
    left: -2rem;
    padding-left: 2rem;
    border-radius: 0 4px 4px 0;
    border-color: rgba(0,0,0,0.15)
}
.wojo.ribbon.label:after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    border-top: 0 solid transparent;
    border-right-width: 1em;
    border-right-color: inherit;
    border-right-style: solid;
    border-bottom: 1em solid transparent;
    border-left: 0 solid transparent;
    width: 0;
    height: 0
}
/* == Attached == */
.wojo.top.attached.label,
.wojo.attached.label {
    width: 100%;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    padding: .75em 1em;
    border-radius: .325em .325em 0 0
}
.wojo.bottom.attached.label {
    top: auto;
    bottom: 0;
    border-radius: 0 0 .325em .325em
}
.wojo.top.left.attached.label {
    width: auto;
    margin-top: 0;
    border-radius: .325em 0 .325em 0
}
.wojo.top.right.attached.label {
    width: auto;
    left: auto;
    right: 0;
    border-radius: 0 .325em 0 .325em
}
.wojo.bottom.left.attached.label {
    width: auto;
    top: auto;
    bottom: 0;
    border-radius: 0 .325em 0 .325em
}
.wojo.bottom.right.attached.label {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: auto;
    border-radius: .325em 0 .325em 0
}
.wojo.bottom.right.attached.special.label {
    box-shadow:inset 2px 2px 0 0 rgba(0,0,0,0.15);
}
/* == Corner == */
.wojo.corner.label {
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    width: 2.5em;
    height: 2.5em;
    padding: 0;
    text-align: center;
    -webkit-transition: color .2s ease;
    transition: color .2s ease
}
.wojo.corner.label:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 2.5em solid transparent;
    border-bottom: 2.5em solid transparent;
    border-left: 0 solid transparent;
    border-right-color: inherit;
    -webkit-transition: border-color .2s ease;
    transition: border-color .2s ease
}
.wojo.corner.label .icon {
    font-size: .875em;
    margin: .5em 0 0 1.25em
}
.wojo.corner.label .text {
    display: inline-block;
    font-weight: 700;
    margin: .5em 0 0 1em;
    width: 2.5em;
    font-size: .875em;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
/* == Coupling == */
.wojo.rounded.image > .wojo.corner.label,
.wojo.input > .wojo.corner.label,
.wojo.segment > .wojo.corner.label {
    overflow: hidden
}
.wojo.segment > .wojo.corner.label {
    top: 0;
    right: 0
}
.wojo.segment > .wojo.left.corner.label {
    right: auto;
    left: -1px
}
.wojo.input > .wojo.corner.label {
    top: 1px;
    right: 1px
}
.wojo.input > .wojo.right.corner.label {
    right: auto;
    left: 1px
}
.wojo.left.corner.label,
.wojo.left.corner.label:after {
    right: auto;
    left: 0
}
.wojo.left.corner.label:after {
    border-top: 3em solid transparent;
    border-right: 3em solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0 solid transparent;
    border-top-color: inherit
}
.wojo.left.corner.label .icon {
    margin: .5em 0 0 -1em
}
.wojo.left.corner.label .text {
    margin: .5em 0 0 -1em;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.wojo.corner.label:hover {
    background-color: transparent
}
/* == Fluid == */
.wojo.label.fluid,
.wojo.fluid.labels > .label {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}
/* == Colors == */
.wojo.black.labels .label,
.wojo.black.label,
.wojo.inverted.labels .label,
.wojo.inverted.label,
.wojo.ribbon .ribbon.inverted,
.wojo.ribbon .ribbon.black {
    background-color: #4a5c62;
    border-color: #4a5c62;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .black.label:before,
.wojo.black.labels .label:before,
.wojo.black.label:before {
    background-color: #4a5c62
}
a.wojo.black.labels .label:hover,
a.wojo.black.label:hover {
    background-color: #e7cd3b;
    border-color: #e7cd3b;
    color: rgba(255,255,255,1)
}
.wojo.labels a.black.label:hover:before,
.wojo.black.labels a.label:hover:before,
a.wojo.black.label:hover:before {
    background-color: #e7cd3b
}
.wojo.black.corner.label,
.wojo.black.corner.label:hover {
    background-color: transparent
}
.wojo.black.ribbon.label {
    border-color: #4a5c62
}
.wojo.positive.labels .label,
.wojo.positive.label,
.wojo.ribbon .ribbon.positive {
    background-color: #e7cd3b;
    border-color: #e7cd3b;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .positive.label:before,
.wojo.positive.labels .label:before,
.wojo.positive.label:before {
    background-color: #e7cd3b
}
a.wojo.positive.labels .label:hover,
a.wojo.positive.label:hover {
    background-color: #4a5c62;
    border-color: #4a5c62;
    color: rgba(255,255,255,1)
}
.wojo.labels a.positive.label:hover:before,
.wojo.positive.labels a.label:hover:before,
a.wojo.positive.label:hover:before {
    background-color: #4a5c62
}
.wojo.positive.corner.label,
.wojo.positive.corner.label:hover {
    background-color: transparent
}
.wojo.positive.ribbon.label {
    border-color: #e7cd3b
}
.wojo.negative.labels .label,
.wojo.negative.label,
.wojo.ribbon .ribbon.negative {
    background-color: #E74C3C;
    border-color: #E74C3C;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .negative.label:before,
.wojo.negative.labels .label:before,
.wojo.negative.label:before {
    background-color: #E74C3C
}
.wojo.negative.corner.label,
.wojo.negative.corner.label:hover {
    background-color: transparent
}
a.wojo.negative.labels .label:hover,
a.wojo.negative.label:hover {
    background-color: #9AD03E;
    border-color: #9AD03E;
    color: rgba(255,255,255,1)
}
.wojo.labels a.negative.label:hover:before,
.wojo.negative.labels a.label:hover:before,
a.wojo.negative.label:hover:before {
    background-color: #9AD03E
}
.wojo.negative.ribbon.label {
    border-color: #E74C3C
}
.wojo.info.labels .label,
.wojo.info.label,
.wojo.ribbon .ribbon.info {
    background-color: #5795AF;
    border-color: #5795AF;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .info.label:before,
.wojo.info.labels .label:before,
.wojo.info.label:before {
    background-color: #5795AF
}
a.wojo.info.labels .label:hover,
.wojo.info.labels a.label:hover,
a.wojo.info.label:hover {
    background-color: #68a0b8;
    border-color: #68a0b8;
    color: rgba(255,255,255,1)
}
.wojo.labels a.info.label:hover:before,
.wojo.info.labels a.label:hover:before,
a.wojo.info.label:hover:before {
    background-color: #68a0b8
}
.wojo.info.corner.label,
.wojo.info.corner.label:hover {
    background-color: transparent
}
.wojo.info.ribbon.label {
    border-color: #68a0b8
}
.wojo.purple.labels .label,
.wojo.purple.label,
.wojo.ribbon .ribbon.purple {
    background-color: #7A6591;
    border-color: #7A6591;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .purple.label:before,
.wojo.purple.labels .label:before,
.wojo.purple.label:before {
    background-color: #7A6591
}
a.wojo.purple.labels .label:hover,
.wojo.purple.labels a.label:hover,
a.wojo.purple.label:hover {
    background-color: #87719f;
    border-color: #87719f;
    color: rgba(255,255,255,1)
}
.wojo.labels a.purple.label:hover:before,
.wojo.purple.labels a.label:hover:before,
a.wojo.purple.label:hover:before {
    background-color: #87719f
}
.wojo.purple.corner.label,
.wojo.purple.corner.label:hover {
    background-color: transparent
}
.wojo.purple.ribbon.label {
    border-color: #87719f
}
.wojo.warning.labels .label,
.wojo.warning.label,
.wojo.ribbon .ribbon.warning {
    background-color: #EDAA10;
    border-color: #EDAA10;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .warning.label:before,
.wojo.warning.labels .label:before,
.wojo.warning.label:before {
    background-color: #EDAA10
}
a.wojo.warning.labels .label:hover,
.wojo.warning.labels a.label:hover,
a.wojo.warning.label:hover {
    background-color: #f0b327;
    border-color: #f0b327;
    color: rgba(255,255,255,1)
}
.wojo.labels a.warning.label:hover:before,
.wojo.warning.labels a.label:hover:before,
a.wojo.warning.label:hover:before {
    background-color: #f0b327
}
.wojo.warning.corner.label,
.wojo.warning.corner.label:hover {
    background-color: transparent
}
.wojo.warning.ribbon.label {
    border-color: #f0b327
}
.wojo.teal.labels .label,
.wojo.teal.label,
.wojo.ribbon .ribbon.teal {
    background-color: #61A299;
    border-color: #61A299;
    color: rgba(255,255,255,0.80)
}
.wojo.labels .teal.label:before,
.wojo.teal.labels .label:before,
.wojo.teal.label:before {
    background-color: #61A299
}
a.wojo.teal.labels .label:hover,
.wojo.teal.labels a.label:hover,
a.wojo.teal.label:hover {
    background-color: #70aca4;
    border-color: #70aca4;
    color: rgba(255,255,255,1)
}
.wojo.labels a.teal.label:hover:before,
.wojo.teal.labels a.label:hover:before,
a.wojo.teal.label:hover:before {
    background-color: #70aca4
}
.wojo.teal.corner.label,
.wojo.teal.corner.label:hover {
    background-color: transparent
}
.wojo.teal.ribbon.label {
    border-color: #70aca4
}
/* == Horizontal == */
.wojo.horizontal.labels .label,
.wojo.horizontal.label {
    margin: -.125em .5em -.125em 0;
    padding: .35em 1em;
    min-width: 6em;
    text-align: center
}
/* == Circular == */
.wojo.circular.labels .label,
.wojo.circular.label {
    min-height: 1em;
    max-height: 2em;
    padding: .5em;
    line-height: 1em;
    text-align: center;
    border-radius: 500rem
}
/* == Pointing == */
.wojo.pointing.label {
    position: relative
}
.wojo.attached.pointing.label {
    position: absolute
}
.wojo.pointing.label:before {
    position: absolute;
    content: "";
    width: .6em;
    height: .6em;
    background-image: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    -webkit-transition: background .1s linear;
    transition: background .1s linear
}
.wojo.pointing.label:before {
    background-color: #E8E8E8
}
.wojo.pointing.label,
.wojo.pointing.above.label {
    margin-top: 1em
}
.wojo.pointing.label:before,
.wojo.pointing.above.label:before {
    margin-left: -.3em;
    top: -.3em;
    left: 50%
}
.wojo.pointing.below.label {
    margin-top: 0;
    margin-bottom: 1em
}
.wojo.pointing.below.label:before {
    margin-left: -.3em;
    top: auto;
    right: auto;
    bottom: -.3em;
    left: 50%
}
.wojo.pointing.left.label {
    margin-top: 0;
    margin-left: 1em
}
.wojo.pointing.left.label:before {
    margin-top: -.3em;
    bottom: auto;
    right: auto;
    top: 50%;
    left: 0
}
.wojo.pointing.right.label {
    margin-top: 0;
    margin-right: 1em
}
.wojo.pointing.right.label:before {
    margin-top: -.3em;
    right: -.3em;
    top: 50%;
    bottom: auto;
    left: auto
}
/* == Floating == */
.wojo.floating.label {
    position: absolute;
    z-index: 100;
    top: -1em;
    left: 100%;
    margin: 0 0 0 -1.5em
}
/* == Ribbons == */
.wojo.ribbon {
    height: 88px;
    overflow: hidden;
    position: absolute;
    right: -3px;
    top: -3px;
    width: 85px;
}
.wojo.ribbon .ribbon:before {
    bottom: -1px;
    left: 0;
}
.wojo.ribbon .ribbon:after {
    right: 0;
}
.wojo.ribbon .ribbon:before,
.wojo.ribbon .ribbon:after {
    border-left: 2px solid rgba(0, 0, 0, 0);
    border-right: 2px solid rgba(0, 0, 0, 0);
    border-top: 2px solid #797979;
    bottom: -2px;
    content: "";
    position: absolute;
}
.wojo.ribbon .ribbon {
    background-color: #797979;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    display: block;
    font-size:.95em;
    font-weight: 600;
    left: -5px;
    line-height: 20px;
    padding: 7px 0;
    position: relative;
    text-align: center;
    top: 15px;
    transform: rotate(45deg);
    width: 120px;
}
/* == Sizes == */
.wojo.small.labels .label,
.wojo.small.label {
    font-size:.75rem;
    line-height:.85rem
}

.wojo.large.labels .label,
.wojo.large.label {
    font-size:1rem;
    line-height:.95rem
}
.wojo.huge.labels .label,
.wojo.huge.label {
    font-size: 1.1rem;
    line-height:1rem
}

.wojo.button {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    min-height: 1em;
    outline: none;
    border: none;
    font-family: "Archivo Narrow", sans-serif;
    background-color: #e7cd3b;
    color: #fff;
    margin: 0em;
    padding: 1em 1.5em;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border-radius: 0.25em;
    /*
    -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1);*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, -webkit-box-shadow 0.25s ease;
    -moz-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/*--------------
     Active
---------------*/
.wojo.buttons .active.button,
.wojo.active.button {
    background-color: #EAEAEA;
    background-image: none;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
    color: rgba(0, 0, 0, 0.7);
}
/*--------------
      Hover
---------------*/
.wojo.button:hover {
    color: #fff;
    background-color: #4a5c62;
}
.wojo.button.active:hover {
    background-image: none;
}
.wojo.button:hover .icon,
.wojo.button.hover .icon {
    opacity: 0.85;
}
/*--------------
      Down
---------------*/
.wojo.button:active,
.wojo.active.button:active {
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
}
/*--------------
    Loading
---------------*/
.wojo.loading.button {
    position: relative;
    cursor: default;
    background-color: #FFFFFF;
    color: transparent;
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    transition: all 0s linear;
}
.wojo.loading.button:after {
    position: absolute;
    top: 0em;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: transparent url(../images/loader-mini.gif) no-repeat 50% 50%;
}
.wojo.labeled.icon.loading.button .icon {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*-------------------
      Disabled
--------------------*/
.wojo.disabled.button,
.wojo.disabled.button:hover,
.wojo.disabled.button.active {
    background-color: #DDDDDD;
    cursor: default;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0.3;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*******************************
             Types
*******************************/
/*-------------------
       Animated
--------------------*/
.wojo.animated.button {
    position: relative;
    overflow: hidden;
}
.wojo.animated.button .visible.content {
    position: relative;
}
.wojo.animated.button .hidden.content {
    position: absolute;
    width: 100%;
}
/* Horizontal */
.wojo.animated.button .visible.content,
.wojo.animated.button .hidden.content {
    -webkit-transition: right 0.3s ease 0s;
    -moz-transition: right 0.3s ease 0s;
    transition: right 0.3s ease 0s;
}
.wojo.animated.button .visible.content {
    left: auto;
    right: 0%;
}
.wojo.animated.button .hidden.content {
    top: 50%;
    left: auto;
    right: -100%;
    margin-top: -0.55em;
}
.wojo.animated.button:hover .visible.content {
    left: auto;
    right: 200%;
}
.wojo.animated.button:hover .hidden.content {
    left: auto;
    right: 0%;
}
/* Vertical */
.wojo.vertical.animated.button .visible.content,
.wojo.vertical.animated.button .hidden.content {
    -webkit-transition: top 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -moz-transition: top 0.3s ease 0s, -moz-transform 0.3s ease 0s;
    transition: top 0.3s ease 0s, transform 0.3s ease 0s;
}
.wojo.vertical.animated.button .visible.content {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    right: auto;
}
.wojo.vertical.animated.button .hidden.content {
    top: -100%;
    left: 0%;
    right: auto;
}
.wojo.vertical.animated.button:hover .visible.content {
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    transform: translateY(200%);
    right: auto;
}
.wojo.vertical.animated.button:hover .hidden.content {
    top: 50%;
    right: auto;
}
/* Fade */
.wojo.fade.animated.button .visible.content,
.wojo.fade.animated.button .hidden.content {
    -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -moz-transition: opacity 0.3s ease 0s, -moz-transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}
.wojo.fade.animated.button .visible.content {
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.wojo.fade.animated.button .hidden.content {
    opacity: 0;
    left: 0%;
    right: auto;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.wojo.fade.animated.button:hover .visible.content {
    left: auto;
    right: auto;
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}
.wojo.fade.animated.button:hover .hidden.content {
    left: 0%;
    right: auto;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/*-------------------
       Primary
--------------------*/
.wojo.primary.buttons .button,
.wojo.primary.button {
    background-color: #D95C5C;
    color: #FFFFFF;
}
.wojo.primary.buttons .button:hover,
.wojo.primary.button:hover,
.wojo.primary.buttons .active.button,
.wojo.primary.button.active {
    background-color: #E75859;
    color: #FFFFFF;
}
.wojo.primary.buttons .button:active,
.wojo.primary.button:active {
    background-color: #D24B4C;
    color: #FFFFFF;
}
/*-------------------
      Secondary
--------------------*/
.wojo.secondary.buttons .button,
.wojo.secondary.button {
    background-color: #4a5c62;
    color: #FFFFFF;
}
.wojo.secondary.buttons .button:hover,
.wojo.secondary.button:hover,
.wojo.secondary.buttons .active.button,
.wojo.secondary.button.active {
    background-color: #e7cd3b;
    color: #FFFFFF;
}
.wojo.secondary.buttons .button:active,
.wojo.secondary.button:active {
    background-color: #e7cd3b;
    color: #FFFFFF;
}
/*-------------------
       Social
--------------------*/
/* Facebook */
.wojo.facebook.button {
    background-color: #3B579D;
    color: #FFFFFF;
}
.wojo.facebook.button:hover {
    background-color: #3A59A9;
    color: #FFFFFF;
}
.wojo.facebook.button:active {
    background-color: #334F95;
    color: #FFFFFF;
}
/* Twitter */
.wojo.twitter.button {
    background-color: #4092CC;
    color: #FFFFFF;
}
.wojo.twitter.button:hover {
    background-color: #399ADE;
    color: #FFFFFF;
}
.wojo.twitter.button:active {
    background-color: #3283BC;
    color: #FFFFFF;
}
/* Google Plus */
.wojo.google.plus.button {
    background-color: #D34836;
    color: #FFFFFF;
}
.wojo.google.plus.button:hover {
    background-color: #E3432E;
    color: #FFFFFF;
}
.wojo.google.plus.button:active {
    background-color: #CA3A27;
    color: #FFFFFF;
}
/* Linked In */
.wojo.linkedin.button {
    background-color: #1F88BE;
    color: #FFFFFF;
}
.wojo.linkedin.button:hover {
    background-color: #1394D6;
    color: #FFFFFF;
}
.wojo.linkedin.button:active {
    background-color: #1179AE;
    color: #FFFFFF;
}
/* YouTube */
.wojo.youtube.button {
    background-color: #CC181E;
    color: #FFFFFF;
}
.wojo.youtube.button:hover {
    background-color: #DF0209;
    color: #FFFFFF;
}
.wojo.youtube.button:active {
    background-color: #A50006;
    color: #FFFFFF;
}
/* Instagram */
.wojo.instagram.button {
    background-color: #49769C;
    color: #FFFFFF;
}
.wojo.instagram.button:hover {
    background-color: #4781B1;
    color: #FFFFFF;
}
.wojo.instagram.button:active {
    background-color: #38658A;
    color: #FFFFFF;
}
/* Pinterest */
.wojo.pinterest.button {
    background-color: #00ACED;
    color: #FFFFFF;
}
.wojo.pinterest.button:hover {
    background-color: #00B9FF;
    color: #FFFFFF;
}
.wojo.pinterest.button:active {
    background-color: #009EDA;
    color: #FFFFFF;
}
/* vk.com */
.wojo.vk.button {
    background-color: #4D7198;
    color: #FFFFFF;
}
.wojo.vk.button:hover {
    background-color: #537AA5;
    color: #FFFFFF;
}
.wojo.vk.button:active {
    background-color: #405E7E;
    color: #FFFFFF;
}
/*--------------
     Icon
---------------*/
.wojo.button > .icon {
    margin-right: 0.6em;
    line-height: 1;
    -webkit-transition: opacity 0.1s ease;
    -moz-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
}
/*******************************
           Variations
*******************************/
/*-------------------
       Floated
--------------------*/
.wojo.left.floated.buttons,
.wojo.left.floated.button {
    float: left;
    margin-right: 0.25em;
}
.wojo.right.floated.buttons,
.wojo.right.floated.button {
    float: right;
    margin-left: 0.25em;
}
/* Or resize */
.wojo.tiny.buttons .or:before,
.wojo.mini.buttons .or:before {
    width: 1.45em;
    height: 1.55em;
    line-height: 1.4;
    margin-left: -0.725em;
    margin-top: -0.25em;
}
.wojo.tiny.buttons .or:after,
.wojo.mini.buttons .or:after {
    height: 1.45em;
}
/* loading */
.wojo.huge.loading.button:after {
    background-image: url(../images/loader-small.gif);
}
.wojo.massive.buttons .loading.button:after,
.wojo.gigantic.buttons .loading.button:after,
.wojo.massive.loading.button:after,
.wojo.gigantic.loading.button:after {
    background-image: url(../images/loader-medium.gif);
}
.wojo.huge.loading.button:after,
.wojo.huge.loading.button.active:after {
    background-image: url(../images/loader-small.gif);
}
.wojo.massive.buttons .loading.button:after,
.wojo.gigantic.buttons .loading.button:after,
.wojo.massive.loading.button:after,
.wojo.gigantic.loading.button:after,
.wojo.massive.buttons .loading.button.active:after,
.wojo.gigantic.buttons .loading.button.active:after,
.wojo.massive.loading.button.active:after,
.wojo.gigantic.loading.button.active:after {
    background-image: url(../images/loader-medium.gif);
}
/*--------------
    Icon Only
---------------*/
.wojo.icon.buttons .button,
.wojo.icon.button {
    padding: 1em;
}
.wojo.icon.buttons .button > .icon,
.wojo.icon.button > .icon {
    opacity: 0.9;
    margin: 0em;
    vertical-align: top;
}
/*-------------------
        Basic
--------------------*/
.wojo.basic.buttons .button,
.wojo.basic.button {
    background-color:transparent;
    background-image: none;
    color: #4a5c62;
    font-weight: 400;
    text-transform: uppercase;
    font-size:.75em;
    -webkit-box-shadow: inset 0 0 0 1px #fff;
    box-shadow: inset 0 0 0 1px #fff;
}
.wojo.basic.buttons {
    -webkit-box-shadow: 0px 0px 0px 1px #fff inset;
    box-shadow: 0px 0px 0px 2px #fff inset;
    border-radius: 0.25em;
}
.wojo.basic.buttons .button:hover,
.wojo.basic.button:hover {
    background-image: none;
    color: #e7cd3b;
    -webkit-box-shadow: 0px 0px 0px 1px #e7cd3b inset;
    box-shadow: 0px 0px 0px 1px #e7cd3b inset;
}
.wojo.basic.buttons .button:active,
.wojo.basic.button:active {
    background-color: rgba(0, 0, 0, 0.02);
    color: #999999;
    -webkit-box-shadow: none;
    box-shadow:none;
}
.wojo.basic.buttons .button.active,
.wojo.basic.button.active {
    background-color: #e7cd3b;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow:none;
}
.wojo.basic.buttons .button.active:hover,
.wojo.basic.button.active:hover {
    background-color: #e7cd3b;
}
/* Inverted */
.wojo.basic.inverted.buttons .button,
.wojo.basic.inverted.button {
    color: #ffffff;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1) inset;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1) inset;
}
.wojo.basic.inverted.buttons .button:hover,
.wojo.basic.inverted.button:hover {
    background-image: none;
    color: #e7cd3b;
    -webkit-box-shadow: 0px 0px 0px 2px #e7cd3b inset;
    box-shadow: 0px 0px 0px 2px #e7cd3b inset;
}
.wojo.basic.inverted.buttons .button:active,
.wojo.basic.inverted.button:active {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1) inset;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1) inset;
}
.wojo.basic.inverted.buttons .button.active,
.wojo.basic.inverted.button.active {
    background-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.basic.inverted.buttons .button.active:hover,
.wojo.basic.inverted.button.active:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
/* Basic Group */
.wojo.basic.buttons .button {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.basic.buttons .button:hover,
.wojo.basic.buttons .button:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.basic.buttons .button.active,
.wojo.basic.buttons .button.active:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*--------------
   Labeled Icon
---------------*/
.wojo.labeled.icon.buttons .button,
.wojo.labeled.icon.button {
    position: relative;
    padding-left: 4em;
    padding-right: 1.4em;
}
.wojo.labeled.icon.buttons > .button > .icon,
.wojo.labeled.icon.button > .icon {
    position: absolute;
    top: 0em;
    left: 0em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 2.75em;
    height: 100%;
    padding-top: 1.1em;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    border-radius: 0.25em 0px 0px 0.25em;
    line-height: 1;
    -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
    box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
}
.wojo.labeled.icon.buttons .button > .icon {
    border-radius: 0em;
}
.wojo.labeled.icon.buttons .button:first-child > .icon {
    border-top-left-radius: 0.25em;
    border-bottom-left-radius: 0.25em;
}
.wojo.labeled.icon.buttons .button:last-child > .icon {
    border-top-right-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
}
.wojo.vertical.labeled.icon.buttons .button:first-child > .icon {
    border-radius: 0em;
    border-top-left-radius: 0.25em;
}
.wojo.vertical.labeled.icon.buttons .button:last-child > .icon {
    border-radius: 0em;
    border-bottom-left-radius: 0.25em;
}
.wojo.right.labeled.icon.button {
    padding-left: 1.4em;
    padding-right: 4em;
}
.wojo.left.fluid.labeled.icon.button,
.wojo.right.fluid.labeled.icon.button {
    padding-left: 1.4em;
    padding-right: 1.4em;
}
.wojo.right.labeled.icon.button .icon {
    left: auto;
    right: 0em;
    border-radius: 0em 0.25em 0.25em 0em;
    -webkit-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
}
/*--------------
     Toggle
---------------*/
.wojo.toggle.buttons .active.button,
.wojo.buttons .button.toggle.active,
.wojo.button.toggle.active {
    background-color: #69A261;
    color: #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.button.toggle.active:hover {
    background-color: #78ac70;
    color: #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*--------------
    Circular
---------------*/
.wojo.circular.button {
    border-radius: 10em;
}
/*--------------
     Attached
---------------*/
.wojo.attached.button {
    display: block;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.wojo.attached.top.button {
    border-radius: 0.25em 0.25em 0em 0em;
}
.wojo.attached.bottom.button {
    border-radius: 0em 0em 0.25em 0.25em;
}
.wojo.attached.left.button {
    display: inline-block;
    border-left: none;
    padding-right: 0.75em;
    text-align: right;
    border-radius: 0.25em 0em 0em 0.25em;
}
.wojo.attached.right.button {
    display: inline-block;
    padding-left: 0.75em;
    text-align: left;
    border-radius: 0em 0.25em 0.25em 0em;
}
/*-------------------
      Or Buttons
--------------------*/
.wojo.buttons .or {
    position: relative;
    float: left;
    width: 0.3em;
    height: 1.1em;
    z-index: 3;
}
.wojo.buttons .or:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: 'or';
    background-color: #FFFFFF;
    margin-top: 0;
    margin-left: -0.9em;
    width: 1.8em;
    height: 1.8em;
    line-height: 1.55;
    color: #AAAAAA;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    border-radius: 500px;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.wojo.buttons .or[data-text]:before {
    content: attr(data-text);
}
.wojo.buttons .or:after {
    position: absolute;
    top: 0em;
    left: 0em;
    content: ' ';
    width: 0.3em;
    height: 1.7em;
    background-color: transparent;
    border-top: 0.5em solid #FFFFFF;
    border-bottom: 0.5em solid #FFFFFF;
}
/* Fluid Or */
.wojo.fluid.buttons .or {
    width: 0em;
}
.wojo.fluid.buttons .or:after {
    display: none;
}
/*-------------------
       Attached
--------------------*/
/* Plural Attached */
.attached.wojo.buttons {
    margin: 0px;
    border-radius: 4px 4px 0px 0px;
}
.attached.wojo.buttons .button:first-child {
    border-radius: 4px 0px 0px 0px;
}
.attached.wojo.buttons .button:last-child {
    border-radius: 0px 4px 0px 0px;
}
/* Bottom Side */
.bottom.attached.wojo.buttons {
    margin-top: -1px;
    border-radius: 0px 0px 4px 4px;
}
.bottom.attached.wojo.buttons .button:first-child {
    border-radius: 0px 0px 0px 4px;
}
.bottom.attached.wojo.buttons .button:last-child {
    border-radius: 0px 0px 4px 0px;
}
/* Left Side */
.left.attached.wojo.buttons {
    margin-left: -1px;
    border-radius: 0px 4px 4px 0px;
}
.left.attached.wojo.buttons .button:first-child {
    margin-left: -1px;
    border-radius: 0px 4px 0px 0px;
}
.left.attached.wojo.buttons .button:last-child {
    margin-left: -1px;
    border-radius: 0px 0px 4px 0px;
}
/* Right Side */
.right.attached.wojo.buttons,
.right.attached.wojo.buttons .button {
    margin-right: -1px;
    border-radius: 4px 0px 0px 4px;
}
.right.attached.wojo.buttons .button:first-child {
    margin-left: -1px;
    border-radius: 4px 0px 0px 0px;
}
.right.attached.wojo.buttons .button:last-child {
    margin-left: -1px;
    border-radius: 0px 0px 0px 4px;
}
/* Fluid */
.wojo.fluid.buttons,
.wojo.button.fluid,
.wojo.fluid.buttons > .button {
    display: block;
    width: 100%;
}
.wojo.\32.buttons > .button,
.wojo.two.buttons > .button {
    width: 50%;
}
.wojo.\33.buttons > .button,
.wojo.three.buttons > .button {
    width: 33.333%;
}
.wojo.\34.buttons > .button,
.wojo.four.buttons > .button {
    width: 25%;
}
.wojo.\35.buttons > .button,
.wojo.five.buttons > .button {
    width: 20%;
}
.wojo.\36.buttons > .button,
.wojo.six.buttons > .button {
    width: 16.666%;
}
.wojo.\37.buttons > .button,
.wojo.seven.buttons > .button {
    width: 14.285%;
}
.wojo.\38.buttons > .button,
.wojo.eight.buttons > .button {
    width: 12.500%;
}
.wojo.\39.buttons > .button,
.wojo.nine.buttons > .button {
    width: 11.11%;
}
.wojo.\31\30.buttons > .button,
.wojo.ten.buttons > .button {
    width: 10%;
}
.wojo.\31\31.buttons > .button,
.wojo.eleven.buttons > .button {
    width: 9.09%;
}
.wojo.\31\32.buttons > .button,
.wojo.twelve.buttons > .button {
    width: 8.3333%;
}
/* Fluid Vertical Buttons */
.wojo.fluid.vertical.buttons,
.wojo.fluid.vertical.buttons > .button {
    display: block;
    width: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.wojo.\32.vertical.buttons > .button,
.wojo.two.vertical.buttons > .button {
    height: 50%;
}
.wojo.\33.vertical.buttons > .button,
.wojo.three.vertical.buttons > .button {
    height: 33.333%;
}
.wojo.\34.vertical.buttons > .button,
.wojo.four.vertical.buttons > .button {
    height: 25%;
}
.wojo.\35.vertical.buttons > .button,
.wojo.five.vertical.buttons > .button {
    height: 20%;
}
.wojo.\36.vertical.buttons > .button,
.wojo.six.vertical.buttons > .button {
    height: 16.666%;
}
.wojo.\37.vertical.buttons > .button,
.wojo.seven.vertical.buttons > .button {
    height: 14.285%;
}
.wojo.\38.vertical.buttons > .button,
.wojo.eight.vertical.buttons > .button {
    height: 12.500%;
}
.wojo.\39.vertical.buttons > .button,
.wojo.nine.vertical.buttons > .button {
    height: 11.11%;
}
.wojo.\31\30.vertical.buttons > .button,
.wojo.ten.vertical.buttons > .button {
    height: 10%;
}
.wojo.\31\31.vertical.buttons > .button,
.wojo.eleven.vertical.buttons > .button {
    height: 9.09%;
}
.wojo.\31\32.vertical.buttons > .button,
.wojo.twelve.vertical.buttons > .button {
    height: 8.3333%;
}
/*-------------------
       Colors
--------------------*/
/*--- Black ---*/
.wojo.black.buttons .button,
.wojo.black.button {
    background-color: #5C6166;
    color: #FFFFFF;
}
.wojo.black.buttons .button:hover,
.wojo.black.button:hover {
    background-color: #4C4C4C;
    color: #FFFFFF;
}
.wojo.black.buttons .button.active,
.wojo.black.button.active {
    background-color: #4C4C4C;
    color: #FFFFFF;
}
/*--- danger ---*/
.wojo.danger.buttons .button,
.wojo.danger.button {
    background-color: #A26161;
    color: #FFFFFF;
}
.wojo.danger.buttons .button:hover,
.wojo.danger.button:hover,
.wojo.danger.buttons .active.button,
.wojo.danger.button.active {
    background-color: #ac7070;
    color: #FFFFFF;
}
.wojo.danger.buttons .button:active,
.wojo.danger.button:active {
    background-color: #925757;
    color: #FFFFFF;
}
/*--- warning ---*/
.wojo.warning.buttons .button,
.wojo.warning.button {
    background-color: #EDAA10;
    color: #FFFFFF;
}
.wojo.warning.buttons .button:hover,
.wojo.warning.button:hover,
.wojo.warning.buttons .active.button,
.wojo.warning.button.active {
    background-color: #f0b327;
    color: #FFFFFF;
}
.wojo.warning.buttons .button:active,
.wojo.warning.button:active {
    background-color: #d39810;
    color: #FFFFFF;
}
/*--- info ---*/
.wojo.info.buttons .button,
.wojo.info.button {
    background-color: #5795AF;
    color: #FFFFFF;
}
.wojo.info.buttons .button:hover,
.wojo.info.button:hover,
.wojo.info.buttons .active.button,
.wojo.info.button.active {
    background-color: #68a0b8;
    color: #FFFFFF;
}
.wojo.info.buttons .button:active,
.wojo.info.button:active {
    background-color: #4d87a0;
    color: #FFFFFF;
}
/*--- Purple ---*/
.wojo.purple.buttons .button,
.wojo.purple.button {
    background-color: #7A6591;
    color: #FFFFFF;
}
.wojo.purple.buttons .button:hover,
.wojo.purple.button:hover,
.wojo.purple.buttons .active.button,
.wojo.purple.button.active {
    background-color: #87719f;
    color: #FFFFFF;
}
.wojo.purple.buttons .button:active,
.wojo.purple.button:active {
    background-color: #6d5a82;
    color: #FFFFFF;
}
/*--- Teal ---*/
.wojo.teal.buttons .button,
.wojo.teal.button {
    background-color: #61A299;
    color: #FFFFFF;
}
.wojo.teal.buttons .button:hover,
.wojo.teal.button:hover,
.wojo.teal.buttons .active.button,
.wojo.teal.button.active {
    background-color: #70aca4;
    color: #FFFFFF;
}
.wojo.teal.buttons .button:active,
.wojo.teal.button:active {
    background-color: #57928a;
    color: #FFFFFF;
}
/*---------------
    Positive
----------------*/
.wojo.positive.buttons .button,
.wojo.positive.button {
    background-color: #e7cd3b;
    color: #FFFFFF;
}
.wojo.positive.buttons .button:hover,
.wojo.positive.button:hover,
.wojo.positive.buttons .active.button,
.wojo.positive.button.active {
    background-color: #4a5c62;
    color: #FFFFFF;
}
.wojo.positive.buttons .button:active,
.wojo.positive.button:active {
    background-color: #4a5c62;
    color: #FFFFFF;
}
/*---------------
     Negative
----------------*/
.wojo.negative.buttons .button,
.wojo.negative.button {
    background-color: #A26161;
    color: #FFFFFF;
}
.wojo.negative.buttons .button:hover,
.wojo.negative.button:hover,
.wojo.negative.buttons .active.button,
.wojo.negative.button.active {
    background-color: #ac7070;
    color: #FFFFFF;
}
.wojo.negative.buttons .button:active,
.wojo.negative.button:active {
    background-color: #925757;
    color: #FFFFFF;
}
/*******************************
            Groups
*******************************/
.wojo.buttons {
    display: inline-block;
    vertical-align: middle;
}
.wojo.buttons:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.wojo.buttons .button:first-child {
    border-left: none;
}
.wojo.buttons .button {
    float: left;
    border-radius: 0em;
    -webkit-box-shadow: inset 1px 0 0 0 #fff;
    box-shadow: inset 1px 0 0 0 #fff, -1px 0 0 0 #fff
}
.wojo.buttons .button:first-child {
    margin-left: 0em;
    border-top-left-radius: 0.25em;
    border-bottom-left-radius: 0.25em;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wojo.buttons .button:last-child {
    border-top-right-radius: 0.25em;
    border-bottom-right-radius: 0.25em;
}
/* Vertical  Style */
.wojo.vertical.buttons {
    display: inline-block;
}
.wojo.vertical.buttons .button {
    display: block;
    float: none;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
}
.wojo.vertical.buttons .button:first-child,
.wojo.vertical.buttons .mini.button:first-child,
.wojo.vertical.buttons .tiny.button:first-child,
.wojo.vertical.buttons .small.button:first-child,
.wojo.vertical.buttons .massive.button:first-child,
.wojo.vertical.buttons .huge.button:first-child {
    margin-top: 0px;
    border-radius: 0.25em 0.25em 0px 0px;
}
.wojo.vertical.buttons .button:last-child,
.wojo.vertical.buttons .mini.button:last-child,
.wojo.vertical.buttons .tiny.button:last-child,
.wojo.vertical.buttons .small.button:last-child,
.wojo.vertical.buttons .massive.button:last-child,
.wojo.vertical.buttons .huge.button:last-child,
.wojo.vertical.buttons .gigantic.button:last-child {
    border-radius: 0px 0px 0.25em 0.25em;
}
/*-------------------
        Sizes
--------------------*/
.wojo.buttons .button,
.wojo.button {
    font-size: 1rem;
}
.wojo.mini.buttons .button,
.wojo.mini.buttons .or,
.wojo.mini.button {
    font-size: 0.8rem;
}
.wojo.mini.buttons .button,
.wojo.mini.button {
    padding: 0.6em 0.8em;
}
.wojo.mini.icon.buttons .button,
.wojo.mini.buttons .icon.button {
    padding: 0.6em 0.6em;
}
.wojo.tiny.buttons .button,
.wojo.tiny.buttons .or,
.wojo.tiny.button {
    font-size: 0.875em;
}
.wojo.tiny.buttons .button,
.wojo.tiny.buttons .button,
.wojo.tiny.button {
    padding: 0.6em 0.8em;
}
.wojo.tiny.icon.buttons .button,
.wojo.tiny.buttons .icon.button {
    padding: 0.6em 0.6em;
}
.wojo.small.buttons .button,
.wojo.small.buttons .or,
.wojo.small.button {

}
.wojo.large.buttons .button,
.wojo.large.buttons .or,
.wojo.large.button {
    font-size: 1.125rem;
}
.wojo.big.buttons .button,
.wojo.big.buttons .or,
.wojo.big.button {
    font-size: 1.25rem;
}
.wojo.huge.buttons .button,
.wojo.huge.buttons .or,
.wojo.huge.button {
    font-size: 1.375rem;
}
.wojo.massive.buttons .button,
.wojo.massive.buttons .or,
.wojo.massive.button {
    font-size: 1.5rem;
    font-weight: bold;
}

/* == Dropdown == */
.wojo.dropdown {
    cursor: pointer;
    position: relative;
    display: inline-block;
    line-height: 1;
    -webkit-transition: border-radius .1s ease, width .2s ease;
    transition: border-radius .1s ease, width .2s ease;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -moz-tap-highlight-color: rgba(0,0,0,0);
    tap-highlight-color: rgba(0,0,0,0)
}
/* == Content == */
.wojo.dropdown .menu {
    cursor: auto;
    position: absolute;
    display: none;
    top: 100%;
    margin: 0;
    background-color: #fff;
    min-width: 100%;
    white-space: nowrap;
    font-size: .875em;
    text-shadow: none;
    -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
    border-radius:0;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    z-index: 800
}
/* == Icon == */
.wojo.dropdown > .dropdown.icon {
    width: auto;
    margin: 0 0 0 1em
}
.wojo.dropdown > .dropdown.icon:before {
    content: "\f0d7"
}
.wojo.dropdown .menu .item .dropdown.icon {
    width: auto;
    float: right;
    margin: 0 0 0 .5em
}
.wojo.dropdown .menu .item .dropdown.icon:before {
    content: "\f0da"
}
/* == Text == */
.wojo.dropdown > .text {
    display: inline-block;
    -webkit-transition: color .2s ease;
    transition: color .2s ease
}
/* == Flyout Direction == */
.wojo.dropdown .menu {
    left: 0
}
/* == Sub Menu == */
.wojo.dropdown .menu .menu {
    top: 0;
    left: 100%;
    margin: 0;
    border-radius: 0 .325em .325em 0
}
.wojo.dropdown .menu .menu:after {
    display: none
}
.wojo.dropdown .menu .item {
    cursor: pointer;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    height: auto;
    font-size:1rem;
    display: block;
    color: rgba(0,0,0,0.75);
    padding: .85em 1em;
    text-transform: none;
    font-weight: 400;
    text-align: left;
    -webkit-touch-callout: none
}
.wojo.dropdown .menu .item:before {
    display: none
}
.wojo.dropdown .menu .item .icon {
    margin-right: .75em
}
.wojo.dropdown .menu .item:first-child {
    border-top: none
}

/* == Coupling == */
.wojo.menu .right.menu .dropdown:last-child .menu,
.wojo.buttons > .wojo.dropdown:last-child .menu {
    left: auto;
    right: 0
}
.wojo.vertical.menu .dropdown.item > .dropdown.icon:before {
    content:"\f0da"
}
.wojo.dropdown.icon.button > .dropdown.icon {
    margin: 0
}
/* == States == */
.wojo.visible.dropdown > .menu {
    display: block
}
.wojo.dropdown .menu .item:hover {
    background-color: rgba(0,0,0,0.04);
    z-index: 12
}
.wojo.dropdown .menu .active.item {
    background-color: rgba(0,0,0,0.06);
    border-left: none;
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-shadow: none;
    box-shadow: none;
    z-index: 12
}
.wojo.dropdown > .default.text,
.wojo.default.dropdown > .text {
    color: rgba(0,0,0,0.5)
}
.wojo.dropdown:hover > .default.text,
.wojo.default.dropdown:hover > .text {
    color: rgba(0,0,0,0.8)
}
/* == Variations == */
.wojo.simple.dropdown .menu:before,
.wojo.simple.dropdown .menu:after {
    display: none
}
.wojo.simple.dropdown .menu {
    display: block;
    overflow: hidden;
    top: -9999px;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}
.wojo.simple.active.dropdown,
.wojo.simple.dropdown:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}
.wojo.simple.active.dropdown > .menu,
.wojo.simple.dropdown:hover > .menu {
    overflow: visible;
    width: auto;
    height: auto;
    top: 100%;
    opacity: 1
}
.wojo.simple.dropdown > .menu .item:active > .menu,
.wojo.simple.dropdown:hover > .menu .item:hover > .menu {
    overflow: visible;
    width: auto;
    height: auto;
    top: 0;
    left: 100%;
    opacity: 1
}
.wojo.simple.disabled.dropdown:hover .menu {
    display: none;
    height: 0;
    width: 0;
    overflow: hidden
}
/* == Selection == */
.wojo.selection.dropdown {
    cursor: pointer;
    display: inline-block;
    word-wrap: break-word;
    white-space: normal;
    background-color: #FFF;
    padding: .5em 1em;
    line-height: 1.33;
    color: rgba(0,0,0,0.8);
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    border-radius: .3125em
}
.wojo.selection.dropdown select {
    display: none
}
.wojo.selection.dropdown > .dropdown.icon {
    opacity: 0.7;
    margin: .2em 0 .2em 1.25em;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out
}
.wojo.selection.dropdown,
.wojo.selection.dropdown .menu {
    top: 100%;
    -webkit-transition: 0 .2s ease-out;
    transition: box-shadow .2s ease-out
}
.wojo.selection.dropdown .menu {
    max-height: 312px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-shadow: 0 1px 0 1px rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 1px rgba(0,0,0,0.1);
    border-radius: 0 0 .325em .325em
}
.wojo.selection.dropdown .menu:after,
.wojo.selection.dropdown .menu:before {
    display: none
}
.wojo.selection.dropdown .menu img {
    height: 2.5em;
    display: inline-block;
    vertical-align: middle;
    margin-right: .5em
}
.wojo.selection.dropdown:hover {
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2)
}
.wojo.selection.dropdown:hover .menu {
    -webkit-box-shadow: 0 1px 0 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 1px rgba(0,0,0,0.2)
}
.wojo.selection.dropdown:hover > .dropdown.icon {
    opacity: 1
}
.wojo.visible.selection.dropdown {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}
.wojo.active.selection.dropdown {
    border-radius: .3125em .3125em 0 0
}
.wojo.active.selection.dropdown > .dropdown.icon {
    opacity: 1
}
.wojo.selection.dropdown.small{
    font-size:.85em;
}
.wojo.selection.dropdown.small .menu > .item{
    font-size:.95em;
}
/* == Fluid == */
.wojo.fluid.dropdown {
    display: block
}
.wojo.fluid.dropdown > .dropdown.icon {
    float: right
}
/* == Inline == */
.wojo.inline.dropdown {
    cursor: pointer;
    display: inline-block;
    color: inherit
}
.wojo.inline.dropdown .dropdown.icon {
    margin: 0 .5em 0 .25em
}
.wojo.inline.dropdown .text {
    font-weight: 700
}
.wojo.inline.dropdown .menu {
    cursor: auto;
    margin-top: .25em;
    border-radius: .325em
}
/* == Floating == */
.wojo.floating.dropdown .menu {
    left: 0;
    right: auto;
    margin-top: .5em;
    border-radius: .325em
}
/* == Pointing == */
.wojo.pointing.dropdown .menu {
    top: 100%;
    margin-top: .75em;
    border-radius: .325em;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.wojo.pointing.dropdown .menu:after {
    display: block;
    position: absolute;
    pointer-events: none;
    content: " ";
    visibility: visible;
    width: .5em;
    height: .5em;
    -webkit-box-shadow: -1px -1px 0 1px rgba(0,0,0,0.05);
    box-shadow: -1px -1px 0 1px rgba(0,0,0,0.05);
    background-image: none;
    background-color: #FFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2
}
.wojo.pointing.dropdown .menu .active.item:first-child {
    background: transparent 0;
    background: transparent-webkit-gradient(linear, lefttop, leftbottom, from(transparent), to(rgba(0,0,0,0.03)));
    background: transparent linear-gradient(transparent, rgba(0,0,0,0.03))
}
/* == Directions == */
.wojo.pointing.dropdown .menu:after {
    top: -.25em;
    left: 50%;
    margin: 0 0 0 -.25em
}
.wojo.top.left.pointing.dropdown .menu {
    top: 100%;
    bottom: auto;
    left: 0;
    right: auto;
    margin: .75em 0 0
}
.wojo.top.left.pointing.dropdown .menu:after {
    top: -.25em;
    left: 1.25em;
    right: auto;
    margin: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
.wojo.top.right.pointing.dropdown .menu {
    top: 100%;
    bottom: auto;
    right: 0;
    left: auto;
    margin: .75em 0 0
}
.wojo.top.right.pointing.dropdown .menu:after {
    top: -.25em;
    left: auto;
    right: 1.25em;
    margin: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
.wojo.left.pointing.dropdown .menu {
    top: 0;
    left: 100%;
    right: auto;
    margin: 0 0 0 .75em
}
.wojo.left.pointing.dropdown .menu:after {
    top: 1em;
    left: -.25em;
    margin: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.wojo.right.pointing.dropdown .menu {
    top: 0;
    left: auto;
    right: 100%;
    margin: 0 .75em 0 0
}
.wojo.right.pointing.dropdown .menu:after {
    top: 1em;
    left: auto;
    right: -.25em;
    margin: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}
/* == Inverted == */
.wojo.dropdown.inverted .menu {
    background-color:#272727;
    -webkit-box-shadow: 4px 4px 0 0 rgba(0,0,0,0.1);
    box-shadow: 4px 4px 0 0 rgba(0,0,0,0.1);
}
.wojo.dropdown.inverted .menu .item {
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);
}
.wojo.dropdown.inverted .menu .item {
    color:rgba(255,255,255,0.8);
}

@font-face {
    font-family: 'Icons';
    src: url(../fonts/icons.eot);
    src: url(../fonts/icons.eot?#iefix) format('embedded-opentype'),
    url(../fonts/icons.svg#icons) format('svg'),
    url(../fonts/icons.woff) format('woff'),
    url(../fonts/icons.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-decoration: inherit;
    text-transform: none
}
i.icon {
    display: inline-block;
    font-family: Icons;
    font-style: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size:1em;
}
i.icon.left:before {
    content: "\f060"
}
i.icon.right:before {
    content: "\f061"
}
i.icon.add.sign.box:before {
    content: "\f0fe"
}
i.icon.add.sign:before {
    content: "\f055"
}
i.icon.add:before {
    content: "\f067"
}
i.icon.adjust:before {
    content: "\f042"
}
i.icon.adn:before {
    content: "\f170"
}
i.icon.align.center:before {
    content: "\f037"
}
i.icon.align.justify:before {
    content: "\f039"
}
i.icon.align.left:before {
    content: "\f036"
}
i.icon.align.right:before {
    content: "\f038"
}
i.icon.ambulance:before {
    content: "\f0f9"
}
i.icon.anchor:before {
    content: "\f13d"
}
i.icon.android:before {
    content: "\f17b"
}
i.icon.angle.down:before {
    content: "\f107"
}
i.icon.angle.left:before {
    content: "\f104"
}
i.icon.angle.right:before {
    content: "\f105"
}
i.icon.angle.up:before {
    content: "\f106"
}
i.icon.apple:before {
    content: "\f179"
}
i.icon.archive:before {
    content: "\f187"
}
i.icon.arrow.down:before {
    content: "\f078"
}
i.icon.arrow.left:before {
    content: "\f053"
}
i.icon.arrow.right:before {
    content: "\f054"
}
i.icon.arrow.sign.down:before {
    content: "\f13a"
}
i.icon.arrow.sign.left:before {
    content: "\f137"
}
i.icon.arrow.sign.right:before {
    content: "\f138"
}
i.icon.arrow.sign.up:before {
    content: "\f139"
}
i.icon.arrow.up:before {
    content: "\f077"
}
i.icon.asterisk:before {
    content: "\f069"
}
i.icon.attachment:before {
    content: "\f0c6"
}
i.icon.attention:before {
    content: "\f06a"
}
i.icon.backward:before {
    content: "\f04a"
}
i.icon.ban.circle:before {
    content: "\f05e"
}
i.icon.bar.chart:before {
    content: "\f080"
}
i.icon.barcode:before {
    content: "\f02a"
}
i.icon.beer:before {
    content: "\f0fc"
}
i.icon.bell.outline:before {
    content: "\f0a2"
}
i.icon.bell:before {
    content: "\f0f3"
}
i.icon.bitbucket.sign:before {
    content: "\f172"
}
i.icon.bitbucket:before {
    content: "\f171"
}
i.icon.bitcoin:before {
    content: "\f15a"
}
i.icon.bold:before {
    content: "\f032"
}
i.icon.bolt:before {
    content: "\f0e7"
}
i.icon.book:before {
    content: "\f02d"
}
i.icon.bookmark.empty:before {
    content: "\f097"
}
i.icon.bookmark:before {
    content: "\f02e"
}
i.icon.box.arrow.down:before {
    content: "\f150"
}
i.icon.box.arrow.right:before {
    content: "\f152"
}
i.icon.box.arrow.left:before {
    content: "\f191"
}
i.icon.box.arrow.up:before {
    content: "\f151"
}
i.icon.briefcase:before {
    content: "\f0b1"
}
i.icon.browser:before {
    content: "\f022"
}
i.icon.bug:before {
    content: "\f188"
}
i.icon.building:before {
    content: "\f0f7"
}
i.icon.bullhorn:before {
    content: "\f0a1"
}
i.icon.bullseye:before {
    content: "\f140"
}
i.icon.calendar.empty:before {
    content: "\f133"
}
i.icon.calendar:before {
    content: "\f073"
}
i.icon.camera.retro:before {
    content: "\f083"
}
i.icon.camera:before {
    content: "\f030"
}
i.icon.triangle.down:before {
    content: "\f0d7"
}
i.icon.triangle.left:before {
    content: "\f0d9"
}
i.icon.triangle.right:before {
    content: "\f0da"
}
i.icon.triangle.up:before {
    content: "\f0d8"
}
i.icon.cart:before {
    content: "\f07a"
}
i.icon.certificate:before {
    content: "\f0a3"
}
i.icon.chat.outline:before {
    content: "\f0e6"
}
i.icon.chat:before {
    content: "\f086"
}
i.icon.checkbox.empty:before {
    content: "\f096"
}
i.icon.checkbox.minus:before{
    content: "\f147"
}
i.icon.checked.checkbox:before {
    content: "\f046"
}
i.icon.checkmark.sign:before {
    content: "\f14a"
}
i.icon.checkmark:before {
    content: "\f00c"
}
i.icon.circle.blank:before {
    content: "\f10c"
}
i.icon.circle.down:before {
    content: "\f0ab"
}
i.icon.circle.left:before {
    content: "\f0a8"
}
i.icon.circle.right:before {
    content: "\f0a9"
}
i.icon.circle.up:before {
    content: "\f0aa"
}
i.icon.circle:before {
    content: "\f111"
}
i.icon.circle.dot:before {
    content: "\f192"
}
i.icon.cloud.download:before {
    content: "\f0ed"
}
i.icon.cloud.upload:before {
    content: "\f0ee"
}
i.icon.cloud:before {
    content: "\f0c2"
}
i.icon.code.fork:before {
    content: "\f126"
}
i.icon.code:before {
    content: "\f121"
}
i.icon.coffee:before {
    content: "\f0f4"
}
i.icon.collapse:before {
    content: "\f117"
}
i.icon.comment.outline:before {
    content: "\f0e5"
}
i.icon.comment:before {
    content: "\f075"
}
i.icon.copy:before {
    content: "\f0c5"
}
i.icon.crop:before {
    content: "\f125"
}
i.icon.css3:before {
    content: "\f13c"
}
i.icon.cut:before {
    content: "\f0c4"
}
i.icon.dashboard:before {
    content: "\f0e4"
}
i.icon.desktop:before {
    content: "\f108"
}
i.icon.doctor:before {
    content: "\f0f0"
}
i.icon.dollar:before {
    content: "\f155"
}
i.icon.double.angle.down:before {
    content: "\f103"
}
i.icon.double.angle.left:before {
    content: "\f100"
}
i.icon.double.angle.right:before {
    content: "\f101"
}
i.icon.double.angle.up:before {
    content: "\f102"
}
i.icon.down:before {
    content: "\f063"
}
i.icon.download.disk:before {
    content: "\f019"
}
i.icon.download:before {
    content: "\f01a"
}
i.icon.dribbble:before {
    content: "\f17d"
}
i.icon.dropbox:before {
    content: "\f16b"
}
i.icon.edit.sign:before {
    content: "\f14b"
}
i.icon.edit:before {
    content: "\f044"
}
i.icon.eject:before {
    content: "\f052"
}
i.icon.ellipsis.horizontal:before {
    content: "\f141"
}
i.icon.ellipsis.vertical:before {
    content: "\f142"
}
i.icon.eraser:before {
    content: "\f12d"
}
i.icon.euro:before {
    content: "\f153"
}
i.icon.exchange:before {
    content: "\f0ec"
}
i.icon.exclamation:before {
    content: "\f12a"
}
i.icon.expand:before {
    content: "\f116"
}
i.icon.external.url.sign:before {
    content: "\f14c"
}
i.icon.external.url:before {
    content: "\f08e"
}
i.icon.facebook.sign:before {
    content: "\f082"
}
i.icon.facebook:before {
    content: "\f09a"
}
i.icon.facetime.video:before {
    content: "\f03d"
}
i.icon.fast.backward:before {
    content: "\f049"
}
i.icon.fast.forward:before {
    content: "\f050"
}
i.icon.female:before {
    content: "\f182"
}
i.icon.fighter.jet:before {
    content: "\f0fb"
}
i.icon.file.outline:before {
    content: "\f016"
}
i.icon.file.text.outline:before {
    content: "\f0f6"
}
i.icon.file.text:before {
    content: "\f15c"
}
i.icon.file:before {
    content: "\f15b"
}
i.icon.filter:before {
    content: "\f0b0"
}
i.icon.fire.extinguisher:before {
    content: "\f134"
}
i.icon.fire:before {
    content: "\f06d"
}
i.icon.flag.checkered:before {
    content: "\f11e"
}
i.icon.flag.empty:before {
    content: "\f11d"
}
i.icon.flag:before {
    content: "\f024"
}
i.icon.flickr:before {
    content: "\f16e"
}
i.icon.folder.open.outline:before {
    content: "\f115"
}
i.icon.folder.open:before {
    content: "\f07c"
}
i.icon.folder.outline:before {
    content: "\f114"
}
i.icon.folder:before {
    content: "\f07b"
}
i.icon.font:before {
    content: "\f031"
}
i.icon.food:before {
    content: "\f0f5"
}
i.icon.forward.mail:before {
    content: "\f064"
}
i.icon.forward:before {
    content: "\f04e"
}
i.icon.foursquare:before {
    content: "\f180"
}
i.icon.frown:before {
    content: "\f119"
}
i.icon.fullscreen:before {
    content: "\f0b2"
}
i.icon.gamepad:before {
    content: "\f11b"
}
i.icon.gift:before {
    content: "\f06b"
}
i.icon.github.alternate:before {
    content: "\f09b"
}
i.icon.github.sign:before {
    content: "\f092"
}
i.icon.github:before {
    content: "\f113"
}
i.icon.gittip:before {
    content: "\f184"
}
i.icon.glass:before {
    content: "\f000"
}
i.icon.globe:before {
    content: "\f0ac"
}
i.icon.google.plus.sign:before {
    content: "\f0d4"
}
i.icon.google.plus:before {
    content: "\f0d5"
}
i.icon.h.sign:before {
    content: "\f0fd"
}
i.icon.hand.down:before {
    content: "\f0a7"
}
i.icon.hand.left:before {
    content: "\f0a5"
}
i.icon.hand.right:before {
    content: "\f0a4"
}
i.icon.hand.up:before {
    content: "\f0a6"
}
i.icon.hdd:before {
    content: "\f0a0"
}
i.icon.headphones:before {
    content: "\f025"
}
i.icon.heart.empty:before {
    content: "\f08a"
}
i.icon.heart:before {
    content: "\f004"
}
i.icon.help:before {
    content: "\f059"
}
i.icon.hide:before {
    content: "\f070"
}
i.icon.home:before {
    content: "\f015"
}
i.icon.hospital:before {
    content: "\f0f8"
}
i.icon.html5:before {
    content: "\f13b"
}
i.icon.inbox:before {
    content: "\f01c"
}
i.icon.indent.left:before {
    content: "\f03b"
}
i.icon.indent.right:before {
    content: "\f03c"
}
i.icon.information.letter:before {
    content: "\f129"
}
i.icon.information:before {
    content: "\f05a"
}
i.icon.instagram:before {
    content: "\f16d"
}
i.icon.italic:before {
    content: "\f033"
}
i.icon.key:before {
    content: "\f084"
}
i.icon.keyboard:before {
    content: "\f11c"
}
i.icon.lab:before {
    content: "\f0c3"
}
i.icon.laptop:before {
    content: "\f109"
}
i.icon.layout.block:before {
    content: "\f009"
}
i.icon.layout.column:before {
    content: "\f0db"
}
i.icon.layout.grid:before {
    content: "\f00a"
}
i.icon.layout.list:before {
    content: "\f00b"
}
i.icon.leaf:before {
    content: "\f06c"
}
i.icon.legal:before {
    content: "\f0e3"
}
i.icon.lemon:before {
    content: "\f094"
}
i.icon.level.down:before {
    content: "\f149"
}
i.icon.level.up:before {
    content: "\f148"
}
i.icon.lightbulb:before {
    content: "\f0eb"
}
i.icon.linkedin.sign:before {
    content: "\f08c"
}
i.icon.linkedin:before {
    content: "\f0e1"
}
i.icon.linux:before {
    content: "\f17c"
}
i.icon.list.ordered:before {
    content: "\f0cb"
}
i.icon.list.unordered:before {
    content: "\f0ca"
}
i.icon.list:before {
    content: "\f03a"
}
i.icon.lira:before {
    content: "\f195"
}
i.icon.loading:before {
    content: "\f110"
}
i.icon.location:before {
    content: "\f124"
}
i.icon.lock:before {
    content: "\f023"
}
i.icon.long.arrow.down:before {
    content: "\f175"
}
i.icon.long.arrow.left:before {
    content: "\f177"
}
i.icon.long.arrow.right:before {
    content: "\f178"
}
i.icon.long.arrow.up:before {
    content: "\f176"
}
i.icon.magic:before {
    content: "\f0d0"
}
i.icon.magnet:before {
    content: "\f076"
}
i.icon.mail.outline:before {
    content: "\f003"
}
i.icon.mail.reply:before {
    content: "\f112"
}
i.icon.mail:before {
    content: "\f0e0"
}
i.icon.male:before {
    content: "\f183"
}
i.icon.map.marker:before {
    content: "\f041"
}
i.icon.map:before {
    content: "\f14e"
}
i.icon.maxcdn:before {
    content: "\f136"
}
i.icon.medkit:before {
    content: "\f0fa"
}
i.icon.meh:before {
    content: "\f11a"
}
i.icon.minus.sign.alternate:before {
    content: "\f146"
}
i.icon.minus.sign:before {
    content: "\f056"
}
i.icon.minus:before {
    content: "\f068"
}
i.icon.mobile:before {
    content: "\f10b"
}
i.icon.money:before {
    content: "\f0d6"
}
i.icon.moon:before {
    content: "\f186"
}
i.icon.move:before {
    content: "\f047"
}
i.icon.music:before {
    content: "\f001"
}
i.icon.mute:before {
    content: "\f131"
}
i.icon.off:before {
    content: "\f011"
}
i.icon.ok.circle:before {
    content: "\f05d"
}
i.icon.ok.sign:before {
    content: "\f058"
}
i.icon.paste:before {
    content: "\f0ea"
}
i.icon.pause:before {
    content: "\f04c"
}
i.icon.payment:before {
    content: "\f09d"
}
i.icon.pencil:before {
    content: "\f040"
}
i.icon.phone.sign:before {
    content: "\f098"
}
i.icon.phone:before {
    content: "\f095"
}
i.icon.photo:before {
    content: "\f03e"
}
i.icon.pin:before {
    content: "\f08d"
}
i.icon.pinterest.sign:before {
    content: "\f0d3"
}
i.icon.pinterest:before {
    content: "\f0d2"
}
i.icon.plane:before {
    content: "\f072"
}
i.icon.play.circle:before {
    content: "\f01d"
}
i.icon.play.sign:before {
    content: "\f144"
}
i.icon.play:before {
    content: "\f04b"
}
i.icon.pound:before {
    content: "\f154"
}
i.icon.print:before {
    content: "\f02f"
}
i.icon.puzzle.piece:before {
    content: "\f12e"
}
i.icon.qr.code:before {
    content: "\f029"
}
i.icon.question:before {
    content: "\f128"
}
i.icon.quote.left:before {
    content: "\f10d"
}
i.icon.quote.right:before {
    content: "\f10e"
}
i.icon.refresh:before {
    content: "\f021"
}
i.icon.remove.circle:before {
    content: "\f05c"
}
i.icon.remove.sign:before {
    content: "\f057"
}
i.icon.remove:before {
    content: "\f00d"
}
i.icon.renren:before {
    content: "\f18b"
}
i.icon.reorder:before {
    content: "\f0c9"
}
i.icon.repeat:before {
    content: "\f01e"
}
i.icon.reply.all.mail:before {
    content: "\f122"
}
i.icon.resize.full:before {
    content: "\f065"
}
i.icon.resize.horizontal:before {
    content: "\f07e"
}
i.icon.resize.small:before {
    content: "\f066"
}
i.icon.resize.vertical:before {
    content: "\f07d"
}
i.icon.retweet:before {
    content: "\f079"
}
i.icon.road:before {
    content: "\f018"
}
i.icon.rocket:before {
    content: "\f135"
}
i.icon.rss.sign:before {
    content: "\f143"
}
i.icon.rss:before {
    content: "\f09e"
}
i.icon.rupee:before {
    content: "\f156"
}
i.icon.save:before {
    content: "\f0c7"
}
i.icon.screenshot:before {
    content: "\f05b"
}
i.icon.search:before {
    content: "\f002"
}
i.icon.setting:before {
    content: "\f013"
}
i.icon.settings:before {
    content: "\f085"
}
i.icon.share.sign:before {
    content: "\f14d"
}
i.icon.share:before {
    content: "\f045"
}
i.icon.shield:before {
    content: "\f132"
}
i.icon.shuffle:before {
    content: "\f074"
}
i.icon.sign.in:before {
    content: "\f090"
}
i.icon.sign.out:before {
    content: "\f08b"
}
i.icon.sign:before {
    content: "\f0c8"
}
i.icon.signal:before {
    content: "\f012"
}
i.icon.sitemap:before {
    content: "\f0e8"
}
i.icon.skype:before {
    content: "\f17e"
}
i.icon.smile:before {
    content: "\f118"
}
i.icon.sort.alphabet.descending:before {
    content: "\f15e"
}
i.icon.sort.alphabet:before {
    content: "\f15d"
}
i.icon.sort.ascending:before {
    content: "\f0de"
}
i.icon.sort.attributes.descending:before {
    content: "\f161"
}
i.icon.sort.attributes:before {
    content: "\f160"
}
i.icon.sort.descending:before {
    content: "\f0dd"
}
i.icon.sort.order.descending:before {
    content: "\f163"
}
i.icon.sort.order:before {
    content: "\f162"
}
i.icon.sort:before {
    content: "\f0dc"
}
i.icon.stackexchange:before {
    content: "\f16c"
}
i.icon.star.empty:before {
    content: "\f006"
}
i.icon.star.half.empty:before {
    content: "\f123"
}
i.icon.star.half.full:before,
i.icon.star.half:before {
    content: "\f089"
}
i.icon.star:before {
    content: "\f005"
}
i.icon.step.backward:before {
    content: "\f048"
}
i.icon.step.forward:before {
    content: "\f051"
}
i.icon.stethoscope:before {
    content: "\f0f1"
}
i.icon.stop:before {
    content: "\f04d"
}
i.icon.strikethrough:before {
    content: "\f0cc"
}
i.icon.subscript:before {
    content: "\f12c"
}
i.icon.suitcase:before {
    content: "\f0f2"
}
i.icon.sun:before {
    content: "\f185"
}
i.icon.superscript:before {
    content: "\f12b"
}
i.icon.table:before {
    content: "\f0ce"
}
i.icon.tablet:before {
    content: "\f10a"
}
i.icon.tag:before {
    content: "\f02b"
}
i.icon.tags:before {
    content: "\f02c"
}
i.icon.tasks:before {
    content: "\f0ae"
}
i.icon.terminal:before {
    content: "\f120"
}
i.icon.text.height:before {
    content: "\f034"
}
i.icon.text.width:before {
    content: "\f035"
}
i.icon.thumbs.down.outline:before {
    content: "\f088"
}
i.icon.thumbs.down:before {
    content: "\f165"
}
i.icon.thumbs.up.outline:before {
    content: "\f087"
}
i.icon.thumbs.up:before {
    content: "\f164"
}
i.icon.ticket:before {
    content: "\f145"
}
i.icon.time:before {
    content: "\f017"
}
i.icon.tint:before {
    content: "\f043"
}
i.icon.trash:before {
    content: "\f014"
}
i.icon.trello:before {
    content: "\f181"
}
i.icon.trophy:before {
    content: "\f091"
}
i.icon.truck:before {
    content: "\f0d1"
}
i.icon.tumblr.sign:before {
    content: "\f174"
}
i.icon.tumblr:before {
    content: "\f173"
}
i.icon.twitter.sign:before {
    content: "\f081"
}
i.icon.twitter:before {
    content: "\f099"
}
i.icon.umbrella:before {
    content: "\f0e9"
}
i.icon.underline:before {
    content: "\f0cd"
}
i.icon.undo:before {
    content: "\f0e2"
}
i.icon.unhide:before {
    content: "\f06e"
}
i.icon.unlink:before {
    content: "\f127"
}
i.icon.unlock.alternate:before {
    content: "\f13e"
}
i.icon.unlock:before {
    content: "\f09c"
}
i.icon.unmute:before {
    content: "\f130"
}
i.icon.up:before {
    content: "\f062"
}
i.icon.upload.disk:before {
    content: "\f093"
}
i.icon.upload:before {
    content: "\f01b"
}
i.icon.url:before {
    content: "\f0c1"
}
i.icon.user:before {
    content: "\f007"
}
i.icon.users:before {
    content: "\f0c0"
}
i.icon.video:before {
    content: "\f008"
}
i.icon.vk:before {
    content: "\f189"
}
i.icon.volume.down:before {
    content: "\f027"
}
i.icon.volume.off:before {
    content: "\f026"
}
i.icon.volume.up:before {
    content: "\f028"
}
i.icon.warn:before {
    content: "\f071"
}
i.icon.weibo:before {
    content: "\f18a"
}
i.icon.windows:before {
    content: "\f17a"
}
i.icon.wheelchair:before {
    content: "\f193"
}
i.icon.won:before {
    content: "\f159"
}
i.icon.wrench:before {
    content: "\f0ad"
}
i.icon.xing.sign:before {
    content: "\f169"
}
i.icon.xing:before {
    content: "\f168"
}
i.icon.yen:before {
    content: "\f157"
}
i.icon.youtube.play:before {
    content: "\f16a"
}
i.icon.youtube.sign:before {
    content: "\f166"
}
i.icon.youtube:before {
    content: "\f167"
}
i.icon.rouble:before {
    content: "\f158"
}
i.icon.zoom.in:before {
    content: "\f00e"
}
i.icon.zoom.out:before {
    content: "\f010"
}
i.icon.check:before {
    content: "\f00c"
}
i.icon.close:before {
    content: "\f00d"
}
i.icon.delete:before {
    content: "\f00d"
}
i.icon.like:before {
    content: "\f004"
}
i.icon.plus:before {
    content: "\f067"
}
i.icon.signup:before {
    content: "\f044"
}
i.icon.star {
    width: auto;
    margin: 0
}
i.automobile:before,
i.car:before {
    content: "\f1b9";
}
i.icon.cab:before,
i.icon.taxi:before {
    content: "\f1ba";
}
i.icon.space.shuttle:before {
    content: "\f197";
}
i.icon.slack:before {
    content: "\f198";
}
i.icon.envelope:before {
    content: "\f199";
}
i.icon.wordpress:before {
    content: "\f19a";
}
i.icon.openid:before {
    content: "\f19b";
}
i.icon.institution:before,
i.icon.bank:before,
i.icon.university:before {
    content: "\f19c";
}
i.icon.graduation:before {
    content: "\f19d";
}
i.icon.yahoo:before {
    content: "\f19e";
}
i.icon.google:before {
    content: "\f1a0";
}
i.icon.reddit:before {
    content: "\f1a1";
}
i.icon.reddit.square:before {
    content: "\f1a2";
}
i.icon.stumbleupon.circle:before {
    content: "\f1a3";
}
i.icon.stumbleupon:before {
    content: "\f1a4";
}
i.icon.delicious:before {
    content: "\f1a5";
}
i.icon.digg:before {
    content: "\f1a6";
}
i.icon.history:before {
    content: "\f1da";
}
i.icon.circle thin:before {
    content: "\f1db";
}
i.icon.header:before {
    content: "\f1dc";
}
i.icon.paragraph:before {
    content: "\f1dd";
}
i.icon.sliders:before {
    content: "\f1de";
}
i.icon.drupal:before {
    content: "\f1a9";
}
i.icon.joomla:before {
    content: "\f1aa";
}
i.icon.language:before {
    content: "\f1ab";
}
i.icon.fax:before {
    content: "\f1ac";
}
i.icon.building:before {
    content: "\f1ad";
}
i.icon.child:before {
    content: "\f1ae";
}
i.icon.paw:before {
    content: "\f1b0";
}
i.icon.spoon:before {
    content: "\f1b1";
}
i.icon.cube:before {
    content: "\f1b2";
}
i.icon.cubes:before {
    content: "\f1b3";
}
i.icon.behance:before {
    content: "\f1b4";
}
i.icon.behance.square:before {
    content: "\f1b5";
}
i.icon.steam:before {
    content: "\f1b6";
}
i.icon.steam.square:before {
    content: "\f1b7";
}
i.icon.recycle:before {
    content: "\f1b8";
}
i.icon.tree:before {
    content: "\f1bb";
}
i.icon.spotify:before {
    content: "\f1bc";
}
i.icon.deviantart:before {
    content: "\f1bd";
}
i.icon.soundcloud:before {
    content: "\f1be";
}
i.icon.database:before {
    content: "\f1c0";
}
i.icon.ra:before,
i.icon.rebel:before {
    content: "\f1d0";
}
i.icon.ge:before,
i.icon.empire:before {
    content: "\f1d1";
}
i.icon.git.square:before {
    content: "\f1d2";
}
i.icon.git:before {
    content: "\f1d3";
}
i.icon.hacker.news:before {
    content: "\f1d4";
}
i.icon.weibo:before {
    content: "\f1d5";
}
i.icon.qq:before {
    content: "\f1d6";
}
i.icon.wechat:before,
i.icon.weixin:before {
    content: "\f1d7";
}
i.icon.send:before,
i.icon.paper plane:before {
    content: "\f1d8";
}
i.icon.send.outline:before,
i.icon.paper.plane.outline:before {
    content: "\f1d9";
}
i.icon.pdf.outline:before {
    content: "\f1c1";
}
i.icon.word.outline:before {
    content: "\f1c2";
}
i.icon.excel.outline:before {
    content: "\f1c3";
}
i.icon.powerpoint.outline:before {
    content: "\f1c4";
}
i.icon.photo.outline:before,
i.icon.picture.outline:before,
i.icon.image.outline:before {
    content: "\f1c5";
}
i.icon.zip.outline:before,
i.icon.archive.outline:before {
    content: "\f1c6";
}
i.icon.sound.outline:before,
i.icon.audio.outline:before {
    content: "\f1c7";
}
i.icon.movie.outline:before,
i.icon.video.outline:before {
    content: "\f1c8";
}
i.icon.code.outline:before {
    content: "\f1c9";
}
i.icon.vine:before {
    content: "\f1ca";
}
i.icon.codepen:before {
    content: "\f1cb";
}
i.icon.jsfiddle:before {
    content: "\f1cc";
}
i.icon.plus.square.outline:before {
    content: "\f196";
}
i.icon.pied.piper.square:before,
i.icon.pied.piper:before {
    content: "\f1a7";
}
i.icon.pied.piper.alt:before {
    content: "\f1a8";
}
i.icon.life.bouy:before,
i.icon.life.saver:before,
i.icon.support:before,
i.icon.life.ring:before {
    content: "\f1cd";
}
i.icon.circle.notch:before {
    content: "\f1ce";
}
i.icon.share.alt:before {
    content: "\f1e0";
}
i.icon.share.alt.square:before {
    content: "\f1e1";
}
i.icon.bomb:before {
    content: "\f1e2";
}
i.icon.angellist:before {
    content: "\f209";
}
i.icon.bell slash:before {
    content: "\f1f7";
}
i.icon.bus:before {
    content: "\f207";
}
i.icon.visa:before {
    content: "\f1f0";
}
i.icon.google wallet:before {
    content: "\f1ee";
}
i.icon.lastfm.square:before {
    content: "\f203";
}
i.icon.paint.brush:before {
    content: "\f1fc";
}
i.icon.ils:before {
    content: "\f20b";
}
i.icon.toggle.off:before {
    content: "\f204";
}
i.icon.toggle.on:before {
    content: "\f205";
}
i.icon.twitch:before {
    content: "\f1e8";
}
i.icon.bicycle:before {
    content: "\f206";
}
i.icon.discover:before {
    content: "\f1f2";
}
i.icon.area.chart:before {
    content: "\f1fe";
}
i.icon.calculator:before {
    content: "\f1ec";
}
i.icon.mastercard:before {
    content: "\f1f1";
}
i.icon.copyright:before {
    content: "\f1f9";
}
i.icon.line.chart:before {
    content: "\f201";
}
i.icon.wifi:before {
    content: "\f1eb";
}
i.icon.paypal:before {
    content: "\f1ed";
}
i.icon.paypal.card:before {
    content: "\f1f4";
}
i.icon.at:before {
    content: "\f1fa";
}
i.icon.binoculars:before {
    content: "\f1e5";
}
i.icon.cc:before {
    content: "\f20a";
}
i.icon.eyedropper:before {
    content: "\f1fb";
}
i.icon.ioxhost:before {
    content: "\f208";
}
i.icon.meanpath:before {
    content: "\f20c";
}
i.icon.pie.chart:before {
    content: "\f200";
}
i.icon.slideshare:before {
    content: "\f1e7";
}
i.icon.yelp:before {
    content: "\f1e9";
}
i.icon.trash.outline:before {
    content: "\f1f8";
}
i.icon.bell.slash.outline:before {
    content: "\f1f6";
}
i.icon.birthday.cake:before {
    content: "\f1fd";
}
i.icon.amex.card:before {
    content: "\f1f3";
}
i.icon.stripe:before {
    content: "\f1f5";
}
i.icon.futbol:before {
    content: "\f1e3";
}
i.icon.futbol.outline:before {
    content: "\f1e3";
}
i.icon.lastfm:before {
    content: "\f202";
}
i.icon.newspaper:before {
    content: "\f1ea";
}
i.icon.tty:before {
    content: "\f1e4";
}
i.icon.left {
    width: auto;
    margin: 0 .5em 0 0
}
i.icon.search,
i.icon.up,
i.icon.down,
i.icon.right {
    width: auto;
    margin: 0 0 0 .5em
}
i.icon.loading {
    -webkit-animation: icon-loading 2s linear infinite;
    -ms-animation: icon-loading 2s linear infinite;
    animation: icon-loading 2s linear infinite;
}

@keyframes icon-loading {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes icon-loading {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes icon-loading {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
i.icon.hover {
    opacity: 1
}
i.icon.active {
    opacity: 1
}
i.emphasized.icon {
    opacity: 1
}
i.icon.disabled {
    opacity: .3
}
i.link.icon {
    cursor: pointer;
    opacity: .7;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}
i.link.icon:hover {
    opacity: 1
}
i.circular.icon,
i.rounded.icon {
    border-radius: 500em;
    padding: .5em .35em;
    -webkit-box-shadow: 0 0 0 2px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1) inset;
    width: 2em;
    height: 2em;
    line-height:1;
    text-align: center
}
i.circular.inverted.icon {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
i.circular.white.icon {
    -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.2) inset;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2) inset
}
i.rounded.icon {
    border-radius: .25em;
    -webkit-box-shadow: none;
    box-shadow: none
}
i.flipped.icon,
i.horizontally.flipped.icon {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}
i.vertically.flipped.icon {
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}
i.rotated.icon,
i.right.rotated.icon,
i.clockwise.rotated.icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}
i.left.rotated.icon,
i.counterclockwise.rotated.icon {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}
i.square.icon {
    width: 2em;
    height: 2em;
    padding: .5em .35em;
    -webkit-box-shadow: 0 0 0 2px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1) inset;
    text-align: center
}
i.square.inverted.icon {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
i.inverted.icon {
    background-color: #5c6166;
    color: #fff
}
i.info.icon {
    color: #5795AF
}
i.black.icon {
    color: #5c6166
}
i.success.icon {
    color: #e7cd3b
}
i.danger.icon {
    color: #A26161
}
i.purple.icon {
    color: #C6C
}
i.warning.icon {
    color: #EDAA10
}
i.teal.icon {
    color: #3CC9CA
}
i.white.icon {
    color: #fff
}
i.inverted.black.icon {
    background-color: #5c6166;
    color: #fff
}
i.inverted.info.icon {
    background-color: #5795AF;
    color: #fff
}
i.inverted.success.icon {
    background-color: #e7cd3b;
    color: #fff
}
i.inverted.danger.icon {
    background-color: #A26161;
    color: #fff
}
i.inverted.purple.icon {
    background-color: #C6C;
    color: #fff
}
i.inverted.warning.icon {
    background-color: #EDAA10;
    color: #fff
}
i.inverted.teal.icon {
    background-color: #3CC9CA;
    color: #fff
}
i.inverted.white.icon {
    background-color: #fff;
    color: #445C6A
}
i.small.icon {
    font-size: .675em
}

i.large.icon {
    font-size: 1.5em;
    vertical-align: middle
}
i.big.icon {
    font-size: 2em;
    vertical-align: middle
}
i.huge.icon {
    font-size: 4em;
    vertical-align: middle
}
i.massive.icon {
    font-size: 6em;
    vertical-align: middle
}
i.gigant.icon {
    font-size: 8em;
    vertical-align: middle
}

#cartlist .item {
    background-color: #fff;
}

/* == List == */
ul.wojo.list,
ol.wojo.list,
.wojo.list {
    list-style-type: none;
    margin: 1em 0;
    padding: 0
}
ul.wojo.list ul,
ol.wojo.list ol,
.wojo.list .list {
    margin: 0;
    padding: .5em 0 .5em 1em
}
ul.wojo.list:first-child,
ol.wojo.list:first-child,
.wojo.list:first-child {
    margin-top: 0
}
ul.wojo.list:last-child,
ol.wojo.list:last-child,
.wojo.list:last-child {
    margin-bottom: 0
}
/* == Content == */
ul.wojo.list li,
ol.wojo.list li,
.wojo.list .item {
    display: list-item;
    list-style-type: none;
    list-style-position: inside;
    padding: .5em 0;
    line-height: 1.2
}
.wojo.list .item:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.wojo.list .list {
    clear: both
}
/* == Icon == */
.wojo.list .item > .icon {
    display: block;
    float: left;
    margin: 0 1em 0 0;
    padding: .1em 0 0
}
.wojo.list .item > .icon:only-child {
    display: inline-block
}
.wojo.horizontal.list .item > .icon {
    margin: 0;
    padding: 0 .25em 0 0
}
.wojo.horizontal.list .item > .icon,
.wojo.horizontal.list .item > .icon + .content {
    float: none;
    display: inline-block
}
/* == Image == */
.wojo.list .item > img {
    display: block;
    float: left;
    margin-right: 1em;
    vertical-align: middle
}
.wojo.list .item > .content {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2
}
.wojo.list .item > .icon + .content {
    display: table-cell;
    vertical-align: top
}
.wojo.list a {
    cursor: pointer
}
.wojo.list a .icon {
    -webkit-transition: color .2s ease;
    transition: color .2s ease
}
.wojo.list .header {
    font-weight: 700;
}
.wojo.list .description {
    color: rgba(0,0,0,0.5);
    margin-top:.25em;
}
.wojo.list .item > .left.floated {
    margin-right: 1em;
    float: left
}
.wojo.list .item > .right.floated {
    margin-left: 1em;
    float: right
}
/* == Types == */
.wojo.horizontal.list {
    display: inline-block;
    font-size: 0
}
.wojo.horizontal.list > .item {
    display: inline-block;
    margin-left: 1em;
    font-size: 1rem
}
.wojo.horizontal.list > .item:first-child {
    margin-left: 0
}
.wojo.horizontal.list .list {
    padding-left: 0;
    padding-bottom: 0
}
.wojo.list a:hover .icon {
    color: rgba(0,0,0,0.8)
}
/* == Link == */
.wojo.link.list .item {
    color: rgba(0,0,0,0.3)
}
.wojo.link.list a.item,
.wojo.link.list .item a {
    color: rgba(0,0,0,0.5)
}
.wojo.link.list a.item:hover,
.wojo.link.list .item a:hover {
    color: rgba(0,0,0,0.8)
}
.wojo.link.list a.item:active,
.wojo.link.list .item a:active {
    color: rgba(0,0,0,0.8)
}
.wojo.link.list a.active.item,
.wojo.link.list .active.item a {
    color: rgba(0,0,0,0.8)
}
/* == Selection == */
.wojo.selection.list .item {
    cursor: pointer;
    color: rgba(0,0,0,0.4);
    padding: .5em;
    -webkit-transition: .2s color ease, .2s padding-left ease, .2s background-color ease;
    transition: .2s color ease, .2s padding-left ease, .2s background-color ease
}
.wojo.selection.list .item:hover {
    background-color: rgba(0,0,0,0.02);
    color: rgba(0,0,0,0.7)
}
.wojo.selection.list .item:active {
    background-color: rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.7)
}
.wojo.selection.list .item.active,
.wojo.divided.list .item.active {
    background-color: rgba(0,0,0,0.04);
    color: rgba(0,0,0,0.7)
}
.wojo.animated.list .item {
    -webkit-transition: .2s color ease, .2s padding-left ease, .2s background-color ease;
    transition: .2s color ease, .2s padding-left ease, .2s background-color ease
}
.wojo.animated.list:not(.horizontal) .item:hover {
    padding-left: 1em
}
.wojo.animated.list:not(.horizontal) .item:hover .item:hover {
    padding-left: .5em
}
/* == Bulleted == */
ul.wojo.list,
.wojo.bulleted.list {
    margin-left: 1.5em
}
ul.wojo.list li,
.wojo.bulleted.list .item {
    position: relative
}
ul.wojo.list li:before,
.wojo.bulleted.list .item:before {
    position: absolute;
    left: -1.5em;
    content: '•';
    line-height: 1.2rem;
    vertical-align: top
}
ul.wojo.list ul,
.wojo.bulleted.list .list {
    padding-left: 1.5em
}
ul.wojo.horizontal.bulleted.list,
.wojo.horizontal.bulleted.list {
    margin-left: 0
}
ul.wojo.horizontal.bulleted.list li,
.wojo.horizontal.bulleted.list .item {
    margin-left: 1.5em
}
ul.wojo.horizontal.bulleted.list li:before,
.wojo.horizontal.bulleted.list .item:before {
    left: -.9em
}
ul.wojo.horizontal.bulleted.list li:first-child,
.wojo.horizontal.bulleted.list .item:first-child {
    margin-left: 0
}
ul.wojo.horizontal.bulleted.list li:first-child::before,
.wojo.horizontal.bulleted.list .item:first-child::before {
    display: none
}
/* == Ordered == */
ol.wojo.list,
.wojo.ordered.list {
    counter-reset: ordered;
    margin-left: 2em;
    list-style-type: none
}
ol.wojo.list li,
.wojo.ordered.list .item {
    list-style-type: none;
    position: relative
}
ol.wojo.list li:before,
.wojo.ordered.list .item:before {
    position: absolute;
    left: -2em;
    counter-increment: ordered;
    content: counters(ordered, ".");
    text-align: right;
    vertical-align: top;
    opacity: 0.75
}
ol.wojo.list ol,
.wojo.ordered.list .list {
    counter-reset: ordered;
    padding-left: 2.5em
}
ol.wojo.list ol li:before,
.wojo.ordered.list .list .item:before {
    left: -2.5em
}
ol.wojo.horizontal.list,
.wojo.ordered.horizontal.list {
    margin-left: 0
}
ol.wojo.horizontal.list li:before,
.wojo.ordered.horizontal.list .item:before {
    position: static;
    margin: 0 .5em 0 0
}
/* == Divided == */
.wojo.divided.list > .item,
.wojo.divided.list:not(.horizontal) > .list {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-left: .5em;
    padding-right: .5em
}
.wojo.inverted.divided.list > .item,
.wojo.inverted.divided.list:not(.horizontal) > .list {
    border-top: 1px solid rgba(255,255,255,0.3);
}
.wojo.divided.list .item .menu .item {
    border-width: 0
}
.wojo.divided.list .item:first-child {
    border-top-width: 0
}
.wojo.divided.list:not(.horizontal) .list {
    margin-left: -.5em;
    margin-right: -.5em
}
.wojo.divided.list:not(.horizontal) .list .item {
    padding-left: 1em;
    padding-right: 1em
}
.wojo.divided.list:not(.horizontal) .list .item:first-child {
    border-top-width: 1px
}
.wojo.divided.bulleted.list {
    margin-left: 0
}
.wojo.divided.bulleted.list .item {
    padding-left: 1.5em
}
.wojo.divided.bulleted.list .item:before {
    left: .5em
}
.wojo.divided.ordered.list {
    margin-left: 0
}
.wojo.divided.ordered.list > .item {
    padding-left: 2em;
    padding-right: 2em
}
.wojo.divided.ordered.list > .item:before {
    left: .5em
}
.wojo.divided.ordered.list .item .list {
    margin-left: -2em;
    margin-right: -2em
}
.wojo.divided.horizontal.list {
    margin-left: 0
}
.wojo.divided.horizontal.list > .item {
    border-top: none;
    border-left: 1px solid rgba(0,0,0,0.1);
    margin: 0;
    padding-left: .75em;
    padding-right: .75em;
    line-height: 0.6
}
.wojo.horizontal.divided.list > .item:first-child {
    border-left: none;
    padding-left: 0
}
/* == Celled == */
.wojo.celled.list > .item,
.wojo.celled.list > .list {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-left: .5em;
    padding-right: .5em
}
.wojo.celled.list > .item:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.1)
}
.wojo.celled.list .item .list {
    margin-left: -.5em;
    margin-right: -.5em
}
.wojo.celled.list .item .list .item {
    border-width: 0
}
.wojo.celled.list .list .item:first-child {
    border-top-width: 0
}
.wojo.celled.bulleted.list {
    margin-left: 0
}
.wojo.celled.bulleted.list > .item {
    padding-left: 1.5em
}
.wojo.celled.bulleted.list > .item:before {
    left: .5em
}
.wojo.celled.ordered.list {
    margin-left: 0
}
.wojo.celled.ordered.list .item {
    padding-left: 2em;
    padding-right: 2em
}
.wojo.celled.ordered.list .item:before {
    left: .5em
}
.wojo.celled.ordered.list .item .list {
    margin-left: -2em;
    margin-right: -2em
}
.wojo.horizontal.celled.list {
    margin-left: 0
}
.wojo.horizontal.celled.list .item {
    border-top: none;
    border-left: 1px solid rgba(0,0,0,0.1);
    margin: 0;
    padding-left: .75em;
    padding-right: .75em;
    line-height: 0.6
}
.wojo.horizontal.celled.list .item:last-child {
    border-bottom: none;
    border-right: 1px solid rgba(0,0,0,0.1)
}
/* == Grid List == */
.wojo.grid {
    position: relative;
    overflow: hidden;
    width: 100%/*
  position: relative;
  z-index: 1;
  left: 0;
  width: 100%;
  top: 0;
  */
}
.wojo.grid > .item {
    background-color: #F7F6F2;
    -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.05);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5em;
}
.wojo.grid > .item img {
    padding: 1px;
}
.wojo.grid.fitted > .item {
    padding: 0;
}
.wojo.grid > .item > .wojo.label {
    font-size: 1.4em
}
/* == Relaxed == */
.wojo.relaxed.list:not(.horizontal) .item {
    padding-top: .5em;
    padding-bottom: .5em
}
.wojo.relaxed.list .header {
    margin-bottom: .25em
}
.wojo.horizontal.relaxed.list .item {
    padding-left: 1.25em;
    padding-right: 1.25em
}
.wojo.very.relaxed.list:not(.horizontal) .item {
    padding-top: 1em;
    padding-bottom: 1em
}
.wojo.very.relaxed.list .header {
    margin-bottom: .5em
}
.wojo.horizontal.very.relaxed.list .item {
    padding-left: 2em;
    padding-right: 2em
}
/* == Sortable == */
ul.wojo.sortable {
    min-height: 100px;
}
ul.wojo.sortable,
ul.wojo.sortable li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.wojo.sortable li,
.wojo.sortable > .list {
    margin-bottom: 5px;
    padding: .5em 1em;
    list-style-type: none;
    color: rgba(0,0,0,0.4);
    background-color: rgba(0,0,0,0.05);
    box-shadow:0 -.2rem 0 rgba(0,0,0,0.1) inset;
    text-shadow: 0 1px 0 #fff;
    border-radius: .225em;
}
ul.wojo.sortable li:before {
    content: "";
    left: 0;
}
ul.wojo.sortable li:last-child,
.wojo.sortable list:last-child {
    margin-bottom: 0
}
ul.wojo.sortable li a {
    display: inline-block;
}
.wojo.sortable a.list {
    display: block;
}
.wojo.sortable a.list:hover {
    background-color: #EDAA10;
    text-shadow: none;
    color: #fff;
}
ul.wojo.sortable li .icon.reorder {
    opacity: .75;
    margin-right: .5em;
    cursor: move;
}
.placeholder {
    background-color: #FFC!important;
    border: 1px solid #FC9;
    height: 32px;
}
/* == Sizes == */
.wojo.mini.list .item {
    font-size:.7rem
}
.wojo.tiny.list .item {
    font-size:.8125rem
}
.wojo.small.list .item {
    font-size:.875rem
}
.wojo.list .item {
    font-size: 1em
}
.wojo.large.list .item {
    font-size: 1.125rem
}
.wojo.big.list .item {
    font-size: 1.25rem
}
.wojo.huge.list .item {
    font-size: 1.375rem
}
.wojo.massive.list .item {
    font-size: 1.5rem
}
/* == Modal Filegrid == */
.filegrid {
    position: relative
}
.filegrid,
.filegrid li {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.filegrid li a {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    line-height: 0;
    padding: .25em;
    margin: .25em;
    display: block;
}

.filegrid.alt li  {
    float: left;
    width: 146px;
    height: 121px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    margin:2px;
}
.filegrid li a {
    box-shadow:none;
    padding:0;
    margin:0;
    line-height:125px
}
.filegrid li a img{
    vertical-align: middle;
}

/* == Divider == */s
.wojo.divider {
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    line-height: 1;
    height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}
.wojo.vertical.divider,
.wojo.horizontal.divider {
    position: absolute;
    border: none;
    height: 0;
    margin: 0;
    background-color: transparent;
    font-size:.875rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0,0,0,0.8)
}
/* == Vertical == */
.wojo.vertical.divider {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -3%;
    width: 6%;
    height: 50%;
    line-height: 0;
    padding: 0
}
.wojo.vertical.divider:before,
.wojo.vertical.divider:after {
    position: absolute;
    left: 50%;
    content: " ";
    z-index: 3;
    border-left: 1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(255,255,255,0.8);
    width: 0;
    height: 80%
}
.wojo.vertical.divider:before {
    top: -100%
}
.wojo.vertical.divider:after {
    top: auto;
    bottom: 0
}
/* == Horizontal == */
.wojo.horizontal.divider {
    position: relative;
    top: 0;
    left: 0;
    margin: 1rem 1.5rem;
    height: auto;
    padding: 0;
    line-height: 1
}
.wojo.horizontal.divider:before,
.wojo.horizontal.divider:after {
    position: absolute;
    content: " ";
    z-index: 3;
    width: 50%;
    top: 50%;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.6);
}
.wojo.horizontal.divider:before {
    left: 0;
    margin-left: -1.5rem
}
.wojo.horizontal.divider:after {
    left: auto;
    right: 0;
    margin-right: -1.5rem
}
/* == Icon == */
.wojo.divider > .icon {
    margin: 0;
    font-size: 1rem;
    vertical-align: middle
}
/* == Variations == */
.wojo.divider.inverted {
    color: #fff
}
.wojo.vertical.inverted.divider,
.wojo.horizontal.inverted.divider {
    color: rgba(255,255,255,0.9)
}
.wojo.divider.inverted,
.wojo.divider.inverted:after,
.wojo.divider.inverted:before {
    border-top-color: rgba(0,0,0,0.15);
    border-bottom-color: rgba(255,255,255,0.15);
    border-left-color: rgba(0,0,0,0.15);
    border-right-color: rgba(255,255,255,0.15)
}
.wojo.double.divider {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255,255,255,0.6);
}
.wojo.tripple.divider {
    border-top: 3px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgba(255,255,255,0.6);
}
.wojo.fitted.divider {
    margin-left:-1rem;
    margin-right:-1rem;
}
.wojo.small.divider {
    margin: .1rem 0;
}
.wojo.clearing.divider {
    clear: both
}
.wojo.section.divider {
    margin-top: 2rem;
    margin-bottom: 2rem
}
.wojo.space.divider {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border: 0;
}
.wojo.small.space.divider {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 0;
}
.wojo.half.divider {
    max-width:50%
}
.wojo.basic.divider {
    border:0;margin: .5rem 0rem;
}
.wojo.left.circle.divider,
.wojo.center.circle.divider {
    position: relative;
    margin-bottom:2rem;
}
.wojo.left.circle.divider {
    width:50%
}
.wojo.center.circle.divider {
    width:100%;
    margin-top: 2rem;
    margin-bottom: 2rem
}
.wojo.left.circle.divider:after,
.wojo.center.circle.divider:after {
    background-color: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    content: " ";
    height: 14px;
    position: absolute;
    width: 14px;
    bottom: -7px;
    left: 0;
}
.wojo.center.circle.divider:after {
    left:50%;
}

/* == Dialog == */
.messi-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.8);
}
.messi {
    position: absolute;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
    min-width: 300px;
    min-height: 50px;
    max-width: 90%;
    max-height: 75%;
    overflow-y: auto;
    top: -100%;
    -webkit-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
    -o-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
    transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
}
.messi-box {
    position: relative;
    height: auto;
    overflow: hidden;
    opacity: 1;
}
.messi-wrapper {
    position: relative
}
.messi-titlebox {
    font-size: 1.3em;
    font-weight: 400;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    background-color: rgba(0, 0, 0, 0.1);
    height: 45px;
    line-height: 45px;
    padding: 0 60px 0 15px;
}
.messi-titlebox .messi-title {
    text-shadow: 0 1px #fff;
    font-weight: 600;
    font-family: 'Archivo Narrow';
}
.messi-closebtn {
    border-left: 1px solid rgba(0,0,0,0.1);
    box-shadow: inset 1px 0px 0 rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 45px;
    height: 45px;
    cursor: pointer;
    text-align: center;
    line-height: 45px;
    font-size: 1.6em;
    color: rgba(0, 0, 0, 0.4);
}
.messi-closebtn i {
    margin: 0
}
.messi-content {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1em;
    box-shadow: inset 0px 3px 0 rgba(255, 255, 255, 0.4);
}
.messi-content .messi-warning {
    display: table
}
.messi-content .messi-warning p {
    display: table-cell;
    vertical-align: middle;
}
.messi-content .messi-warning p:last-child {
    padding-left: 1em;
}
.messi-footbox {
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    box-shadow: inset 0px 2px 0 rgba(255, 255, 255, 0.4);
    padding: 0
}
.messi-actions {
    display: block
}
.messi-actions .btnbox {
    display: block;
    float: right;
    border-left: 1px solid rgba(0,0,0,0.1);
    box-shadow: inset 1px 0px 0 rgba(255, 255, 255, 0.5);
    padding: 5px
}
.messi .mod-button.button {
    border-radius: 0
}
.messi .mod-button.warn {
    color: #ee5f5b
}
.messi .mod-button i {
    padding-left: 10px;
    padding-right: 5px
}
/* == Animations == */
.image-overlay {
    position: relative;
    cursor: default;
    overflow: hidden;
}
.image-overlay img {
    width: 100%;
}
/* overlay horizontal slide*/
.overlay-hslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 0%;
    top: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-hslide a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-hslide a .icon-overlay {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-hslide {
    width: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay vertical slide*/
.overlay-vslide {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 0%;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-vslide a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-vslide a .icon-overlay {
    font-size: 40px;
    margin: 0;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-vslide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay fade*/
.overlay-fade {
    background: rgba(61, 170, 129, 0.6);
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-fade a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-fade a .icon-overlay {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius:500px;
    background: rgba(255, 255, 255, 0.3);
    color:#fff
}
.image-overlay:hover .overlay-fade {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* overlay zoom*/
.overlay-zoom {
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-zoom a {
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    line-height: 80px;
    cursor: pointer;
}
.overlay-zoom a .icon-overlay,
.overlay-zoom a .icon-overlay.double {
    font-size: 40px;
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.6);
    background: rgb(255, 2255, 255) transparent;
}
.image-overlay:hover .overlay-zoom {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.zoom-image img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.zoom-image:hover img {
    -webkit-transform: scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}
.rotate-image-right img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rotate-image-right:hover img {
    -webkit-transform: rotate(15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}
.rotate-image-left img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rotate-image-left:hover img {
    -webkit-transform: rotate(-15deg) scale(1.5);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: rotate(-15deg) scale(1.5);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    transform: rotate(-15deg) scale(1.5);
    transition-timing-function: ease-out;
    transition-duration: 250ms;
}
/* == Image Viewer == */
html.swipebox-html.swipebox-touch {
    overflow: hidden !important;
}
#swipebox-overlay img {
    border: none !important;
}
#swipebox-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#swipebox-slider {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    white-space: nowrap;
    position: absolute;
    display: none;
}
#swipebox-slider .slide {
    height: 100%;
    width: 100%;
    line-height: 1px;
    text-align: center;
    display: inline-block;
}
#swipebox-slider .slide:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
    background: none;
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    padding: 5%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}
#swipebox-action,
#swipebox-caption {
    position: absolute;
    left: 0;
    z-index: 999;
    height: 50px;
    width: 100%;
}
#swipebox-action {
    bottom: -50px;
}
#swipebox-action.visible-bars {
    -ms-transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next,
#swipebox-action #swipebox-close {
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    line-height: 50px;
    font-size: 2em;
}
#swipebox-action #swipebox-prev {
    right: 100px;
}
#swipebox-action #swipebox-next {
    right: 40px;
}
#swipebox-action #swipebox-close {
    left: 40px;
}
#swipebox-action #swipebox-prev.disabled,
#swipebox-action #swipebox-next.disabled {
    opacity: 0.3;
}
#swipebox-caption {
    top: -50px;
    text-align: center;
}
#swipebox-caption.visible-bars {
    -ms-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
#swipebox-slider.rightSpring {
    -webkit-animation: rightSpring 0.3s;
    animation: rightSpring 0.3s;
}
#swipebox-slider.leftSpring {
    -webkit-animation: leftSpring 0.3s;
    animation: leftSpring 0.3s;
}
@-webkit-keyframes rightSpring {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: -30px;
    }
    100% {
        margin-left: 0px;
    }
}
@keyframes rightSpring {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: -30px;
    }
    100% {
        margin-left: 0px;
    }
}
@-webkit-keyframes leftSpring {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0px;
    }
}
@keyframes leftSpring {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0px;
    }
}
@media screen and (max-width: 800px) {
    #swipebox-action #swipebox-close {
        left: 0;
    }
    #swipebox-action #swipebox-prev {
        right: 60px;
    }
    #swipebox-action #swipebox-next {
        right: 0;
    }
}
/* Skin
--------------------------*/
#swipebox-overlay {
    background: #0d0d0d;
}
#swipebox-action,
#swipebox-caption {
    text-shadow: 1px 1px 1px black;
    background-color: #0d0d0d;
    background-color: #0d0d0d;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0d0d0d), to(black));
    background-image: -webkit-linear-gradient(top, #0d0d0d, black);
    background-image: linear-gradient(to bottom, #0d0d0d, black);
    opacity: 0.95;
}
#swipebox-action {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#swipebox-caption {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    font-size: 15px;
    line-height: 43px;
    font-family: Helvetica, Arial, sans-serif;
}
/* == Tabs == */
.wojo.tabs {
    display: block;
    position: relative;
    background-color: #E3E8EE;
    clear: both;
}
.wojo.tabs:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.wojo.tabs,
.wojo.tabs li {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.wojo.tabs li {
    display: block;
    float: left;
}
.wojo.tabs li a {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.778em;
    color: #465866;
    display: block;
    padding: 1.33em 1.2em;
    position: relative;
    z-index: 1
}
.wojo.tabs li a i.icon {
    margin-right: .5em
}
.wojo.tabs li a:hover {
    color: #e7cd3b;
}
.wojo.tabs li a.active {
    background-color: #445C6A;
    color: #fff;
    box-shadow: inset 0 2px 0 0 #e7cd3b ;
}
.wojo.tabs li a.active:before {
    position: absolute;
    z-index: 2;
    content: "";
    width: 0;
    height: 0;
    bottom: -6px;
    left: 50%;
    margin-left: -3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #445C6A;
}
.wojo.tab.content {
    padding: 0;
    clear: both;
}
.wojo.tab.content:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
/* == File Upload == */
#drop {
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    border: 5px dashed rgba(0,0,0,0.25);
    padding: 30px
}
#drop a {
    margin-left: 10px;
    background-color: #62A8DB;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    margin-top: 12px;
    line-height: 1;
    padding: .9em 2em
}
#drop a:hover {
    background-color: #424343
}
#drop input,
#upload ul li input {
    display: none
}
#upload ul {
    list-style: none;
    margin: 0;
    padding: 0
}
#upload ul li {
    list-style: none;
    clear: both;
    margin: 0;
    position: relative;
    min-height: 18px;
    margin: 0;
    height: auto;
    background-color: #F1F2EA;
    padding: 1em;
    line-height: 1.33;
    box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.5);
}
#upload ul li:first-child {
    margin-top: 0.5em
}
#upload ul li p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    font-weight: 400;
    margin-left: 4em;
}
#upload ul li i {
    font-weight: 400;
    font-style: normal;
    display: block
}
#upload ul li canvas {
    float: left
}
#upload ul li small {
    display: block;
    font-size: 0.85em;
    font-weight: 400
}
#upload ul li span:before {
    content: "\f058";
    width: 1.4em;
    height: 1.4em;
    position: absolute;
    top: 0.5em;
    right: 0;
    cursor: pointer;
    font-family: Icons;
    font-size: 1.4em;
    color: #B2D280
}
#upload ul li span.ferror:before {
    content: "\f06a";
    color: #BF5A67
}
#upload ul li.working span:before {
    content: "";
}
#upload ul li.error p small {
    color: #BF5A67;
}
#drop.hover {
    border: 5px dashed #2984AD
}
#drop.fade {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 1
}
/* == Editable Content == */
[contenteditable=true]:empty:before {
    content: attr(placeholder);
}
.editable {
    padding: 0.25em;
    background-color: #E9E9E1;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
    font-size: .95em;
}
.editable.active {
    background-color: #FFC;
}
/* == Google Map Hack == */
.gm-style img {
    max-width: none!important;
    max-height: auto!important;
}
.gm-style label {
    width: auto;
    display: inline!important
}
/* == Off Canvas Sidebar == */
body {
    -webkit-transition: margin 0.3s ease, -webkit-transform 0.3s ease;
    transition: margin 0.3s ease, transform 0.3s ease;
}
.wojo.sidebar {
    position: fixed;
    margin: 0;
    height: 100%;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-y: auto;
    overflow-y: auto;
    top: 0px;
    left: 0px;
    z-index: 999;
    -webkit-transition: margin-left 0.3s ease, margin-top 0.3s ease;
    transition: margin-left 0.3s ease, margin-top 0.3s ease;
}
body.pushed.scrolling.wojo.dimmable {
    position: static;
}
/* == Directions == */
.wojo.right.slim.sidebar,
.wojo.right.thin.sidebar,
.wojo.right.sidebar,
.wojo.right.wide.sidebar,
.wojo.right.very.wide.sidebar {
    left: 100%;
    margin: 0px;
}
.wojo.top.sidebar {
    width: 100%;
}
.wojo.bottom.sidebar {
    width: 100%;
    top: 100%;
    margin: 0px;
}
/* == States == */
.wojo.active.sidebar {
    margin-left: 0px;
}
.wojo.active.top.sidebar,
.wojo.active.bottom.sidebar {
    margin-top: 0px;
}
/* == Variations == */
.wojo.styled.sidebar {
    padding: 0;
    background-color: #F1F2EA;
    -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
}
.wojo.styled.sidebar .header {
    line-height: 0;
    background-color: #424343;
    text-align: center;
    height: 5em;
    position: fixed;
    width: 275px;
    z-index: 2
}
.wojo.styled.slim.sidebar {
}
.wojo.styled.thin.sidebar {
}
/* == Floating == */
.wojo.floating.sidebar {
    -webkit-box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.2);
    margin-right: 4px;
}
.wojo.right.floating.sidebar {
    -webkit-box-shadow: -2px 0px 2px rgba(0, 0, 0, 0.2);
    box-shadow: -2px 0px 2px rgba(0, 0, 0, 0.2);
    margin-left: 4px;
}
.wojo.top.floating.sidebar {
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}
.wojo.bottom.floating.sidebar {
    -webkit-box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.2);
}
/* == Width == */
.wojo.slim.sidebar {
    width: 60px;
    margin-left: -60px;
}
.wojo.active.slim.sidebar {
    margin-left: 0px;
}
.wojo.active.right.slim.sidebar {
    margin-left: -60px;
}
.wojo.thin.sidebar {
    width: 150px;
    margin-left: -150px;
}
.wojo.active.thin.sidebar {
    margin-left: 0px;
}
.wojo.active.right.thin.sidebar {
    margin-left: -150px;
}
.wojo.sidebar {
    width: 275px;
    margin-left: -275px;
}
.wojo.active.sidebar {
    margin-left: 0px;
}
.wojo.active.right.sidebar {
    margin-left: -275px;
}
.wojo.wide.sidebar {
    width: 350px;
    margin-left: -350px;
}
.wojo.active.wide.sidebar {
    margin-left: 0px;
}
.wojo.active.right.wide.sidebar {
    margin-left: -350px;
}
.wojo.very.wide.sidebar {
    width: 475px;
    margin-left: -475px;
}
.wojo.active.very.wide.sidebar {
    margin-left: 0px;
}
.wojo.active.right.very.wide.sidebar {
    margin-left: -475px;
}
/* == Height == */
.wojo.top.sidebar {
    margin: -40px 0px 0px 0px;
}
.wojo.top.sidebar,
.wojo.bottom.sidebar {
    height: 40px;
}
.wojo.active.bottom.sidebar {
    margin-top: -40px;
}
/* == Loading == */
.wojo.sidebar.info.loading:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #5795AF url(../images/loader-sidebar.gif) no-repeat 50% 50%;
    visibility: visible
}
.scrollbox {
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 0.3125em;
    padding: .5em
}
/* == Custom Help == */
.wojo.sidebar.info {
    background-color: #5795AF;
    color: #fff
}
.wojo.info.sidebar .header {
    background-color: #53ADCC;
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 1.2rem;
    position: fixed;
    display: table;
    width: 350px;
    height: 4em;
    box-shadow: inset 0 -1px 0 0 rgba(255,255,255,0.4);
    border-bottom: 1px solid #53ADCC
}
.wojo.info.sidebar .header > p,
.wojo.info.sidebar a.helper {
    display: table-cell;
    padding: .5em;
    vertical-align: middle;
}
.wojo.info.sidebar a.helper {
    font-size: 2rem;
    color: #fff;
    text-align: right;
}
.wojo.info.sidebar a.helper:hover {
    color: #266479;
}
/* == Pie Charts == */
.roundchart {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.roundchart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.percent {
    display: inline-block;
    line-height: 180px;
    z-index: 2;
    font-size: 2em;
    font-weight: 400;
    font-family: 'Raleway'
}
.percent:after {
}
.scrolltrack {
    width: 6px;
    background: rgba(0, 0, 0, 0);
    margin-right: 2px;
    border-radius: 2px;
    -webkit-transition: background 250ms linear;
    transition: background 250ms linear;
}
.scrolltrack:hover,
.scrolltrack.dragging {
    background: rgba(0, 0, 0, 0.15);
}
.scrollhandle {
    width: 4px;
    right: 0;
    background: #999;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1px;
    -webkit-transition: width 250ms;
    transition: width 250ms;
}
.scrolltrack:hover .scrollhandle,
.scrolltrack.dragging .scrollhandle {
    width: 6px;
}
/* == Accordion == */
.accordion {
}
.accordion .header {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    color: #465866;
    clear: both;
    padding: 0.5em;
    position: relative;
    font-size: 0.889em;
    font-weight: 400;
    cursor: pointer;
}
.accordion .header > i.icon {
    margin-right: .5em;
}
.accordion .header.inactive:after,
.accordion .header.active:after {
    font-family: Icons;
    content: "\f067";
    position: absolute;
    right: .5em;
    top: .75em
}
.accordion .header.active:after {
    content: "\f068";
    color: #53BD99;
}
.accordion .header.active {
    font-weight: 700;
    border-top: 2px solid #53BD99;
    background-color: #445C6A;
    color: #FFFFFF;
}
.accordion .header.inactive {
    margin-bottom: .5em;
}
.accordion .content {
    display: none;
    padding: 1em;
    background-color: #F2F2F2;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: .5em;
}
/*RangeSlider */
.irs {
    position: relative;
    display: block;
}
.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
}
.irs-diapason {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
}
.irs-slider {
    position: absolute;
    display: block;
    cursor: default;
    z-index: 1;
}
.irs-slider.single {
    left: 10px;
}
.irs-slider.single:before {
    position: absolute;
    display: block;
    content: "";
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: rgba(0,0,0,0.0);
}
.irs-slider.from {
    left: 100px;
}
.irs-slider.from:after,
.irs-slider.to:after,
.irs-slider.single:before {
    position: absolute;
    display: block;
    font-size: 1em;
    font-weight: 900;
    top: .30em;
    left: .7em;
    width: .25em;
    height: 1.5em;
    content: "";
    background-color: #A6CB6E;
}
.irs-slider.to {
    left: 300px;
}
.irs-slider.last {
    z-index: 2;
}
.irs-min {
    position: absolute;
    display: block;
    left: 0;
    cursor: default;
}
.irs-max {
    position: absolute;
    display: block;
    right: 0;
    cursor: default;
}
.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}
.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}
.irs-with-grid .irs-grid {
    display: block;
}
.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}
.irs-grid-pol.small {
    height: 4px;
}
.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    color: #000;
}
.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    background: rgba(0,0,0,0.0);
    z-index: 2;
}
.irs-disabled {
    opacity: 0.4;
}
/* Skin details */
.irs {
    height: 40px;
}
.irs-with-grid {
    height: 60px;
}
.irs-line {
    height: 10px;
    top: 25px;
    background-color: rgba(0,0,0,0.15);
    border-radius: 2px;
}
.irs-diapason {
    height: 10px;
    top: 25px;
    background-color: #A6CB6E;
}
.irs-slider {
    width: 22px;
    height: 22px;
    top: 17px;
}
#irs-active-slider,
.irs-slider:hover {
}
.irs-min,
.irs-max {
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 3px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}
.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
    background: #ccc;
}
.irs-from,
.irs-to,
.irs-single {
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}
.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
    background: #999;
}
.irs-grid-pol {
    background: #99a4ac;
}
.irs-grid-text {
    color: #99a4ac;
}
.irs-disabled {
}
/* == Carousel == */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y
}
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px)
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%
}
.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}
.owl-carousel .owl-item {
    float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}
.grabbing {
    cursor: url(../images/grabbing.png) 8 8, move
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}
.owl-theme .owl-controls {
    text-align: center;
    margin-bottom: .5em;
    margin-top: .5em;
}
.owl-theme .owl-controls .owl-buttons div {
    zoom: 1;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    width: 30px;
    background-color: #445c6a;
    border-radius: 5em;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease
}
.owl-theme .owl-controls .owl-buttons div i {
    font-size: 1.2em;
    color: #fff;
    margin: 0
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    background-color: #53BD99;
    text-decoration: none;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover i {
    color: #fff
}
.owl-theme .owl-controls .owl-buttons div.owl-prev {
    margin-right: .25em
}
.owl-theme .owl-controls .owl-buttons div.owl-next {
    margin-left: .25em
}
.owl-theme .owl-controls .owl-page {
    zoom: 1;
    display: inline
}
.owl-theme .owl-controls .owl-page span {
    display: inline-block;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 2em;
    border-radius: 2em;
    background: rgba(0,0,0,0.1);
    margin: .2em .3em
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background-color: #53BD99;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    font-size: 12px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 2px 10px
}
.owl-item.loading {
    min-height: 150px;
    background: url(../images/loader-medium-inverted.gif) no-repeat center center
}
.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px
}
.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease
}
.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease
}
.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease
}
.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease
}
.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both
}
.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both
}
.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both
}
.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both
}

/* Keyframes */
@-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}
@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}
@keyframes empty {
    0% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}
@-moz-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}
@keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}
@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}
@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}
@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}
@-webkit-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}
@-moz-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}
@keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }
    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}
@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}
@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}
@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}
@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}
@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}
@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}
@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}
@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}
@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}
@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}
@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}
@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}
@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-webkit-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-moz-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-moz-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-moz-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-ms-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-ms-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-o-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-o-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-o-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

a {cursor: pointer;}

/* == Form == */
.wojo.form {
    position: relative;
    max-width: 100%
}
.wojo.form :first-child {
}
.wojo.form :last-child {
}
/* == Content == */
.wojo p.note,
.wojo p.error,
.wojo p.success,
.wojo p.info {
    font-size: .75em;
    margin-top: .5em;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: .5em;
    color: rgba(0,0,0,0.6)
}
.wojo p.error {
    color: #A26161
}
.wojo p.success {
    color: #B2D280
}
.wojo p.info {
    color: #5795AF
}
/* == Field == */
.wojo.form .field {
    clear: both;
    margin: 0 0 1em;
    position: relative
}
.wojo.form .field:after {
    content: '';
    display: table;
    clear: both
}
/* == Label == */
.wojo.form .field label.input,
.wojo.form .field label.textarea {
    position: relative;
    margin: 0;
}
.wojo.form .field label {
    margin: 0 0 .9em;
    display: block;
    font-family: 'Archivo Narrow';
    font-weight: 400;
    white-space: nowrap;
}
.wojo.form .field label.radio,
.wojo.form .field label.checkbox {
    font-family: 'Archivo Narrow';
    font-weight: 400;
    margin: 0
}
/* == Inputs == */
.wojo.form textarea,
.wojo.form select,
.wojo.form input[type=text],
.wojo.form input[type=email],
.wojo.form input[type=date],
.wojo.form input[type=password],
.wojo.form input[type=number],
.wojo.form input[type=tel],
.wojo.form .wojo.input {
    width: 100%;
    color: rgba(0,0,0,0.5);
}
.wojo.form textarea,
.wojo.form input[type=text],
.wojo.form input[type=email],
.wojo.form input[type=date],
.wojo.form input[type=password],
.wojo.form input[type=number],
.wojo.form input[type=tel],
.wojo.form .fileinput > input {
    font-family: "Archivo Narrow", sans-serif;
    margin: 0;
    padding: .85em 1.2em;
    font-size: 1em;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #445c6a;
    outline: none;
    border-radius: .2125em;
    -webkit-transition: background-color .3s ease-out, 0 .2s ease, border-color .2s ease;
    transition: background-color .3s ease-out, box-shadow .2s ease, border-color .2s ease;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0.3) inset;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.3) inset;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.5;
}
/* == File Input == */
.wojo.form .fileinput {
    display: table;
    width: 100%;
    color: rgba(0,0,0,0.5);
    font-size: 1em;
    font-weight:300
}
.wojo.form .fileinput > a {
    cursor: pointer;
    text-align: right;
    display: table-cell;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #445c6a;
    border-left: 0;
    padding: .85em 1.2em;
    border-radius: 0 .2125em .2125em 0;
    vertical-align: middle;
}
.wojo.form .fileinput > input {
    display: table-cell;
    overflow: hidden;
    white-space: nowrap;
    border-right: 0;
    outline: none;
    border-radius: .2125em 0 0 .2125em;
    width: 100%;
    vertical-align: middle;
    opacity: 1!important;
}
.wojo.form .fileinput a label:hover {
    color: #4a5c62;
}
.wojo.form .fileinput a label.btn.btn-default {
    margin: 0;
    cursor: pointer;
}
.wojo.textarea,
.wojo.form textarea {
    line-height: 1.33;
    min-height: 8em;
    font-family: "Archivo Narrow", sans-serif;
    font-size: inherit;
    height: 12em;
    max-height: 24em;
    resize: vertical
}
.wojo.form textarea[name="phrase"] {
    min-height: 2.5em;
    height: 4.5em;
    line-height: 1.5;
}
.wojo.form textarea,
.wojo.form input[type="checkbox"] {
    vertical-align: top
}
/* == Spinner Box  == */
input[type=number] {
    float: left;
    width: 50px;
    height: 30px;
    padding: 0;
    font-size: 1em;
    font-weight:500;
    text-align: center;
    color: #2d343e;
    border: 1px solid #53BD99;
    background: none;
    outline: none;
    pointer-events: none;
    -moz-appearance: textfield;
}
.wojo.spinner {
    height: 40px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.wojo.spinner > .spinner-sub,
.wojo.spinner > .spinner-add {
    float: left;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #2d343e;
    border: 1px solid #53BD99;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    cursor: pointer;
    transition: 0.1s linear;
    -o-transition: 0.1s linear;
    -ms-transition: 0.1s linear;
    -moz-transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
}
.wojo.spinner > .spinner-add {
    top: 0;
    border: 1px solid #53BD99;
    border-left: 0;
    border-radius: 0 2px 2px 0;
}
.wojo.spinner > .spinner-sub:hover,
.wojo.spinner > .spinner-add:hover {
    background: #53bd99;
    color: #fff;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* == Select Box  == */
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /*font-size: .9em;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: 2px solid #445c6a;
    border-top: 0;
    background-color: #fff;
}
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0
}
.chosen-container a {
    cursor: pointer
}
.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: .75em 1.2em;
    font-size: 1rem;
    border-radius: .2125em;
    border: 2px solid #445c6a;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0);
}
.chosen-container-single .chosen-default {
    color: inherit
}
.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap
}
.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px
}
.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 24px;
    height: 100%
}
.chosen-container-single .chosen-single div b:before {
    display: block;
    font-family: Icons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 2.6em;
    content: "\f0d7";
    font-size: 1.2em;
    color: rgba(0,0,0,0.15)
}
.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap
}
.chosen-container-single .chosen-search input[type="text"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #cbcbcb;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 3px
}
.chosen-container-single .chosen-search:before {
    position: absolute;
    display: inline-block;
    font-family: Icons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 20px;
    content: "\f002";
    font-size: 14px;
    color: #a7a7a7;
    right: 10px;
    top: 6px
}
.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px
}
.chosen-container .chosen-results {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch
}
.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05)
}
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer
}
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container .chosen-results li.highlighted {
    background-color: #53bd99;
    color: #fff
}
.chosen-container .chosen-results li.no-results {
    display: list-item;
    background: #f4f4f4
}
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 700;
    cursor: default
}
.chosen-container .chosen-results li.group-option {
    padding-left: 15px
}
.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline
}
.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1;
    padding: 0.75em 1.2em;
    font-size: .89rem;
    cursor: text;
    border-radius: .3125em;
    background: rgba(0, 0, 0, 0);
    border: 2px solid #445c6a;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}
.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none
}
.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    margin: 1px 0;
    padding: 5px;
    height: 30px;
    outline: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #666;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0
}
.chosen-container-multi .chosen-choices li.search-field .default {
    color: #999
}
.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px;
    padding: 0 25px 0 5px;
    line-height: 25px;
    cursor: default;
    background-color: rgba(0,0,0,0.05);
    border-radius: .2125em;
    font-size: .9em;
    font-weight: 900;
    text-shadow: 0 1px 0 #fff
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
    font-family: icons;
    content: "\f00d";
    position: absolute;
    top: 0;
    right: 3px;
    display: block;
    width: 12px;
    height: 12px;
    line-height: 24px
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    color: #666
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
    background-position: -42px -10px
}
.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0
}
.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default
}
.chosen-container-active.chosen-with-drop .chosen-single {
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: transparent
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px
}
.chosen-container-active .chosen-choices {
    border: 2px solid #445c6a;
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
    color: #111
}
.chosen-disabled {
    opacity: .5;
    cursor: default
}
.chosen-disabled .chosen-single {
    cursor: default
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default
}
/* == Radio Checkbox == */
.radio,
.checkbox {
    position: relative;
    display: block;
    margin-bottom: 4px;
    padding-left: 34px;
    line-height: 28px;
    cursor: pointer
}
.radio:last-child,
.checkbox:last-child {
    margin-bottom: 0
}
.radio input,
.checkbox input {
    position: absolute;
    left: -9999px
}
.radio i,
.checkbox i {
    font-family: Icons;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    outline: none;
    font-style: normal;
    font-weight: 400
}
.radio {
    padding-left:40px;
}
.radio input + i:after,
.checkbox input + i:after {
    text-align: center;
    font-size: 28px;
    line-height: 1;
    color:  #445c6a
}
.radio input + i:after {
    content: '\f204'
}
.checkbox input + i:after {
    content: '\f096';
    line-height: 1.1em;
}
.checkbox input:checked + i:after {
    content: '\f046';
    color: #53bd99
}
.radio input:checked + i:after {
    content: '\f205';
    color: #53bd99
}
/* == Append/Prepend Icons  == */
.wojo [class^=icon-] {
    font-family: Icons;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin: 0
}
.wojo .icon-append,
.wojo .icon-prepend,
.wojo .captcha-append {
    position: absolute;
    top: 0;
    line-height: 3.3em;
    text-align: center;
    color: rgba(0,0,0,0.15)
}
.wojo .icon-append,
.wojo .captcha-append {
    right: 1em
}
.wojo .icon-prepend {
    left: 1em
}
.wojo .captcha-append {
    top: 1em
}
.wojo .input .icon-append + input,
.wojo .textarea .icon-append + textarea {
    padding-right: 2em
}
.wojo .input .icon-prepend + input,
.wojo .textarea .icon-prepend + textarea,
.wojo .input .icon-prepend + .icon-append + input,
.wojo .textarea .icon-prepend + .icon-append + textarea {
    padding-left: 2.5em
}
/* == Dividers == */
.wojo.form .divider {
    clear: both;
    margin: 1em 0
}
.wojo.form .fitted.divider {
    margin-left: -1em;
    margin-right: -1em;
}
/* == States == */
.wojo.form input[type="text"]:focus,
.wojo.form input[type="email"]:focus,
.wojo.form input[type="date"]:focus,
.wojo.form input[type="password"]:focus,
.wojo.form input[type="number"]:focus,
.wojo.form input[type="url"]:focus,
.wojo.form input[type="tel"]:focus,
.wojo.form textarea:focus {
    color: rgba(0,0,0,0.85);
    border-color:  #445c6a;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-appearance: none;
    -webkit-box-shadow: .3em 0 0 0  #445c6a inset;
    box-shadow: .3em 0 0 0  #445c6a inset
}
.wojo.form.warning .warning.message {
    display: block
}
.wojo.form.error .error.message {
    display: block
}
.wojo.form .fields.error .field label,
.wojo.form .field.error label,
.wojo.form .fields.error .field .input,
.wojo.form .field.error .input {
    color: #D95C5C
}
.wojo.form .fields.error .field .corner.label,
.wojo.form .field.error .corner.label {
    border-color: #D95C5C;
    color: #FFF
}
.wojo.form .fields.error .field textarea,
.wojo.form .fields.error .field input[type="text"],
.wojo.form .fields.error .field input[type="email"],
.wojo.form .fields.error .field input[type="date"],
.wojo.form .fields.error .field input[type="password"],
.wojo.form .fields.error .field input[type="number"],
.wojo.form .fields.error .field input[type="url"],
.wojo.form .fields.error .field input[type="tel"],
.wojo.form .field.error textarea,
.wojo.form .field.error input[type="text"],
.wojo.form .field.error input[type="email"],
.wojo.form .field.error input[type="date"],
.wojo.form .field.error input[type="password"],
.wojo.form .field.error input[type="number"],
.wojo.form .field.error input[type="url"],
.wojo.form .field.error input[type="tel"] {
    background-color: #FFFAFA;
    border-color: #E7BEBE;
    border-left: none;
    color: #D95C5C;
    padding-left: 1.2em;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-box-shadow: .3em 0 0 0 #D95C5C inset;
    box-shadow: .3em 0 0 0 #D95C5C inset
}
.wojo.form .field.error textarea:focus,
.wojo.form .field.error input[type="text"]:focus,
.wojo.form .field.error input[type="email"]:focus,
.wojo.form .field.error input[type="date"]:focus,
.wojo.form .field.error input[type="password"]:focus,
.wojo.form .field.error input[type="number"]:focus,
.wojo.form .field.error input[type="url"]:focus,
.wojo.form .field.error input[type="tel"]:focus {
    border-color: #ff5050;
    color: #ff5050;
    -webkit-appearance: none;
    -webkit-box-shadow: .3em 0 0 0 #FF5050 inset;
    box-shadow: .3em 0 0 0 #FF5050 inset
}
.wojo.form textarea[name="phrase"]:focus,
.wojo.form textarea[name="phrase"].active {
    background-color: #F5F5F5;
    border-color: #D0D0D0;
    border-radius: .3125em;
    -webkit-box-shadow: none;
    box-shadow: none
}
.wojo.form textarea[name="phrase"].active {
    background-color: #dceee5;
    border-color: #a9d5be;
}
/* == Placeholders == */
.wojo.form ::-webkit-input-placeholder {
    color:#AAA
}
.wojo.form ::-moz-placeholder {
    color:#AAA
}
.wojo.form :focus::-webkit-input-placeholder {
    color:#999
}
.wojo.form :focus::-moz-placeholder {
    color:#999
}
.wojo.form .error ::-webkit-input-placeholder {
    color:rgba(255,80,80,0.4)
}
.wojo.form .error ::-moz-placeholder {
    color:rgba(255,80,80,0.4)
}
.wojo.form .error :focus::-webkit-input-placeholder {
    color:rgba(255,80,80,0.7)
}
.wojo.form .error :focus::-moz-placeholder {
    color:rgba(255,80,80,0.7)
}
.wojo.form .field :disabled,
.wojo.form .field.disabled {
    opacity: 0.5
}
.wojo.form .field.disabled label {
    opacity: 0.5
}
.wojo.form .field.disabled :disabled {
    opacity: 1
}
/* == Loading == */
.wojo.form.loading {
    position: relative
}
.wojo.form.loading:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8) url(../images/loader-large.gif) no-repeat 50% 50%;
    visibility: visible;
    z-index: 5000;
}
/* == Fluid == */
.wojo.form.fluid {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}
/* == Groups == */
.wojo.form .grouped.fields {
    margin: 0 0 1em
}
.wojo.form .grouped.fields .field {
    display: block;
    float: none;
    margin: .5em 0;
    padding: 0
}
/* == Fields == */
.wojo.form .fields {
    clear: both
}
.wojo.form .fields:after {
    content: ' ';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}
.wojo.form .fields > .field.empty {
    margin: 0;
    font-size: .1em
}
.wojo.form .fields > .field {
    clear: none;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}
.wojo.form .fields > .field:first-child {
    border-left: none;
    -webkit-box-shadow: none;
    box-shadow: none
}
.wojo.form .two.fields > .fields,
.wojo.form .two.fields > .field {
    width: 50%;
    padding-left: 1%;
    padding-right: 1%
}
.wojo.form .three.fields > .fields,
.wojo.form .three.fields > .field {
    width: 33.333%;
    padding-left: 1%;
    padding-right: 1%
}
.wojo.form .four.fields > .fields,
.wojo.form .four.fields > .field {
    width: 25%;
    padding-left: 1%;
    padding-right: 1%
}
.wojo.form .five.fields > .fields,
.wojo.form .five.fields > .field {
    width: 20%;
    padding-left: 1%;
    padding-right: 1%
}
.wojo.form .fields .field:first-child {
    padding-left: 0
}
.wojo.form .fields .field:last-child {
    padding-right: 0
}
/* == Inline == */
.wojo.form .inline-group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    zoom: 1
}
.wojo.form .inline-group {
    margin-bottom: 1.2em
}
.wojo.form .inline-group label.radio,
.wojo.form .inline-group label.checkbox,
.wojo.form .inline-group label.input {
    float: left;
    margin-right: 20px
}
.wojo.form .inline.fields .field {
    min-height: 1.3em;
    margin-right: .5em
}
.wojo.form .inline.fields .field > label,
.wojo.form .inline.fields .field > p,
.wojo.form .inline.fields .field > input,
.wojo.form .inline.field > label,
.wojo.form .inline.field > p,
.wojo.form .inline.field > input {
    display: inline-block;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle
}
.wojo.form .inline.fields .field > input,
.wojo.form .inline.field > input {
    font-size: 1em
}
.wojo.form .inline.fields .field > :first-child,
.wojo.form .inline.field > :first-child {
    margin: 0 .5em 0 0
}
.wojo.form .inline.fields .field > :only-child,
.wojo.form .inline.field > :only-child {
    margin: 0
}
/* == Size == */
.wojo.small.form {
}
.wojo.small.form textarea,
.wojo.small.form .chosen-container,
.wojo.small.form input[type="text"],
.wojo.small.form input[type="email"],
.wojo.small.form input[type="date"],
.wojo.small.form input[type="password"],
.wojo.small.form input[type="number"],
.wojo.small.form input[type="url"],
.wojo.small.form input[type="tel"],
.wojo.small.form label {
    font-size: .875em
}
.wojo.small.form .chosen-container-single .chosen-single {
    font-size: .85rem
}
.wojo.large.form {
    font-size: 1.125em
}
.wojo.form.fitted {
    padding: 0
}
.wojo.phrase {
    background-color: rgba(0, 0, 0, 0.025);
    padding: .5em;
    height: 4em;
    overflow-y: auto;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .325em;
    font-size:.95rem;
}
.wojo.phrase.active {
    background-color: #FFFFCC;
}
/* Color Picker */
.colpick {
    position: absolute;
    width: 346px;
    height: 170px;
    overflow: hidden;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    background: #ebebeb;
    border: 1px solid #bbb;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}
.colpick_color {
    position: absolute;
    left: 7px;
    top: 7px;
    width: 156px;
    height: 156px;
    overflow: hidden;
    outline: 1px solid #aaa;
    cursor: crosshair
}
.colpick_color_overlay1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 156px;
    height: 156px;
    background: linear-gradient(toright, rgba(255,255,255,1), rgba(255,255,255,0))
}
.colpick_color_overlay2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 156px;
    height: 156px;
    background: linear-gradient(tobottom, rgba(0,0,0,0), rgba(0,0,0,1))
}
.colpick_selector_outer {
    background: none;
    position: absolute;
    width: 11px;
    height: 11px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: -6px 0 0 -6px
}
.colpick_selector_inner {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 1px solid #FFF;
    border-radius: 50%
}
.colpick_hue {
    position: absolute;
    top: 6px;
    left: 175px;
    width: 19px;
    height: 156px;
    border: 1px solid #aaa;
    cursor: n-resize
}
.colpick_hue_arrs {
    position: absolute;
    left: -8px;
    width: 35px;
    height: 7px;
    margin: -7px 0 0
}
.colpick_hue_larr {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #858585
}
.colpick_hue_rarr {
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 7px solid #858585
}
.colpick_new_color {
    position: absolute;
    left: 207px;
    top: 6px;
    width: 60px;
    height: 27px;
    background: red;
    border: 1px solid #8f8f8f
}
.colpick_current_color {
    position: absolute;
    left: 277px;
    top: 6px;
    width: 60px;
    height: 27px;
    background: red;
    border: 1px solid #8f8f8f
}
.colpick_field,
.colpick_hex_field {
    position: absolute;
    height: 20px;
    width: 60px;
    overflow: hidden;
    background: #f3f3f3;
    color: #b8b8b8;
    font-size: 12px;
    border: 1px solid #bdbdbd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}
.colpick_rgb_r {
    top: 40px;
    left: 207px
}
.colpick_rgb_g {
    top: 67px;
    left: 207px
}
.colpick_rgb_b {
    top: 94px;
    left: 207px
}
.colpick_hsb_h {
    top: 40px;
    left: 277px
}
.colpick_hsb_s {
    top: 67px;
    left: 277px
}
.colpick_hsb_b {
    top: 94px;
    left: 277px
}
.colpick_hex_field {
    width: 68px;
    left: 207px;
    top: 121px
}
.colpick_focus {
    border-color: #999
}
.colpick_field_letter {
    position: absolute;
    width: 12px;
    height: 20px;
    line-height: 20px;
    padding-left: 4px;
    background: #efefef;
    border-right: 1px solid #bdbdbd;
    font-weight: 700;
    color: #777
}
.colpick_field input,
.colpick_hex_field input {
    position: absolute;
    right: 11px;
    height: 20px;
    line-height: 20px;
    background: transparent;
    border: none;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #555;
    text-align: right;
    outline: none;
    margin: 0;
    padding: 0
}
.colpick_hex_field input {
    right: 4px
}
.colpick_field_arrs {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 21px;
    cursor: n-resize
}
.colpick_field_uarr {
    position: absolute;
    top: 5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #959595
}
.colpick_field_darr {
    position: absolute;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #959595
}
.colpick_submit {
    position: absolute;
    left: 207px;
    top: 149px;
    width: 130px;
    height: 22px;
    line-height: 22px;
    background: #efefef;
    text-align: center;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #bdbdbd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}
.colpick_submit:hover {
    background: #f3f3f3;
    cursor: pointer;
    border-color: #999
}
.colpick_full_ns .colpick_new_color {
    width: 130px;
    height: 25px
}
.colpick_rgbhex {
    width: 282px
}
.colpick_rgbhex .colpick_field,
.colpick_rgbhex .colpick_submit {
    width: 68px
}
.colpick_rgbhex .colpick_new_color {
    width: 34px;
    border-right: none
}
.colpick_rgbhex .colpick_current_color {
    width: 34px;
    left: 240px;
    border-left: none
}
.colpick_rgbhex_ns .colpick_new_color {
    width: 68px;
    border: 1px solid #8f8f8f
}
.colpick_hex {
    width: 206px;
    height: 201px
}
.colpick_hex .colpick_hex_field {
    width: 72px;
    height: 25px;
    top: 168px;
    left: 80px
}
.colpick_hex .colpick_hex_field div,
.colpick_hex .colpick_hex_field input {
    height: 25px;
    line-height: 25px
}
.colpick_hex .colpick_new_color {
    left: 9px;
    top: 168px;
    width: 30px;
    border-right: none
}
.colpick_hex .colpick_current_color {
    left: 39px;
    top: 168px;
    width: 30px;
    border-left: none
}
.colpick_hex .colpick_submit {
    left: 164px;
    top: 168px;
    width: 30px;
    height: 25px;
    line-height: 25px
}
.colpick_hex_ns .colpick_hex_field {
    width: 80px
}
.colpick_hex_ns .colpick_new_color {
    width: 60px;
    border: 1px solid #8f8f8f
}
.colpick_dark {
    background: #161616;
    border-color: #2a2a2a
}
.colpick_dark .colpick_color {
    outline-color: #333
}
.colpick_dark .colpick_hue {
    border-color: #555
}
.colpick_dark .colpick_field,
.colpick_dark .colpick_hex_field {
    background: #101010;
    border-color: #2d2d2d
}
.colpick_dark .colpick_field_letter {
    background: #131313;
    color: #696969;
    border-color: #2d2d2d
}
.colpick_dark .colpick_field input,
.colpick_dark .colpick_hex_field input {
    color: #7a7a7a
}
.colpick_dark .colpick_field_uarr {
    border-bottom-color: #696969
}
.colpick_dark .colpick_field_darr {
    border-top-color: #696969
}
.colpick_dark .colpick_focus {
    border-color: #444
}
.colpick_dark .colpick_submit {
    background: #131313;
    color: #7a7a7a;
    border-color: #2d2d2d
}
.colpick_dark .colpick_submit:hover {
    background-color: #101010;
    border-color: #444
}
.cp-container {
    width: auto;
    position: relative;
    box-sizing: border-box
}
.cp-container .cp-transparency,
.cp-container .cp-swatches li {
    background: url(data:image/gif;base64,R0lGODlhBgAGAIABAMPDw////yH5BAEKAAEALAAAAAAGAAYAAAIKhIMGGMrs0pGgAAA7) repeat
}
.cp-container .cp-slider,
.cp-container .cp-preview {
    width: auto;
    height: 26px;
    border: 1px solid #dadada;
    position: relative;
    margin: 0 4px 5pt
}
.cp-container .cp-slider {
    cursor: ew-resize;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.cp-container .cp-preview {
    height: 39px
}
.cp-container .cp-slider span,
.cp-container .cp-preview input {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: sans-serif;
    line-height: 26px;
    font-size: 14px
}
.cp-container .cp-preview input {
    line-height: 39px;
    outline: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: none;
    padding: 0
}
.cp-container .cp-marker {
    position: absolute;
    display: block;
    width: 11px;
    height: 10px;
    margin-left: -5px;
    top: -2px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAKCAMAAABVLlSxAAAAtFBMVEUAAAB1dXVsbGxwcHBqampoaGj+/v7r6+vw8PBmZmb6+vp/f39kZGTh4eGxsbHT09NlZWXX19dgYGBfX1/W1tb7+/vx8fHZ2dna2tqBgYFnZ2fg4ODe3t7j4+Pi4uL39/eampro6Ojl5eXy8vLt7e3p6emgoKCmpqatra1ra2v19fXm5ubz8/Pv7+9hYWFjY2N5eXlvb29zc3Ps7Ozd3d2ysrKCgoKDg4P9/f2zs7P4+Pj///83Bdu/AAAAAXRSTlMAQObYZgAAAGlJREFUeNo9ylcbgWAAhuG3ZZQoEkkhDe099P3//9Xg6j56Dh6cjkm623IsnTNIDsqlEsN1HBVI5evdDMtN0FOQKt14lWrArzLcnpZjvx9nshcA342jviO1hlHuTdlgVnzIt8VfNubiNwzmhAsoIAkssgAAAABJRU5ErkJggg==)
}
.cp-container.cp-unconvertible-cie-color .cp-slider.cp-cielightness .cp-marker,
.cp-container.cp-unconvertible-cie-color .cp-slider.cp-ciechroma .cp-marker,
.cp-container.cp-unconvertible-cie-color .cp-slider.cp-ciehue .cp-marker {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAKCAMAAABVLlSxAAAAvVBMVEUAAADLy8u8vLzZ2dlgYGDe3t5sbGxoaGjr6+vb29tqamrCwsJmZmZkZGTW1tbExMTw8PDj4+Pa2tpfX1/z8/PU1NTp6enX19fg4OBwcHDc3NzJycn4+Pj7+/v6+vrd3d3h4eH+/v6lpaWmpqaampqgoKBlZWWzs7Orq6tra2uxsbGBgYF1dXVnZ2d/f3/T09PMzMxhYWFjY2P19fXv7+9vb2/l5eVzc3P////n5+eysrKDg4OCgoJ5eXnoAACu7h75AAAAAXRSTlMAQObYZgAAAG1JREFUeNo1ytsaQkAAReGdkpRKRUTofEANBoOY93+sfMp/tS4WNqM4mSvSdJztEJPFkETyJNUYEmMtzvhApfsQN89cCXxJ3WOD1yXfRlx3Cv8NPK+pZedFFaCVnQ+8rGp02Kl8fPDX3Nvs/YYvAnQLhiGwga0AAAAASUVORK5CYII=)
}
.cp-container.cp-popup {
    display: none;
    width: 370px;
    position: absolute;
    margin-top: 0;
    background-color: #fff;
    border: 1px solid #dadada;
    box-shadow: 0 3px 5px -2px rgba(0,0,0,0.47);
    z-index: 2147483647;
    padding: 10px 5px 5px
}
.cp-container .cp-swatches ul {
    width: auto;
    box-sizing: border-box;
    list-style-type: none;
    margin: 0;
    padding: 0
}
.cp-container .cp-swatches li {
    box-sizing: border-box;
    display: block;
    width: 23px;
    height: 23px;
    float: left;
    border: 1px solid #888;
    cursor: pointer;
    margin: 5px
}
.cp-container .cp-swatches li.actual {
    box-shadow: 0 0 3px 1px #fa8000;
    border-color: #000
}
.cp-container .cp-swatches li span {
    display: block;
    width: 100%;
    height: 100%
}
.cp-container .cp-swatches button {
    box-sizing: border-box;
    display: block;
    width: 23px;
    height: 23px;
    float: left;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: #eee;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: default;
    margin: 5px
}
.cp-container .cp-swatches button:enabled {
    cursor: pointer
}
.cp-container .cp-swatches button:active:enabled {
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05)
}
.cp-container .cp-swatches button.add {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAACVBMVEUAAAAAAAAAAACDY+nAAAAAAnRSTlP7AIHb9U4AAAAkSURBVHjavc4hDgAADMLAwf8fPYKcJGEnqzowCqwTeATh53QBxJABcUm2nCEAAAAASUVORK5CYII=)
}
.cp-container .cp-swatches button.remove {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAApVBMVEUDAwMCAgICAgILCwsNDQ0REREGBgYHBwcICAgLCwsODg4JCQkLCwsgICAGBgYVFRUBAQEGBgYICAgkJCQJCQkFBQU+Pj4SEhICAgICAgIBAQECAgIREREFBQUICAgaGhoFBQUBAQEUFBQMDAwODg4WFhYTExMQEBAaGhoUFBRHR0chISEUFBQBAQEDAwNEREQKCgpAQEAHBwcFBQUFBQUAAAAAAAAxiR9QAAAANnRSTlP//f48aHCls7s0MHROCp1A+4WTBnqsAiDg3enbOqqBDMnzGlQyFBooDhwCCBjx0wJ4EmZOzgDzkDEIAAAAeklEQVR42o3L2RLBQBRF0VbGIIgYQgyJmCVBOOf/P81Fq+682Y+rait82kdbfNOQMN7sDhZgxXCepRZMxiTziwG4ucjybABpJrKwAG1yJEv1+avV5WAK9aCqNcl6gxV0GBzfcL2R90IAvdmpDP4aJZD+BGdI9j0DOg0vUhMssT3aBI8AAAAASUVORK5CYII=)
}
.cp-container .cp-swatches button.reset {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA2FBMVEUCAgIBAQEFBQUGBgYPDw8CAgIqKioKCgobGxsGBgYFBQUKCgoHBwcdHR0mJiZFRUUMDAwQEBADAwMaGhoMDAwDAwMEBAQDAwMFBQUODg4FBQUPDw8NDQ0DAwMaGhoPDw8FBQUFBQUmJiYNDQ0CAgIBAQEGBgYGBgYREREODg4SEhI7OzsODg4RERE/Pz8REREODg4DAwMFBQUzMzM3NzcFBQUNDQ0dHR0GBgYODg4BAQEZGRkGBgYEBAQQEBAVFRUEBAQNDQ0EBAQGBgYAAAACAgIBAQEAAAAT9YvKAAAARXRSTlP9/afbOOwMSg52g2yPDAwCRjDYGEjsqumPMqU2ZtYONKyuDkDk7pWTNkAyBkI0BjBS25MICJ1CGJk2+A6LuyoUs0isnQDapSJ+AAAAqUlEQVR42kXI11bCUBQA0SMoIEhTigWkKBbEgpgAKYSQczP//0feJUjmbbZUVbW56hrTdu7UJpWL2opDt/cWzkmh07paugn0fZUy0NO/1h5DlWvg5GEvA3iVBObfX7rviZ0UG2M99oKIFuoZLFIkzzKDNwtnuBlMMeKQZBCwlVNY//8GYtEc3s3hJ4QqWrqE5/efj88AHiML6o+ANAXCSC3YZjsDZhur7RdGhjsGc+eEZwAAAABJRU5ErkJggg==)
}
.cp-container button:disabled {
    opacity: 0.27
}
.colpick_full_ns .colpick_submit,
.colpick_full_ns .colpick_current_color,
.colpick_rgbhex .colpick_hsb_h,
.colpick_rgbhex .colpick_hsb_s,
.colpick_rgbhex .colpick_hsb_b,
.colpick_rgbhex_ns .colpick_submit,
.colpick_rgbhex_ns .colpick_current_color,
.colpick_hex .colpick_hsb_h,
.colpick_hex .colpick_hsb_s,
.colpick_hex .colpick_hsb_b,
.colpick_hex .colpick_rgb_r,
.colpick_hex .colpick_rgb_g,
.colpick_hex .colpick_rgb_b,
.colpick_hex_ns .colpick_submit,
.colpick_hex_ns .colpick_current_color {
    display: none
}
.colpick_full_ns .colpick_rgb_r,
.colpick_full_ns .colpick_hsb_h,
.colpick_rgbhex_ns .colpick_rgb_r {
    top: 42px
}
.colpick_full_ns .colpick_rgb_g,
.colpick_full_ns .colpick_hsb_s,
.colpick_rgbhex_ns .colpick_rgb_g {
    top: 73px
}
.colpick_full_ns .colpick_rgb_b,
.colpick_full_ns .colpick_hsb_b,
.colpick_rgbhex_ns .colpick_rgb_b {
    top: 104px
}
.colpick_full_ns .colpick_hex_field,
.colpick_rgbhex_ns .colpick_hex_field {
    top: 135px
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .wojo.form .two.fields:not(.block) > .fields,
    .wojo.form .two.fields:not(.block) > .field,
    .wojo.form .two.fields.inline-block > .field:first-child,
    .wojo.form .two.fields.inline-block > .field:last-child,
    .wojo.form .three.fields:not(.block) > .fields,
    .wojo.form .three.fields:not(.block) > .field,
    .wojo.form .four.fields:not(.block) > .fields,
    .wojo.form .four.fields:not(.block) > .field,
    .wojo.form .five.fields:not(.block) > .fields,
    .wojo.form .six.fields:not(.block) > .field,
    .wojo.form .inline.fields:not(.block) > .field,
    .wojo.form .inline.fields:not(.block) > .field > label {
        float: none;
        width: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    .wojo.form .fields .field:first-child,
    .wojo.form .fields .field:last-child {
        padding-left: 0;
        padding-right: 0;
    }
}