/**
 * Placeholder color
 */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #888888;
	opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #888888;
}
::-ms-input-placeholder { /* Microsoft Edge */
	color: #888888;
}

/**
 * Creating ripple effect
 * On button hover
 */
.hover-ripple {
	position: relative;
	overflow: hidden;
}
.hover-ripple::before {
	display: none;
	content: "";
	position: absolute;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.1);

	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	top: 50%;
	left: 50%;
	animation: ripple 2s;
	opacity: 0;
}
.hover-ripple:focus::before {
	display: block;
}
	@keyframes ripple {
		from {
			opacity: 1;
			transform: scale(0);
		}
		to {
			opacity: 0;
			transform: scale(10);
		}
	}


/* General
/* --------------------------------------*/
body {
	font: normal normal 18px/150% 'Quadra', 'Sans-serif';
	color: #333;
	overflow-x: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	height: 100vh;
  	width: 100vw;
}
body * {
	box-sizing: border-box;
}
	body.no-scroll {
		overflow-y: hidden;
	}
a:link, a:visited {
	color: #676fd8;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: #222;
	text-decoration: underline;
}
img {
	max-width: 100%;
	height: auto;
}
code {
	background-color: #eee;
	font: 1em/1.2em 'courier new', courier, monospace;
}
pre {
	padding: 1.5rem;
	font-size: .86em;
	background: #eee;
	overflow: auto;
}
hr {
	border: 0;
	height: 1px;
	background: #eee;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	letter-spacing: 0;
	color: #222;
}
h1 {
	font-size: 3em;
	line-height: 120%;
}
h2 {
	font-size: 2.176em;
	line-height: 120%;
}
h3 {
	font-size: 1.875em;
	line-height: 140%;
}
h4 {
	font-size: 1.5em;
	line-height: 150%;
}
h5 {
	font-size: 1.250em;
	line-height: 150%;
}
h6 {
	font-size: 1em;
	line-height: 150%;
}
em {
	font-style: italic;
}
.font-bigger {
	font-size: 1.118em;
	line-height: 150%;
}
.font-smaller {
	font-size: 0.889em;
	line-height: 140%;
}
.font-tiny {
	font-size: 0.765em;
	line-height: 140%;
}
.title {
	font-weight: bold;
	color: #2C3B4B;
}
.label strong,
.label b,
.label .font-bolder {
	font-weight: bold;
}
.hide {
	display: none;
}


