#lotties-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#lotties-containers::after {
  content: "";
  flex: auto;
}

body::-webkit-scrollbar {
  width: 20px;
}

body::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(180deg, #d0368a 0%, #d470d4 99%);
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

:root{
  scrollbar-color: #0A4C95 #C2D2E4;
  scrollbar-width: thin !important;
}

/* utilities */
.hidden {
  visibility: hidden;
}