.select-btn {
  width: 15rem;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
  padding-left: 28px;
  border-radius: 12px;
  border: 3px solid #de0c15;
  cursor: pointer;
  background-color: transparent;
}
.select-btn .btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}
.select-btn.open svg {
  transform: rotate(-180deg);
}
.list-items {
  width: 20rem;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  height: 200px;
  overflow-y: auto;
}
.select-btn.open ~ .list-items {
  display: block;
}
.list-items .product,
.parlour_candy_product {
  display: flex;
  align-items: center;
  justify-content: left;
  list-style: none;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 5px;
  border-radius: 8px;
}
.list-items .product:hover,
.parlour_candy_product:hover {
  background-color: #cbd6e072;
}
.product .item-text,
.parlour_candy_product .item-text {
  max-width: 220px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.product .checkbox,
.parlour_candy_product .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px !important;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}
.product.checked .checkbox,
.parlour_candy_product.checked .checkbox {
  background-color: #203e7e;
  border-color: #203e7e;
}
.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
.product.checked .check-icon,
.parlour_candy_product.checked .check-icon {
  transform: scale(1);
}
