*
{
    font-family: Arial;
    font-size: 1rem;
    box-sizing: border-box;
}
body
{
    margin: 0;
    padding: 0;
    background-color: #EAE9E9;
}
#timers
{
    display: flex;
    padding: 15px;
    width: calc(100% - 250px);
    margin-left: 250px;
}
.column
{
    width: 50%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid black;
}
.column.right
{
    border-right: 1px solid black;
}
.timer
{
    display: flex;
    padding: 0;
    border-top: 1px solid black;
}
.timer:last-child
{
    border-bottom: 1px solid black;
}
.hour
{
    line-height: 30px;
    padding: 0 5px;
    margin-right: 5px;
    border-right: 1px solid black;
    font-weight: bold;
}
.event
{
    display: flex;
    align-items: center;
}
.name,
.controller
{
    font-size: 0.8rem;
    padding: 3px 5px;
    height: 25px;
    margin-right: 2px;
    border-radius: 3px;
    color: white;
    font-weight: 200;
    line-height: 19px;
    text-decoration: none;
}
.controller.reset
{
    margin-top: 20px;
    background-color: black;
    border: 2px solid #BDBDBD;
    padding: 10px;
    height: auto;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.controller.reset:hover
{
    background-color: #BDBDBD;
    color: black;
}
.name:hover
{
    cursor: pointer;
}
.type_1 /* WB */
{
    background-color: rgb(117,106,119);
}
.type_2 /* HOT */
{
    background-color: #6DAC2F;
}
.type_3 /* S3 */
{
    background-color: rgb(227,119, 30);
}
.type_4 /* POF */
{
    background-color: rgb(173,41,13);
}
.type_5 /* S4 */
{
    background-color: rgb(142,68,173);
}
.type_6 /* IB */
{
    background-color: rgb(8,138,133);
}
.type_7 /* EOD */
{
    background-color: rgb(16, 212, 189);
}
.type_8 /* SOTO */
{
    background-color: rgb(214, 162, 71);
}
#sidebar
{
    display: flex;
    flex-direction: column;
    overflow: auto;
    width: 250px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: black;
    padding: 0;
}
#timers-controller
{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.controller
{
    margin-bottom: 5px;
    cursor: pointer;
    text-align: center;
}
.event_category
{
    font-weight: bold;
    text-align: center;
    color: white;
    margin: 10px 0;
}
.hidden
{
    display: none;
}
.done
{
    background-color: white;
    border-color: white;
    color: black;
}
#opener
{
    position: fixed;
    width: 15px;
    height: 75px;
    background-color: black;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 5px 5px 0;
    top: 43%;
    left: 0;
    color: white;
    line-height: 60px;
    cursor: pointer;
}
#sidebar #actions
{
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-evenly;
    border-bottom: 1px solid #BDBDBD;
    padding: 0 5px;
}
#sidebar #actions > div
{
    border-left: 1px solid #BDBDBD;
    padding: 5px;
    color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 22px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
}
#sidebar #actions > div:hover
{
    color: #BDBDBD;
}
#sidebar #actions > div:first-child
{
    border-left: none;
}
#sidebar #todo
{
    
}