.lightbox-backdrop,
.lightbox-backdrop *,
.lightbox,
.lightbox * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lightbox-backdrop {
  transition: opacity 0.25s linear;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  display: none;
}
.lightbox-backdrop.init {
  display: block;
}
.lightbox-backdrop.show {
  opacity: 0.5;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  transition: opacity 0.15s linear;
  opacity: 0;
  font-size: 1rem;
}
.lightbox .lightbox-container {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 25px;
}
.lightbox .lightbox-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.lightbox .lightbox-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.lightbox .lightbox-body {
  padding: 1rem;
}
.lightbox .lightbox-title {
  font-size: 20px;
  line-height: 35px;
}
.lightbox .lightbox-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  cursor: pointer;
}
.lightbox.init {
  display: block;
}
.lightbox.show {
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.lightbox.show .lightbox-container {
  transform: none;
}

.lightbox-open {
  overflow: hidden;
}

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