/* Popups */
.spek-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10000;
  opacity: 0;
  transition: all 0s, opacity 400ms;
}
.spek-popup.open {
  visibility: visible;
  z-index: 10000;
  opacity: 1;
}
.spek-popup.scrollable-popup {
  overflow-y: scroll;
}
.spek-popup .popup-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50vh;
  overflow-y: scroll;
}
.spek-popup .popup-content {
  position: relative;
  z-index: 10;
  width: 600px;
  max-width: 90%;
  top: -50%;
  border: 0px solid black;
  padding: 20px 20px 20px;
  background: #f5f5f5;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.5);
}
.spek-popup .popup-content .popup-closer {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border: 0px solid black;
  border-radius: 100%;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.5);
  background: #f5f5f5;
  cursor: pointer;
}
.spek-popup .popup-content .popup-closer svg,
.spek-popup .popup-content .popup-closer svg path {
  stroke: black;
}
.spek-popup .popup-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
  background: rgba(0, 0, 0, 0.6);
}

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