#my-tasks {
    width: 49%;
    float: left;
    z-index: 1;
}
#department-tasks {
    width: 49%;
    float: right;
    z-index: 0;
}

@media (max-width: 768px) {
    #my-tasks {
        width: 100%;
        float: left;
    }
    #department-tasks {
        width: 100%;
        float: left;
    }
}

#day-view {
    width: 49%;
    float: left;
}
#my-tasks-patient {
    width: 49%;
    float: right;
}

@media (max-width: 768px) {
    #day-view {
        width: 100%;
        float: left;
    }
    #my-tasks-patient {
        width: 100%;
        float: left;
    }
}

.title {
    width: auto;
    display: inline-block;
    float: left;
}

#filter-task {
    width: auto;
    float: right;
    color: #5f8ec2;
    text-align: right;
    vertical-align: middle;
    padding-right: 5px;
    padding-top: 10px;
}

.tasks,
.today {
    width: 100%;
    position: relative;
    min-height: 132px;
}
.tasks tr,
.today tr {
    padding-left: 5px;
    background-color: #f1f1f1;
}
.tasks th,
.today th {
    color: white;
    font-weight: bold;
    padding-left: 5px;
    font-size: 140%
}
.tasks tr th:last-child {
    text-align: right;
    font-style: italic;
    font-weight: normal;
    padding-right: 5px;
}
.tasks td,
.today td {
    border-color: #fafafa;
    border-style: solid;
    border-width: 0px 0px 5px 0px;
}
.tasks td img,
.today td img {
    border-radius: 50%;
    max-width: 80%;
    max-height: 60px;
    padding: 2px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.tasks tr td:first-child {
    background-color: #7e7e7e;
    text-align: center;
    vertical-align: middle;
    font-size: 2em;
}
.tasks tr td:last-child {
    text-align: right;
    vertical-align: middle;
    font-size: 2em;
    padding-right: 5px;
    color: #0051a2;
}
#my-tasks-patient .tasks tr td:last-child,
#my-history-patient .tasks tr td:last-child  {
    text-align: left;
    vertical-align: top;
    font-size: 1em;
    padding-right: auto;
}

.urgent th{
    background-color: #395f6a;
}

.non-urgent th{
    background-color: #5f8ec2;
}

.tasks .fa-circle,
.tasks .fa-check-circle {
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.tasks .name,
.today .name {
    padding-left: 5px;
    padding-right: 5px;
    font-weight: bold;
    color: #000;
}

.tasks .comments,
.today .comments {
    padding-left: 5px;
    padding-right: 5px;
    font-weight: normal;
    font-style: italic;
    color: #858384;
}

.done th {
    opacity: 0.75;
}

.more-comments {
    display: none;
}
 
.success {
    visibility: visible;
    color: #000;
    text-align: left;
    padding: 8px 8px;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
    background-color: rgba(126, 126, 126, 0.5);
}
.success h3 {
    color: green;
}

.close {
    font-size: 2em;
    float: right;
}