#search {
    width: 80%;
}

#search_button {
    width: 32px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 4px;
    background-color: #c90000;
    border-color: #d90000;
    cursor: pointer;
}

.hourglass {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.text-lg {
    font-size: 1.1rem;
}

@-webkit-keyframes moving-gradient {
    0% {
        background-position: left bottom;
    }
    100% {
        background-position: right bottom;
    }
}

.progress-bar {
    margin: 5px;
    padding: 5px;
    display: inline;
    width: 100%;
    border-radius: 10px;
    background: -webkit-linear-gradient(
            left,
            #ffffff 0%,
            #f2f2f2 30%,
            #e8e8e8 50%,
            #f2f2f2 70%,
            #ffffff 100%
    ) repeat;

    -webkit-background-size: 50% 100%;
    -webkit-animation-name: moving-gradient;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

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

@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);
  }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

* html .ui-autocomplete {
    height: 100px;
}