.product-back-in-stock__content {
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  display: flex;
  margin-bottom: 32px;
  margin: auto;
  padding: 20px;
  background-color: var(--color-navy);
  color: var(--color-white);
}
@media only screen and (min-width: 992px) {
  .product-back-in-stock__content {
    align-items: center;
    flex-direction: row;
  }
}

.product-back-in-stock__card {
  flex: 1;
  gap: 16px;
  justify-content: flex-start;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .product-back-in-stock__card {
    align-items: center;
    gap: 24px;
  }
}

.product-back-in-stock__image {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .product-back-in-stock__image {
    width: 104px;
    height: 104px;
  }
}

.product-back-in-stock__info {
  flex: 1;
}

.product-back-in-stock__return {
  margin-top: 8px;
}

.product-back-in-stock__details {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-white);
}

.product-back-in-stock__form {
  position: relative;
  padding-top: 16px;
}
@media only screen and (min-width: 992px) {
  .product-back-in-stock__form {
    min-width: 480px;
    padding-top: 0;
    padding-left: 32px;
  }
}
.product-back-in-stock__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
}
@media only screen and (min-width: 992px) {
  .product-back-in-stock__form::before {
    top: -10px;
    width: 1px;
    height: calc(100% + 20px);
  }
}

.product-back-in-stock__form-text {
  margin-bottom: 16px;
}

.product-back-in-stock__form-field {
  position: relative;
  gap: 16px;
  display: flex;
}

.product-back-in-stock__form-input {
  flex: 1;
  padding: 8px 16px;
}

.product-back-in-stock__form-button {
  width: 112px;
}
