@charset "utf-8";
/* CSS Document */
  /* Outer container hides overflow */
  .scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border: solid red 4px;
     border-radius: 15px;
    padding: 0px 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: aliceblue;
       font-family: 'Noto Sans', sans-serif;

  }

  /* Inner content that will scroll */
  .scroll-content {
    display: inline-block;
    padding-left: 95%; /* Start off-screen */
   /* animation: scroll-left 60s linear infinite; /* Repeat forever */
  }
   .scroll-content:hover {
      animation-play-state: paused;
      cursor: grab;
   }

  /* Keyframes for horizontal scroll */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Example items */
  .item {
    display: inline-block;
    margin: 0 2rem;
    font-size: 22px;
    text-align: center;
  }
.products {
	height: 125px;
}

