/*
 Theme Name:	Bloggr - Child Theme
 Theme URI:		http://alexramsden.co.uk/wordpress/themes
 Description:	Bloggr Child Theme.
 Author:		Alex J. Ramsden (AJR Design)
 Author URI:	http://alexramsden.co.uk/
 Template:		bloggr
 Version:		v1.0.0
 License:		GNU General Public License v2 or later
 License URI:	http://www.gnu.org/licenses/gpl-2.0.html
 Tags:			awesome, amazing, cool
 Text Domain:	bloggr-child
*/

:root {
    --colour_accent: 25,175,240;
    --colour_a: rgba(var(--colour_accent),0.8);
    --colour_a_hover: rgb(var(--colour_accent));
    --colour_a_active: rgba(var(--colour_accent),0.6);
}

html, body {
	overflow-x:hidden;
}

html {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	   -moz-box-sizing: inherit;
			box-sizing: inherit;
}

.clearfix:after {
	content:'';
	display:block;
	clear:both;
	height:0;
}

body {
	font-size: 17px;
    line-height: 140%;
}

img {
	vertical-align: middle;
	height: auto;
    max-width: 100%;
}
/*
body {
	position:relative;
	font-size:16px;
}

a {
	color:rgba(225,0,0,1);
}
a:hover {
	text-decoration:underline;
}

img {
	vertical-align:middle;
}

h1, h2, h3, h4, h5, h6, p {
	margin-bottom: 25px;
}
h1, h2, h3, h4, h5, h6 {
	padding-top:0;
    line-height: 100%;
	font-weight:400;
	text-transform:uppercase;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	padding-top:0;
}
h1 {
    font-size: 200%;
}
h2 {
    font-size: 175%;
}
h3 {
    font-size: 150%;
}
h4 {
    font-size: 125%;
}
h5 {
    font-size: 100%;
	text-transform:none;
}
h6 {
	display:inline;
    font-size: 100%;
	font-weight:300;
}
p {
	font-size:100%;
}

p:empty {
	display:none;
}

@media (max-width: 768px) {
	h2 {
		font-size:;
	}
	p {
		font-size:;
	}
}
*/

blockquote {
	display:block;
	padding: 10px 20px 10px 60px;
	margin: 0 0 25px;
	position: relative;
	
	font-family: inherit;
	line-height: inherit;
	font-size: 100%;
	font-weight:200;
	font-style:italic;
	color: inherit;
	text-align: left;

	border-width: 0;
}
blockquote p:last-child {
	margin-bottom:0;
}
blockquote::before {
	position: absolute;
	left: 14px;
	top: -4px;
	content: "\f10d"; /* "\201C" Unicode for Left Double Quote*/
	font-family: FontAwesome;
	font-size: 35px;
	font-style:normal;
	color: rgba(0,0,0,0.05);
}
blockquote::after {
	content: '';
}
blockquote a {
	background: #eee;
	padding: 0 1px;
	color: rgba(218,7,5,1);
	text-decoration: none;
	background:none;
	cursor:pointer;
}
blockquote a:hover{
	text-decoration:underline;
}
blockquote em {
	font-style: italic;
}

::-webkit-input-placeholder {
	font-size:95%;
	color: rgba(0,0,0,0.2);
}

:-moz-placeholder {
	font-size:95%;
	color: rgba(0,0,0,0.2);
}

::-moz-placeholder {
	font-size:95%;
	color: rgba(0,0,0,0.2);
}

:-ms-input-placeholder {  
	font-size:95%;
	color: rgba(0,0,0,0.2);
}

sup,
sub {
	padding-left:1px;
	font-size:60%;
}

.entry-content h2 {
	padding-bottom:10px;
	border-bottom:1px solid rgba(225,0,0,1);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	width:100%;
	padding:1px 10px 0;
	height:35px;
	line-height:35px;
	font-family:inherit;
	font-size:95%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="checkbox"],
select,
textarea {
	border:1px solid #DDD;
	outline:none !important;		
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="checkbox"]:hover,
select:hover,
textarea:hover {
	border:1px solid #CCC;
}

textarea {
	height:200px;
	resize:vertical;
}

a,
a:visited {
    color: var(--colour_a) !important; }
a:hover {
    color: var(--colour_a_hover) !important; }
a:active {
    color: var(--colour_a_active) !important; }

button, button:visited,
[type="button"], [type="button"]:visited,
[type="reset"], [type="reset"]:visited,
[type="submit"], [type="submit"]:visited {
    padding: 0.5em 1em;
    line-height: 1em;
    font-size: 0.85em;
    text-shadow: 0 1px 2px #000;
	text-transform: uppercase;
    color: #fff !important;
    border-radius: 4px;
    background: var(--colour_a) !important;
    /*box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);*/
    cursor: pointer;
}
button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	background: var(--colour_a_hover) !important;
}
button:active,
[type="button"]:active,
[type="reset"]:active,
[type="submit"]:active {
	background: var(--colour_a_active) !important;
}
/*
.home-sticky .bsp_rm,
button,
a.read-more,
.widget-area .widget_nav_menu ul li a,
.nav-previous a,
.nav-next a,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid rgba(0,0,0,0.075);
    background:rgba(0,0,0,0.05);
    color: rgba(255,0,0,1);
    cursor: pointer;
    font-size: 90%;
	text-transform:uppercase;
    line-height: 110%;
    padding: 15px 25px;
	border-radius:5px;
	text-shadow:none;
	box-shadow:none;
	outline:none;
    -webkit-transition: all 0.5s ease-out 0s;
       -moz-transition: all 0.5s ease-out 0s;
    	 -o-transition: all 0.5s ease-out 0s;
    	-ms-transition: all 0.5s ease-out 0s;
    		transition: all 0.5s ease-out 0s;
}
.home-sticky .bsp_rm:hover,
button:hover,
a.read-more:hover,
.widget-area .widget_nav_menu ul li a:hover,
.nav-previous a:hover,
.nav-next a:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border: 1px solid rgba(225,0,0,0);
    background:rgba(225,0,0,1);
    color: rgba(255,255,255,1);
    -webkit-transition: all 0.2s ease-out 0s;
       -moz-transition: all 0.2s ease-out 0s;
    	 -o-transition: all 0.2s ease-out 0s;
    	-ms-transition: all 0.2s ease-out 0s;
    		transition: all 0.2s ease-out 0s;
}

.home-sticky .bsp_rm:active,
button:active,
a.read-more:active,
.widget-area .widget_nav_menu ul li a:active,
.nav-previous a:active,
.nav-next a:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    color:rgba(255,255,255,1);
	border: 1px solid rgba(0,0,0,0.075);
    background:rgba(225,0,0,0.9);
	-webkit-transform: scale(0.99);
			transform: scale(0.99);
	-webkit-transition: all 0.01s ease;
	   -moz-transition: all 0.01s ease;
	     -o-transition: all 0.01s ease;
	    -ms-transition: all 0.01s ease;
		    transition: all 0.01s ease;
}

.home-sticky .bsp_rm:focus,
button:focus,
a.read-more:focus,
.nav-previous a:focus,
.nav-next a:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    color:rgba(225,0,0,1);
	border: 1px solid rgba(225,0,0,1);
    background:rgba(255,255,255,1);
	cursor:default;
	-webkit-transition: all 0.01s ease;
	   -moz-transition: all 0.01s ease;
	     -o-transition: all 0.01s ease;
	    -ms-transition: all 0.01s ease;
		    transition: all 0.01s ease;
}
*/


/* Buttons */
/*
.read-more-wrapper {
	display:block;
	margin-top:20px;
}
a.read-more {
	display:inline-block;
	text-decoration:none;
}
.home-sticky .bsp_rm:hover a {
	color:rgba(255,255,255,1);
}
*/


/* Radio */
input[type=radio] {
	position:relative;
	height:16px;
	width:16px;
	line-height:-webkit-calc(100% + 2px) !important;
	line-height:		calc(100% + 2px) !important;
	font-size:16px !important;
	border-radius:50% !important;
	border: none !important;
	cursor:pointer;
	-webkit-appearance: none;
}
input[type=radio]:before {
	position:absolute;
    top:0;
    left:0;
	right:0;
	bottom:0;
	margin:0 !important;
	padding:0 !important;

	content:'';
	font-family:FontAwesome;
	text-align:center;
	color:rgba(0,0,0,0.025);
	border-radius:50% !important;
	border: 1px solid #CCC;
	background:rgba(0,0,0,0.02);
}
input[type=radio]:checked:before {
	font-size:14px;
	color:rgba(218,7,5,1);
	border-radius:50% !important;
	border: 3px solid rgba(218,7,5,1);
	background:rgba(255,255,255,1);
	cursor:default;
}

input[type="radio"].shipping_method {
	position:relative;
	top:3px;
}

/* Checkbox */
input[type=checkbox] {
	position:relative;
	width:28px !important;
	height:28px !important;
	line-height:28px !important;
	font-size:26px !important;
	cursor:pointer;
	-webkit-appearance: none !important;
}
input[type=checkbox]:before {
	position: absolute;
    top:0;
    left:0;
	right:0;
	bottom:0;
	margin:0 !important;
	padding:0 !important;

	content:'\f00c';
	font-family:FontAwesome;
	text-align:center;
	color:rgba(0,0,0,0.035);
	background:rgba(0,0,0,0.02);

	-webkit-transition: all 0.15s ease;
	   -moz-transition: all 0.15s ease;
	     -o-transition: all 0.15s ease;
		    transition: all 0.15s ease;
}
input[type=checkbox]:checked:before {
	font-size:14px;
	color:rgba(25,175,240,1);
	background:rgba(255,255,255,1);
}

