@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
.therapeutic-areas .therapeutic-areas__popup {
  display: none;
  position: fixed;
  top: 0;
  width: 0vw;
  height: 0vh;
  z-index: 1900;
  background-color: #001965;
  color: #ffffff;
  overflow-y: scroll;
  transition: all 0.25s;
  right: 50%;
  left: 50%;
  top: 50%;
  bottom: 50%;
}
.therapeutic-areas .therapeutic-areas__popup .slab {
  padding: 32px 0;
}
.therapeutic-areas .therapeutic-areas__popup .logo__wordmark {
  background: url(therapeutic-areas/resources/wordmark-light.2d390528.svg) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__popup .logo__wordmark {
    width: 317px;
    height: 66px;
  }
}
.therapeutic-areas .therapeutic-areas__input {
  position: absolute;
  display: none;
}
.therapeutic-areas .therapeutic-areas__popup--open {
  display: block;
}
.therapeutic-areas .therapeutic-areas__popup--open.therapeutic-areas__popup--visible {
  width: 100vw;
  height: 100vh;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.therapeutic-areas .therapeutic-areas__popup--open .therapeutic-areas__ta--visible {
  opacity: 1;
  transform: translate(0, 0);
}
.therapeutic-areas .therapeutic-areas__button {
  -webkit-appearance: none;
          appearance: none;
  border: 0px;
  background: transparent;
}
.therapeutic-areas .therapeutic-areas__close {
  background: url(therapeutic-areas/resources/close.3101c7a8.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  cursor: pointer;
  margin-top: 21px;
  margin-right: 12px;
  width: 30px;
  height: 27px;
  transition: transform 0.25s;
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__close {
    margin-top: 40px;
    width: 52px;
    height: 48px;
  }
}
.therapeutic-areas .therapeutic-areas__tas {
  margin: 34px 0;
}
@media screen and (min-width: 1000px) {
  .therapeutic-areas .therapeutic-areas__tas {
    margin: 60px 0;
  }
}
.therapeutic-areas .therapeutic-areas__link {
  text-decoration: none;
  color: #ffffff;
}
.therapeutic-areas .therapeutic-areas__ta {
  overflow-y: hidden;
  transform: translate(0, 200px);
  opacity: 0;
  transition: background 0.25s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
}
.therapeutic-areas .therapeutic-areas__ta.therapeutic-areas__ta--default {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 52px 40px;
  margin: 12px 0 0 0;
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__ta.therapeutic-areas__ta--default:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__ta.therapeutic-areas__ta--default {
    padding: 62px 52px 62px;
  }
}
@media screen and (min-width: 1000px) {
  .therapeutic-areas .therapeutic-areas__ta.therapeutic-areas__ta--default {
    height: 180px;
    margin: 0 12px 12px 0;
  }
}
.therapeutic-areas .therapeutic-areas__ta.therapeutic-areas__ta--link {
  margin: 8px auto;
}
.therapeutic-areas .therapeutic-areas__headline {
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__headline {
    font-size: 30px;
    line-height: 42px;
  }
}
.therapeutic-areas .therapeutic-areas__detail {
  font-size: 18px;
  text-align: center;
  opacity: 0.7;
  min-height: 106px;
}
@media screen and (min-width: 500px) {
  .therapeutic-areas .therapeutic-areas__detail {
    overflow: hidden;
    height: 106px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
  }
}
.therapeutic-areas .therapeutic-areas__ta--default .therapeutic-areas__cta {
  padding-top: 10px;
  text-align: center;
  position: relative;
}
