
/* Droptab Styles */
.droptab_wrap {
  margin: 0 auto 20px;
  position: relative;
  max-width: 1300px;
  width: 100%;
}
.rel_wrap {
  position: relative;
}
.droptab_title {
  width: 100%;
  height: 50px;
  background-color: #0d695b;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transition: all 0.3s ease;
  position: relative;
}
.droptab_title::after {
    position: absolute;
    right: 20px;
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s ease;
}
.droptab_title.active::after {
  transform: rotate(180deg);
}
.droptab_title:hover {
  background-color: #0a5549;
}
.droptab_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e9eaec;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}
.droptab_list.active {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}
.droptab_list li {
  border-bottom: 1px solid #e9eaec;
}
.droptab_list li:last-child {
  border-bottom: none;
}
.droptab_list li a {
  display: block;
  padding: 12px 20px;
  color: #444444;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.droptab_list li a:hover {
  background-color: #f5f5f5;
}
.droptab_list li a.current {
  font-weight: 700;
  color: #0d695b;
  background-color: #f0f9f8;
}
@media (max-width: 1280px) {
  .droptab_title {
    font-size: 14px;
    height: 45px;
  }
  .droptab_list li a {
    font-size: 14px;
    padding: 10px 15px;
  }
}