*{
	margin:0;
	padding:0;
	border:0;
}
body, html {
	height: 100%;
}

.pg-gallery{
	position: relative;
	left:0;
	top:0;
	font-family: Arial, Helvetica, sans-serif;
	direction: ltr!important;
	line-height: normal;
	overflow: hidden;
	min-height: 300px;
}
.pg-gallery a{
	border:none!important;
    box-shadow: none!important;
    text-decoration: none!important;
    outline: none!important;
}
.pg-gallery.pg-light{
	background: #fff;
}
.pg-gallery.pg-dark{
	background: #333;
}

/* header */
.pg-header-banner{
	height: 250px;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity ease-out 0.5s;
    display: none;
}
.pg-header-banner-shown{
	opacity: 1!important;
}
.pg-header-content-left{
	display: flex;
    flex: 1;
    align-items: center;
}
.pg-header-content{
	display: flex;
	flex-wrap: nowrap;
	align-items: center; 
	padding: 10px 20px;
	min-height: 100px;
	box-sizing:content-box;
	opacity: 0;
}
.pg-light .pg-header-content{
	background: #EEF1F2;
}
.pg-dark .pg-header-content{
	background: #333;
}
.pg-header-logo{
	overflow: hidden;
    border-radius: 100%;
    flex-shrink: 0;
    margin-right: 16px;
}
.pg-header-logo img{
	display: block;
}
.pg-header-info{
	flex-grow: 1;
	text-align: left;
}

