.decorated-select {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Location tiles */

.decoration-location-ui {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin: 10px 0 22px;
}

.decoration-location-tile {
  background: #fff;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: 0 1px 4px rgba(15, 23, 42, .08);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.decoration-location-tile:hover {
  box-shadow: 0 4px 14px rgba(15, 23, 42, .12);
}

.decoration-location-tile.is-selected {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, .22);
}

.decoration-location-tile__art {
  height: 150px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-location-tile__img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.decoration-location-tile__placeholder {
  width: 110px;
  height: 76px;
  border: 2px dashed #aab4c3;
  border-radius: 8px;
  color: #8a94a6;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-location-tile__dims {
  padding: 10px 12px;
  color: #4b5563;
  font-size: 14px;
}

.decoration-location-tile__label {
  padding: 10px 12px;
  font-weight: 600;
  border-top: 1px solid #edf2f7;
  height: 4em;
  line-height: 1.5em;
}

/* Decoration method segmented buttons */

.decoration-method-ui {
  display: inline-flex;
  align-items: stretch;
  margin: 8px 0 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #0d6efd;
}

.decoration-method-option {
  border: 0 solid #0d6efd;
  border-left-width: 1px;
  background: #fff;
  color: #0d6efd;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
}

.decoration-method-option:first-child {
  border: 0;
}

.decoration-method-option:last-child {
  border: 0 solid #0d6efd;
  border-left-width: 1px;
}

.decoration-method-option:hover {
  background: #eef5ff;
}

.decoration-method-option.is-selected {
  background: #0d6efd;
  color: #fff;
}

.decoration-method-option__name {
  font-weight: 500;
}