#word-search-questions {
}


#word-search-questions .word-search-question {
    border-radius: 4px;
    cursor: pointer;
    padding: 11px 13px 8px;
}

#word-search-questions .word-search-question:nth-child(even) {
    background: #f1f1f1;
}

#word-search-questions .word-search-question.selected {
    background: var(--secondary-color);
    color: #fff;
    cursor: default;
}

#word-search-questions .word-search-question font {}

#word-search-grid {
    position: relative;
}

#word-search-grid #word-search-overlay {
    background: #ffffffa3;
    height: 100%;
    position: absolute;
    text-align: center;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

#word-search-grid.started #word-search-overlay {
    display: none;
}

#word-search-grid #word-search-overlay button {
    background: var(--secondary-color);
    border: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 11px 0 11px;
    width: 156px;

    box-shadow: 1px 1px 24px -9px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 1px 24px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 24px -9px rgba(0,0,0,0.75);
}

#word-search-grid #word-search-overlay button.disabled {
    background: #b7b7b7;
}

#word-search-grid #word-search-heading {
    background: rgba(131, 100, 226);
    color: white;
    display: none;
    font-size: 1.2rem;
    padding: 9px 14px 6px;
}

#word-search-grid.started #word-search-heading {
    display: block;
}

#word-search-grid #word-search-heading > * {
    display: inline-block;
    vertical-align: top;
}

#word-search-grid #word-search-heading #word-search-timer i {
    margin-right: 2px;
}

#word-search-grid #word-search-heading #word-search-floating {
    float: right;
}

#word-search-grid #word-search-heading #word-search-floating button {
    border: 1px solid #CCC;
    display: none;
    background: white;
    border-radius: 5px;
    font-size: 17px;
    line-height: 22px;
    padding: 0px 10px;
}

#word-search-grid table.word-search {
    border: 3px solid rgba(131, 100, 226, 0.5);
    border-radius: 4px;
    margin-bottom: 25px;
    margin: 0 auto 25px;
    touch-action: none;
    width: 100%;
}

#word-search-grid table.word-search, 
#word-search-grid table.word-search td {
    -webkit-user-select: none;
}

#word-search-grid table.word-search td {
    background: #fff;
    border: 1px solid #E4E4E4;
    width: 20px;
    height: 20px;
    text-align: center;
}

#word-search-grid table.word-search td.selected-background {
    background: rgba(131, 100, 226, 0.2) !important;
    border-color: white;
}

#word-search-grid table.word-search td.selected-foreground {
    background: var(--secondary-color) !important;
    border-color: #E4E4E4;
    color: #fff;
}