.bsc {
  display: grid;
  grid-template-columns: 4fr 5fr;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bsc {
    grid-template-columns: 1fr;
  }
}

.bsc_wrap {
  width: 100%;
}
.bsc_wrap p, .bsc_wrap br {
  display: none;
}
.bsc_wrap label {
  display: block;
  padding: 0;
}
.bsc_wrap input, .bsc_wrap textarea {
  width: 100%;
}
.bsc_wrap .breheimen_button {
  transform: scale(0.9);
}

.bsc_privacy {
  position: relative;
  margin: 0 0 15px 0;
}
.bsc_privacy input[type=checkbox] {
  transform: translateY(2px) translateX(0);
  position: absolute;
  left: 0;
}
.bsc_privacy label {
  padding-left: 22px;
}

.bsc_row {
  margin: 0 0 14px;
}

.bsc_label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
}

.bsc_row--checkbox {
  margin-top: 6px;
}

.bsc_grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .bsc_grid {
    grid-template-columns: 1fr;
  }
}

.bsc_checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.bsc_checkbox input {
  margin-top: 3px;
}

.bsc_btn {
  display: inline-block;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: #2271b1;
  color: #fff;
  cursor: pointer;
}

.bsc_btn--secondary {
  background: #50575e;
}

.bsc_notice {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dcdcde;
}

.bsc_notice--error {
  border-color: #d63638;
}

.bsc_hp_wrap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.bsc_sr_only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.bsc_modal[hidden] {
  display: none !important;
}

.bsc_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  text-align: center;
}

.bsc_modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.bsc_modal__dialog {
  position: relative;
  margin: 12vh auto 0;
  max-width: 520px;
}

.bsc_modal__content {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px 15px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 12px;
  font-size: 18px;
  color: #334;
}

.bsc_spinner_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bsc_spinner {
  width: 26px;
  height: 26px;
  border: 3px solid #c3c4c7;
  border-top-color: #2271b1;
  border-radius: 50%;
  animation: bsc-spin 0.9s linear infinite;
}

@keyframes bsc-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=bsc-public.css.map */
