.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%);
}

.subscription{
    margin-left: auto;
    margin-right: auto;
    max-width: 1170px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid rgba(0, 0, 0, 0.5) !important;
    padding: 8px !important;
    border-radius: 0rem !important; /* Matches Tailwind's rounded-md */
    background-color: #ffffff !important;
    transition: all 0.3s ease-in-out !important;
}

.select2-container--default .select2-selection--multiple:focus {
    border-color: var(--ColorTheme) !important;
    outline: none !important;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 24px !important;
}

.bg-theme-gradient {
    background: linear-gradient(45deg, rgb(138, 172, 210) 0%, white 75%, white 100%);
}
