/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
@layer drupal {
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 1;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeOutDown {
    from {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 100%, 0);
    }
  }
  @keyframes loading-spinner {
    0% {
      transform: rotate(0deg);
      clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    25% {
      clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    50% {
      clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
    }
    75% {
      clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
    }
    100% {
      clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0, 0 0);
    }
  }
}
.paragraph-course-finder {
  position: fixed;
  overflow: auto;
  z-index: 5;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  max-height: 100vh;
  padding: 60px 15px 0;
  background: #F8F8F8;
  animation-duration: 400ms;
  animation-name: fadeIn;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2509803922);
}
@media (min-width: 992px) {
  .paragraph-course-finder {
    top: 74px;
    max-height: calc(100vh - 74px);
    padding: 60px;
  }
}
.paragraph-course-finder.open {
  display: block;
}
.paragraph-course-finder.slideout {
  animation-name: fadeOut;
  animation-duration: 400ms;
}
.paragraph-course-finder__wrapper {
  max-width: 1146px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .paragraph-course-finder__wrapper {
    position: relative;
  }
}
.paragraph-course-finder__field-title span {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.6px;
  color: #202020;
}
@media (min-width: 992px) {
  .paragraph-course-finder__field-title span {
    margin-bottom: 40px;
    font-size: 28px;
    letter-spacing: -0.7px;
    color: #000;
  }
}
.paragraph-course-finder .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: #F8F8F8;
  color: #0046b4;
}
.paragraph-course-finder .btn-close::after, .paragraph-course-finder .btn-close::before {
  background-color: #0046b4;
  height: 20px;
}
@media (min-width: 992px) {
  .paragraph-course-finder .btn-close::after, .paragraph-course-finder .btn-close::before {
    height: 25px;
  }
}

#cf-loader.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  color: #ffffff;
  background-color: rgba(7, 7, 7, 0.92);
  opacity: 1;
  overflow: auto;
  z-index: 1000;
}

#cf-loader .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  max-width: 780px;
  padding: 15px;
  font-size: 13px;
  line-height: 25px;
  text-align: center;
  transform: translate(-50%, -50%);
}

#cf-loader .message {
  max-width: 280px;
  margin: 23px auto;
  font-size: 17px;
}

#cf-loader .icon {
  width: 50px;
  height: 50px;
  filter: invert(100%);
}

#cf-loader #cf-loading-bar {
  max-width: 100%;
}

/*# sourceMappingURL=course-finder-modal.css.map */
