/*
Theme Name: Channelize
Theme URI: http://themes.themolitor.com/channelize
Description: Rivyt layout designed and developed by Christopher John Molitor.
Author: Christopher John Molitor
Author URI: http://themolitor.com/
License: GNU General Public License
License URI: license.txt
Version: 1.0.0
Tags:White, Dark
Template: rivyt
*/


/*--------------------------------*/
/* -----RESET + TRANSITIONS----- */
/*------------------------------*/
* {
	padding: 0; 
	margin: 0; 
	line-height: 1.5em;
	/*--COLOR ANIMATIONS--*/
 	-webkit-transition:background-color 0.20s linear, border-color 0.20s linear, color 0.20s linear, outline-color 0.20s linear; 
 	-moz-transition:background-color 0.20s linear, border-color 0.20s linear, color 0.20s linear, outline-color 0.20s linear; 
 	-o-transition:background-color 0.20s linear, border-color 0.20s linear, color 0.20s linear, outline-color 0.20s linear; 
 	transition:background-color 0.20s linear, border-color 0.20s linear, color 0.20s linear, outline-color 0.20s linear;  
 	/*IE SCROLL STYLE*/
 	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/*--------------------------------*/
/* -----GENERAL CLASS STUFF----- */
/*------------------------------*/
.alignright {
	float:right;
}
.alignleft {
	float:left;
}
.aligncenter {
	display: block; 
	margin-left: auto; 
	margin-right: auto;
}
.center {
	text-align:center;
}
.clear {
	clear: both;
}
.clearfix:after,
.clearfix:before { 
   content: "";
   position: relative; 
   display: block; 
   clear: both;
}
.error {
	color: red;
}

.overflow-scroll {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*------------------------------*/
/* -----HTML + BODY STUFF----- */
/*----------------------------*/
html {
	-webkit-text-size-adjust: 100%;
	height: 100%;
	position: relative;
	
  	
}
body {
	height:100%; 
	width:auto;
	font-size: 18px;
	font-weight: normal;
	overflow-y: auto;
	font-family: "roboto", sans-serif;
}


/*------------------------*/
/* -----A TAG STUFF----- */
/*----------------------*/
a {
	text-decoration:none; 
	color:inherit; 
	position: relative;
}
a:hover {
	text-decoration:none; 
}


/*--------------------------*/
/* -----IMG TAG STUFF----- */
/*------------------------*/
img {
	max-width: 100%; 
	height: auto;
}
img.aligncenter {
	display:block;
	margin-left:auto; 
	margin-right:auto; 
	margin-bottom: 10px;
}
img.alignright {
	display:inline;
	margin:0 0 10px 10px;
}
img.alignleft {
	display:inline;
	margin:0 10px 10px 0;
}
img#wpstats {
	width:0;
	height:0;
	border:none;
	display: block;
	overflow:hidden;
}
.entry img {
	vertical-align:text-bottom; 
}


/*------------------------*/
/* -----H TAG STUFF----- */
/*----------------------*/
h1,h1 a,h1 a:visited,
h2,h2 a,h2 a:visited,
h3,h3 a,h3 a:visited,
h4,h4 a,h4 a:visited,
h5,h5 a,h5 a:visited,
h6,h6 a,h6 a:visited {
	font-weight: normal;
	border: none;
}
h1 a,
h1 a:visited,
h2 a,
h2 a:visited,
h3 a,
h3 a:visited,
h4 a,
h4 a:visited,
h5 a,
h5 a:visited,
h6 a,
h6 a:visited 15,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	text-decoration:none;
}


/*--------------------------------------*/
/*------BACKGROUND IMAGE STUFF---------*/
/*------------------------------------*/
#background-image {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	padding-bottom:56.2%;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: filter 1s ease 0s;
	
	position: absolute;
}
#background-image::before {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all 1s ease 0s;
}

#background-image::after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#background-image.play-hover::before,
body.main-playing #background-image::before {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#background-image.play-hover,
body.main-playing #background-image {
	-webkit-filter: blur(3px);
    filter: blur(3px);
}

