.selectbox {
  position: relative;
  display: inline-block;
}

.web_selectbox {
  display: inline-block;
  position: absolute;
  top: -5%;
  right: -50%;
}

.select_btn {
  display: flex;
  width: 160px;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
  border: none;
  border-radius: 100px;
  background: white;
}

.select_menu {
  position: absolute;
  /* top: 40px; /* Adjusted to 20px below the button */
  /* left: 0;
  right: 0;  */
  background: white;
  border: none;
  border-radius: 12px;
  display: none; /* Initially hidden */
  z-index: 1000;
  list-style: none;
  width: 160px;
  padding: 20px 20px 0px 20px;
  align-items: flex-start;
  gap: 20px;
  margin-top: 8px;
}
.select_menu.show {
  display: block;
}

.rotate {
  transform: rotate(180deg);
}

.web_select_item.show {
  display: block;
}

.select_item,
.web_select_item {
  padding-bottom: 20px;
  cursor: pointer;
}
.select_item:hover {
  background-color: #f8f9fa;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 20px;
  max-height: 240px;
  height: 100%;
  background: var(--color-hover-bg);
}

@media (max-width: 1440px) {
  .footer {
    display: flex;
    padding: 28px 49px 50px 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    max-height: 508px;
    height: fit-content;
    background: var(--color-hover-bg);
  }
}
