@charset "UTF-8";
/*
  # Kirby Starterkit ya

  This CSS file handles all of the styling in of Kirby’s
  Starterkit. Feel free to tinker around with it and
  adjust it according to your needs.

  ## Color Definitions

  The following colors used in the Starterkit. If you want
  to use this CSS file as a starting point for your own
  project, you can do a simple search & replace to adjust
  the color scheme to your needs.

  - Background:            #fffff8
  - Text:                  #261e66
  - Hovered Links:         #560bed
  - Active Button BG:      #4509be
  - Caption BG in projects
    showcase:              rgba(38, 30, 102, .95)

  - Highlight, Selection,
    Link Underline:        #71efac
  - Tap color
    (touch devices):       rgba(113, 239, 172, .5)
  - Marked Text BG,
    Callout Boxes BG:      #eafded

  - Menu Separator,
    <hr> in text:          #a8a5be
  - Blockquote BG:         #fffffd

  ## Table of Contents

  1 Global Rules & Definitions
  1.1 Font Definitions
  1.2 Reset & Normalization
  1.3 General Typography
  1.4 Images & Figures

  2 Layout Helpers & Reusable Components
  2.1 Kirbytext
  2.2 Button
  2.3 Grid & Layout
  2.4 Pagination
  2.5 Projects Showcase

  3 Site Layout
  3.1 Header
  3.2 Menu
  3.3 Sticky Footer
  3.4 Main Content

  4 Template-specific Components
  4.1 Homepage
  4.2 Blog Article
  4.3 Team
  4.4 Contact

*/
/* =====  1 Global Rules & Definitions  ===================================== */
:root {
  --main: 14px;
  --success-color: green;
  --sidebarWidth: 285px;
  --lineheight-bar: 34px;
  --margin: var(--main);
  --margin-big: 4rem;
  --page-content-h: 0vh;
  --footer-content-h: 0vh;
  --border: 2px ;
}

