.video_item img {
	display: inline-block; 
	height: 100px;
	position: relative; 
	vertical-align: middle;
    border-radius: 6px;
}

.icon_youtube { 
	background-image: url("./images/youtube.png");
	background-repeat: no-repeat;
	padding: 2px 10px;
    vertical-align: middle;
}

ul.video li:not(.no-entry) {
    font-size: inherit;
    line-height: inherit;
	width: 180px;
}

ul.video li.videolist {
    text-align: center;
	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 #8706FF;
    border-radius: 100%;
	height: 100px;
	width: 100px;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.copied {
    position: relative;
}

.copied::after {
	position: absolute;
	top: 12%;
	right: 130%;
	display: block;
	content: "copied";
	font-size: 0.75em;
	padding: 0 4px;
	color: #fff;
	background-color: rgb(var(--color-primary));
	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;
  }
}