input[type=checkbox]#ship-to-different-address-checkbox {
	position:relative;
	top:-2px;
}

/* ul */
article ul h1,
article ul h2,
article ul h4,
article ul h5,
article ul h6,
.entry-content ul h1,
.entry-content ul h2,
.entry-content ul h4,
.entry-content ul h5,
.entry-content ul h6 {
	margin-bottom:10px;
	padding-top:20px;
}
article ul h4,
.entry-content ul h4 {
	font-size:120%;
}

article ul,
.entry-content ul {
	list-style:none;
	margin-left:0;
	padding-left:0;
}
article ul li,
.entry-content ul li {
	position:relative;
	padding:0 20px 10px 40px;
	line-height:120%;
	font-size:100%;
	font-style:italic;
}
article ul li:before,
.entry-content ul li:before {
	position:absolute;
	top:0;
	left:15px;
	font-family:FontAwesome;
	content:'\f101';
	line-height:inherit;
	font-size:95%;
	color:rgba(225,0,0,1);
	font-style:normal;
}
article ul li span,
.entry-content ul li span {
	display:inline-block;
	width:80px;
	padding-right:10px;
	font-weight:400;
	font-style:normal;
	text-transform:uppercase;	
}


/* PAGE LOADING
------------------------------------------------------------------------ */
#loading {
	position:fixed;
	z-index:999999999;

	top:0;
	left:0;
	right:0;
	bottom:0;

	display:table;
	width:100%;
	height:100%;

	text-align:right;
	color:rgba(255,255,255,1);
	background:rgba(25,175,240,0.99);
}
#loading .child {
	display: table-cell;
	vertical-align: bottom;
	padding:0 14% 10% 0;
	background-size:auto 85% !important;
}

#loading.opening {
}
#loading.closing {
	display:none;
}

#loading .site-title {
	position:relative;
	right:-2px;
	line-height:110%;
	font-size:50px;
	font-weight:400;
	letter-spacing:2px;
}
#loading .site-title span {
	font-weight:600;
	text-transform:uppercase;
}
#loading .desc {
	font-size:20px;
	font-weight:300;
	line-height:100%;
}

.spinner {
	float:right;
	position: relative;
	top:60px;
	right:-50px;
	margin: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	/*
	-webkit-animation: rotate-pin 2.0s infinite linear;
			animation: rotate-pin 2.0s infinite linear;
	*/
}
.spinner div {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 50%;
	height: 50%;
	border-radius: 100%;
	-webkit-animation: bounce-pin 2.0s infinite ease-in-out;
			animation: bounce-pin 2.0s infinite ease-in-out;
}
.spinner div:nth-of-type(2) {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
			animation-delay: -1.0s;
}
.spinner div:nth-of-type(3) {
	top: auto;
	bottom: -50%;
	-webkit-animation-delay: -4.5s;
			animation-delay: -4.5s;
}

/* rotate-pin */
@-webkit-keyframes rotate-pin {
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes rotate-pin {
	100% { transform: rotate(360deg); }
}

/* bounce-pin */
@-webkit-keyframes bounce-pin {
	0%,
	100% { -webkit-transform: scale(0.2); background-color: rgba(255,255,255,0.2); }
	50%  { -webkit-transform: scale(1.0); background-color: rgba(255,255,255,1.0); }
}
@keyframes bounce-pin {
	0%,
	100% { transform: scale(0.2); background-color: rgba(255,255,255,0.2); }
	50%  { transform: scale(1.0); background-color: rgba(255,255,255,1.0); }
}

@media (max-width: 768px) {
	#loading .child {
		vertical-align: top;
		padding:30% 15% 0 0;
		background-size:auto 85% !important;
	}
}
@media (max-width: 720px) {
	#loading .child {
		padding:20% 14% 0 0;
		background-size:auto 100% !important;
	}
	#loading .site-title {
		font-size:35px;
	}
	#loading .desc {
		font-size:15px;
		letter-spacing:1px;
	}
	.spinner {
		top:46px;
		right:-30px;
		width:30px;
		height:30px;
	}
}
@media (max-width: 400px) {
	#loading {
		height:-webkit-calc(100% + 70px);
		height:		   calc(100% + 70px);
	}
	#loading .child {
		padding:20% 15% 0 5%;
		background-size:auto 85% !important;
	}
	#loading .site-title {
		font-size:30px;
	}
	.spinner {
		top:40px;
		right:-30px;
		width:35px;
		height:35px;
	}
}

/* HOMEPAGE CONTENT/WIDGET AREAS
------------------------------------------------------------------------ */
.widget {
	margin:0 0 20px;
}

#home-content-area-1 {
	position: fixed;
	left:0;
	right:0;
}

#home-content-area-1 .logo {
	position:absolute;
	z-index:1;
	top:20px;
	right:20px;
	width:50px;
	height:auto;
	opacity:0.4;
	filter: alpha(opacity=40);
}

#home-content-area-1 .widget {
	position:relative;
	z-index:0;
	margin:0;
}
#home-content-area-1 .widget .su-slider-centered {
    margin: 0 auto;
}

#home-content-area-1 .widget .su-slider-slide-title {
    position: absolute;
    left: 20px;
    top: 20px !important;
	bottom:auto !important;
    display: block;
    max-width:-webkit-calc(100% - 90px) !important;
    max-width:		  calc(100% - 90px) !important;
    padding: 10px 15px 7px !important;

    line-height: 140% !important;
	font-size:110%;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
    color: rgba(25,175,240,1) !important;

    background: rgb(0,0,0);
    background: rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.8);

    -webkit-border-radius: 0 !important;
       -moz-border-radius: 0 !important;
    		border-radius: 0 !important;

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

    -webkit-transition: opacity 1s ease 0.1s;
       -moz-transition: opacity 1s ease 0.1s;
    	-ie-transition: opacity 1s ease 0.1s;
    	 -o-transition: opacity 1s ease 0.1s;
    		transition: opacity 1s ease 0.1s;
}
#home-content-area-1 .widget .su-slider-slide-title:before {
	position:relative;
	top:-1px;
	content:'\f105';
	font-family:FontAwesome;
	margin-right:8px;
	font-size:90%;
	font-weight:300;
}

@media (max-width: 1024px) {
	.su-slider-slides.portrait {
		height:274px !important;
	}
	.su-slider-slides.landscape {
		height:366px !important;
	}
}

h3.home-latest-overview {
    margin-bottom: 0;
    padding: 1px 20px 0;
	line-height:44px;
    font-size: 100%;
    font-weight: 700;
    text-transform: uppercase;
	color:rgba(255,255,255,1);
    border-top: 1px solid #e6e7e8;
    border-left: 1px solid #e6e7e8;
    border-right: 1px solid #e6e7e8;
    background: rgba(25,175,240,1);
}
h3.home-latest-overview i {
	padding-right:6px;
}
h3.home-latest-overview span.latest-date {
	float:right;
	margin-bottom:0;
	color:rgba(255,255,255,1);
}

