.vld-variation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.vld-option {
    border-radius: 0;
    border: 1px solid #fff;
    cursor: pointer;
    width: 55%;
    font-size: 13px;
    color: #555;
    padding: 0;
    margin: 0 !important;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.vld-option.selected, .vld-option:hover {
    border: 1px solid #555;
}
.vld-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width:767px){
	.vld-option {
		width:100%;
	}
}