.dsp-suggestion {
  grid-template-columns: 22px 64px minmax(0, 1fr) auto;
}

.dsp-complete-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 12px;
}

.dsp-complete-head .dsp-complete-title { margin: 0; }

.dsp-selected-total {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1653bd;
  font-size: 12px;
  font-weight: 600;
}

.dsp-selected-total b { font-size: 14px; }

.dsp-quantity {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: 34px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #fff;
}

.dsp-quantity button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 32px;
  min-width: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #f4f7fb;
  color: #34506f;
  font: 700 18px/1 Arial, sans-serif;
  cursor: pointer;
}

.dsp-quantity button:hover { background: #e9f0fa; }

.dsp-quantity .dsp-qty-input {
	position: static;
	opacity: 1;
	pointer-events: auto;
	z-index: auto;
  width: 38px;
  height: 32px;
  min-height: 0;
  margin: 0;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: #fff;
  box-shadow: none;
  color: #17243a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.dsp-qty-input::-webkit-inner-spin-button,
.dsp-qty-input::-webkit-outer-spin-button { margin: 0; appearance: none; }

.dsp-quantity .dsp-qty-minus,
.dsp-quantity .dsp-qty-plus {
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

@media (max-width: 600px) {
	.dsp-complete-head { align-items: flex-start; flex-direction: column; }
  .dsp-suggestion { grid-template-columns: 20px 52px minmax(0, 1fr); }
  .dsp-quantity { grid-column: 2 / 4; justify-self: end; }
}
