/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 11 2025 | 15:32:31 */
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
input[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
input[type="checkbox"] + label:before {
  content: '';
  margin-top: -1px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid #73CDDD;
}

input[type="checkbox"]:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
input[type="checkbox"]:checked + label:before {
  background: #73CDDD;
}
input[type="checkbox"]:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
input[type="checkbox"]:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bis-footer-v0 .newsletter-form {
  font-family: "Open Sans" !important;
  padding: 0;
  margin: 0;
}


.newsletter-form .input-container {
  padding: 5px 0;
  
  line-height: 1.5;
}

.bis-footer-v0 .newsletter-form .input-container label {
  line-height: 1.5;
  font-family: "Open Sans" !important;
}

.newsletter-form .input-container button {
  transition: all 0.4s ease;
  font-weight: bold;
  margin: 5px 0;
  background: #E6007E;
  border-radius: 5px;
  color: white;
}

.newsletter-form .input-container button:hover {
  background: black;
}

.newsletter-form .input-container button .fas {
  display: none;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  display: inline-block;
  vertical-align: text-top;
  border-radius: 5px;
  background: white;
  width: 100%;
  margin: 2px 0;
  padding: 5px 10px;
  border: 1px solid #73CDDD;
}