/* -----  1.1 Font Definitions  --------------------------------------------- */
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat-700.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat-400.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
/* Vesper Libre */
@font-face {
  font-family: "Vesper Libre";
  src: url(../fonts/vesperlibre-400.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Vesper Libre";
  src: url(../fonts/vesperlibre-500.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Vesper Libre";
  src: url(../fonts/vesperlibre-700.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
/* -----  1.2 Reset & Normalization  ---------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-moz-selection {
  background: rgb(0, 0, 0);
  color: white;
}

::selection {
  background: rgba(0, 0, 0, 0.99);
  color: white;
}

::-webkit-scrollbar {
  display: none;
}

/* IMG:not([src]) {opacity:0;} */
/* -----  1.3 General Typography  ------------------------------------------- */
.os-content-glue {
  display: none !important;
}

html {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  overflow-y: hidden;
  overflow-x: hidden;
}

html, body {
  font-family: aa, Helvetica, Arial, sans-serif;
  font-size: var(--main);
  line-height: 18px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.025em;
  word-spacing: -0.01em;
  font-feature-settings: "kern" on, "liga" off, "calt" on;
  -moz-font-feature-settings: "kern" on, "liga" off, "calt" on;
  -webkit-font-feature-settings: "kern" on, "liga" off, "calt" on;
  -ms-font-feature-settings: "kern" on, "liga" off, "calt" on;
  -o-font-feature-settings: "kern" on, "liga" off, "calt" on;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, pre {
  /* Reset font-sizes and normalize margins */
  font-size: inherit;
  line-height: inherit;
  font-style: normal;
  font-weight: normal;
  margin: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}

a:hover, a:focus, a:active {
  color: black;
  text-decoration: none;
  border-bottom: var(--border) solid black;
}

.hometile a.product:hover,
.hometile a.product:focus,
.hometile a.product:active {
  border-bottom: none;
}

i, em {
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "kern" on, "liga" off, "calt" on, "c2sc";
  -moz-font-feature-settings: "kern" on, "liga" off, "calt" on, "c2sc";
  -webkit-font-feature-settings: "kern" on, "liga" off, "calt" on, "c2sc";
  -ms-font-feature-settings: "kern" on, "liga" off, "calt" on, "c2sc";
  -o-font-feature-settings: "kern" on, "liga" off, "calt" on, "c2sc";
}

b, strong {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  border-bottom: var(--border) solid black;
}

.mb-3-4 {
  margin-bottom: 1.5rem !important;
}

/* -----  1.4 Images & Figures  --------------------------------------------- */
img {
  border-style: none;
  width: 100%;
  height: auto;
}

figcaption {
  font-size: 0.75rem;
  line-height: 1.5rem;
}

.page-panel p {
  max-width: 900px;
}

.hide {
  display: none;
}

.hide-large {
  display: none;
}

/* =====  2 Layout Helpers & Reusable Components  =========================== */
/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

/* -----  2.1 Kirbytext  ---------------------------------------------------- */
.item {
  clear: both;
  /* padding-top: 1rem;
  padding-bottom: 1rem; */
}

.sticky {
  border-bottom: 2px solid black !important;
}

.main-toolbar {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: -1px;
  margin-top: 1px;
  height: auto;
  padding-bottom: 2px;
  background-color: white;
  display: block;
  z-index: 9;
  border-bottom: 2px solid white;
}

.toolbar-content {
  display: inline-block;
  margin-top: 1.25rem;
  margin-bottom: -1.25rem;
  margin-left: 0rem;
  margin-right: 4rem;
  padding-left: 4rem;
  padding-right: 1rem;
}

.font-preview {
  padding-left: 4rem;
  padding-right: 4rem;
}
.font-preview span {
  margin-right: 4rem;
}

.font-preview.paragraph-style span {
  margin-right: 0rem;
}

.toolbar-content > div {
  float: left;
  margin-right: 6px;
  position: relative;
}

.toolbar-content > div:last-child {
  margin-right: 0px;
}

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

.variableslidercontainer {
  height: auto;
  min-height: 3.1rem;
  margin-top: calc(1rem + 4em);
  margin-bottom: -1em;
  padding-left: 4rem;
  padding-right: 4rem;
  background: none;
}

.variableslidercontainer div {
  margin-right: 20px;
}

.tooltip {
  letter-spacing: 0.05em;
}

.variable-help {
  padding: var(--border) 10px;
  border-radius: 12px;
  display: inline-block;
  margin: -7px 0px 0px -7px;
}

.toolbar-button {
  transform: translateY(-50%);
  padding: var(--border) 10px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid white;
  background-color: white;
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none;
  /* Internet explorer depuis la version 10 et Edge */
  user-select: none;
  margin-bottom: 0.25rem;
  margin-top: calc(0.1rem + 1px);
}

.toolbar-button-active {
  background-color: black;
  color: white;
  border: 2px solid black;
}

.button-randlist {
  overflow: hidden;
  position: relative;
}
.button-randlist .blend {
  color: white;
  mix-blend-mode: difference;
  padding: 0;
  margin: 0;
}

.toolbar-button-active.button-randlist {
  background-color: white;
  color: black;
  border: 2px solid black;
}

.toolbar-button-mousedown {
  background-color: black !important;
  color: white !important;
  border: 2px solid black;
}

.ot-open {
  border-radius: 6px 6px 0 0;
}

.features-menu {
  position: absolute;
  background-color: black;
  color: white;
  padding: var(--border) 10px;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 3px;
  width: 215px;
  max-height: 200px;
  height: auto;
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0px 6px 6px 6px;
  /* The container */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.features-menu li {
  display: inline-block;
  width: 100%;
}
.features-menu label {
  display: inline;
}
.features-menu .checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.features-menu .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.features-menu .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: black;
  border: 1px solid white;
}
.features-menu .checkbox-container input:checked ~ .checkmark {
  background-color: black;
  border: 1px solid white;
}
.features-menu .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.features-menu .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.features-menu .checkbox-container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 8px;
  height: 10px;
  border: solid white;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
}

.font-tester {
  margin-top: 2rem;
  margin-right: -8rem;
  margin-left: -4rem;
}

.font-tester-content .font-preview {
  font-feature-settings: "kern" on, "liga" off, "calt" off;
}

.product-description {
  margin: 3rem 8rem 3rem 4rem;
}

.product-description p {
  max-width: 900px;
}

p + p {
  margin-top: 1rem;
}

.font-tester-content .paragraph-style {
  white-space: normal;
  width: 100%;
  -moz-column-count: 2;
       column-count: 2;
  padding-bottom: 2rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.font-tester-content .paragraph-style p {
  max-width: 100%;
}

@media (max-width: 1440px) {
  .font-tester-content .paragraph-style {
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media (max-width: 576px) {
  .font-tester-content .paragraph-style p {
    padding-right: 4rem;
  }

  .main-toolbar {
    position: relative;
  }
}
.menu-item {
  line-height: var(--lineheight-bar);
  padding-left: var(--margin);
  padding-right: var(--margin);
}

.nav-end {
  border-top: var(--border) solid black;
  margin-top: calc(-1 * var(--border));
  margin-bottom: 0px;
}

.cart-part1 {
  flex: 0 0 var(--sidebarWidth);
}

.cart-part2 {
  /* -ms-flex: 0 0 70px;
  flex: 0 0 70px; */
  position: absolute;
  right: 0;
  left: auto;
  display: inline-block;
  width: auto;
  background-color: white;
  overflow-y: hidden;
  max-height: var(--lineheight-bar);
}

.cart-part2 .menu-item {
  line-height: var(--lineheight-bar);
  display: block;
  width: auto;
  right: 0;
  position: relative;
  float: left;
}

.snipcart-user-profile.hide {
  display: none !important;
}

/* .menu-item:hover,
.menu-item.active {
  color: white;
  background-color: black;
  cursor: pointer;
  text-decoration: none;
} */
.menu-item a:hover {
  color: inherit;
  text-decoration: none;
}

.link-a {
  display: inline-block;
  width: 100%;
  height: var(--lineheight-bar);
  cursor: pointer;
  text-decoration: none;
}

a.link-a:hover,
.link-page.active a.link-a,
.link-page-f.active a.link-a,
.link-ext.active a.link-a,
.link-filter.active a.link-a,
.filters-item.active a.link-filters,
.filters-item.enter a.link-filters,
.filters-item.filter-active a.link-filters {
  color: white;
  background-color: black;
  text-decoration: none;
  border-bottom: 0;
}

a.link-a:focus {
  color: black;
  background-color: white;
  text-decoration: none;
  border-bottom: 0;
}

.close-page-icon {
  font-family: "poems-i", aa;
  float: right;
  display: none;
}

.link-page.active .close-page-icon,
.link-page-f.active .close-page-icon {
  display: inline-block;
}

header.header {
  height: var(--lineheight-bar);
  overflow: hidden;
}

.info-button {
  display: flex;
  flex: 1;
  background-color: white;
}

.info-button .info {
  display: flex;
  flex: 1;
}

.info-button .link-page,
.info-button .link-ext {
  display: none;
}

.info-button.active .info {
  display: none;
}

.info-button.active .link-page,
.info-button.active .link-ext {
  display: flex;
}

.inner-div {
  display: block;
  width: 100%;
  height: 100%;
}

.inner-inner-div {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  border-top: var(--border) solid black;
  margin-top: calc(-1 * var(--border));
  border-bottom: var(--border) solid black;
  height: auto;
  /* margin-bottom: calc(-1 * var(--border)); */
}

main.main {
  clear: both;
  border-top: var(--border) solid black;
  height: calc(100vh - var(--lineheight-bar) - var(--page-content-h) + var(--border));
  /* height: calc( 100vh - var(--page-content-h) + var(--border) ); */
  /* position: absolute; */
  /* width: width: calc(100% + 2px); */
}

article.page-content {
  height: 0px;
  transition: height 0.3s;
}

article.footer-content {
  height: 0px;
  color: white;
  background-color: black;
  transition: height 0.3s;
  /* position: absolute; */
}

article.footer-content a {
  color: white;
}

article.footer-content a:hover {
  color: white;
  text-decoration: none;
  border-bottom: var(--border) solid white;
}

.product-main {
  background-color: white;
  padding-right: 0;
}

.no-p {
  padding-right: 0;
}

/* .product-main.overflow {
    height: calc( 100% - var(--lineheight-bar) );
    position: relative;
}

@-moz-document url-prefix() {
  .product-main.overflow {
    height: calc(100% - 32px);
    display: block;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
  }
} */
.product-main.overflow {
  display: block;
  /* height: calc(100% - var(--lineheight-bar)); */
  height: calc(100% - var(--lineheight-bar) + 1px);
  margin-top: -1px;
  left: 0;
  top: var(--lineheight-bar);
  position: absolute;
  width: 100%;
}

/* .product-title {
  position: relative;
  height: auto;
} */
.product-title {
  position: absolute;
  width: 100%;
  z-index: 2;
  margin-top: -1px;
}

.product-footer {
  display: block;
}

.footer-nav-ul li {
  display: block;
}

.main-home.overflow {
  position: absolute;
  display: inline-block;
  left: -1px;
  width: calc(100% + var(--border));
  height: calc(100% - var(--page-content-h) - 34px);
  top: 0;
  margin-top: calc(var(--lineheight-bar) + 2px + var(--page-content-h));
  transition: margin-top 0.3s;
}

@-moz-document url-prefix() {
  .main-home.overflow {
    height: calc(100% - var(--page-content-h) - 34px);
  }
}
#go-back:hover, #go-top:hover {
  border-bottom: none;
}

.row-home {
  margin-left: 0;
  width: calc(100% + var(--border));
}

.product-options {
  background-color: white;
  flex: 0 0 var(--sidebarWidth);
  padding-left: 0;
  padding-right: 0;
  font-feature-settings: "tnum", "lnum" !important;
}

a.button-hover {
  text-decoration: none;
  display: inline-block;
}

.button-link,
.button-link-out,
.button-hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

.button-link:hover,
.button-hover:hover {
  color: white;
  background-color: black;
  cursor: pointer;
}

.button-link-out:hover {
  /* text-decoration: underline; */
  cursor: pointer;
  background-color: black;
  color: white;
}

.button-link:hover img.svg,
.button-link-out:hover img.svg,
.button-hover:hover img.svg {
  filter: invert(100%);
}

.slideshow img {
  padding-bottom: 2rem;
  max-width: 950px;
  /* height: auto; */
  /* max-height: 80vh; */
  /* width: auto; */
  padding-right: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.product-title h1 {
  /* line-height: var(--lineheight-bar); */
  /* line-height: calc(var(--lineheight-bar) + 1px); */
  color: white;
  background-color: black !important;
  padding-top: 8px;
  padding-bottom: 8px;
}

.title-h {
  line-height: var(--lineheight-bar);
}

#go-top, #go-back {
  line-height: calc(var(--lineheight-bar) + 2px);
}

.thumbnail {
  height: auto;
  max-height: 170px;
  max-width: 170px;
  width: auto;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
  border-top-right-radius: 7px !important;
  border-top-left-radius: 7px !important;
}

.hometile {
  height: 280px;
}

.hometile.m {
  flex: 1 1 360px;
  max-width: 560px;
}

.hometile.l {
  flex: 1 1 430px;
  max-width: 630px;
}

.hometile.s {
  flex: 1 1 280px;
  max-width: 480px;
}

.hometile img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.homeproduct-title {
  background-color: white;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}

.homeproduct-title h1 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  letter-spacing: 0.015em;
  font-feature-settings: "kern" on, "liga" on, "calt" on;
  -moz-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -webkit-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -ms-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -o-font-feature-settings: "kern" on, "liga" on, "calt" on;
}

span.underline {
  border-bottom: var(--border) solid black;
}

.artwork {
  max-width: 450px;
}

.rowsection:first-of-type {
  padding-top: 3rem !important;
}

.rowsection:last-of-type {
  padding-bottom: 3rem !important;
}

.authors.rowsection:last-of-type {
  padding-bottom: 0rem !important;
}

.footer-content .rowsection:first-of-type {
  padding-top: 1.5rem !important;
}

.footer-content .rowsection:last-of-type {
  padding-bottom: 0rem !important;
}

.list-of-filters {
  position: absolute;
  background: white;
  z-index: 3;
  border: 2px solid black;
  margin-left: -2px;
}
.list-of-filters li {
  line-height: 34px;
  box-sizing: border-box;
  margin: 0px;
}
.list-of-filters a {
  line-height: 34px;
  box-sizing: border-box;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}

/* -----   Slider ------------------------------------------- */
.toolbar .ui-corner-all,
.toolbar .ui-corner-bottom,
.toolbar .ui-corner-right,
.toolbar .ui-corner-br,
.toolbar .ui-state-hover,
.toolbar .ui-state-focus,
.toolbar .ui-widget-content .ui-state-focus,
.toolbar .ui-widget-content .ui-state-hover {
  border-bottom-right-radius: 9px !important;
  border-bottom-left-radius: 9px !important;
  border-top-right-radius: 9px !important;
  border-top-left-radius: 9px !important;
}

.ui-slider-horizontal .ui-slider-handle {
  border: none !important;
  background: black !important;
  cursor: -webkit-grab;
  cursor: grab;
}

.ui-slider-horizontal .ui-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.ui-widget.ui-widget-content {
  border: none !important;
}

.ui-slider {
  border: none !important;
  height: var(--border) !important;
  background-color: black !important;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.55em !important;
}

.slider,
.variableslider {
  width: 200px;
  height: 1px !important;
  margin-right: 20px !important;
  margin-top: 2px;
  margin-bottom: 12px;
}

.variableslider {
  margin-top: 16px;
  margin-bottom: 4px;
  display: inline-block;
}

.font-preview {
  white-space: nowrap;
  letter-spacing: 0em !important;
  word-spacing: 0em !important;
  width: 100%;
  height: auto;
  font-feature-settings: "kern" on, "liga" on, "calt" on;
  -moz-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -webkit-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -ms-font-feature-settings: "kern" on, "liga" on, "calt" on;
  -o-font-feature-settings: "kern" on, "liga" on, "calt" on;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
}

.artwork-index {
  display: inline-block;
  width: 2rem;
}

/* -----   Font cart  ------------------------------------------- */
.product-options {
  text-align: center;
}

.button {
  width: 100%;
  text-align: left;
  display: inline-block;
  border: var(--border) solid black;
  padding: 8px;
  border-radius: 7px;
}

.ui-button {
  line-height: 20px;
}

.button + .button {
  margin-top: 1rem;
}

.buying-options-title {
  text-align: left;
  width: 100%;
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-feature-settings: "tnum", "lnum";
}

.ui-menu .ui-menu-item-wrapper, .ui-selectmenu-text {
  font-feature-settings: "tnum", "lnum";
}

.buy-print-options {
  display: none;
}

/* .active, .active * {
  background-color: black !important;
  color: white !important;
  cursor: pointer;
} */
.selected, .selected * {
  background-color: black !important;
  color: white !important;
  cursor: pointer;
}

span.help {
  float: right;
  padding: 4px 6px;
  margin: -4px -6px;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: black;
}

/* ------ SMALL MENU ---------------------------------------- */
#close-small-menu {
  display: none;
}

.menu-small-content {
  position: fixed;
  /* height: 100%; */
  background-color: white;
  z-index: 9999;
  width: 100%;
  /* top: 0; */
  left: 0;
  border-top: 2px solid black;
}

/* ------ TEST ---------------------------------------------- */
.ui-selectmenu-button.ui-button {
  width: 100%;
  margin-top: 1rem;
}

.buying-options > .ui-selectmenu-button.ui-button:first-of-type {
  margin-top: 0;
}

/* select + .ui-button {
  margin-top: 1rem;
} */
.ui-button {
  background: white;
}

.ui-button,
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  color: black;
  border: var(--border) solid black;
  padding: 8px;
  border-radius: 7px !important;
}

/* .ui-button:hover,
.ui-button:focus {
  color: white;
  background: black;

} */
.ui-button:hover {
  color: black;
  background: white;
  border-color: black;
}

/* checkbox */
label {
  display: inline-block;
  width: 100%;
  text-align: left !important;
}

label + label {
  margin-top: 1rem;
}

.twocol label {
  width: calc(50% - 0.5rem);
  margin-left: 0;
  margin-right: 0;
  float: left;
}

.twocol label + label {
  margin-top: 0rem;
}

.twocol label:nth-child(1n+3) {
  margin-top: 1rem;
}

.twocol label:nth-child(2n+1) {
  margin-right: 0.5rem;
}

.twocol label:nth-child(2n+2) {
  margin-left: 0.5rem;
}

.ui-checkboxradio-checked,
.ui-state-active,
.ui-button.ui-state-active:hover,
.ui-button:focus,
.ui-options-selected {
  background-color: black;
  color: white;
  border: var(--border) solid black;
}

.ui-button:focus {
  background-color: white;
  color: black;
  border: var(--border) solid black;
}

.ui-button.ui-options-selected:focus,
.ui-button.ui-options-selected:hover {
  background-color: black;
  color: white;
  border: var(--border) solid black;
}

.badge-info {
  float: right;
  padding: 0;
  margin-right: 8px;
  color: black;
  background-color: white;
  white-space: nowrap;
  display: inline-block;
}

label {
  margin-bottom: 0;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.modal-content {
  border: none;
}

.ui-selectmenu-open .ui-menu {
  border-top-right-radius: 0px !important;
  border-top-left-radius: 0px !important;
  border: var(--border) solid black !important;
  border-top: none !important;
}

.ui-button.ui-selectmenu-button-open {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover,
a.ui-button:hover,
a.ui-button:focus {
  border: var(--border) solid black;
  font-weight: normal;
  background: black;
  color: white;
  /* background: white;
  color: black; */
}

.ui-widget-content .ui-state-active {
  border: none;
}

[contenteditable]:hover {
  /* color: grey; */
}

[contenteditable]:focus {
  outline: 0px solid transparent;
  /* color: black; */
}

*:focus {
  outline: 0px solid transparent !important;
}

.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  text-align: left !important;
  padding: 1rem 1rem;
}

.list-title {
  min-width: 110px;
}

.link-home {
  min-width: 110px;
}

/* ========== EVENTS ============== */
.ui-button .ui-icon {
  display: none;
}

.success-success,
.success-success:hover,
.success-success:focus {
  background-color: rgb(97, 223, 122) !important;
  border-color: rgb(97, 223, 122) !important;
  color: white !important;
  cursor: default;
}

.inline-block {
  display: inline-block !important;
  margin-top: 0 !important;
}

#checkout-add-to-cart {
  display: none;
}

.ui-visual-focus {
  box-shadow: 0 0 0 0 white;
}

/* ========= SCROLLBAR ========== */
.overflow {
  overflow-x: hidden;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgb(0, 0, 0);
}

.os-theme-dark > .os-scrollbar-vertical, .os-theme-light > .os-scrollbar-vertical {
  width: 8px;
}

.os-theme-dark > .os-scrollbar, .os-theme-light > .os-scrollbar {
  padding: 0;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  border-radius: 0px;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
  background: rgb(0, 0, 0);
}

.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgb(0, 0, 0);
}

.os-scrollbar-handle, .os-scrollbar-track {
  height: calc(100% + 1px);
}

.product-options .os-scrollbar-vertical {
  right: 1px;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
  margin-left: -4px;
  content: "";
  border-width: 12px 8px 0;
  border-top-color: #000;
}

/*                   LIGHT THEME                       */
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active,
.os-theme-light > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgb(255, 255, 255);
}

/* .ui-menu-item-wrapper {
  text-transform: lowercase;
} */
#mc_embed_signup {
  display: none;
  background-color: black;
  color: white;
  letter-spacing: 0.05em;
  word-spacing: -0.04em;
  font-weight: normal;
}

