.input-group > input[data-ride = "spinner"] {
    text-align: center;
}

/* textarea.form-control {
    overflow-x: hidden;
} */

.flash-button {
    animation-name: flash;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: flash;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: flash;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1.0;
    }
}

.nopadding {
    padding-left: 0px;
    padding-right: 0px
}

.nomargin {
    margin: 0px;
}

.blink {
    animation: blinker 1s linear infinite;
}
  
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.input-group.date > .input-group-btn > .bootstrap-select.open {
    z-index: 3;
}

.bootstrap-table,
.bootstrap-table .fixed-table-container,
.bootstrap-table .fixed-table-container .fixed-table-body {
    display: inherit;
}

div.tab-pane:not(.active) {
    pointer-events: none;
}

/* Favorite Button */

label.checkbox-favorite input[type="checkbox"] {
    display: none;
}
  
.checkbox-favorite {
    margin-left: 2em;
    position: relative;
    cursor: pointer;
}
  
.checkbox-favorite .glyphicon {
    color: gold;
    position: absolute;
    top: 0.4em;
    left: -1.25em;
    font-size: 0.75em;
}
  
.checkbox-favorite .glyphicon-star-empty {
    color: gray;
}
  
.checkbox-favorite .glyphicon-star {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
  
.checkbox-favorite:hover .glyphicon-star{
    opacity: 0.5;
}
  
.checkbox-favorite input[type="checkbox"]:checked ~ .glyphicon-star {
    opacity: 1;
}
/* Favorite Button */

.editable-container.editable-inline {
    width: 100% !important;
}

.editable-container .editable-input > *:first-child {
    width: 100% !important;
    padding-right: 4px !important;
}

.tableLog {
    display: inline-table;
}

.tableLog > thead {
    background-color: #0e71b8;
    color: white;
}

.editableButton {
    margin-left: 5px;
    margin-bottom: 5px;
}

.editableform .control-group {
    margin-bottom: 0;
    white-space: nowrap;
    line-height: 20px;
    margin-left: 0px;
    margin-right: 0px;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt > span {
    width: 100%;
}

.form-group.required-field label::after {
    margin-left: 0.2em;
    font-weight: bolder;
    content: "*";
}