@font-face {
  font-family: 'primary-regular';
  src: url(../fonts/Grotesk/Px-Grotesk-Regular.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'primary-bold';
  src: url(../fonts/Grotesk/Px-Grotesk-Bold.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'primary-italic';
  src: url(../fonts/Grotesk/Px-Grotesk-Regular-Italic.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'primary-light';
  src: url(../fonts/Grotesk/Px-Grotesk-Light.ttf) format('truetype');
  font-display: swap;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-size: 10px;
  font-family: primary-regular;
}
html {
  overscroll-behavior: none;
}
body {
  touch-action: pan-x pan-y;
  position: relative;
  overscroll-behavior: none;
}

.unclickable {
  pointer-events: none;
}

b,
strong {
  font-weight: 300;
  font-family: primary-bold;
}

.capitalize {
  text-transform: capitalize;
}

:root {
  --spacing: 25px;
  --matte-red: #ff6464;
  --primary-color: #1a1a1a;
  --secondary-color: #00ff47;
  --white-color: #fff;
  --primary-light: #eeeeee;
  --primary-dark: #1a1a1a;
  --primary-grey: #5c5c5c;
  --xxs-catalog: 210px;
  --xs-catalog: 240px;
  --s-catalog: 290px;
  --m-catalog: 320px;
  --l-catalog: 360px;
  --xl-catalog: 390px;
  --xxl-catalog: 440px;
  --regular-text: 1.4rem;
  --small-text: 1.2rem;
  --medium-text: 3.4rem;
  --navigation-main-text: 3rem;
  --navigation-subtitle: 1.5rem;
  --navigation-additional-text: 2.2rem;
  --small-button-text: 1.2rem;
  --button-text: 1.8rem;
  --medium-button-text: 1.6rem;
  --filter-width: 380px;
  --form-inputs: 1.4rem;
  --object-title: 3.2rem;
  --object-medium-text: 1.4rem;
  --object-small-text: 9px;
  --object-descripion: 1.4rem;
  --object-additional-title: 1.6rem;
  --object-addtional-description: 1.2rem;
  --object-large-title: 6.8rem;
  --def-spacing: 1.5rem;
  --primary-color-contrast: #fff;
  --designers-name: 3.2rem;
  --text-medium: 3.2rem;
  --logo-height: 2.6rem;
  --logo-width: 13.6rem;
  --header-height: calc(var(--logo-height) + 7.2rem);
  --large-spacing: 1rem;
}

.white-color {
  color: var(--white-color);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.small-text {
  font-size: var(--small-text);
}

.regular-text {
  font-size: var(--regular-text);
}

.medium-text {
  font-size: var(--text-medium);
  line-height: 1.2;
}

.italic {
  font-style: italic;
}

.underlined {
  text-decoration: underline;
  cursor: pointer;
}

.bold {
  font-weight: 300;
  font-family: primary-bold;
}

.text-light {
  font-family: primary-light;
}

.text-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capitalized {
  text-transform: capitalize;
}

.filter-placeholder {
  display: none;
}

body {
  overflow-x: hidden;
}

use {
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}

.disabled {
  pointer-events: none;
}

button {
  cursor: pointer;
  outline: none;
  font-size: var(--button-text);
}

.secondary-button {
  width: auto;
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

a.secondary-button {
  cursor: pointer;
}

.secondary-button:hover {
  color: #fff;
  border-color: #fff;
}

.secondary-button:hover > .color-change {
  color: #fff;
  border-color: #fff;
}

.small-button-font {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.primary-button,
.secondary-button,
.transparent-background-button {
  border-radius: 25px;
  padding: 10px 25px;
  width: auto;
}

.primary-button {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

.primary-button-font-color {
  color: #fff !important;
}

.link-button {
  border: none;
  outline: none;
  color: var(--primary-color);
  background-color: transparent;
  text-decoration: underline;
  font-size: var(--small-button-text);
}

.medium-button {
  font-size: var(--medium-button-text) !important;
}

.capitalized {
  text-transform: capitalize;
}

#map {
  height: 23rem;
}

.icons {
  display: none;
}

.d-flex {
  display: flex;
}

.space-btwn {
  justify-content: space-between;
}

.jc-flex-end {
  justify-content: flex-end;
}

.jc-space-even {
  justify-content: space-evenly;
}

.d-flex-row {
  display: flex;
  flex-direction: row;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.bg-color-white {
  background-color: #fff;
}

.text-color-black * {
  color: var(--primary-color);
}

.hidden {
  display: none;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.z-index-11 {
  z-index: 11;
}

.bold-text {
  font-weight: 300;
  font-family: primary-bold;
}

.hide-overflow {
  overflow: hidden;
}

.padding-10 {
  padding: 5px;
}

.fixed-header {
  position: fixed;
  width: 100%;
}

.empty-footer {
  background-color: #fff;
  height: 200px;
}

.search-products-modal {
  display: none;
  position: fixed;
  height: 95px;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 15;
  align-items: flex-end;
  height: 100%;
}

.search-products-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.popular-searches-box {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--primary-color);
}

.popular-searches-list li {
  padding: 5px 0 5px 0;
}

.search-products-modal.is-visible {
  display: block;
}

.search-products-modal-close {
  cursor: pointer;
}

.search-products-nav {
  padding: 3rem 2.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ais-RefinementList-item-custom * {
  pointer-events: none;
}

.ais-Menu-item.horizontal-filter-letter.ais-Menu-item--selected.designer-letter-active {
  background-color: var(--primary-color);
}

.ais-Menu-item.horizontal-filter-letter.ais-Menu-item--selected.designer-letter-active a {
  color: #fff;
}

.ais-SearchBox-input,
.ais-SearchBox-submit,
.ais-SearchBox-reset {
  height: 40px;
}

.ais-SearchBox-submit.is-active {
  display: none !important;
}

.search-products-top .ais-SearchBox-submitIcon,
.search-products-top .ais-SearchBox-resetIcon {
  width: 12px !important;
  height: 12px !important;
}

.search-products-modal.is-visible .ais-SearchBox-submitIcon,
.search-products-modal.is-visible .ais-SearchBox-resetIcon {
  display: none;
}

.search-products-top .ais-SearchBox-input {
  font-size: var(--font-h6);
  font-family: var(--font-family-h6);
  letter-spacing: var(--letter-spacing-h6);
  line-height: var(--line-height-h6);
}

.ais-SearchBox-submit,
.ais-SearchBox-reset {
  width: 25px;
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
}

.ais-SearchBox-submit,
.ais-SearchBox-reset {
  margin-left: -25px;
}

.ais-SearchBox-input {
  outline: none !important;
  width: 100%;
  font-size: var(--form-inputs);
  color: var(--primary-color);
  border: none;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 2.5rem;
  align-items: center;
  padding: 5px 0;
  font-family: primary-light;
  background: transparent;
}

.ais-SearchBox,
.ais-SearchBox-form,
.search-products-field,
.search-designcatalogs-field,
.search-historic-catalogs-field,
.search-designers-field,
.search-partners-field {
  width: 100%;
}

.search-products-field {
  display: flex;
  flex-direction: column;
}

.search-box-wrapper {
  padding: 108px 25px 0 12px !important;
}

.ais-SearchBox-loadingIndicator {
  display: none !important;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

div.hidden-scrollbar {
  /* Hide scrollbar for IE, Edge (1st line) and Firefox (2nd line)*/
  -ms-overflow-style: none;
  scrollbar-width: none;
}

div.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.light-gray {
  color: var(--primary-color);
  font-weight: 300;
}

.relative-pos {
  position: relative;
}

.rotate-arrow-animation {
  transition: all 0.5s ease-out;
}

.rotate-arrow {
  transform: rotate(-180deg);
}

footer {
  padding: 3rem var(--large-spacing);
  padding-top: 150px;
}

footer a {
  display: block;
  line-height: 1.5;
  color: var(--primary-color);
  font-family: primary-light;
}

footer svg {
  height: 5rem;
  width: 5rem;
  /* background-color: var(--primary-color); */
  /* border-radius: 50%; */
  /* padding: 1rem; */
}
.footer-social a {
  height: 5rem;
  width: 5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer .footer-social {
  display: flex;
  gap: 1rem;
  padding: 4rem 0;

  justify-content: center;
}
.footer-text * {
  line-height: 1.8;
}

.our-network ul li a {
  font-weight: 400;
}

.footer-icons-container {
  margin: 0 0 3.5rem 0;
}

.footer-icons-title {
  font-weight: 500;
}

.footer-icons {
  display: flex;
  margin: 1.5rem 0 0 0;
}

.footer-icons button {
  margin: 0 0.5rem 0 0.5rem;
  height: 5rem;
  width: 5rem;
  background: none;
  border: none;
}

.footer-icons button a {
  width: inherit;
  height: inherit;
  position: absolute;
}

.footer-pages > div {
  line-height: 2.4rem;
  margin-bottom: 20px;
}

.copyright-container {
  display: flex;
  margin: 3rem 0 0 0;
}

header.header-homepage {
  background-color: transparent;
}

header.header-homepage.header-homepage-scrollable {
  background-color: transparent;
}

header.header-scrollable {
  background-color: transparent;
}

.nav-white {
  fill: var(--white-color) !important;
}

header.header-scrollable .nav-white {
  fill: var(--primary-color) !important;
}
header:not(.header-scrollable) .navbar-landing .user-card.user-card--unlogged {
  border: 1px solid var(--white-color) !important;
}
header:not(.header-scrollable) .navbar-landing .user-card.user-card--unlogged b,
header:not(.header-scrollable) .navbar-landing .user-card.user-card--unlogged p {
  color: var(--white-color) !important;
}
header:not(.header-scrollable) .navbar-landing .user-card.user-card--unlogged svg {
  fill: var(--white-color) !important;
}
header.header-scrollable .navbar-logo svg {
  fill: var(--primary-color);
}

header {
  font-weight: 300;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
}

header.active {
  z-index: 3;
}

header nav {
  font-weight: 400;
}

header .navbar-links .navbar {
  font-weight: 400;
}

.header-homepage {
  width: 100%;
  display: flex;
}

.menu-title {
  padding-bottom: 26px;
}
.secondary-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 3rem;
}

.primary-links li a,
.secondary-links li a,
.menu-title p {
  cursor: pointer;
}

.header-actions .link-button {
  margin-top: 1.5rem;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-top: 10px;
}

.sign-out-button {
  display: none;
}

.navbar {
  padding: 3rem 2.5rem 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar > .button-wrapper {
  height: 40px;
}

.navbar > .button-wrapper button {
  background: none;
  border: none;
}

.navbar > .button-wrapper button svg {
  width: 2rem;
  height: 3rem;
}

.navbar-classic {
  padding: 3rem 2.5rem;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-color-white-title .navbar-logo svg {
  fill: #fff;
}
.navbar-logo{
  display: flex;
}
.navbar-logo svg,
.actions-logo,
.request-information-logo {
  height: var(--logo-height) !important;
  width: var(--logo-width) !important;
  fill: var(--primary-color);
}

nav svg.burger-button {
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  fill: var(--primary-color);
}

nav .hamburger-button_js {
  height: 2rem;
}

.close-navbar-links svg {
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  cursor: pointer;
}

.navbar-links ul {
  padding: 2.5rem;
  height: 100%;
  overflow: auto;
}

.navbar-links li.login-button span {
  color: #d6444c;
}

.navbar-links,
.filter-option-container,
.follow-product-modal-wrapper {
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.homepage-main-text {
  padding: 15rem 5rem 0 5.3rem;
  line-height: 1.5;
}

.homepage-main-text p {
  font-size: 2rem;
  color: #fff;
}

.homepage-buttons {
  width: 100%;
  align-items: center;
  padding: 0 0 5rem 0;
}

/* .homepage-buttons button {
  border: none;
  margin: 1rem 0;
  padding: 0.5rem 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 2px;
  height: 30px;
} */

section.main-content {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

/* .homepage-login-button {
  width: 15rem;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: #fff;
} */

.homepage-registration-button {
  border: 0;
  text-decoration: underline 1px;
  background: none;
}

/* design classics photos preview */
.photos-container-wrapper {
  position: relative;
}

.photos-container-wrapper::after {
  content: '';
  z-index: 2;
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 30vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -1.82%, rgba(255, 255, 255, 0.5) 70.65%, #ffffff 95.92%);
  pointer-events: none;
}

.ais-InfiniteHits-list-style-gallery,
.profile-products-wrapper {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 10px), 1fr));
  grid-auto-rows: 0;
  margin: 2px;
}

.items-gap-mobile {
  gap: 20px 2px !important;
}

.product-wrapper {
  position: relative;
}

.product-wrapper.d-flex-column img {
  cursor: pointer;
}

.product-wrapper .gallery-image-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.05);
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.gallery-image--without-bg.gallery-image-wrapper::after {
  display: none;
}
.gallery-image--without-bg .bg-placeholder,
.profile-projects-wrapper .wrapper-with-overlay,
.InfiniteHits-item--placeholder-catalog a {
  height: 170px !important;
}
.InfiniteHits-item--placeholder a,
.InfiniteHits-item--placeholder-bookmark a {
  height: 340px !important;
}
.InfiniteHits-item--placeholder-bookmark:nth-child(2) a {
  margin: 50px 10% 0 20%;
  height: 250px !important;
}
.InfiniteHits-item--placeholder-bookmark:nth-child(3) a {
  margin-right: 15%;
}
.InfiniteHits-item--placeholder:not(.InfiniteHits-item--add) a,
.InfiniteHits-item--placeholder-bookmark:not(.InfiniteHits-item--add) a {
  background-color: rgba(0, 0, 0, 0.05);
}
.InfiniteHits-item--empty,
.InfiniteHits-item--empty .product-wrapper {
  height: 100%;
}

.InfiniteHits-item--empty .gallery-image-wrapper {
  max-height: 100%;
  height: 100%;
}

.gallery-image-wrapper img,
.gallery-image-wrapper {
  height: auto;
  width: 100%;
}

.photos-container {
  display: flex;
}

.image-wrapper-news,
.image-wrapper,
.gallery-image-wrapper {
  position: relative;
}

.photos-column-1 {
  width: 50%;
  height: auto;
  margin: 0 0.8rem 0 0;
}

.photos-column-2 {
  width: 50%;
  height: auto;
}

.photos-column-1 .image-wrapper:nth-child(2n),
.photos-column-2 .image-wrapper:nth-child(2n) {
  margin: 0.8rem 0 0.8rem 0;
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.classics-description-block,
.designer-slider-block-info,
.catalog-slider-block-info {
  padding: 10px;
  word-wrap: break-word;
}

.catalog-slider-block {
  position: relative;
}

.catalog-slider-block .more-options-button svg {
  position: relative;
  width: 30px;
  height: 20px;
  color: #fff;
}

.catalog-slider-block .more-options-button {
  height: unset;
  width: unset;
  top: 0;
  right: 0;
}

.description-title-italic {
  padding: 3px;
  font-style: italic;
  font-weight: lighter;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.small-button-font.italic {
  margin-top: 3px;
}

.description-title-light {
  padding: 3px;
  font-weight: lighter;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* .photos-column-1 img,
    .photos-column-2 img {
        max-inline-size: 100%;
        block-size: auto;
    }
    .photos-column-1 .image-wrapper + * {
        margin: 2px 2px 0 0;
    }
    .photos-column-2 {
        max-width: 50%;
    }
    .image-wrapper {
        position: relative;
    } */
.image-wrapper svg,
.image-wrapper-news svg,
.gallery-image-wrapper svg {
  position: relative;
  width: 40px;
  height: 20px;
  color: #fff;
}

.more-options-button {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 20px;
  width: 30px;
  border: none;
  background: none;
  cursor: pointer;
  /* background opacity overlay going over */
  z-index: 1;
}

.news-slider-date {
  position: absolute;
  top: 12px;
  left: 15px;
  height: 12;
  width: 62px;
  border: none;
  background: none;
  cursor: pointer;
  /* background opacity overlay going over */
  z-index: 1;
  color: #fff;
}

.design-classics-wrapper {
  margin: 0 2rem 3rem 2rem;
}

.design-classics-title {
  padding: 0 0 3rem 0;
}

.design-classics-title span {
  font-size: 1.8rem;
  font-weight: 500;
}

.design-classics-description {
  font-size: 1.8rem;
}

.homepage-button-default,
.homepage-button-default a {
  padding: 1rem;
  line-height: 20px;
  font-size: 1.7rem;
  font-weight: 300;
  background-color: transparent;
  border-color: var(--primary-color);
  border-radius: 25px;
  color: #7e7e7e;
  border-width: 1.5px;
  width: max-content;
}

.section-block {
  padding: 20px;
  color: var(--primary-color);
  margin-left: 10px;
  margin-bottom: 10px;
}

.homepage-title {
  font-size: 1.8rem;
  font-weight: 300;
  align-items: center;
  margin-bottom: 20px;
  font-family: primary-bold;
}

.homepage-paragraph {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 22px;
  align-items: center;
  word-spacing: 0.3rem;
  margin-bottom: 10px;
}

/* .homepage-button-default {
        margin-top: 20px;
        width: max-content;
        padding: 15px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        font-weight: 300;
        background-color: transparent;
        border-color: #464b56;
        border-radius: 20px;
        color: var(--primary-color);
        border-width: 1.5px;
    } */

/* slider css */
.section-slider,
.catalog-wrapper {
  overflow-y: hidden !important;
  overflow-x: unset !important;
}

.filter-section-slider {
  padding: 0 2.5rem;
  margin-bottom: 0.5rem;
}

.current-refinements.slider:not(.main-refinements) {
  margin-left: 0 !important;
}

.slider.main-refinements {
  margin-left: 25px;
  margin-bottom: 0;
}

.slider.main-refinements .ais-CurrentRefinements-list {
  margin-bottom: 0;
}

.slider.main-refinements .ais-CurrentRefinements-item {
  margin-bottom: 15px;
}

.main-refinements .ais-CurrentRefinements-item > span {
  width: max-content;
}
.ais-CurrentRefinements-item > *:not(:last-of-type){
  margin-right: 4px;
}
.main-refinements .ais-CurrentRefinements-list {
  margin-left: 0;
}

.slider {
  width: max-content;
  gap: 0.4rem;
  margin: 0 0 10px 10px;
}
.ais-CurrentRefinements-list{
  gap: 0.4rem;

}
.slider-classics-a {
  font-size: var(--small-button-text) !important;
}

.slider-x-span {
  margin-left: 10px;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

.classics-applied-filters-button {
  padding: 10px;
}

.slider-block > div {
  position: relative;
}

.slider-block-logo {
  margin-bottom: 20px;
}

.slider-block-logo img {
  max-width: 100px;
}

.slider-block-info {
  width: 270px;
  padding: 15px;
}

.slider-logo {
  margin-bottom: 35px;
}

.slider-label {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1em;
}

.slider-info {
  margin-bottom: 6px;
  font-size: 1.1em;
  font-weight: 400;
}

.price-wrapper {
  background-color: #c0e0cf;
  width: max-content;
  border-radius: 10px;
  color: var(--primary-color);
  padding: 5px 5px 0 5px;
  margin-left: -5px;
}

/* *login-modal-styling */
/* div#login-modal-popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  flex-direction: column;
} */

/* .input-form-wrapper {
  padding: 3rem 2rem 0 2rem;
} */

/* .input-form-wrapper .homepage-buttons {
  margin-top: 6rem;
}

.modal-title-wrapper {
  margin-bottom: 6rem;
} */

/* .modal-title {
  font-size: 2.2rem;
} */

/* .input-form-wrapper,
.input-form-wrapper form,
.input-form-wrapper form div {
  width: 100%;
} */

/* button.close-login-modal {
  background: none;
  border: none;
} */

.close-modal svg {
  width: 2rem;
  height: 3rem;
}


.close-modal {
  background: none;
  border: none;
}

.input-box {
  position: relative;
}

.input-box input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--primary-color);
  padding: 1.2rem 0 1.2rem 0.3rem;
  letter-spacing: 1.5px;
  background: transparent;
  color: var(--primary-color);
}

.input-box input::placeholder {
  color: var(--primary-color);
}

.forgot-password {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 1px;
  font-size: 1.3rem;
  text-decoration: underline;
}

/* classics page css */

.dropdown-wrapper__select-box button svg,
.filter-box button svg {
  width: 2.4rem;
  height: 2.4rem;
}

.fss-footer {
  position: fixed;
  bottom: 0px;
  z-index: 5;
  left: 0;
  flex-direction: column-reverse;
}

.content.active .fss-footer {
  left: var(--filter-width);
}

.content.active.single-catalog .fss-footer {
  left: 500px;
}

.fss-footer-button {
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: var(--primary-color);
  opacity: 0.97;
  color: #fff;
  border-radius: 100px;
  border: none;
  font-size: 1.9rem;
  margin: 10px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.fss-footer-button.is-active {
  background-color: #ffa500;
}

.privacy-checkbox-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin: 1.5rem 0 0 0;
}

.privacy-checkbox-wrapper label {
  font-size: 1.3rem;
  margin: 0 0 0 1rem;
  color: #979797;
}

.registration-form__button-wrapper {
  margin: 5rem 0 0 0;
  display: flex;
  justify-content: center;
}

.error span,
.registration-error span {
  font-size: 1.3rem;
  color: #d6444c;
}

.fss-sort-button {
  width: 190px;
  padding: 15px;
}

.fss-icon-button {
  width: 80px;
}

/* slider logo preview */
.slider-logo {
  width: 600px;
}

.slider-logo-block {
  position: relative;
  width: 500px;
  height: 212px;
}

#logo-preview-1 {
  position: absolute;
  width: 165px;
  height: 22px;
  left: 45px;
  top: 7px;
}

#logo-preview-2 {
  position: absolute;
  width: 171px;
  height: 22px;
  left: 135px;
  top: 49px;
}

#logo-preview-3 {
  position: absolute;
  width: 124px;
  height: 19px;
  left: 28px;
  top: 94px;
}

#logo-preview-4 {
  position: absolute;
  width: 114px;
  height: 39px;
  left: 152px;
  top: var(--header-height);
}

#logo-preview-5 {
  position: absolute;
  width: 52px;
  height: 52px;
  left: 51px;
  top: 143px;
}

#logo-preview-6 {
  position: absolute;
  width: 144px;
  height: 59px;
  left: 352px;
  top: 19px;
}

#logo-preview-7 {
  position: absolute;
  width: 109px;
  height: 109px;
  left: 280px;
  top: 88px;
}

/* card css */
.card-wrapper {
  align-items: left;
  margin: 30px 40px;
}

.card {
  align-items: center;
  width: 300px;
  height: max-content;
  background-color: #d8d8d8;
  opacity: 0.8;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-title {
  padding: 30px;
  text-align: left;
}

.card-title h1,
.card-title p {
  font-size: 1.7rem;
  line-height: 24px;
}

.card-title h1 {
  margin-bottom: 20px;
  font-weight: 500;
}

.card-title p {
  margin-bottom: 20px;
  font-weight: 400;
}

.card-img {
  width: 250px;
  height: 240px;
  background-color: #fff;
  margin-bottom: 30px;
}

/* *design-classics-filters */
.filters-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  flex-direction: column;
  top: 0;
  /* z-index: 10; */
}

.filters-options-wrapper {
  padding: 0rem 2.5rem 0 2.5rem;
  /* flex: 1; */
  overflow: auto;
  padding-bottom: 11rem;
}
.filter-box-main{
  display: flex;
  flex-direction: column;
}
.filter-box-main > div{
  width: 100%;
}
.filter-box-main.filter-active + .filter-box-main > button{
  border-top: 2px solid #000000;
}
.filter-box-main + .filter-box-main > button{
  border-top: none;
}
.filter-box-hidden {
  display: none !important;
}
.filter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
}

.filter-box > button img{
  height: 2.4rem;
  width: 2.4rem;
  position: relative;
}

.filter-box > button .fitler-option{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.filter-checkbox label img{
  height: 2rem;
  width: 2rem;
  margin-bottom: -5px;
  position: relative;
  cursor: pointer;
  opacity: 50%;
}

.tooltip-wrapper{
  display: block;
  max-width: 200px;
  background-color: #000000;
  padding: 10px;
  position: fixed;
}

.tooltip-wrapper .tooltip-text{
  font-size: var(--font-smaller) !important;
  font-family: var(--font-family-smaller) !important;
  letter-spacing: var(--letter-spacing-smaller) !important;
  line-height: var(--line-height-smaller) !important;
  color: #ffffff;
}

.tooltip-wrapper .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
}

.filter-box .fitler-option,
.filter-title {
  text-transform: uppercase;
  font-size: var(--font-filter-title);
  font-family: var(--font-family-filter-title);
  letter-spacing: var(--letter-spacing-filter-title);
  line-height: var(--line-height-filter-title);
}

.filter-title {
  margin-bottom: 2rem;
}

.filter-box span,
.filter-title {
  font-size: 1.5rem;
}

.filter-box > button {
  border: none;
  display: flex;
  background: none;
  padding: 1.5rem 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #c4c4c4;
}

.filter-box-main > button{
border-top: 2px solid #000000;
border-bottom: 2px solid #000000;

}

.filter-box:not(.filter-box-main):not(.is-active):last-of-type > button{
  border-bottom: 1px solid #c4c4c4;
}
.filter-box-main:not(.filter-active):last-of-type > button{
  border-bottom: 2px solid #000000;
}

.filters-buttons-wrapper {
  height: 11rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, #ffffff 62.9%, rgba(255, 255, 255, 0) 83.95%);
  display: flex;
  align-items: center;
  padding: 3rem 0 0 0;
  justify-content: center;
}

.apply-filters {
  border-radius: 3rem;
  background: var(--primary-color);
  border: none;
  font-size: var(--small-button-text);
  color: var(--white-color);
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.apply-single-filter {
  z-index: 1;
}

.submit-range-input {
  width: 20%;
  height: 3rem;
  border-radius: 1.5rem;
  background: #d6444c;
  border: none;
  font-size: 1.2rem;
  color: var(--white-color);
  font-weight: 500;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.5rem;
}

/* filter designers */
.filter-option-container {
  overflow: auto;
}

.filter-list-container,
.follow-product-container {
  margin: 0 2.5rem 0 2.5rem;
  padding-bottom: 1.5rem;
  overflow: auto;
}

.filter-list-container {
  margin: 0 2.5rem 0 2.5rem;
  padding-bottom: 11rem;
  flex: 1;
}

.filter-radio {
  position: relative;
  align-items: center;
  margin-bottom: 20px;
}

.filter-radio label {
  margin: 0 0 0 1.4rem;
}

.filter-designer-subtitle {
  color: var(--primary-color);
  font-size: 1.7em;
  font-weight: 400;
  margin: 0 0px 20px 0;
}

.designer-radio-span {
  font-size: 1.7em;
  /* line-height: 1px; */
  /* margin-left: 7px; */
}

.index-scrollbar {
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 28px;
  height: 480px;
  left: calc(50% - 28px / 2 + 145.5px);
  top: 90px;
  background: #eef0f3;
  opacity: 0.97;
  border-radius: 100px;
}

.index-scrollbar a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--primary-color);
  flex: none;
  margin-bottom: 1.5px;
}

.index-scrollbar .link-active {
  color: #d8d8d8;
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 2px 4px;
  border-radius: 25%;
}

.availability-filter-modal-container,
.filter-product-category-container,
.filter-product-super-category-container,
.filter-decade-container,
.filter-item-source-container,
.filter-item-location-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  flex-direction: column;
  z-index: 15;
  left: 0;
  top: 0;
}

.filters > div:not(.hidden)::after {
  content: '';
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: -1;
}

.filter-list ul label,
.follow-product-form label {
  font-size: var(--font-filter-options);
  font-family: var(--font-family-filter-options);
  letter-spacing: var(--letter-spacing-filter-options);
  line-height: var(--line-height-filter-options);
  color: var(--primary-color);
}

/* type radio logic for all filters */
[type='radio']:checked,
[type='radio']:not(:checked) {
  /* position: absolute;
        left: -9999px; */
  opacity: 0;
  width: 2.4rem;
  height: 2.4rem;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  width: 100%;
  cursor: pointer;
  display: inline-block;
}

[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12ZM21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z' fill='%23D8D8D8'/%3E%3C/svg%3E");
  background-size: cover;
}

[type='radio']:checked + label:after,
[type='radio']:not(:checked) + label:after {
  content: '';
  height: 2.4rem;
  width: 2.4rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='24 / basic / selected'%3E%3Cpath id='icon' fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12ZM21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z' fill='%23424753'/%3E%3Ccircle id='Ellipse 7' cx='12' cy='12' r='5' fill='%23424753'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-size: cover;
}

[type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* *checkbox-logic */
[type='checkbox']:checked,
[type='checkbox']:not(:checked) {
  opacity: 0;
  min-width: 2rem;
  min-height: 2rem;
}

[type='checkbox']:checked + label:before,
[type='checkbox']:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-size: cover;
  border: 2px solid var(--primary-color);
  border-radius: 2px;
}

[type='checkbox']:not(:checked) + label:before {
  border: 2px solid #d8d8d8;
}

[type='checkbox']:checked + label:after,
[type='checkbox']:not(:checked) + label:after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: var(--primary-color);
  left: 0.4rem;
  top: 0.4rem;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
}

