/* ....................... definitions for the loader ..............................  */
.tableloader {
    /* Center the loader */

    margin: auto;
    border: 10px solid #828282;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;

    display: inline-block;
}

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

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

/* ....................... end of definitions for the loader .......................  */


/* ----------- Result table settings ---------------- */
table#pairs_table {
    font-size: 83%;
    width: 100%;
}

/* override hover-effect and add striped layout */
table#pairs_table tr:nth-child(even) td, table#pairs_table th {
    background-color: #fff;
}
table#pairs_table tr:nth-child(odd) td{
    background-color: #eee;
}

.utr_transcript_ids ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

/* Take some space for utr-IDs */
.utr_transcript_ids {
    width: 210px;
}


#selected_utr_transcripts {
    font-size: 14px;
}