#mc_embed_signup .button {
  text-align: left;
  display: inline-block;
  border: none;
  padding: 0px;
  border-radius: 0px;
  background-color: black;
  color: white;
}

input#mce-EMAIL {
  width: calc(100% - 60px);
  background-color: black;
  color: white;
  letter-spacing: 0.05em;
  word-spacing: -0.04em;
  font-weight: normal;
}

input#mce-EMAIL::-moz-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

input#mce-EMAIL:-ms-input-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

input#mce-EMAIL::placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

input#mce-EMAIL:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

input#mce-EMAIL::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
}

#mc_embed_signup .clear {
  display: inline-block;
  float: right;
}

#mc-embedded-subscribe {
  letter-spacing: 0.05em;
  word-spacing: -0.04em;
  font-weight: normal;
}

#mc-embedded-subscribe:hover {
  cursor: pointer;
}

.tooltip-inner {
  border-radius: 0 !important;
}

.tooltip .arrow {
  display: none !important;
}

#info-licence,
#info-packs,
#info-individual {
  padding-right: 16px;
}

.button-related:nth-child(2n+1) {
  border-left: 2px solid black;
}

.remove-filter {
  font-family: "poems-i", aa;
  display: inline-block;
  float: right;
}

#search-form {
  box-sizing: border-box;
  display: flex;
  width: 220px;
  justify-content: space-between;
}