[type='checkbox']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* price filter */

.price-slider-wrapper,
.search-box-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.price-slider-wrapper {
  width: calc(100% - 7px);
}

.price-slider-buttons {
  display: flex;
  border-radius: 20px;
  background: #d8d8d8;
}

.price-slider-button {
  height: 40px;
  width: 95px;
  background-color: transparent;
  border-radius: 20px;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  position: relative;
  font-size: 1.3em;
}

.price-slider-button:not(.without-separator):not(:last-of-type)::after {
  content: '';
  height: 50%;
  background-color: var(--primary-color);
  width: 1px;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
}

.price-slider-button.active {
  background-color: rgb(57, 57, 61);
  color: white;
}

[type='checkbox']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* product category filter*/

.filter-checkbox label {
  margin: 0 0 0 1.4rem;
}

.filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 1.8rem 0;
}

.filter-checkbox label:before,
.filter-checkbox label:after {
  display: flex;
  align-items: center;
}

.subcategory-margin {
  margin: 1.6rem 0 1.6rem 1.6rem;
}

.supercategory-margin label {
  margin-left: 1.4rem;
}

.subcategory-margin label {
  margin-left: 1.8rem;
}

.supercategory-margin {
  margin: 0 1rem 1.6rem 0;
}

button.arrow-down-container {
  border: none;
  background: none;
  height: 2.4rem;
}