.home-latest article,
.home-masonry article {
	box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.6s ease;
}
.home-latest article:hover,
.home-masonry article:hover {
	box-shadow: 0 5px 12px -5px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
}
.home-latest article {
	border-top: none;
}
.home-latest article .home-latest-content {
    margin: 0 3%;
    padding: 15px 20px 25px;
    position: relative;
    background: #fff;
}
.home-latest article h2.home-latest-title {
	margin-bottom:0;
    line-height: 100%;
    font-size: 32px;
    text-transform: uppercase;
}
/*
article span.latest-date,
aside .post-date,
*/
.home-latest article span.latest-date {
    font-size: 85%;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
article span.latest-date:before,
aside .post-date:before,
.home-latest article span.latest-date:before {
	content:'\f133';
	font-family:FontAwesome;
	position: relative;
    top: -1px;
	margin-right:8px;
	font-size:100%;
}
.home-latest article .home-latest-content p:last-of-type {
	margin-bottom:0;
}
.home-latest article .entry-footer {
    padding: 12px 2px;
    margin: 0 3%;
	font-size:85%;
    font-weight: 400;
	color:#999;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.home-latest article .entry-footer .edit-link {
	float:right;
}

/* home-featured */
.home-featured {
    background: none;
    border: none;
    margin-bottom: 0;
    position: static;
}
.home-featured aside {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #e6e7e8;
    background: #fff;
}
.home-featured .icon {
    position: absolute;
    top: 1px;
    left: 6%;
	width:20px;
	line-height:44px;
	text-align:center;
	color:#1dafec;
}
.home-featured .icon:hover {
	color:#58ceff;
}
.home-featured a,
.home-featured a:visited {
    color: var(--colour_a); }
.home-featured a:hover {
    color: var(--colour_a_hover); }
.home-featured a:active {
    color: var(--colour_a_active); }
.home-featured img.wp-post-image {
    margin-bottom: 1rem; }
.home-featured .widget-title {
    display: -webkit-flex; display: flex;
    -webkit-align-items: center; align-items: center;
    -webkit-justify-content: center; justify-content: center;
    min-height: 45px;
	margin-bottom:0;
	padding: 1.2rem 6% 1rem;
	line-height: 0.9em;
    font-size: 120%;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: rgb(var(--colour_accent));
	border-bottom: none;
	background:#fff;

    /* if showing icon
	display:table-cell;
	vertical-align:middle;
	height:45px;
	margin-bottom:0;
	padding: 2px 10px 0 0;
	padding-left:-webkit-calc(5% + 30px);
	padding-left:		 calc(5% + 30px);
	line-height:100%;
    font-size: 105%;
    font-weight: 600;
    text-transform: uppercase;
	border-bottom: none;
	background:#fff;
	*/
}
.home-featured .widget-title a {
	position:relative;
	top:2px;
	line-height:inherit;
}

/*.home-featured aside,*/
.home-featured ul {
	margin-bottom:0;
}
.home-featured aside ul {
	border-top: 1px solid #e6e7e8;
}
.home-featured aside li {
    position: relative;
    margin: 0 6%;
	padding: 5% 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.home-featured aside li:last-of-type,
.home-featured aside li:last-of-type .entry-footer {
	border-bottom:none;
}

.home-featured aside li .entry-content {
	margin-top: 1rem;
}
.home-featured aside li .post-title {
	display:block;
	margin-bottom:0;
	line-height:100%;
	font-size:115%; }
.home-featured aside li .post-title,
.home-featured aside li .post-title a,
h2.home-featured-title a, h2.home-latest-title a, h2.home-masonry-title a {
	color:#222 !important;
}
.home-featured aside li .post-date {
    margin-top: 2%;
    line-height: 1em;
    font-size: 13px;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
}
.home-featured aside li p {
	margin-bottom: 1em;
    font-size:95%;
}
.home-featured aside li .entry-footer {
    position:relative;
    margin: 0;
	padding: 0;
	font-size:85%;
    font-weight: 400;
	color:#999;
}
.home-featured aside li .entry-footer .edit-link {
	position: absolute;
    bottom: 0;
    right: 0;
    line-height: 1em; }
.home-featured aside li .entry-footer .edit-link i {
    position: static;
    top: auto;
    left: auto;
    margin: 0;
    padding: 0; }
.home-featured aside + .more_button {
    display: -webkit-flex; display: flex;
    -webkit-justify-content: center; justify-content: center; }
    .home-featured aside + .more_button a {
        text-align: center;
    background}

#home-blog .col-6-12 .widget {
	/*margin:0 0 15px !important;*/
}

#home-content-area-3 .grid-pad {
	padding-top:0;
}

.su-carousel-centered {

}
.su-carousel-centered {
	position:relative !important;
	z-index:0 !important;
	top:0;
	margin:0 auto !important;
	padding:5px 0;
	box-shadow:1px 0 0 #e6e7e8, inset 1px 0 5px -4px rgba(0,0,0,0.5), -1px 0 0 #e6e7e8, inset -1px 0 5px -4px rgba(0,0,0,0.5);
}
.su-carousel .su-carousel-slide img {
    padding: 3px;
    border: 1px solid #e6e7e8;
    background: #fff;
    -webkit-border-radius: 0px !important;
       -moz-border-radius: 0px !important;
    		border-radius: 0px !important;
}

.su-carousel .su-carousel-prev,
.su-carousel .su-carousel-next {
	position:absolute;
	z-index:10 !important;
    width: auto !important;
    height: 110px !important;
    margin-top: -55px !important;
    background: none !important;
    background-color: rgba(245,245,245,1) !important;
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
    	-ie-transition: all .2s;
    	 -o-transition: all .2s;
    		transition: all .2s;
}
.su-carousel .su-carousel-prev {
	right: -40px !important;
	margin-right: 0 !important;
    -webkit-border-radius: 50% 0 0 50% !important;
       -moz-border-radius: 50% 0 0 50% !important;
    		border-radius: 50% 0 0 50% !important;
}
.su-carousel .su-carousel-next {
	left: -40px !important;
	margin-left: 0 !important;
    -webkit-border-radius: 0 50% 50% 0 !important;
       -moz-border-radius: 0 50% 50% 0 !important;
    		border-radius: 0 50% 50% 0 !important;
}

.su-carousel:hover .su-carousel-prev,
.su-carousel:hover .su-carousel-next {
	filter: alpha(opacity=100) !important;
	opacity: 1.0 !important;
}
.su-carousel:hover .su-carousel-prev {
	margin-right:40px !important;
	box-shadow:-2px 0 10px -1px rgba(0,0,0,1);
}
.su-carousel:hover .su-carousel-next {
	margin-left:40px !important;
	box-shadow:2px 0 10px -1px rgba(0,0,0,1);
}
.su-carousel .su-carousel-prev:hover,
.su-carousel .su-carousel-next:hover {
	filter: alpha(opacity=100) !important;
	opacity: 1.00 !important;
}

.su-carousel .su-carousel-prev:before,
.su-carousel .su-carousel-next:before {
	font-family:FontAwesome;
	line-height:110px;
	font-size:120%;
	color:rgba(0,0,0,0.2);
}
.su-carousel .su-carousel-prev:before {
	content:'\f105';
	padding:0 6px 0 8px;
}
.su-carousel .su-carousel-next:before {
	content:'\f104';
	padding:0 8px 0 6px;
}

.su-carousel-centered:hover {
	box-shadow:none;
}

/*
.su-carousel .su-carousel-prev:after,
.su-carousel .su-carousel-next:after {
	content:'';
	position:absolute;
	z-index:0;
	top:-50%;
	margin-top:-30px;
	background:rgba(245,245,245,1);
	height:120px;
	width:40px;
	border-radius:50%;
}
.su-carousel .su-carousel-prev:after {
	right:-38px;
	box-shadow:-2px 0 10px -2px rgba(0,0,0,1);
}
.su-carousel .su-carousel-next:after {
	left:-38px;
	box-shadow:2px 0 10px -2px rgba(0,0,0,1);
}
*/

.su-carousel .su-carousel-prev:hover:before,
.su-carousel .su-carousel-next:hover:before {
	color:rgba(25,175,240,1);
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
    	-ie-transition: all 0.3s;
    	 -o-transition: all 0.3s;
    		transition: all 0.3s;
}
.su-carousel .su-carousel-slide {
	position:relative;
	z-index:-2;
}
.su-carousel .su-carousel-slide a {
	padding:0;
	overflow:hidden;
}
.su-carousel .su-carousel-slide-title {
    position: absolute;
	top:-webkit-calc(100% - 4px);
	top:		calc(100% - 4px);
    left: 9px;
    right: 9px;
    bottom: 4px;
	height:0 !important;
    padding: 15% 6% !important;
    color: #fff;
    line-height: 120% !important;
    font-size: 85% !important;
	text-align:center;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
	filter: alpha(opacity=0) !important;
	opacity:0 !important;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		box-sizing: border-box;
    -webkit-transition: all 0.35s !important;
       -moz-transition: all 0.35s !important;
    	-ie-transition: all 0.35s !important;
    	 -o-transition: all 0.35s !important;
    		transition: all 0.35s !important;
}
.su-carousel .su-carousel-slide:hover .su-carousel-slide-title {
	top:4px;
	height: inherit !important;
	filter: alpha(opacity=100) !important;
	opacity:1 !important;
    -webkit-transition: all 0.75s !important;
       -moz-transition: all 0.75s !important;
    	-ie-transition: all 0.75s !important;
    	 -o-transition: all 0.75s !important;
    		transition: all 0.75s !important;
}

@media (max-width: 400px) {
	#home-content-area-1 .widget .su-slider-slide-title {
		display:none;		
	}
}


/* MASTER HEADER
------------------------------------------------------------------------ */
.site-header {
	background: rgba(25,175,240,1);
}

body.sticky .site-header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:999999999;
}
body.sticky .site-content {
	padding-top:70px;
}

.site-branding {
    float: left;
    max-width: 40%;
    padding: 0;
    color: #fff;
}
.site-branding a {
    display:block;
    color: #fff !important;
}

.site-branding img.avatar {
	display:none;
	float:left;
	width:auto;
	height:50px;
	margin-right:10px;
	border-radius:100%;
	border:2px solid rgba(255,255,255,1);
}

.site-title {
	position:relative;
	top:0px;
    margin-bottom: 0;
    padding-top: 10px;
	line-height: 35px;
    font-size: 40px;
	font-weight:400;
	letter-spacing:2px;
	-webkit-transition: 0.3s ease;
	   -moz-transition: 0.3s ease;
		 -o-transition: 0.3s ease;
			transition: 0.3s ease;
}
.site-title span {
	font-weight:600;
	text-transform:uppercase;
}
.site-title p,
.site-title div {
	margin:0 0 10px 2px;
	line-height:15px;
	font-size:15px;
	font-weight:400;
	letter-spacing:0px;
	color:rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
	body.sticky .site-content {
		padding-top:50px;
	}

	.site-branding {
		max-width:75%;
	}

	.site-title {
		padding-top: 0;
    	line-height: 50px;
		font-size:27px;
		letter-spacing:1px;
	}
	.site-title p,
	.site-title div {
		display:none;
	}
}


