/*
-----------------------------------------------------------	Options Panel
*/

#option-container {
    position: absolute;
    width: auto;
    height: auto;
    right: 0px;
    top: 0px;
    padding: 3px;
    padding-left: 10px;
    border-radius: 0px 0px 0px 10px;
    overflow: visible;
    background-color: rgba( 0,0,0, 0.5 );
}

.option-button {
    display: inline-block;
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    background-size: cover;
    opacity: .8;
    border: 1px solid transparent;
}

.option-button:hover {
    border: 1px solid white;
}

.option-button > div {
    position: absolute;
    right: 0px;
    top: 30px;
    color: white;
    width: 100px;
    text-align: center;
    background-color: #132228;
    border: 1px solid white;
    background-color: #230228;
    font-size: 18px;
    padding: 5px;
    display: none;
    cursor: pointer;
}

.option-button:hover > div {
    display: block;
}

#music-button {
	background-image: url('../ui/music-off.svg');
}

#music-button.enabled {
	background-image: url('../ui/music-on.svg');
}

#quit-button {
    zdisplay: none;
	background-image: url('../ui/quit.svg');
}

#quit-button.enabled {
    display: inline-block;
}

#help-button {
    zdisplay: none;
	background-image: url('../ui/help.svg');
}

#help-button.enabled {
    display: inline-block;
}