svg.arrow-down {
  width: 2.4rem;
  height: 2.4rem;
}

.search-input {
  max-width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  background: url(/public/assets/images/search-icon-designer.svg) no-repeat scroll 3px;
  padding-left: 30px;
  border-radius: 0;
  font-size: var(--font-filter-search);
  font-family: var(--font-family-filter-search);
  letter-spacing: var(--letter-spacing-filter-search);
  line-height: var(--line-height-filter-search);
}

.ais-SearchBox-input {
  border-radius: 0;
}

.designer-slider-block,
.catalog-slider-block {
  /* margin: 5px; */
  /* using gap property on container instead of margin*/
  width: 130px;
}

.designer-slider-block * {
  pointer-events: none;
}

.partners-slider-list img {
  object-fit: contain;
}

.wrapper-with-overlay {
  position: relative;
}

.wrapper-with-overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.single-object-image.wrapper-with-overlay::before {
  /* height: calc(100% - 21px); */
  height: 100%;
}

.designer-slider-block > a:not(.designer-slider-block-info) {
  position: relative;
  display: block;
  cursor: pointer;
}

.designer-slider-block > a:not(.designer-slider-block-info)::before,
.catalog-slider-block > a:not(.catalog-slider-block-info)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.catalog-slider-block img {
  height: 150px;
}

.news-slider-block {
  margin: 3px;
  width: 195px;
}

.horizontal-filter,
.horizontal-filter .ais-RefinementList-list {
  width: max-content;
  overflow: hidden;
}

.horizontal-filter.catalog-horizontal-filter {
  overflow: hidden;
}

.horizontal-filter .ais-RefinementList-list {
  display: flex;
}

.horizontal-filter .ais-RefinementList-item--selected button {
  background-color: var(--matte-red);
  border-color: var(--matte-red);
}

.horizontal-filter .ais-RefinementList-item--selected button a {
  color: #fff;
}

.horizontal-filter-button {
  width: max-content;
  font-weight: 300;
  text-align: center;
  border: 1px solid var(--primary-color);
  background: none;
  margin: 4px;
  border-radius: 30px;
  padding: 5px 15px;
}

.horizontal-filter-letter {
  width: max-content;
  font-weight: 300;
  text-align: center;
  border: 1px solid var(--primary-color);
  background: none;
  margin: 4px;
  border-radius: 30px;
  padding: 0 15px;
}

.designer-margin {
  margin: 0 4px 0 0 !important;
}

.horizontal-filter a {
  color: var(--primary-color);
  font-size: var(--small-btn);
}

.horizontal-filter-active {
  font-weight: bold;
}

.horizontal-scrollbar {
  overflow-x: auto;
  /* height: 4rem; */
  margin: 0 0 0 1rem;
  /* padding for scrollbar */
  padding-bottom: 0.8rem;
}

.horizontal-scrollbar-button {
  font-weight: 300;
  text-align: center;
  border: 1px solid var(--primary-color);
  background: none;
  margin: 4px 8px 4px 0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}

.horizontal-scrollbar-button a {
  color: var(--primary-color);
  font-size: 1.6rem;
  padding: 0 1.1rem;
  width: max-content;
}

.designers-title-wrapper {
  padding: 3px 25px;
}
body:has(iframe)  .close-button{
  visibility: hidden;
}
.close-button {
  background: none;
  border: none;
}

.close-button svg {
  height: 2rem;
  width: 3rem;
}

.close-button a {
  display: block;
}

.close-designer-profile {
  background: none;
  border: none;
  padding: 0 var(--spacing) var(--spacing) 0;
}

.close-designer-profile svg {
  height: 2rem;
  width: 3rem;
}

.close-designer-profile a {
  display: block;
}

.images-slider__title-wrapper {
  margin: 0 1.8rem 0.5rem 1.8rem;
  align-items: center;
}

.images-slider__title-wrapper * {
  font-size: 1.4rem;
}

.images-slider-wrapper {
  margin: 0 0 4.4rem 0;
}

.description-italic {
  font-family: primary-italic;
  font-size: var(--regular-text);
}

.designers-list {
  justify-content: space-between;
  gap: 5px;
  margin: 5px 0;
}

.designers-list * {
  font-size: var(--regular-text);
  color: var(--primary-color);
  pointer-events: none;
}

.designers-list-name {
  cursor: pointer;
}

.designers-list {
  cursor: pointer;
}

.transparent-background-button {
  font-size: var(--button-text);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: block;
  width: max-content;
  display: flex;
  align-items: center;
}

.primary-btn {
  padding: 1rem 0;
  font-size: var(--regular-text);
  font-weight: bold;
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--primary-color);
}

.follow-buttons-container {
  position: fixed;
  width: 100%;
  bottom: 0px;
  display: grid;
  gap: 1rem;
  justify-content: center;
  grid-auto-flow: column;
  z-index: 1;
  bottom: 25px;
  /* padding:  1.6rem; */
}

.follow-buttons-container.follow-buttons-object.mobile {
  z-index: 3;
}

.rounded-btn {
  border-radius: 15px;
}

.tertiary-btn.transparent-btn {
  border: 1px solid var(--matte-red) !important;
  color: var(--matte-red) !important;
  background-color: #fff;
}

.tertiary-btn.transparent-btn svg {
  fill: var(--matte-red) !important;
}

.tertiary-btn.transparent-btn.round-button:hover,
.tertiary-btn.transparent-btn.center-button:hover {
  background-color: var(--matte-red) !important;
}

.transparent-btn.primary-btn {
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: #fff;
  cursor: pointer;
}

.transparent-btn.primary-btn svg {
  fill: var(--primary-color) !important;
}

.transparent-btn.primary-btn.round-button:hover,
.transparent-btn.primary-btn.center-button:hover {
  background-color: var(--primary-color) !important;
}

.transparent-btn {
  background-color: transparent !important;
  border: 1px solid var(--matte-red) !important;
  color: var(--matte-red) !important;
}

.transparent-btn svg {
  fill: var(--matte-red) !important;
}

.transparent-btn.round-button,
.transparent-btn.center-button {
  background-color: #fff !important;
}

.transparent-btn.active {
  background-color: var(--matte-red) !important;
}

