.bwalk-form-btn {
  padding: 0 20px;
}
.bwalk-forms-container {
  position: relative;
}
.bwalk-forms-header {
  text-align:center;
}
.bwalk-forms-header h3 {
  font-weight:700;
}
.bwalk-forms-container select {
  color: #000;
}
.bwalk-form-close-btn {
  width: 30px;
  height: 30px;
  background-color: rgb(var(--color-primary));
  color: #ffffff;
  font-size: 30px;
  min-width: unset !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  position: absolute;
  top: 20px;
  right: 20px;
  
}
.bwalk-forms-container[form-type="modal"] .bwalk-forms-modal-backdrop {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease;
  width: 100vw;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y:scroll;
}
.bwalk-forms-container[form-type="modal"] .bwalk-forms-modal-backdrop.open {
  opacity:1;
  pointer-events:all;
  z-index: 9999;
}
.bwalk-forms-modal-box {
  background: #ffffff;
  padding:1.5rem;
  width:100%;
  max-width:420px;
  transform:translateY(12px);
  transition:transform 0.2s ease;
  position: relative;
}
.bwalk-forms-modal-backdrop.open .bwalk-forms-modal-box {
  transform:translateY(0)
}
.bwalk-forms-container[form-type]:not([form-type="modal"]) .bwalk-form-btn,
.bwalk-forms-container[form-type]:not([form-type="modal"] .bwalk-form-close-btn-container {
  display: none !important;
}
@media (max-width: 767px) {
  .bwalk-forms-container[form-type="modal"] .bwalk-forms-modal-box {
    max-width:90%;
  }
}