div.row.border_bottom {
    border-bottom: 1px solid grey;
}
div.form-group .form-control {
    margin-bottom: 5px;
}
div.form-group .button {
    margin-top: 5px;
}

.tooltip-underline {
    text-decoration: underline dotted black;
    cursor: help;
}
.container-fluid {
    margin-top: 10px;
}

.table-responsive {
    overflow-x: initial !important;
}
.disabled-icon {
    opacity: 0.5;
    color: grey;
}
table.table tbody tr td.actions .btn-group {
  display: flex;
}

table.table tbody tr td {
    white-space: nowrap;
}
table.table tbody tr td.wrap {
    white-space: normal !important;
}

.glyphicon-repeat {
    font-size: 2em;
    -webkit-animation: spin 500ms infinite linear;
    animation: spin 500ms infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.btn .glyphicon {
    margin-right: 5px;
}

.disabled {
    text-decoration: line-through;
}

