.widget-select-with-images {
  position: relative;
}
.widget-select-with-images .original {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.widget-select-with-images .original select {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
}
.widget-select-with-images .options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 23px;
  row-gap: 23px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .widget-select-with-images .options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 599px) {
  .widget-select-with-images .options {
    grid-template-columns: minmax(0, 1fr);
  }
}
.widget-select-with-images .options .option {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.widget-select-with-images .options .option .content {
  height: 100%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget-select-with-images .options .option .content .content--inner {
  position: relative;
  height: 100%;
}
.widget-select-with-images .options .option .content .content--inner figure,
.widget-select-with-images .options .option .content .content--inner picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.widget-select-with-images .options .option .content .content--inner img {
  display: block;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
}
.widget-select-with-images .options .option .content .content--inner label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  background-color: #eceff1;
  padding: 14px 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Cheyenne Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget-select-with-images .options .option.active .content {
  padding: 5px;
  border-color: #483936;
}
.widget-select-with-images .options .option.active .content label {
  background-color: #cebb95;
}
.widget-select-with-images.invalid .content {
  border-color: red !important;
  border-width: 2px !important;
}