/* MENU SOCIAL ICONS
------------------------------------------------------------------------ */
.header-social-container {
	float: right;
    padding: 0 20px 0 10px;
}
.header-social-container .fa,
.header-social-container li .fa {
    margin:0;
	padding:0 7px;
	line-height:70px;
    font-size: 18px;
    color: #fff;
}
.header-social-container .fa.fa-mobile {
	position:relative;
	top:1px;
	font-size:22px;
}

.header-social-container .fa:hover,
.header-social-container li .fa:hover {
	color:rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
	.header-social-container {
		padding-right:80px;
	}
	.header-social-container .fa,
	.header-social-container li .fa {
		padding:0 10px;
		font-size: 22px;
	}
	.header-social-container .fa.fa-mobile {
		top:2px;
		font-size: 29px;
	}
}
@media (max-width: 768px) {
	.header-social-container {
		padding-right:70px;
	}
}
@media (max-width: 767px) {
	.header-social-container {
		padding-right:70px;
	}
}
@media (max-width: 600px) {
	.header-social-container {
		display:none;
	}
}


/* MAIN MENU
------------------------------------------------------------------------ */
.navigation-container {
	float:right;
	padding-left:5px;
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
		 -o-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}

.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul.sub-menu li.back {
	display:none;
}

.main-navigation ul li {
	float: left;
	position: relative;
	background: rgb(25,175,240);
}
.main-navigation ul li:hover {
	background: rgb(20,170,235);
	box-shadow:inset 1px 0 0 rgba(0,0,0,0.05), inset -1px 0 0 rgba(255,255,255,0.15);
}
.main-navigation ul.menu > li:after {
	content:'';
	font-family:FontAwesome;
	position:absolute;
	bottom:10px;
	left:50%;
	width:8px;
	height:8px;
	margin-left:-5px;
	border-radius:100%;
	background:rgba(255,255,255,0.5);
	-webkit-transform: scale(0.2);
			transform: scale(0.2);
	-webkit-transition: 0.25s ease;
	   -moz-transition: 0.25s ease;
		 -o-transition: 0.25s ease;
			transition: 0.25s ease;
}
.main-navigation ul.menu > li:hover:after {
	-webkit-animation: menu-hover-anim 1.0s infinite ease-in-out;
			animation: menu-hover-anim 1.0s infinite ease-in-out;
}
@-webkit-keyframes menu-hover-anim {
	0%,
	100% { -webkit-transform: scale(0.2); background-color: rgba(255,255,255,1.0); }
	50%  { -webkit-transform: scale(1.0); background-color: rgba(255,255,255,0.2); }
}
@keyframes menu-hover-anim {
	0%,
	100% { transform: scale(0.2); background-color: rgba(255,255,255,1.0); }
	50%  { transform: scale(1.0); background-color: rgba(255,255,255,0.2); }
}


.main-navigation ul li a {
	position:relative;
	top:1px;
	display: block;
	padding: 0 10px;
	line-height:70px;
	font-size: 15px;
	font-weight:400;
	letter-spacing:0px;
	text-transform: none /*uppercase*/;
	text-decoration: none;
	color: rgba(255,255,255,0.8) !important;
}
.main-navigation ul li:hover > a {
	color: rgba(255,255,255,1) !important;
}

.main-navigation ul ul {
	position: absolute;
	top: 70px;
	left: -999em;
	z-index: 99999;
	float: left;
	border: none;
	border-radius: 0;
	background: rgba(25,175,240,1);
	box-shadow: none /*0 6px 5px -2px rgba(0,0,0,0.4)*/;
}
.main-navigation ul ul li a {
	width: 200px;
	padding: 12px 15px 12px;
	line-height:125%;
	font-size:14px;
	text-align: left;
	color: rgba(255,255,255,0.8) !important;
	border-bottom: none /*1px solid rgba(255,255,255,0.1)*/;
	-webkit-transition: 0.15s ease-in-out;
	   -moz-transition: 0.15s ease-in-out;
		 -o-transition: 0.15s ease-in-out;
			transition: 0.15s ease-in-out;
}
.main-navigation ul ul li a:first-of-type {
	border-top: none /*1px solid rgba(255,255,255,0.1)*/;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
	padding:0;
	background: rgba(25,175,240,1);
}
.main-navigation ul ul ul a {
	font-size:14px;
}

.main-navigation ul ul li {
	background: rgb(20,170,235);
}
.main-navigation ul ul li:hover {
	background: rgb(15,165,230);
	box-shadow:inset 0 1px 0 rgba(0,0,0,0.05), inset 0 -1px 0 rgba(255,255,255,0.15);
}
.main-navigation ul ul li:active {
	background: rgb(10,160,225);
}
.main-navigation ul ul ul li {
	background: rgb(15,165,230);
}
.main-navigation ul ul ul li:hover {
	background: rgb(10,160,225);
}
.main-navigation ul ul.sub-menu ul.sub-menu > li:active {
	background: rgb(5,155,220);
}

.main-navigation ul ul a:hover {
	background: rgba(255,255,255,0) !important;
	-webkit-transition: 0.15s ease-in-out;
	   -moz-transition: 0.15s ease-in-out;
		 -o-transition: 0.15s ease-in-out;
			transition: 0.15s ease-in-out;
}

.main-navigation ul ul:hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: 0;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

.main-navigation ul ul .menu-item-has-children a:after {
	content:'\f105';
	font-family:FontAwesome;
	position:absolute;
	top:50%;
	right:15px;
	margin-top:-10px;
	font-size:14px;
	color:rgba(255,255,255,0.4);
	-webkit-transition: 0.15s ease-in-out;
	   -moz-transition: 0.15s ease-in-out;
		 -o-transition: 0.15s ease-in-out;
			transition: 0.15s ease-in-out;
}
.main-navigation ul ul .menu-item-has-children:hover > a:after {
	right:10px;
	color:rgba(255,255,255,1);
}
.main-navigation ul ul .menu-item-has-children ul a:after {
	content:'';
}

@media handheld, only screen and (max-width: 1024px) {
	.site-branding {
		max-width: none;
	}
	.navigation-container {
		position:absolute;
		right:20px;
		padding-right:0 !important;
		float: none !important;
		padding-left: 0 !important;
	}
	.main-navigation ul {
		display: none;
	}
	.toggle-menu {
		display: block;
	}
}
@media handheld, only screen and (max-width: 959px) {
	.navigation-container {
		float: right;
		padding-right: 20px;
		padding-left: 0;
	}
}
@media (max-width: 768px) {
	.navigation-container {
		right:10px;
	}
	body.sub-open .navigation-container {
		right:0px;
		-webkit-transition: 0.0s ease 0.0s;
		   -moz-transition: 0.0s ease 0.0s;
			 -o-transition: 0.0s ease 0.0s;
				transition: 0.0s ease 0.0s;
	}
	body.sub-open-again .navigation-container {
		right:-40px;
		-webkit-transition: 0.3s ease 0.3s;
		   -moz-transition: 0.3s ease 0.3s;
			 -o-transition: 0.3s ease 0.3s;
				transition: 0.3s ease 0.3s;
	}
}
@media (max-width: 400px) {

}

/* SIDE MENU
------------------------------------------------------------------------ */
button.toggle-menu {
	margin:0;
	padding:0;
	outline:none;
}

button.toggle-menu i {
	padding: 0 5px;
    line-height: 70px;
    font-size: 18px;
}
body.push-body-toleft button.toggle-menu i:before {
}



/* MENU BUTON */
.c-hamburger {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 70px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  margin-top:-1px; /* Half the height of the span */
  background: white;
}
.c-hamburger span,
.c-hamburger span::before,
.c-hamburger span::after {
  height: 2px;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  background-color: #fff;
  content: "";
}
.c-hamburger span::before {
  top: -8px;
}
.c-hamburger span::after {
  bottom: -8px;
}

