span.select2-selection__clear {
    margin-right: 15px;
}

.navbar-brand-box img {
    max-height: 50px;
}

.blinking-text {
    animation: blink-animation 1.5s ease-in-out infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.applied-filters .badge {
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.applied-filters .badge a {
    color: #fff;
    text-decoration: none;
}

.applied-filters .badge a:hover {
    color: #000;
    text-decoration: none;
}


.alert-danger ul {
    margin: 0 !important;
}

.table tr td {
    vertical-align: middle !important;
    padding: 10px !important;
    border-color: #e9e9e9 !important;
}

.table tr th {
    background: #e1e1e1 !important;
    padding: 10px !important;
    border-color: #e1e1e1 !important;
}

.select2 {
    width: 100% !important;
}

.form-control[readonly] {
    background-color: #d6d4d4;
    /* light gray */
    color: black;
    /* muted text */
    border: #a1a1a1 solid 1px;
}

.datepicker {
    z-index: 99999999999999 !important;
}