.transparent-btn.active svg {
  fill: #fff !important;
}
.light-btn {
  background-color: var(--white-color);
  color: var(--primary-color) !important;
  border-radius: 3rem;
  border: none;
}
.center-button {
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.round-button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.round-button svg {
  width: 1.2rem;
  height: 1rem;
  fill: #fff;
}

.middle-button {
  flex-grow: 0.9;
}

.products-section__products-container {
  display: flex;
  overflow-x: scroll;
  margin: 4rem 0 0 0;
  padding: 0 0 1.5rem 0;
}

.products-section__products-container + button {
  margin: 0 0 0 1.8rem;
}

.designer-products-container {
  display: flex;
  overflow-x: scroll;
  margin-top: 4rem;
}

.designer-products-container + button,
.designer-products-container + a {
  margin-left: 1.8rem;
}

.product-description {
  padding: 0 5px;
}

.product-description span:nth-child(n) {
  padding-top: 0.6rem;
}

.product-description span:first-child {
  padding-top: 0.8rem;
}

.product-description span:last-child {
  padding-bottom: 0.6rem;
}

.designer-products-description {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.product-image-wrapper,
.single-object__image-wrapper {
  position: relative;
  line-height: 0;
}

.designer-profile-product:nth-child(2n),
.partner-profile-product:nth-child(2n) {
  margin: 0 0.4rem;
}

.product-image-wrapper {
  height: 19rem;
  display: flex;
  align-items: flex-end;
}

.product-image-wrapper img {
  height: auto;
  width: 14rem;
}

.product-image-wrapper svg,
.single-object__image-wrapper svg {
  position: relative;
  width: 30px;
  height: 20px;
  color: #fff;
}

.single-object__image-wrapper .more-options-button {
  right: 18px;
}

.image-container__opacity::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.product-name {
  font-family: primary-italic;
  font-size: var(--regular-text);
}

.designer-products-description span:first-child {
  font-family: primary-italic;
  font-size: var(--regular-text);
  padding-top: 0.8rem;
}

.product-designer {
  font-size: var(--regular-text);
  font-weight: bold;
}

.designer-products-description span:nth-child(2) {
  font-size: var(--regular-text);
  font-weight: bold;
}

.designer-products-description span:nth-child(3) {
  font-size: var(--regular-text);
}

.product-price {
  font-size: var(--regular-text);
  font-weight: bold;
  color: var(--matte-red);
}

.designer-products-description span:nth-child(4) {
  font-size: var(--regular-text);
  font-weight: bold;
  color: var(--matte-red);
}

.designer-products-description span:nth-child(2n) {
  padding: 0.6rem 0;
}

.filter-span-all {
  margin-left: auto;
  margin-right: 15px;
  color: var(--primary-color);
}

.news-section {
  margin-top: 5rem;
}

.news-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.news-container + button {
  margin-left: 1.8rem;
}

.news-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1.8rem 0.6rem 1.8rem;
}

.news-options-button {
  background: none;
  border: none;
}

.news-options-button svg {
  width: 2.5rem;
  height: 2rem;
  color: var(--primary-color);
}

.news-date {
  font-size: 1.2rem;
  font-weight: 400;
}

.news-image-container {
  position: relative;
  line-height: 0;
}

.news-image-container img {
  width: 100%;
  max-height: 24rem;
}

.news-title {
  margin: 1.3rem 1.8rem 0 1.8rem;
}

.news-title p {
  font: italic 500 1.5rem 'Lora', serif;
}

.read-more {
  align-self: center;
  font-size: 1.2rem;
  padding: 0;
  padding: 5px 15px;
}

.events-wrapper {
  height: 36rem;
  display: flex;
  overflow-x: scroll;
  margin-top: 3.5rem;
}

.events-wrapper + button {
  margin: 0 0 0 1.8rem;
}

.event-container {
  display: flex;
  flex-direction: column;
  background-color: #eef0f3;
  min-width: 20rem;
  position: relative;
}

.event-container .read-more {
  position: absolute;
  bottom: 1.2rem;
  margin: 0;
}

.event-container:nth-child(2n),
.event-container:nth-child(2n + 1) {
  margin: 1.2rem 0.9rem 1.8rem 0.9rem;
}

/* important order! */
.event-container:first-child {
  margin: 1.2rem 0 1.8rem 1.8rem;
}

.event-container:last-child {
  margin: 1.2rem 1.8rem 1.8rem 0;
}

.event-image-title-container {
  position: relative;
  margin: 0 2rem;
  height: 14.5rem;
}

.event-image-wrapper {
  position: relative;
  line-height: 0;
  margin-bottom: 0.5rem;
}

.event-image-wrapper img {
  width: 9.2rem;
}

.event-options-button {
  background: none;
  border: none;
  margin: 1rem 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
}

.event-options-button svg {
  width: 2.5rem;
  height: 2rem;
  color: var(--primary-color);
}

.event-title span {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.event-details-container {
  margin: 1.5rem 2rem 0 2rem;
}

.event-details {
  display: flex;
}

.event-details span {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 400;
}

.event-date span:nth-child(2),
.event-time span:nth-child(2) {
  color: #d6444c;
}

.event-details svg {
  width: 2rem;
  height: 2rem;
}

.event-date,
.event-time,
.event-location {
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem 1.3rem;
}

.design-collections-list-section {
  margin: 3rem 1.8rem 4rem 1.8rem;
}

.design-collections-list-section ul li {
  margin-bottom: 1.2rem;
}

.product-not-loged-in {
  color: #d6444c !important;
  cursor: pointer;
}

.items-list__item-title-quantity {
  font-size: var(--regular-text);
}

.designer-events {
  margin-bottom: 10px;
}

.load-more-button-wrap {
  display: flex;
  justify-content: center;
}

.designer-events {
  margin-bottom: 10px;
}

.location-info-container {
  margin: 1.4rem 0 2rem 1.8rem;
}

pre.location-info {
  font: italic 500 1.5rem 'Lora', serif;
}

.pagination {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-right: 50px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 1.4rem;
}

.pagination a.page-active {
  background-color: var(--primary-color);
  color: white;
}

.pagination a:hover:not(.page-active) {
  background-color: #ddd;
}

.load-objects {
  margin-left: 100px;
  margin-bottom: 20px;
}

.price-range-input {
  width: 100px;
  height: 30px;
  padding: 10px;
  color: var(--primary-color);
  border: none;
  border-bottom: 1px solid var(--primary-color);
}

/* Sklanjanje up and down arrow-a iz price filtera */
.ais-RangeInput-input::-webkit-inner-spin-button,
.ais-RangeInput-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ais-RangeInput-input[type='number'] {
  -moz-appearance: textfield;
}

.separator-range-input {
  margin: 10px;
  font-size: 1.2rem;
}

.ais-InfiniteHits-loadMore,
.ais-InfiniteHits-showLess {
  margin: 0 !important;
  padding: 0;
  visibility: hidden;
  font-size: 1px;
}

.ais-InfiniteHits-loadMore--disabled,
.ais-RefinementList-showMore--disabled {
  display: none;
}

/*
  * Single Product Page
  */
.single-product-modal,
.partner-modal,
.designer-modal,
.catalog-modal {
  width: 100%;
  position: fixed;
  top: 0;
  overflow-y: auto;
  left: 0;
  z-index: 12;
}
.single-product-modal {
  padding-bottom: 6rem;
}
.partner-modal {
  padding-bottom: 70px;
}

.single-object__image-wrapper img {
  max-width: 100%;
}

.single-product-info-section {
  padding-bottom: 3rem;
}

.single-product-info-section > div {
  margin: 3rem 1.8rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single-product__info-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2px 0;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.single-product__info-wrapper .font-h2 {
  margin-bottom: 2rem;
  display: block;
}

.single-product__info-wrapper-actions {
  margin-bottom: 0;
  margin: 4rem 0 0;
}

.single-product__info-wrapper-actions {
  align-items: center;
}

.single-product__info-wrapper-actions > span {
  margin-top: 0.5rem;
}

.single-product__info-wrapper .single-product__info-wrapper .description-italic {
  margin-bottom: 2px;
  color: var(--primary-color);
}

.single-product__info-wrapper .items-list__item-title {
  line-height: 1.1;
  color: var(--primary-color);
  font-family: primary-bold;
}

.single-product-images-section {
  margin-bottom: 4rem;
}

.single-product-images-section .single-object__image-wrapper:nth-child(2n) {
  margin: 2rem 0;
}

/*
   * single product modal classes
  */
.modal-header {
  padding: 3rem 2.5rem 4rem;
  align-items: center;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 3;
}

.modal-header > div:last-of-type {
  display: flex;
  align-items: center;
}

.modal-wrapper {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}

.modal-content {
  padding: 3rem 2.5rem;
  flex: 1;
}

.more-options-content {
  display: flex;
  flex-direction: column;
}

.more-options-content > button {
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  background-color: #fff;
  height: 5rem;
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
  text-align: start;
}

.gallery-container-list .product-wrapper {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.gallery-container-list .ais-InfiniteHits-list,
.profile-products-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: unset;
  align-items: flex-end;
  gap: 2px;
  margin: 2px;
}

.gallery-container-list .product-wrapper::after {
  background-color: rgba(0, 0, 0, 0.05);
}

.gallery-container-list .gallery-image-wrapper img,
.profile-products-wrapper img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}

.request-information-modal > div img {
  display: none;
}

.gallery-container-list .gallery-image-wrapper {
  display: flex;
  align-items: flex-end;
}

.gallery-container-list .classics-description-block {
  height: 90px;
}

.ais-SortBy,
.ais-SortBy-select {
  height: 30px;
  width: 100%;
  font-size: 1.4rem;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  z-index: 30;
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.loader::before {
  position: absolute;
  height: 70px;
  width: 70px;
  content: '';
  border: 10px dotted var(--secondary-color);
  border-radius: 50%;
  animation: spin 3s infinite;
}

.loader.is-active {
  display: flex;
}

.loader.transparent {
  background: transparent;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.ais-InfiniteHits-list.ais-InfiniteHits-list-catalogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 25px;
}

.ais-InfiniteHits-list-catalogs > div {
  display: grid;
  grid-template-columns: repeat(5, auto);
  overflow-x: auto;
  margin: 10px 0;
}

.ais-InfiniteHits-list-catalogs > div::-webkit-scrollbar,
.section-slider::-webkit-scrollbar,
.profile-segments .catalog-wrapper.catalogs-container::-webkit-scrollbar {
  height: 1px;
}

.section-slider::-webkit-scrollbar-track,
.section-slider::-webkit-scrollbar-thumb,
.section-slider::-webkit-scrollbar-thumb:hover,
.ais-InfiniteHits-list-catalogs > div::-webkit-scrollbar-track,
.ais-InfiniteHits-list-catalogs > div::-webkit-scrollbar-thumb,
.ais-InfiniteHits-list-catalogs > div::-webkit-scrollbar-thumb:hover,
.profile-segments .catalog-wrapper.catalogs-container::-webkit-scrollbar-track,
.profile-segments .catalog-wrapper.catalogs-container::-webkit-scrollbar-thumb,
.profile-segments .catalog-wrapper.catalogs-container::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.ais-InfiniteHits-list-catalogs > div,
.section-slider {
  scrollbar-color: transparent;
  scrollbar-width: none;
}

.catalogs-image-wrapper img {
  height: 250px;
}

.ais-InfiniteHits-list-catalogs .catalog-content,
.catalog-content-preview {
  position: relative;
}

.ais-InfiniteHits-list-catalogs .catalog-content::before {
  top: 250px;
}

.catalog-image-wrapper .more-options-button svg {
  height: 20px;
  width: 30px;
  color: var(--white-color);
}

.object-addtional-description span {
  margin: 0 !important;
}

.catalogs-horizontal-filter .horizontal-filter-button {
  margin: 4px 8px 4px 0;
}

.catalogs-horizontal-filter .horizontal-scrollbar {
  margin-left: 3rem;
}

.catalogs-horizontal-filter .horizontal-filter-button a {
  pointer-events: none;
}

.ais-InfiniteHits-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.catalog-content-preview:not(.homepage-catalogs).historic-catalog::before {
  bottom: 90px;
}

.catalog-content-preview:not(.homepage-catalogs)::before {
  bottom: 120px;
}

.homepage-catalogs.catalog-content-preview {
  margin-bottom: 30px;
}

.homepage-catalogs-content {
  padding: 0 30px 30px 30px;
}

.homepage-catalogs-content .homepage-paragraph {
  margin-bottom: 20px;
}

.single-catalog-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}

/* .single-catalog-wrapper .catalog-multi-page img {
  height: 500px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-right: 25px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
} */

.single-catalog-wrapper .catalog-cover {
  width: 100%;
  height: unset;

  margin: 0;
  filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
}

.catalog-page-preview .catalog-multi-page.wrapper-with-overlay::before {
  width: calc(100% - 25px);
}

.catalog-page-preview .wrapper-with-overlay:not(.catalog-multi-page) {
  margin-right: 25px;
}

.single-catalog-wrapper .catalog-modal-content {
  padding-top: 10px;
}

.close-catalog-page-button {
  position: sticky;
  right: 25px;
  top: 80px;
  align-self: flex-end;
  margin-bottom: 10px;
  z-index: 2;
}

.single-catalog-description {
  padding: 15px 0;
}

.single-catalog-description * {
  padding: 0;
  line-height: 1.6;
  font-weight: normal;
  font-size: 14px;
}

.single-catalog-wrapper .page-title {
  font-size: 15px;
  position: absolute;
  top: 7.5px;
}

.catalog-pages-wrapper > div {
  margin-bottom: 20px;
  position: relative;
}

.catalog-page-preview {
  display: flex;
}

.ais-InfiniteHits-item.ais-InfiniteHits-placeholder .catalog-content {
  height: 100%;
}

.ais-InfiniteHits-item.ais-InfiniteHits-placeholder .catalog-description {
  padding: 0 !important;
}

.ais-InfiniteHits-placeholder {
  flex-grow: 1;
}

.historic-catalogs-list-wrapper li,
.auction-catalogs-list li {
  display: flex;
  justify-content: space-between;
}

.historic-catalogs-list-wrapper li a,
.auction-catalogs-list li a {
  width: 100%;
}

.historic-catalogs-list-wrapper > *,
.auction-catalogs-list > * {
  margin-left: 0;
}

.ais-CurrentRefinements-item * {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.ais-ClearRefinements-button,
.ais-CurrentRefinements-item .ais-CurrentRefinements-categoryLabel {
  font-size: var(--small-btn) !important;
}

/* span.ais-CurrentRefinements-categoryLabel.slider-classics-a {
  text-transform: capitalize;
} */

.object-title-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
}

.main-filter .filter-list-desktop {
  display: none;
}

.biography-wrapper {
  text-align: center;
}

.biography-wrapper .follow-buttons-container {
  position: static;
  display: grid;
  grid-auto-flow: column;
  gap: 5px;
  grid-template-columns: 50px 150px 50px;
  justify-content: center;
}

.biography-preview {
  text-align: start;
}

.biography-wrapper {
  padding: var(--spacing);
  position: relative;
}

.biography-wrapper > div:not(.designer-name-wrapper):not(:last-of-type) {
  margin-bottom: var(--spacing);
}

.biography-wrapper .designer-name-wrapper {
  margin-bottom: 1rem;
}

.product-actions,
.catalog-actions {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  z-index: 2 !important;
  top: 8px;
  right: 8px;
  align-items: center;
}

.product-actions svg,
.catalog-actions svg {
  height: 1rem;
  width: 1rem;
  fill: var(--matte-red);
  pointer-events: none;
}

.product-actions button,
.catalog-actions button {
  border: none;
  padding: 6px;
  border-radius: 50%;
  background-color: transparent;
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--matte-red);
  height: 2.4rem;
  width: 2.4rem;
}

.product-actions button:last-child,
.catalog-actions button:last-child {
  background-color: transparent;
}

.catalog-actions button.action-btn-active,
.product-actions button.action-btn-active {
  background-color: var(--matte-red);
}

.catalog-actions button.action-btn-active svg,
.product-actions button.action-btn-active svg {
  fill: #fff;
}

.price-currency {
  height: 30px;
  margin-bottom: 15px;
  width: 25%;
}

select > option {
  height: 150px;
  padding: 10px;
}

.reset-price-btn {
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

.filter-box.product-category {
  display: none;
}

.filter-slider .slider {
  margin: 0;
}

.filter-header {
  padding: 0 2.5rem;
}

.search-box-wrapper {
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}
.auth-wrapper {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

.search-products-top .ais-SearchBox-submitIcon,
.search-products-top .ais-SearchBox-resetIcon {
  width: 25px !important;
  height: 25px !important;
}

.search-box-button {
  padding-left: 10px;
  align-self: flex-end;
  padding-bottom: 9px;
}

.auth-wrapper {
  padding: 25px 25px 100px;
}

.auth-response {
  font-size: var(--font-paragraph);
  font-family: var(--font-family-paragraph);
  letter-spacing: var(--letter-spacing-paragraph);
  line-height: var(--line-height-paragraph);
}

.auth-response u {
  text-decoration: none;
  border-bottom: 1px solid var(--primary-color);
}

.auth-response.auth-errors {
  color: var(--matte-red);
  margin-top: 5rem;
  white-space: break-spaces;
}

.auth-response .counter u {
  display: block;
  border: none;
  text-decoration: underline;
}

.auth-resend {
  margin-bottom: 2rem;
}
.auth-response .counter {
  margin-top: 5rem;
}
.popular-searches-box,
.register-form,
.login-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.register-form .form-actions,
.login-form .form-actions,
.reset-form .form-actions {
  width: 100%;
}
.title {
  font-size: var(--navigation-main-text);
  font-family: primary-light;
  font-weight: normal;
}

.auth-wrapper .title {
  margin-bottom: 5rem;
}
.auth-wrapper .title p {
  margin-top: 1rem;
}
.auth-wrapper .title p a {
  text-decoration: underline;
}
.auth-wrapper input::placeholder {
  color: var(--primary-color);
}
.auth-wrapper input,
.auth-wrapper .dropdown-value,
.auth-wrapper textarea,
.auth-wrapper .placeholder-wrapper {
  width: 100%;
  color: var(--primary-color);
  border: none;
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  padding: 5px 0;
  background-color: transparent;
  font-size: var(--font-h6);
  font-family: var(--font-family-h6);
  letter-spacing: var(--letter-spacing-h6);
  line-height: var(--line-height-h6);
  margin-bottom: 2.5rem;
}
.form-error {
  color: var(--matte-red);
  margin-top: -2.5rem;
  min-height: 2.5rem;
  padding-top: 5px;
  white-space: break-spaces;
}
.form-error:empty {
  display: none;
}
.auth-wrapper .filter-checkbox {
  margin-bottom: 2.5rem;
}
.auth-password svg {
  height: calc(var(--form-inputs) * 1.1);
  width: calc(var(--form-inputs) * 1.1);
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.auth-password {
  display: flex;
  align-items: center;
  position: relative;
}
.auth-wrapper textarea {
  padding: 5px;
}

.auth-wrapper input {
  border-radius: 0;
}

.auth-wrapper input:focus,
.auth-wrapper textarea:focus {
  outline: none;
}

.search-products-field input:focus {
  outline: none;
}

.dropdown-value p {
  font-size: var(--font-h6) !important;
  font-family: var(--font-family-h6) !important;
  letter-spacing: var(--letter-spacing-h6) !important;
  line-height: var(--line-height-h6) !important;
  color: var(--primary-color);
}

.dropdown-container {
  cursor: pointer;
}

.dropdown-value {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: none;
}

.dropdown-value svg {
  height: 2rem;
  width: 2rem;
  margin-right: 6px;
}

.auth-wrapper textarea::placeholder .auth-wrapper input::placeholder,
.search-box-wrapper input::placeholder {
  color: var(--primary-color);
}

.dropdown-options li {
  cursor: pointer;
  font-size: var(--font-h6) !important;
  font-family: var(--font-family-h6) !important;
  letter-spacing: var(--letter-spacing-h6) !important;
  line-height: var(--line-height-h6) !important;
  padding: 0.7rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--white-color);
}
.dropdown-search {
  position: sticky;
  top: 0;
}
.dropdown-search input {
  padding: 0;
}
.dropdown-container {
  position: relative;
}

.dropdown-container .dropdown-options {
  width: 100%;
  display: none;
  z-index: 2;
}

.dropdown-container .dropdown-options.is-open {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-height: calc((var(--form-inputs) + 1.4rem) * 5);
  overflow-y: auto;
}

.register-form .filter-checkbox input {
  width: 2rem;
  height: 2rem;
  margin: 0;
}

.register-form .filter-checkbox label a {
  text-decoration: underline;
  color: var(--primary-dark);
}
.login-form .form-actions,
.register-form .form-actions,
.reset-form .form-actions {
  margin-top: 2rem;
}
.form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}

.form-actions.form-actions-column {
  flex-direction: column;
}

.form-actions.form-actions-column *:not(:first-child) {
  margin-top: 1rem;
  margin-left: 0;
}

.form-actions *:not(:first-child) {
  margin-left: 1rem;
  display: block;
}

.object-title {
  font-size: var(--object-title);
  word-break: break-word;
}

.object-description {
  font-size: var(--object-descripion);
}

.object-additional-title {
  margin-bottom: 1rem;
  font-size: var(--object-additional-title);
}

.single-object-info,
.single-object-description {
  padding: 0 2.5rem;
}

.single-object-description {
  padding: 5rem 2.5rem 2.5rem;
}

.single-product__info-wrapper.desktop {
  display: none;
}

.single-product__info-wrapper-additional:not(:last-of-type) {
  margin-bottom: 4rem;
}

.production-info-wrapper {
  position: absolute;
  top: 0;
  right: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.copyright {
  font-size: var(--small-text);
  font-family: primary-light;
  height: 20px;
  text-align: end;
  padding: 0 1px;
}

.single-catalog-preview-wrapper {
  display: flex;
}
.single-catalog-preview-wrapper .catalog-actions {
  margin-top: 1rem;
}

.single-catalog-preview {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.single-catalog-preview.catalog-cover-preview {
  width: 100%;
}

.single-catalog-preview img {
  object-fit: contain;
  width: 200px;
}

.single-catalog-pages {
  flex: 1;
  overflow: auto;
}

.single-catalog-preview-wrapper {
  height: calc(100% - var(--header-height));
}

.single-catalog-preview .catalog-description {
  margin: 0;
  align-items: center !important;
  pointer-events: none;
}

.single-catalog-preview .catalog-description .object-addtional-description,
.single-catalog-preview .catalog-description p {
  text-align: center;
}

.single-catalog-pages > div {
  margin-bottom: 5px;
  display: grid;
  grid-auto-flow: column;
}

.single-catalog-pages.double-page > div {
  grid-template-columns: 1fr 1fr;
}

.single-catalog-pages img {
  object-fit: contain;
  cursor: pointer;
  width: 100%;
  height: unset;
}

.single-catalog-pages .section-slider {
  display: grid;
  grid-auto-flow: column;
}

.single-catalog-pages .wrapper-with-overlay {
  margin: 0;
  width: 100%;
}

.catalog-pages-wrapper {
  padding-left: 25px;
}

.single-catalog-actions,
.single-catalog-actions > div {
  display: flex;
}

.single-catalog-actions {
  justify-content: flex-end;
  margin-top: 1rem;
  margin-right: 2.5rem;
}

.single-catalog-actions-container {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%; 
  position: relative;
}

.catalog-cover-preview .single-catalog-actions {
  margin-right: 0;
}

.single-catalog-actions .icon-btn {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.single-catalog-actions .desktop {
  display: none;
}

.single-catalog-actions .icon-btn svg {
  height: 1.2rem;
  width: 1.4rem;
}

.single-catalog-actions button {
  margin-right: 5px;
  margin-top: 0;
}
.single-catalog-actions div button {
  color: var(--matte-red);
  border: 1px solid var(--matte-red) !important;
  fill: var(--matte-red);
}

.catalog-page-id {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.current-page {
  display: flex; 
  flex-wrap: wrap; 
  gap: 0px; 
  justify-content: flex-end; 
  align-items: center;
}

.single-catalog-preview-wrapper .catalog-description {
  padding: 1rem 4rem;
}

.catalog-cover-preview .wrapper-with-overlay::before {
  z-index: 1;
}

.catalog-chapters {
  padding: 5rem 2.5rem;
  width: 100%;
}

.catalog-chapters p {
  margin-bottom: 0.5rem;
  display: flex;
}

.catalog-chapters b {
  margin-right: 1rem;
}

.catalog-chapters u {
  text-decoration: underline;
  cursor: pointer;
}

.catalog-pages-slider {
  display: grid;
  grid-auto-flow: column;
  overflow: auto;
}

.catalog-pages-slider {
  grid-auto-columns: calc(100vw - 50px);
}

.catalog-pages-slider img {
  height: auto;
  width: 100%;
  margin: 0 !important;
}

.catalog-pagination,
.pagination {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 7rem;
  cursor: pointer;
  z-index: 2;
}

.catalog-pagination svg,
.pagination svg {
  height: 7rem;
  width: 7rem;
  fill: #fff;
  pointer-events: none;
}

.catalog-pagination.hidden,
.pagination.hidden {
  visibility: hidden;
  pointer-events: none;
}

.catalog-pagination-next,
.pagination-next {
  right: 2px;
}

.catalog-pagination-prev,
.pagination-prev {
  left: 2px;
}

.catalog-pagination-prev svg,
.pagination-prev svg {
  transform: rotate(90deg);
}

.catalog-pagination-next svg,
.pagination-next svg {
  transform: rotate(-90deg);
}

.reset-btn {
  border: none;
  background-color: transparent;
  font-size: 15px !important;
}

.no-padding {
  padding: 0 !important;
}

.desktop.single-object-image {
  display: none;
}

.content .sticky-filter-slider {
  position: sticky;
  top: 80px;
  z-index: 1;
  margin-right: 25px;
}

.inline-slider.sticky-filter-slider {
  margin-left: 25px;
}

.inline-slider {
  display: flex;
  align-items: center;
}

.search-refinment > span {
  font-size: var(--small-btn) !important;
  display: block;
  margin-right: 4px;
  display: flex;
  align-items: center;
  width: max-content;
}
.reset-refinement,.pages-reset-refinement:not(:empty) {
  margin-right: 0.4rem;
}
.reset-refinement > span,.pages-reset-refinement > span{
  white-space: nowrap;
}
.search-refinment > span span {
  font-size: 10px !important;
  margin-left: 7px;
  cursor: pointer;
}

.inline-slider.current-refinements-wrapper {
  margin-bottom: 15px;
}

.inline-slider .main-refinements {
  margin-left: 0;
}

.inline-slider .slider.main-refinements .ais-CurrentRefinements-item {
  margin-bottom: 0;
}

.sticky-filter-slider.inline-slider {
  margin-bottom: 15px;
}

.sticky-filter-navigation {
  z-index: 0 !important;
}

.no-background-button {
  background: none;
  border: none;
  text-decoration: underline;
  font-weight: bold;
  padding: 1.8rem 0 0 3.4rem !important;
  letter-spacing: -0.3px;
}

.load-btn.ais-InfiniteHits-loadMore--disabled {
  display: none;
}

.actions-modal-wrapper {
  width: 100%;
}

.actions-modal-wrapper .filter-checkbox * {
  pointer-events: none;
}

.actions-modal-wrapper [type='checkbox']:checked + label:before {
  border: 1px solid var(--matte-red);
}

.actions-modal-wrapper [type='checkbox']:checked + label:after {
  background-color: var(--matte-red);
}

.actions-modal-wrapper [type='checkbox']:checked + label {
  color: var(--matte-red);
}

.actions-modal-wrapper label {
  color: var(--white-color);
}

.actions-modal-wrapper input:not([type='checkbox']) {
  width: 100%;
  height: 2rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white-color);
  margin-bottom: 10px;
  outline: none;
  color: var(--white-color);
}

.actions-modal-wrapper input::placeholder {
  color: #fff;
}

.actions-modal-wrapper button {
  width: fit-content;
  align-self: flex-end;
  margin-top: 6rem;
}

.actions-modal .actions-content > div:not(.close-action-modal) {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: center;
  padding: 15px 0 0;
  color: var(--white-color);
  cursor: pointer;
  font-family: primary-light;
}

.actions-modal .actions-content > div:not(.close-action-modal) span {
  color: var(--white-color);
  pointer-events: none;
  font-family: primary-light;
}
.actions-content > div.active:not(.close-action-modal) span {
  color: var(--matte-red);
}
.actions-content > div.active:not(.close-action-modal) {
  color: var(--matte-red) !important;
}

.actions-content > div.active:not(.close-action-modal) > div > svg {
  fill: var(--matte-red) !important;
}

.actions-content > div.active:not(.close-action-modal) > div {
  border-color: var(--matte-red) !important;
}

.actions-modal .actions-content > div:not(.close-action-modal) > div > svg {
  height: 13px;
  width: 13px;
  fill: var(--white-color);
  pointer-events: none;
}

.actions-modal .actions-content > div:not(.close-action-modal) > div {
  margin-right: 5px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-object-wrapper .user-feed-modal {
  height: unset;
}

.single-object-wrapper .user-projects-modal {
  height: calc(100vh - 60px);
}

.user-feed-modal,
.user-projects-modal {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.user-feed-modal > div:not(.close-action-modal),
.user-projects-modal > div:not(.close-action-modal) {
  overflow: auto;
  flex: 1;
}

.close-action-modal svg,
.request-information-close {
  height: 20px;
  width: 20px;
  fill: #fff;
  cursor: pointer;
}

.close-action-modal svg.close-btn,
.request-information-close {
  position: fixed;
  top: 45px;
  right: 30px;
}

.gallery-image-wrapper.active .product-actions,
.gallery-image-wrapper.active img {
  pointer-events: none;
}

.close-action-modal {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-line {
  display: grid;
  align-items: center;
  cursor: pointer;
  grid-template-columns: 3rem auto;
  gap: 1rem;
}

.project-line > div {
  height: 3rem;
  width: 3rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.project-line.active > div {
  border: 1px solid var(--matte-red);
  background-color: var(--matte-red);
}

.project-line.active > p {
  color: var(--matte-red);
}

.project-line > p {
  color: var(--white-color);
  word-break: break-all;
}

.project-line > div svg {
  height: 1.6rem;
  width: 1.6rem;
  fill: #fff;
}

.project-line > div span {
  font-size: 1.7rem;
  color: #fff;
}

.project-segment-title {
  font-size: 14px;
  font-family: primary-bold;
  color: #fff;
}

.project-segment {
  margin-bottom: 30px;
}

.project-segment > * {
  margin-bottom: 10px;
}

.toast-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 35;
  width: 100%;
  padding: var(--def-spacing);
  background: var(--secondary-color);

  display: none;
}

.toast-wrapper.is-active {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toast-wrapper svg {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  fill: var(--primary-color);
}

.toast-wrapper.toast-error svg {
  fill: var(--primary-color-contrast);
}

.toast-wrapper .toast-message,
.toast-wrapper .toast-message * {
  font-size: var(--object-medium-text);
  color: var(--primary-color);
  font-family: primary-regular;
  flex: 1;
  margin-right: 1rem;
}
.toast-message a {
  text-decoration: underline;
}

.toast-wrapper.toast-error {
  background: var(--matte-red);
}

.toast-wrapper.toast-error .toast-message,
.toast-wrapper.toast-error .toast-message * {
  color: var(--primary-color-contrast);
}

.feeds-wrapper {
  position: absolute;
  background-color: #fff;
  right: -25px;
  top: 45px;
  border: 2px solid var(--primary-color);
  border-radius: 3rem;
  width: 30rem;
  padding: 7px 0;
}

.feeds-wrapper > div {
  cursor: pointer;
  padding: 7px 15px;
}

.btn-description {
  font-size: 12px;
  padding: 0;
}
.item-price-wrapper,
.item-price-wrapper * {
  font-size: var(--font-pos_1);
  font-family: var(--font-family-pos_1);
  letter-spacing: var(--letter-spacing-pos_1);
  line-height: var(--line-height-pos_1);
}
.item-price-wrapper b {
  font-size: var(--font-pos_1-bold);
  font-family: var(--font-family-pos_1-bold);
  letter-spacing: var(--letter-spacing-pos_1-bold);
  line-height: var(--line-height-pos_1-bold);
}
.classics-description-block-2 * {
  padding: 2px 0;
}

.classics-description-block-2 {
  padding: 20px 10px 20px;
  position: relative;
  visibility: visible;
}

.classics-description-block-2.hidden {
  display: block;
  visibility: hidden;
  position: absolute;
}

.single-object-image img {
  width: 100%;
}

.single-object-image {
  margin-bottom: 30px;
}

.single-object-description > *,
.single-object-info {
  display: flex;
  flex-direction: column;
}

.single-object-info {
  padding-bottom: 10rem;
}

.single-object-wrapper {
  padding-top: 10px;
}

.single-object-info.desktop,
.follow-buttons-object.desktop {
  display: none;
}

.single-object-name {
  position: absolute;
  top: 0;
}

.product-logo {
  padding: 1rem 0;
  margin: 4rem 0;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  width: 100%;
  max-height: 10rem;
  object-fit: contain;
  cursor: pointer;
}

.single-product-modal.single-product-actions-active {
  overflow-y: hidden;
}

/* .gallery-image-wrapper img{
  display: none;
} */

.image-placeholder {
  display: flex;
  background-image: url(../images/loading_image_placeholder.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  background-size: contain;
  background-position: center;
}

.related-objects {
  display: flex;
  flex-direction: column;
  gap: 75px;
  grid-column: span 2;
}

.related-objects img {
  width: 100%;
}

.thumbnail-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
}

.thumbnail-images a {
  display: block;
}

.filter-stats:not(.filter-stats-hidden) {
  height: 45px;
}

.filter-stats-text {
  font-size: var(--font-small) !important;
  font-family: var(--font-family-small) !important;
  letter-spacing: var(--letter-spacing-small) !important;
  line-height: var(--line-height-smaller) !important;
  padding: 10px 25px 15px;
  display: block;
}
.ais-Stats-text.designers-title.filter-stats-text{
  padding: 0;
}

.filter-stats-hidden .ais-Stats {
  display: none;
}

.designer-thumbnails {
  display: flex;
  flex-direction: row;
}

.designer-thumbnails > div {
  width: 25%;
}

.designer-thumbnails img {
  width: 100%;
  height: 100%;
}

.related-designer-text {
  margin-bottom: 4rem;
}

.manufacturer-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(100px, auto);
  gap: 40px;
}

.manufacturer-thumbnails img {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  cursor: pointer;
  max-width: 100%;
  max-height: 100%;
}

.related-designer-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0 2px 2px;
}

.related-designer-section .designer-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 5rem;
}

.wrapper-with-overlay h1 {
  font-size: 34px;
  text-align: center;
}

.related-manufacturer-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  cursor: pointer;
}

.related-designer > img {
  width: 100%;
  cursor: pointer;
}

.related-designer-section .designer-image-wrapper > div:not(.designer-thumbnails) img,
.related-designer-section .designer-image-wrapper .image-placeholder {
  height: calc((50vw - 3px));
}

.related-designer-section .designer-thumbnails {
  height: calc(4 / 3 * calc((50vw - 3px) / 4));
}

.related-designer-section .designer-name {
  margin-bottom: 2rem;
  word-break: break-word;
  padding-left: 10px;
}

.related-designer {
  display: flex;
}
.designer-image-wrapper > div > span {
  position: absolute;
  bottom: 4px;
  left: 5px;
  color: var(--white-color);
}
.related-items-header {
  font-family: primary-light;
  padding: 0 2.5rem;
}

.biography-preview {
  white-space: pre-line;
}

.related-items-container {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  background-color: rgba(217, 217, 217, 0.15);
  margin-bottom: 25px;
}

.related-items-main-wrapper {
  display: none;
}

.request-information-wrapper.auth-wrapper {
  margin: 25px 0;
  padding: 25px 25px 50px;
  background-color: var(--primary-color);
  height: fit-content;
}

.request-information-title {
  color: var(--white-color);
  margin-bottom: 9rem;
  max-width: 25vw;
}

.request-information-form .fields-wrapper {
  margin-top: 6rem;
  margin-bottom: 1rem;
}

.request-information-form input,
.request-information-form .dropdown-value,
.request-information-form textarea {
  font-size: 18px !important;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 2.5rem;
  font-family: primary-light;
  resize: none;
}

.request-information-form textarea::placeholder,
.request-information-form input::placeholder,
.request-information-form .dropdown-value p,
.request-information-form .dropdown-options li {
  color: #fff !important;
  font-size: 18px !important;
}

.request-information-form textarea {
  border: 1px solid;
}

.form-label {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.inquire-message-box{
  width: 480px !important;
}

.request-information-form .form-label {
  color: var(--white-color) !important;
}

.request-information-form .dropdown-options {
  max-height: calc((18px + 1.4rem) * 5) !important;
}

.request-information-form .dropdown-value svg {
  fill: #fff;
}

.request-information-form .filter-checkbox input {
  width: 2rem;
  margin-bottom: 0;
}

.request-information-form .filter-checkbox label,
.request-information-form .filter-checkbox label a,
.request-information-subtitle {
  color: var(--white-color);
}

.request-information-form .filter-checkbox label a {
  text-decoration: underline;
}

.request-information-subtitle {
  margin-bottom: 5px;
  display: block;
}

.inquiry-brand-logo {
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  overflow: hidden; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  background-color: var(--white-color); 
  padding: 5px;
}

.inquire-brand-letter {
  font-size: 24px;
  font-family: primary-semi-bold;
  color: var(--primary-color);
}

.inquiry-brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 86px;
  margin-bottom: 38px;
}

.request-information-form .fields-wrapper button {
  grid-row: 1/3;
  grid-column: 2/3;
}

.request-information-form [type='checkbox']:checked + label:before {
  border: 2px solid #fff;
}

.request-information-form [type='checkbox']:checked + label:after {
  background-color: #fff;
}

.actions-modal-wrapper {
  position: fixed;
  left: 0;
  top: var(--header-height);
  z-index: 10001;
  padding: 0 25px;
}

.actions-modal-wrapper > div:not(.actions-images-wrapper) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.actions-modal-wrapper > div:not(.actions-images-wrapper).actions-content-wrapper-bookmarks {
  grid-template-columns: 1fr;
}
.actions-modal-wrapper img {
  display: block !important;
  max-height: 100%;
  width: 100% !important;
  object-fit: contain !important;
}

.actions-modal-wrapper::after {
  content: '';
  background-color: rgba(26, 26, 26, 0.95);
  position: fixed;
  height: 100dvh;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}

.actions-content {
  max-height: calc(100dvh - var(--header-height) - 25px);
  display: flex;
  flex-direction: column;
}

.actions-title {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.close-action-modal {
  margin-bottom: 3rem;
}

.actions-logo,
.request-information-logo,
.designfavs-logo-wrapper.actions-designfavs-logo {
  position: fixed !important;
  left: 25px;
  top: 30px;
}
.request-information-modal.hidden {
  visibility: hidden;
}
.request-information-modal.auth-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.95);
  z-index: 10;
  padding-top: var(--header-height) !important;
}

.request-information-modal .request-information-form input::placeholder {
  background-color: transparent;
}

.request-information-modal {
  overflow: auto;
}

.actions-content-wrapper {
  z-index: 5;
  position: relative;
}

.actions-content-wrapper img {
  height: auto !important;
}

.actions-content-wrapper img,
.request-information-modal > div img {
  border: 2px solid var(--white-color);
}

.inquire-response {
  font-size: 18px;
  color: var(--matte-red);
  height: 20px;
}

.designfavs-logo-wrapper {
  display: flex;
  align-items: center;
  height: 5.3rem;
  visibility: hidden;
}

.designfavs-logo-wrapper,
.designfavs-logo-wrapper b {
  font-size: 34px;
  font-family: primary-light;
  color: var(--primary-color);
  letter-spacing: -0.2px;
}

.designfavs-logo-wrapper b {
  font-family: primary-bold;
  letter-spacing: -2px;
  margin-right: 10px;
  visibility: visible;
}

.actions-designfavs-logo *,
.actions-designfavs-logo {
  color: var(--white-color) !important;
}

.row-error.hidden {
  display: block;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  margin-top: 0 !important;
  padding: 0;
}

.row-error {
  pointer-events: all;
  visibility: visible;
  height: auto;
  margin-top: 3px !important;
}

.actions-images-wrapper {
  display: flex;
  align-items: flex-start;
}
.actions-content-wrapper:has(.actions-images-wrapper){
  grid-template-rows: auto 1fr;
  max-height: calc(100dvh - var(--header-height) - 25px);
}
.actions-content-wrapper:has(.actions-images-wrapper) .actions-content{
  max-height: unset

}
.bookmark-pages-wrapper {
  display: flex;
  position: relative;
}

.bookmark-pages-wrapper img {
  height: inherit;
  cursor: pointer;
}

.profile-bookmarks-wrapper {
  display: flex !important;
  padding-top: 10px;
}

.bookmark-icon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: -10px;
  right: 20px;
}

.ais-InfiniteHits-list-catalogs .catalog-content,
.catalogs-row {
  margin-bottom: 20px !important;
}

.ellipse {
  display: none;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50%;
  margin-left: 5px;
}

.ellipse.color-green {
  background: var(--secondary-color);
}

.ellipse.color-red {
  background: var(--matte-red);
}

.popup-wrapper,
.pop-up-wrapper {
  display: none;
}

.popup,
.pop-up {
  display: grid;

  background-color: var(--white-color);
  width: 80%;
  height: 300px;
  left: 0;
  grid-template-rows: 1fr auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 2rem;
}

.popup-wrapper.is-visible,
.pop-up-wrapper.is-visible {
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.popup-actions,
.popup-content,
.pop-up-actions,
.pop-up-content {
  padding: 2rem;
}

.popup-actions button,
.pop-up-actions button {
  border-radius: 25px;
  padding: 0.5rem 4rem !important;
}

#pop-up-cancel {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

#pop-up-approve {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

.edit-profile-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
}
.edit-profile-wrapper form {
  padding-left: 22px;
}

.edit-profile-image-wrapper {
  height: 140px;
  width: 140px;
  border: 1px solid var(--primary-color);
  position: relative;
}
.edit-profile-image-wrapper label {
  font-size: 14px;
  line-height: 1.14;
  font-family: primary-light;
  letter-spacing: -0.3px;
  color: var(--primary-color);
  position: absolute;
  top: 65px;
  left: 24px;
  z-index: 1;
  cursor: pointer;
}
.edit-profile-image-wrapper-has-image {
  border: none;
  cursor: pointer;
}
.edit-profile-image-wrapper-has-image label {
  display: none;
}
.edit-profile-image-wrapper-has-image:hover label {
  display: block;
  color: var(--white-color);
}

.edit-profile-form.auth-wrapper {
  width: 100%;
}

.edit-profile-image img {
  height: 140px;
  width: 140px;
  object-position: center;
  object-fit: cover;
}
.edit-profile-image-wrapper-has-image:hover .edit-profile-image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.77);
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.edit-profile-image {
  width: 140px;
  height: 140px;
}

.form-response {
  font-size: var(--form-inputs);
  font-family: var(--primary-light);
  color: var(--matte-red);
  margin: 1rem 0 2rem 0;
}

.brand-auction-actions > * {
  display: inline-block;
  margin-right: 5px;
}
.brand-auction-actions a {
  font-family: primary-regular !important;
}
.brand-auction-wrapper h2 {
  font-size: 3.6rem;
  margin-bottom: 4rem;
}
.brand-auction-wrapper a,
.brand-auction-wrapper p {
  font-size: 1.8rem;
  font-family: primary-light;
}
.brand-auction-wrapper a:not(.small-btn) {
  margin-bottom: 4rem;
  display: block;
}
.brand-auction-wrapper p {
  margin-bottom: 2rem;
}
.brand-auction-wrapper * {
  color: var(--white-color);
}
.brand-auctions {
  display: grid !important;
  gap: 9rem !important;
  grid-template-columns: unset !important;
  margin-top: 4rem;
}
.follow-buttons-container button.round-button {
  height: 3.2rem;
  width: 3.2rem;
}
.follow-buttons-container button.round-button svg {
  height: 1.5rem;
  width: 1.5rem;
}
.follow-buttons-container button:not(.round-button) {
  height: 3.2rem;
  padding: 0 2.5rem;
}
.follow-buttons-container .row-error {
  position: absolute;
  bottom: -18px;
  text-align: center;
  width: 100%;
}
.register-form > div:not(.form-actions),
.login-form > div:not(.form-actions) {
  width: 100%;
}
.origin-and-official-dealers-button {
  background-color: #ffffff;
}
.origin-and-official-dealers-button {
  color: #000000 !important;
  font-size: var(--button-text);
}
.description-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-segment .description-buttons-wrapper {
  margin-bottom: 18px;
}
.description-buttons-wrapper div {
  padding: 0;
}
.description-buttons-wrapper div:has(button) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.brand-segment-subtitle span {
  word-break: normal !important;
}

.filters-container .ais-RefinementList .ais-RefinementList-searchBox {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: var(--white-color);
  width: 100%;
}
.designcatalogs-pages-wrapper .ais-InfiniteHits-item{
  overflow: auto;
}
.toast-message {
  white-space: break-spaces;
}
.filter-box-main.filter-box.filter-active > button svg {
  transform: scaleY(-1);
}
.filter-box button svg {
  transition: transform 0.3s linear;
}
.pages-grouped-images{
  display: flex;
}
.pill-wrapper{
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px !important;
}
.pill{
  padding:  5px 10px;
  background-color: #eeeeee;
  border-radius: 15px;
  margin: 0 !important;
}
.ais-InfiniteHits-item.ais-InfiniteHits-placeholder .catalog-quick-view-wrapper {
  padding: 0 !important;

}

.catalog-quick-view-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-quick-view-wrapper {
  margin: 0 3rem 1px 1px;
}

.ais-InfiniteHits-list.ais-InfiniteHits-list-catalogs .catalog-quick-view-wrapper {
  margin: 0 3rem 1px 1px;
}
.catalog-quick-view-wrapper .catalog-actions {
  position: static;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  z-index: 3;
  align-items: center;
  top: auto;
  right: auto;
}

.catalog-quick-view-wrapper .catalog-actions {
  position: static;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  z-index: 3;
  align-items: center;
  top: auto;
  right: auto;
}

.catalog-quick-view-wrapper .catalog-actions > span {
  flex: 1;
  margin: 0 !important;
}

.catalog-quick-view-wrapper .catalog-actions.centered {
  justify-content: center;
}

.quickViewBtn {
  display: block !important;

  border-radius: 11px !important;
  margin-top: 2rem !important;

  white-space: pre;
  width: unset !important;

  background-color: #fff;


  border: 1px solid gray !important;
  cursor: pointer;

  font-size: var(--small-btn) !important;
  font-family: primary-regular !important;

  padding: 0 16px !important;
}

@media screen and (max-width: 768px) {
  .search-products-modal.is-visible .ais-SearchBox-input {
    margin-bottom: 9px;
  }

  .ais-InfiniteHits-list-style-gallery {
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 10px), 1fr)) !important;
  }
  .profile-segments-description {
    padding: 50px 20px 0 20px !important;
  }
}

