/* Question Palette Boxes */
.box {
    width: 38px;
    height: 38px;
    display: inline-block;
    margin: 5px;
    line-height: 38px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    background: #ddd;
}

/* STATUS COLORS */
.not-visited   { background: #bdbdbd; }
.not-answered  { background: #ff7043; color:white; }
.answered      { background: #4caf50; color:white; }
.review        { background: #7e57c2; color:white; }
.current       { border: 3px solid #0d47a1 !important; }

/* MOBILE BEHAVIOR */
@media (max-width: 767px) {

    #palettePanel { display:none; }

    #questionPanel, #palettePanel {
        width:100%;
    }

    .panel {
        margin-top:10px;
    }

    #mobileTabs {
        margin-bottom:10px;
    }

}
