/**
 *
 * Apply Here your Custom CSS
 *
*/

body {
	
}

.underline {
    text-decoration: underline;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .8);
    z-index: 100;
}

.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.loaderText {
    position: absolute;
    top: 65vh;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.points-highlighted {
    padding: 10px 15px !important;
    color: red;
    font-weight: bold;
    letter-spacing: 0.06em;
}

.results-special-table {
    padding: 0;
    margin-left: 15px;
    position: absolute;
    top: 0px;
    left: 0px
}

@media (max-width: 991px) {
    .results-special-table {
        display: none;
    }
}