/* ANIMATION */
.c-hamburger--htx {
  /*background-color: #ff3264;*/
}
.c-hamburger--htx span {
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.menu-active {
  /*background-color: #cb0032;*/
}
.c-hamburger--htx.menu-active span {
  background: none;
}
.c-hamburger--htx.menu-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger--htx.menu-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.c-hamburger--htx.menu-active span::before,
.c-hamburger--htx.menu-active span::after {
  transition-delay: 0s, 0.3s;
}




body .site-header {
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
		    transition: all 0.3s ease;
}
body.push-body-toleft .site-header {
    left: -240px !important;
	right: 240px !important;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
		    transition: all 0.3s ease;
}

body.push-body-toleft.sub-open {
	left:-280px !important;
}
body.push-body-toleft.sub-open .site-header {
    left: -280px !important;
	right: 280px !important;
}
body.push-body-toleft.sub-open .cbp-spmenu-right.menu-open.sub-open {
	width:280px;
}

body.push-body-toleft.sub-open.sub-open-again {
	left:-320px !important;
}
body.push-body-toleft.sub-open.sub-open-again .site-header {
    left: -320px !important;
	right: 320px !important;
}
body.push-body-toleft.sub-open.sub-open-again .cbp-spmenu-right.menu-open.sub-open {
	width:320px;
}

.cbp-spmenu {
	background:rgba(25,175,240,1) !important;
	overflow:none;
}
.cbp-spmenu header {
	display:table-cell;
	vertical-align:middle;
	width:240px;
	height:70px;
	margin: 0;
    padding: 0;
	text-align:center;
	background:rgba(10,160,225,1); /*#258ecd;*/
	pointer-events:none;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
		    transition: all 0.3s ease;
}
.cbp-spmenu header h3 {
    font-size: 175%;
    font-weight: 400;
}
.cbp-spmenu.sub-open header {
	width:40px;
	-webkit-transition: all 0.3s ease 0.4s;
	   -moz-transition: all 0.3s ease 0.4s;
	     -o-transition: all 0.3s ease 0.4s;
		    transition: all 0.3s ease 0.4s;
}

.cbp-spmenu header img {
	height:40px;
	width:auto;
	-webkit-transition: all 0.5s ease 0.15s;
	   -moz-transition: all 0.5s ease 0.15s;
	     -o-transition: all 0.5s ease 0.15s;
		    transition: all 0.5s ease 0.15s;
}
.cbp-spmenu.sub-open header img {
	height:26px;
	-webkit-transition: all 0.0s ease 0.4s;
	   -moz-transition: all 0.0s ease 0.4s;
	     -o-transition: all 0.0s ease 0.4s;
		    transition: all 0.0s ease 0.4s;
}

.cbp-spmenu footer {
	position:absolute;
	/*z-index:1; not needed if .appendTo bottom of ul.menu */
	bottom:0;
	left:0;
	right:0;	
	margin: 30px 0 0;
    font-size: 70%;
    text-transform: uppercase;
    text-align: center;
	letter-spacing:1px;

	border-width:1px;
	border-style:solid;
	border-left-color:rgba(0,0,0,0.0);
	border-top-color:rgba(0,0,0,0.075);
	border-right-color:rgba(255,255,255,0.0);
	border-bottom-color:rgba(255,255,255,0.1);

	-webkit-transition: all 0.3s ease 0.3s;
	   -moz-transition: all 0.3s ease 0.3s;
	     -o-transition: all 0.3s ease 0.3s;
		    transition: all 0.3s ease 0.3s;
}
body.sub-open .cbp-spmenu footer {
	bottom:-85px;
	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
	     -o-transition: all 0.5s ease 0s;
		    transition: all 0.5s ease 0s;
}
.cbp-spmenu footer a {
	padding:0 !important;
	line-height:40px;
	font-weight:500;
	box-shadow:inset 1px 0 0 rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1), inset -1px 0 0 rgba(0,0,0,0.075), inset 0 -1px 0 rgba(0,0,0,0.075);
}
.cbp-spmenu footer a:hover {
	box-shadow:none;
}

.menu-main-menu-container {
	/*position:relative;*/
	height:100%;
}

.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000;
    overflow: hidden !important;
}

.cbp-spmenu-vertical li {
    border-bottom: 1px solid rgba(10,160,225,1);
}
.cbp-spmenu-vertical a {
    padding: 12px 15px 11px !important;
	border-bottom:none !important;
}

.cbp-spmenu ul ul,
.cbp-spmenu ul ul ul {
	/*display:none;*/
}

.cbp-spmenu ul {
	position:absolute;
	z-index:1;
	left:100%;
	bottom:0;
	width:100%;
	/*height:100%;*/
	background:rgba(25,175,240,1);
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
		    transition: all 0.3s ease;
}
.cbp-spmenu ul.menu {
	top: 70px;
	left:0;
	box-shadow:none;
}
.cbp-spmenu ul ul.sub-menu {
	top:-70px;
	width:240px;
	background:rgba(25,175,240,1);
}
.cbp-spmenu ul ul.sub-menu ul.sub-menu {
	top:0;
	right:0;
	background:rgba(25,175,240,1);
}
.cbp-spmenu ul ul.sub-menu.active,
.cbp-spmenu ul ul.sub-menu ul.sub-menu.active {
	box-shadow:0 -1px 5px 0 rgba(0,0,0,0.5);
}

/* Sub Menu 1 */
.cbp-spmenu ul.menu.sub-open {
	background:rgba(10,160,225,1);
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
		    transition: all 0.3s ease;
}
.cbp-spmenu ul.menu.sub-open > li a {
	opacity:0;
	-webkit-transition: all 0.0s ease;
	   -moz-transition: all 0.0s ease;
	     -o-transition: all 0.0s ease;
		    transition: all 0.0s ease;
}
.cbp-spmenu ul.menu.sub-open > li a {
	left:40px;
	-webkit-transition: all 0.5s ease 0.15s;
	   -moz-transition: all 0.5s ease 0.15s;
	     -o-transition: all 0.5s ease 0.15s;
		    transition: all 0.5s ease 0.15s;
}
.cbp-spmenu ul.menu.sub-open ul.sub-menu.active > li a {
	left:0;
	opacity:1;
}

/* Sub Menu 1 - PREVIOUS */
.cbp-spmenu ul ul.sub-open {
	width:280px;
	background:rgba(10,160,225,1);
}
.cbp-spmenu ul ul.sub-menu.active.sub-open a {
	opacity:0 !important;
	-webkit-transition: all 0.5s ease 0.15s;
	   -moz-transition: all 0.5s ease 0.15s;
	     -o-transition: all 0.5s ease 0.15s;
		    transition: all 0.5s ease 0.15s;
}
.cbp-spmenu ul ul.sub-menu.active.sub-open a {
	left:40px !important;
	-webkit-transition: all 0.5s ease 0.15s;
	   -moz-transition: all 0.5s ease 0.15s;
	     -o-transition: all 0.5s ease 0.15s;
		    transition: all 0.5s ease 0.15s;
}

/* Sub Menu 2 - CURRENT */
.cbp-spmenu ul ul.sub-menu.active.sub-open ul.sub-menu.active li a {
	left:0 !important;
	opacity:1 !important;
}


.cbp-spmenu ul.active {
	left:40px;
}

.cbp-spmenu li a {
	position:relative;
	left:0;
	font-size:100% !important;
	color:rgba(255,255,255,1) !important;
	font-weight:400;
	-webkit-tap-highlight-color: rgba(0,0,0,0.05);
	-webkit-transition: all 0.15s ease 0.15s;
	   -moz-transition: all 0.15s ease 0.15s;
	     -o-transition: all 0.15s ease 0.15s;
		    transition: all 0.15s ease 0.15s;
}
.cbp-spmenu li.menu-item-has-children > a:after {
	content:'\f105';
	font-family:FontAwesome;
	position:absolute;
	top:50%;
	right:0;
	margin-top:-12px;
	padding:0 15px;
	line-height:24px;
	font-size:16px;
	font-weight:600;
	color:rgba(255,255,255,1);
}

.cbp-spmenu a:hover {
    background:rgba(20,170,230,1) !important;
}
.cbp-spmenu li a:active {
	background:rgba(15,165,225,1) !important;
}
.cbp-spmenu li a:focus {
	background:rgba(15,165,225,1) !important;
}

.cbp-spmenu a:hover,
.cbp-spmenu li a:active,
.cbp-spmenu li a:focus {
	-webkit-transition: all 0.1s ease 0s;
	   -moz-transition: all 0.1s ease 0s;
	     -o-transition: all 0.1s ease 0s;
		    transition: all 0.1s ease 0s;
}


/* Sub Menu - Header */
.cbp-spmenu ul.sub-menu li.header {
	position:relative;
	left:0;
	display:table-cell;
	width:240px;
	height:70px;
	padding:2px 15px 0;
	vertical-align:middle;
	line-height:100%;
	font-size:120%;
	font-weight:500;
	text-transform:uppercase;
	color:rgba(255,255,255,1);
	-webkit-transition: all 0.4s ease;
	   -moz-transition: all 0.4s ease;
	     -o-transition: all 0.4s ease;
		    transition: all 0.4s ease;
}
.cbp-spmenu ul.sub-menu div {
	position:absolute;
	top:0;
	left:280px;
	width:100%;
	padding-top:2px;
	padding-left:25px;
	line-height:38px;
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:95%;
	font-weight:300;
	color:rgba(255,255,255,1);
	transform: rotate(90deg);
	transform-origin: left top 0;
	-webkit-transition: all 0.15s ease 0s;
	   -moz-transition: all 0.15s ease 0s;
	     -o-transition: all 0.15s ease 0s;
		    transition: all 0.15s ease 0s;
}
.cbp-spmenu ul.sub-menu.active.sub-open > div {
	left:40px;
	line-height:38px;
	color:rgba(255,255,255,1);
	-webkit-transition: all 0.3s ease 0.15s;
	   -moz-transition: all 0.3s ease 0.15s;
	     -o-transition: all 0.3s ease 0.15s;
		    transition: all 0.3s ease 0.15s;
}

/* Sub Menu - Header */
.cbp-spmenu ul.menu ul.sub-menu.active.sub-open > li.header {
	opacity:0;
	-webkit-transition: all 0.0s ease;
	   -moz-transition: all 0.0s ease;
	     -o-transition: all 0.0s ease;
		    transition: all 0.0s ease;
}
.cbp-spmenu ul.menu ul.sub-menu.active.sub-open > li.header {
	left:40px;
	-webkit-transition: all 0.5s ease 0.15s;
	   -moz-transition: all 0.5s ease 0.15s;
	     -o-transition: all 0.5s ease 0.15s;
		    transition: all 0.5s ease 0.15s;
}

