div.required .control-label:not(span):after,
td.required:after {
    content: ' *';
    color: #f00;
    font-weight: bold;
}

/* input[type='search']::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button;
    cursor: pointer;
} */

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.blink {
    animation: blinker 1s infinite cubic-bezier(.46, .03, .52, .96)
}

.highlighted {
    background-color: #d9edf7;
}

.text-middle {
    vertical-align: middle !important;
}

.selected {
    background-color: #d4edda !important;
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Mobile */
@media only screen and (max-width: 600px) {
    .text-right {
        text-align: left;
    }

    .text-center {
        text-align: left;
    }
}

/* Landscape */
@media only screen and (min-width: 601px) {
    .text-right {
        text-align: left;
    }

    .text-center {
        text-align: left;
    }
}

/* Tab/Ipad */
@media only screen and (min-width: 768px) {
    .text-right {
        text-align: left;
    }
}

/* Laptop */
@media only screen and (min-width: 992px) {
    .text-right {
        text-align: right;
    }
    .text-center {
        text-align: center;
    }
}
