.others-options {
  display: flex;
  gap: 1rem;
}
.others-options .optional-item-list .cart-dropdown {
  position: relative;
  display: inline-block;
}
.others-options .optional-item-list .cart-dropdown button:focus {
  background: var(--secondary-Color);
  color: white;
  box-shadow: unset !important;
}
.others-options .optional-item-list .cart-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border: 2px solid lightgray;
  border-radius: 5px;
  min-width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper {
  max-height: 400px;
  overflow-y: scroll;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item {
  padding: 1rem;
  display: flex;
  gap: 1rem;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item .image-wrapper {
  width: 25%;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item .image-wrapper img {
  max-height: 60px;
  width: 100%;
  object-fit: fill;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item .cart-item-info {
  display: flex;
  flex-grow: 1;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item .cart-item-info .first-part h5 {
  margin-bottom: unset !important;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item .cart-item-info .second-part {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.others-options .optional-item-list .cart-dropdown-content .cart-dropdown-list-items-wrapper .cart-dropdown-list-item:hover {
  background-color: lightgray;
  cursor: pointer;
}
.others-options .optional-item-list .cart-dropdown-content .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 50px;
  border-top: 1px solid lightgray;
}
.others-options .optional-item-list .cart-dropdown-content .footer-wrapper a {
  color: var(--primary-Color);
  font-weight: bold;
}
.others-options .optional-item-list .cart-dropdown.show .cart-dropdown-content {
  display: block;
}
.others-options .optional-item-list .cart-dropdown.show-hover .cart-dropdown-content {
  display: block;
}

html:lang(ar) .others-options .optional-item-list .cart-dropdown-content {
  right: unset;
  left: 0;
}
html:lang(en) .others-options .optional-item-list .cart-dropdown-content {
  right: 0;
  left: unset;
}