* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Roboto", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --text-primary: #222222;
}

.boxo-collections-slider-host {
  display: block;
  box-sizing: border-box;
  width: 100%;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.boxo-collections-slider {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  padding: 16px 0;
  /* hide a scrollbar but keep it functional */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.boxo-collections-slider::-webkit-scrollbar {
  display: none;
}

.is-with-text {
  opacity: 0.5;
}

.collection {
  display: block;
}
.collection__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.type-twoByOne {
  min-height: 82px;
  width: 164px;
}

.type-oneByOne {
  min-height: 164px;
  width: 164px;
}

.type-oneByTwo {
  min-height: 164px;
  width: 82px;
}

.image-wrapper {
  position: relative;
  background-color: white;
}
.image-wrapper::after {
  position: absolute;
  content: "";
  display: block;
  right: calc(var(--side-spacing) * -1);
  width: var(--side-spacing);
  height: 1px;
}
.image-wrapper__style-elevated {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
.image-wrapper__style-outline {
  border: 1px solid #efefef;
}

.image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
}
.image__full-width {
  width: 100%;
}

.corner-round {
  border-radius: 10px;
}
.corner-squared {
  border-radius: 0;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}