/**
 * >>> CONTACT STYLE <<<
 */
.notif {
  color: #e74c3c;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  padding-left: 15px;
  position: relative;
}
.notif::before {
  content: "";
  border-radius: 10px;
  background-color: #e74c3c;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
}
.notif::after {
  content: "";
  background-color: #e74c3c;
  border-radius: 4px;
  position: absolute;
  top: 9px;
  left: 1px;
  height: 4px;
  width: 4px;
  animation: grow-transp 1s ease-in-out infinite forwards;
}

.notif-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-form-success svg {
  flex-shrink: 0;
  margin-right: 15px;
  height: 50px;
  width: 50px;
}
.notif-form-success svg > * {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  stroke: #2ecc71;
}
.notif-form-success svg > *:first-child {
  animation: stroke-appear-1 0.75s 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.notif-form-success svg > *:last-child {
  animation: stroke-appear-1 1s 1s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}
.notif-form-success span {
  color: #2ecc71;
  font-size: 18px;
  animation: fade-in 0.5s ease-in-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes grow-transp {
  from {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}
@keyframes stroke-appear-1 {
  from {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
  }
  to {
    stroke-dasharray: 1200;
    stroke-dashoffset: 0;
  }
}
