﻿.list-incoming-applicants {
    margin-left: -40px;
}

    .list-incoming-applicants li {
        list-style: none;
        padding: 5px 0px;
    }

        .list-incoming-applicants li:not(:first-child) {
            border-top: 1px solid #e8e8e8;
        }

        .list-incoming-applicants li a .list-content h6 {
            color: #17A2BE;
            font-weight: 400;
        }

        .list-incoming-applicants li:hover > a .list-content h6 {
            color: #28A745;
        }

        .list-incoming-applicants li .list-content {
            margin-bottom: 30px;
            margin-top: 10px;
        }

.gv-table td {
    border-top: none;
}

.user-img {
    border: 2px solid #e1e1e1;
    margin: 0 auto;
    padding: 3px;
}

.header-border {
    border-bottom: 2px solid #28A745;
    width: 80px;
}

.bg-status-pending {
    background-color: #007bff !important;
    color: #ffffff !important;
}
.bg-status-validated, .bg-status-passed {
    background-color: #28a745 !important;
    color: #ffffff !important;
}
.bg-status-cancelled {
    background-color: #fd7e14 !important;
    color: #ffffff !important;
}

.bg-status-rejected, .bg-status-failed {
    background-color: #dc3545 !important;
    color: #ffffff !important;
}
.bg-status-scheduled {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
}

.form-group label {
    font-weight: 300;
}

.form-control[readonly] {
    background-color: transparent;
}

.select2-results__option[aria-disabled="true"] {
    cursor: no-drop;
}

.select2-selection__choice {
    font-size: 12px;
}

.s-loader {
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}