.navbar > .button-wrapper button.expand-modal svg{
  display: none;
}

@media screen and (min-width: 768px) {
  footer {
  padding-top: 180px;
}

  .description-buttons-wrapper div .transparent-background-button {
    margin-top: 0;
  }
  .filter-stats:not(.filter-stats-hidden) {
    position: sticky;
    z-index: 1;
    top: 120px;
  }
  .fss-footer {
    position: absolute;
    bottom: unset;
  }

  .modal-header.header-hidden .navbar-logo,
  .modal-header.header-hidden .user-card--header,
  .modal-header.header-hidden .search-icon-button header.header-hidden .navbar-logo,
  header.header-hidden .user-card--header,
  header.header-hidden .search-icon-button {
    visibility: hidden;
    pointer-events: none;
  }

  .filter-stats-text.header-hidden {
    visibility: hidden;
    pointer-events: none;
  }
  .fss-footer.follow-buttons-sticky {
    position: fixed;
    top: 115px !important;
    margin-top: 0;
  }
  .pagination-wrapper {
    display: none;
  }
  .popup,
  .pop-up {
    width: 500px;
  }
  .follow-buttons-object.desktop {
    position: absolute;
    display: flex;
    left: 25px;
    bottom: 25px;
    padding: 0;
    width: unset;
    height: unset;
    align-items: flex-end;
    height: 4rem;
    z-index: 5;
  }
  .follow-buttons-container.desktop.follow-buttons-sticky {
    position: fixed;
    top: 30px !important;
  }
  .follow-buttons-container button.round-button {
    height: 3.6rem;
    width: 3.6rem;
  }
  .follow-buttons-container button.round-button svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  .follow-buttons-container button:not(.round-button) {
    height: 3.6rem;
    padding: 0 2.5rem;
  }
  .round-button {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  .round-button svg {
    width: 2.3rem;
    height: 2rem;
    fill: #fff;
  }

  .single-product__info-wrapper p,
  .single-product__info-wrapper span {
    width: 100%;
  }

  .related-manufacturer-box {
    width: 17vw;
    height: 17vw;
  }

  .object-additional-title.bold {
    font-size: 2rem;
  }

  .literature-margin {
    margin-right: -12rem;
  }

  .single-object-info.desktop {
    display: block;
    padding-left: 20%;
    padding-bottom: 12rem;
  }

  .single-object-info.mobile,
  .follow-buttons-object.mobile {
    display: none;
  }

  .single-object-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    position: relative;
    padding: 30px;
  }

  .single-object-inner-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .single-object-wrapper > .right .single-object-image:nth-of-type(2n) {
    margin: 0 0 2rem 3rem;
  }

  .single-object-wrapper > .right .single-object-image:nth-of-type(2) {
    margin: 0 0 2rem 6rem;
  }

  .single-object-wrapper > .right .single-object-image:nth-of-type(4n) {
    margin: 2rem;
  }

  .single-object-wrapper > .right .single-object-image:nth-of-type(5n) {
    margin: 2rem 3rem 3rem 0;
  }

  .single-object-wrapper > .left > .single-object-image:nth-of-type(4) {
    margin: 0 3rem 3rem 0;
  }

  .single-object-wrapper .single-object-inner-left > .single-object-left .single-object-image:nth-of-type(1),
  .single-object-wrapper .single-object-inner-left > .single-object-left .single-object-image:nth-of-type(4n) {
    margin: 0 3rem 0 0;
  }

  .single-object-wrapper .single-object-inner-left > .single-object-left .single-object-image:nth-of-type(2n) {
    margin: 3rem 0 3rem 3rem;
  }

  .single-object-wrapper .single-object-inner-left > .single-object-right .single-object-image:nth-of-type(2n),
  .single-object-wrapper .single-object-inner-left > .single-object-right .single-object-image:nth-of-type(7n) {
    margin: 3rem 0 3rem 3rem;
  }

  .single-object-wrapper .single-object-inner-left > .single-object-right .single-object-image:nth-of-type(3n),
  .single-object-wrapper .single-object-inner-left > .single-object-right .single-object-image:nth-of-type(5n) {
    margin: 2rem 3rem 0 0;
  }

  .search-box-wrapper {
    width: calc(100% - 7px);
  }

  .search-box-button {
    padding-bottom: 60px;
  }

  .search-products-modal.is-visible .ais-SearchBox-submitIcon,
  .search-products-modal.is-visible .ais-SearchBox-resetIcon {
    display: block;
  }

  .ais-InfiniteHits-list,
  .profile-products-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-container-list .ais-InfiniteHits-list.wrapped-gallery,
  .gallery-container-list .ais-InfiniteHits-list.wrapped-gallery-big {
    display: flex;
    justify-content: center;
  }

  .thumbnail-images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .toast-link {
    display: flex;
    justify-content: end;
  }
  .toast-message {
    display: flex;
  }
}