/*-------------------------*/
/* -----HEADER STUFF----- */
/*-----------------------*/
#header-container {
	padding: 25px 6%;	
	position: relative;
	z-index: 10;
}
#header {
    margin: 0 auto;
    max-width: none;
    width: 84%;
    top: 0;
    left: 0;
    transition: all .3s ease 0s;
	position: absolute;
	padding: 4% 8% 0;
	z-index: 111;
}

#header:after {
	content: '';
	display: block;
	clear: both;
}
body.main-playing #header {
	top:-100%;
}

#head-links {
	float: right;
}
#head-links a {
	line-height: 30px;
	margin-left: 15px;
	font-size: 18px;
	font-weight: normal;
	border-bottom-style: none;
	border-bottom-width: 1px;
	letter-spacing: 1px;
	transition: all .3s ease 0s;
	text-shadow: 0 1px 3px rgba(0,0,0,.2);
}
#head-links a:hover,
body.view-about #about-link {
	border-bottom-style: solid;
}


#logo {
    border-width: 3px;
    border-style: solid;
    border-radius: 100px;
    display: inline-block;
    height: 55px;
    overflow: hidden;
    width: 55px;
    padding: 3px;
}
body.view-about #logo,
#logo:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
#logo img {
    display: block;
    position: relative;
    vertical-align: middle;
    width: 100%;
    height: auto;
    transition: all .3s ease 0s;
    opacity: 1;
    border-radius: 100px;
}
#logo > span,
#logo > i {   
    color: transparent;
    font-size: 20px;
    left: 0;
    line-height: 61px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 100%;
    display: block;
    z-index: 1;
}
#logo > span {
	font-size: 34px;
}

body.view-about #logo > span,
body:not(.view-about) #logo:hover > i {
	opacity: 1;
}
body.view-about #logo img,
#logo:hover img {
	opacity: 0;
}
body.view-about #logo:hover > span {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#main-duration {
    border-radius: 3px;
    display: inline-block;
    float: right;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 25px;
    padding: 2px 6px;
    position: relative;
    text-indent: 3px;
    top: 0;
    transition: all 0.3s ease 0s;
	background-color: rgba(0,0,0,.35);
}
body.view-about #main-duration {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
}


/*-----------------------------*/
/* -----ABOUT STUFF---------- */
/*---------------------------*/
#about-stuff {
    box-shadow: none;
    left: 0;
    margin-top: 0;
    padding: 4% 8% 0;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: 110;
    overflow: hidden;
    overflow: auto;
    font-size: 18px;
    display: block;
    transition: all 2s ease 0s;
    -webkit-overflow-scrolling: touch;
	
	top: -100%;
	opacity: 1;
	
	max-height: 100%;	
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#about-stuff::before {
    content: "";
    display: block;
    height: 100px;
    position: relative;
}
body.view-about #about-stuff {
	top:0;
	opacity: 1;
	box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
	transition: all .5s ease 0s;
}
#close-about {
    display: block;
    float: right;
    font-size: 40px;
    height: 50px;
    line-height: 65px;
    opacity: 0;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    transition: opacity 0.5s ease 0s;
    width: 50px;
    overflow: hidden;
    height: 0;
    font-weight: normal;
}
body.view-about #close-about {
	opacity: .3;
	height: auto;
}
body.view-about #close-about:hover {
	opacity: 1;
}

#about-details {
    margin-bottom: 50px;
    white-space: pre-line;
    max-width: 800px;
}
#about-details > a {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
}
#about-details > a:hover {
    border-bottom-style: solid;
}
#about-stats {
	margin-bottom: 8%;
}
#about-stats > span {
    font-size: 85%;
    margin-right: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#about-stats > span strong {
    font-weight: normal;
}
#about-social {
    float: right;
}
#about-social a {
    padding:0 15px;
    display: inline-block;   
}
#about-social a:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}


/*------------------------------*/
/* -----VIDEO PANEL STUFF----- */
/*----------------------------*/
#video-panel-container {
	position: relative;
	z-index: 2;
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

