.drumHeader
{
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-family: CeraGRBlack;
    margin: 10px;
}

.drumSeparator
{
    width: 1px;
    height: 70%;
    background-color: #FFFFFF
}

.drumName
{
	padding: 15px 25px;
    margin: 5px;
    width: 50px;
    min-width: 50px;
	background-color: #BBBBBB;
	border-radius: 2px;
	transition: 0.5s;
	display: block;
	text-decoration: none;
	color: black;
    text-align: center;
    user-select: none;
}
.drumName:hover {
	background-color: #EEEEEE;
	cursor: pointer;
    box-shadow: 0px 3px 10px 0px #303030;
	text-shadow: 0px 0px 9px #EFEFEF;
	transform: translateY(-2px);
	transition: 0.25s;
}
.drumName:active {
	cursor: pointer;
	background-color: #999999;
	transform: scale(0.99, 0.99);
	box-shadow: 0 0 5px #303030;
	transition: 0.15s;
}


.drumPad
{
    width:100%;
    max-width: 50px;
    height: 50px;
    margin: 5px;
	background-color: #BBBBBB;
	border-radius: 2px;
    border: 1px solid #FFFFFF40;
    box-sizing: border-box;
	transition: 0.2s;
	display: block;
	text-decoration: none;
	color: black;
    text-align: center;
}

.drumPad:hover
{
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
}
.drumPad:active
{
    transform: translateY(2px);
    box-shadow: inset 0px 0px 20px 5px #ffffff;
}

/* Active pads */
.drumPad.active
{
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
    background-color: #b1914e;
}
.drumPad.active:hover
{
    box-shadow: inset 0px 0px 20px 5px #b1554e;
    background-color: #b1914e;
}
.drumPad.active:active
{
    background-color: #d6b15f;
    box-shadow: inset 0px 0px 20px 5px #ffe3a8;
}

/* Accented pads */
.drumPad.accent
{
    box-shadow: inset 0px 0px 20px 5px #ffbca8;
    background-color: #b1554e;
}
.drumPad.accent:hover
{
    box-shadow: inset 0px 0px 20px 5px #4b352e;
    background-color: #b1554e;
}
.drumPad.accent:active
{
    transform: scale(0.95);
    background-color: #d1675f;
    box-shadow: inset 0px 0px 20px 5px #ffbca8;
}

.drumPad.playing
{
    box-shadow: inset 0px 0px 20px 5px #b2ffa8;
    background-color: #35774b;
}

.drumGroup:hover .drumRow:hover .drumName
{
    background-color: #EEEEEE;
}

.drumGroup
{
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 10px;
    border-radius: 4px;
    background-color: #656565;
    border: 1px solid #555555;
    box-shadow: 0px 2px 2px #00000020;
}

.drumRow
{
    display: flex;
    float: left;
    align-items: center;
}

.drumPadGroup
{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.drumControls
{
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    border-radius: 4px;
    background-color: #505050;
    box-sizing: border-box;
    border: 1px solid #40404040;
    box-shadow: 0px 2px 2px #00000060;
}

#tempoLabel
{
    color: white;
}

#tempoSlider
{
    margin-left: 10px;
}



.drumSettings
{
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* time signature */
#timeSignatureSpinner
{
    width: 30px;
    margin-left: 10px;
    margin-top: 3px;
}

#timeSignatureTooltip
{
    /* width: 300px; */
    display:flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#timeSignatureTooltip span
{
    white-space: nowrap;
}

#reverbTooltip
{
    width: 300px;
    display:flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#reverbTooltip span
{
    white-space: nowrap;
}

#content
{
    margin-top: 150px;
}

/* ---- phone mode ---- */
@media only screen and (max-width: 600px) {
    .drumGroup
    {
        flex-direction: row;
        justify-content: center;
    }

    .drumRow
    {
        flex-direction: column;
        align-items: center;
    }

    .drumPadGroup
    {
        flex-direction: column;
        align-items: center;
    }

    .drumSeparator
    {
        width: 80%;
        height: 1px;
    }

    .drumPad
    {
        height: 50px;
    }

    #content
    {
        margin-top: 100px;
    }
}