@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  /* sizes */
  --size-xxs: 0.563rem; /* ~9px */
  --size-xs: 0.75rem; /* 12px */
  --size-sm: 1rem; /* 16px */
  --size-md: 1.333rem; /* 21.33px */
  --size-lg: 1.777rem; /* 28.44px */
  --size-xl: 2.369rem; /* 37.9px */
  --size-xxl: 3.157rem; /* 50.51px */
  --size-xxxl: 4.209rem; /* 67.34px */
  /* colors */
  --red: #690007; /* color-picked van het logo */
  --white: #ffffff; /* color-picked van het logo */
  --black: #000000; /* color-picked van het logo */
  --grey: #c1c1c1; /* color-picked van het logo */
  /* results page */
  --result-columns-count: 2;
}

:root {
  --font-size-xxs: var(--size-xxs);
  --font-size-xs: var(--size-xs);
  --font-size-sm: var(--size-sm);
  --font-size-md: var(--size-md);
  --font-size-lg: var(--size-lg);
  --font-size-xl: var(--size-xl);
  --font-size-xxl: var(--size-xxl);
  --font-size-xxxl: var(--size-xxxl);
}

body {
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: var(--font-size-xl);
}

h2 {
  font-size: var(--font-size-lg);
}

h3 {
  font-size: var(--font-size-md);
}

h4,
h5,
h6 {
  font-size: var(--font-size-md);
  font-weight: 600;
}

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

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

strong {
  font-weight: 700;
}

.with-arrow {
  padding-left: 1.5rem;
  position: relative;
}
.with-arrow::before {
  content: "→";
  position: absolute;
  color: var(--red);
  left: 0;
}
.with-arrow-animated::before {
  transition: all 0.3s;
}
.with-arrow-animated:hover::before {
  left: 5px;
}

.va-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--red);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.va-markdown {
  max-width: 75ch;
  font-size: var(--font-size-sm);
  line-height: 1.5;
}
.va-markdown img {
  max-width: 100%;
}
.va-markdown p {
  margin-bottom: 1rem;
}
.va-markdown ul,
.va-markdown ol {
  margin: 1em 0;
  padding-left: 40px;
}
.va-markdown ul {
  list-style-type: disc;
}
.va-markdown ul ul,
.va-markdown ul ol {
  margin: 0;
  padding-left: 20px;
}
.va-markdown ol {
  list-style-type: decimal;
}
.va-markdown ol ul,
.va-markdown ol ol {
  margin: 0;
  padding-left: 20px;
}
.va-markdown li {
  margin-bottom: 0.5em;
}
.va-markdown table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: var(--font-size-sm);
}
.va-markdown table th,
.va-markdown table td {
  padding: 0.75rem;
  border: 1px solid var(--grey);
  text-align: left;
}
.va-markdown table th {
  color: var(--red);
  font-weight: bold;
}
.va-markdown table tr:nth-child(even) {
  background-color: var(--grey);
}

.va-form-control {
  margin-bottom: var(--size-sm);
  display: flex;
  justify-content: space-between;
  max-width: 16rem;
  align-items: center;
}
.va-form-control input {
  padding: 0.5rem;
  border: 1px solid var(--grey);
  border-radius: 0.25rem;
}

.va-form-control-textarea {
  margin-bottom: var(--size-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 16rem;
}
.va-form-control-textarea textarea {
  width: calc(100% - 1rem);
  padding: 0.5rem;
  border: 1px solid var(--grey);
  border-radius: 0.25rem;
  resize: vertical;
}

/* Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .catalog-grid {
    padding: 0;
  }
}
.catalog-grid .grid-item {
  background-color: var(--grey);
  display: flex;
  flex-direction: column; /* Allow children to stack vertically */
}
.catalog-grid .grid-item__link {
  display: block;
  width: 100%;
  height: 100%;
}
.catalog-grid .grid-item__image-container {
  background-color: var(--white);
  width: 100%;
  height: 300px;
  position: relative;
}
.catalog-grid .grid-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.catalog-grid .grid-item__copy {
  padding: var(--size-sm);
  font-size: var(--font-size-sm);
  flex-grow: 1; /* Makes this section take the available space in the grid item */
}
.catalog-grid .grid-item__copy__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures it stretches within .grid-item__copy */
}
.catalog-grid .grid-item__copy p {
  margin-bottom: var(--size-sm);
}
.catalog-grid .grid-item__title {
  display: flex;
  justify-content: space-between;
  margin-top: var(--size-sm);
}
.catalog-grid .grid-item__lot {
  color: var(--red);
}
.catalog-grid .grid-item__bid-controls {
  border-top: 1px solid var(--black);
  margin-top: var(--size-sm);
  padding-top: var(--size-sm);
}

