/* Buttons varieties */
a.btn-category {
	background: #fff;
	border: 0;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1;
	margin-top: 15px;
	max-width: 70%;
	padding: 15px 0;
	text-align: center;
	text-transform: uppercase;
	width: 250px;
}
a.btn-category:hover {
	opacity: .8;
}
a.btn-category--blue {
	background:#0f63ac;
}
a.btn-category--orange {
	background:#f68f33;
}
.visible-xs {
	display: none;
}
@media only screen and (max-width: 769px) {
	.visible-xs {
		display: block !important;
	}
	.hidden-xs {
		display: none !important;
	}
}
/* / Buttons varieties */

/* Advertising block */
.adv-block {
	display: flex !important;
	justify-content: center;
	max-width: 100%;
	padding: 20px 0;
}
/* / Advertising block */

/* Publication date */
.publ-date {
	color: #9e9d9e
}
/* / Publication date */

/* Post single */
.related-posts {
	display: block;
}
.related-posts__item {
	border-bottom: 1px solid rgba( 0, 0, 0, .1 );
	display: flex;
	margin: 0 0 20px;
	padding: 0 0 20px;
	width: 100%;
}
.related-posts__item:last-child {
	border-bottom-color: transparent;
	margin: 0 0 -20px;
}
.related-posts__item:hover .related-posts__item-title,
.related-posts__item:hover .related-posts__item-summary {
	opacity: .7;
}
.related-posts__item-info {
	width: 100%;
}
.related-posts__item-meta {
	display: block;
}
.related-posts__item-category {
	font-weight: bold;
	font: 12px;
	text-transform: uppercase;
}
.related-posts__item-title {
	font-size: 24px;
	font-weight: bold;
	margin: 10px 0;
	opacity: 1;
	transition: all .2s ease-in-out;
}
.related-posts__item-summary {
	color: black;
	font-size: 16px;
	line-height: 22px;
	margin: 0 0 10px;
	opacity: 1;
	transition: all .2s ease-in-out;
}
.related-posts__item-date {
	color: #c5c5c5;
	font-size: 14px;
}
.related-posts__item-image {
	margin-left: 20px;
	width: 250px;
}
@media only screen and (max-width: 767px) {
	.related-posts__item {
		margin: 0 0 10px;
		padding: 0 0 10px;
	}
	.related-posts__item-category {
		font-size: 12px;
	}
	.related-posts__item-title {
		font-size: 15px;
	}
	.related-posts__item-summary,
	.related-posts__item-date {
		display: none;
	}
	.related-posts__item-image {
		margin-left: 10px;
		width: 80px;
	}
}
/* / Post single */


/* Paywall */
.paywall {
	--color-black-20: rgba( 0, 0, 0, .3 );
	--color-blue: #0e63ac;
	--color-gray: #c2c2c2;
	--color-orange: #f18800;
	--color-red: #ff4d4d;
	--color-green: #52a548;
	--color-white: #ffffff;
	--paywall__modal-login_padding: 30px 15px;
	--paywall__modal-login_width: 100%;
}
@media only screen and (min-width: 768px) {
	.paywall {
		--paywall__modal-login_padding: 30px 20px;
		--paywall__modal-login_width: 50%;
	}
}
.paywall * {
	box-sizing: border-box;
}
.paywall {
	background-color: var( --color-black-20 );
	display: none;
	font-size: 14px;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow: auto;
	position: fixed;
	top: 0;
	transition: opacity .6s ease-in-out;
	visibility: collapse;
	width: 100%;
	z-index: 9999999;
}
.paywall-open {
	overflow: hidden;
}
.paywall-open .paywall {
	display: flex;
	opacity: 1;
	visibility: visible;
}
.paywall__modal {
	background-color: var( --color-white );
	margin: auto;
	max-width: calc( 100% - 40px );
	transition: all .4s ease-in-out;
	width: 690px;
}
@media only screen and (min-width: 768px) {
	.paywall__modal {
		display: flex;
	}
}
.paywall__modal-register,
.paywall__modal-login {
	float: left;
	padding: var( --paywall__modal-login_padding );
	width: var( --paywall__modal-login_width );
}
.paywall__modal-register {
	align-content: space-between;
	display: flex;
	flex-wrap: wrap;
}
.paywall__modal-register .paywall__modal-btn {
	background-color: var( --color-blue );
	color: var( --color-white );
}
.paywall__modal-login {
	background-color: var( --color-blue );
	color: var( --color-white );
}
.paywall__modal-title {
	font-size: 28px;
	font-weight: bold;
	position: relative;
	text-align: center;
}
.paywall__modal-close {
	background-color: transparent;
	border: 0;
	color: var( --color-white );
	cursor: pointer;
	font-size: 22px;
	position: absolute;
    right: 0;
    top: 0;
}
.paywall__modal-busy {
	padding: 60px;
}
.paywall__modal-busy .paywall__modal-close {
	color: var( --color-blue );
	right: -50px;
    top: -50px;
}
.paywall__modal-title--white {
	color: var( --color-white );
}
.paywall__modal-row {
	float: left;
	position: relative;
	width: 100%;
}
.paywall__modal-row--error {
	background: var( --color-red );
	display: none;
	line-height: 18px;
	margin-bottom: 15px;
	padding: 5px;
}
.paywall__modal-row--success {
	background: var( --color-color-green );
	display: none;
	line-height: 18px;
	margin-bottom: 15px;
	padding: 5px;
}
.paywall__modal-btn {
	background-color: var( --color-orange );
	border: none;
	color: var( --color-white );
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: bold;
    margin: 0 auto;
	max-width: 305px;
	padding: 15px 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}
.paywall__modal-btn:hover {
	opacity: .9;
}
.paywall__modal-label {
	font-size: 16px;
	font-weight: bold;
	display: block;
    width: 100%;
}
.paywall__modal-input {
	background-color: transparent;
	border: none;
	border-bottom: solid 1px var( --color-white );
	color: var( --color-white );
	display: block;
	padding-bottom: 5px;
	width: 100%;
}
.paywall__modal-divisor {
	color: var( --color-gray );
	position: relative;
	text-align: center;
}
.paywall__modal-divisor span {
	background-color: var( --color-white );
	padding: 5px;
	position: inherit;
	z-index: 1;
}
.paywall__modal-divisor:before {
	background-color: var( --color-gray );
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 0;
}
a.paywall__modal-link {
	color: var( --color-white );
	display: block;
}
.paywall__modal-text--large {
	font-size: 18px;
    font-weight: bold;
}
.paywall__modal-text--center {
	text-align: center;
}
.paywall__modal-text--orange {
	color: var( --color-orange );
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-25 {
	margin-bottom: 25px;
}
.mb-30 {
	margin-bottom: 30px;
}
/* / Paywall */
