/*--------------------------------------------------------------
# SINGLE

For single post
ONLY for post type = post 
ADD your own stylesheet for custom post type single page 
OR, if it uses sames styles, add it to enqueue style function in functions.php 

--------------------------------------------------------------*/
.post-thumbnail {
	position: relative;
	height: 60vh;
}
.post-thumbnail .container {
	position: relative;
	padding-top: 1px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.back {
	position: relative;
	z-index: 5;
	margin-top: auto;
	padding-bottom: 40px;
}
.back-btn {
	display: inline-block;
	padding: 0px 10px 0px 43px;
	height: 33px;
	line-height: 33px;
	vertical-align: middle;
	background-color: #fff;
	cursor: pointer;
	color: #000;
}
.back-btn svg {
	position: absolute;
	top: 0;
	left: -1px;
	height: 33px;
	width: 33px;
}
.post-thumbnail img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.post-thumbnail .post-cat,
.post-thumbnail .post-date {
	width: 180px;
	text-align: center;
	color: #fff;
	line-height: 25px;
	font-size: 1.2rem;
}
.post-thumbnail .post-date {
	margin-top: 50px;
	background-color: rgba(0,0,0,0.52);	
}
.post-thumbnail .post-cat {
	text-transform: uppercase;
	background-color: var(--primary-color);
}
.entry-header,
.entry-content {
	margin: 34px auto;
	width: 100%;
	max-width: 900px;
}
.entry-header .post-date {
	text-align: center;
	font-size: 2.2rem;
	color: var(--primary-color);
	font-weight: bold;
}
.entry-header .title {
	margin-top: 8px;
}
.entry-title {
	text-transform: uppercase;
	font-size: 20px;
}
.video {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 56.25%;
}

/*iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}*/

.half,
.column {
	margin-bottom: 40px;
}

.entry-content h2 {
	text-transform: uppercase;
	text-align: center;
}

.entry-content h2:after {
	content: "";
	display: block;
	margin: 8px auto 5px;
	height: 3px;
	width: 50px;
	background-color: var(--primary-color);
}

.entry-content h2:first-child {
	margin-top: 0;
}

.entry-content p + p {
	margin-top: 25px;
}

.glide__slide {
	position: relative;
}

.post-image-legend {
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: bottom left;
    bottom: 20px;
    left: 20px;
    font-size: 0.8rem;
    z-index: 9;
    color:  #fff;
}

.glide__bullets {
	margin-top: 20px;
	position: relative;
	padding-left: 28px;
	padding-right: 28px;
}

.glide__arrow {
	position: absolute;
	top: 0px;
	height: 100%;
	width: 25px;
	cursor: pointer;
}

.glide__arrow:before {
	content: "";
	position: absolute;
	top: 28px;
	display: block;
	height: 10px;
	width: 10px;
	border-top: 2px solid #000;
}

.glide__arrow--left {
	left: 0;
}

.glide__arrow--left:before {
	border-left: 2px solid #000;
	transform: rotate(-45deg);
	left: 2px;
}

.glide__arrow--right {
	right: 0;
}

.glide__arrow--right:before {
	border-right: 2px solid #000;
	transform: rotate(45deg);
	right: 2px;
}
.entry-footer p {
	margin: 0 !important;
	text-transform: uppercase;
	text-align: right;
	font-weight: bold;
	font-size: 1.2rem;
}
.entry-footer-credits {
	color: var(--primary-color);
}

@media (min-width: 768px) {
	.post-thumbnail {
		height: 570px;
	}
	.half {
		float:  left;
		min-width: calc(50% - 20px);
		width: calc(50% - 20px);
	}
	.half + .half {
		padding-left: 40px;
	}
}

@media (max-width: 768px) {
	.entry-header,
	.entry-content {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.sharing-post {
	padding: 30px 0px 10px;	
    display: block;
    height: 50px;
	max-width: 900px;
	margin: 0 auto;
}

.sharing-post .sharing-popup-title{
	float: right;
	display: inline-block;
	min-width: auto;
	margin-right: 10px;
}

.sharing-post .share-icon{
	width: 25px;
	display: inline-block;
	float: right;
	margin: 0px 2px;
}

.sharing-post .share-icon svg{
	width: auto;
}