.loader {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    border-top: 4px solid blue;
    border-right: 4px solid green;
    border-bottom: 4px solid red;
    border-left: 4px solid pink;
    display:  inline-block;
    /* margin-top: 5px; */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.text{
    display:  inline-block;
}
a.disabled{
    cursor: not-allowed;
}

span.alert{
    padding: 3px;
    margin-left: 3px;
    margin-right: 6px;
}

ul.components{
    padding-top: 10px;
}

ul.components input[type=checkbox] {
    margin-right: 5px;
}

div.select-all{
    padding: 10px 0 0 10px;
}

