/* Variables */
/* Mixens: */
.resource {
  text-decoration: none;
}

.resource > div {
  transition: box-shadow 0.25s ease;
}

.resource:hover > div {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5) !important;
}

.resource:hover .resource-desc-arrow {
  opacity: 1;
}

.resource-filters-wrap {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .resource-filters-wrap {
    position: sticky;
    top: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .resources-available-wrap {
    border-bottom: solid 3px #003876;
    margin: 0 36px 0 !important;
  }
}

.filter-info-link {
  font-size: 18px;
}

.resource-short-desc {
  max-height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.resource-desc-arrow {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 24px;
  font-size: 25px;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}