.validate-error {
  border-color: #d10000 !important;
}
.validate-popup {
  font-family:"whitney_lightregular";
  transition: opacity ease 400ms;
  cursor: pointer;
  position: absolute;
  background-color: #d10000;
  color: white;
  font-size: 16px;
  line-height: 1;
  padding: 10px 12px;
  z-index: 2;
  opacity: 0;
}
.validate-popup.active {
    z-index: 2;
    opacity: 1;
}
.validate-popup:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #d10000 transparent transparent transparent;
    margin-left: 8px;
    margin-bottom: -5px;
}