/* Table of Contents
================================
1. Tabs Styles
================================ */
.filepond-tabs {
  display: flex;
  flex-direction: column;
  height: 100%;
  }
  
  .filepond-tab-navigation {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  }
  
  .filepond-tab-navigation li {
  margin-right: 20px;
  }
  
  .filepond-tab-navigation li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  }
  
  .filepond-tab-navigation li a:hover {
  background-color: #f8f8f8;
  }
  
  .filepond-tab-navigation li.active a {
  background-color: #ffffff;
  border-color: #e5e5e5;
  border-bottom-color: #ffffff;
  color: #333;
  }
  
  .filepond-tab-content .filepond-tab-pane {
  display: none;
  }
  
  .filepond-tab-content .filepond-tab-pane.active {
  display: block;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0 4px 4px 4px;
  }
  /* Filepond tab style */
.bzn-filepond-tab-style label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.bzn-filepond-tab-style label span {
  font-weight: normal;
  color: #666;
}

.bzn-filepond-tab-style input[type="checkbox"] {
  margin-right: 5px;
}

.bzn-filepond-tab-style input[type="text"] {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.bzn-filepond-tab-style textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.bzn-filepond-tab-style .filepond-image-crop-wrapper {
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f5f5f5;
}

.bzn-filepond-tab-style #filepond-image-crop-options {
  margin-top: 5px;
  margin-left: 25px;
}

.bzn-filepond-tab-style #filepond-image-crop-options label {
  font-weight: normal;
  margin-bottom: 3px;
}

.bzn-filepond-tab-style #filepond-image-crop-options input[type="text"] {
  width: 150px;
}
/* Table of Contents
================================
1. Toggle Styles
2. Input Styles
================================ */
/* Hide the checkbox */
input.bzn-filepond-class-onoff[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 40px;
  height: 20px;
  background: linear-gradient(to right, #119DA4, #41B6BB);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

input.bzn-filepond-class-onoff[type="checkbox"]::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

input.bzn-filepond-class-onoff[type="checkbox"]:checked::before {
  transform: translateX(20px);
  background: linear-gradient(to right, #41B6BB, #119DA4);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

input.bzn-filepond-class-onoff[type="checkbox"]::before {
  transition: transform 0.3s, background-color 0.3s;
}

input.bzn-filepond-class-onoff[type="checkbox"]:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.bzn-filepond-class-input input[type=text] {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #ccc;
  transition: border-bottom 0.3s;
  font-size: 16px;
  font-family: inherit;
}

.bzn-filepond-class-input input[type=text]:focus {
  outline: none;
  border-bottom-color: #119DA4;
}
.no-touch-zone {
  position: relative;
  background-color: rgba(173, 209, 211, 0.3);
  padding: 20px;
  border-radius: 10px;
}

.no-touch-zone::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: #119DA4;
  filter: blur(10px);
  z-index: -1;
}

.no-touch-zone-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
  font-size: 16px;
}

.no-touch-zone-message a.unlock-link {
  color: #119DA4;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.no-touch-zone-message a.unlock-link:hover {
  color: #FEEA3B;
}

.no-touch-zone input[type=checkbox] {
  pointer-events: none;
  opacity: 0.5;
}

.no-touch-zone input[type=text] {
  pointer-events: none;
  opacity: 0.5;
}
.filepond-message {
  background-color: #119DA4;
  color: #FFFFFF;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  position: relative; /* Add position:relative to the container element */
}

.filepond-message p {
  margin: 0;
}

.filepond-message a.buy-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FEEA3B;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.filepond-message a.buy-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Add styles for the dismiss button */
.filepond-message button.dismiss-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
}