.filters .clear-refinements-wrapper,.filters .pages-clear-refinements-wrapper {
  display: none;
  margin-bottom: 15px;
}

.user-card {
  display: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  margin-right: 3rem;
  align-items: center;
  justify-content: space-between;
  right: 60px;
  top: 35px;
  z-index: 11;
  background-color: var(--matte-red);
  color: var(--white-color) !important;
}
.nav .user-card a {
  margin-left: 1.5rem;
  position: relative;
  display: block;
}

.user-card a.active::before {
  height: 1.3rem;
  width: 1.3rem;
  background-color: var(--matte-red);
  content: '';
  position: absolute;
  border-radius: 50%;
  right: -6px;
  top: -2px;
}

.user-card.user-card-designfavs {
  background-color: var(--primary-color);
}

.user-card svg {
  fill: var(--white-color);
  height: 1.7rem;
  width: 1.4rem;
  margin-left: 1rem;
}

.header-actions .user-card {
  display: flex;
  margin: 0;
  position: static;
}

.user-card b,
.user-card p {
  font-size: 14px;
  color: var(--white-color) !important;
}

.user-card p {
  font-family: primary-light;
}

.user-card b {
  font-family: primary-bold;
}

.user-card.user-card-designfavs svg {
  margin-left: 0;
  margin-right: 15px;
}