#video-panel-container:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	content: '';
	transition: all 1s ease 0s;
}


#video-panel {
	opacity: 1;
	transition: all 0.3s ease 0s;	
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/*------------------------------*/
/*---------VID CONTROLS--------*/
/*----------------------------*/
#vid-controls {
	
	position: relative;
	margin: 0 auto;
	width: 100%;
	padding-bottom: 56.2%;
}

/*--MAIN PLAY--*/
#main-play {
    background: rgba(15, 15, 15, 0.15);
    border-radius: 100px;
    border-style: solid;
    border-width: 4px;
    box-shadow: none;
    display: block;
    font-size: 26px;
    height: 80px;
    left: 50%;
    line-height: 80px;
    margin: -44px 0 0 -44px;
    position: absolute;
    text-align: center;
    text-indent: 2px;
    top: 50%;
    width: 80px;
    z-index: 100;
}
#main-play:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}


/*--NEXT / PREV LINKS --*/
.next-prev-vid {
    font-size: 60px;
    height: 60px;
    line-height: 60px;
    margin: -30px 0 0;
    position: absolute;
    text-align: center;
    text-indent: 0;
    top: 50%;
    transition: all 0.3s ease 0s;
    width: 60px;
    z-index: 5;
}
#next-vid {
	right: 0;
}
#next-vid:hover {
	text-indent: 10px;
}
#prev-vid {
	left: 0;
}
#prev-vid:hover {
	text-indent: -10px;
}
.next-prev-vid i {
    position: relative;
    top: -3px;
}
.next-prev-vid img {
	width: 15px;
	position: relative;
	top: -7px;
}


/*--VIDEO CONTAINER--*/
#vid-container {
	padding: 50px 8% 0;
}

/*--CLOSE FRAME BUTTON--*/
#close-frame {
    border-radius: 100px;
    display: none;
    font-size: 26px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 30px;
    text-align: center;
    top: 30px;
    transition: transform 0.6s ease 0s;
    width: 40px;
    z-index: 1010;
    
    border-width: 2px;
    border-style: solid;
}
body.main-playing #close-frame {
	display: block;
}

#close-frame:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
body.mini #video-frame #close-frame {
    bottom: -116px;
    box-shadow: none;
    display: block;
    position: fixed;
    right: 0;
    top: auto;
    transform: translate3d(0px, -260px, 0px);
    border-radius: 3px 3px 0 0;
}
body.mini #video-frame #close-frame:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
body.mini .the-bottom #video-frame #close-frame {
    bottom: auto;
    top: 0;
    transform: translate3d(0px, 30px, 0px) !important;
}

/*--VIDEO FRAME--*/
#video-frame {
    border-radius: 3px;
    display: none;
    margin: 0 auto;
    position: relative;
    text-align: center;
    z-index: 100;
    width: 100%;
    padding-bottom: 56.2%;
}
#video-frame iframe {
	box-shadow: 0 15px 30px rgba(0,0,0,.5);
	width: 100%;
	border-radius: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	transition: transform .6s ease 0s;
}
body.mini #video-frame iframe {
	outline-width: 3px;
	outline-style: solid;
    bottom: -141px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    height: 141px;
    left: auto;
    min-height: auto;
    opacity: 1;
    position: fixed;
    top: auto;
    width: 250px;
    z-index: 1000;
    right: 8px;
    transform: translate3d(0px, -149px, 0px) !important;
    
    height: 200px;
    width: 355.56px;
    transform: translate3d(0px, -208px, 0px) !important;
    bottom: -200px;
}

/*--VIDEO INFO--*/
#video-info-container {
	position: relative;
	margin: 0 auto;	
	padding: 0 8% 60px;
}
body.main-playing #video-info-container {
	padding: 30px 8% 60px;
}

#video-info::after {
    clear: both;
    content: "";
    display: block;
}
#video-info {
    position: relative;
    
    text-align: center;
}
#title-info {
	float: none;
	width: 850px;
	max-width: 100%;
	margin: 0 auto;
}
#video-info h2 {
    display: block;
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0 auto 3px;
    text-transform: uppercase;
    line-height: 1.1em;
    overflow: hidden;
    text-overflow: ellipsis;
}
#video-info .vid-meta {
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
#video-info .vid-meta i {
    font-size: 120%;
    margin-right: 5px;
}