/* Layout
/* --------------------------------------*/
.container {
	width: 80%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.main-container {
	padding-right: 330px;
	background: #FFFFFF;
}
.main-container .secondary-content {
	position: relative;
	width: 330px;
	color: #fff;
	float: right;
	margin-right: -330px;
	height: 100vh;
}
	.main-container .secondary-content > * {
		background: #2C3B4B;
	}
.main-container .primary-content {
	float: left;
	width: 100%;
}


/* Header
/* --------------------------------------*/
.header {
	position: relative;
}
.header .site-title {
	font-size: 1.5em;
	line-height: 140%;
}
.header .site-description {
	margin-top: 0.625rem;
}
.header .site-title.has-logo {
	font-size: 0;
}
.header .site-title a {
	color: #222;
}
.header .site-title img {
	width: 135px;
	height: auto;
}
.header .toggleSidebar {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
	background: rgba(0,0,0, 0) url(../images/icon-menu.svg) no-repeat center center;
	background-size: 20px 14px;
	border-radius: 100%;
	border: 0;
	box-shadow: none;
	outline: none;
	font: inherit;
	text-indent: -500px;
	overflow: hidden;
	display: none;
	transition: 0.3s;
}
.header .toggleSidebar:hover,
.header .toggleSidebar:focus,
.header .toggleSidebar:active {
	background-color: rgba(0,0,0, 0.05);
}


/* ----------------------------------------
Primary content
/* --------------------------------------*/
.post .post-title a {
	color: #222222;
}
.post .post-body .readmore a {
	display: inline-block;
	color: #2C3B4B;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	padding-right: 23px;
	border-bottom: 1px solid #222;
}
	.post-body .readmore a:after {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 14px;
		height: 12px;
		margin-top: -5px;
		background: url(../images/icon-arrow-prime.svg);
		background-size: 28px auto;
		background-position: right center;
		transition: 0.2s;
	}
	.post-body .readmore a:hover:after {
		background-position: left center;
	}
	.post-body .readmore a:hover {
		padding-right: 30px;
		color: #676fd8;
		border-color: #676fd8;
	}
.post-body p.post-excerpt {
	margin-bottom: 0.882em;
}

/*-
Post header
-*/
.post .post-header {
	margin-bottom: 0.882em;
}
.post .post-header .post-meta-author a {
	color: #222;
}
.post-header .post-author-pic {
	width: 48px;
	height: 48px;
	margin-right: 15px;
	border-radius: 100%;
}
.post-header .post-author-details h5 a {
	color: #222;
	font-weight: bold;
}
.post-header p {
	margin-bottom: 0;
}
.post-header .meta-featured-label {
	display: inline-block;
	transform: translateY(-1px);
	margin-right: 5px;
	border-radius: 3px;
	border: 1px solid #dddddd;
	padding: 2px 5px;
}

/*-- Post footer --*/
.post-footer {
	margin-bottom: 25px;
}
.post-footer .post-author {
	flex-grow: 1;
}
.post-footer .post-author-img figure {
	display: block;
	width: 60px;
	height: 60px;
	background-size: cover;
	background-position: center center;
	border-radius: 100%;
}
.post-footer .post-author-bio a {
	color: #222;
}
.post-footer .sharing-button {
	text-align: right;
}
.post-footer .sharing-button li {
	margin-left: 10px;
}
.post-footer .sharing-button li a {
	display: inline-block;
	padding: 5px 10px 5px 30px;
	background: red;
	border-radius: 3px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
	position: relative;
	background: #1777F2;
	color: #fff;
}
	.post-footer .sharing-button li.icon-twitter a {
		background-color: #55ACEE;
	}
.post-footer .sharing-button li a:after {
	content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
	background-image: url(../images/icon-socialmedia.svg);
	background-size: 70px 28px;
	background-position: left top;
}
.post-footer .sharing-button li.icon-twitter a:after {
	background-position: -14px top;
}
.post-footer .post-labels {
	background: #F6F4EC;
	padding: 10px 15px;
	border-radius: 3px;
}
.post-footer .post-labels .post-labels-label {
	margin-right: 15px;
	color: #676fd8;
	text-transform: uppercase;
}
.post-footer .post-labels .post-labels-list a {
	color: #222;
}

/*-- Next Prev --*/
.nextprev-content {
	margin-left: -10px;
	margin-right: -10px;
}
.nextprev-content .nextprev-item {
	color: #fff;
	width: calc(50% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 3px;
	background-size: cover;
	background-position: center center;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}
	.nextprev-content .nextprev-item.nextprev-new {
		text-align: right;
	}
	.nextprev-content .nextprev-item:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0, 0.4);
		transition: 0.3s;
	}
	.nextprev-content .nextprev-item:hover:after {
		background: rgba(0,0,0, 0.2);
	}
.nextprev-content .nextprev-item .inner {
	padding: 15px 20px;
	position: relative;
	z-index: 2;
}
	.nextprev-content .nextprev-item .inner span {
		display: inline-block;
		position: relative;
		padding: 0 15px;
	}
		.nextprev-content .nextprev-item .inner span:after {
			content: '';
			position: absolute;
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			width: 10px;
			height: 10px;
			background-image: url(../images/icon-arrow-basic.svg);
			background-repeat: no-repeat;
			background-position: 0 bottom;
			background-size: 20px 20px;
		}
		.nextprev-content .nextprev-item.nextprev-new .inner span:after {
			left: auto;
			right: 0;
			background-position: 0 top;
		}
.nextprev-content .nextprev-item .title {
	margin: 5px 0;
	line-height: 130%;
	color: #fff;
}

