// CLI Version 1.0.2
// Component Version 1.0.0
.dropdownCheckboxGroup {
  position: relative;
  width: 100%;
  &__checkboxGroupHorizontal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 100%;
    z-index: 1000;
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 0.5px solid var(--Light-mode-Neutral150, #eaeaef);
    background: var(--Light-mode-Neutral0, #fff);
    box-shadow: 0px 1px 4px 0px rgba(33, 33, 52, 0.1);
  }

  &__checkboxGroupVertical {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
}
// Adjusting for smaller screens (small tablets and mobiles)
@media (max-width: 768px) {
  .dropdownCheckboxGroup {
  }
}
// Adjusting  for smaller screens (mobiles)
@media (max-width: 480px) {
  .dropdownCheckboxGroup {
  }
}
