/* Video
/*------------------------------------------------------------*/
.video__container {
	background-color: #FFF;
}


/* Video Detail Page
/*------------------------------------------------------------*/
body {
	height: auto;
}

/* Theatre */
.player-theatre {
	background-color: #000;
	color: #FFF;
	padding: 0;
	z-index: 1;
	position: relative;
	top: 0;
}

.player-theatre.playing {
	position: sticky;
}

.player-theatre .container {
	padding: 0;
}

.player-theatre iframe {
	max-width: 100%;
	max-height: 100%;
}

/* Floating Video - Close Button */
.video__close {
	width: 24px;
	height: 24px;
	background: #aaa;
	border: 0;
	padding: 0;
	position: absolute;
	right: -12px;
	top: -12px;
	transition: background .3s ease-in-out;
	border-radius: 24px;
	display: none;
	align-items: center;
	justify-content: center;
}

.video__close:hover {
	background: #ccc;
	opacity: 1;
}

.video__close:before,
.video__close:after {
	position: absolute;
	content: ' ';
	height: 12px;
	width: 2px;
	background-color: #FFF;
}

.video__close:before {
	transform: rotate(45deg);
}

.video__close:after {
	transform: rotate(-45deg);
}


/* Floating Video */
.video.stuck {
	width: 260px;
	height: 145px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	transform: translateY(100%);
	animation: fade-in-up 0.25s ease forwards;
}

.video.stuck .video__close {
	display: flex;
}


/* Video Information */
.video__info {
	margin-bottom: 60px;
}

.video__title {
	font-size: 22px;
	font-weight: bold;
	color: #1F81B9;
	margin-bottom: 6px;
}

.video__postdate {
	font-size: 13px;
	color: #888;
}

.video__share {
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
	margin-bottom: 15px;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.video__desc {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 15px;
}

/* Video Tag */
.video__tag:link,
.video__tag:visited {
	font-size: 13px;
	color: #333;
	background-color: rgba(51, 51, 51, .05);
	padding: 5px 10px;
	border-radius: 30px;
}

.video__tag:hover {
	color: #666;
}

.video__readmore {
	font-weight: 600;
}

/* Addthis Button */
.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
}


@keyframes fade-in-up {
	0% {
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (min-width: 768px) {
	body { height: unset; }
	.player-theatre { position: relative; }
	.player-theatre .container { padding: 0 15px; }
    .player-theatre.playing {
        position: relative;
    }
}

@media (min-width: 992px) {
	.player-theatre .container { width: 960px; }
}

@media (min-width: 1200px) {

}

@media (min-width: 1400px) {
	.video.stuck { bottom: 20px; right: 20px; }
}