h3.center {
	text-align: left;
	margin-top: 7px;
    white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

a {
    display: inline;
}

.video_item .content{
	font-size: 1.1em;
}

.video_item img {
	display: inline-block; 
	float: left;
	height: 76px;
	margin: 8px 8px;
	box-shadow: 0 0 8px #eac712;
	position: relative;
	border-radius: 15% 0 15% 0;
	vertical-align: middle;
	width: 102px;
	transition: transform 0.3s ease-in-out;
}

.video_item:hover img {
	transform: scale(2);
	border-radius: 15% 0 15% 0;
	z-index:10;
}

.video_item i.icon {
	color: #7aff7a !important;
}

.video_item span {
	color: #eac712 !important;
}

.buttons div.video-icon	{ 
	width: 96px; 
	height: 25px; 
}

.icon_youtube { 
	background-image: url("./images/youtube.png");
	background-repeat: no-repeat;
	padding: 2px 10px;
    vertical-align: middle;
}

ul.video {
    width:100%;
    text-align:center;
	list-style-type: none;
	padding-bottom: 6px;
}

ul.video li {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
	padding-bottom: 5px;
	max-width: 200px;
}

ul.video li.videolist {
    text-align:center;
	margin: 5px 3px 0;
	padding-top: 5px;
	padding-bottom: 2px;
	/* box-shadow: 0 0 4px #000000; */
	-webkit-border-radius: 6px;
    -o-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.videolists {
	box-shadow: 0 0 8px #ffca4f;
    border-radius: 15% 0 15% 0;
}

.videolists.Tutorial {
	box-shadow: 0 0 8px #aa0000;
}

.videolists.Informative {
	box-shadow: 0 0 8px #0000aa;
}

.videolists.Music {
	box-shadow: 0 0 8px #00aa00;
}

.videolists.Movie {
	box-shadow: 0 0 8px #8706FF;
}

.videolists.Uncategorized {
	box-shadow: 0 0 8px #ffffff;
}

/* Tip from: https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#codehtml {
    font-weight: bold;
}

.buttoncopy {
	font-size: 1em;
	padding: 1.5px 6px;
	margin: 0;
	outline: 0;
	box-shadow: none;
	padding-bottom: 4.5px;
	position: relative;
	background-color: #aaa;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}

@media all and (min-width : 350px) and (max-width : 850px) {
	#codes input{
		width: 80%;
	}
	.buttoncopy {
		padding-top: 2px;
		padding-bottom: 4px;
	}
}

.copied::after {
	position: absolute;
	top: 12%;
	right: 110%;
	display: block;
	content: "copied";
	font-size: 0.75em;
	padding: 0 2px 0 3px;
	color: #fff;
	background-color: #9900ff;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}

.d-flex {
	display: flex !important; 
}
  
.panel-container p {
	margin-bottom: 0;
}

.justify-content-between {
	justify-content: space-around !important; 
}

.post-meta {
    text-transform: uppercase;
    font-weight: bold;
    color: #105289; 
}

.post-meta li::before {
    content: "/";
    font-weight: bold;
    display: inline-block;
    font-size: 1.2em;
    margin: 0px 8px;
    line-height: 0px; 
}

.post-meta li:first-child::before {
    display: none;
}

.post-meta li a {
    letter-spacing: 1px; 
}

.video-date-span {
    top: 24px;
    right: 2px;
    color: #000;
    max-width: 380px;
    background: #EEF5F9;
    background-image: linear-gradient(to bottom, #D2E0EB 0%, #EEF5F9 100%);
    border: 1px solid #757e86;
}

#tabs.tabs li.tab {
	margin-left: 2px;
	margin-bottom: -1px;
}

#tabs.tabs li.tab.activetab {
	margin-left: 3px;
}

.column11 {
	float: left;
	clear: left;
	width: 49%;
    margin-top: 8px;
	border: 1px solid #757e86 !important;
	border-radius: 8px;
}

.column22 {
	float: right;
	clear: right;
	width: 49%;
    margin-top: 8px;
	border: 1px solid #757e86 !important;
}

@media all and (min-width : 350px) and (max-width : 900px) {
	h3.center {
		text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 75ch;
    }
}

@media all and (min-width : 350px) and (max-width : 400px) {
    .justify-content-between {
		display: none !important;
    }
}