/* Content styling
/* --------------------------------------*/
.post .post-body {
	align-items: center;
	flex-direction: column;
}
.post .post-body blockquote,
.post .post-body dl,
.post .post-body h1,
.post .post-body h2,
.post .post-body h3,
.post .post-body h4,
.post .post-body h5,
.post .post-body h6,
.post .post-body ol,
.post .post-body p,
.post .post-body pre,
.post .post-body ul,
.post .post-body hr {
    width: 100%;
	box-sizing: border-box;
	margin-bottom: 1.176em;
}
.post .post-body figure {
	margin-bottom: 1.176rem;
}
.post .post-body > p:last-child {
	margin-bottom: 0;
}
.post .post-body ol,
.post .post-body ul {
	list-style-type: disc;
	margin-left: 40px;
}
.post .post-body ol {
	list-style-type: decimal;
}
.post .post-body ul li,
.post .post-body ol li {
	margin: .5em 0;
}
.post .post-body ul li:first-child,
.post .post-body ol li:first-child {
	margin-top: 0;
}
.post .post-body blockquote {
	font-weight: bold;
	border-left: 3px solid #ddd;
	font-size: 1.118em;
	line-height: 140%;
	margin-top: 1.5rem;
	padding-left: 1.176em;
}
.post .post-body blockquote em {
	font-style: normal;
}
.post .post-body blockquote p {
	margin-bottom: 0;
}
.post .post-body blockquote .tweetthis {
	
	display: none;
}
.post .post-body h1,
.post .post-body h2,
.post .post-body h3,
.post .post-body h4,
.post .post-body h5,
.post .post-body h6 {
	line-height: 140%;
	margin: .4em 0;
	color: #2C3B4B;
	position: relative;
}
	.post .post-body h2 {
		font-size: 1.67em;
	}
	.post .post-body h3 {
		font-size: 1.471em;
	}
	.post .post-body h4 {
		font-size: 1.294em;
	}
	.post .post-body h5 {
		font-size: 1em;
	}
	.post .post-body h6 {
		font-size: 0.882em;
	}
.post figcaption {
	margin: 0 auto 1rem auto;
	font-size: .826em;
	line-height: 150%;
	padding: 10px 0;
	position: relative;
	color: #888;
	text-align: center;
}
.post figcaption:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -30px;
	width: 60px;
	height: 1px;
	background: #ddd;
}

/*-
Post cover
-*/
.post .post-cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.post .post-cover:after {
	content: '';
	display: block;
}

/*-
Archive term
-*/
.archive-term p {
	font-size: 1.222em;
	line-height: 140%;
	color: #777;
}

/*-
Author
-*/
.author-term .author-img {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
}
.author-term .author-details ul li.author-location {
	position: relative;
	padding-right: 40px;
	margin-right: 10px;
}
	.author-term .author-details ul li.author-location:after {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: 2px;
		width: 30px;
		height: 1px;
		background: #222;
	}
	.author-term .author-details ul li.author-social-url {
		margin-right: 10px;
	}
	.author-term .author-details ul li.author-social-url a {
		display: block;
		width: 19px;
		height: 19px;
		overflow: hidden;
		text-indent: -400px;
		background-image: url(../images/icon-socialmedia.svg);
		background-repeat: no-repeat;
		background-position: 0 bottom;
		background-size: 95px 38px;
	}
	.author-term .author-details ul li.author-twitter a {
		background-position: -19px bottom;
	}

