/* ######################## */
/* PAGE CHANNEL                 */
/* ######################## */

/* 

   Created by: Jon Doe for r0n.cc
   Copyright Notice: This document is copyleft;

*/

/* ######################## */
/* CHANNEL PAGE FORMAT      */
/* ######################## */

.Channel_Container
{
    list-style: none;
    display: block;
	padding-right: 10px;
    padding-left: 10px;
}

.Channel_Container li
{
    display: block;
}

.Channel_Header
{
    margin-bottom: 0px!important;
}

.Channel_Properties
{
    background: #f9f9f9;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px!important;
}

.Channel_Body
{
    background: #f1f1f1;
    min-height: 100%;
}

/*--------------------------*/

.Channel_Banner
{
    display: block;
    width: 100%;
    height: auto;
}

/*--------------------------*/

.Channel_Properties_Details
{
    display: grid;
    grid-template-columns:  70px auto 100px;
}

.Channel_Properties_Details li
{
    
}

.Channel_Properties_Details_Img
{
    width: 70px;
    height: 70px;
}

.Channel_Properties_Details li span
{
    display: block;
}

.Channel_Properties_Details_Member
{
    font-size: 22px;
    font-weight: 700;
    padding: 10px;
}

.Channel_Properties_Details_Member_Subs
{
    color: #606060;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.Subscription_Button
{
    background: #cc0000;
    font-size: 13px;
    font-weight: 700;
    margin-top: 15px;
}

/*--------------------------*/

.Channel_Properties_Links
{
    display: flex;
    flex-direction: row;
}

.Channel_Properties_Links li
{
	width: auto;
    text-align: center;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0px!important;
    border-bottom: 2px solid transparent;
}

.Channel_Properties_Links li:hover
{
    background: #f1f1f1;
}

.Active
{
    border-bottom: 2px solid #606060!important;
}

.Channel_Properties_Links li a
{
    font-size: 13px;
    font-weight: bold;
    color: #606060;
}

@media only screen and (min-width: 200px) and (max-width: 668px)
{  
    .Channel_Properties_Links
    {
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        margin-left: 0px;
    }
    
    .Channel_Properties_Links li
    {
        padding: 5px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .Channel_Properties_Links li a
    {
        font-size: 11px!important;
    }
    
	.Channel_Properties_Details 
	{
		grid-template-columns: 55px auto 100px;
	}
    
    .Channel_Properties_Details_Img
    {
        width: 55px;
        height: 55px;
    }
}

.Channel_Body
{
	min-height: 600px;
}