.product_style_select {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product_style_select .style_btn {
  width: 110px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #1B1B1B;
  display: grid;
  place-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding:0 5px;
}

.product_style_select .style_btn.selected {
  /* pointer-events: none; */
  border: 2px solid #EE702E;
}

.product_style_select .style_btn.disabled {
  pointer-events: none;
  background: #EDEDED;
  border: 1px solid #D2D2D2;
  color: #979797;
}

@media (max-width: 767px) {
  .product_style_select .style_btn {
    min-width: 90px;
    height: 42px;
    font-size: 12px;
  }
}