.search-form-back {
  width: 220px;
}

input[type=search] {
  width: 100%;
}

input[type=submit] {
  background: none;
  cursor: pointer;
  opacity: 1;
  padding-left: 1rem;
  display: none;
}

input[type=submit]:hover {
  opacity: 0.5;
}

input[type=reset] {
  font-family: "poems-i";
  opacity: 1;
  margin-top: -2px;
  cursor: pointer;
  display: none;
}

.form-focus input::-moz-selection, .form-active input::-moz-selection {
  color: black;
  background-color: white;
}

.form-focus input::selection,
.form-active input::selection {
  color: black;
  background-color: white;
}

.form-active {
  background: black;
  color: white;
}
.form-active input {
  background: black;
  color: white;
}
.form-active input[type=submit] {
  display: none;
  opacity: 0.5;
}
.form-active input[type=reset] {
  display: inline;
}
.form-active input[type=submit]:hover {
  opacity: 1;
}

.form-focus {
  background: black;
  color: white;
}
.form-focus input {
  background: black;
  color: white;
}
.form-focus input[type=submit] {
  display: inline;
  opacity: 0.5;
}
.form-focus input[type=submit]:hover {
  opacity: 1;
}

.form-active.form-focus input[type=submit] {
  display: inline;
  opacity: 0.5;
}
.form-active.form-focus input[type=reset] {
  display: none;
}
.form-active.form-focus input[type=submit]:hover {
  opacity: 1;
}

