/**
 * Theme Name: child-theme
 * Template:   hello-elementor
 * ...other header fields
 */
 
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--e-global-color-primary);
  border-radius: 5px;
}
body,
html{
        overflow-x: hidden;
}

@keyframes rotate {
  from {
          transform: rotate(0deg);
  }
  to {
          transform: rotate(360deg);
  }
}

@keyframes move {
    0%{
        transform: translate(0, 0) scale(0);
    }
  5% {
          transform: translate(0, 0) scale(1);
  }
  80% {
          transform: translate(30px, -30px) scale(1);
  }
  85%,
  100%{
      transform: translate(30px, -30px) scale(0);
  }
}