.soppiya_ts_header_section {
  border: 1px solid #d6d3d1;
  position: fixed;
  z-index: 25;
  background-color: #ffffff;
  width: 100%;
  left: 0;
  top: 0;
}
button img {
  pointer-events: none;
}
.soppiya_st_overlay {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 23;
  display: none;
}
.soppiya_st_overlay.soppiya_active {
  display: block;
}
.soppiya_ts_header_content {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* =========== header left column ======== */
/* menu */
.soppiya_st_header_menu_wrapper {
  position: fixed;
  background-color: #ffffff;
  width: 268px;
  height: 100dvh;
  z-index: 25;
  right: -100%;
  top: 0px;
  padding: 0px 16px;
  transition: right 0.3s;
}
.soppiya_st_header_menu_wrapper.soppiya_active {
  right: 0;
  box-shadow: 0px 5px 12px rgba(30, 36, 46, 0.12);
}
.soppiya_ts_header_menu {
  height: calc(100dvh - 64px);
  overflow-y: auto;
}
.soppiya_st_close_icon_wrapper {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
  border-bottom: 1px solid #d6d3d1;
  margin-bottom: 16px;
}

.soppiya_ts_nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* position: relative; */
}
.soppiya_ts_nav .soppiya_menu_item {
  position: relative;
}

.soppiya_ts_nav li a,
.soppiya_ts_header_submenu li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #42474c;
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
}
.soppiya_ts_header_submenu li a {
  color: #21232c;
  font-weight: 450;
}
.soppiya_ts_nav li a span {
  display: flex;
}

.soppiya_ts_header_submenu {
  list-style: none;
  display: none;
  gap: 12px;
  flex-direction: column;
  padding: 10px 10px;
  width: 210px;

  background-color: #fff;
}
.soppiya_ts_header_submenu.soppiya_active {
  display: flex;
  max-height: 245px;
  overflow-y: auto;
  scrollbar-width: 0px;
}
.soppiya_ts_header_submenu.soppiya_active::-webkit-scrollbar {
  display: none;
}

/* =========== header right column ======== */
.soppiya_ts_right_col {
  display: flex;
  align-items: center;
  gap: 5px;
}
.soppiya_ts_header_search_icon,
.soppiya_ts_header_hamburger_icon,
.soppiya_ts_header_cross_icon {
  display: flex;
  border: none;
  background-color: transparent;
}

/* search area */
.soppiya_st_search_bar {
  left: 0;
  top: 0;
  z-index: 25;
  height: 64px;
  width: 100%;
  display: none;
  align-items: center;
  position: absolute;
  background-color: #fff;
}
.soppiya_st_search_bar.soppiya_active {
  display: flex;
}
.soppiya_st_search_area {
  max-width: 560px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.soppiya_st_search_field_wrapper {
  width: 100%;
}
.soppiya_st_search_field {
  width: 100%;
  height: 30px;
  padding: 0px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #21232c;
  border: none;
  outline: none;
  background-color: transparent;
}
.soppiya_st_search_field::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #868686;
}

.soppiya_st_clear_search_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #868686;
  border: none;
}

/* search dropdown */
.soppiya_st_dropdown {
  position: absolute;
  left: 0;
  top: 48px;
  padding: 20px;
  width: 100%;
  border: 1px solid #ebebeb;
  box-shadow: 0px 0px 4px 0px #0000001a;
  background-color: #fff;
  border-radius: 0px 0px 8px 8px;
  display: none;
}
.soppiya_st_dropdown.soppiya_active {
  display: block;
}
.soppiya_st_dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.soppiya_st_dropdown ul li a {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #21232c;
  text-decoration: none;
}
@media (min-width: 768px) {
  .soppiya_ts_header_content {
    height: 82px;
  }
  /* =========== header left column ======== */
  .soppiya_ts_left_col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  /* menu */
  .soppiya_st_header_menu_wrapper {
    position: unset;
    height: auto;
    width: auto;
    padding: 0px;
  }
  .soppiya_st_close_icon_wrapper {
    display: none;
  }
  .soppiya_ts_header_menu {
    height: auto;
    overflow-y: visible;
  }
  .soppiya_ts_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .soppiya_ts_header_submenu {
    gap: 8px;
    top: 53px;
    position: absolute;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0px 0px 4px 0px #00000026;
  }
  .soppiya_ts_nav li a,
  .soppiya_ts_header_submenu li a {
    font-size: 16px;
    line-height: 24px;
  }

  /* =========== header right column ======== */

  .soppiya_ts_header_search_icon img {
    width: 30px;
  }
  .soppiya_ts_header_hamburger_icon {
    display: none;
  }

  /* search area */
  .soppiya_st_search_bar {
    height: 82px;
  }

  .soppiya_st_search_field_wrapper {
    width: 100%;
  }
  .soppiya_st_search_field {
    font-size: 16px;
  }
  .soppiya_st_search_field::placeholder {
    font-size: 16px;
  }

  .soppiya_st_clear_search_btn {
    font-size: 16px;
  }
  .soppiya_st_clear_search_btn img {
    /* width: 25px; */
  }
  /* search dropdown */
  .soppiya_st_dropdown {
    position: absolute;
    top: 57px;
  }
  .soppiya_st_dropdown ul li a {
    font-size: 16px;
    line-height: 26px;
  }
}