.user-card.user-card--unlogged {
  background-color: transparent;
  border: 1px solid var(--matte-red) !important;
}

.user-card.user-card--unlogged b,
.user-card.user-card--unlogged p {
  color: var(--matte-red) !important;
}

.user-card.user-card--unlogged svg {
  fill: var(--matte-red) !important;
}

.related-items-mobile-padding {
  padding: 0;
}

.auth-buttons-wrapper {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
}

.auth-buttons-wrapper a {
  margin: 0 !important;
}

.ais-InfiniteHits--empty {
  padding: 10px 25px 15px;
  font-size: 1.3rem;
}

.search-icon-button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-button img {
  height: 15px;
}

.navbar div:nth-child(2) {
  display: flex;
  align-items: center;
}
.InfiniteHits-item--add a {
  height: 100%;
  border: 2px solid var(--primary-color);
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}
.InfiniteHits-item--add svg {
  height: 7rem;
  width: 7rem;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  padding: 2rem;
}
.classics-description-block-2.regular-page-text {
  height: 100px !important;
  min-height: 100px !important;
}
.profile-bookmarks-wrapper.profile-gallery-wrapper {
  grid-template-columns: repeat(4, 1fr) !important;
  display: grid !important;
}
.InfiniteHits-item--placeholder-bookmark.InfiniteHits-item--add {
  grid-column: span 2;
}
.profile-segments-description {
  display: flex;
  flex-direction: column;
}
.profile-segments-description > p:first-of-type {
  margin: 1rem 0 4rem;
}
.profile-segments-description * {
  letter-spacing: -1px;
  font-family: primary-light;
}
.profile-segments-description b {
  font-family: primary-bold;
}

.item-production {
  padding: 2px 8px 2px 0;
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 991px) {
  .navbar-logo svg,
  .actions-logo,
  .request-information-logo {
    width: 194px !important;
  }
}

@media screen and (min-width: 992px) {
  :root {
    --large-spacing: 5rem;
    --navigation-subtitle: 2rem;
    --navigation-main-text: 4rem;
    --navigation-additional-text: 2.4rem;
    --button-text: 2.2rem;
    --medium-button-text: 1.8rem;
    --form-inputs: 2rem;
    --object-title: 4.5rem;
    --object-medium-text: 1.6rem;
    --object-small-text: 1.2rem;
    --object-descripion: 1.5rem;
    --object-additional-title: 1.7rem;
    --object-large-title: 12rem;
    --def-spacing: 2rem;
    --object-addtional-description: 1.3rem;
    --designers-name: 4.4rem;
    --logo-height: 4rem;
    --logo-width: 20rem;
  }
  .navbar > .button-wrapper button.expand-modal svg{
    display: block;
  }
  .designcatalogs-pages-wrapper .ais-InfiniteHits-item{
    overflow: hidden;
  }
  .item-production {
    padding: 2px 0;
  }
  .single-product-modal {
    padding-bottom: 0;
  }
  .header-actions .link-button[href='/logout'] {
    position: absolute;
    right: 3rem;
  }
  .register-form .form-actions,
  .login-form .form-actions,
  .reset-form .form-actions {
    width: unset;
    margin: 0;
  }

  .edit-profile-form.auth-wrapper {
    padding: 3rem 9rem 5rem 5rem !important;
  }
  .edit-profile-wrapper {
    flex-direction: row;
  }
  .edit-profile-image-wrapper {
    margin-top: 35px;
  }

  .InfiniteHits-item--add svg {
    height: 10rem;
    width: 10rem;

    padding: 3rem;
  }
  .gallery-image--without-bg .bg-placeholder,
  .profile-projects-wrapper .wrapper-with-overlay {
    height: 210px !important;
  }

  .InfiniteHits-item--placeholder a,
  .InfiniteHits-item--placeholder-bookmark a {
    height: 400px !important;
  }
  .InfiniteHits-item--placeholder-bookmark:nth-child(2) a {
    height: 300px !important;
  }
  .InfiniteHits-item--placeholder-catalog a {
    height: 170px !important;
  }
  .InfiniteHits-item--add .classics-description-block-2 {
    height: 100px !important;
  }
  footer {
    display: grid;
    grid-template-areas:
      'links links'
      'social footerText';
    gap: 8rem;
    padding-top: 220px;
  }
  footer .footer-links {
    grid-area: links;
  }
  footer .footer-social {
    grid-area: social;
    padding: 0;
    justify-content: flex-start;
  }
  footer .footer-text {
    grid-area: footerText;
    text-align: end;
    display: flex;
    flex-direction: column;
  }

  .content.active .fss-footer {
    display: none;
  }

  .content .fss-footer {
    display: block;
  }

  .request-information-form .fields-wrapper button {
    margin-left: 25px;
  }

  .ais-InfiniteHits-list-catalogs .catalog-content,
  .catalogs-row {
    margin-bottom: 50px !important;
  }

  .auth-buttons-wrapper {
    grid-template-columns: 1fr auto;
  }

  .actions-images-wrapper {
    display: flex;
    align-items: flex-start;
  }
  .actions-content-wrapper:has(.actions-images-wrapper){
    grid-template-rows:unset;
    max-height: unset;

  
  }

  .actions-content-wrapper:has(.actions-images-wrapper) .actions-content{
    max-height:  calc(100dvh - var(--header-height) - 25px)
  
  }
  .actions-images-wrapper img {
    border: none !important;
    box-sizing: content-box;
    border-top: 2px solid var(--white-color) !important;
    border-bottom: 2px solid var(--white-color) !important;
  }

  .actions-images-wrapper img:last-of-type {
    border-right: 2px solid var(--white-color) !important;
  }

  .actions-images-wrapper img:first-of-type {
    border-left: 2px solid var(--white-color) !important;
  }

  .header-actions .user-card {
    display: none;
  }

  .designfavs-logo-wrapper {
    visibility: visible;
  }

  .request-information-form .fields-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 0;
  }

  .request-information-form .fields-wrapper * {
    margin-bottom: 0;
  }

  .actions-modal .actions-content > div:not(.close-action-modal) > div {
    margin-right: 20px;
  }

  .request-information-modal > div img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
  }

  .request-information-modal > div {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
  }

  .related-designer-text {
    margin-bottom: 7rem;
  }

  .request-information-modal.auth-wrapper {
    padding: var(--header-height) 25% 25px 25% !important;
  }

  .actions-modal-wrapper--double-images.request-information-modal.auth-wrapper {
    padding: var(--header-height) 25px 0 !important;
  }

  .request-information-wrapper.auth-wrapper {
    margin: 5rem;
    padding: 5rem 5rem 8rem !important;
  }

  .related-items-container .title-maufacturer,
  .related-items-container .title-maufacturer > * {
    width: 100%;
  }

  .related-items-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 0 2.5rem;
    margin-bottom: 7rem;
  }

  .related-items-container {
    padding: 2.5rem !important;
    margin: 0;
  }

  .related-items-main-wrapper > div:not(:first-of-type) {
    margin-top: 20rem;
  }

  .related-items-designers-wrapper {
    grid-column: 2/3;
  }

  .close-action-modal {
    margin-bottom: 5rem;
  }

  .actions-modal-wrapper {
    padding: 0 25%;
  }

  .actions-modal-wrapper--double-images {
    padding: 0 25px;
  }

  .actions-modal-wrapper--double-images > div:not(.actions-images-wrapper) {
    grid-template-columns: auto auto !important;
    justify-content: center;
  }

  .actions-modal-wrapper--double-images img {
    width: 240px !important;
  }

  .actions-modal-wrapper--4-images img {
    width: 190px !important;
  }

  .actions-modal-wrapper--3-images img {
    width: 230px !important;
  }

  .actions-modal-wrapper--1-images img {
    width: 295px !important;
  }

  .single-object-wrapper .user-projects-modal {
    height: calc(100vh - 125px);
  }

  .transparent-btn:hover,
  .transparent-btn.center-button:hover,
  .transparent-btn.round-button:hover {
    background-color: var(--matte-red) !important;
    color: #fff !important;
  }

  .tertiary-btn.transparent-btn:hover {
    background-color: var(--matte-red) !important;
  }

  .transparent-btn:hover svg,
  .transparent-btn.center-button:hover svg {
    fill: #fff !important;
    background-color: var(--matte-red);
  }

  .related-designer-section .designer-name {
    padding: 0;
  }

  .related-objects {
    gap: 75px;
    padding: 0 0 100px 0;
    margin: 0 25px;
  }

  .related-items-header {
    padding: 0;
  }

  .related-designer-section .designer-tile {
    margin-bottom: 0;
  }

  .literature-margin {
    margin-right: -18rem;
  }

  .related-designer-section .designer-image-wrapper > div:not(.designer-thumbnails) img,
  .related-designer-section .designer-image-wrapper .image-placeholder {
    height: calc((50vw - 9.5rem - 40px) / 2);
  }

  .related-designer-section .designer-thumbnails {
    height: calc(4 / 3 * calc(calc((50vw - 9.5rem - 40px) / 2) / 4));
  }

  .related-manufacturer-box {
    height: calc((50vw - 9.5rem - 40px) / 2);
    width: calc((50vw - 9.5rem - 40px) / 2);
  }

  .related-designer-section {
    gap: 40px;
  }

  .title-maufacturer {
    justify-content: start !important;
    display: flex;
  }

  .line-separator {
    border: 1px solid #000000;
    width: 700px;
    display: block;
    margin-left: 5rem;
    margin-top: -160px;
    margin-bottom: 100px;
  }

  .object-padding {
    padding-top: 60px !important;
  }

  .designer-wrapper-padding {
    padding: 130px 0 130px 30px;
  }

  .object-description-title {
    font-weight: 300;
    font-size: 64px;
    line-height: 65px;
    letter-spacing: -0.3px;
  }

  .font-paragraph {
    font-weight: 300;
    font-size: 2rem;
    line-height: 21px;
    letter-spacing: -0.3px;
  }

  .object-content {
    font-size: 2rem;
  }

  .designer-tile {
    word-wrap: break-word;
  }

  .single-product__info-wrapper-additional:not(:last-of-type) {
    margin-bottom: 6rem;
  }

  .single-product__info-wrapper .font-h2 {
    margin-bottom: 4rem;
  }

  .single-product__info-wrapper.desktop {
    display: block;
  }

  .single-product__info-wrapper-actions {
    margin: 4rem 0 0;
  }

  .single-object-description {
    padding: 12rem 6rem 12rem 5rem;
  }

  .single-product__info-wrapper-actions {
    align-items: flex-start;
  }

  .product-logo {
    max-height: 15rem;
  }

  .desktop.single-object-image {
    display: block;
  }

  .mobile.single-object-image {
    display: none;
  }

  .classics-description-block-2 {
    padding: 20px 10px 0;
  }

  .toast-wrapper svg {
    height: 2rem;
    width: 2rem;
  }

  .footer-icons-container {
    align-items: center;
  }

  .copyright-container {
    justify-content: center;
  }

  .footer-pages {
    display: flex;
    justify-content: space-around;
  }

  .filter-slider .search-refinment {
    display: none;
  }

  .search-refinment > span span {
    font-size: 12px !important;
  }

  .single-catalog-actions .icon-btn {
    height: 3.6rem;
    width: 3.6rem;
  }

  .single-catalog-actions .icon-btn svg {
    height: 1.2rem;
    width: 1.2rem;
  }

  .sticky-filter {
    position: sticky;
    background-color: #fff;
    top: -1px;
    z-index: 6;
  }

  .content.active .sticky-filter-slider {
    top: 80px;
  }

  .catalog-pages-slider {
    grid-auto-columns: 100%;
  }

  .catalog-pages-slider.catalog-double-page {
    grid-auto-columns: 50%;
  }

  .catalog-chapters {
    padding: 3rem 2.5rem;
  }

  .catalog-chapters.desktop {
    display: none;
  }

  .catalog-page-preview {
    display: block;
  }

  .single-catalog-actions {
    justify-content: space-between;
    width: 100%;
    margin-right: 0;
  }

  .single-catalog-actions .mobile {
    display: none;
  }

  .single-catalog-actions .desktop {
    display: flex;
  }

  .catalog-cover-preview .catalog-description {
    display: none;
  }

  .catalog-pages-slider img,
  .single-catalog-wrapper .catalog-cover {
    width: 100% !important;
    height: auto;
  }

  .catalog-cover-preview,
  .catalog-pages-wrapper {
    padding: 25px;
  }

  .catalog-pages-wrapper .small-text {
    display: none;
  }

  .catalog-page-preview .wrapper-with-overlay:not(.catalog-multi-page) {
    margin: 0;
  }

  .single-catalog-preview {
    width: 350px;
  }

  .single-catalog-preview-wrapper {
    height: calc(100% - 162px);
  }

  .catalog-description p {
    font-size: 2.1rem !important;
    font-family: primary-bold;
  }

  .btn-description {
    margin-top: 1rem !important;
  }

  .auth-resend u {
    display: flex;
  }

  .single-product__info-wrapper {
    margin-bottom: 10px;
  }

  .single-product__name {
    font-size: 2.4rem;
  }

  .center-button {
    border-radius: 30px;
    height: 4.2rem;
    padding: 0 2rem;
  }

  .auth-response .counter u {
    display: inline;
  }

  .form-actions {
    position: absolute;
    bottom: 5rem;
    right: 9rem;
    justify-self: flex-end;
    align-self: flex-end;
    margin-top: 8rem;
  }
  .register-form .form-actions {
    position: static;
  }
  .auth-wrapper .title {
    margin-bottom: 8rem;
  }

  .search-products-top .search-products-field .ais-SearchBox .ais-SearchBox-form .ais-SearchBox-input,
  .search-products-top .search-historic-catalogs-field .ais-SearchBox .ais-SearchBox-form .ais-SearchBox-input,
  .search-products-top .search-auction-catalogs-field .ais-SearchBox .ais-SearchBox-form .ais-SearchBox-input {
    width: 100% !important;
  }

  .ais-SearchBox-input,
  .register-form > div:not(.form-actions),
  .login-form > div:not(.form-actions) {
    width: 100%;
  }

  .popular-searches-box {
    padding-top: 68px;
  }

  .search-box-wrapper,
  .auth-wrapper {
    padding: 3rem 9rem 5rem !important;
  }

  .search-products-top {
    flex-direction: row;
  }

  .slider-x-span {
    font-size: 1.2rem;
  }

  .fss-footer-button {
    margin: 10px 10px 10px 25px;
  }

  .user-card {
    display: flex;
  }

  .user-actions {
    display: flex;
    margin-left: 2rem;
  }

  .navbar > div:last-of-type {
    display: flex;
    align-items: center;
  }

  .filter-box span,
  .filter-title {
    font-size: 1.7rem;
  }

  .gallery-container-list .ais-InfiniteHits-list,
  .profile-products-wrapper {
    grid-template-columns: repeat(5, 1fr);
    margin: 0 25px 25px;
    row-gap: 50px;
    column-gap: 25px;
  }

  .gallery-container-list .ais-InfiniteHits-list.big-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .content.active .gallery-container-list .ais-InfiniteHits-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .content.active .gallery-container-list .ais-InfiniteHits-list.big-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters .current-refinements {
    display: none;
  }

  /* .filters .clear-refinements-wrapper{
    display: block;
  } */
  .filters .navbar {
    width: 100%;
    display: grid;
    justify-content: unset;
    padding-top: 30px !important;
  }

  .filters .navbar > div:first-of-type {
    padding-bottom: 40px !important;
  }

  .primary-links li a {
    line-height: 1.2;
  }

  .secondary-button,
  .transparent-background-button {
    width: auto;
    padding: 1.5rem 4rem;
    border-radius: 5rem;
  }

  .navbar-links ul {
    padding: 3rem 9rem 3rem;
    height: calc(100vh - var(--header-height));
  }

  .secondary-links {
    margin-top: 0;
    flex: unset;
  }

  .primary-links {
    flex: 1;
  }

  .header-actions .auth-buttons-wrapper {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .sign-out-button {
    display: flex;
  }

  .header-actions .sign-out-link-button {
    display: none;
  }

  .header-actions {
    align-items: center;
    width: 100%;
  }

  .navbar-links ul {
    flex-direction: row;
    justify-content: space-between;
  }

  .current-refinements-wrapper {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 6;
  }

  .biography-image-container img {
    width: auto;
    height: 40rem;
    object-fit: cover;
  }

  .biography-wrapper .follow-buttons-container {
    width: 50%;
    margin: auto;
  }

  .biography-wrapper {
    padding: var(--spacing) 25%;
  }

  .content .filter-placeholder {
    width: 25px;
    position: fixed;
    left: 0;
    top: 96px;
    height: 100%;
    z-index: 5;
    display: block;
  }



  .filter-box.is-active button svg,.filter-box-main.filter-box.filter-active > button svg:not(.ais-SearchBox-submitIcon) {
    transform: scaleY(-1);
  }

  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: #fff;
  }

  *::-webkit-scrollbar-thumb {
    background: var(--primary-color);
  }

  .filters .filters-options-wrapper::-webkit-scrollbar {
    width: 0;
  }

  .filters .filters-options-wrapper {
  }

  .filter-list-desktop {
    position: relative;
  }

  .filter-list-desktop > .ais-RefinementList,
  .filter-list-desktop > .ais-Menu {
    max-height: 300px;
    overflow: auto;
  }

  .filter-list-desktop > .ais-RefinementList.filter-searchable,
  .filter-list-desktop > .ais-Menu.ais-RefinementList.filter-searchable {
    margin-top: 7rem;
  }



  .filters .filter-box {
    margin-bottom: 0;
  }

  .transparent-background-button {
    margin-top: 15px;
  }

  .search-box-wrapper,
  .search-wrapper {
    margin-bottom: 0;
  }

  .filters-options-wrapper {
    padding-bottom: 15px;
  }

  .mobile-only {
    display: none;
  }

  .filters > div:not(.main-filter) {
    display: none;
  }

  .filter-box {
    flex-direction: column;
  }

  .main-filter .filter-list-desktop.filter-active {
    display: block;
    margin: 15px 0 18px;
    width: 100%;
    padding-right: 25px;
  }

  .ais-RefinementList-item:not(:last-of-type) .filter-checkbox,
  .ais-Menu-item:not(:last-of-type) .filter-checkbox,
  .filter-radio:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .ais-RefinementList-item:last-of-type .filter-checkbox,
  .ais-Menu-item:last-of-type .filter-checkbox,
  .filter-radio:last-of-type {
    margin-bottom: 0;
  }

  .navigation {
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100%;
    bottom: 0;
    transition: right 1s ease;
    z-index: 5;
  }

  .navigation.active {
    right: 0;
  }

  .filters {
    position: fixed;
    left: calc(var(--filter-width) * -1);
    width: var(--filter-width);
    height: 100%;
    bottom: 0;
    z-index: 5;
  }

  .filters.animated {
    transition: left 1s ease;
  }

  /* .content:not(.active) + .filters.active {
    box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.3);
  } */
  .content:not(.active) + .filters.active > .main-filter {
    box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.3);
  }

  .filters .navbar {
    padding: 10px 30px 5px 25px;
  }

  .filters.active,
  .filters.active.single-catalog {
    left: 0;
  }

  .content {
    margin-left: 0;
  }

  .content.animated {
    transition: margin-left 1s ease;
  }

  .content.active {
    margin-left: var(--filter-width);
  }
  body:has(.single-catalog.content.active) footer{
    width: calc(100% - 500px);
    margin-left: 500px;
  }
  .single-catalog.content.active {
    margin-left: 500px;
  }

  .single-catalog.filters {
    width: 500px;
    left: -500px;
  }

  .content:not(.active) .wrapped-gallery.wrapper-gallery-with-spacing {
    padding: 0 9.5%;
  }

  .filter-option-container,
  .filters-container,
  .availability-filter-modal-container,
  .filter-product-category-container,
  .filter-product-super-category-container,
  .filter-decade-container,
  .filter-item-source-container,
  .filter-item-location-container {
    width: 100%;
    left: unset;
    right: 0;
    position: absolute;
  }

  .main-filter .button-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }

  .main-filter .expand-modal {
    transition: transform 0.3s linear;
    display: flex;
  }
  .main-filter .expand-modal.is-rotated {
    transform: scaleX(-1);
  }

  .main-filter .expand-modal svg {
    height: 3rem !important;
    width: 3rem !important;
  }

  .single-catalog.filters .single-catalog-preview-wrapper {
    flex: 1;
  }
  .ais-InfiniteHits-list-catalogs-placeholder.profile-gallery-wrapper {
    grid-template-columns: 1fr 1fr auto 1fr !important;
  }
  .profile-bookmarks-wrapper.profile-gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    display: grid !important;
  }
  .ais-InfiniteHits-list-catalogs-placeholder.profile-gallery-wrapper .InfiniteHits-item--placeholder:nth-child(3) {
    width: 25vw;
    padding-right: 3vw;
  }

  .menu-position {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .thumbnail-images-wrapper {
    gap: 40px 30px;
  }

  .follow-buttons-container .row-error {
    text-align: end;
  }
  
  .navbar-logo svg,
  .actions-logo,
  .request-information-logo {
    width: 285px !important;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --designers-name: 5rem;
  }
  .single-object-description {
    padding: 12rem 12rem 12rem 5rem;
  }
  .request-information-wrapper.auth-wrapper {
    margin: 10rem;
    padding: 5rem 5rem 8rem !important;
  }
  .secondary-links {
    margin-left: 10px;
  }
  footer{
    padding-top: 250px;
  }
}

