
.woocommerce .variations_form>div:first-child{
  display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size:inherit;
  height: var(--form-field-height, 40px);


}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  padding: 10px 14px;
  /* font-weight: bold; */
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--gray300);
  /* vertical-align: middle; */
  line-height: 20px;
}

.options li:after,
.styledSelect:after {
  content: '\e81d';
  font-family: "feather";
  font-size: 1.2em;
  font-style: normal;
  font-weight: normal;
  display: block;
  position: absolute;
  right: 12px;
  top: 10px;
  bottom: auto;
  /* transform: translateY(-50%); */
  text-decoration: inherit;
  width: 1em;
  margin-right: 0;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  /* font-size: 120%; */
  -webkit-font-smoothing: antialiased;
  transform: rotate(0deg);
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
}

.styledSelect:active:after,
.styledSelect.active:after {
  transform: rotate(180deg);

}
.styledSelect:active,
.styledSelect.active {
  background-color: transparent;
  outline: 2px solid var(--primary);
  z-index: 1000;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid var(--gray300);
  border-radius: 8px;
  background-color: white;
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 3px rgb(0 0 0 / 20%);
  overflow: hidden;
}

.options li {
  margin: 0 0;
  padding: 10px 14px;
  line-height: 1;
  position: relative;
}

.options li:hover {
  background-color: rgb(0 0 0 / 5%);
  color: inherit;
}
.options li:after {
  content: '\e81a';
  color:transparent;
  transition:color 0.5s;
}
.options li:hover:after {

  color:var(--primary);
}