.view-exposed {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 32px;
}
.view-exposed__first, .view-exposed__second {
  display: flex;
  gap: 16px;
}
.view-exposed__first {
  justify-content: start;
}
.view-exposed__first .form-widget-select .fieldset-wrapper {
  right: auto;
  left: 0;
}
.view-exposed_size-m {
  margin-bottom: 32px;
}
.view-exposed_size-l {
  margin-bottom: 56px;
}

.masonry-switcher {
  padding: 4px;
  border-radius: 33px;
  background: #161616;
  width: 88px;
  display: grid;
  grid-auto-flow: column;
  gap: 0;
  position: relative;
}
.masonry-switcher__btn {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  justify-content: center;
}
.masonry-switcher__btn.active svg path {
  fill: #161616;
}
.masonry-switcher__toggle {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  z-index: 1;
  top: 4px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 4px;
  transition: transform var(--transition);
}
.masonry-switcher[data-layout=vertical] .masonry-switcher__toggle {
  transform: translateX(0);
}
.masonry-switcher[data-layout=horizontal] .masonry-switcher__toggle {
  transform: translateX(100%);
}

@media (max-width: 1500px) {
  .view-exposed_size-m {
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=view-exposed.css.map */