@import url('https://fonts.googleapis.com/css?family=Montserrat|Playfair+Display+SC|Roboto+Mono');

:root {
    --color-1: #777777;
    --color-2: #d6ae7e;
}

body {
    margin: 0;
    padding: 0;
}

#banner {
    max-width: 100vw;
    height: 100vh;
    background: black url("../img/clock-minimalism-image.jpg") no-repeat center;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    background-color: var(--color-1);
    color: white;
}
figure {
    margin: 60px auto;
}

figcaption {
    text-align: center;
    font-style: italic;
    font-size: 16px;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    letter-spacing: 6px;
    font-weight: bold;
}

h2 {
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--color-2);
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
}

.text_content {
    max-width: 750px;
    margin: 60px auto;
    font-family: 'Montserrat Light', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-1);

}
#header {
    text-align: center;
    text-transform: uppercase;
    max-width: 900px;
    margin: 60px auto;
}

#main_wrapper {

}

#chord_diagram{
    font-size: 14px;
    max-width: 1101px;
    margin: auto;
    font-family: 'Roboto Mono', monospace;
}
#time_use {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    max-width: 1090px;
    margin: auto;
}

.cell {
    border: solid 1px white;
    position: absolute;
}

#sidebar {
    width: 259px;
    float: left;
    margin-right: 30px;
    padding-right: 20px;
    border-right: 1px solid var(--color-1);
    height: 730px;
}
#current_time {
    font-size: 60px;
    color: var(--color-1);
    text-align: center;
}
#chart { float: left; }

#treemap {
    padding-top: 20px;
    position: relative;
}

#tooltip, #chord_tooltip {
    color: var(--color-1);
    opacity: .9;
    background: #eee;
    padding: 5px;
    border: none;
    border-radius: 5px;
    position: absolute;
    z-index: 10;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
}
#circle circle {
    fill: none;
    pointer-events: all;
}
path.group {
    fill-opacity: .8;
}
path.chord {
    fill-opacity: .8;
    stroke: #000;
    stroke-width: .25px;
}

#circle:hover path.fade {
    display: none;
}
aside {padding: 20px;}

#play {
    padding: 0.5rem 0rem 0.5rem 0rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--color-2);
    cursor: pointer;
}

.radio-tile-group {
    padding: 0.5rem 0rem 0.5rem 0rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.radio-tile-group .input-container {
    position: relative;
    width: 5rem;
    margin: 0rem;
}
.radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-2);
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
}

.radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-2);
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: var(--color-2);
    color: white;
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: white;
    background-color: var(--color-2);
}

#legend {
    padding-top: 20px;
}

#references {
    font-size: 16px;
    margin: 150px auto;
}

#references h3 {
    font-size: 16px;
    font-family: 'Montserrat SemiBold', sans-serif;
    text-transform: uppercase;
}