/*-
Image zoom
-*/
.fluidbox--opened .fluidbox__ghost {
	cursor: default;
}
.fluidbox__overlay {
	background-color: rgba(255,255,255, 1);
	cursor: default;
}
.fluidbox__overlay:after {
	content: '';
	position: fixed;
	top: 15px;
	right: 15px;
	background: url(../images/icon-close.svg);
	background-size: 100% auto;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

/*-
KG Gallery mode
-*/
.post .kg-width-wide,
.post .kg-width-full,
.post .kg-gallery-container,
.post .kg-gallery-row,
.post .kg-gallery-image,

.post .kg-bookmark-card,
.post .kg-bookmark-container,
.post .kg-bookmark-content,
.post .kg-bookmark-title,
.post .kg-bookmark-description,
.post .kg-bookmark-metadata,
.post .kg-bookmark-icon,
.post .kg-bookmark-author,
.post .kg-bookmark-publisher,
.post .kg-bookmark-thumbnail {
	/* Images setting for Ghost 2.0 */
}

/*-
KG Gallery mode
-*/
.post .kg-width-full img,
.post .kg-width-wide img {
	display: block;
	margin-bottom: 0;
	position: relative;
	height: auto;
}
.post .kg-width-full img {
	max-width: calc(100vw - 330px);
}
.post .kg-width-wide {
	margin-left: -80px;
	margin-right: -80px;
	width: calc(100% + 160px);
	overflow: hidden;
}

/*-
KG Gallery mode
-*/
.post .kg-bookmark-card {
	border: 1px solid #ddd;
	width: 100%;
	box-sizing: border-box;
}
	.post .post-body .kg-bookmark-container {
		text-decoration: none;
		color: #555;
		display: flex;
		flex-direction: row;
	}
	.kg-bookmark-content {
		width: calc(70% - 1.5rem);
		vertical-align: top;
		padding: 1.5rem;
	}
	.kg-bookmark-title {
		font-size: 1em;
		font-weight: bold;
		line-height: 130%;
		color: #C60033;
		margin-bottom: 10px;
	}
	.kg-bookmark-description {
		font-size: .706em;
		line-height: 150%;
		color:
		#888;
		overflow: hidden;
		letter-spacing: .2px;
	}
	.kg-bookmark-thumbnail {
		vertical-align: top;
		width: 40%;
		overflow: hidden;
    	position: relative;
		height: auto;
		background-size: cover;
		background-position: center center;
	}
		.kg-bookmark-thumbnail img {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: auto;
			height: 100%;
		}
	.kg-bookmark-metadata {
		margin-top: 1rem;
		padding-left: 26px;
		position: relative;
		font-size: .706em;
		line-height: 140%;
	}
	.kg-bookmark-metadata img {
		width: 18px;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
	}
	.kg-bookmark-metadata .kg-bookmark-publisher {
		padding-left: 10px;
	    margin-left: 8px;
	    position: relative;
	}
	.kg-bookmark-publisher:before {
		content: '•';
	    position: absolute;
	    top: 50%;
	    left: 0;
	    transform: translateY(-50%);
	}

/*-
KG Gallery mode
-*/
.kg-gallery-card .kg-gallery-row  {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: top;
	margin: 0 -4px;
}
.kg-gallery-row .kg-gallery-image {
	margin: 4px;
	flex-grow: 1;
    flex-basis: 0;
}

/* Pagination
/* --------------------------------------*/
.pagination-outer {
	border-top: 1px solid #E1E2E3;
}
.pagination-outer .inner li {
	flex-basis: 100%;
}
.pagination-outer .inner li:last-child {
	text-align: right;
}
.pagination-outer .inner a {
	color: #222;
	display: inline-block;
	padding-right: 23px;
}

/* Comment
/* --------------------------------------*/
.comment-outer .comment-trigger {
	border-radius: 0;
	background: none;
	padding: 1.875rem;
	margin: 0;
	font-family: inherit;
	font-size: 1em;
	font-weight: bold;
	width: 100%;
	outline: 0;
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	color: #333;
	cursor: pointer;
	transition: 0.3s;
}
	.comment-outer .comment-trigger:hover {
		background: #9cb7c6;
		border-color: #9cb7c6;
		color: #fff;
	}
	.comment-outer .comment-trigger:hover a {
		color: #fff;
	}
.comment-outer .comments {
	display: none;
}


/* ----------------------------------------
ID based styling
/* --------------------------------------*/
/* Home & General Archive
/* --------------------------------------*/
body .layout-home .post .post-title .title {
	font-size: 1.4em;
	line-height: 120%;
	
}
body .layout-home .post {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
body .layout-home .post .post-header,
body .layout-home .post .post-title,
body .layout-home .primary-content .post .post-body {
	width: auto;
}
body .layout-home .post .post-cover {
	flex-basis: 200px;
    flex-grow: 0;
    flex-shrink: 0;
	margin-right: 1.875rem;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	max-height: 370px;
}
body .layout-home .post .post-cover:after {
	padding-bottom: 120%;
}
body .layout-home .post .post-cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: 0.3s;
}
body .layout-home .post .post-cover:hover:before {
    background-color: rgba(0,0,0,0.3);
}

/* First & Featured posts
/* --------------------------------------*/
body.home-template .post.post-first,
body.home-template .post.featured {
	flex-direction: column;
	width: 100%;
	max-width: 100%;
}
body.home-template .post.featured .post-title .title,
body.home-template .post.post-first .post-title .title {
	font-size: 2.1em;
	line-height: 120%;
}
body.home-template .post.post-first .post-inner,
body.home-template .post.featured .post-inner {
	width: 80%;
    max-width: 820px;
    margin: 0 auto;
}
body.home-template .post.post-first .post-cover,
body.home-template .post.featured .post-cover,
body.post-template .post .post-cover {
	width: 100%;
	margin-bottom: 1.875rem;
	border-radius: 0;
	overflow: visible;
	flex-basis: inherit;
}
body.home-template .post.post-first .post-cover:after,
body.home-template .post.featured .post-cover:after,
body.post-template .post .post-cover:after {
	padding-bottom: 34%;
}

/* Single post
/* --------------------------------------*/
body.post-template .post .post-title .title,
body.page-template .post .post-title .title {
	font-size: 2.1em;
	line-height: 120%;
}
body.post-template .post .post-excerpt {
	position: relative;
    padding-bottom: 50px;
    margin-bottom: 0;
    color: #777;
	font-size: 1.222em;
	line-height: 140%;
}
body.post-template .post .post-excerpt:after {
	content: '...';
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    letter-spacing: 0.4em;
    font-weight: bold;
}

/* Page template
/* --------------------------------------*/
body.page-template .post .post-body form[method=POST] {
	margin-top: 30px;
}
body.page-template .post .post-body form[method=POST] label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.889em;
	line-height: 140%;
}
body.page-template .post .post-body form[method=POST] input {
	width: 50%;
}
body.page-template .post .post-body form[method=POST] button {
	padding: 12px 40px;
	background: #676fd8;
	color: #ffffff;
	border: 0;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
	box-shadow: none;
	font-weight: bold;
	font-size: 1em;
	line-height: 140%;
	transition: 0.3s;
}
body.page-template .post .post-body form[method=POST] button:disabled {
	background: #A1A6AB;
	cursor: default;
}
body.page-template .post .post-body form[method=POST] button:hover {
	background: #E85F3C;
}
body.page-template .post .post-body form[method=POST] #my-form-status {
	font-size: 16px;
    background: #E2EEC2;
    padding: 10px 20px;
    border-radius: 3px;
	margin-top: 30px;
	font-size: 0.889em;
	line-height: 140%;

	display: none;
}


