/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  border: 1px solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
  background-color: white;
  text-transform: capitalize;
}
.custom-select select {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.select-selected {
  background-color: transparent;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;*/
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-items {
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
}
.select-selected {
  color: #000000;
  padding: 0px 8px;
}
.select-selected.default {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(8 56 62 / var(--tw-text-opacity));
}
.select-selected.rosso {
  --tw-bg-opacity: 1;
  background-color: rgb(246 131 153 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.select-selected.verde {
  --tw-bg-opacity: 1;
  background-color: rgb(142 218 168 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(8 56 62 / var(--tw-text-opacity));
}
.select-selected.viola {
  --tw-bg-opacity: 1;
  background-color: rgb(223 197 245 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.select-selected.blue {
  --tw-bg-opacity: 1;
  background-color: rgb(127 190 252 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  border: 1px solid rgba(0, 40, 100, 0.12);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-items .default {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(8 56 62 / var(--tw-text-opacity));
}
.select-items .rosso {
  --tw-bg-opacity: 1;
  background-color: rgb(246 131 153 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.select-items .verde {
  --tw-bg-opacity: 1;
  background-color: rgb(142 218 168 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(8 56 62 / var(--tw-text-opacity));
}
.select-items .viola {
  --tw-bg-opacity: 1;
  background-color: rgb(223 197 245 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.select-items .blue {
  --tw-bg-opacity: 1;
  background-color: rgb(127 190 252 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  /*background-color: rgba(0, 0, 0, 0.1);*/
}
.accordion .card .card-header .btn-block .icon:after {
  content: "\f13a";
  font-family: "Line Awesome Free";
  font-weight: 900;
  float: right;
}
.accordion .card .card-header .btn-block.collapsed .icon:after {
  content: "\f139";
}
.accordion input[data-repeatable-input-name=qty]:invalid {
  border-width: 1px;
  border-color: #df4759 !important;
}
