:host(us-carousel) {
  .container {
    display: flex;
    justify-content: center;
    height: 100%;
  }
  
  .carousel-wrap {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    max-width: 320px;
    overflow: hidden;
  }
  
  .carousel-slider {
    display: flex;
    flex: 1;
    width: 999999px;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .carousel-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .carousel-dots {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--scroll-dot-dot-normal-color);
    margin: 0 calc(var(--space-inline-l) / 2);
    cursor: pointer;
    transition: all .3s ease-in-out;
  }

  .carousel-dot:not(.carousel-dot--active):hover, .carousel-dot:not(.carousel-dot--active):focus{
    background-color: var(--scroll-dot-dot-hover-bg-color);
    border: 1px solid var(--scroll-dot-dot-hover-border-color);
  }
  
  .carousel-dot--active {
    background-color: var(--scroll-dot-dot-active-color);
  }

  .container[class*=horizontal] {
    .carousel-slider {
      margin-bottom: 0;
    }
  }
}

