:host {
  width: 100%;
  display: block;
}

@layer ce {
  #root-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: flex;
  }

  #slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0 auto;
    display: flex;
    overflow-x: scroll;
  }

  #slider::-webkit-scrollbar {
    display: none;
  }

  #slider > * {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
    display: flex;
  }

  #dots {
    gap: .5rem;
    display: flex;
  }

  #dots > span {
    background-color: var(--color-mono-200);
    cursor: pointer;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    transition: background-color .5s;
    display: block;
  }

  #dots > span:hover, #dots > span.active {
    background-color: var(--color-mono-500);
  }

  .slide-a {
    background: var(--color-primary-100);
  }

  .slide-b {
    background: var(--color-primary-200);
  }
}
