.horizontal-slide-from-right-to-left {
  animation: horizontal-slide-from-right-to-left linear 10s infinite;
}

.horizontal-slide-from-left-to-right {
  animation: horizontal-slide-from-left-to-right linear 10s infinite;
}

@keyframes horizontal-slide-from-right-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes horizontal-slide-from-left-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.sticky-menu.nav-hidden {
  animation: fadeInDown 0.9s 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes rotate-360 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rotate-360 {
  animation: rotate-360 20s linear infinite;
}

input:checked ~ .toggle_dot {
  transform: translateX(100%);
}

.text-ColorPrimary {
  --tw-text-opacity: 1;
  color: rgb(2 61 198 / var(--tw-text-opacity));
}

.is-primary {
  --tw-border-opacity: 1;
  border-color: rgb(2 61 198 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(2 61 198 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.bg-ColorPrimary {
  --tw-bg-opacity: 1;
  background-color: rgb(2 61 198 / var(--tw-bg-opacity));
}

.text-ColorSecondary {
  --tw-text-opacity: 1;
  color: rgb(255 200 26 / var(--tw-text-opacity));
}

.is-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(255 200 26 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 200 26 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.bg-ColorSecondary {
  --tw-bg-opacity: 1;
  background-color: rgb(255 200 26 / var(--tw-bg-opacity));
}

.site-header--sticky.mobile-sticky-enable.scrolling {
  padding: 12px 24px;
  background-color: rgb(255 255 255 / 30%);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
  z-index: 9999;
  animation-fill-mode: both;
  animation-name: sticky-animation;
  animation-timing-function: ease;
  animation-duration: 0.7s;
  transition: 0.3s all ease-in-out;
}

.pb-0 {
  padding-bottom: 0px !important;
}