/*  */
/*  */
/*  */
/*  */
/*  responsive */
@media (min-width: 1900px) {
  /* .slideshow img {
    max-width: 650px;
  } */
}
@media (min-width: 1200px) {
  :root {
    --sidebarWidth: 345px;
  }

  .hometile {
    height: 350px;
  }

  .hometile.m {
    flex: 1 1 450px;
    max-width: 650px;
  }

  .hometile.l {
    flex: 1 1 537px;
    max-width: 637px;
  }

  .hometile.s {
    flex: 1 1 350px;
    max-width: 550px;
  }
}
@media (max-width: 1200px) {
  :root {
    /* --main: 12px;
    --lineheight-bar : 30px; */
  }

  html, body {
    /* line-height: 16px; */
  }

  /* .hometile {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    height: 28vw;

  }
  .hometile:nth-child(8n + 1),
  .hometile:nth-child(8n + 8) {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .hometile:nth-child(8n + 2),
  .hometile:nth-child(8n + 6) {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .hometile:nth-child(6n + 2),
  .hometile:nth-child(6n + 4) {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .hometile:nth-child(6n + 1),
  .hometile:nth-child(6n + 6) {
    -ms-flex: 0 0 26.6666666666%;
    flex: 0 0 26.6666666666%;
    max-width: 26.6666666666%;
  } */
}
#menu-small,
#button-small-buy,
#close-small-buy {
  display: none;
}

