/*.panel-body::-webkit-scrollbar {
    display: none;
}*/

.panel-result-list {
  /*overflow: hidden;*/
}

.panel-result-list .panel-body {
  /*max-height: 400px;
  overflow: auto;*/
}

.search-result-list {
  /*height: 100%;*/
  /*overflow-y: auto;
  overflow-x: hidden;*/
  margin-bottom: 0px;
}


.search-result-list .spacer {
  margin: 0;
  padding: 0;
  height: 0;
  width: 100%;
}

.search-result-list .panel-body,.search-result-list .panel {
  margin-bottom: 0px !important;
}

.btn-load-more {
  width: calc(100% - 10px);
  margin: 5px 0 0 5px;
}

@keyframes blink {
    /**
     * At the start of the animation the dot
     * has an opacity of .2
     */
    0% {
      opacity: .2;
    }
    /**
     * At 20% the dot is fully visible and
     * then fades out slowly
     */
    20% {
      opacity: 1;
    }
    /**
     * Until it reaches an opacity of .2 and
     * the animation can start again
     */
    100% {
      opacity: .2;
    }
}

.search-progress span {
    /**
     * Use the blink animation, which is defined above
     */
    animation-name: blink;
    /**
     * The animation should take 1.4 seconds
     */
    animation-duration: 1.4s;
    /**
     * It will repeat itself forever
     */
    animation-iteration-count: infinite;
    /**
     * This makes sure that the starting style (opacity: .2)
     * of the animation is applied before the animation starts.
     * Otherwise we would see a short flash or would have
     * to set the default styling of the dots to the same
     * as the animation. Same applies for the ending styles.
     */
    animation-fill-mode: both;
}

.search-progress span:nth-child(2) {
    /**
     * Starts the animation of the third dot
     * with a delay of .2s, otherwise all dots
     * would animate at the same time
     */
    animation-delay: .2s;
}

.search-progress span:nth-child(3) {
    /**
     * Starts the animation of the third dot
     * with a delay of .4s, otherwise all dots
     * would animate at the same time
     */
    animation-delay: .4s;
}