/* List */
.catalog-list__item {
  margin-bottom: var(--size-sm);
  padding-left: var(--size-lg);
  color: var(--black);
}
.catalog-list__item a {
  text-decoration: none;
  color: inherit;
  /* color: var(--black); */
}
.catalog-list__item:hover {
  color: var(--red);
}
.catalog-list__item::before {
  transition: all 0.3s;
}
.catalog-list__item:hover::before {
  left: 5px;
}

.detail-page {
  --copy-bar-width: 350px;
  display: flex;
  gap: var(--size-lg);
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .detail-page {
    flex-direction: column;
  }
}
.detail-page__pictures {
  width: calc(100% - var(--copy-bar-width));
}
@media screen and (max-width: 1200px) {
  .detail-page__pictures {
    width: 100%;
  }
}
.detail-page__slider {
  margin-bottom: var(--size-lg);
  min-height: 60vh;
}
.detail-page__slider-image {
  cursor: zoom-in;
}
@media screen and (max-width: 1200px) {
  .detail-page__slider {
    min-height: auto;
  }
}
.detail-page .slider-thumbs {
  display: flex;
  gap: var(--size-sm);
  overflow: auto;
}
.detail-page .slider-thumbs--visible {
  height: 130px;
}
.detail-page .slider__thumb {
  width: 100px;
  height: 100px;
  cursor: pointer;
  flex: 0 0 auto; /* Prevent resizing */
}
.detail-page .slider__thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-page__copy {
  width: var(--copy-bar-width);
  font-size: var(--font-size-sm);
}
@media screen and (max-width: 1200px) {
  .detail-page__copy {
    width: 100%;
  }
}
.detail-page__copy__title {
  font-weight: bold;
  font-size: var(--font-size-md);
  margin-bottom: var(--size-md);
  margin-top: var(--size-md);
  padding-left: 2rem;
}
.detail-page__copy__label {
  font-weight: bold;
}
.detail-page__copy__description p {
  margin-bottom: var(--size-md);
}
.detail-page__bid-controls {
  margin-bottom: var(--size-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-page__page-controls {
  display: flex;
  justify-content: space-between;
}
.detail-page__prev {
  position: relative;
  padding-left: 1em;
  text-decoration: none;
  color: var(--red);
}
.detail-page__prev::before {
  content: "←";
  position: absolute;
  color: var(--red);
  left: 0;
}
.detail-page__next {
  position: relative;
  padding-right: 1em;
  text-decoration: none;
  color: var(--red);
}
.detail-page__next::after {
  content: "→";
  position: absolute;
  color: var(--red);
  right: 0;
}

.signup-panel .va-form-control, .signup-panel .va-form-control-textarea {
  max-width: 20rem;
}

.welcome-panel__close-button {
  margin-top: var(--size-md);
}

.reset-panel__form-control {
  margin-top: var(--size-sm);
}

.unknown-panel__login-button {
  margin-bottom: var(--size-xs);
}

.wrong-panel__login-button {
  margin-bottom: var(--size-xs);
}

.reset-pwd-panel .va-form-control {
  max-width: 25rem;
}

/* Lightbox Container */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}

/* Lightbox Image */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
.prev:hover, .next:hover {
  opacity: 0.7;
}

/* Position Arrows */
.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.close:hover {
  opacity: 0.7;
}

/* Lightbox Active */
.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.results-content {
  max-width: 90ch;
  overflow-x: scroll;
}

.result-chunk {
  margin: var(--size-md) 0;
}

.result-header {
  font-size: var(--size-md);
  background-color: var(--red);
  color: var(--white);
  border-bottom: 1px solid var(--red);
  padding: var(--size-xs);
}

.result-cells {
  columns: var(--result-colums-count);
  column-gap: 0;
  border: 1px solid var(--grey);
}

.result-cell {
  box-sizing: border-box;
  padding: var(--size-xs);
  border: 1px solid var(--grey);
  width: 100%;
}
.result-cell .result-id {
  float: left;
}
.result-cell .result-price {
  float: right;
}
.result-cell::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  .home-slider {
    display: none !important;
  }
}

.mobile-banners {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-banners {
    display: flex;
    flex-direction: column;
    gap: var(--size-sm);
  }
}
.mobile-banners__item {
  position: relative;
  max-width: 100%;
}
.mobile-banners__image {
  max-width: 100%;
  max-height: 100%;
}
.mobile-banners__overlay {
  background: rgba(0, 0, 0, 0.7); /* Black with transparency */
  backdrop-filter: blur(10px); /* Blurriness */
  padding: 20px;
  border-radius: 2px;
  text-align: center;
  max-width: 400px; /* Adjust as needed */
  position: absolute;
  bottom: var(--size-xxxl);
  right: var(--size-xxxl);
  color: var(--white);
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex-grow: 1;
}

body {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5;
}