.small-title {
  display: none;
}

@media (max-width: 1024px) {
  body[data-fonttester=paragraphs] .item .font-preview p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 992px) {
  .info-button {
    display: none;
  }

  .cart-part1 {
    display: none;
  }

  .cart-part2 {
    display: none;
  }

  #menu-small {
    display: list-item;
    cursor: pointer;
  }

  #menu-small.open a {
    background-color: black !important;
    color: white !important;
  }

  #product-info.border-right {
    border-right: none !important;
  }

  .product-options {
    /* display: none; */
    position: fixed;
    background-color: white;
    top: 0;
    bottom: 0;
    right: calc(-1 * var(--sidebarWidth));
    z-index: 15;
    max-width: var(--sidebarWidth);
    border-left: var(--border) solid black;
    transition: right 0.3s;
  }

  #button-small-buy {
    position: absolute;
    display: inline-block;
    top: calc(50% - 25px);
    width: 50px;
    right: 0;
    color: black;
    z-index: 14;
    transform: rotate(-90deg);
    text-align: center;
    text-transform: capitalize;
    border: 2px solid black;
    line-height: 2rem;
    background-color: white;
  }

  #button-small-buy:hover {
    text-decoration: none;
  }

  #close-small-buy {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-font-smoothing: antialiased;
    font-family: poems-i;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1.15rem;
    line-height: 1;
  }

  #close-small-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-font-smoothing: antialiased;
    font-family: poems-i;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1.15rem;
    line-height: 1;
    margin-top: -2px;
  }

  .close-small-panel {
    position: absolute;
    top: 8px;
    right: 10px;
    -webkit-font-smoothing: antialiased;
    font-family: poems-i;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1.15rem;
    line-height: 1;
  }

  #close-small-buy:hover,
