.task-person .icon, .task-date .icon {
    width: 22px;
    margin-right: 6px;
}

.loading {
    z-index: 20;
    /* position: absolute; */
    top: 0;
    /* left: -5px; */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* transform: translate(-50%, -50%); */
    position: fixed;
    overflow-y: auto;
}

.loading-content {
    position: absolute;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    animation: spin 2s linear infinite;
    transform: translate(-50%, -50%);
}

.page-content-area .dataTables_filter, #project-team-modal .dataTables_filter{
    display: none;
}

#create-task-form .select2-container, #reassign-form .select2-container {
    width: 100% !important;
}

.cus-grey {
    background-color: #888888;
}

input.nothing {
    border: 0;
    outline: none;
}

input.nothing+.error {
    margin-left: 0.5em;
    color: #ff3d71;
    font-size: 12px;
    line-height: 15px;
    width: 100%;
}

.layout-organization-list .filter-list-area .select2-container {
    width: 100% !important;
}

.pre-line {
    white-space: pre-line;
}

.text-left {
    text-align: left;
}

/* #input-country-code + .select2-container .select2-selection--single{
    border-right: 0;
    border-radius: 0;
} */
.task-group-name {
    min-height: 30px;
}

.date {
    line-height: 24px;
}

.button-clear{
    background: none;
    color: #6C757D;
    padding: 6px;
}

.form-group.cus-error .form-control{
    border-color: #ff3d71 !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}