a {
  color: var(--black);
  cursor: pointer;
  text-decoration: underline;
}

.hidden {
  display: none;
}

.warn {
  background-color: lemonchiffon;
}

/* Top nav */
.top-nav {
  display: flex;
  flex: 1;
  height: var(--size-xxxl);
  justify-content: flex-end;
  align-items: center;
  gap: var(--size-xxxl);
  padding: 0 var(--size-lg);
  background-color: var(--red);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .top-nav {
    position: sticky;
    gap: unset;
    top: 0;
    z-index: 1;
    justify-content: space-between;
  }
}
.top-nav .nav-link {
  color: var(--white);
  text-decoration: none;
}
.top-nav .language-switcher {
  display: flex;
  font-size: var(--font-size-md);
}
@media screen and (max-width: 630px) {
  .top-nav .language-switcher {
    display: none;
  }
}
.top-nav .language-switcher a {
  margin: 0;
  padding: 0;
}
.top-nav .language-switcher a:not(:last-child)::after {
  content: "/";
  color: var(--white);
}
.top-nav .language-switcher a.active {
  color: var(--black);
}
.top-nav__search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  max-width: 100%;
  transition: flex-grow 0.3s;
}
@media screen and (max-width: 768px) {
  .top-nav__search {
    flex-grow: 0;
    justify-content: flex-start;
  }
}
.top-nav__search-input {
  height: var(--size-lg);
  border-radius: 5px;
  padding-left: 7px;
  border: none;
  outline: none;
  transition: flex-grow 0.3s;
  max-width: 440px;
  background-color: var(--white);
}
.top-nav__search-input:focus {
  flex-grow: 1;
}
.top-nav__search-button {
  background-color: var(--white);
  border: none;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
  margin-left: -30px;
  border-radius: 5px;
  width: var(--size-lg);
  height: var(--size-lg);
}
.top-nav__search-button img {
  width: var(--size-lg);
  height: var(--size-lg);
}
.top-nav__buttons {
  display: flex;
  align-items: center;
}
.top-nav__my-bids {
  display: block;
  cursor: pointer;
  width: var(--size-xxxl);
}
.top-nav__my-bids img {
  width: 60px;
}
.top-nav__burger {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-nav__burger {
    display: block;
  }
}

.bread-crumbs {
  width: 100%;
  font-size: var(--font-size-sm);
  border-bottom: 1px solid var(--grey);
  padding-bottom: var(--size-sm);
  margin-bottom: var(--size-lg);
}
.bread-crumbs li {
  display: inline;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .bread-crumbs li {
    display: block;
  }
}
.bread-crumbs a {
  text-decoration: none;
  color: var(--black);
}

.main-container {
  display: flex;
  max-width: 100%;
}

