/**
	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
*********************************************/
/* ----------- GeekSolutions ----------- */
.hidden {
	display: none;
}
.geeks {
	position: relative;
	max-width: 32px;
	vertical-align: middle;
	-webkit-filter: grayscale(100%);
}
.geeks:hover {
    -webkit-filter: grayscale(0%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.resaltar {
	font-weight: bold;
	color: #113e63;
}

.wrobel {
	font-family: 'Nunito', sans-serif;
	color:#3364a4;
	font-size: 16px;
	font-weight: bold;
	background: 
	-webkit-linear-gradient(top left, #1B5381, #4782AC);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*background:
	-moz-linear-gradient(top left, #1B5381, #4782AC);
	-moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background:
    -ms-linear-gradient(top left, #1B5381, #4782AC);
	-ms-background-clip: text;
    -ms-text-fill-color: transparent;*/

	/*box-shadow: 1px 1px 1px #D0CECE;*/
}
.consultores {
	font-family: 'Quicksand', sans-serif;
	color: #55595B;
    font-weight: 800;
    font-size: 13px;
}
.privacidad {
	color: #55595B;
}
body {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 1.571428571428571;
	color: #000000;
	background-color: #EEEEEE;
}

.box {
	margin: 0 0 30px;
}

.widget-detalle {
	position: relative;
	padding: 40px 30px;
	border-radius: 10px;
	color: #d2d2d2;
	background-color: #ffffff;
	box-shadow: 2px 2px 2px #D0CECE;
	overflow: hidden;
}

.widget-detalle:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 3px;
	margin-left: -30px;
	background-color: #ffffff;
}
.client-wrapper {
width: 100%;
text-align: center;
display: block;
margin-right: auto;
margin-left: auto;

}
.client img {
 width: 100%;
-webkit-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;
border-radius: 0;
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
box-shadow: 0 0 5px rgba(0,0,0,0.2);
padding: 6px;
margin: 5px 5px 5px 5px;
}

.right {
	float: right;
}

.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: #113e63;
}


/********************************************
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: #39c9a5;*/
}


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

.bttn {
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 12px 25px 11px 25px;
	border: none;
	border-radius: 4px;
	background-color: #216ba8;
	text-decoration: none;
	-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;
}
.bttn:hover {
	background-color: #39c9a5;
	text-decoration: none;
	color: #ffffff;
}

.bttn:focus {
	outline: 0;
	text-decoration: none;
}

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: #39c9a5;
}

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: #39c9a5;
}

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: #39c9a5;
}

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: #39c9a5;
}

.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: #39c9a5;
}


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

}
	.logow {
	float:left;
	/*position: absolute;*/

    }
.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: #216BA8;
	border-radius: 10px;
    box-shadow: 2px 2px 2px #D0CECE;
}



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

.burger-menu i {
	font-size: 23px;
	color: #41BB9B;
		
	-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: #FFF;
	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: #39c9a5;
}

.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: #929da3;
}

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

.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: 1.3em;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.3em;
	margin: 0 0 0px;
	text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
            -1px 1px 0 #000, 3px 3px 5px #000;
            /*
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #1d2123;
    -moz-text-stroke-width: 2px;
    -moz-text-stroke-color: #1d2123;
    -ms-text-stroke-width: 2px;
    -ms-text-stroke-color: #1d2123;
    text-stroke-width: 2px;
    text-stroke-color: #1d2123;*/
}

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

.home-slide-category a {
	font-size: 0.857142em;
	color: #fff;
	text-transform: uppercase;
	background-color: #39c9a5;
	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: #39c9a5;
	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: #929da3;
}

.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: 40px 30px;
	background-color: #fff;
}

.post-type-slide .post-entry {
	padding: 30px 30px 40px 30px;
}