#vid-content {
    display: none;
    float: none;
    font-size: 24px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 850px;
    text-align: center;
    margin: 30px auto;
    white-space: pre-line;
}
/*
#vid-content > * {
	margin-bottom: 15px;
}
*/
#vid-content a {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}
#vid-content a:hover {
	border-bottom-style: solid;
}
#view-full {
    border-radius: 50px;
    clear: right;
    display: block;
    font-size: 18px;
    left: 0;
    line-height: 35px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    top: 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    transition: top .6s ease 0s;
    
    width: 850px;
    max-width: 100%;
}
#view-full::before, 
#view-full::after {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: 0;
    top: 15px;
    width: 48%;
    transition: top .6s ease 0s,background .6s ease 0s;
}
/*
#view-full.expand:before,
#view-full.expand:after {
	background: rgba(255,255,255,.15);
}
*/
#view-full:before {
	left: 0;
	right: auto;
}
#view-full:after {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#view-full i {
	font-size: 120%;
}

#view-full:hover {	
	color: #fff;
	top: 5px;
}
#view-full:hover:before, 
#view-full:hover:after {
	top: 10px;
}
#view-full.expand {
	top:5px;
}
#view-full.expand:hover {
	top:0;
}
#view-full.expand:hover:before, 
#view-full.expand:hover:after {
	top: 20px;
}


/*-----------------------------*/
/* -----VID LAYOUT STUFF----- */
/*---------------------------*/
#vid-layout-container {
    box-shadow: none;
    overflow: hidden;
    position: relative;
    padding:0 8% 20px;
}

#vid-layout {
	margin: 0 auto;	
	position: relative;	
	top: 0;
}


/*--VIDEO FILTER--*/
#video-filter {
	line-height: 1em;
}
#video-filter:after {
	content: '';
	display: block;
	clear: both;
}
#video-filter a {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
    padding: 0;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 1px;
}
body #video-filter a:hover:not(.active-filter),
#video-filter a.active-filter {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
#video-filter i:first-child {
    overflow: hidden;
    text-indent: 12px;
    width: 12px;
    transition: all 0.3s ease 0s;
    display: block;
    float: left;
}
#video-filter a:hover i {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
#video-filter a.active-filter i,
#video-filter a:hover i {
    text-indent: 0;
}

/*--VIDEO LAYOUT--*/
#post-layout {
	float: right;
	line-height: 1em;
}
#post-layout a {
    font-size: 18px;
    line-height: 1em;    
    margin: 0 0 0 8px;
    display: inline-block;
}
#post-layout a.active-layout,
body #post-layout a:hover {	
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#post-layout svg {
	fill: currentColor;
	width: auto;
	height: 25px;
	vertical-align: middle;
}


/*----------------------------*/
/* -----VIDE LIST STUFF----- */
/*--------------------------*/
#video-list-container {
	margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease 0s;    
    padding: 0 8%;
}

#video-list {
    margin-left: -1%;
    width: 102%;
}

.video-item {
    position: relative;
}

.video-item.filter-hide {
	display: none !important;
}

.vid-img-link {
	position: relative;
	max-width: 100%;
	background-size: cover;
	background-position: center;	
	background-repeat: no-repeat;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	outline-color: transparent;
	
	background-size: 100%;
	
	transition: outline 0.3s ease 0s, background-size .3s ease 0s;
}

.vid-img-link:after {
	content: '';
	display: block;
	position: absolute;
	transition: background 0.3s ease 0s;
	z-index: 1;
	
	width: 100%;
	height: auto;
	bottom: 0;
	left: 0;
	top: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	/*
	background: -webkit-linear-gradient(top, rgba(15,15,15,.0) 0, rgba(15,15,15,.3) 100%);
	background: -moz-linear-gradient(top, rgba(15,15,15,.0) 0, rgba(15,15,15,.3) 100%);
	background: linear-gradient(to bottom, rgba(15,15,15,.0) 0, rgba(15,15,15,.3) 100%);
	*/
}
.playing .vid-img-link::after {
    /*COLOR CONTROLS VIA FUNCTION.php*/
}