.main-content {
  position: relative;
  padding: var(--size-lg);
  flex: 0 1 auto;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
@media screen and (max-width: 370px) {
  .main-content {
    padding: var(--size-sm);
  }
}

.side-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--size-lg);
  transition: transform 0.3s;
  background: white;
}
.side-navigation__logo {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .side-navigation {
    position: fixed;
    transform: translateX(-120vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow: auto;
    overscroll-behavior: contain;
    width: calc(100% - 2 * var(--size-xxs));
    padding-left: var(--size-xxs);
    padding-right: var(--size-xxs);
    z-index: 5;
  }
  .side-navigation--visible {
    transform: translateX(0);
  }
}
.side-navigation .language-switcher-mobile {
  display: none;
  font-size: var(--font-size-md);
  margin-top: var(--size-sm);
}
@media screen and (max-width: 630px) {
  .side-navigation .language-switcher-mobile {
    display: flex;
  }
}
.side-navigation .language-switcher-mobile a {
  margin: 0;
  padding: 0;
}
.side-navigation .language-switcher-mobile a:not(:last-child)::after {
  content: "/";
  color: var(--black);
}
.side-navigation .language-switcher-mobile a.active {
  color: var(--red);
}
.side-navigation .language-switcher-mobile .nav-link {
  color: var(--black);
  text-decoration: none;
}

.main-nav {
  padding-bottom: var(--size-lg);
}
.main-nav__auction {
  display: block;
  text-transform: uppercase;
  padding: var(--size-xxs);
  background-color: var(--red);
  color: var(--white);
  font-weight: bold;
  margin: var(--size-md) 0;
}
.main-nav__menu {
  position: relative;
  font-size: var(--font-size-sm);
  line-height: var(--size-md);
  padding: var(--size-xxs) 0;
}
.main-nav__menu:first-of-type {
  padding-top: 0;
}
.main-nav__menu a {
  color: var(--black);
  text-decoration: none;
}
.main-nav__menu__section {
  margin-top: var(--size-sm);
}
.main-nav__menu__section:first-child {
  margin-top: 0;
}
.main-nav__menu:not(:last-child) {
  border-bottom: 1px solid var(--red);
}
.main-nav__menu:last-child {
  margin-bottom: var(--size-xxl);
}

/* SLIDER */
.slider {
  display: flex;
  align-items: center;
  max-height: 100%;
  background-color: var(--black);
}
.slider__slide {
  display: flex !important;
  padding: var(--size-xs);
  max-width: 100%;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slider__slide__overlay {
  background: rgba(0, 0, 0, 0.7); /* Black with transparency */
  backdrop-filter: blur(10px); /* Blurriness */
  padding: 20px;
  border-radius: 2px;
  text-align: center;
  max-width: 400px; /* Adjust as needed */
  position: absolute;
  bottom: var(--size-xxxl);
  right: var(--size-xxxl);
  color: var(--white);
}
.slider__image {
  max-width: 100%;
  max-height: 100%;
}

/* #myBiddings {
  display: none;
} */
.footer {
  display: flex;
  padding: var(--size-lg) 0;
  background-color: var(--grey);
  font-size: var(--font-size-sm);
  justify-content: space-between;
}
.footer__item {
  /* TODO: center div, not sure why justify-content: center; doesnt work  */
  padding: 0 var(--size-lg);
  display: flex;
  flex-grow: 1;
}
.footer__item:not(:first-child) {
  border-left: 1px solid var(--red);
}
.footer__click-for-address {
  display: flex;
}
.footer__click-for-address::before {
  content: " ";
  display: inline-block;
  width: var(--size-lg);
  height: var(--size-lg);
  background-color: var(--red);
}
.footer__click-for-address__link {
  color: var(--red);
  text-decoration: none;
  display: inline-block;
  height: var(--size-lg);
  line-height: var(--size-lg);
  display: flex;
}
.footer__click-for-address__link::before {
  content: " ";
  display: inline-block;
  background-image: url("/assets/img/pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--size-lg);
  height: var(--size-lg);
}
@media (max-width: 1000px) {
  .footer {
    display: none;
  }
}

/* Bids overlay */
.my-bids-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.my-bids-overlay--visible {
  display: block;
}

.my-bids-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 90vh;
  overflow: auto;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: var(--size-md);
  z-index: 1001;
  max-width: 1000px;
  width: 80%;
  font-size: var(--font-size-sm);
  overflow-x: auto;
}
@media screen and (max-width: 630px) {
  .my-bids-modal {
    width: calc(100% - 2 * var(--size-md));
  }
}
.my-bids-modal--visible {
  display: block;
}
.my-bids-modal__close {
  position: fixed;
  cursor: pointer;
  top: var(--size-sm);
  right: var(--size-sm);
  width: var(--size-sm);
  height: var(--size-sm);
  content: "";
  background-image: url("/assets/img/close-button.svg");
}
.my-bids-modal__table {
  display: inline-block;
  width: 100%;
}
.my-bids-modal__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.my-bids-modal__list li {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) minmax(200px, 4fr) minmax(160px, 1.5fr);
  gap: 10px;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .my-bids-modal__list li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
}
@media screen and (max-width: 768px) {
  .my-bids-modal__list li.my-bids-modal__list-item__header {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .my-bids-modal__list li.my-bids-modal__list-item__footer {
    flex-direction: row;
  }
}
.my-bids-modal__cell {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .my-bids-modal__cell {
    align-items: baseline;
  }
}
.my-bids-modal__cell_label {
  display: none;
  font-weight: bold;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .my-bids-modal__cell_label {
    display: block;
  }
}
.my-bids-modal__bid__column {
  max-width: 10em;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .my-bids-modal__bid__column {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5em;
    max-width: none;
    width: 100%;
  }
}
.my-bids-modal__bid__control {
  font-size: var(--font-size-md);
  display: inline-block;
  font-weight: bold;
  color: var(--red);
  background-color: var(--white);
  border-color: var(--red);
  border-style: solid;
  border-radius: 1rem;
  cursor: pointer;
  padding: 0;
  width: var(--size-lg);
  height: var(--size-lg);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.my-bids-modal__header {
  font-size: var(--font-size-md);
  margin: var(--size-sm) 0;
}
.my-bids-modal__total-items {
  min-width: 7em;
}
.my-bids-modal__login-button {
  margin-top: var(--size-sm);
  display: block;
  margin-bottom: var(--size-sm);
}
.my-bids-modal p {
  margin-bottom: var(--size-sm);
}
.my-bids-modal__memo-control {
  flex-grow: 1;
  min-height: 5rem;
}
.my-bids-modal__user-info {
  margin-top: var(--size-sm);
  background-color: var(--grey);
  border-radius: 5px;
  padding: var(--size-sm);
}

/*# sourceMappingURL=style.css.map */