/* Sub Menu - Back */
.cbp-spmenu ul.sub-menu li.back {
	background:rgba(15,165,230,1);
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
		    transition: all 0.3s ease 0s;
}
.cbp-spmenu ul.sub-menu.active.sub-open > li.back {
	background:rgba(10,160,225,1);
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
		    transition: all 0.3s ease 0s;
}
.cbp-spmenu ul.sub-menu li.back a {
	padding-top:5px !important;
	padding-bottom:5px !important;
	font-size:80% !important;
	text-transform:uppercase;
}
.cbp-spmenu ul.sub-menu li.back a:before {
	content:'\f104';
	font-family:FontAwesome;
	margin-right:10px;
	color:rgba(10,140,200,1);
}
.cbp-spmenu ul.sub-menu li.back a:hover {
    background:rgba(15,165,225,1) !important;
}
.cbp-spmenu ul.sub-menu li.back a:active {
	background:rgba(10,160,220,1) !important;
}
.cbp-spmenu ul.sub-menu li.back a:focus {
	background:rgba(10,160,220,1) !important;
}
.cbp-spmenu ul.sub-menu li.back a:hover,
.cbp-spmenu ul.sub-menu li.back a:active,
.cbp-spmenu ul.sub-menu li.back a:focus {
	-webkit-transition: all 0.1s ease 0s;
	   -moz-transition: all 0.1s ease 0s;
	     -o-transition: all 0.1s ease 0s;
		    transition: all 0.1s ease 0s;
}


/*
.cbp-spmenu .menu:hover > a {
	color: rgba(255,255,255,1);
	background:red;
}

.cbp-spmenu .menu-item-has-children > a {
}
.cbp-spmenu .menu-item-has-children:active > a {
	color:rgba(255,255,255,1);
}
.cbp-spmenu .menu-item-has-children > a:after {
	position:absolute;
	content:'\f107';
	font-family:FontAwesome;
	right:15px;
	color:rgba(255,255,255,0.4);
}
.cbp-spmenu .menu-item-has-children:active > a:after {
	color:rgba(255,255,255,1);
}

.cbp-spmenu ul ul li a {
	padding-left:30px !important;
	font-size:90%;
	background: rgb(20,170,235) !important;
}
.cbp-spmenu ul ul li a:before {
	content:'\f105';
	font-family:FontAwesome;
	position:absolute;
	top:50%;
	left:15px;
	margin-top:-10px;
	font-size:14px;
	color:rgba(255,255,255,0.4);
	-webkit-transition: 0.15s ease-in-out;
	   -moz-transition: 0.15s ease-in-out;
		 -o-transition: 0.15s ease-in-out;
			transition: 0.15s ease-in-out;
}

.cbp-spmenu ul ul ul li a {
	padding-left:45px !important;
	font-size:100%;
	background: rgb(15,165,230) !important;
}
.cbp-spmenu ul ul ul li a:before {
	left:30px;
}

.cbp-spmenu .sub-menu li:hover > a {
	background:rgb(15,165,230);
}
.cbp-spmenu .sub-menu .sub-menu li:active > a {
	background:rgb(10,160,225);
}
.cbp-spmenu .sub-menu li:hover > a:before {
	right:10px;
	color:rgba(255,255,255,1);
}

.cbp-spmenu a {
    display: block;
    color: rgba(255,255,255,0.8) !important;
    font-size: 100% !important;
    font-weight: 300;
}
.cbp-spmenu a:active {
    color: rgba(255,255,255,1) !important;
	background:rgba(0,0,0,0.02);
}
.cbp-spmenu-vertical li {
	border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}
.cbp-spmenu-vertical a {
    padding: 10px 15px !important;
	border-bottom: none !important;
}
.cbp-spmenu-vertical a:active {
	background: rgb(20,170,235) !important;
	box-shadow:inset 1px 0 0 rgba(0,0,0,0.05), inset -1px 0 0 rgba(255,255,255,0.15) !important;
}
*/

@media (max-width: 1024px) {
	button.toggle-menu i {
		padding: 0 10px;
		font-size: 22px;
	}
	.c-hamburger {
		display:block;
	}
}
@media (max-width: 767px) {
	.c-hamburger {
		width:40px;
		height: 50px;
	}
	.c-hamburger span:before {
		top:-6px;
	}
	.c-hamburger span:after {
		bottom:-6px;
	}
}
@media (max-width: 400px) {
	button.toggle-menu i {
		padding: 0 5px;
		line-height: 50px;
		font-size: 22px;
	}
	body.sub-open-again button.toggle-menu i {
		padding: 0 10px;
		line-height: 70px;
		font-size: 22px;
		-webkit-transition: 0.0s ease 0.3s;
		   -moz-transition: 0.0s ease 0.3s;
			 -o-transition: 0.0s ease 0.3s;
				transition: 0.0s ease 0.3s;
	}

	.c-hamburger {
		width:40px;
		height: 50px;
	}
	.c-hamburger span:before {
		top:-6px;
	}
	.c-hamburger span:after {
		bottom:-6px;
	}

	body.sub-open-again .c-hamburger {
		height: 70px;
	}

	body.sub-open-again .cbp-spmenu.sub-open header {
		width:120px;
	}
}
@media screen and (max-height: 26.375em) {
	.push-body-toleft {
		left: -240px !important;
	}
	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 240px !important;
	}
	.cbp-spmenu-right {
		right: -240px !important;
	}
	.cbp-spmenu-right.menu-open {
		right: 0px !important;
	}
	body.sub-open-again .navigation-container {
		right:0 !important;
	}
	.cbp-spmenu header {
		height:50px;
	}
	.cbp-spmenu ul.menu {
    	top: 50px;
	}
	.cbp-spmenu ul ul.sub-menu {
		top: -50px;
	}
	.cbp-spmenu ul.sub-menu li.header {
		height:50px;
	}
	body.push-body-toleft.sub-open .cbp-spmenu-right.menu-open.sub-open {
		width:280px !important;
	}
	body.push-body-toleft.sub-open.sub-open-again .cbp-spmenu-right.menu-open.sub-open {
		width:320px !important;
	}
	.cbp-spmenu-vertical a {
		padding:8px 15px 7px !important;
	}
	.cbp-spmenu footer {
		display:none !important;
	}
}


/* BREADCRUMBS ( Currently output using Yoast SEO Plugin )
------------------------------------------------------------------------ */
#breadcrumbs {
	margin-bottom:20px;
	line-height:140%;
	font-size:90%;
	font-weight:400;
}
#breadcrumbs .breadcrumb_last {
	font-weight:500;
}
@media handheld, only screen and (max-width: 400px) {
	#breadcrumbs {
		font-size:75%;
	}
}

/* LAYOUT
------------------------------------------------------------------------ */
[class*='col-'] {
    float: left;
    padding-right: 20px;
}

#secondary.widget-area {
	position:relative;
}

#secondary.widget-area i.button {
	display:none;
	position:absolute;
	top:0;
	left:-39px;
	background:rgba(25,175,240,1);
	border:1px solid #e6e7e8;
	border-right:none;
}
#secondary.widget-area i.button.fa {
	width:40px;
	/*height:40px;*/
	line-height:40px;
	font-size:20px;
	text-align:center;
	color:rgba(255,255,255,1);
	cursor:pointer;
}

#secondary.widget-area i.button.bottom {
	position:relative;
	left:0;
	top:-5px;
	float:right;
	width:auto;
	padding:5px 0;
	line-height:100%;
	font-size:80%;
	font-weight:500;
	font-style:normal;
	text-transform:uppercase;
	color:rgba(25,175,240,1);
	border:none;
	background:none;
	cursor:pointer;
}
#secondary.widget-area i.button.bottom:hover,
#secondary.widget-area i.button.bottom:active {
	color:rgba(25,175,240,0.75);
}
#secondary.widget-area i.button.bottom:after {
	content:'\f105';
	font-family:FontAwesome;
	margin-left:5px;
}

@media handheld, only screen and (max-width: 768px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 20px;
		padding-right: 10px;
	}
	[class*='col-'] {
		width: auto;
		float: none;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 0px;
		padding-right: 10px;
	}

	/*body.single-post*/ .col-3-12 {
		position:absolute;
		top:80px;
		right:-280px;
		z-index:99999;
		width:280px;
		padding-right:20px;
		-webkit-transition: 0.15s ease;
		   -moz-transition: 0.15s ease;
			 -o-transition: 0.15s ease;
				transition: 0.15s ease;
	}
	/*body.single-post*/ .site-content {
		-webkit-transition: 0.15s ease;
		   -moz-transition: 0.15s ease;
			 -o-transition: 0.15s ease;
				transition: 0.15s ease;
	}
	/*body.single-post*/.sidebar-open .site-content {
		margin-left:-280px;
		margin-right:280px;
		-webkit-transition: 0.3s ease 0.15s;
		   -moz-transition: 0.3s ease 0.15s;
			 -o-transition: 0.3s ease 0.15s;
				transition: 0.3s ease 0.15s;
	}
	/*body.single-post*/.sidebar-open .col-3-12 {
		right:0;
		-webkit-transition: 0.3s ease;
		   -moz-transition: 0.3s ease;
			 -o-transition: 0.3s ease;
				transition: 0.3s ease;
	}
	
	#secondary.widget-area i.button {
		display:block;
	}
	#secondary.widget-area i.button.fa-angle-left:before {
		-webkit-transition: 0.75s ease;
		   -moz-transition: 0.75s ease;
			 -o-transition: 0.75s ease;
				transition: 0.75s ease;
	}
	body.sidebar-open #secondary.widget-area i.button.fa-angle-left:before {
		display: inline-block;
		-webkit-transform: rotate(540deg);
				transform: rotate(540deg);
	}
}

