.help-bubble {
  display: block;
  margin: 0;
  color: #353e44;
  position: absolute;
  top: -7px;
  right: -265px;
  padding: 10px 20px;
  width: 265px;
  border-radius: 4px;
  font-size: 13px;
  border: 1px solid #d7d8da;
  background-color: #f1f3f5;
}
.help-bubble::before,
.help-bubble::after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  top: 10px;
  border-left-width: 0;
  border-width: 10px;
}
.help-bubble::before {
  left: -20px;
  border-right-color: #d7d8da;
}
.help-bubble::after {
  left: -19px;
  border-right-color: #f1f3f5;
}
.help-bubble.bottom {
  display: block;
  position: relative;
  margin-top: 12px;
  left: 12px;
  top: calc(100% + 12px);
}
.help-bubble.bottom::before {
  top: -10px;
  left: 12px;
  border-top-width: 0;
  border-left-width: 10px;
  border-right-color: transparent;
  border-bottom-color: #d7d8da;
}
.help-bubble.bottom::after {
  top: -9px;
  left: 12px;
  border-top-width: 0;
  border-left-width: 10px;
  border-right-color: transparent;
  border-bottom-color: #f1f3f5;
}
@media (max-width: 768px) {
  .help-bubble {
    display: block;
    position: relative;
    margin-top: 12px;
    left: 12px;
    top: calc(100% + 12px);
  }
  .help-bubble::before {
    top: -10px;
    left: 12px;
    border-top-width: 0;
    border-left-width: 10px;
    border-right-color: transparent;
    border-bottom-color: #d7d8da;
  }
  .help-bubble::after {
    top: -9px;
    left: 12px;
    border-top-width: 0;
    border-left-width: 10px;
    border-right-color: transparent;
    border-bottom-color: #f1f3f5;
  }
}
@media (min-width: 768px) {
  .icon-required + .help-bubble:not(.bottom) {
    width: 250px;
  }
}
.help-bubble.help-hover {
  opacity: 0;
  position: absolute;
}
.help-bubble.help-hover.bottom {
  top: 100%;
}
@media (max-width: 768px) {
  .help-bubble.help-hover {
    top: 100%;
  }
}
.has-error .help-bubble {
  background-color: #ff4848;
  border-color: #ff4848;
  color: #fff;
}
.has-error .help-bubble::before {
  border-right-color: #ff4848;
}
.has-error .help-bubble::after {
  border-right-color: #ff4848;
}
@media (max-width: 768px) {
  .has-error .help-bubble::before {
    border-right-color: transparent;
    border-bottom-color: #ff4848;
  }
  .has-error .help-bubble::after {
    border-right-color: transparent;
    border-bottom-color: #ff4848;
  }
}
.has-error .help-bubble.bottom::before {
  border-right-color: transparent;
  border-bottom-color: #ff4848;
}
.has-error .help-bubble.bottom::after {
  border-right-color: transparent;
  border-bottom-color: #ff4848;
}
