/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

/*table rows and hover*/
tbody>tr:nth-child(even){
    background-color: #fff;
}
thead>tr{
    background-color: #fff;
}
.table-hover>tbody>tr:hover{
    background-color: #eaf1f7;
}

@media only screen and (max-width: 760px), (max-device-width: 1024px) and (min-device-width: 768px){
    /* Fixes hover for mobile devices */
    table.ls-answers > tbody > tr:hover {
        background-color: #eaf1f7;
    }
    /* Hide repeated headers on iPADs!!!*/
    .ls-heading.ls-heading-repeat{display:none}

}

/* Left column in matrix type questions is left aligned */
.ls-answers tbody .answertext {
    text-align: left;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* hide classes */
.hide-answers .ls-answers {
    display: none;
}