@media screen and (min-width: 1240px) {
  :root {
    --form-inputs: 2.4rem;
    --navigation-subtitle: 3rem;
    --navigation-main-text: 6rem;
    --navigation-additional-text: 2.8rem;
    --object-large-title: 14rem;
  }

  .catalog-pagination,
  .pagination {
    height: 10rem;
  }

  .catalog-pagination svg,
  .pagination svg {
    height: 10rem;
    width: 10rem;
  }
}
@media screen and (min-width: 1440px) {
  .secondary-links {
    margin-left: 0;
  }
}
@media screen and (min-width: 1500px) {
  :root {
    --large-spacing: 10rem;
    --button-text: 2.6rem;
    --medium-button-text: 2.2rem;
    --form-inputs: 3.6rem;
    --object-title: 6.4rem;
    --object-medium-text: 1.8rem;
    --object-small-text: 1.2rem;
    --object-descripion: 1.6rem;
    --object-additional-title: 1.8rem;
    --object-addtional-description: 1.4rem;
    --object-large-title: 17rem;
    --def-spacing: 3rem;
    --designers-name: 6.4rem;
    --small-button-text: 1.4rem;
  }
   footer{
    padding-top: 300px;
  }
  .gallery-image--without-bg .bg-placeholder,
  .profile-projects-wrapper .wrapper-with-overlay {
    height: 230px !important;
  }

  .ais-InfiniteHits-list-catalogs .catalog-content,
  .catalogs-row {
    margin-bottom: 110px !important;
  }

  .actions-modal-wrapper--double-images img,
  .actions-modal-wrapper--4-images img,
  .actions-modal-wrapper--4-images img {
    width: 240px !important;
  }

  .actions-modal-wrapper > div:not(.actions-images-wrapper),
  .request-information-modal > div {
    grid-template-columns: 295px 1fr;
  }

  .request-information-wrapper.auth-wrapper {
    margin: 12rem;
  }

  .close-action-modal {
    margin-bottom: 6rem;
  }

  .related-manufacturer-box {
    width: 280px;
    height: 280px;
  }

  .related-items-container {
    padding: 5rem !important;
  }

  .related-items-main-wrapper > div:not(:first-of-type) {
    margin-top: 35rem;
  }

  .related-items-main-wrapper {
    gap: 5rem;
    padding: 0 5rem;
    margin-bottom: 7rem;
  }

  .related-designer-section .designer-image-wrapper > div:not(.designer-thumbnails) img,
  .related-designer-section .designer-image-wrapper .image-placeholder {
    height: calc((50vw - 18.5rem - 5rem) / 2);
  }

  .related-manufacturer-box {
    height: calc((50vw - 18.5rem - 5rem) / 2);
    width: calc((50vw - 18.5rem - 5rem) / 2);
  }

  .related-designer-section .designer-thumbnails {
    height: calc(4 / 3 * calc(calc((50vw - 18.5rem - 5.7rem) / 2) / 4));
  }

  .related-designer-section {
    gap: 8rem 5.7rem;
  }

  .catalog-slider-preview {
    display: grid;
    grid-template-columns: repeat(5, auto);
  }

  .gallery-container-list .ais-InfiniteHits-list,
  .profile-products-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }

  /* .gallery-container-list .ais-InfiniteHits-list.big-gallery {
    grid-template-columns: repeat(4, 1fr);
  } */

  .navbar-links ul {
    padding: 5rem 9rem 5rem;
  }

  .secondary-button,
  .transparent-background-button {
    width: auto;
    padding: 2rem 6rem;
    border-radius: 5rem;
  }
  .follow-buttons-container button.round-button {
    height: 4.2rem;
    width: 4.2rem;
  }
  .follow-buttons-container button.round-button svg {
    height: 2rem;
    width: 2rem;
  }
  .follow-buttons-container button:not(.round-button) {
    height: 4.2rem;
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 1629px) {
  .gallery-image--without-bg .bg-placeholder,
  .profile-projects-wrapper .wrapper-with-overlay,
  .InfiniteHits-item--placeholder-catalog a {
    height: 250px !important;
  }
  .InfiniteHits-item--placeholder a,
  .InfiniteHits-item--placeholder-bookmark a {
    height: 450px !important;
  }
  .InfiniteHits-item--placeholder-bookmark:nth-child(2) a {
    margin: 50px 10% 0 20%;
    height: 350px !important;
  }
  .InfiniteHits-item--placeholder-bookmark:nth-child(3) a {
    margin-right: 15%;
  }
}
@media screen and (min-width: 1670px) {
  :root {
    --navigation-subtitle: 4.5rem;
    --navigation-main-text: 9rem;
    --navigation-additional-text: 3.6rem;
    --object-large-title: 20rem;
  }
}

@media screen and (min-width: 1920px) {
  .gallery-container-list .ais-InfiniteHits-list,
  .profile-products-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-container-list .ais-InfiniteHits-list.big-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
  .content.active .gallery-container-list .ais-InfiniteHits-list.big-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .content.active .gallery-container-list .ais-InfiniteHits-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