.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 span {
	font-family: 'Nunito', sans-serif;
	color:#3364a4;
	font-weight: bold;
	text-transform: none;
	background: 
	-webkit-linear-gradient(top left, #0065A8, #6BAFE0);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*background:
	-moz-linear-gradient(top left, #0065A8, #6BAFE0);
	-moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background:
    -ms-linear-gradient(top left, #0065A8, #6BAFE0);
	-ms-background-clip: text;
    -ms-text-fill-color: transparent;*/

	/*box-shadow: 1px 1px 1px #D0CECE;*/
}
.post-entry h2 {
	position: relative;
	font-size: 1.571428em;
	font-weight: 600;
	color: #2A9C81;
	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: #39c9a5;
}

.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: #39c9a5;
}

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

.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: #FFF;
	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;
	font-family: FontAwesome;
	content: '\f0c9';
	top: -4px;
	left: 0;
	font-size: 14px;
	color: #cacaca;
}

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

.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: #39c9a5;
}

.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: #929da3;
}

.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: #929da3;
}

.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 {
	padding: 40px 30px 38px 30px;
}

.masonry-wrapper .post-type-slide .post-entry {
	padding: 30px 30px 38px 30px;
}

.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: #929da3;
}

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

.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: #39c9a5;
}


/********************************************
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: #39c9a5;
}

.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: #39c9a5;
}

.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: #929da3;
}

.post-author-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #929da3;
	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: #39c9a5;
}

.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: #39c9a5;
}


/********************************************
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: #39c9a5;
}


/********************************************
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: #39c9a5;
	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: #39c9a5;
	
	-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: #929da3;
}

.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: #216BA8;

}

.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: #ffffff;
	background-color: #929da3;
	overflow: hidden;
}

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

.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: #39c9a5;
}


/********************************************
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: #39c9a5;
	
	-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: #39c9a5;
}

.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: #929da3;
	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: #39c9a5;
	
	-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: #39c9a5;
}

.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: #929da3;
}
/***** TABS *****/
.nav-tabs {
  background-color: #9fa8bc;
  border-bottom: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.nav-tabs > li {
  margin: 0;
}
.nav-tabs > li > a {
  color: #ffffff;	
  /*color: rgb(255, 255, 255);*/
  background-color: #206696;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin: 0;
  border: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #fff;
  background-color: #909bb1;
  border: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  border-radius: 0;
  background-color: #fff;
  color: #5b6781;
}
.nav-tabs > li.active:first-child > a {
  border-top-left-radius: 2px;
}
.nav-tabs.nav-justified > li > a {
  border: 0;
}
.nav-tabs.nav-justified > .active:last-child > a {
  border-top-right-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 0;
}
.tab-pane {
    padding: 60px;
    background-color: #EAEAEA;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 14px 25px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #259dab;
}
.nav .nav-divider {
  height: 1px;
  margin: 7.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  /*float: left;*/
  margin-bottom: -1px;
}
.nav-tabs > li > a {
    /* margin-right: 2px; */
    /* line-height: 1.42857143; */
    /* border: 1px solid transparent; */
    border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #EAEAEA;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #EAEAEA;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 2px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #2574ab;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #EAEAEA;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 17px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 2px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 10px;
  padding-left: 10px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 16.5px 10px;
  font-size: 16px;
  line-height: 17px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -10px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 10px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 2px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 8.25px -10px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 17px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 17px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
}
.navbar-form {
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px 10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 6px;
  margin-bottom: 6px;
}
.navbar-btn.btn-sm {
  margin-top: 9px;
  margin-bottom: 9px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -10px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777777;
}
.navbar-default .navbar-nav > li > a {
  color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777777;
}
.navbar-default .navbar-link:hover {
  color: #333333;
}
.navbar-default .btn-link {
  color: #777777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}

.nav-primary {
  background-color: #2574ab;
}
.nav-primary > li > a:hover,
.nav-primary > li > a:focus {
  background-color: #206696;
}
.nav-primary > li.active > a,
.nav-primary > li.active > a:hover,
.nav-primary > li.active > a:focus {
  color: #2574ab;
}
.nav-success {
  background-color: #259dab;
}
.nav-success > li > a:hover,
.nav-success > li > a:focus {
  background-color: #208a96;
}
.nav-success > li.active > a,
.nav-success > li.active > a:hover,
.nav-success > li.active > a:focus {
  color: #259dab;
}
.nav-warning {
  background-color: #e6ad5c;
}
.nav-warning > li > a:hover,
.nav-warning > li > a:focus {
  background-color: #e3a246;
}
.nav-warning > li.active > a,
.nav-warning > li.active > a:hover,
.nav-warning > li.active > a:focus {
  color: #e6ad5c;
}
.nav-danger {
  background-color: #d9534f;
}
.nav-danger > li > a:hover,
.nav-danger > li > a:focus {
  background-color: #d43f3a;
}
.nav-danger > li.active > a,
.nav-danger > li.active > a:hover,
.nav-danger > li.active > a:focus {
  color: #d9534f;
}
.nav-info {
  background-color: #5bc0de;
}
.nav-info > li > a:hover,
.nav-info > li > a:focus {
  background-color: #46b8da;
}
.nav-info > li.active > a,
.nav-info > li.active > a:hover,
.nav-info > li.active > a:focus {
  color: #5bc0de;
}
.nav-inverse {
  background-color: #3b4354;
}
.nav-inverse > li > a:hover,
.nav-inverse > li > a:focus {
  background-color: #313745;
}
.nav-inverse > li.active > a,
.nav-inverse > li.active > a:hover,
.nav-inverse > li.active > a:focus {
  color: #3b4354;
}
.nav-line {
  background-color: transparent;
  border-bottom: 1px solid #dbdfe6;
}
.nav-line > li > a {
  color: #657390;
  padding-top: 0;
  padding-bottom: 10px;
}
.nav-line > li > a:hover,
.nav-line > li > a:focus {
  background-color: transparent;
  color: #262b36;
}
@media (max-width: 480px) {
  .nav-line > li > a {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.nav-line > li.active > a,
.nav-line > li.active > a:hover,
.nav-line > li.active > a:focus {
  color: #259dab;
  background-color: transparent;
  -webkit-box-shadow: 0 1px 0 #259dab;
  box-shadow: 0 1px 0 #259dab;
}
.nav-line + .tab-content > .tab-pane {
  padding: 20px 0 0;
  background-color: transparent;
}
.nav-line.nav-justified {
  border-bottom: 1px solid #dbdfe6;
}
@media (max-width: 480px) {
  .nav-line.nav-justified {
    border-bottom: 0;
  }
}
/********************************************
16.1 Table's
*********************************************/

#wrobel table {    
    font-size: 12px;    margin: 5px;     width: 480px; text-align: center;    border-collapse: collapse; }

#wrobel th {     font-size: 13px;    text-align: center; font-weight: normal;     padding: 8px;     background: #216BA8;
    border-top: 4px solid #2A9C81;    border-bottom: 1px solid #fff; color: #ffffff; }
#wrobel .wrobelth th {     font-size: 13px;    text-align: center; font-weight: normal;     padding: 8px;     background: #27ae60;
    border-top: 4px solid #5DB983;    border-bottom: 1px solid #fff; color: #ffffff; }

#wrobel td {    padding: 8px;     background: #EAEAEA;   color:#000;  border-bottom: 1px solid #fff;
     border-top: 1px solid transparent; }
#wrobel ul {
    list-style: none;
}
#wrobel li {
    float: left;
    margin: 10px;
    text-align: center;
}
.wrobel h4 {    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: Roboto Condensed;}
#wrobel td:hover { background: #D0D0D0; color: #000; }
.33 {
	width: 33.333333%;
}


