/**
 * Don't edit this file. Find all style at ./sass folder.
 **/
/* Bootstrap abstracts */
/* Bootstrap related abstracts */
@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wwf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.wwf-modal.is-open {
  display: flex;
}
.wwf-modal--backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.wwf-modal--body {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.wwf-modal--close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
  font-size: 25px;
  color: #aaa;
  width: 48px;
  height: 48px;
  text-align: center;
}
.wwf-modal--close:hover {
  text-decoration: none;
  color: #000;
}
.wwf-modal.is-style-modal-small .wwf-modal--body {
  max-width: 400px;
}
.wwf-modal.is-style-modal-large .wwf-modal--body {
  max-width: 800px;
}

/*# sourceMappingURL=style.css.map */