.gc-modal-container {
  color: #6f6f6f;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
}
.gc-modal-container.closing {
  transition: 0.4s;
  transition-property: opacity;
  opacity: 0;
}
.gc-modal-slide {
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: gcModalSlideIn 0.5s forwards;
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.closing .gc-modal-slide {
  animation: gcModalSlideOut 0.5s forwards;
}
.gc-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .gc-modal-box {
    width: 600px;
    border-radius: 1rem;
    -webkit-box-shadow: 0px 8px 24px 0px #4d4d4d;
    -moz-box-shadow: 0px 8px 24px 0px #4d4d4d;
    box-shadow: 0px 8px 24px 0px #4d4d4d;
  }
}
@media screen and (max-width: 600px) {
  .gc-modal-box {
    width: 100vw;
    border-radius: 0;
  }
}
.gc-modal-close {
  user-select: none;
  font-weight: 700;
  border: 0px solid transparent;
  border-radius: 50%;
  background-color: transparent;
  font-size: 1.8em;
  height: 1.5rem;
  line-height: 0.5rem;
  margin: 2rem 1rem 0 0;
  transition-duration: 0.4s;
}
.gc-modal-close:active {
  font-size: 1.4em;
  color: #c6c6c6;
}
.gc-modal-header {
  display: flex;
  flex-direction: row-reverse;
  min-height: 1em;
}
.gc-modal-heading {
  font-size: 2.2rem;
  font-weight: 700 !important;
}
.gc-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gc-modal-body > * {
  margin: 1.5rem;
}
.gc-modal-button {
  padding: 0.4rem 0;
  font-size: 1.4rem;
  border: 2px solid #222;
  border-radius: 1rem;
  min-width: 16em;
  color: #222;
  background-color: #fff;
  transition-duration: 0.4s;
  transition-property: color, background-color;
  margin-bottom: 4em;
}
.gc-modal-button:focus, .gc-modal-button:active {
  color: #fff;
  background-color: #c6c6c6;
}

@keyframes gcModalSlideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
@keyframes gcModalSlideOut {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
}

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