.vid-img-link::before {
    content: "";
    display: block;
    font-size: 16px;
    height: 20px;
    left: 0;
    letter-spacing: 15px;
    line-height: 20px;
    margin: -10px 0 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 2;
    text-indent: 10px;
}
.playing .vid-img-link:before {
	content: 'VIEWING';
	opacity: 1;
}
.main-playing .playing .vid-img-link:before {
	content: 'PLAYING';
	opacity: 1;
}

.vid-img-link:hover:before {
	opacity: 1;
}

.list-layout .vid-img-link,
.grid-layout .video-item .vid-img-link {
	outline-width: 0px;
	outline-style: solid;
}

.list-layout .vid-img-link:hover,
.grid-layout .video-item:hover .vid-img-link {
	outline-width: 3px;
	outline-style: solid;
	background-size: 108%;
}

.vid-meta {
	display: block;
    text-transform: uppercase;
    font-size: 13px;
}
.vid-meta span:before {
    content: "•";
    display: inline-block;
    text-align: center;
    text-indent: 0;
    width: 20px;
    opacity: .65;
}
.vid-meta span:first-child:before {
	display: none;
}

.vid-meta .show-comments:before,
.vid-meta .show-chat:before,
.vid-meta .shop-products-link:before {
    position: absolute;
    left: -20px;
    top: 0;
}

.view-count::after {
    content: " Views";
}
.like-count::after {
    content: " Likes";
}
.show-comments::after {
    content: " Comments";
}
.vid-meta .show-comments,
.vid-meta .show-chat {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    left: 20px;
    position: relative;
    text-indent: -20px;
    
    left: 0;
    text-indent: 0;
    margin-left: 20px;
}
.vid-meta .show-comments:first-child,
.vid-meta .show-chat:first-child {
	margin-left: 0;
}
.vid-meta .show-comments:hover,
.vid-meta .show-chat:hover {
	border-bottom-style: solid;
	color: inherit;
}
.vid-meta .shop-products-link.video-products-only {
    position: relative;
    left: 40px;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-indent: -20px;
    
    left: 0;
    text-indent: 0;
    margin-left: 20px;
}
.vid-meta .shop-products-link.video-products-only:first-child {
	margin-left: 0;
}
.shop-products-link.video-products-only:hover {
	border-bottom-style: solid;
	color: inherit;
}

.vid-meta .duration {
    border-radius: 3px;
    font-weight: normal;
    letter-spacing: 2px;
    padding: 0;
    position: relative;
    text-indent: 3px;
    transition: all 0.3s ease 0s;
    z-index: 110;
}

.vid-img-link .duration {

    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 3px;
    opacity: 0;
    padding: 0 3px;
    position: absolute;
    right: 5%;
    text-indent: 3px;
    top: 5%;
    transition: all 0.3s ease 0s;
    z-index: 110;
    background-color: rgba(0,0,0,.5);
}
.vid-img-link .duration.live-feed {
	top: 7%;
	opacity: 1;
}
.live-feed {
    background: #FF003A !important;
    color: #fff !important;
    padding: 0 5px !important;
    font-family: 'roboto',sans-serif !important;
    top: 7%;
    opacity: 1;
    font-size: 12px;
    display: inline-block;
    line-height: 20px;
    box-shadow:0 3px 0px rgba(0,0,0,.15);
}

.list-layout .vid-img-link .duration {
	display: none;
}

#video-info-container .duration {
	position: relative;
    top:0;
  	right: 0;
}

