/* Customize the label (the theme-selection) */

.theme-selection {
    display: block;
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 10px;
    height: min-content;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.33s ease-out;
}

.theme-selection:hover {
    color: #00bcd4;
}

.theme-selection input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.theme-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #ccc;
    transition: background-color 0.33s ease-out;
}

/* On mouse-over, add a grey background color */
.theme-selection:hover input~.theme-radio {
    background-color: #00bcd4;
}

.theme-selection input:checked~.theme-radio {
    background-color: #00bcd4;
}

#essay-selection-container {
    display: none;
}