/* Ollivander bar separators */
.arrow-bar {
  height: 15px;
}
.arrow-bar-gold {
  background-color: #b7a57a;
}
.arrow-bar-gray {
  background-color: #c9c9c9;
}
.arrow-bar-purple {
  background-color: #4b2e83;
}
.arrow-bar:after {
  content: '';
  position: absolute;
  padding-top: 15px;
  left: 50%;
  margin-top: 14px;
  margin-left: -15px;
  max-width: 10px;
  height: 15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  /*border-top: 15px solid #000;*/
  z-index: 1;
}
.arrow-bar-gold:after {
  border-top: 15px solid #b7a57a;
}
.arrow-bar-gray:after {
  border-top: 15px solid #c9c9c9;
}
.arrow-bar-purple:after {
  border-top: 15px solid #4b2e83;
}