.grid-layout .playing .vid-img-link .duration {
    display: none;
}
.grid-layout .video-item:hover .duration {
	top: 7%;
	opacity: 1;
}
.play-button {
    display: block;
    font-size: 22px;
    left: 50%;
    line-height: 60px;
    position: absolute;
    text-align: center;
    text-indent: 2px;
    top: 50%;
    transition: all 0.3s ease 0s;
    width: 60px;
    z-index: 100;
    cursor: pointer;
	border-radius: 100px;
    border-width: 3px;
    border-style: solid;
    margin: -33px 0 0 -33px;
    opacity: 0;
    box-shadow: none;
    transform: scale(.5);
    background: rgba(0,0,0,.5);
}
.video-item:not(.playing) .play-button:hover {
	opacity: 1;
}
.grid-layout .play-button {
	margin-top: -40px;
}

.grid-layout .video-item:not(.playing):hover .play-button,
.video-item:not(.playing) .vid-img-link:hover .play-button {
	opacity: .85;
	transform: scale(1);
}

/*--GRID LAYOUT--*/
.grid-layout .video-item {
    display: inline-block;
    margin: 0 1.5% 3%;
    width: 30%;
    vertical-align: top;
    
    margin: 0 1% 2%;
    width: 31.3%;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
    
    /*
    overflow: hidden;
    transition: outline 0.3s ease 0s, box-shadow 0.3s ease 0s;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
   	margin: 0;
   	width: 33.33%
   	*/
}
/*
.grid-layout .video-item:hover {
	
	outline-style: solid;
	outline-width: 5px;
	outline-color: #fff;
	z-index: 10;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
}
*/

.grid-layout .vid-img-link {
	display: block;
	overflow: hidden;	
	padding-bottom: 56.2%;
	
	box-shadow: none;
}

.grid-layout .vid-title-link {
	display: block;	
	padding: 15px 0;
}


.grid-layout .vid-content {
    display: block;
    left: 0;
    padding: 20px 0 0;
    position: absolute;
    bottom: -10px;
    padding: 0;
    width: 100%;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease 0s;
    background: -webkit-linear-gradient(top, rgba(15,15,15,.0) 0, rgba(15,15,15,.65) 100%);
	background: -moz-linear-gradient(top, rgba(15,15,15,.0) 0, rgba(15,15,15,.65) 100%);
	background: linear-gradient(to bottom, rgba(15,15,15,.0) 0, rgba(15,15,15,.65) 100%);
}
.grid-layout .video-item:not(.playing):hover .vid-content {
	opacity: 1;
	bottom: 0;
}	

.grid-layout .vid-content h3 {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 0;
    overflow: hidden;
    padding: 0 5%;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}
.grid-layout .vid-title-link:hover h3 {
	 /*COLOR CONTROLS VIA FUNCTION.php*/
}

.grid-layout .vid-description {
    display: none;
}

.grid-layout .vid-meta {
    display: block;
    float: none;
    margin: 0 50px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    
    margin: 0;
    
    display: none;
}


/*--LIST LAYOUT--*/
.list-layout .video-item {
    display: block;    
    margin: 0 1.5% 3%;
    vertical-align: top;
    
    margin: 0 1% 2%;
    /*
    margin: 0 0 3%;
    */
}
.list-layout .video-item:first-child {
	margin-top: 0;
}
.list-layout .video-item::after {
    clear: both;
    content: "";
    display: block;
    position: relative;
}

.list-layout .vid-img-link {
	display: block;
    float: left;
    left: 0;
    top: 0;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 31.5%;
    
    padding: 0 0 17.3%;
    position: relative;
    height: auto;
}

.list-layout .vid-content {
    display: inline-block;
    float: right;
    vertical-align: top;    
    width: 66%;
    padding: 0;
}

