.content
{
    display: flex;
    background: white;
    width: var(--content-width);
    min-height: 100vh;
    padding-bottom: var(--player-height);
    box-sizing: border-box;
    position: relative;
}

.scroll-to-top
{
	position: absolute;
	right: 24px;
	bottom: calc(var(--player-height) + 24px);
	appearance: none;
	border: none;
	background: none;
	cursor: pointer;
}

.content .channels
{
    flex: 1;
    padding: 0 15px;
    box-sizing: border-box;
    border-right: 1px solid var(--border-color);
}
.content .pages
{
    width: 180px;
    box-sizing: border-box;
    padding: 0 15px;
}
@media screen and (max-width: 620px)
{
    .content
    {
        width: 100%;
    }
    .content .pages
    {
        display: none;
    }
}

.content .channels > *:first-child,
.content .pages > *:first-child
{
    margin-top: 32px;
}


.content .streams
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    cursor: pointer;
}
.content .streams .stream
{
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--primary-color);
}
.content .streams .stream .cover
{
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.content .streams .stream .meta
{
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.content .streams .stream .meta .title-container
{
    display: flex;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.content .streams .stream .meta .description
{
    font-size: 14px;
    line-height: 15px;
    color: var(--secondary-color);
}
.content .streams .stream .equalizer
{
    height: 13px;
    display: block;
    margin-left: auto;
}
.content .streams .stream .equalizer
{
    display: none;
}
.content .streams .stream[state="1"] .equalizer.off,
.content .streams .stream[state="2"] .equalizer.on
{
    display: block;
}


.content .apps
{
	display: flex;
	gap: 17px;
}
.content .apps a
{
    display: flex;
    flex: 1;
}
.content .apps a svg
{
    display: block;
    width: 100%;
    height: fit-content;
}



footer {
	margin-top: 20px;
    margin-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--primary-color);
	display: flex;
	flex-direction: row;
	gap: 50px;
}
footer a
{
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: var(--primary-color);
}



.content .pages .posts
{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}
.content .pages .posts a
{
	display: flex;
	flex-direction: column;
	gap: 5px;
    text-decoration: none;
}
.content .pages .posts a img {
    display: block;
    width: 100%;
}
.content .pages .posts a p
{
    font-size: 10px;
    line-height: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
}
.content .pages .socials
{
    display: flex;
    flex-direction: row;
    gap: 10px;
}