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

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

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

.boxo-collections {
  display: block;
  box-sizing: border-box;
}

.collections-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

.collection {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.collection__type-small, .collection__type-scrollable {
  min-width: 70px;
  max-width: 70px;
  min-height: 80px;
}
.collection__type-large {
  max-width: min(100%, 87px);
  min-width: min(100%, 87px);
  min-height: 87px;
}
.collection__type-text {
  position: relative;
  height: 32px;
  width: 100%;
}
.collection__type-text::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 1px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.08;
  background-color: #222222;
}
.collection__type-text:nth-child(4n+0)::before {
  background-color: transparent;
}
.collection__type-text .collection__title {
  padding: 0 6px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.collection__title {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  cursor: pointer;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}
.image-wrapper__type-small, .image-wrapper__type-scrollable {
  max-width: 56px;
  min-width: 56px;
  min-height: 56px;
}
.image-wrapper__type-large {
  max-width: min(100%, 87px);
  min-width: min(100%, 87px);
  min-height: 87px;
}
.image-wrapper .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;
}
.image-wrapper__mask-square {
  border-radius: 0px;
}
.image-wrapper__mask-circle {
  border-radius: 50%;
}
.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%;
}

.text-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.corner-round {
  border-radius: var(--card-border-radius, 10px);
}
.corner-squared {
  border-radius: 0;
}

.slides-progress {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 4px;
  width: 36px;
  border-radius: 3px;
  opacity: 0.5;
  background-color: rgba(34, 34, 34, 0.5);
}

.slides-progress-item {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  height: 4px;
  width: 18px;
  border-radius: 3px;
  background-color: #222222;
  transition: all 150ms cubic-bezier(0.71, 0.1, 0.3, 0.98);
}

.slides-progress-item.second-page {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}