.site {
	position: relative;
	background:rgba(245,245,245,1);
}

.page-title,
.page-entry-title {
    font-size: 200%;
    line-height: 100%;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 20px;
    text-transform: uppercase;
	color:rgba(25,175,240,1);
}

.page-title span.archive-prefix {
	font-size:70%;
	font-weight:300;
	color:#999;
}
@media handheld, only screen and (max-width: 400px) {
	.page-title,
	.page-entry-title {
		font-size:140%;
	}
	.page-title span.archive-prefix {
		font-size:60%;
	}
}

.cat-links,
.tags-links,
.comments-link {
	position: relative;
    padding-right: 20px;
    display: inline-block;
}
.cat-links i,
.tags-links i,
.comments-link i {
	padding-right:4px;
}

.page-entry-content {
	
}

.page-entry-content img.avatar {
	width:auto;
	height:150px;
	margin-bottom:10px;
	border-radius:100%;
	border:4px solid rgba(25,175,240,1);
}

.page-entry-content h2 {}
.page-entry-content h2.centered {
	text-align:center;
}
.page-entry-content h2 div {
	font-size:60%;
	font-weight:300;
}

.page-entry-content .divider-horz-rule1 {
	display:block;
	margin:30px 20% 40px;
	height:1px;
	background:rgba(0,0,0,0.075);
}

.hentry {
	margin:0 0 20px;
}
.entry-footer i {
	margin-right:4px;
	width:15px;
	text-align:center;
}

/* HOME MASONRY */
#masonry-container {
    width:-webkit-calc(100% + 20px);
    width:		  calc(100% + 20px);
    margin-left: -10px;
}
.masonry-post {
    float: left;
    width:-webkit-calc(50% - 20px);
    width: 		  calc(50% - 20px);
    margin: 0 10px 20px;
    padding-top: 0;
    background: #fff;
    border: 1px solid #e6e7e8;
    overflow: hidden;
}
.masonry-post .hentry {
    margin-bottom: 0;
}
.home-masonry .entry-header .no-image-spacer {
	height:2px; /* 0 doesnt work */
}
.single-post .entry-meta,
.home-masonry .entry-meta {
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
    padding: 10px 5% 9px;
	font-size:85%;
	font-weight:400;
	color:#999;
    text-transform: none;
    border-bottom: none;
    background: #fff;
}
.single-post .entry-meta span.posted-on,
.home-masonry .entry-meta span.posted-on {/*
	position:relative;
	top:1px;
*/}
.single-post .entry-meta span.posted-on a,
.home-masonry .entry-meta span.posted-on a {
	text-transform:uppercase;
}

.single-post header img {
    min-width: 100%;
}

.single-post .entry-meta.no-image,
.home-masonry .entry-meta.no-image {
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.archive-entry-content {
    margin: 1em 4% 0;
    padding: 12px 15px 20px;
	font-size:95%;
    background: #fff;
    position: relative;
}
.archive-entry-content.no-image {
    /*margin-top:42px; this + .no-image-spacer >= height of header */
}
.archive-entry-content a h1 {
    color:#222;
}
.archive-entry-content .entry-title {
	margin-bottom:0;
    padding-top: 0;
    line-height: 100%;
    font-size: 25px;
    text-transform: uppercase;
}
.archive-entry-content p:last-of-type {
	margin-bottom:0;
}
.masonry-post article .entry-footer {
    position: relative;
    padding: 12px 2px;
    margin: 0 4%;
	font-size:85%;
    font-weight: 400;
	color:#999;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.masonry-post article .entry-footer .cat-links,
.masonry-post article .entry-footer .tags-links,
.masonry-post article .entry-footer .comments-link {
	display:block;
	padding-right:0;
	line-height:120%;
}
.masonry-post article .entry-footer span + span:not(.edit-link) {
    margin-top: 8px; }
.masonry-post article .entry-footer .comments-link {
	margin-bottom:0;
}
.masonry-post article .entry-footer .edit-link {
	position: absolute;
    bottom: 104%;
    right: -4px;
}

@media handheld, only screen and (max-width: 400px) {
	.masonry-post {
		float:none;
		width:calc(100% - 20px);
	}
}


/* SINGLE - Blog Post
------------------------------------------------------------------------ */
span.single-post-category span {
	padding-right:5px;
	font-size:80%;
	color:#999;
	text-transform:uppercase;	
}
span.single-post-category ul {
	display: inline-block;
	list-style: none;
	margin: 0 0 1em; 
}
span.single-post-category ul li { 
	font-family: 'Rajdhani', Helvetica Neue, Helvetica, arial, sans-serif;
	font-weight: 300;
	display: inline-block;
	font-size: 30px;
	margin-right: 20px;
}

.single article .entry-header.no-image {
	margin-top:10px !important;
}

.single-post .entry-meta,
.page-search .entry-meta,
.home-masonry .entry-meta {
    padding: 10px 5% 9px;
    background: #fff;
    border-bottom: 1px solid #e6e7e8;
    text-transform: uppercase;
    position: relative /*absolute*/;
    width: 100%;
    z-index: 9;
    top: 0;
}

.single-blog-post article {
    background: #fff;
    border: 1px solid #e6e7e8;
    position: relative;
    padding-top: 0;
}

.single-blog-post .entry-meta {
    position:static;
	padding: 11px 2% 9px;
	font-size:95%;
	color:#999;
    border-bottom: 1px solid #e6e7e8;
    text-transform: none;
}
.single-blog-post .entry-meta span.posted-on a,
.single-blog-post .entry-meta span.byline a {
    text-transform: uppercase;
}
.single-blog-post .entry-meta img {
	position:relative;
	z-index:0;
}
.single-blog-post .entry-header {
	position:relative;
	z-index:1;
	margin:-40px 4% 40px;
    padding: 20px 4% 0;
	background:#fff;
}
.single-blog-post .entry-header .entry-title {
	margin: 0;
    padding: 0;
    line-height: 110%;
    font-size: 225%;
    text-transform: uppercase;
}
.single-blog-post .entry-header .ajr-meta {
    padding: 5px 0 0;
	font-size:90%;
	color:#999;
}

.single article .entry-content {
	margin-bottom:1.5em;
}

.author-information {
    display: inline-block;
	margin-right:-4px;
    width: 25%;
    padding: 0 0 0 4%;
    vertical-align: top;
    text-align: center;
}
.author-information img {
	margin-bottom:10px;
	border:2px solid rgba(25,175,240,1);
}
.author-information h5 {
	margin-bottom:0;
	line-height:110%;
	font-size:100%;
}
.author-information p {
	margin-bottom:20px;
	font-size:75%;
	text-transform:uppercase;
	color:#999;
}
.author-information .edit-link {
	display:block;
	margin-bottom:20px;
	font-size:95%;
}
.author-information .edit-link .edit-text {
	padding-right:5px;
	text-transform:uppercase;
}
.author-information .edit-link i {
	font-size:85%;
}
.author-information .comments-link {
	display:block;
	margin-bottom:25px;
	padding:0;
	font-size:95%;
	color:#999;
}
.author-information .like-dislike-wrapper {
}

.content-information {
    display: inline-block;
	margin-right:-4px;
    width: 75%;
    padding: 0 8% 0 4%;
}

.single article .shareaholic-canvas {
	padding:0 4% 1%;
}

.single-post .entry-footer {
    padding: 11px 2% 9px;
	font-size:90%;
	color:#999;
}
.single-post .entry-footer .edit-link {
	float:right;
	padding-left:25px;
}
.single-post .entry-footer .edit-link i {
	margin-right:0;
}


/* NAV LINKS - Previous & Next
------------------------------------------------------------------------ */
nav.navigation:after {
	content:'';
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
    margin: 0 0 20px;
    overflow: visible;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float:left;
	width:auto;
	max-width:-webkit-calc(50% - 10px);
	max-width:		  calc(50% - 10px);
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float:right;
	width:auto;
	max-width:-webkit-calc(50% - 10px);
	max-width:		  calc(50% - 10px);
}

.comment-navigation .nav-previous a,
.paging-navigation .nav-previous a,
.post-navigation .nav-previous a,
.comment-navigation .nav-next a,
.paging-navigation .nav-next a,
.post-navigation .nav-next a {
    position:relative;
	top:0px;
	display: block;
    padding: 16px 18px 12px;
    line-height: 100%;
    font-size: 110%;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
	color:#1dafec;
    border: 1px solid #e6e7e8;
    background: #fff;
}
.comment-navigation .nav-previous a:hover,
.paging-navigation .nav-previous a:hover,
.post-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover,
.paging-navigation .nav-next a:hover,
.post-navigation .nav-next a:hover {
	color:#58ceff;
}
.comment-navigation .nav-previous a,
.paging-navigation .nav-previous a,
.post-navigation .nav-previous a {
	text-align:left;
}
.comment-navigation .nav-next a,
.paging-navigation .nav-next a,
.post-navigation .nav-next a {
	text-align:right;
}
.nav-previous a i,
.nav-next a i {
	position:relative;
	top:-1px;
	font-size:80%;
}
.nav-previous a i {	
	margin-right:12px;
}
.nav-next a i {
	margin-left:12px;
}


/* COMMENTS
------------------------------------------------------------------------ */
.single #comments .shareaholic-canvas {
	display:none !important;
}

h2.comments-title,
#reply-title {
    line-height: 110%;
    font-size: 20px;
    font-weight: 700;
    padding-top: 0;
    margin-bottom: 15px;
	letter-spacing:0;
}

