.redText {
  color: red;
  text-decoration: underline;
  cursor:  pointer;
}

#orderBump {
  margin: 1rem auto;
  width: 95%;
  height: auto;
  box-sizing: border-box;
  padding: 0.8rem;
  background-color: #ffffd6;
  border: 2px dashed #e2dbb6;
  display: flex;
  flex-direction: column;
  position: relative;
}

#orderBump input[type="checkbox"] {
  height: 1.2rem !important;
  width: 1.2rem !important;
  margin-left: 1rem;
  border: 1px solid red;
}

#orderBump img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bump-label {
  font-weight: bold;
}

.bumpRow {
  position: relative;
}

#bumpArrow {
  max-width: 40px !important;
  top: -15px;
  left: -30px;
  height: auto;
  position: absolute;
  animation-name: fadeOutIn;
  -webkit-animation-name: fadeOutIn;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
}

/* Animations */
@keyframes fadeOutIn {
  0% {
    opacity: 0%;
  }

  50% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}