.list-layout .vid-content h3 {
    font-size: 18px;
    line-height: 1.2em;
    margin: 10px 0 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;    
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.list-layout .vid-title-link:hover h3 {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

.list-layout .vid-description {
    font-size: 18px;
    height: 110px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    /*text-align: justify;*/
    
    margin-bottom: 0;
    height: 90px;
}
.vid-description > * {
    margin-bottom: 10px;
    /*text-align: justify;*/
}
.vid-description a {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}
.vid-description a:hover {
	border-bottom-style: solid;
}

.list-layout .vid-description:after {
    bottom: 0;
    content: "";
    display: block;
    height: 60%;
    left: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.list-layout .vid-meta {
    margin-bottom: 15px;
    position: relative;
}


/*--------------------------*/
/*-----COPYRIGHT STUFF-----*/
/*------------------------*/
#copyContainer {
    bottom: 0;
    font-size: 18px;
    left: 0;
    z-index: 1;
    width: 84%;
    padding: 4% 8% 8%;
}
#copyright {
    clear: both;
    font-size: 14px;
    line-height: 30px;
    margin: 0 auto;
    text-align: center;
}
#copyright span {
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    
    display: none;
}

#copyright a {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}
#copyright a:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#copyright .social-link {
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    display: inline-block;
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    margin: 0 10px;
    text-align: center;
    width: 55px;
    
    width: 45px;
    margin: 0 5px;
    border: none;
    font-size: 22px;
}
#copyright .social-link:before {
	content: attr(data-social);
	display: block;
	opacity: 0;
	position: absolute;
	left: 50%;
	bottom: 100%;
	z-index: 1;
	width: 100px;
	margin: 0 0 0 -50px;	
	transition: all 0.3s ease 0s;
	font-size: 14px;
}
#copyright .social-link:hover:before {
	opacity: 1;
	bottom: 110%;
	
	bottom: 105%;
}

#copyright .social-link:hover {
	/*COLOR CONTROLS VIA FUNCTION.php*/
}

#copyright #powered-by {
    display: block;
    letter-spacing: 0.65px;
    margin: 20px 0 0;
    opacity: 0.5;
	border-bottom-style: none;
	border-bottom-width: 1px;
	transition: all 0.3s ease 0s;
}
#copyright #powered-by a {
	border-bottom: none;
	transition: all 0.3s ease 0s;
}
#copyright #powered-by:hover {
	opacity: 1;
}


/*------------------------------------------*/
/*-- Text meant only for screen readers. --*/
/*----------------------------------------*/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 15px;
	font-size: 0.375rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*----------------------------------*/
/*-----------900px WIDE------------*/
/*--------------------------------*/
@media screen and (max-width:900px) {

	#background-image {
		padding-bottom: 80%;
	}
		
	#header {
		padding: 5% 5% 0;
		width: 90%;
		position: relative;
	}
	
	#head-links a {
    	font-size: 16px;
    }
	
	#about-stuff {
	    font-size: 18px;
	    padding: 5% 5% 0;
	}
	
	body.main-playing #header {
		top:0;
	}
	
	#close-frame {
		top: 5%;
		right: 5%;
	}
	
	body.main-playing #main-duration {
		display: none;
	}
	
	#vid-container {
	    padding: 4% 5% 0;
	}
	
	#vid-controls,
	#video-frame {
	    padding-bottom: 56%;
	    width: 100%;
	}
	
	#video-info-container,
	body.main-playing #video-info-container {
		padding: 20px 5% 5%;
	}
	
	#video-info h2 {
		white-space: normal;
	}
	
	#vid-layout-container {
	    padding: 0 5% 25px;
	}
	
	#video-filter {
		text-align: center;
	}
	
	#post-layout {
		display: none;
	}
	#video-list-container {
		padding: 0;
	}
	#video-list {
	    margin-left: 0;
	    padding: 10px 0 20px 10%;
	    white-space: nowrap;
	    width: 90%;
	    height: auto;
	    overflow-y: hidden;
	    overflow-x: scroll;
  		-webkit-overflow-scrolling: touch;
	}
	
	.grid-layout .video-item,
	.list-layout .video-item {
	    display: inline-block;
	    width: 100%;
	    
    	margin: 0 30px 0 0;
    	width: 60%;
    	box-shadow: none;
	}
	
	.list-layout .vid-img-link {
	    overflow: hidden;
	    display: block;
	    float: none;
	    height: auto;
	    position: relative;
	    width: 100%;
	    
	    padding-bottom: 50%;
	}
	
	.list-layout .vid-content {
	    float: none;
	    padding: 15px 0 0;
	    width: 100%;
	}

	.list-layout .vid-description {
	    max-height: 100px;
	    overflow: hidden;
	    position: relative;
	    margin-bottom: 20px;
	    
	    display: none;
	}
	.vid-img-link .duration {
		opacity: 1;
		top: 7%;
	}
	.video-item .vid-meta .duration {
		display: none;
	}
	
	.duration {
		opacity: 1;
	}
	
	.grid-layout .vid-img-link {
		box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
	}
	
	.grid-layout .vid-title-link {
		padding: 15px 0 0;
		margin: 0;
	}
	
	.list-layout .vid-content h3,
	.grid-layout .vid-content h3 {
	    font-size: 2.5vw;
	    letter-spacing: 0.5px;
	    line-height: 1.2em;
	    padding: 0;
	    white-space: normal;
	    color: #fff;
	    text-align: center;
	    margin: 0 auto 3px;
	    font-weight: normal;
	}
	
	 .vid-meta,
	.grid-layout .vid-meta {
	    display: block;
	    font-size: 12px;
	    font-weight: normal;
	    margin: 0;
	    text-align: center;
	}
	.grid-layout .vid-content {
	    bottom: 0;
	    display: block;
	    left: 0;
	    opacity: 1;
	    padding: 0;
	    position: relative;
	    transition: all 0.3s ease 0s;
	    width: 100%;
	    z-index: 100;
	}
	
	
	#aboutContainer {
	    padding: 50px 5%;
	    width: 90%;
	}
	#about-title {
	    float: none;
	    width: auto;
	}
	#about-content {
	    float: none;
	    margin-top: 20px;
	    width: auto;
	}
}


