/********************** ANIMATED DIVIDER **********************************/

  #webshop-trigger-wrap--delay {
    animation-delay: 1s;
  }
  #webshop-trigger-wrap::before, #webshop-trigger-wrap::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 3px;
    top: -1px;
    background: white;
  }
  #webshop-trigger-wrap::before {
    left: 0;
    top: -1px;
  }
  #webshop-trigger-wrap::after {
    right: 0;
  }
  @keyframes slide {
  from {
    background-position: 0 top;
  }
  to {
    background-position: 0 bottom;
  }
}
