.wa-customer-account-screen[data-screen-id=my-printers] .wa-customer-account-heading {
  font-size: 3rem;
}

.wa-customer-printers-groups {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-xl);
}
.wa-customer-printers-groups.has-items > .no-items-text {
  display: none;
}

.wa-customer-printers-group h3 {
  font-size: 2.4rem;
}
.wa-customer-printers-group:not(:first-child) {
  margin-top: var(--space-l);
}
.wa-customer-printers-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-s);
}
.wa-customer-printers-list.has-items > .no-items-text {
  display: none;
}

.wa-customer-printer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: var(--space-m);
  position: relative;
  transition: all 250ms ease-in-out;
  border: 2px #f7f7f7 solid;
  border-radius: var(--radius-m);
  padding: calc(var(--space-xs) * 0.5) var(--space-m);
}
@media (min-width: 768px) {
  .wa-customer-printer {
    flex-direction: row;
    gap: var(--space-l);
  }
}
.wa-customer-printer:not(:first-child) {
  margin-top: var(--space-s);
}
.wa-customer-printer:hover {
  background: #fffefe;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(256deg, var(--wa-colors-purple-500) -20%, var(--wa-colors-pink-500) 140%) border-box;
  box-shadow: 0px 11px 20px 0px rgba(236, 0, 140, 0.06);
  transform: translateY(-0.25rem);
  border: 2px solid transparent !important;
}
.wa-customer-printer.deleting {
  opacity: 0.5;
}
.wa-customer-printer.deleting__remove {
  cursor: wait;
}
.wa-customer-printer__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
  padding: 0.35em;
  border-radius: 50%;
  font-family: monospace;
  color: #CD0204;
  background: rgba(205, 2, 4, 0.0588235294);
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  width: 1.75em;
  height: 1.75em;
}
@media (min-width: 768px) {
  .wa-customer-printer__remove {
    position: static;
    width: 1.5em;
    height: 1.5em;
  }
}
.wa-customer-printer__remove:hover {
  background: #CD0204;
  color: white;
}
.wa-customer-printer__name {
  text-align: center;
}
@media (min-width: 768px) {
  .wa-customer-printer__name {
    text-align: left;
  }
}
.wa-customer-printer__image {
  width: 5em;
  height: auto;
}
.wa-customer-printer__link {
  display: flex;
  align-items: center;
  transition: all 250ms ease-in-out;
  background: var(--accent-gradient);
  background-position: 75%;
  background-size: 125%;
  font-size: 0.85em;
  font-weight: 600;
  line-height: 1;
  color: white;
  text-align: center;
  padding: var(--space-xs);
  border-radius: var(--radius-s);
}
@media (min-width: 768px) {
  .wa-customer-printer__link {
    margin-left: auto;
  }
}
.wa-customer-printer__link:hover {
  color: white;
  background-position: 0%;
}

.wa-saved-printers-save-area {
  display: flex;
  align-items: center !important;
  flex-direction: row !important;
  gap: var(--space-s);
  margin-top: calc(var(--space-l) * 0.8);
}

.wa-saved-printers-group-select {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: var(--space-xs);
}
.wa-saved-printers-group-select.hidden {
  display: none;
}
.wa-saved-printers-group-select select {
  width: 15rem;
  border: 1px #d9d9d9 solid;
  padding: 0.25rem 1rem;
  height: 4rem;
  border-radius: var(--radius-xs);
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}
.wa-saved-printers-group-select button {
  all: unset;
  cursor: pointer;
  padding: 0 2rem;
  height: 4rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-s);
}

.wa-customer-printer-group {
  display: flex;
  gap: var(--space-xs);
  flex-direction: row;
  align-items: center;
}
