.carousel {
  flex: 1;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  max-height: fit-content;
  .handler {
    overflow: hidden;
    .inner {
      white-space: nowrap;
    }
    .indicators {
      display: flex;
      justify-content: flex-start;
      margin-top: 10px;
      margin-left: 20px;
      > button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #afafaf;
        padding: 2px;
        margin: 0px 2px;
        border: none;
        &.active {
          background-color: #4a90e2;
          width: 32px;
          border-radius: 10px;
        }
      }
    }
  }
}
