.innova_youtube_header_banner {
	width: 100%;
    height: 175px;
    background-position: center center;
    -webkit-background-size: auto 100%;
            background-size: auto 100%;
}
.innova_youtube_header_banner.is-mobile-banner {
	display: none;
}
.innova_youtube_header_inner {
	padding: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.innova_youtube_header_logo {
    margin: 15px;
}
.innova_youtube_header_logo img {
    display: block;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.innova_youtube_header_info {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: 15px;
}
.innova_youtube_header_info .innova_youtube_header_channel_title a {
	font-size: 20px;
	overflow: hidden;
    white-space: nowrap;
    line-height: 24px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	text-decoration: none;
	color: #000;
}
.innova_youtube_header_info .innova_youtube_header_channel_title a:hover {
	text-decoration: underline;
}
.innova_youtube_header_info .innova_youtube_header_channel_properties {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
}
.innova_youtube_header_info .innova_youtube_header_channel_properties .innova_youtube_header_channel_properties_item {
    margin-left: 20px;
    padding: 5px 0;
}
.innova_youtube_header_info .innova_youtube_header_channel_properties .innova_youtube_header_channel_properties_item:first-child {
	margin-left: 0;
}
.innova_youtube_header_info .innova_youtube_header_channel_properties .innova_youtube_header_channel_properties_item:first-child .innova_youtube_header_channel_properties_item_divider{
	display: none;
}
.innova_youtube_header_subscribe {
	margin: 15px;
}
.innova_youtube_header_subscribe_button iframe {
    border: none;
    position: static;
    top: 0px;
    width: 119px;
    margin: 0px;
    border-style: none;
    left: 0px;
    visibility: visible;
    height: 24px;
}

.innova_youtube_item {
	width: 400px;
	height: 400px;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
    opacity: 1;
    float: none;
    display: inline-block;
    position: relative;
    top: initial;
    left: initial;
    vertical-align: top;
	overflow: hidden;
	cursor: pointer;
}
.innova_youtube_item_inner {
	padding: 0;
}
.innova_youtube_item_image {
	width: 100%;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}
.innova_youtube_item_image img {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
	width: 102% !important;
	height: auto;
	-webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 0;
	-webkit-backface-visibility: hidden;
}

.innova_youtube_item_image .innova_youtube_video_preview_play {
    display: block;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 0 18px 28px;
    border-color: transparent transparent transparent rgba(255,255,255,.5);
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border-left-color: rgba(255, 255, 255, 0.4);
}

.innova_youtube_item:hover .innova_youtube_item_image img {
    -webkit-transform: perspective(500px) scale3d(1.15, 1.15, 1) rotateZ(3deg) translate(-50%, -50%);
    transform: perspective(500px) scale3d(1.1, 1.1, 1) rotateZ(3deg) translate(-50%, -50%);
}

.innova_youtube_item:hover .innova_youtube_item_image .innova_youtube_video_preview_play {
	border-left-color: rgba(255, 255, 255, 0.8);
}

.innova_youtube_item_title {
	font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    line-height: 18px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	font-weight: 700;
	margin-top: 8px;
}
.innova_youtube_item:hover .innova_youtube_item_title {
	text-decoration: underline;
}

.innova_youtube_item_date {
	font-size: 11px;
	height: 18px;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.7);
	margin-top: 8px;
	overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.innova_youtube_item_description {
    overflow: hidden;
    margin-top: 8px;
    word-wrap: break-word;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    line-height: 1.4;
    font-size: 13px;
    height: 40px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
}
.innova_youtube_item_information {
	overflow: hidden;
}
.innova_youtube_item_information_bar {
    margin-top: 8px;
    height: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
   	margin: 8px -10px 0;
   	color: rgba(0, 0, 0, 0.7);
}
.innova_youtube_item_information_bar_views, .innova_youtube_item_information_bar_likes, .innova_youtube_item_information_bar_comments {
	margin: 0 10px;
	font-size: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.innova_youtube_item_information_bar_views span, .innova_youtube_item_information_bar_likes span, .innova_youtube_item_information_bar_comments span {
	line-height: 12px;
    margin-left: 10px;
    display: block;
}
.innova_youtube_item_information_bar_views svg {
	width: 18px;
    height: 18px;
	fill: currentColor;
}
.innova_youtube_item_information_bar_likes svg, .innova_youtube_item_information_bar_comments svg {
    width: 15px;
    height: 15px;
	fill: currentColor;
}
.innova_youtube_load_more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
}
.innova_youtube_load_more .innova_youtube_load_more_button {
	font-size: 14px;
    padding: 10px;
    background: rgba(0,0,0,0.47);
    color: #fff;
    cursor: pointer;
    -webkit-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s;
}
.innova_youtube_load_more .innova_youtube_load_more_button.is-loading-videos {
	color: transparent!important;
    pointer-events: none;
    position: relative;
}
.innova_youtube_load_more .innova_youtube_load_more_button.is-loading-videos:after {
	border-color: transparent transparent #fff #fff!important;
	left: -webkit-calc(50% - 8px);
	left: calc(50% - 8px);
	top: -webkit-calc(50% - 8px);
	top: calc(50% - 8px);
	position: absolute!important;
	-webkit-animation: spinAround .5s infinite linear;
	animation: spinAround .5s infinite linear;
	border: 2px solid #dbdbdb;
	-webkit-border-radius: 290486px;
	        border-radius: 290486px;
	border-right-color: transparent;
	border-top-color: transparent;
	content: "";
	display: block;
	height: 16px;
	position: relative;
	width: 16px;
}
.innova_youtube_load_more .innova_youtube_load_more_button:not(.is-loading-videos):hover {
    background: rgba(0,0,0,0.7);
}

.innova_youtube_temp_holder {
	display: none;
}

@media only screen and (max-width: 768px) {
	.innova_youtube_header_banner {
		display: none;
	}
	.innova_youtube_header_banner.is-mobile-banner {
		display: block;
	}
	.innova_youtube_header_inner {
	}
	.innova_youtube_header_logo {
	}
	.innova_youtube_header_info {
		text-align: center;
	}
	.innova_youtube_header_info .innova_youtube_header_channel_properties {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.innova_youtube_header_info .innova_youtube_header_channel_properties {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

@-webkit-keyframes spinAround {
	from {
		-webkit-transform:rotate(0);
		transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}
}
@keyframes spinAround {
	from {
		-webkit-transform:rotate(0);
		transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}
}