.form-wrapper .important-fields {
  display: none !important;
}
.form-wrapper .honeypot {
  display: none !important;
}

.form-wrapper label {
  margin-right: 1em;
  display: block;
  margin-bottom: 0.5em;
}

.form-wrapper label span {
  color: red!important;
}
.form-wrapper input {
  margin-bottom: 1.5em;
  width: 100% !important;
  max-width: 620px !important;
  min-width: 250px;
}

.form-wrapper textarea {
  margin-bottom: 1.5em;
}

.form-wrapper #loader {
  display: none;
}

.form-wrapper #loader .loader-wrapper {
  position: fixed;
  background: #000000bd;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  color: white;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
}

.form-wrapper #loader svg {
  width: 150px;
}

.form-wrapper button {
  color: white;
  transition: 0.3s;
  padding: 0;
  border: unset;
  cursor: pointer;
  margin-bottom: 2em;
	background-color: transparent!important;
}

.has-white-background-color .form-wrapper button {
  color: black;
}

.has-white-background-color .form-wrapper button::after {
  background-image: url(/wp-content/themes/bspress/img/bs-chevron-black.svg);
}

.has-white-background-color input,
.has-white-background-color textarea {
  border: 2px solid #262626 !important;
}

.has-white-background-color label {
  font-weight: 400;
}

/* The container */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #404040;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 8px;
  top: 3px;
  width: 10px;
  height: 15px;
  border: solid white;
  border-width: 0 5px 5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0.7em;
  height: auto;
  width: 100%;
  max-width: 500px;
}

.response-notice {
  padding: 2em;
  background-color: #404040;
	color: white!important;
}