.pg-header-info-title{
	display: -webkit-box!important;
    overflow: hidden;
    line-height: 28px;
    max-height: 28px;
    font-size: 20px;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.pg-header-info-title a{
	color: inherit!important;
	text-decoration: none!important;
}
.pg-header-info-title a:hover{
    text-decoration: underline!important;
}
.pg-light .pg-header-info-title{
	color: rgb(17, 17, 17);
}
.pg-dark .pg-header-info-title{
	color: #fff;
}

.pg-header-info-description{
	font-size: 13px;
    font-weight: 600; 
    margin-bottom: 5px;
    display: none;
}
.pg-light .pg-header-info-description{
	color: rgba(17,17,17,0.7);
}
.pg-dark .pg-header-info-description{
	color: #ccc;
}

.pg-header-info-stats{
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
}
.pg-header-info-stats-divider{
	margin: 0 5px;
}
.pg-header-info-stats-videos{
}
.pg-header-info-stats-followers{
}
.pg-light .pg-header-info-stats{
	color: rgba(17,17,17,0.7);
}
.pg-dark .pg-header-info-stats{
	color: #999;
}

.pg-social-section{
	display: flex;
	margin-left: 15px;
	flex-direction: column;
}
.pg-social-section-top{
	display: flex;
    flex: 1;
    margin-left: auto;
}
@media (max-width: 600px) { 
	.pg-header-content{
		flex-direction: column;
	}
	.pg-header-content-right{
		margin-top: 15px;
		margin-left: auto;
	}
}

.break {
    flex-basis: 100%;
    height: 0;
}


.pg-subscribe,
.pg-follow{
	display: none;
    padding: 10px 13px;
    line-height: 1;
    border: 0;
    border-radius: 3px;
    -webkit-appearance: none;
    min-height: 13px;
    margin: 0;
    color: #fff!important;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}
.pg-subscribe:hover,
.pg-follow:hover{
	opacity: 0.9;
}
.pg-follow{
	background-color: #00ADEF;
}
.pg-subscribe{
	background-color: #ff0000;
}




.pg-share-button{
	position: relative;
	width: 30px;
	height: 30px;
	display: inline-block;
	float: left;
	margin-left: 5px;
	cursor: pointer;
	border-radius: 3px;
}
.pg-share-button:hover{
	opacity: 0.9;
}
.pg-share-button svg{
	height:18px;
	position: absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color:#fff;
    fill:currentColor;
}
.pg-share-facebook{
	background:#3b5998!important;
}
.pg-share-twitter{
	background:#55acee!important;
}
.pg-share-tumblr{
	background:#35465c!important;
}
.pg-share-whatsapp{
	background:#25d366!important;
}






/* playlists */
.pg-section-playlists{
	display: flex;
    padding: 10px 20px!important;
    opacity: 0;
}
.pg-section-playlist-list-item{
    color: #666;
    display: inline-block;
    margin: 3px;
    cursor: pointer;
    height: 20px;
    overflow: hidden;
    line-height: 20px;
    box-sizing: content-box;
    border-radius: 2px;
    font-size: 14px;
    padding: 5px 11px;
}
.pg-vimeo .pg-playlist-active,
.pg-vimeo .pg-section-playlist-list-item:hover{
	color: #fff!important;
    background-color: #964b89!important;
}
.pg-yt .pg-playlist-active,
.pg-yt .pg-section-playlist-list-item:hover{
	color: #fff!important;
    background-color: #ff0000!important;
}
.pg-playlist-active{
	cursor: default;
}

/* select */
.pg-section-playlist-select{
	width: 90%;
    font-size: 14px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: auto;
    padding: 8px;
    outline: 0;
    background-color: #fff;
    display: none;
}
.pg-section-playlist-select>option {
    background: #fff;
    color: #5a5a5a;
    cursor: pointer;
}
@media (max-width: 700px) { 
	.pg-section-playlist-list{
		display: none;
	}
	.pg-section-playlist-select{
    	display: block;
	}
}




/* search */

.pg-section-search{
	display: flex;
    flex-direction: row-reverse;
    padding: 0 20px!important;
    margin: 10px 0;
}
.pg-section-search-hidden{
	display: none;
}
.pg-section-search-field{
	position: relative;
	width: 30%;
	display: flex;
}
@media (max-width: 800px) { 
	.pg-section-search-field{
		width: 50%;
	}
}
.pg-section-search-input{
	border-radius: 2px;
    border: 1px solid rgba(175,175,175,.3);
    outline: 0;
    padding: 6px 11px;
    width: 100%;
    color: #aaa;
    line-height: 1;
    font-size: 13px;
    box-sizing: border-box;
}
.pg-light .pg-section-search-input{
	background-color: #fff;
}
.pg-dark .pg-section-search-input{
	background-color: #2b2b2b;
}
.pg-section-search-button{
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 10px;
    width: 12px;
    height: 12px;
    display: inline-block;
    cursor: pointer;
    box-sizing: content-box;
}
.pg-section-search-button svg{
	position: absolute;
	height: 14px;
	fill: currentColor;
}
.pg-light .pg-section-search-button{
	color: #aaa;
}
.pg-dark .pg-section-search-button{
	color:#aaa;
}




    
.pg-playlist-wrap{
	padding: 0px;
}
.pg-playlist-holder{
	position: relative;
	overflow: hidden;
}
.pg-playlist-inner{
    overflow: hidden;
    width: 100%;
    position: relative;
    box-sizing:border-box;
    height: 0;
	transition: height ease-out 0.3s;
	min-height: 200px;
}
.pg-playlist-content{
	position: relative;
	width: 100%;
	overflow: hidden;
	display: none;
	opacity: 0;
}
.pg-slide{
	transition-property: transform;
	transition-timing-function: ease-out;
    transition-duration: 0.4s;
}
.pg-alpha{
	/*transition-property: transform;
	transition-timing-function: ease-out;
    transition-duration: 0.01s;*/
}
.pg-cont{
	position: relative;	
	height: 100%;	
	float: left;
}



/* box */
.pg-dbt .pg-box{
	float: left;
	cursor: pointer;
	padding: 10px;
	box-sizing:border-box;
	transition: opacity 300ms ease-in;
	-webkit-backface-visibility: hidden;
}
.pg-light.pg-dbt .pg-box{
	background: #EEF1F2;
}
.pg-light.pg-dbt .pg-box:hover{
	background:#e6e6e6;
}
.pg-dark.pg-dbt .pg-box{
	background: #2b2b2b;
}
.pg-dark.pg-dbt .pg-box:hover{
	background:#e6e6e6;
}
.pg-dbt .pg-box-a{
	transition:none;
}
.pg-hidden{
	opacity: 0;
}
.pg-dbt .pg-thumb{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}
.pg-dbt .pg-thumbimg{
	position: absolute;
    width: 100%;
    width: calc(100% + 2px);
    min-height: 100%;
	display: block;
	top:50%;
	transform:translateY(-50%);
	user-select: none;
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	transition: opacity 500ms ease-in;
}

.pg-play{
	display: block;
    position: absolute;
    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,.3);
    transform: translate(-50%,-50%);
    transition: all .2s ease;
}
.pg-dbt .pg-box:hover .pg-play {
    border-color: transparent transparent transparent rgba(255,255,255,.5);
}



.pg-video-inline{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	background: #111;
}



/* dbt */

.pg-dbt .pg-box:hover .pg-thumbimg{
    transform: translateY(-50%) scale(1.1);
    transition: all .2s ease-in; 
}
.pg-dbt .pg-time{
	position: absolute;
	bottom: 5px;
	right: 10px;
	color: #fff;
	background: rgba(0,0,0,0.2);
	padding: 2px 5px;
	font-size: 13px;
	line-height: normal;
}
.pg-dbt .pg-info {
	text-align: left;
	line-height: normal;
	overflow: hidden;
	height:80px;
	margin-top: 5px;
}
.pg-dbt .pg-title {
	font-size: 15px;
}
.pg-dbt .pg-published-at {
	color: #b1b1b1;
	font-size: 14px;
	display: block;
	margin-top: 3px;
}
.pg-dbt .pg-description{
	color:#777;
	font-size:12px;
	display: block;
	margin-top: 5px;
}



/* dot */
.pg-dot .pg-box{
	position: relative;
	background: #eee;
	float: left;
	cursor: pointer;
	box-sizing:border-box;
	transition: opacity 300ms ease-in;
	-webkit-backface-visibility: hidden;
}
.pg-dot .pg-box-a{
	transition:none;
}







.pg-dot .pg-thumb{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}
.pg-dot .pg-thumbimg{
	position: absolute;
    width: 100%;
    width: calc(100% + 2px);
    min-height: 100%;
	display: block;
	top:50%;
	transform:translateY(-50%);
	user-select: none;
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	transition: opacity 500ms ease-in;
}
.pg-dot .pg-time{
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #fff;
	background: rgba(0,0,0,0.4);
	padding: 2px 5px;
	font-size: 13px;
	line-height: normal;
}
.pg-dot .pg-box:hover .pg-time{
    display: none;
}
.pg-dot .pg-info-wrap{
	position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    width: 100%;
	overflow:hidden;
	box-sizing: border-box;
	text-align: center;
	line-height: normal;
	display: flex;
	flex-direction:column;
	justify-content: space-between;
	max-height: 100%;
}
.pg-dot .pg-box.pg-inline-video .pg-info-wrap{
	display: none;
}

/* item info animation */

.pg-dot .pg-info-wrap{
	opacity: 0;
	height:100%;
	transition: opacity 200ms ease-out;
}
.pg-dot .pg-box:hover .pg-info-wrap{
	opacity: 1;
}
.pg-dot .pg-box:hover .pg-play {
    display: none;
}
.pg-dot .pg-box:hover .pg-thumbimg{
    transform: translateY(-50%) scale(1.1);
    transition: all .2s ease-in; 
}
.pg-dot.pg-light .pg-info-wrap{
	background: rgba(255, 255, 255, 0.9);
}
.pg-dot.pg-dark .pg-info-wrap{
	background: rgba(0,0,0,0.7);
}






.pg-dot .pg-info {
	position: relative;
    left: 0;
    top: 0;
    width: 100%;
	max-height:100px;
}
.pg-dot .pg-title {
	font-size: 17px;
	display: block;
	margin-top: 5px;
}
.pg-vimeo .pg-title {
	color: #00ADEF;
}
.pg-yt .pg-title {
	color: #03a9f4;
}
.pg-dot .pg-published-at {
	font-size: 13px;
	display: block;
	margin-top: 3px;
}
.pg-dot .pg-description{
	font-size:13px;
	display: block;
	margin-top: 5px;
	overflow: hidden;
}
.pg-dark.pg-dot .pg-published-at {
	color: #f3f3f3;
}
.pg-dark.pg-dot .pg-description{
	color:#a9a8a8;
}
.pg-light.pg-dot .pg-published-at {
	color: #a9a8a8;
}
.pg-light.pg-dot .pg-description{
	color:#6a6a6a;
}




/* stats */
.pg-stats{
	color:#a9a8a8;
	position: relative;
    font-size: 13px!important;
	display: flex; 
	justify-content: space-between; 
	margin-top: 8px;
}
.pg-stats-plays-icon,
.pg-stats-likes-icon,
.pg-stats-comments-icon{
    position: relative;
    float: left;
    margin-right: 5px;
}
.pg-stats-plays-icon svg,
.pg-stats-likes-icon svg,
.pg-stats-comments-icon svg{
	width:15px;
	fill:currentColor;
}



/* nav */
.pg-prev,
.pg-next{
	position: absolute;
    transition: background-color 100ms ease-out;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100%;
    line-height: 40px;
    cursor: pointer;
    display: none;
    user-select: none;
}
.pg-prev.pg-h,
.pg-next.pg-h{
	top: 50%;
    transform: translateY(-50%);
}
.pg-prev.pg-h{
    left: 5px;
}
.pg-next.pg-h{
    right: 5px;
}
.pg-prev.pg-v,
.pg-next.pg-v{
	left: 50%;
    transform: translateX(-50%);
}
.pg-prev.pg-v{
    top: 5px;
}
.pg-next.pg-v{
    bottom: 5px;
}
.pg-prev svg,
.pg-next svg{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	fill:currentColor;
}
.pg-prev.pg-h svg,
.pg-next.pg-h svg{
	height: 30px;
}
.pg-prev.pg-v svg,
.pg-next.pg-v svg{
	width: 15px;
}

.pg-light .pg-prev,
.pg-light .pg-next{
	background: rgba(255,255,255,0.9);
	box-shadow: 0px 0px 5px 0px rgba(153, 153, 153, 0.2);
}
.pg-light .pg-prev:hover,
.pg-light .pg-next:hover{
	background: rgba(255,255,255,1);
}
.pg-light .pg-prev svg,
.pg-light .pg-next svg{
	color:#666;
}

.pg-dark .pg-prev,
.pg-dark .pg-next{
	background: #444;
	box-shadow: 0px 0px 5px 0px rgba(75,75,75, 0.2);
}
.pg-dark .pg-prev:hover,
.pg-dark .pg-next:hover{
	background: #555;
}
.pg-dark .pg-prev svg,
.pg-dark .pg-next svg{
	color:#ccc;
}




.pg-pagination-nav{
	text-align: center;
	margin: 10px 0 40px 0;
}
.pg-nav-number{
	text-align: center;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 2px;
    margin: 0 3px;
    color: #aaa;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    display: inline-block;
}
.pg-light .pg-nav-number{
	border: 1px solid #eee;
}
.pg-dark .pg-nav-number{
	border: 1px solid #555;
}
.pg-nav-number:not(.pg-nav-break):hover{
	background-color: #444;
	color: #fff;
}
.pg-nav-number.pg-nav-item-active{
	background-color: #444;
	color: #fff;
	cursor: default;
}
.pg-nav-break{
	border: none!important;
    padding: 0!important;
    cursor: default!important;
}




/* lightbox */

.pg-lightbox-wrap{
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646!important;
    opacity:0;
    display: none;
    transition: opacity .3s ease-out;
    direction: ltr!important;
    line-height: normal;
}
.pg-lightbox{
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll; 
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    padding: 50px 0;
}
.pg-lightbox-inner{
	position: relative;
    box-sizing: border-box;
    left: 50%;
    max-width: 920px;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.pg-lightbox-content{
	position: relative;
}
.pg-lightbox-content-inner{
	position: relative;
	padding-bottom: 56.25%;
	background-color: #111;
}
.pg-lightbox iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}
.pg-lightbox-close{
	position: absolute;
	top:0;
	right:-40px;
	width:40px;
	height: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
}
.pg-lightbox-prev{
	position: absolute;
	top:50%;
	left:-40px;
	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	width:40px;
	height: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
}
.pg-lightbox-next{
	position: absolute;
	top:50%;
	right:-40px;
	width:40px;
	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	height: 40px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
}
.pg-lightbox-close svg,
.pg-lightbox-prev svg,
.pg-lightbox-next svg{
	width:100%;
	height:100%;
	color:#aaa;
	fill:currentColor;
}
@media (max-width: 1000px) { 
	.pg-lightbox-close{
		right: auto;
		top:-50px;
	    left: 50%;
	    margin-top: 5px;
	    margin-left: -20px;
	}
	.pg-lightbox-prev{
	    top:-50px;
	    margin-top: 5px;
	    left: 50%;
	    margin-left: -100px;
     	-webkit-transform: none;
     	-ms-transform: none;
     	transform: none;
    }
    .pg-lightbox-next{
	    top:-50px;
	    left: 50%;
	    right: auto;
	    margin-top: 5px;
	    margin-left: 60px;
     	-webkit-transform: none;
     	-ms-transform: none;
     	transform: none;
    }
}

.pg-light .pg-lightbox-info{
	background: #fff;
}
.pg-dark .pg-lightbox-info{
	background: #333;
}

.pg-lightbox-info a{
	box-shadow: none!important;
	text-decoration: none!important;
	color: inherit!important;
}
.pg-lightbox-info a:hover{
	color: inherit!important;
}
.pg-lightbox-info{
	box-sizing: border-box;
	padding-right: 40px;
    padding-left: 40px;
}
@media (max-width: 700px) { 
	.pg-lightbox-info{
		padding-right: 20px;
    	padding-left: 20px;
	}
}
.pg-yt .pg-lightbox-info{
	font-family: Roboto, Arial, sans-serif;
}
.pg-yt .pg-lightbox-video-title{
	font-size: 18px;
	font-weight: 500;
	padding: 15px 0 0 0;
	margin: 0!important;
	line-height: normal;
}
.pg-yt.pg-light .pg-lightbox-video-title{
	color: #222;
}
.pg-yt.pg-dark .pg-lightbox-video-title{
	color: #fff;
}
.pg-yt .pg-lightbox-video-uploaded-date{
	font-size: 13px;
	margin: 0;
}
.pg-yt.pg-light .pg-lightbox-video-uploaded-date{
	color: #bbb;
}
.pg-yt.pg-dark .pg-lightbox-video-uploaded-date{
	color: #bbb;
}
.pg-yt .pg-lightbox-user-info{
	padding: 15px 0;
    overflow: hidden;
    display: flex;
    clear: both;
}
.pg-yt .pg-lightbox-user-info-left{
	display: flex;
	align-items:center;
	flex: 1;
}
.pg-yt .pg-lightbox-user-info-avatar{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	overflow: hidden;
	flex-shrink:0;
}
.pg-yt .pg-lightbox-user-info-avatar img{
	max-width: none;
    max-height: 100%;
}
.pg-yt .pg-lightbox-user-info-name-wrap{
	float: left;
	margin-left: 15px;
}
.pg-yt .pg-lightbox-user-info-name{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}
.pg-yt.pg-light .pg-lightbox-user-info-name{
	color:#444;
}
.pg-yt.pg-dark .pg-lightbox-user-info-name{
	color:#fff;
}
.pg-yt .pg-lightbox-user-follow-btn{
    display: inline-block;
	margin-left: auto;
}
.pg-yt .pg-lightbox-user-follow-icon{
	position: relative;
	top:2px;
	margin-right: 4px;
}
.pg-yt .pg-lightbox-user-follow{
    position: relative;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.1px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    background-color: #f00;
    color: #fff;
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0;
    border-radius: 2px;
    padding: 3px 15px;
    cursor: pointer;
}
.pg-yt .pg-lightbox-user-follow a{
    color:inherit;
}
.pg-yt .pg-lightbox-user-follow span{
    opacity: 0.9;
}
@media (max-width: 500px) { 
	.pg-yt .pg-lightbox-user-info {
 	    flex-direction: column;
	}
	.pg-yt .pg-lightbox-user-follow-btn{
		margin-left: 65px;
		margin-top: 5px;
    	display: inherit;
	}
}






/* stats */

.pg-yt .pg-lightbox-stats{
    display: flex; 
    padding: 15px 0 10px 0;
    align-items:center;
    line-height: normal;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.pg-yt.pg-light .pg-lightbox-stats{
    border-bottom-color:  #e3e8e9;
}
.pg-yt.pg-dark .pg-lightbox-stats{
    border-bottom-color: #555;
}
.pg-yt .pg-lightbox-video-stats-wrap{
	position: relative;
}
.pg-yt .pg-lightbox-video-stats-likes-wrap,
.pg-yt .pg-lightbox-video-stats-dislike-wrap{
    margin-right: 18px;
}
.pg-yt .pg-lightbox-video-stats{
	display: inline-block;
}
.pg-yt .pg-lightbox-video-stats-plays-wrap{
	font-size: 16px;
	display: inline-block;
	margin: 0;
}
.pg-yt.pg-light .pg-lightbox-video-stats-plays-wrap{
	color:#aaa;
}
.pg-yt.pg-dark .pg-lightbox-video-stats-plays-wrap{
	color:#aaa;
}
.pg-yt .pg-lightbox-video-stats-right{
	display: inline-block;
	margin-left: auto;
}
.pg-yt .pg-lightbox-video-stats-right-inner{
	position: relative;
	padding: 5px;
	display: inline-block;
}
.pg-lightbox-video-stats-likes-wrap{
	display: inline-block;
	position: relative;
}
.pg-lightbox-video-stats-icon svg{
	position: relative;
	top: 2px;
	fill:currentColor;
	width: 14px;
    color: inherit!important;
    display: inline-block;
    max-width:none!important;
}
.pg-yt .pg-lightbox-video-stats-icon{
    margin-right: 5px;
}
.pg-yt.pg-light .pg-lightbox-video-stats-icon{
	color: #aaa;
}
.pg-yt.pg-dark .pg-lightbox-video-stats-icon{
	color: #aaa;
}
.pg-yt .pg-lightbox-video-stats-val{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}
.pg-yt.pg-light .pg-lightbox-video-stats-val{
    color:#aaa;
}
.pg-yt.pg-dark .pg-lightbox-video-stats-val{
    color:#aaa;
}
.pg-yt .pg-lightbox-video-stats-ratio{
	position: absolute;
	display: inline-block;
    height: 2px;
    bottom: -11px;
    left: 0;
    width: calc(100% - 10px);
    background-color: #ccc;
}
.pg-yt .pg-lightbox-video-stats-ratio-bg{
	height: 16px;
    position: absolute;
    top: -5px;
    width: 100%;
    display: block;
    background-color: rgba(0,0,0,0);
}
.pg-yt .pg-lightbox-video-stats-ratio-val{
	height: 100%;
    position: absolute;
    width: 128px;
    display: block;
    background-color: #2793e6;
}
@media (max-width: 500px) { 
	.pg-yt .pg-lightbox-stats{
		flex-direction:column;
	}
	.pg-yt .pg-lightbox-video-stats-right{
		margin-left: 0;
	}
}



/* share */
.pg-yt .pg-lightbox-video-share-toggle{
	user-select: none;
	position: relative;
    padding: 5px;
	cursor: pointer;
	display: inline-block;
}
.pg-yt .pg-lightbox-video-share-toggle-bg{
	height: 40px;
    background: rgba(255, 0, 0, 0);
    width: 100%;
    top: -5px;
    position: absolute;
}
.pg-yt .pg-lightbox-video-share-inner{
    float: right;
    margin-top: 5px;
    display: none;
}

/* description */

.pg-yt .pg-lightbox-video-desc-wrap{
	padding: 0 0 20px 0;
	position: relative;
	clear: both;
}
.pg-yt .pg-lightbox-video-desc{
	position: relative;
}
.pg-yt .pg-lightbox-video-desc-inner{
	font-size: 14px;
	white-space: pre-wrap;
	overflow: hidden;
}
.pg-yt.pg-light .pg-lightbox-video-desc-inner{
	color:#333;
}
.pg-yt.pg-dark .pg-lightbox-video-desc-inner{
	color:#eee;
}
.pg-yt .pg-lightbox-video-desc:after{
	position: absolute;
    z-index: 3;
    bottom: 0;
    width: 100%;
    height: 100px;
    content: '';
}
.pg-yt.pg-light .pg-lightbox-video-desc:after{
    background-image: linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 70%);
}
.pg-yt.pg-dark .pg-lightbox-video-desc:after{
    background-image: linear-gradient(to bottom,rgba(51,51,51,0) 0,#333 70%);
}
.pg-yt .pg-lightbox-video-desc-full:after{
    display: none;
}
.pg-yt .pg-lightbox-video-desc-read-more{
	color: #999;
	position: absolute;
	z-index: 4;
    bottom: 0;
    font-weight: 600;
    font-size:13px;
}
.pg-yt.pg-light .pg-lightbox-video-desc-read-more{
	color: #999;
}
.pg-yt.pg-dark .pg-lightbox-video-desc-read-more{
	color: #777;
}
.pg-yt.pg-light .pg-lightbox-video-desc-read-more:hover{
	color: #08c;
}
.pg-yt.pg-dark .pg-lightbox-video-desc-read-more:hover{
	color: #08c;
}


/* comment */

.pg-yt .pg-lightbox-video-comments-holder{
    padding-bottom: 40px;
    border-top-style: solid;
    border-top-width: 1px;
}
.pg-yt.pg-light .pg-lightbox-video-comments-holder{
    border-top-color: #e3e8e9;
}
.pg-yt.pg-dark .pg-lightbox-video-comments-holder{
    border-top-color: #555;
}
.pg-yt .pg-lightbox-video-comment-count{
	padding: 20px 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.pg-yt.pg-light .pg-lightbox-video-comment-count{
    color: #444;
}
.pg-yt.pg-dark .pg-lightbox-video-comment-count{
    color: #fff;
}
.pg-yt .pg-lightbox-video-comment-load-more{
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    line-height: 2.71429;
    border-style: solid;
    border-width: 1px;
    transition: all 0.1s ease-in-out;
    display: none;
    cursor: pointer;
}
.pg-yt.pg-light .pg-lightbox-video-comment-load-more{
    color:#8699a6;
    border-color: rgb(134, 153, 166);
}
.pg-yt.pg-dark .pg-lightbox-video-comment-load-more{
    color:#8699a6;
    border-color: rgb(134, 153, 166);
}
.pg-yt.pg-light .pg-lightbox-video-comment-load-more:hover{
    background-color: rgb(208, 216, 219);
    color: rgb(26, 46, 59);
    border-color: rgb(208, 216, 219);
}
.pg-yt.pg-dark .pg-lightbox-video-comment-load-more:hover{
    background-color: rgb(208, 216, 219);
    color: rgb(26, 46, 59);
    border-color: rgb(208, 216, 219);
}
.pg-yt .pg-lightbox-video-comment-wrap{
	padding-top: 10px;
	padding-bottom: 20px;
}
.pg-yt .pg-lightbox-video-comment{
	position: relative;
    display: flex;
    flex-wrap: nowrap;
    font-size: 14px;
}
.pg-yt .pg-lightbox-video-comment-avatar{
    flex: 0 0 40px;
    margin-right: 15px;
}
.pg-yt .pg-lightbox-video-comment-avatar img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: block;
    margin-top: 16px;
}
   
.pg-yt .pg-lightbox-video-comment-detail-wrap{
    flex: 1;
    padding: 15px 0 10px 0;
}
.pg-yt .pg-lightbox-video-comment-user{
    font-size: 14px;
    line-height: 1.42857;
    font-weight: 600;
}
.pg-yt.pg-light .pg-lightbox-video-comment-user{
    color: #333;
}
.pg-yt.pg-dark .pg-lightbox-video-comment-user{
    color: #ddd;
}
.pg-yt .pg-lightbox-video-comment-user a{
	color: inherit!important;
}
.pg-yt .pg-lightbox-video-comment-time{
	font-weight: 400;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1.33333;
}
.pg-yt.pg-light .pg-lightbox-video-comment-time{
    color: #8699a6;
}
.pg-yt.pg-dark .pg-lightbox-video-comment-time{
    color: #bbb;
}
.pg-yt .pg-lightbox-video-comment-desc{
	margin-top: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}
.pg-yt.pg-light .pg-lightbox-video-comment-desc{
	color: #333;
}
.pg-yt.pg-dark .pg-lightbox-video-comment-desc{
	color: #777;
}


/* lightbox info */

.pg-vimeo .pg-lightbox-info{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.pg-vimeo .pg-lightbox-video-title{
	font-size: 26px;
	font-weight: 500;
	padding: 10px 0 0 0;
    margin: 00!important;
    line-height: normal;
}
.pg-vimeo.pg-light .pg-lightbox-video-title{
	color: #222;
}
.pg-vimeo.pg-dark .pg-lightbox-video-title{
	color: #fff;
}
.pg-vimeo .pg-lightbox-video-uploaded-date{
	font-size: 14px;
    margin: 0 0 0 8px;
    padding-top: 10px;
    line-height: normal;
}
.pg-vimeo.pg-light .pg-lightbox-video-uploaded-date{
	color: #8699A6;
}
.pg-vimeo.pg-dark .pg-lightbox-video-uploaded-date{
	color: #bbb;
}
.pg-vimeo .pg-lightbox-user-info{
	padding: 5px 0 20px 0;
    overflow: hidden;
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.pg-vimeo.pg-light .pg-lightbox-user-info{
    border-bottom-color: #e3e8e9;
}
.pg-vimeo.pg-dark .pg-lightbox-user-info{
    border-bottom-color: #555;
}
.pg-vimeo .pg-lightbox-user-info-avatar{
	width: 30px;
	height: 30px;
	border-radius: 100%;
	overflow: hidden;
	flex-shrink: 0;
	margin: 5px;
}
.pg-vimeo .pg-lightbox-user-info-avatar img{
	max-width: none;
    max-height: 100%;
}
.pg-vimeo .pg-lightbox-user-info-name{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin-left: 10px;
}
.pg-vimeo.pg-light .pg-lightbox-user-info-name{
	color:#1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-user-info-name{
	color:#fff;
}
.pg-vimeo .pg-lightbox-user-info-name a{
	color: inherit!important;
}
.pg-vimeo .pg-lightbox-user-follow-btn{
    display: inline-block;
	margin-left: 10px;
	white-space: nowrap;
}
.pg-vimeo .pg-lightbox-download-btn{
    display: inline-block;
	margin-left: 5px;
}
.pg-vimeo .pg-lightbox-user-follow-icon{
	position: relative;
	top:2px;
	margin-right: 4px;
	display: inline-block;
}
.pg-vimeo .pg-lightbox-user-follow{
    position: relative;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.1px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(0, 173, 239);
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
    padding: 7px 10px;
    cursor: pointer;
}
.pg-vimeo .pg-lightbox-user-follow:hover{
    opacity:0.9;
}
.pg-vimeo .pg-lightbox-user-follow-icon svg{
	width: 14px;
    height: 14px;
    fill: currentColor;
    display: inline-block;
}
.pg-vimeo .pg-lightbox-download{
    position: relative;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.1px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    background-color: #964b89;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
    padding: 7px 10px;
    cursor: pointer;
}
.pg-vimeo .pg-lightbox-download:hover{
    opacity:0.9;
}





/* stats */
.pg-vimeo .pg-lightbox-video-stats-wrap{
	padding: 20px 0;
	overflow: hidden;
}
.pg-vimeo .pg-lightbox-video-stats-wrap-inner{
	padding: 5px;
    margin-right: 15px;
    transition: all .1s ease-in-out;
    border-radius: 3px;
    cursor: pointer;
}
.pg-vimeo.pg-light .pg-lightbox-video-stats-wrap-inner{
    color: #1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-stats-wrap-inner{
    color: #aaa;
}
.pg-vimeo.pg-light .pg-lightbox-video-stats-wrap-inner:hover{
    background: #f0f2f4;
}
.pg-vimeo.pg-dark .pg-lightbox-video-stats-wrap-inner:hover{
    background: #eef1f2;
    color: #1a2e3b;
}
.pg-vimeo .pg-lightbox-video-stats{
	display: inline-block;
	margin-top: 8px;
	margin-bottom: 12px;
}
.pg-vimeo .pg-lightbox-video-stats-plays-wrap,
.pg-vimeo .pg-lightbox-video-stats-likes-wrap,
.pg-vimeo .pg-lightbox-video-stats-comments-wrap{
	display: inline-block;
}
.pg-vimeo .pg-lightbox-video-stats-icon{
    margin-right: 2px;
}
.pg-vimeo .pg-lightbox-video-stats-val{
    font-size: 16px;
    font-weight: normal;
    line-height: 1.25;
    margin-left: 5px;
}



/* share */
.pg-vimeo .pg-lightbox-video-share-toggle{
	display: inline-block;
	float: right;
	position: relative;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(238, 241, 242);
	color: #1A2E3B;
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
    padding: 4px 17px;
    cursor: pointer;
    user-select: none;
}
.pg-vimeo .pg-lightbox-video-share-toggle:hover{
    background-color: rgb(227, 232, 233);
    color: #1a2e3b;
}

.pg-vimeo .pg-lightbox-video-share-holder{
	float: right;
}
.pg-vimeo .pg-lightbox-video-share-inner{
	margin-top: 8px;
	clear: both;
    float: right;
    display: none;
}
.pg-vimeo .pg-lightbox-video-share-btn{
	display: inline-block;
	float: right;
	position: relative;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(238, 241, 242);
	color: #1A2E3B;
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
    padding: 4px 17px;
    cursor: pointer;
    user-select: none;
}
.pg-vimeo .pg-lightbox-video-share-btn:hover{
    background-color: rgb(227, 232, 233);
    color: #1a2e3b;
}





/* description */

.pg-vimeo .pg-lightbox-video-desc-wrap{
	padding: 10px 0 20px 0;
	position: relative;
}
.pg-vimeo .pg-lightbox-video-desc{
	position: relative;
}
.pg-vimeo .pg-lightbox-video-desc-inner{
	font-size: 14px;
	white-space: pre-wrap;
	overflow: hidden;
}
.pg-vimeo.pg-light .pg-lightbox-video-desc-inner{
	color:#1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-desc-inner{
	color:#777;
}
.pg-vimeo .pg-lightbox-video-desc:after{
	position: absolute;
    z-index: 3;
    bottom: 0;
    width: 100%;
    height: 100px;
    content: '';
}
.pg-vimeo.pg-light .pg-lightbox-video-desc:after{
    background-image: linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 70%);
}
.pg-vimeo.pg-dark .pg-lightbox-video-desc:after{
    background-image: linear-gradient(to bottom,rgba(51,51,51,0) 0,#333 70%);
}
.pg-vimeo .pg-lightbox-video-desc-full:after{
    display: none;
}
.pg-vimeo .pg-lightbox-video-desc-read-more{
	position: absolute;
	z-index: 4;
    bottom: 0;
    font-size:14px;
    font-weight: 500;
}
.pg-vimeo.pg-light .pg-lightbox-video-desc-read-more{
	color: #1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-desc-read-more{
	color: #ddd;
}
.pg-vimeo.pg-light .pg-lightbox-video-desc-read-more:hover{
	color: #08c;
}
.pg-vimeo.pg-dark .pg-lightbox-video-desc-read-more:hover{
	color: #08c;
}





/* category */

.pg-vimeo .pg-lightbox-video-category-wrap{ 
    padding: 25px 0 15px 0;
}
.pg-vimeo .pg-lightbox-video-category{ 
	font-size: 14px;
    font-weight: 500;
    line-height: 1.33333;
    color: #1a2e3b;
    margin-top: 15px;
}
.pg-vimeo .pg-lightbox-video-category a{ 
    color: inherit!important;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 5px;
    margin-right: 5px;
}
.pg-vimeo .pg-lightbox-video-category span{  
	display: inline-flex;
    position: relative;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.1px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(238, 241, 242);
    color: #1a2e3b;
    font-size: 14px;
    line-height: 2.14286;
    width: auto;
    margin: 0px;
    transition: all 0.1s ease-in-out;
    padding: 0px 10px;
    border-radius: 66px;
}
.pg-vimeo .pg-lightbox-video-category span:hover{
    background-color: rgb(227, 232, 233);
    color: #1a2e3b;
}


/* comment */

.pg-vimeo .pg-lightbox-video-comments-holder{
    border-top-style: solid;
    border-top-width: 1px;
    padding-bottom: 40px;
}
.pg-vimeo.pg-light .pg-lightbox-video-comments-holder{
    border-top-color: #e3e8e9;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comments-holder{
    border-top-color: #555;
}
.pg-vimeo .pg-lightbox-video-comment-count{
	padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33333;
    margin: 0;
}
.pg-vimeo.pg-light .pg-lightbox-video-comment-count{
    color: #1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comment-count{
    color: #fff;
}
.pg-vimeo .pg-lightbox-video-comment-load-more{
    font-weight: 700;
    text-align: center;
    color:#8699a6;
    font-size: 14px;
    line-height: 2.71429;
    border: 1px solid #8699a6;
    border-radius: 3px;
    transition: all 0.1s ease-in-out;
    border-color: rgb(134, 153, 166);
    display: none;
    cursor: pointer;
}
.pg-vimeo .pg-lightbox-video-comment-load-more:hover{
    background-color: rgb(208, 216, 219);
    color: rgb(26, 46, 59);
    border-color: rgb(208, 216, 219);
}
.pg-vimeo .pg-lightbox-video-comment-wrap{
	padding-top: 10px;
    padding-bottom: 20px;
}
.pg-vimeo .pg-lightbox-video-comment{
	position: relative;
    display: flex;
    flex-wrap: nowrap;
    font-size: 14px;
}
.pg-vimeo .pg-lightbox-video-comment:eq(0){
    
}
.pg-vimeo .pg-lightbox-video-comment-avatar{
    flex: 0 0 40px;
    margin-right: 15px;
}
.pg-vimeo .pg-lightbox-video-comment-avatar img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: block;
    margin-top: 20px;
}


    
.pg-vimeo .pg-lightbox-video-comment-detail-wrap{
    flex: 1;
    border-top-style: solid;
    border-top-width: 1px;
    padding: 15px 0 10px 0;
}
.pg-vimeo.pg-light .pg-lightbox-video-comment-detail-wrap{
    border-top-color: #E3E8E9;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comment-detail-wrap{
    border-top-color: #555;
}
.pg-vimeo .pg-lightbox-video-comment:first-child .pg-lightbox-video-comment-detail-wrap{
	border-top: none;
}
.pg-vimeo .pg-lightbox-video-comment-user{
    font-size: 14px;
    line-height: 1.42857;
    font-weight: 600;
}
.pg-vimeo.pg-light .pg-lightbox-video-comment-user{
    color: #1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comment-user{
    color: #ddd;
}
.pg-vimeo .pg-lightbox-video-comment-user a{
	color: inherit!important;
}
.pg-vimeo .pg-lightbox-video-comment-time{
	font-weight: 400;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1.33333;
}
.pg-vimeo.pg-light .pg-lightbox-video-comment-time{
    color: #8699a6;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comment-time{
    color: #bbb;
}
.pg-vimeo .pg-lightbox-video-comment-desc{
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.42857;
}
.pg-vimeo.pg-light .pg-lightbox-video-comment-desc{
	color: #1a2e3b;
}
.pg-vimeo.pg-dark .pg-lightbox-video-comment-desc{
	color: #777;
}

.pg-playlist-loader {
	position:absolute;
	top:50%;
	left:50%;
    width: 40px;
    height: 40px;
    margin-left:-20px;
    z-index: 1000;
	margin-top:-20px;
    -webkit-animation: pg_preloader 1.2s infinite ease-in-out;
    animation: pg_preloader 1.2s infinite ease-in-out;
}
@-webkit-keyframes pg_preloader {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}
@keyframes pg_preloader {
    0% { 
	    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
    } 50% { 
	    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
    } 100% { 
	    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.pg-vimeo .pg-playlist-loader{
	background-color:#964b89!important;
}
.pg-yt .pg-playlist-loader{
	background-color:#ff0000!important;
}

.pg-display-type-none .pg-play{
	display: none!important;
}