/* Sidebar
/* --------------------------------------*/
.sidebar-outer {
	height: 100%;
}
.sidebar-outer .sidebar {
	color: #9cb7c6;
	height: 100%;
}
.sidebar a {
	color: #ffffff;
}
.sidebar .widget .title {
	font-size: 1em;
	margin-bottom: 15px;
	color: #ffffff;
}

/* Sidebar on mobile
/* --------------------------------------*/
.main-container .secondary-content.is-open {
	display: block;
	width: 100%;
	height: 100%;
    background: rgba(0,0,0, 0.5);
}
.main-container .secondary-content.is-open > * {
	width: 300px;
	float: right;
}

/* -- Main Navigation -- */
.widget-nav ul li {
	margin-bottom: 0.632em;
	font-size: 1.250em;
	line-height: 120%;
}
	.widget-nav ul li:last-child {
		margin-bottom: 0;
	}
#widget-navmain {
	margin-bottom: 24px;
}
#widget-navmain ul li a {
	color: #9cb7c6;
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
#widget-navmain ul li.nav-current a,
#widget-navmain ul li a:hover {
	color: #fff;
	border-color: #fff;
}

/* -- Secondary Navigation -- */
#widget-navsecondary ul {
	font-size: 0;
}
#widget-navsecondary li {
	display: inline-block;
	margin-right: 15px;
}
#widget-navsecondary li a {
	display: block;
	width: 19px;
	height: 19px;
	overflow: hidden;
	text-indent: -400px;
	background-image: url(../images/icon-socialmedia.svg);
	background-repeat: no-repeat;
	background-position: 0 top;
	background-size: 95px 38px;
}
#widget-navsecondary li.nav-twitter a {
	background-position: -19px top;
}
#widget-navsecondary li.nav-quora a {
	background-position: -38px top;
}
#widget-navsecondary li.nav-instagram a {
	background-position: -57px top;
}
#widget-navsecondary li.nav-youtube a {
	background-position: -76px top;
}

