/* //////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////// GLOBAL /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ------------------------------------------------------------------------ VAR --- */
/* //////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// VAR /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ----------------------------------------------------------------- BREAKPOINT --- */
/* ---------------------------------------------------------------------- MIXIN --- */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// MIXIN /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ------------------------------------------------------------------ CONTAINER --- */
/* ---------------------------------------------------------------- PLACEHOLDER --- */
/* ---------------------------------------------------------------------- COLOR --- */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////// TYPOGRAPHY /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ------------------------------------------------------------------- DOCUMENT --- */
html,
body
{
    font-family: 'neuzeit-grotesk';
    font-size: 22px;

    color: black;
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////// STRUCTURE /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ----------------------------------------------------------------------- BODY --- */
body
{
    background-color: #2a2a2a;
}

body:before
{
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;

    display: block;

    width: calc(100vw - 128px);
    height: calc(100vh - 128px);
    margin: 64px;

    content: '';

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 800px)
{
    body:before
    {
        content: none;
    }
}

/* --------------------------------------------------------------------- HEADER --- */
header a.site
{
    color: #757575;
}

header a.site:hover
{
    color: #8f8f8f;
}

header a.logo
{
    width: 103px;

    background-image: url('../gfx/logo_drumcode.png');
}

header a.toggle
{
    background-color: white;
}

header nav:before
{
    background-color: #484848;
}

header nav a
{
    color: #757575;
}

header nav a:hover
{
    color: #8f8f8f;
}

header nav a.active
{
    color: white;
}

@media (max-width: 800px)
{
    header
    {
        background-color: #2a2a2a;
    }
    header:after
    {
        background-color: #484848;
    }
    header nav
    {
        background-color: #2a2a2a;
    }
}

/* --------------------------------------------------------------------- FOOTER --- */
footer
{
    color: white;
}

footer:before
{
    background-color: #484848;
}

footer .credit
{
    color: #757575;
}

footer .credit:hover
{
    color: #8f8f8f;
}

footer .newsletter form input[type='email']
{
    border-color: #484848;
}

footer .newsletter form input[type='email']::-webkit-input-placeholder
{
    opacity: 1;
    color: rgba(255, 255, 255, .3);
}

footer .newsletter form input[type='email']:-moz-placeholder
{
    opacity: 1;
    color: rgba(255, 255, 255, .3);
}

footer .newsletter form input[type='email']::-moz-placeholder
{
    opacity: 1;
    color: rgba(255, 255, 255, .3);
}

footer .newsletter form input[type='email']:-ms-input-placeholder
{
    opacity: 1;
    color: rgba(255, 255, 255, .3);
}

.area + footer
{
    background-color: #434343;
}

/* ----------------------------------------------------------------- BACKGROUND --- */
.background
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    pointer-events: none;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

@media (max-width: 800px)
{
    .background
    {
        display: none;
    }
}

.background .block
{
    position: relative;

    overflow: visible;

    width: 25vw;
    height: 25vh;
}

.background .icon
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 25vw;
    max-width: 208px;

    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    background-repeat: no-repeat;
    background-size: contain;
}

.background .icon:before
{
    display: block;

    padding-bottom: 100%;

    content: '';
}

.background .icon_0
{
    background-image: url('../gfx/background/icon_0.svg');
}

.background .icon_1
{
    background-image: url('../gfx/background/icon_1.svg');
}

.background .icon_2
{
    background-image: url('../gfx/background/icon_2.svg');
}

.background .icon_3
{
    background-image: url('../gfx/background/icon_3.svg');
}

.background .icon_4
{
    background-image: url('../gfx/background/icon_4.svg');
}

.background .icon_5
{
    background-image: url('../gfx/background/icon_5.svg');
}

.background .icon_6
{
    background-image: url('../gfx/background/icon_6.svg');
}

.background .icon_7
{
    background-image: url('../gfx/background/icon_7.svg');
}

.background .icon_8
{
    background-image: url('../gfx/background/icon_8.svg');
}

.background .icon_9
{
    background-image: url('../gfx/background/icon_9.svg');
}

.background .icon_10
{
    background-image: url('../gfx/background/icon_10.svg');
}

.background .icon_11
{
    background-image: url('../gfx/background/icon_11.svg');
}

.background .icon_12
{
    background-image: url('../gfx/background/icon_12.svg');
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////// COMPONENT /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* --------------------------------------------------------------------- BUTTON --- */
.button
{
    color: white;
    border-color: #484848;
}

/* ---------------------------------------------------------------------- MEDIA --- */
.media
{
    background-color: black;
}

/* -------------------------------------------------------------------- CONTENT --- */
.content
{
    background-color: rgba(149, 149, 149, .7);
}

@media (max-width: 800px)
{
    .content
    {
        background-color: #757575;
    }
}

.content .top,
.content .bottom,
.content .center
{
    font-weight: bold;
}

.content .top,
.content .bottom
{
    color: black;
}

.content .center div:first-child
{
    color: black;
}

.content .center div:last-child
{
    color: white;
}

/* -------------------------------------------------------------------- FEATURE --- */
.feature .content .center
{
    font-size: 35px;
}

/* ------------------------------------------------------------------------ ROW --- */
@media (max-width: 800px)
{
    .row > .item
    {
        background-color: #757575;
    }
}

/* --------------------------------------------------------------------- FILTER --- */
.filter > div
{
    border-color: #484848;
}

.filter .select:before
{
    color: white;
}

/* ----------------------------------------------------------------------- COPY --- */
.copy
{
    position: relative;

    color: white;
}

/* ----------------------------------------------------------------------- AREA --- */
.area
{
    background-color: #434343;
}

.area .column:before
{
    color: white;
}

.area .event
{
    color: white;
}

.area .event a
{
    color: #757575;
}

.area .event a:hover
{
    color: #8f8f8f;
}

/* //////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////// PAGE /// */
/* //////////////////////////////////////////////////////////////////////////////// */
/* ----------------------------------------------------------------------- NEWS --- */
.page_news .feature .content .center div
{
    color: white;
}

.page_news .feature .content .center .button
{
    border-color: white;
}

/* --------------------------------------------------------------- MUSIC DETAIL --- */
.page_music_detail .tracklist
{
    color: white;
}

/* --------------------------------------------------------------------- ARTIST --- */
.page_artist .feature .content .center div
{
    color: white;
}

.page_artist .feature .content .center .button
{
    border-color: white;
}

/* ---------------------------------------------------------------------- EVENT --- */
.page_event .content .top,
.page_event .content .bottom
{
    font-weight: bold;
}

.page_event .content .top
{
    color: black;
}

.page_event .content .bottom
{
    color: white;
}

/* --------------------------------------------------------------- EVENT DETAIL --- */
.page_event_detail .artist
{
    color: white;
}

.page_event_detail .artist:before
{
    border-color: #484848;
}

/* --------------------------------------------------------------- RADIO DETAIL --- */
.page_show_detail .radio
{
    color: white;
}

.page_show_detail .radio .player
{
    background-color: #757575;
}

.page_show_detail .radio .tracklist .track:not(:last-child)
{
    border-color: #484848;
}
