/* main.css */
html, body {
  font-size: 13px;
  color: #385164;
  font-family: 'Oswald', sans-serif;
}
h1, h2, h3, h4, h5, h6, .kpi-title {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}
section {
  padding: 2rem 0;
}
.dropdown li.S {
  background: #52cc52;
  color: #fff;
}
.dropdown li.S span {
  color: #fff;
}
.dropdown li.A {
  background: #ddd;
}
.dropdown li.X, .dropdown li.XS {
  background: #a9a9a9;
  color: #fff;
}
.dropdown-item>:focus, .dropdown-item:hover {
  color: inherit;
  background-color: inherit;
  opacity: 0.8;
}
.dropdown-menu>li>input, .dropdown-menu .items li {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu .items li {
  cursor: pointer;
}
.search-icon {
  height: 20px;
  position: absolute;
  top: 5px;
  right: 0;
}


.dropdown .btn {
  text-align: left;
  width: 140px;
  border-radius: 0;
}
.dropdown-toggle::after {
  float: right;
  margin-top: 0.5rem;
}

.dropdown-menu {
  font-size: 1rem;
  padding: 0;
}
.dropdown-menu input {
  width: 100%;
  border: 1px solid rgba(0,0,0,.3);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0 1rem;
}
.dropdown-item {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.15);
}

@keyframes blink {
    0% {
      opacity: .2;
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: .2;
    }
}

#app {
  display: none;
}
#loading {
  font-size: 20px;
  display: none;
}
#loading .animated {
    font-size: 30px;
    margin-left: 2px;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}
#loading .animated:nth-child(3) {
    font-size: 30px;
    margin-left: 2px;
    animation-delay: .2s;
}
#loading .animated:nth-child(4) {
    font-size: 30px;
    margin-left: 2px;
    animation-delay: .4s;
}

.filter {
  display: inline-block;
}
.items {
  padding-left: 0;
}