/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 06 2021 | 14:09:37 */
.divider-animate::before {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  top: calc(100% + 35px);
  transition: 1s ease;
}

.divider-animate.dark::before {
  background-color: rgba(58, 62, 67, .2);
}

.divider-animate.light::before {
  background-color: rgba(255, 255, 255, .6);
}

.divider-animate.light-or::before {
  background-color: rgba(255, 255, 255, .6);
}

.divider-animate.to-left::before {
  left: 25rem;
}

.divider-animate.to-left::after {
  left: 25rem;
}

.divider-animate.to-right::before {
  right: 25rem;
}

.divider-animate.to-right::after {
  right: 25rem;
}

.divider-animate::after {
  content: "";
  position: absolute;
  top: calc(100% + 32px);
  width: 7px;
  height: 7px;
  transition: 1s ease;
}

.divider-animate.dark::after {
  background-color: var(--e-global-color-accent);
}

.divider-animate.light::after {
  background-color: var(--e-global-color-primary);
}

.divider-animate.light-or::after {
  background-color: var(--e-global-color-accent);
}