/* Custom style sheet. */

table {
    font-family: 'Prompt', sans-serif;
}

tr:hover {
    cursor: pointer;
}

.template-demo>h2:hover {
    background-color: #E5E7E9;
    cursor: pointer;
}

.list-ticked li {
    font-size: 1.2em;
}

.page-body-wrapper {
    padding: 0px;
}

.stretch-card:hover {
    cursor: pointer;
}

.table td {
    white-space: normal;
}

.list-ticked li:before {
    content: none;
    color: #e65251;
}

.loader {
    border: 7px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid blue;
    border-bottom: 5px solid blue;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.table-assess th td {
    padding : 3px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}