/* -- Widged FeaturedPost -- */
#widget-featuredpost .widget-body .title {
	font-size: 1.125em;
	line-height: 140%;
	margin-bottom: 5px;
}
#widget-featuredpost .widget-body li {
	counter-increment: inst;
	position: relative;
	padding-bottom: 20px;
}
	#widget-featuredpost .widget-body li:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}


/* -- Widget subscribe -- */
.widget-subscribe .title {
	margin-bottom: 10px;
	color: #fff;
}
.widget-subscribe .form-input {
	position: relative;
	background: #ffffff;
	border-radius: 3px;
}
.widget-subscribe form input,
.widget-subscribe form button {
	padding: 12px 15px;
	border: 0;
	border-radius: 2px;
	font-size: 1em;
	color: #222;
	font-family: inherit;
}
.widget-subscribe form input.subscribe-email {
	width: calc(100% - 30px);
}
	.widget-subscribe form input.subscribe-email:focus {
		outline: none;
		border-color: #55ACEE;
	}
.widget-subscribe form button {
	background: #fff;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 30px;
	height: 30px;
	text-indent: -500px;
	overflow: hidden;
	cursor: pointer;
	transform: translateY(-50%);
}
	.widget-subscribe form button .button-label {
		display: block;
		text-indent: -500px;
		overflow: hidden;
		width: 14px;
		height: 12px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		background: url(../images/icon-arrow-prime.svg);
		background-size: 28px auto;
		background-position: right center;
		transition: 0.3s;
	}
	.widget-subscribe form button:hover .button-label {
		background-position: left center
	}
.widget-subscribe form .message {
	margin-top: 10px;
	color: red;
}
	.widget-subscribe form .message.message-success {
		color: #676fd8;
	}
.widget-subscribe form button:hover {
	background-color: #FAF8F6;
	opacity: 1;
}
.widget-subscribe form .button-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
}
.widget-subscribe form.loading .button-loader { display: block; }
.widget-subscribe form.loading .button-label { visibility: hidden; }
.widget-subscribe form.error .message-error { display: block; }
.widget-subscribe form.success .message-success { display: block; }


/* Footer
/* --------------------------------------*/
.footer-outer {
	background: #F6F4EC;
}

/* JW Changes
/* --------------------------------------*/

p code {
	font-size: 0.95rem;
	font-weight: 600;
}

li code {
	font-size: 0.95rem;
	font-weight: 600;
}
pre[class="language-steplog" ],
code[class="language-steplog"] {
	white-space: normal !important;
	overflow: auto !important;
	word-break: break-word !important;
}

pre[class="language-envoylog" ],
code[class="language-envoylog"] {
	white-space: pre-line !important;
	overflow: auto !important;
	word-break: break-word !important;
}

pre[class*="language-" ],
code[class*="language-"] {
	font-size: 0.75rem !important;
	text-shadow: none !important;
}

#widget-avatar {
	margin-bottom: 24px;
}
#widget-badges {
	margin-bottom: 24px;
}

.footer-toaster {
	float: right;
	max-width: 16px;
	margin-top: 4px;
}

.sidebar-avatar {
	max-width: 100px;
    border-radius: 80px;
    border: white 2px solid;
}
.sidebar-icon {
	max-width: 35px;
}
.kg-image-card {
	min-width: 100%;
}
.kg-image-card img {
	min-width: 100%;
}

img.mw-300 {
	max-width: 300px;
	min-width: 100px !important;
	margin: auto;
	display: block;
}

img.mw-700 {
	max-width: 700px;
	min-width: 100px !important;
	margin: auto;
	display: block;
}
