/* LESS Mixin for CSS arrow
 *
 * http://codepen.io/jasondavis/pen/dHLwv
 *
 * Usage:
 * .arrow(size, color, direction, offset(optional), border-size(optional), border-color(optional));
 *
 * 1. size: you can set pretty much whatever you want. Further tests required for em unit.
 * 2. color: sadly, no way to inherit. Use the same color as the background of your element.
 * 3. direction: the direction of the arrow (top, right, bottom, left).
 * 4. offset (optional): the position on the side (20px, 50%, etc.).
 * 5. border-size (optional): you may have to set it 1px thinner than the actual border to smooth the rendering.
 * 6. border-color (optional): "inherit" as a default value.
 *
 *
 * Still many things to do and edge cases to fix.
 * It uses the :after pseudo-element to create the arrow. If there is a border, it uses the :before pseudo-element
 *
 * Changelog:
 * - now handles border
 * - "inherit" now supported as a @border-color value
 * - "inherit" now supported as a @color value as long as there is no border involved
 * - dramatically simplified the position
 * - drop-shadow enabled
 * - GitHub repo: https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows
 */
.school-reg-panel .school-reg-info {
  background: #F9F9F9;
  margin: 20px 0;
}
.school-reg-panel .school-reg-info .user-header {
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  padding: 15px 0;
}
.school-reg-panel .btn.btn-primary {
  text-transform: uppercase;
  max-width: 525px;
  width: 100%;
}
.ferpa-container {
  border: 2px solid #E3E3E3;
  max-height: 170px;
  height: 170px;
  overflow-y: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
}
/****************************************/
/**** Areas Of Interest - Discovery  ****/
/****************************************/
#saved-majors {
  padding: 3px;
  margin-top: 5px;
  position: relative;
  height: auto !important;
  height: 1.2em;
  min-height: 1.2em;
}
#saved-majors .no-save {
  position: absolute;
  padding: 3px;
  font-style: italic;
  font-size: 12px;
}
#saved-majors .save-wrap {
  background: #eaf3f4;
  position: relative;
}
#saved-majors .save-wrap > div {
  border-top: 1px solid #d2e9ed;
  padding: 8px 5px 5px 28px;
  position: relative;
  cursor: pointer;
}
#saved-majors .save-wrap > div:hover {
  background: #e5eeef;
}
#saved-majors .save-wrap > div:first-child {
  border-top: 0px;
  padding-top: 5px;
}
#saved-majors .save-wrap > div .icon {
  position: absolute;
  top: 8px;
  left: 8px;
}
#saved-majors .save-wrap > div:first-child .icon {
  top: 5px;
}