/***** TABS & ACCORDIONS *****/
.panel-default {
  border-color: #d2d6df;
}
.panel-default > .panel-heading {
  color: #262b36;
  background-color: #9fa8bc;
  border-color: #d2d6df;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d2d6df;
}
.panel-default > .panel-heading .badge {
  color: #9fa8bc;
  background-color: #262b36;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d2d6df;
}

.panel-default > .panel-heading > p {
  color: #696c74;
}
.panel-footer {
  background-color: #f0f1f4;
  border-color: transparent;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.panel-default .panel-options,
.panel-primary .panel-options,
.panel-success .panel-options,
.panel-warning .panel-options,
.panel-danger .panel-options,
.panel-info .panel-options,
.panel-inverse .panel-options {
  top: 11px;
}
.panel-default .panel-heading,
.panel-primary .panel-heading,
.panel-success .panel-heading,
.panel-warning .panel-heading,
.panel-danger .panel-heading,
.panel-info .panel-heading,
.panel-inverse .panel-heading {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 0;
}
.panel-default .panel-heading .panel-title,
.panel-primary .panel-heading .panel-title,
.panel-success .panel-heading .panel-title,
.panel-warning .panel-heading .panel-title,
.panel-danger .panel-heading .panel-title,
.panel-info .panel-heading .panel-title,
.panel-inverse .panel-heading .panel-title {
  color: #fff;
}
.panel-default .panel-heading p,
.panel-primary .panel-heading p,
.panel-success .panel-heading p,
.panel-warning .panel-heading p,
.panel-danger .panel-heading p,
.panel-info .panel-heading p,
.panel-inverse .panel-heading p {
  color: rgba(255, 255, 255, 0.8);
}
.panel-default .panel-body,
.panel-primary .panel-body,
.panel-success .panel-body,
.panel-warning .panel-body,
.panel-danger .panel-body,
.panel-info .panel-body,
.panel-inverse .panel-body {
  padding-top: 20px;
}
.panel-group .panel {
  border-radius: 0;
}
.panel-group .panel > .panel-heading {
  padding: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-group .panel > .panel-heading .panel-title {
  font-size: 12px;
}
@media (max-width: 480px) {
  .panel-group .panel > .panel-heading .panel-title {
    line-height: 18px;
  }
}
.panel-group .panel > .panel-heading .panel-title > a {
  display: block;
  position: relative;
  padding: 18px 20px 15px;
  color: #505b72;
  color: #259dab;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-group .panel > .panel-heading .panel-title > a:hover,
.panel-group .panel > .panel-heading .panel-title > a:focus {
  color: #259dab;
}
.panel-group .panel > .panel-heading .panel-title > a:after {
  content: '\f078';
  font-family: 'FontAwesome';
  font-size: 11px;
  font-weight: normal;
  color: #9fa8bc;
  position: absolute;
  top: 15px;
  right: 20px;
  display: none;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed {
  padding: 15px 20px;
  color: #505b72;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed:after {
  content: '\f054';
  color: #fff;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel > .panel-heading .panel-title > a.collapsed:focus {
  color: #262b36;
}
.panel-group .panel > .panel-heading + .panel-collapse > .panel-body {
  border-top: 0;
}
.panel-group .panel + .panel {
  margin-top: 0;
  border-top: 1px solid #dbdfe6;
}
.panel-group .panel .panel-collapse.in > .panel-body,
.panel-group .panel .panel-collapse.collapsing > .panel-body {
  padding-top: 0;
}
.panel-group .panel:first-child,
.panel-group .panel:first-child > .panel-heading .panel-title > a {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.panel-group .panel:last-child,
.panel-group .panel:last-child > .panel-heading .panel-title > a.collapsed {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-primary > .panel-heading .panel-title > a,
.panel-group .panel-success > .panel-heading .panel-title > a,
.panel-group .panel-warning > .panel-heading .panel-title > a,
.panel-group .panel-danger > .panel-heading .panel-title > a,
.panel-group .panel-info > .panel-heading .panel-title > a,
.panel-group .panel-inverse > .panel-heading .panel-title > a {
  margin-top: -1px;
}
.panel-group .panel-default > .panel-heading .panel-title > a:after,
.panel-group .panel-primary > .panel-heading .panel-title > a:after,
.panel-group .panel-success > .panel-heading .panel-title > a:after,
.panel-group .panel-warning > .panel-heading .panel-title > a:after,
.panel-group .panel-danger > .panel-heading .panel-title > a:after,
.panel-group .panel-info > .panel-heading .panel-title > a:after,
.panel-group .panel-inverse > .panel-heading .panel-title > a:after {
  display: block;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:focus {
  color: #fff;
}
.panel-group .panel-default:first-child > .panel-heading,
.panel-group .panel-primary:first-child > .panel-heading,
.panel-group .panel-success:first-child > .panel-heading,
.panel-group .panel-warning:first-child > .panel-heading,
.panel-group .panel-danger:first-child > .panel-heading,
.panel-group .panel-info:first-child > .panel-heading,
.panel-group .panel-inverse:first-child > .panel-heading {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-group .panel-default:first-child > .panel-heading .panel-title > a,
.panel-group .panel-primary:first-child > .panel-heading .panel-title > a,
.panel-group .panel-success:first-child > .panel-heading .panel-title > a,
.panel-group .panel-warning:first-child > .panel-heading .panel-title > a,
.panel-group .panel-danger:first-child > .panel-heading .panel-title > a,
.panel-group .panel-info:first-child > .panel-heading .panel-title > a,
.panel-group .panel-inverse:first-child > .panel-heading .panel-title > a {
  margin-top: 0;
}
.panel-group .panel-default:last-child > .panel-heading,
.panel-group .panel-primary:last-child > .panel-heading,
.panel-group .panel-success:last-child > .panel-heading,
.panel-group .panel-warning:last-child > .panel-heading,
.panel-group .panel-danger:last-child > .panel-heading,
.panel-group .panel-info:last-child > .panel-heading,
.panel-group .panel-inverse:last-child > .panel-heading,
.panel-group .panel-default:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-primary:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-success:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-warning:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-danger:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-info:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-inverse:last-child > .panel-heading .panel-title > a.collapsed {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel-default .panel-collapse.in > .panel-body,
.panel-group .panel-primary .panel-collapse.in > .panel-body,
.panel-group .panel-success .panel-collapse.in > .panel-body,
.panel-group .panel-warning .panel-collapse.in > .panel-body,
.panel-group .panel-danger .panel-collapse.in > .panel-body,
.panel-group .panel-info .panel-collapse.in > .panel-body,
.panel-group .panel-inverse .panel-collapse.in > .panel-body,
.panel-group .panel-default .panel-collapse.collapsing > .panel-body,
.panel-group .panel-primary .panel-collapse.collapsing > .panel-body,
.panel-group .panel-success .panel-collapse.collapsing > .panel-body,
.panel-group .panel-warning .panel-collapse.collapsing > .panel-body,
.panel-group .panel-danger .panel-collapse.collapsing > .panel-body,
.panel-group .panel-info .panel-collapse.collapsing > .panel-body,
.panel-group .panel-inverse .panel-collapse.collapsing > .panel-body {
  padding-top: 0;
  margin-bottom: -1px;
}
.panel-group .panel-default > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-default > .panel-heading .panel-title > a:hover,
.panel-group .panel-default > .panel-heading .panel-title > a:focus {
  color: #9fa8bc;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed {
  background-color: #9fa8bc;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #909bb1;
}
.panel-group .panel-default + .panel {
  border-color: #b4bbca;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-default > .panel-heading .panel-title > a:hover,
.panel-group .panel-default > .panel-heading .panel-title > a:focus {
  color: #3b4354;
}
.panel-group .panel-primary > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-primary > .panel-heading .panel-title > a,
.panel-group .panel-primary > .panel-heading .panel-title > a:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a:focus {
  color: #2574ab;
}
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed {
  background-color: #2574ab;
}
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #206696;
}
.panel-group .panel-primary + .panel {
  border-color: #2b88c8;
}
.panel-group .panel-success > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-success > .panel-heading .panel-title > a,
.panel-group .panel-success > .panel-heading .panel-title > a:hover,
.panel-group .panel-success > .panel-heading .panel-title > a:focus {
  color: #259dab;
}
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed {
  background-color: #259dab;
}
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #208a96;
}
.panel-group .panel-success + .panel {
  border-color: #2bb8c8;
}
.panel-group .panel-warning > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-warning > .panel-heading .panel-title > a,
.panel-group .panel-warning > .panel-heading .panel-title > a:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a:focus {
  color: #e6ad5c;
}
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed {
  background-color: #e6ad5c;
}
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #e3a246;
}
.panel-group .panel-warning + .panel {
  border-color: #ebbd7b;
}
.panel-group .panel-danger > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-danger > .panel-heading .panel-title > a,
.panel-group .panel-danger > .panel-heading .panel-title > a:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a:focus {
  color: #d9534f;
}
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed {
  background-color: #d9534f;
}
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #d43f3a;
}
.panel-group .panel-danger + .panel {
  border-color: #df706c;
}
.panel-group .panel-info > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-info > .panel-heading .panel-title > a,
.panel-group .panel-info > .panel-heading .panel-title > a:hover,
.panel-group .panel-info > .panel-heading .panel-title > a:focus {
  color: #5bc0de;
}
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed {
  background-color: #5bc0de;
}
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #46b8da;
}
.panel-group .panel-info + .panel {
  border-color: #79cbe4;
}
.panel-group .panel-inverse > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a,
.panel-group .panel-inverse > .panel-heading .panel-title > a:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a:focus {
  color: #505b72;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed {
  background-color: #505b72;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #464f63;
}
.panel-group .panel-inverse + .panel {
  border-color: #5f6b87;
}
.panel-default .panel-options > li > a,
.panel-primary .panel-options > li > a,
.panel-success .panel-options > li > a,
.panel-warning .panel-options > li > a,
.panel-danger .panel-options > li > a,
.panel-info .panel-options > li > a,
.panel-inverse .panel-options > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.panel-default .panel-options > li > a:hover,
.panel-primary .panel-options > li > a:hover,
.panel-success .panel-options > li > a:hover,
.panel-warning .panel-options > li > a:hover,
.panel-danger .panel-options > li > a:hover,
.panel-info .panel-options > li > a:hover,
.panel-inverse .panel-options > li > a:hover,
.panel-default .panel-options > li > a:focus,
.panel-primary .panel-options > li > a:focus,
.panel-success .panel-options > li > a:focus,
.panel-warning .panel-options > li > a:focus,
.panel-danger .panel-options > li > a:focus,
.panel-info .panel-options > li > a:focus,
.panel-inverse .panel-options > li > a:focus {
  color: rgba(255, 255, 255, 0.8);
}
.panel-primary-full {
  background-color: #2574ab;
  color: rgba(255, 255, 255, 0.8);
}
.panel-primary-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-primary-full .panel-options > li > a:hover,
.panel-primary-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-primary-full .panel-heading {
  background-color: transparent;
}
.panel-primary-full .panel-heading .panel-title {
  color: #fff;
}
.panel-primary-full .form-control {
  border-color: transparent;
}
.panel-primary-full .panel-body .panel-title,
.panel-primary-full .panel-body h1,
.panel-primary-full .panel-body h2,
.panel-primary-full .panel-body h3,
.panel-primary-full .panel-body h4,
.panel-primary-full .panel-body h5,
.panel-primary-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-primary-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-primary-full .panel-body a:hover,
.panel-primary-full .panel-body a:focus {
  color: #fff;
}
.panel-primary-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-success-full {
  background-color: #259dab;
  color: rgba(255, 255, 255, 0.8);
}
.panel-success-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-success-full .panel-options > li > a:hover,
.panel-success-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-success-full .panel-heading {
  background-color: transparent;
}
.panel-success-full .panel-heading .panel-title {
  color: #fff;
}
.panel-success-full .form-control {
  border-color: transparent;
}
.panel-success-full .panel-body .panel-title,
.panel-success-full .panel-body h1,
.panel-success-full .panel-body h2,
.panel-success-full .panel-body h3,
.panel-success-full .panel-body h4,
.panel-success-full .panel-body h5,
.panel-success-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-success-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-success-full .panel-body a:hover,
.panel-success-full .panel-body a:focus {
  color: #fff;
}
.panel-success-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-warning-full {
  background-color: #e6ad5c;
  color: rgba(255, 255, 255, 0.8);
}
.panel-warning-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-warning-full .panel-options > li > a:hover,
.panel-warning-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-warning-full .panel-heading {
  background-color: transparent;
}
.panel-warning-full .panel-heading .panel-title {
  color: #fff;
}
.panel-warning-full .form-control {
  border-color: transparent;
}
.panel-warning-full .panel-body .panel-title,
.panel-warning-full .panel-body h1,
.panel-warning-full .panel-body h2,
.panel-warning-full .panel-body h3,
.panel-warning-full .panel-body h4,
.panel-warning-full .panel-body h5,
.panel-warning-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-warning-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-warning-full .panel-body a:hover,
.panel-warning-full .panel-body a:focus {
  color: #fff;
}
.panel-warning-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-danger-full {
  background-color: #d9534f;
  color: rgba(255, 255, 255, 0.8);
}
.panel-danger-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-danger-full .panel-options > li > a:hover,
.panel-danger-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-danger-full .panel-heading {
  background-color: transparent;
}
.panel-danger-full .panel-heading .panel-title {
  color: #fff;
}
.panel-danger-full .form-control {
  border-color: transparent;
}
.panel-danger-full .panel-body .panel-title,
.panel-danger-full .panel-body h1,
.panel-danger-full .panel-body h2,
.panel-danger-full .panel-body h3,
.panel-danger-full .panel-body h4,
.panel-danger-full .panel-body h5,
.panel-danger-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-danger-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-danger-full .panel-body a:hover,
.panel-danger-full .panel-body a:focus {
  color: #fff;
}
.panel-danger-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-info-full {
  background-color: #5bc0de;
  color: rgba(255, 255, 255, 0.8);
}
.panel-info-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-info-full .panel-options > li > a:hover,
.panel-info-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-info-full .panel-heading {
  background-color: transparent;
}
.panel-info-full .panel-heading .panel-title {
  color: #fff;
}
.panel-info-full .form-control {
  border-color: transparent;
}
.panel-info-full .panel-body .panel-title,
.panel-info-full .panel-body h1,
.panel-info-full .panel-body h2,
.panel-info-full .panel-body h3,
.panel-info-full .panel-body h4,
.panel-info-full .panel-body h5,
.panel-info-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-info-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-info-full .panel-body a:hover,
.panel-info-full .panel-body a:focus {
  color: #fff;
}
.panel-info-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-inverse-full {
  background-color: #262b36;
  color: rgba(255, 255, 255, 0.8);
}
.panel-inverse-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-inverse-full .panel-options > li > a:hover,
.panel-inverse-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-inverse-full .panel-heading {
  background-color: transparent;
}
.panel-inverse-full .panel-heading .panel-title {
  color: #fff;
}
.panel-inverse-full .form-control {
  border-color: transparent;
}
.panel-inverse-full .panel-body .panel-title,
.panel-inverse-full .panel-body h1,
.panel-inverse-full .panel-body h2,
.panel-inverse-full .panel-body h3,
.panel-inverse-full .panel-body h4,
.panel-inverse-full .panel-body h5,
.panel-inverse-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-inverse-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-inverse-full .panel-body a:hover,
.panel-inverse-full .panel-body a:focus {
  color: #fff;
}
.panel-inverse-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.tab-side-wrapper {
  background-color: #fff;
  position: relative;
  margin: 0 0 20px;
  min-height: 136px;
  border-radius: 2px;
}
.tab-side-wrapper .tab-left,
.tab-side-wrapper .tab-right {
  padding: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  background-color: #EAEAEA;
}
.tab-side-wrapper .tab-left {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li > a {
  border-radius: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
}
.tab-side-wrapper .nav-stacked > li > a:hover,
.tab-side-wrapper .nav-stacked > li > a:focus {
  color: #fff;
  background-color: #909bb1;
}
.tab-side-wrapper .nav-stacked > li:first-child > a {
  border-top-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li:last-child > a {
  border-bottom-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li.active > a,
.tab-side-wrapper .nav-stacked > li.active > a:hover,
.tab-side-wrapper .nav-stacked > li.active > a:focus {
  background-color: #fff;
  color: #657390;
}
.tab-side-wrapper .nav-stacked > li + li {
  margin: 0;
}
.tab-side-wrapper .tab-right {
  right: 0;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.tab-side-wrapper .tab-right .nav-stacked > li:first-child > a {
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
}
.tab-side-wrapper .tab-right .nav-stacked > li:last-child > a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 2px;
}
.tab-side-wrapper .tab-main {
  padding: 0;
}
.tab-side-wrapper .tab-pane {
  background-color: #EAEAEA;
}


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

.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: #39c9a5;
}

.footer-details .widget-detail {
	padding: 0;
	border-radius: 0;
	color: #ffffff;
	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: #39c9a5;
}

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

/* ===== 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: #39c9a5;
}


/********************************************
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 (max-width: 480px) {

	.home-slider .slides li {
	height: 100px;
}

	}

@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-slider .slides li {
	height: 120px;
}
	
	.home-slide-caption {
		width: 70%;
	}
	
	.home-slide-caption h1 {
		font-size: 1.3857142em;
	}
	
	.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: 40px;
	}
	
	.post-type-slide .post-entry {
		padding: 30px 40px 40px 40px;
	}
	
	.masonry-wrapper .post-entry {
		padding: 40px 40px 38px 40px;
	}
	
	.masonry-wrapper .post-type-slide .post-entry {
		padding: 30px 40px 38px 40px;
	}
	
	.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: 20px 0 10px 0;
		float: right;
	}
	
	.logo img {
		height: auto;
	}
	
	.nav-menu {
		float: right;
		width: auto;
		min-height: 60px;
		margin: 10px 0 40px 0;
		padding: 50px 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 35px;
	}
	
	.nav-menu ul ul {
		padding: 0 0 0 25px;
	}
	
	.burger-menu {
		top: 18px;
		left: 150px;
	}
	
	.search-open {
		top: 20px;
		right: 25px;
	}
	
	.overlay-close-wrapper {
		top: 30px;
		right: 20px;
	}
	
	.search-form input {
		height: 60px;
		font-size: 2.1428em;
	}

	.home-slider .slides li {
	height: 150px;
}
	
	.home-slide-caption {
		width: 76%;
	}
	
	.home-slide-caption h1 {
		font-size: 3.642857em;
		line-height: 1.2em;
		margin: 0 0 0px;
	}
	
	.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 {
		float: right;
		width: auto;
		min-height: 60px;
		margin: 10px 0 40px 0;

	}
	
	.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: #39c9a5;
		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: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 37px !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: #39c9a5;
	}
	
	.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 0px;
	}
	
	.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;
	}
}