.auto-refresher {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: row;
}

.auto-refresher .auto-refresher-button {
  margin-right: 0.5rem;
  display: inline-block;
  font-weight: 400;
  color: #6c757d;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid #6c757d;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.auto-refresher .auto-refresher-button:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  text-decoration: none;
}

.auto-refresher .auto-refresher-button:focus, .auto-refresher .auto-refresher-button.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.auto-refresher .auto-refresher-button:disabled, .auto-refresher .auto-refresher-button.disabled {
  opacity: 0.65;
  color: #6c757d;
  background-color: transparent;
}

.auto-refresher .auto-refresher-button:not(:disabled):not(.disabled):active, .auto-refresher .auto-refresher-button:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.auto-refresher .auto-refresher-button:not(:disabled):not(.disabled):active:focus, .auto-refresher .auto-refresher-button:not(:disabled):not(.disabled):active.focus, .auto-refresher .auto-refresher-button:not(:disabled):not(.disabled).active:focus, .auto-refresher .auto-refresher-button:not(:disabled):not(.disabled).active.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.auto-refresher .auto-refresher-container {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 2px;
  background-color: #6c757d;
  align-self: center;
}

.auto-refresher .auto-refresher-container.auto-refresher-container-xs {
  height: 5px;
}

.auto-refresher .auto-refresher-container.auto-refresher-container-sm {
  height: 7px;
}

.auto-refresher .auto-refresher-container .auto-refresher-progress-bar {
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  position: absolute;
  z-index: 1;
  border-radius: 2px;
  -webkit-transition: width 0.5s, height 0.5s;
  -moz-transition: width 0.5s, height 0.5s;
  transition: width 0.5s, height 0.5s;
}
