/*
/*
/*  custom.css
/*
/*  If not using Gulp and Sass, add your custom CSS below then include it
/*  in your page by adding a reference to assets/css/custom.css in the head of each page.
/*
*/
.rotate {
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}


.hs-dropdown {
  position: relative;
  display: inline-block;
}

.hs-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: revert;
  z-index: 1000;
  margin: 0.25rem 0 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 12rem;
  background: white;
}

.hs-dropdown-menu[open] {
  display: flex;
  flex-direction: column;
}

.hs-dropdown-menu a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.hs-dropdown-menu a:hover {
  background: #f3f4f6;
}

.hs-dropdown-menu hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0.25rem 0;
}

.form-check-large .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
}

.form-check-large .form-check-label {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-left: 0.5rem;
}
