/* simple lighy box (slb) */
.slb-button {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 10px 15px;
  background-color: #5ec792;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.slb-button:hover { box-shadow: inset 0 -2.5px rgba(0, 0, 0, 0.4); }
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.4);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.slb-state {
  position: absolute;
  top: 0;
  left: -10000em;
}
.slb-state.active ~ .slb-main {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.slb-state.active ~ .backdrop {
  bottom: 0;
  opacity: 1;
  z-index: 1;
}
.slb-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  padding: 0 20px;
  z-index: 997;
}
.slb-wrap .slb-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 800px;
  max-height: 95vh;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.slb-wrap .slb-header,
.slb-wrap .slb-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.slb-wrap .slb-header .h,
.slb-wrap .slb-footer .h { margin: 0; }
.slb-wrap .slb-header { padding-bottom: 10px; }
.slb-wrap .slb-footer {
  display: block;
  padding-top: 20px;
  text-align: center;
}
.slb-wrap .slb-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-y: scroll;
}
.slb-wrap .backdrop {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
#gotoform {
  margin-left: 10px;
  display: none;
}
#agree:checked ~ #gotoform {
  display: inline-block;
}
button[disabled="disabled"] {
  cursor: not-allowed;
  background-color: #bbb;
}