/* Navigation styles */
.tabsbzn__nav-list {
  font-family: 'Lato', sans-serif;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #119DA4, #73D2DE);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  }
  
  .tabsbzn__nav-item {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s;
  border-top: 3px solid transparent;
  }
  
  .tabsbzn__nav-item:hover,
  .tabsbzn__nav-item.js-active {
  color: #119DA4;
  border-top: 3px solid #119DA4;
  }
  
  .tabsbzn__nav-item:focus {
  outline: none;
  background-color: rgba(255,255,255,0.2);
  }
  
  /* Panel styles */
  .tabsbzn__panels {
  font-family: 'Lato', sans-serif;
  padding: 20px;
  background: #fff;
  background: linear-gradient(to bottom, #f2f2f2, #fff);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .tabsbzn__panel {
  display: none;
  }
  .tabsbzn__panel p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    margin: 15px 20px;
  }
  .tabsbzn__panel a {
    position: relative;
    display: inline-block;
    color: #119DA4;
    text-decoration: none;
    transition: color 0.3s, border-bottom-color 0.3s, transform 0.3s;
    border-bottom: 2px solid transparent;
  }
  
  .tabsbzn__panel a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #119DA4;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  
  .tabsbzn__panel a:hover:before,
  .tabsbzn__panel a:focus:before {
    visibility: visible;
    transform: scaleX(1);
  }
  
  .tabsbzn__panel a:hover,
  .tabsbzn__panel a:focus {
    color: #0C6E73;
    border-bottom-color: #0C6E73;
    transform: translateY(-2px);
    outline: none;
  }
  .tabsbzn__panel h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
  }
    
  
  .tabsbzn__panel.js-active {
  display: block;
  }
  
  /* Accessibility styles */
  .tabsbzn__nav-list[role="tablist"] {
  margin-bottom: 20px;
  }
  
  .tabsbzn__nav-item[role="tab"] {
  border: none;
  }
  
  .tabsbzn__nav-item[role="tab"][aria-selected="true"] {
  background: linear-gradient(to right, #119DA4, #73D2DE);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .tabsbzn__nav-item[role="tab"][aria-selected="true"]:hover {
  background: linear-gradient(to right, #0C6E73, #73D2DE);
  }
  
  .tabsbzn__nav-item[role="tab"][aria-selected="false"]:hover {
  background-color: rgba(255,255,255,0.2);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .js-decoration {
  z-index: 1;
  }
  .contentbzn__title {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #119DA4;
    text-align: center;
    margin-top: 50px;
    }
  
  
  /* Table of Contents /
  /
  Navigation styles
  Panel styles
  Decoration styles
  */
  /* Comments to denote opening and closing of sections /
  / Navigation styles /
  / Panel styles /
  / Decoration styles */


/* CSS styles for a button that submits a form */
.bzn-submit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bzn-submit-wrapper input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 2px solid #119DA4;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  background-color: #119DA4;
  color: #fff;
  transition: background-color 0.2s ease;
}

.bzn-submit-wrapper input[type="submit"]:hover {
  background-color: #119DA4;
}

/* CSS styles for a translation form */
.translatebzn form {
  position: relative;
}

.translatebzn button[type="submit"] {
  position: absolute;
  bottom: -50px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Apply the tooltip to <p> elements with the tooltipbzn attribute */
p[tooltipbzn] {
  /* Add a tooltip container around the <p> element */
  display: inline-block;
  position: relative;
}

/* Move the tooltip text inside the container */
p[tooltipbzn]:hover::after {
  content: attr(tooltipbzn);
  position: absolute;
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  padding: 5px;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  visibility: visible;
}

/* CSS styles for a tooltip that appears on hover */
p[tooltipbzn]:hover::after {
  opacity: 1;
}

/* CSS styles for a button that deletes images immediately */
.delete_filepond_images_immediately {
  display: block;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  background-color: #f26d6d;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.delete_filepond_images_immediately:hover {
  background-color: #e25d5d;
}

/* CSS styles for a container that holds a delete button and an image */
.delete-filepond-container {
  display: inline-block;
  position: relative;
}

.delete-filepond-container img {
  position: absolute;
  left: 0;
  top: 0;
}

.delete-filepond-container input {
  display: inline-block;
  margin-left: 60px;
  vertical-align: middle;
}

.fp-bzn-modal-btn {
  position: relative;
  display: inline-block;
  color: #119DA4;
  text-decoration: none;
  transition: color 0.3s, border-bottom-color 0.3s, transform 0.3s;
  border-bottom: 2px solid transparent;
}

.fp-bzn-modal-btn:hover {
  background-color: #3fb1b7;
  box-shadow: 0px 0px 10px rgba(17, 157, 164, 0.5);
}

.fp-bzn-modal-btn:focus {
  outline: none;
  background-color: rgb(176, 133, 143);
  box-shadow: 0px 0px 10px rgba(17, 157, 164, 0.5);
}


/* CSS styles for the modal container */
.fp-bzn-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* CSS styles for the modal content */
.fp-bzn-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

.fp-bzn-modal-content h2 {
  font-size: 24px;
  margin-top: 0;
}

.fp-bzn-modal-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.fp-bzn-modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background-color: #ddd;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.fp-bzn-modal-close-btn:hover,
.fp-bzn-modal-close-btn:focus {
  background-color: #444;
  color: #fff;
}



/* CSS styles for a container that holds a message and a copyable text */
.bzn-filepond-copy-paste {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  }
  
  /* Message displayed above the copyable text */
  .bzn-filepond-copy-paste__message {
  margin-bottom: 10px;
  font-size: 14px;
  }
  
/* Copyable text with a border and padding */
.bzn-filepond-copy-paste__text {
  margin-top: 20px;
  font-size: 18px;
  background-color: #F7F7F7;
  border: 1px solid #119DA4;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #222;
}

/* Background color and text color for the copied text state */
.bzn-filepond-copy-paste__text--copied {
  background-color: #E9F8F2;
  color: #119DA4;
}

.bzn-fp-promo-wrapper {
  position: relative;
  background-color: rgba(17, 157, 164, 0.3);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.bzn-fp-promo-message {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

.bzn-fp-promo-link {
  color: #119DA4;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.bzn-fp-promo-link:hover {
  color: #FEEA3B;
}