a {
  word-wrap: break-word;
}

.instructor-modal a.large-button h4 {
  width: auto;
}

.error-message {
  color: red;
}

.form-group {
  margin-bottom: 24px;
}

.position-relative {
  position: relative;
}

.d-flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.content-between {
  justify-content: space-between;
}

.content-center {
  justify-content: center;
}

.mr-3 {
  margin-right: 12px;
}

.tooltip-icon {
  margin-left: 4px;
  font-size: 16px;
  color: #7c7c7c;
  cursor: pointer;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #d9eef7;
  color: #24375a;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  bottom: 100%;
  left: 50%;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}