.container {
  max-width: 90%;
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in;
  margin: 0 0 0 10%;
}
/*.container.scale {max-width: 100%; transform: translateX(-10%);}*/
.container .scroll {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  height: auto;
  cursor: default;
/*  overflow: scroll hidden;*/
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-padding: 0px 1.25rem;
  scrollbar-width: none;
}
.container .scroll::-webkit-scrollbar {
  display: none;
}
.container .scroll.active {
  cursor: grab;
  cursor: -webkit-grab;
}
.container .scroll .panel {
  flex: 0 0 auto;

}