@charset "UTF-8";
/*
.class {
  property: value;

  @include tablet-small {
    property: value;
  }
}
*/
button {
  font-family: "motiva-sans", sans-serif;
}

button.clear {
  border: 0;
  background: #fff;
}

#selectedFilter {
  color: #005fec;
}

ul {
  padding-left: 0;
  margin: 0;
}

.filter {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .filter__settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-top: 1px solid #E0E5EC;
    border-bottom: 1px solid #E0E5EC;
  }
}

.custom__select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .custom::before, .custom__options {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
  }
}

.custom__select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0;
  border-bottom: 1px solid #E0E5EC;
}

.custom__select-wrapper:last-child {
  border: 0;
}

.custom__select-wrapper.clearFilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom__select-wrapper .selected-clearFilter {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 1rem 0 !important;
}

@media (min-width: 768px) {
  .custom__select-wrapper {
    padding: 0 2em;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .custom__select-wrapper:last-child {
    margin-left: auto;
  }
  .custom__select-wrapper:first-child, .custom__select-wrapper:last-child {
    padding: 0;
  }
}

.custom__select-wrapper h6 {
  padding: 20px 3px;
  color: #62668C;
  font-weight: 300;
}

.custom__select-trigger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

@media (min-width: 768px) {
  .custom__select-trigger {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-right: auto;
  }
}

.custom__select-wrapper h6,
.custom__select-trigger h6 {
  font-size: .75rem;
  line-height: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 0;
}

.custom__select-trigger h6 {
  color: #005fec;
  font-weight: 900;
}

.custom__select-wrapper #selectedFilter {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #005fec;
  font-weight: 800;
  padding: 0;
}

.custom__select button,
.custom__option button {
  background: transparent;
  border-radius: 4px;
  border: 0;
}

.custom__select button:focus-visible:before,
.custom__option button:focus-visible:before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

@media (min-width: 768px) {
  .custom__select button,
  .custom__option button {
    color: white;
  }
}

.custom__option button::before {
  border: solid 0px white;
}

.custom__option button:focus-visible::before {
  border: solid 2px white;
}

.custom__option button {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
}

.custom__options {
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  color: #E0E5EC;
}

@media (min-width: 768px) {
  .custom__options {
    display: unset;
    position: absolute;
    background-color: #005fec;
    max-height: 320px;
    overflow-y: scroll;
  }
  .custom__options#storyFilter {
    overflow: hidden;
  }
}

.custom__options.active {
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.custom__select-trigger, .custom__option {
  letter-spacing: 1px;
  font-weight: 800;
  color: #005fec;
  border: 0;
  background: transparent;
}

@media (min-width: 768px) {
  .custom__select.open::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 11px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid #005fec;
  }
}

.custom__select .custom__options {
  min-width: 15rem;
}

.custom__select.open .custom__options {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  color: #fff;
  min-width: 15rem;
}

@media (min-width: 768px) {
  .custom__select.open .custom__options {
    display: unset;
    -webkit-box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  }
}

.custom__option {
  position: relative;
  display: block;
  padding: 0 22px 0 12px;
  font-weight: 400;
  color: #62668C;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .custom__option {
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: white;
    font-weight: 300;
    padding: 0 22px 0 20px;
  }
  .custom__option a {
    color: white !important;
    text-decoration: none;
  }
}

.custom__option:hover {
  cursor: pointer;
}

.custom__option.selected {
  color: #005fec;
}

@media (min-width: 768px) {
  .custom__option.selected {
    color: #ffffff;
  }
}

.custom__option.selected::before {
  content: "•";
  margin-left: -12px;
  padding-right: 0px;
}

.empty-state {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #005fec;
  padding: 1rem;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem .5rem;
}

.empty-state h4 {
  color: white;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  margin-left: .5rem;
}

.empty-state h4 span {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.arrow {
  position: relative;
  height: 5px;
  width: 3px;
  margin-left: .5rem;
  margin-bottom: .1rem;
}

.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.1rem;
  height: 100%;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.arrow::before {
  left: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #005fec;
}

@media (min-width: 768px) {
  .arrow::before {
    left: 7px;
  }
}

.arrow::after {
  left: -2.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #005fec;
}

@media (min-width: 768px) {
  .arrow::after {
    left: 4.5px;
  }
}

.open .arrow::before {
  left: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .open .arrow::before {
    left: 7px;
  }
}

.open .arrow::after {
  left: -2.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  .open .arrow::after {
    left: 4.5px;
  }
}
/*# sourceMappingURL=filters.css.map */