/*----------------------------------*/
/*-----------800px WIDE------------*/
/*--------------------------------*/
@media screen and ( max-width: 800px ){

	#head-links a {
	    font-size: 14px;
	    margin-left: 10px;
	}

	#copyright .social-link {
	    float: none;
	    margin: 0 0px 0 0;
	    font-size: 16px;
	    width: 35px;
	}
	#copyright > span {
	    display: block;
	    margin-top: 15px;
	}
}


/*----------------------------------*/
/*-----------500px WIDE------------*/
/*--------------------------------*/
@media screen and ( max-width: 500px ){
	
	#head-links a:not(#about-link):not(.search-site):not(.site-profiles-link):not(.shop-products-link) {
    	display:none;
    }
    
	#header #logo {
	    height: 45px;
	    width: 45px;
	    
	}
	#logo > i {
		line-height: 51px;
		width: 51px;
		font-size: 18px;
	}
	#logo > span {
		line-height: 51px;
		width: 51px;
		font-size: 30px;
	}

	#main-duration {
		top: 10px;
		font-size: 12px;
	    padding: 0 8px;
	}

	#about-stuff {
		font-size: 16px;
	}
	#about-stuff::before { 
		height: 60px;
	}
	#about-social {
	    float: none;
	    right: auto;
	    top: 0;
	    margin: 0 0 30px -10px;
	}
	#about-stats > span {
		display: block;
		margin: 0 0 15px;
	}
	
	#main-play {
	    font-size: 22px;
	    height: 60px;
	    line-height: 60px;
	    margin: -30px 0 0 -30px;
	    width: 60px;
	}
	
	#video-info h2 {
		font-size: 22px;
	}
	
	#vid-content {
	    font-size: 16px;
	}
	
	#aboutContainer {
	    font-size: 16px;
	}
	
	.list-layout .vid-content h3,
	.grid-layout .vid-content h3 {
	    font-size: 14px;
	}
}


/*----------------------------------*/
/*-----------850px TALL------------*/
/*--------------------------------*/
@media screen and ( max-height: 850px ){
    
    #vid-controls {   	    
    	padding-bottom:47%;
    }
}


/*----------------------------------*/
/*-----------500px TALL------------*/
/*--------------------------------*/
@media screen and ( max-height: 500px ){
    
    #vid-controls {   	    
    	padding-bottom:25%;
    }
}