ol.comment-list {
    border-bottom: 1px dotted #999;
    list-style: outside none none;
    margin: 0 0 20px;
    padding-bottom: 15px;
}
li.comment article {
    background: #fff;
    border: 1px solid #e6e7e8;
    margin-bottom: 5px;
    overflow: auto;
    padding: 3% 3% 3% 0;
}
li.comment.parent article {
	margin-bottom:0;
}
.comments-area ol.children {
    position:relative;
	top:-1px;
	margin-left: 20px;
}
.comments-area ol.children article {
	border-top:1px dashed rgba(230,230,230,1.0);
}
.comments-area ol.children:after {
    position:absolute;
	top:-14px;
	left:5px;
	content:'\f064';
	font-family:FontAwesome;
	font-size:100%;
	color:rgba(25,175,240,1);
	/*text-shadow:-1px 1px 4px rgba(0,0,0,0.25);*/
	-webkit-transform:rotate(-70deg);
			transform:rotate(-70deg);
}

div.comment-content {
	float: right;
    width: 70%;
    font-size: 100%;
}
footer.comment-meta {
	float: left;
    width: 30%;
    font-size: 80%;
    text-align: center;
}
footer.comment-meta .comment-author img {
	margin-bottom:10px;
	border:2px solid rgba(25,175,240,1);
}
footer.comment-meta .comment-metadata .edit-link {
	display:block;
	padding-top:10px;
}
footer.comment-meta .comment-metadata .edit-link a:after {
	content:'\f040';
	font-family:FontAwesome;
	padding-left:5px;
	text-transform:uppercase;
}

.comment-form p.comment-subscription-form {
    margin-bottom: 5px;
}
.comment-form p.comment-subscription-form label {
    vertical-align: top;
    padding-top: 0;
    line-height: 28px;
}
.comment-form .comment-subscription-form .subscribe-label {
    display: inline-block !important;
	padding-top:1px;
    padding-left: 10px;
    font-size: 90%;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    overflow: hidden;
}
.comment-form p.comment-subscription-form:last-of-type {
    margin-bottom: 0 !important;
}
@media handheld, only screen and (max-width: 400px) {
	.comment-form .comment-subscription-form .subscribe-label {
		padding-left: 7px;
		font-size:70%;
	}
}


/* REPLIES */
#reply-title {
    text-transform: none;
    margin-bottom: 0;
}
#reply-title small {
	float:right;
}

.comment-form p.logged-in-as {
	margin-bottom:10px;
	font-size:85%;
	letter-spacing:0;
}
.comment-form p.comment-form-comment {
	margin-bottom:10px;
}
.comment-form p.comment-form-comment label {
	
}

ol.comment-list .comment-respond {
	position:relative;
	top:-6px;
	margin-bottom:20px;
	padding:20px 25px;
	border:1px solid #e6e7e8;
	background:rgba(255,255,255,0.75);
	border-top:1px dashed rgba(230,230,230,1);
}
ol.comment-list .comment-respond #commentform {
	margin-bottom:0;
}

/*
#respond {
}
#reply-title {
    margin-bottom: 0;
}

#comments {
    border-top: 1px dashed rgba(0,0,0,0);
	padding:25px 0;
}

#comments input[type="checkbox"] {
    width: 28px !important;
}

.comment-form p.comment-subscription-form {
	margin-bottom:5px;
}
.comment-form p.comment-subscription-form:last-of-type {
	margin-bottom:0 !important;
}
.comment-form p.comment-subscription-form checkbox {
	
}
.comment-form p.comment-subscription-form label {
	vertical-align:top;
	padding-top:0;
	line-height:28px; /* match checkbox height *//*
}
.comment-form p.comment-subscription-form span.subscribe-label {
	position:relative;
	top:1px;
	line-height:28px;
	font-size:100%;
}
.comment-form .comment-subscription-form .subscribe-label {
	display:inline-block !important;
	padding-left:10px;
	font-size:90%;
	text-transform:uppercase;
	color:rgba(0,0,0,0.5);
	overflow:hidden;
}

*/

@media handheld, only screen and (max-width: 767px) {
	div.comment-content {
		text-align: inherit !important;
	}
}


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


/* SEARCH
------------------------------------------------------------------------ */


/* SIDEBARS
------------------------------------------------------------------------ */
.widget-area {
	margin-top:0;
}
.widget-area aside {
	padding-bottom:0;
	background:#fff;
}
.widget-area aside h1 {
	padding:0 15px;
}
.widget-area .widget-title {
	margin-bottom:0;
	font-weight:400;
	color:#fff;
	border-bottom:none;
	background:#1dafec;
}
.widget-area aside ul,
.home-sidebar aside ul {
	padding:2px 0;
	line-height:100%;
	font-size:95%;
}
.widget-area aside li {
	position:relative;
	margin:0 10px;
	padding:10px 0 8px;
	padding-left:18px;
	border-bottom:1px solid rgba(0,0,0,0.04);
}
.widget-area aside li:last-of-type {
	border-bottom:0;
}
.widget-area aside li a {
	display:block;
}
.widget-area aside li span {
	font-size:inherit;
}
.widget-area aside li:before {
	content:'';
	font-family:FontAwesome;
	position:absolute;
	top:50%;
	left:2px;
	width:8px;
	height:8px;
	margin-top:-4px;
	border-radius:100%;
	background:rgba(25,175,240,0.5);
	-webkit-transform: scale(0.2);
			transform: scale(0.2);
	-webkit-transition: 0.25s ease;
	   -moz-transition: 0.25s ease;
		 -o-transition: 0.25s ease;
			transition: 0.25s ease;
}
.widget-area aside li:hover:before {
	-webkit-animation: sidebar-hover-anim 1.0s infinite ease-in-out;
			animation: sidebar-hover-anim 1.0s infinite ease-in-out;
}
@-webkit-keyframes sidebar-hover-anim {
	0%,
	100% { -webkit-transform: scale(0.2); background-color: rgba(25,175,240,1.0); }
	50%  { -webkit-transform: scale(1.0); background-color: rgba(25,175,240,0.2); }
}
@keyframes sidebar-hover-anim {
	0%,
	100% { transform: scale(0.2); background-color: rgba(25,175,240,1.0); }
	50%  { transform: scale(1.0); background-color: rgba(25,175,240,0.2); }
}

.widget-area .widget_recent_entries span.post-date {
	display:block;
	padding-top:2px;
	font-size:75%;
	color:rgba(125,125,125,1);
}

/* GALLERY
------------------------------------------------------------------------ */


/* CONTACT FORM
------------------------------------------------------------------------ */


/* FOOTER
------------------------------------------------------------------------ */
.site-footer {
    background: rgba(25,175,240,1);
    border-top: none/*1px solid #e6e7e8*/;
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 30px;
	color:rgba(255,255,255,0.9);
}
.site-footer h1 {
    color: #fff;
}
.site-footer a,
.site-footer a:active,
.site-footer a:visited {
    color: #fff !important;
}
.site-footer a:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* Contact Details - SU Template Widget */
.site-footer #contact-details .col-1-1 {
	margin-bottom:30px;
}
.site-footer #contact-details .col-1-1 img.avatar {
    width: auto;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 100%;
    border: 3px solid rgba(255,255,255,1);
	box-shadow: 0 4px 10px -4px rgba(0,0,0,1);
}
.site-footer #contact-details .col-1-1 .centered {
	font-size:120%;
	font-weight:600;
	text-align:center;
}
.site-footer #contact-details .col-1-1 .centered div {
	font-size:70%;
	font-weight:300;
}

.site-footer #contact-details .col-1-1,
.site-footer #contact-details .col-4-12,
.site-footer #contact-details .col-6-12 {
	text-align:center;
}
.site-footer #contact-details .col-1-1 i,
.site-footer #contact-details .col-4-12 i,
.site-footer #contact-details .col-6-12 i {
	margin-bottom:15px;
	font-size:200%;
}

/* Social Meida */
.site-footer .social-container {
	float:none;
	display:table;
	margin:auto;
	margin-bottom:30px;
}
.site-footer .social-container li {
	padding: 0 10px;
    border-bottom: none;
}
.site-footer .social-container li i {
	font-size:150%;
}

/* Site Info */
.site-footer .site-info {
	display:block;
	padding: 5px;
	font-size:90%;
	text-align:center;
}


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


/* RESPONSIVENESS
------------------------------------------------------------------------ */
.mobile_br {
	display:none;
}

.footer_bullet,
.footer_bullet_br {
	display:inline;
}
.footer_bullet:before,
.footer_bullet_br:before {
	content:'\f1db';
	font-family:FontAwesome;
	font-size:5px;
	padding:0 10px;
	position:relative;
	top:-3px;
}

@media (max-width: 400px) {
	.mobile_br {
		display:inherit;
	}

	.footer_bullet_br {
		display:block;
	}
	.footer_bullet_br:before {
		display:none;
	}
}


/* PAGE TRANSITIONS
------------------------------------------------------------------------ */