#close-small-menu:hover {
    text-decoration: none;
    border-bottom: none;
  }

  .small-title {
    line-height: var(--lineheight-bar);
    /* line-height: calc(var(--lineheight-bar) + 1px); */
    /* margin-top: -1px; */
    color: white;
    background-color: black !important;
    cursor: pointer;
    display: block;
  }

  .menu-small-content li {
    border-bottom: 2px solid black;
  }

  .footer .menu-item {
    display: block;
    width: 100%;
    float: none;
    flex-basis: unset;
    flex-grow: unset;
    flex: unset;
    max-width: 100%;
    border-bottom: 2px solid black;
  }

  .footer .menu-item:last-of-type {
    border-bottom: none;
  }

  .footer .menu-item.border-right {
    border-right: none !important;
  }

  .footer .info-button {
    display: block;
  }
  .footer .info-button .info {
    display: none;
  }
  .footer .info-button .menu-item {
    border-bottom: 2px solid black;
  }

  .filters-item {
    order: 1;
    border-right: 0px !important;
  }

  .list-of-filters {
    left: 0;
    right: 0;
    border: 0px;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-bottom: 2px solid black;
    border-top: 2px solid black;
  }

  #search-form {
    width: 100%;
  }

  .search-form-back {
    width: 100%;
  }

  .hide-large {
    display: inline;
  }

  .hide-small {
    display: none;
  }
}
/* md */
@media (max-width: 768px) {
  .hometile {
    height: 350px;
  }

  .hometile.m {
    flex: 1 1 418px;
    max-width: 100%;
  }

  .hometile.l {
    flex: 1 1 768px;
    max-width: 100%;
  }

  .hometile.s {
    flex: 1 1 350px;
    max-width: 100%;
  }

  .slider, .variableslider {
    width: 100%;
    max-width: calc(50% - 2.5rem);
  }

  .variable-help {
    position: absolute;
  }

  .font-tester .toolbar-button.first {
    clear: both;
    padding-left: 0;
  }

  .more-infos .border-left,
.button-related:nth-child(2n+1) {
    border-left: none !important;
  }

  body[data-fonttester=paragraphs] .item .font-preview p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
        hyphens: auto;
  }

  .ui-slider .ui-slider-handle {
    width: 24px;
    height: 24px;
  }

  .ui-slider-horizontal .ui-slider-handle {
    top: -11.5px !important;
  }

  .toolbar .ui-corner-all, .toolbar .ui-corner-bottom, .toolbar .ui-corner-right, .toolbar .ui-corner-br, .toolbar .ui-state-hover, .toolbar .ui-state-focus, .toolbar .ui-widget-content .ui-state-focus, .toolbar .ui-widget-content .ui-state-hover {
    border-bottom-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-top-left-radius: 12px !important;
  }

  .variableslider {
    margin-bottom: 23px;
  }

  .slider, .variableslider {
    margin-top: 3px;
    margin-bottom: 30px;
    transform: translateY(0px);
  }

  .variable-help {
    margin: -7px 0px 0px -7px;
  }
}
@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .product-description {
    /* margin: 0.5rem 4rem 3rem 1rem; */
    margin: 1.7rem 4rem 3rem 1rem;
  }

  .slideshow {
    margin-right: -3rem;
  }

  .slideshow img {
    padding-bottom: 1rem;
    padding-right: 0rem;
  }

  .rowsection:first-of-type {
    padding-top: 1rem !important;
  }

  .rowsection:last-of-type {
    padding-bottom: 3rem !important;
  }

  .artworks {
    margin-right: -2rem;
  }

  .artworks .artwork {
    min-width: 100%;
  }

  .main-toolbar {
    padding-bottom: 1rem;
  }

  .variableslidercontainer {
    padding-bottom: 0.5rem;
  }

  .slider, .variableslider {
    width: 100%;
    max-width: calc(100% - 5.3rem);
    margin-left: 0.8rem;
  }

  .toolbar-button {
    margin-top: 0.5rem;
    margin-bottom: -0.3rem;
  }
}/*# sourceMappingURL=index.css.map */