.clr-yellow { color: yellow;}
.clr-green { color: green;}
.clr-red { color: red;}
.clr-skyblue { color: lightskyblue;}
.clr-grey { color: slategrey;}
.clr-pink { color: pink;}

/* Driver Activity table */
.activity-td { padding: 0 !important;}
.driver-activity-cal { cursor: pointer;}

/* General css */
.spacer5 { height: 5px; clear: both;}
.spacer10 { height: 10px; clear: both;}
.spacer15 { height: 15px; clear: both;}
.spacer20 { height: 20px; clear: both;}
.pt-35 { padding-top: 35px;}
.pull-left{float:left!important;}
.pull-right{float:right!important;}

.card-red-border {
    border-bottom: 3px solid #aa3232;
}
.card-red-border a {
    color: #444;
    text-decoration: none;
}

.hidden {
    display: none;
}
#time_activity td:first-child {
    padding: 1.5rem 0.75rem;
}

.driver-map {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
    justify-content: space-around;
}

.driver-free {
    color: #5cba0f;
}

.driver-picking-up {
    color: #f49595;
}

.driver-delivering {
    color: #fce200;
}

.driver-busy {
    color: #ff0000;
}

.driver-offline {
    color: #d0b4ac;
}

.driver-all {
    color: #000000;
}

#driver_incentive_weekdays {
    display: flex;
    align-items: center;
}

#driver_incentive_weekdays label {
    margin: 0 20px 0 5px;
}

@media only screen and (max-width: 767px) {
    #driver_incentive_weekdays {
        flex-wrap: wrap;
    }
    #driver_incentive_weekdays label {
        margin-right: 0;
        width: calc(100% - 21px);
    }
}

#driver_incentive_incentiveType label, #driver_incentive_driverState label {
    margin-right: 15px;
    margin-left: 5px;
}

.days-group {
    min-width: 120px;
    display: inline-block;
}

input[type="radio"],
input[type="checkbox"] {
    vertical-align: middle;
}

.remove-day {
    margin-top: 25px;
}
.remove-polygon {
    margin-top: 30px;
}

.table-time-selection tr th,
.table-time-selection tr td {
    padding: 0.5rem 0.75rem 0 0;
}
.modal-body {
    overflow-x: auto;
    max-height: 450px;
}

.driver-form-error ul {
    padding-left: 0;
    margin-top: 0.2rem;
    list-style-type: none;
}

.notifications.unread-notification {
    background-color: #ebedef;
}

.c-header-nav .c-header-nav-link.active {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.badge.badge-pill.badge-danger{
    font-size: 9px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}