@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;500;700&display=swap");
body {
  --primary: #8154ef;
  --primary-dark: #6743bf;
  --white: #fff;
  --offwhite: #f2f4f5;
  --black: #000;
  --gray: #303030;
  --lightgray: #777879;
  --border: #e5e5e5;
  --highlight: rgba(249, 241, 0, 0.53); }
  body.red {
    --primary: #E7473C;
    --primary-dark: #B93930; }
  body.green {
    --primary: #04AA84;
    --primary-dark: #03886a; }
    body.green.page-home .home-text {
      font-family: "Roboto", sans-serif;
      line-height: 1.3; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 * Modified by teamblau
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger.is-active:hover {
  opacity: 0.7; }

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000; }

.hamburger-box {
  width: 25px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #000;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -9px; }

.hamburger-inner::after {
  bottom: -9px; }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease; }

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease; }

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* 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.unstyled, ul.unstyled, 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.unstyled, ul.unstyled {
  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; }

/* TODO change serif font to Corporate Font. Not avaiilable on google fonts, a similar font is used */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  word-break: break-word; }

.h1,
h1 {
  font-family: "Merriweather", serif;
  font-size: 23px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h1,
    h1 {
      font-size: calc(23px + 20 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h1,
    h1 {
      font-size: 43px; } }
  @media screen and (min-width: 991px) {
    .h1,
    h1 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h1,
    h1 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h1,
    h1 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h1,
    h1 {
      padding-top: 15px; } }
.h2,
h2 {
  font-family: "Merriweather", serif;
  font-size: 20px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h2,
    h2 {
      font-size: calc(20px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h2,
    h2 {
      font-size: 30px; } }
  @media screen and (min-width: 991px) {
    .h2,
    h2 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h2,
    h2 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h2,
    h2 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h2,
    h2 {
      padding-top: 15px; } }
.h3,
h3 {
  font-family: "Merriweather", serif;
  font-size: 18px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h3,
    h3 {
      font-size: calc(18px + 7 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h3,
    h3 {
      font-size: 25px; } }
  @media screen and (min-width: 991px) {
    .h3,
    h3 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h3,
    h3 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h3,
    h3 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h3,
    h3 {
      padding-top: 15px; } }
.h4,
h4 {
  font-family: "Merriweather", serif;
  font-size: 17px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h4,
    h4 {
      font-size: calc(17px + 3 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h4,
    h4 {
      font-size: 20px; } }
  @media screen and (min-width: 991px) {
    .h4,
    h4 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h4,
    h4 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h4,
    h4 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h4,
    h4 {
      padding-top: 15px; } }
.h5,
h5 {
  font-family: "Merriweather", serif;
  font-size: 16px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h5,
    h5 {
      font-size: calc(16px + 2 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h5,
    h5 {
      font-size: 18px; } }
  @media screen and (min-width: 991px) {
    .h5,
    h5 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h5,
    h5 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h5,
    h5 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h5,
    h5 {
      padding-top: 15px; } }
.h6,
h6 {
  font-family: "Merriweather", serif;
  font-size: 15px;
  padding-bottom: 5px;
  padding-top: 5px; }
  @media screen and (min-width: 991px) {
    .h6,
    h6 {
      font-size: calc(15px + 1 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h6,
    h6 {
      font-size: 16px; } }
  @media screen and (min-width: 991px) {
    .h6,
    h6 {
      padding-bottom: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h6,
    h6 {
      padding-bottom: 15px; } }
  @media screen and (min-width: 991px) {
    .h6,
    h6 {
      padding-top: calc(5px + 10 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .h6,
    h6 {
      padding-top: 15px; } }
p {
  line-height: 24px;
  padding-top: 10px;
  padding-bottom: 5px; }

.highlight {
  position: relative;
  background-color: var(--highlight);
  display: inline-block;
  font: inherit;
  padding: 0 5px;
  box-sizing: border-box;
  margin-left: -2px;
  margin-right: -2px;
  line-height: 1.5; }

.highlight-viewer {
  background-color: var(--highlight);
  mix-blend-mode: multiply; }

ul,
ol {
  padding-left: 18px; }
  ul.unstyled li,
  ol.unstyled li {
    padding-bottom: 0; }

li {
  padding-bottom: 5px; }

html {
  scroll-behavior: smooth; }

body {
  max-width: 2560px;
  margin: 0 auto;
  background-color: var(--white); }
  @media screen and (min-width: 2580px) {
    body {
      position: relative; }
      body:before, body:after {
        content: "";
        position: absolute;
        top: 0;
        width: calc((100vw - 2577px) / 2);
        background: var(--white);
        height: 100%;
        z-index: 1; }
      body:after {
        left: 100%;
        border-left: 1px solid var(--border); }
      body:before {
        right: 100%;
        border-right: 1px solid var(--border); } }
  body.scroll-blocked {
    overflow: hidden; }

a {
  color: var(--primary);
  line-height: 24px; }

hr {
  border: none;
  border-top: 4px solid var(--black); }

.new-badge {
  font-size: 12px;
  letter-spacing: 1.27px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 3px 8px;
  margin: 0 10px;
  cursor: default;
  box-sizing: border-box;
  vertical-align: middle; }

/* class applies to select element itself, not a wrapper element */
.styled-select {
  color: #606060;
  line-height: 1.3;
  padding: 8px 35px 8px 20px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  margin: 0;
  border: none;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='616.1' height='345.1' viewBox='0 0 163 91.3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23707070%3Bstroke-width:.494894%3B' transform='rotate(-45 81.3 -111.2)' d='M-61.7-83.2h13.9V32.1h-13.9z'/%3E%3Cpath style='fill:%23707070%3Bstroke-width:.494894%3B' transform='rotate(45 21.1 136.1)' d='M18.3-53.6h13.9V61.7H18.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  /* arrow icon position (1em from the right, 50% vertical)*/
  background-position: right 10px top 50%;
  /* icon size */
  background-size: 9px auto; }
  .styled-select:focus {
    color: var(--primary); }
  .styled-select:disabled, .styled-select[aria-disabled="true"] {
    color: graytext; }
  .styled-select:disabled:hover, .styled-select[aria-disabled="true"] {
    border-color: #aaa; }

.styled-scrollbars {
  /* Foreground, Background */
  scrollbar-color: var(--primary-dark) var(--primary); }

.styled-scrollbars::-webkit-scrollbar {
  width: 10px;
  /* Mostly for vertical scrollbars */
  height: 10px;
  /* Mostly for horizontal scrollbars */ }

.styled-scrollbars::-webkit-scrollbar-thumb {
  /* Foreground */
  background: var(--primary-dark); }

.styled-scrollbars::-webkit-scrollbar-track {
  /* Background */
  background: var(--primary); }

.custom-checkbox {
  line-height: 1.1;
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  text-align: left; }
  .custom-checkbox input[type="checkbox"] {
    cursor: pointer;
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--white);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: var(--white);
    width: 25px;
    height: 25px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    display: grid;
    place-content: center;
    transition: 0.2s ease background-color; }
  .custom-checkbox input[type="checkbox"]:active {
    background-color: var(--primary); }
  .custom-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary); }
  .custom-checkbox input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    background-color: var(--white); }
  .custom-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1); }
  .custom-checkbox input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed; }
  .custom-checkbox .label-text {
    display: inline-block;
    margin-left: 10px; }

.grecaptcha-badge {
  z-index: 1; }

.toggle-switch-label {
  margin-right: 7px;
  vertical-align: middle; }

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  vertical-align: middle; }
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0; }
    .toggle-switch input:checked + .toggle-switch-slider {
      background-color: var(--primary-dark); }
      .toggle-switch input:checked + .toggle-switch-slider:before {
        transform: translateX(19px); }
  .toggle-switch .toggle-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px; }
    .toggle-switch .toggle-switch-slider:before {
      position: absolute;
      content: "";
      height: 14px;
      width: 14px;
      left: 4px;
      bottom: 4px;
      background-color: var(--white);
      transition: 0.4s;
      border-radius: 50%; }

b,
strong {
  font-weight: 500; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--primary);
  font-weight: 400; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--primary);
  font-weight: 400; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--primary);
  font-weight: 400; }

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--primary);
  font-weight: 400; }

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px; }
  .icon.size-sm {
    width: 22px;
    height: 22px;
    line-height: 22px; }
  .icon svg {
    vertical-align: middle;
    fill: currentColor; }

[x-cloak="all"] {
  display: none !important; }

@media screen and (max-width: 991px) {
  [x-cloak="mobile"] {
    display: none !important; } }

.header-inner {
  position: relative; }
  .header-inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-100%);
    background: repeating-linear-gradient(to right, black 0%, white 50%, black 100%);
    background-size: 200% auto;
    background-position: 0 100%;
    width: 100%;
    opacity: 0;
    animation: gradient 2s infinite;
    animation-timing-function: linear;
    transition: 0.4s ease opacity; }

@-webkit-keyframes gradient {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -200% 0; } }

@keyframes gradient {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -200% 0; } }

.is-loading .header-inner:after {
  opacity: 1; }

.container {
  margin: 0 80px; }
  @media screen and (max-width: 1600px) {
    .container {
      margin: 0 40px; } }
  @media screen and (max-width: 991px) {
    .container {
      margin: 0 20px; } }
.header-main.has-search + .main-content {
  min-height: calc(100vh - 351px); }
  @media screen and (max-width: 991px) {
    .header-main.has-search + .main-content {
      min-height: calc(100vh - 230px); } }
.main-content {
  min-height: calc(100vh - 272px); }
  @media screen and (max-width: 991px) {
    .main-content {
      min-height: calc(100vh - 230px); } }
  .main-content.has-sidebar {
    position: relative;
    display: flex; }

.main-content-inner {
  padding-bottom: 20px;
  width: 100%;
  min-height: inherit;
  box-sizing: border-box; }

.home-component {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.page-home .main-content {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--primary); }
  @media screen and (max-width: 991px) {
    .page-home .main-content {
      justify-content: space-between;
      flex-direction: column; } }
  .page-home .main-content .main-content-inner {
    width: calc(100% - 337px);
    min-height: 0; }
    @media screen and (min-width: 2200px) {
      .page-home .main-content .main-content-inner {
        width: calc(100% - 500px); } }
    @media screen and (max-width: 991px) {
      .page-home .main-content .main-content-inner {
        width: 100%; } }
.page-home .home-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-top: 90px;
  box-sizing: border-box;
  padding-top: 60px; }
  @media screen and (min-width: 1600px) {
    .page-home .home-wrapper {
      padding-top: calc(60px + 30 * (100vw - 1600px) / 320); } }
  @media screen and (min-width: 1920px) {
    .page-home .home-wrapper {
      padding-top: 90px; } }
  @media screen and (max-width: 768px) {
    .page-home .home-wrapper {
      padding-top: 40px; } }
.page-home .home-intro {
  width: 257px;
  line-height: 1.5;
  margin-top: 25px;
  font-weight: 500; }
  @media screen and (max-width: 1600px) {
    .page-home .home-intro {
      width: 530px;
      order: 2; } }
  .page-home .home-intro .home-intro-text {
    display: block; }
  .page-home .home-intro .home-intro-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--black); }

.page-home .home-content {
  display: flex;
  align-items: center;
  width: calc(100% - 257px);
  padding-left: 180px;
  box-sizing: border-box; }
  @media screen and (max-width: 1600px) {
    .page-home .home-content {
      width: 100%;
      padding-left: 0;
      order: 1; } }
@media screen and (max-width: 768px) {
  .page-home .home-content-inner {
    width: 100%; } }

.page-home .home-text {
  font-size: 92px;
  font-size: 46px;
  font-family: "Merriweather", serif;
  line-height: 1.5; }
  @media screen and (min-width: 1600px) {
    .page-home .home-text {
      font-size: calc(46px + 46 * (100vw - 1600px) / 960); } }
  @media screen and (min-width: 2560px) {
    .page-home .home-text {
      font-size: 92px; } }
  @media screen and (max-width: 1600px) {
    .page-home .home-text {
      font-size: 43px; } }
  @media screen and (max-width: 1600px) and (min-width: 991px) {
    .page-home .home-text {
      font-size: calc(43px + 29 * (100vw - 991px) / 609); } }
  @media screen and (max-width: 1600px) and (min-width: 1600px) {
    .page-home .home-text {
      font-size: 72px; } }
  @media screen and (max-width: 991px) {
    .page-home .home-text {
      font-size: 58px;
      font-size: 21px; } }
  @media screen and (max-width: 991px) and (min-width: 320px) {
    .page-home .home-text {
      font-size: calc(21px + 37 * (100vw - 320px) / 580); } }
  @media screen and (max-width: 991px) and (min-width: 900px) {
    .page-home .home-text {
      font-size: 58px; } }
  .page-home .home-text a {
    position: relative;
    color: var(--white);
    text-decoration: none; }
    .page-home .home-text a:after {
      content: "";
      position: absolute;
      height: 1px;
      transition: 0.8s ease-in-out background-position;
      background-image: linear-gradient(90deg, #fff, #fff 60%, transparent 60%, transparent 100%);
      background-size: 9px 1px;
      background-position: 0% 0%;
      border: none;
      left: 0;
      bottom: 5px;
      width: 100%; }
      @media screen and (max-width: 768px) {
        .page-home .home-text a:after {
          bottom: 0; } }
    .page-home .home-text a:hover:after {
      background-position: 10% 0%; }

.page-home .home-article-count {
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 20px;
  letter-spacing: 0.56px;
  margin-bottom: 30px;
  line-height: 1.4; }

.page-home .search-bar {
  max-width: 900px;
  padding-left: 0;
  border-top: none; }
  @media screen and (max-width: 1600px) {
    .page-home .search-bar {
      padding-left: 0; } }
  @media screen and (max-width: 1600px) {
    .page-home .search-bar {
      width: calc(100% - 52px); } }
  @media screen and (max-width: 500px) {
    .page-home .search-bar {
      width: 100%; } }
  .page-home .search-bar .search-bar-inner {
    box-shadow: 0px 9px 63px #00000047; }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-bar-inner {
        height: auto; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-bar-inner form {
        flex-wrap: wrap; } }
  .page-home .search-bar .search-type-select + .search-bar-input {
    width: calc(100% - 350px - 50px); }
    @media screen and (max-width: 1200px) {
      .page-home .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 95px - 50px);
        min-width: 0; } }
    @media screen and (max-width: 991px) {
      .page-home .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 95px - 60px); } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 60px); } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select + .search-bar-input + .search-bar-submit button {
        border-top-right-radius: 0; } }
  .page-home .search-bar .search-type-select {
    flex-basis: 320px; }
    @media screen and (max-width: 1200px) {
      .page-home .search-bar .search-type-select {
        flex-basis: 95px; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select {
        flex-basis: 100%;
        max-width: 100%; } }
    @media screen and (max-width: 1200px) {
      .page-home .search-bar .search-type-select .current-type {
        padding-left: 30px; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select .current-type {
        padding-left: 20px;
        width: 100%;
        border-bottom: 1px solid var(--border); } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select .current-type-label {
        display: block;
        max-width: calc(100% - 90px);
        overflow: hidden;
        text-overflow: ellipsis; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select .current-type-icon {
        margin-right: 20px; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-type-select .select-box {
        width: 100%;
        max-width: 100%; } }
  .page-home .search-bar .search-bar-input {
    margin-left: 0;
    width: calc(100% - 80px); }
    @media screen and (max-width: 991px) {
      .page-home .search-bar .search-bar-input {
        width: calc(100% - 60px); } }
  .page-home .search-bar .search-bar-submit button {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px; }
  .page-home .search-bar .search-bar-help {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px; }
    .page-home .search-bar .search-bar-help .search-bar-help-text {
      display: block; }
    @media screen and (max-width: 1600px) {
      .page-home .search-bar .search-bar-help {
        margin-top: 0; } }
    @media screen and (max-width: 500px) {
      .page-home .search-bar .search-bar-help {
        margin-top: 20px;
        padding-left: 52px;
        justify-content: flex-start; } }
    .page-home .search-bar .search-bar-help .search-bar-help-text-wrapper {
      position: relative;
      display: block;
      color: rgba(255, 255, 255, 0.68);
      width: 260px;
      line-height: 1.5;
      padding-top: 5px;
      font-weight: 500; }
      @media screen and (max-width: 1600px) {
        .page-home .search-bar .search-bar-help .search-bar-help-text-wrapper {
          position: static;
          padding-top: 0; }
          .page-home .search-bar .search-bar-help .search-bar-help-text-wrapper .search-bar-help-text {
            display: none; } }
      @media screen and (max-width: 500px) {
        .page-home .search-bar .search-bar-help .search-bar-help-text-wrapper {
          position: relative;
          width: 100%; }
          .page-home .search-bar .search-bar-help .search-bar-help-text-wrapper .search-bar-help-text {
            display: block; } }
    .page-home .search-bar .search-bar-help .search-bar-help-text-link {
      color: rgba(255, 255, 255, 0.68);
      border-color: var(--white);
      position: absolute;
      left: -20px;
      top: 0;
      transform: translateX(-100%); }
      @media screen and (max-width: 1600px) {
        .page-home .search-bar .search-bar-help .search-bar-help-text-link {
          left: auto;
          right: -20px;
          top: 50%;
          transform: translate(100%, -50%); } }
      @media screen and (max-width: 500px) {
        .page-home .search-bar .search-bar-help .search-bar-help-text-link {
          right: 100%;
          transform: translateX(-20px);
          top: 0; } }
.page-home .home-logos {
  margin-top: -100px;
  max-width: 62%; }
  @media screen and (max-width: 1600px) {
    .page-home .home-logos {
      margin-top: 20px;
      max-width: 100%; } }
  .page-home .home-logos .home-logos-inner {
    display: flex;
    align-items: flex-end;
    height: 100px; }
    @media screen and (max-width: 1600px) {
      .page-home .home-logos .home-logos-inner {
        height: auto;
        flex-wrap: wrap; } }
  .page-home .home-logos .home-logo {
    width: auto;
    max-width: 100%;
    margin-right: 40px;
    margin-bottom: 10px; }
    .page-home .home-logos .home-logo:last-child {
      margin-right: 0; }
    .page-home .home-logos .home-logo img {
      width: 100%; }

.sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner {
  grid-template-columns: repeat(auto-fill, calc(100% / 5 - 13px)); }
  @media screen and (max-width: 1800px) {
    .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner {
      grid-template-columns: repeat(auto-fill, calc(100% / 4 - 13px)); } }
  @media screen and (max-width: 1400px) {
    .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner {
      grid-template-columns: repeat(auto-fill, calc(100% / 3 - 13px)); } }
  @media screen and (max-width: 1200px) {
    .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner {
      grid-template-columns: repeat(auto-fill, calc(100% / 2 - 6.5px)); } }
  @media screen and (max-width: 650px) {
    .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner {
      grid-template-columns: repeat(auto-fill, 100%); } }
  .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
    grid-template-columns: repeat(auto-fill, calc(100% / 3 - 13px)); }
    @media screen and (max-width: 1800px) {
      .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 13px)); } }
    @media screen and (max-width: 1400px) {
      .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 13px)); } }
    @media screen and (max-width: 1200px) {
      .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
        grid-template-columns: repeat(auto-fill, 100%); } }
    @media screen and (max-width: 991px) {
      .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
        grid-template-columns: repeat(auto-fill, 100%); } }
    @media screen and (max-width: 650px) {
      .sidebar.is-closed + .main-content-inner .listing-grid .listing-grid-inner.big {
        grid-template-columns: repeat(auto-fill, 100%); } }
.listing-grid {
  margin-top: 20px; }
  .listing-grid .listing-grid-actions {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px; }
    @media screen and (max-width: 991px) {
      .listing-grid .listing-grid-actions {
        margin-bottom: 10px;
        margin-top: 20px; } }
  .listing-grid .listing-grid-inner {
    display: grid;
    justify-content: space-between;
    margin-top: 10px;
    grid-template-columns: repeat(auto-fill, calc(100% / 4 - 13px)); }
    @media screen and (max-width: 1800px) {
      .listing-grid .listing-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 3 - 13px)); } }
    @media screen and (max-width: 1400px) {
      .listing-grid .listing-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 6.5px)); } }
    @media screen and (max-width: 1100px) {
      .listing-grid .listing-grid-inner {
        grid-template-columns: repeat(auto-fill, 100%); } }
    @media screen and (max-width: 991px) {
      .listing-grid .listing-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 6.5px)); } }
    @media screen and (max-width: 650px) {
      .listing-grid .listing-grid-inner {
        grid-template-columns: repeat(auto-fill, 100%); } }
    .listing-grid .listing-grid-inner.big {
      grid-template-columns: repeat(auto-fill, calc(100% / 3 - 13px)); }
      @media screen and (max-width: 2300px) {
        .listing-grid .listing-grid-inner.big {
          grid-template-columns: repeat(auto-fill, calc(100% / 2 - 13px)); } }
      @media screen and (max-width: 1400px) {
        .listing-grid .listing-grid-inner.big {
          grid-template-columns: repeat(auto-fill, 100%); } }
      @media screen and (max-width: 1100px) {
        .listing-grid .listing-grid-inner.big {
          grid-template-columns: repeat(auto-fill, 100%); } }
      @media screen and (max-width: 991px) {
        .listing-grid .listing-grid-inner.big {
          grid-template-columns: repeat(auto-fill, 100%); } }
      @media screen and (max-width: 650px) {
        .listing-grid .listing-grid-inner.big {
          grid-template-columns: repeat(auto-fill, 100%); } }
  .listing-grid .listing-grid-pagination {
    margin-top: 5px; }

.header-main {
  position: relative;
  padding-top: 35px;
  box-shadow: 0px 9px 44px #00000029;
  line-height: 1;
  z-index: 101; }
  @media screen and (max-width: 991px) {
    .header-main {
      height: 79px;
      padding-top: 20px;
      box-shadow: none;
      border-bottom: 1px solid var(--border); } }
  .header-main.has-search {
    height: auto; }
  .header-main a {
    text-decoration: none;
    color: var(--black); }
    .header-main a:hover .icon {
      color: var(--primary); }
  .header-main .header-main-inner {
    position: relative; }
  .header-main .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
    border-top: 4px solid var(--black); }
  .header-main .header-left {
    display: flex;
    align-items: center;
    width: calc(100% - 380px); }
    @media screen and (max-width: 1600px) {
      .header-main .header-left {
        width: calc(100% - 230px); } }
    @media screen and (max-width: 1200px) {
      .header-main .header-left {
        width: calc(100% - 130px); } }
    @media screen and (max-width: 991px) {
      .header-main .header-left {
        width: auto; } }
  .header-main .header-logo a {
    display: flex; }
  .header-main .header-logo .logo {
    color: var(--primary);
    position: relative;
    width: 155px;
    height: 22px;
    top: 2px; }
    @media screen and (min-width: 320px) {
      .header-main .header-logo .logo {
        width: calc(155px + 75 * (100vw - 320px) / 180); } }
    @media screen and (min-width: 500px) {
      .header-main .header-logo .logo {
        width: 230px; } }
    @media screen and (min-width: 320px) {
      .header-main .header-logo .logo {
        height: calc(22px + 8 * (100vw - 320px) / 180); } }
    @media screen and (min-width: 500px) {
      .header-main .header-logo .logo {
        height: 30px; } }
    @media screen and (min-width: 320px) {
      .header-main .header-logo .logo {
        top: calc(2px + -2 * (100vw - 320px) / 180); } }
    @media screen and (min-width: 500px) {
      .header-main .header-logo .logo {
        top: 0px; } }
    .header-main .header-logo .logo.logo-zeitshift {
      width: 130px;
      height: 25px;
      top: 0px; }
      @media screen and (min-width: 320px) {
        .header-main .header-logo .logo.logo-zeitshift {
          width: calc(130px + 20 * (100vw - 320px) / 448); } }
      @media screen and (min-width: 768px) {
        .header-main .header-logo .logo.logo-zeitshift {
          width: 150px; } }
      @media screen and (min-width: 320px) {
        .header-main .header-logo .logo.logo-zeitshift {
          height: calc(25px + 5 * (100vw - 320px) / 448); } }
      @media screen and (min-width: 768px) {
        .header-main .header-logo .logo.logo-zeitshift {
          height: 30px; } }
      @media screen and (min-width: 320px) {
        .header-main .header-logo .logo.logo-zeitshift {
          top: calc(0px + 0 * (100vw - 320px) / 180); } }
      @media screen and (min-width: 500px) {
        .header-main .header-logo .logo.logo-zeitshift {
          top: 0px; } }
  .header-main .primary-nav {
    width: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 30px; }
    @media screen and (min-width: 1100px) {
      .header-main .primary-nav {
        margin-left: calc(30px + 145 * (100vw - 1100px) / 500); } }
    @media screen and (min-width: 1600px) {
      .header-main .primary-nav {
        margin-left: 175px; } }
    @media screen and (max-width: 991px) {
      .header-main .primary-nav {
        display: flex;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 5px;
        flex-direction: column;
        align-items: flex-start;
        visibility: hidden;
        position: absolute;
        z-index: 101;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding-left: 20px;
        box-sizing: border-box;
        box-shadow: 0px 40px 40px -30px #00000029;
        transform: scaleY(0);
        transform-origin: center top;
        transition: transform 0.5s ease 0.5s, visibility 0.5s ease 0.5s; }
        .header-main .primary-nav .nav-item {
          opacity: 0;
          transition: opacity 0.5s ease 0s; }
        .header-main .primary-nav.is-open {
          visibility: visible;
          transition: transform 0.5s ease 0s, visibility 0s ease 0s;
          transform: scaleY(1); }
          .header-main .primary-nav.is-open .nav-item {
            transition: opacity 0.5s ease 0.5s;
            opacity: 1; } }
    .header-main .primary-nav:hover .nav-item.active:after {
      transform: scaleX(0); }
    .header-main .primary-nav:hover .nav-item.active:hover:after {
      transform: scaleX(1); }
  .header-main .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 98px;
    margin-right: 30px;
    white-space: nowrap;
    line-height: 1.6; }
    @media screen and (min-width: 1450px) {
      .header-main .nav-item {
        margin-right: calc(30px + 34 * (100vw - 1450px) / 250); } }
    @media screen and (min-width: 1700px) {
      .header-main .nav-item {
        margin-right: 64px; } }
    @media screen and (max-width: 1200px) {
      .header-main .nav-item {
        font-size: 15px;
        margin-right: 25px; } }
    @media screen and (max-width: 1100px) {
      .header-main .nav-item {
        font-size: 15px;
        margin-right: 20px; } }
    @media screen and (max-width: 991px) {
      .header-main .nav-item {
        display: block;
        height: 45px;
        font-size: 17px; } }
    .header-main .nav-item a {
      line-height: 98px; }
      @media screen and (max-width: 991px) {
        .header-main .nav-item a {
          display: block;
          line-height: 30px; } }
    .header-main .nav-item:after {
      content: "";
      position: absolute;
      height: 4px;
      background: var(--primary);
      width: calc(100% + 10px);
      bottom: 20px;
      left: -5px;
      opacity: 0;
      pointer-events: none;
      transform: scaleX(0);
      transform-origin: center left;
      transition: transform 0.4s ease 0s, opacity 0s ease .4s; }
      @media screen and (max-width: 991px) {
        .header-main .nav-item:after {
          bottom: 10px;
          left: 0;
          height: 2px;
          width: 100%; } }
    .header-main .nav-item:hover:after {
      transform: scaleX(1);
      opacity: 1;
      transition: transform 0.4s ease 0s, opacity 0s ease 0s; }
    .header-main .nav-item.active:after {
      content: "";
      position: absolute;
      height: 4px;
      background: var(--primary);
      width: calc(100% + 10px);
      transform: scaleX(1);
      bottom: 20px;
      left: -5px;
      opacity: 1;
      transition: transform 0.4s ease 0s, opacity 0s ease 0s; }
      @media screen and (max-width: 991px) {
        .header-main .nav-item.active:after {
          bottom: 10px;
          left: 0;
          height: 2px;
          width: 100%; } }
    .header-main .nav-item:last-child {
      margin-right: 0; }
      @media screen and (max-width: 1600px) {
        .header-main .nav-item:last-child {
          margin-right: 30px; } }
  .header-main .header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 380px; }
    @media screen and (max-width: 1600px) {
      .header-main .header-right {
        width: 250px; } }
    @media screen and (max-width: 1200px) {
      .header-main .header-right {
        width: 200px;
        font-size: 15px; } }
    @media screen and (max-width: 991px) {
      .header-main .header-right {
        width: auto; } }
  .header-main .secondary-nav {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 550px) {
      .header-main .secondary-nav {
        position: absolute;
        top: calc(100% - 2px);
        z-index: 101;
        right: 5px;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s; }
        .header-main .secondary-nav.is-open {
          opacity: 1;
          visibility: visible;
          transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s; } }
    .header-main .secondary-nav .nav-item {
      margin-right: 35px; }
      .header-main .secondary-nav .nav-item:last-child {
        margin-right: 0; }
      @media screen and (max-width: 550px) {
        .header-main .secondary-nav .nav-item.active:after {
          bottom: 0px; } }
      @media screen and (max-width: 550px) {
        .header-main .secondary-nav .nav-item:hover:after {
          bottom: 0; } }
      @media screen and (max-width: 1200px) {
        .header-main .secondary-nav .nav-item {
          margin-right: 25px; } }
      @media screen and (max-width: 991px) {
        .header-main .secondary-nav .nav-item {
          display: flex;
          align-items: center;
          height: 60px; } }
      @media screen and (max-width: 550px) {
        .header-main .secondary-nav .nav-item {
          height: auto; } }
  .header-main .header-actions a {
    color: var(--black);
    transition: 0.2s ease color; }
    .header-main .header-actions a:hover {
      color: var(--primary); }
  .header-main .header-actions .icon {
    width: 27px;
    height: 27px;
    line-height: 27px;
    color: var(--black);
    transition: 0.2s ease color; }
    .header-main .header-actions .icon:last-child {
      margin-left: 20px;
      margin-left: 5px; }
      @media screen and (min-width: 1200px) {
        .header-main .header-actions .icon:last-child {
          margin-left: calc(5px + 15 * (100vw - 1200px) / 400); } }
      @media screen and (min-width: 1600px) {
        .header-main .header-actions .icon:last-child {
          margin-left: 20px; } }
  .header-main .mobile-burger-toggle {
    margin-bottom: -5px;
    margin-left: 20px; }
    @media screen and (min-width: 992px) {
      .header-main .mobile-burger-toggle {
        display: none; } }
    @media screen and (max-width: 500px) {
      .header-main .mobile-burger-toggle {
        margin-left: 15px; } }
    .header-main .mobile-burger-toggle button {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      font-size: 0;
      padding: 0; }
  .header-main .login-text {
    vertical-align: middle;
    margin-right: 22px; }
    @media screen and (max-width: 1600px) {
      .header-main .login-text {
        margin-right: 10px; } }
    @media screen and (max-width: 1200px) {
      .header-main .login-text {
        display: none; } }
.footer-main {
  height: 135px;
  display: flex;
  align-items: center;
  background-color: var(--gray);
  color: white;
  font-size: 14px; }
  @media screen and (max-width: 768px) {
    .footer-main {
      height: auto;
      padding: 20px 0; } }
  .footer-main.white {
    background-color: var(--white); }
    .footer-main.white a {
      color: var(--black); }
    .footer-main.white .footer-nav {
      color: var(--black); }
    .footer-main.white .licence-info-text {
      color: var(--black); }
  .footer-main a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4); }
  .footer-main .footer-wrapper {
    width: 100%; }
  .footer-main .footer-inner {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .footer-main .footer-inner {
        flex-wrap: wrap; } }
  .footer-main .footer-left {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    white-space: nowrap;
    margin-right: 40px; }
    @media screen and (max-width: 768px) {
      .footer-main .footer-left {
        margin-right: 0; } }
    @media screen and (max-width: 500px) {
      .footer-main .footer-left {
        white-space: normal; } }
  .footer-main .footer-info {
    display: flex;
    margin-bottom: -2px;
    margin-right: 33px; }
    @media screen and (max-width: 768px) {
      .footer-main .footer-info {
        margin-right: 20px;
        flex-wrap: wrap;
        flex-direction: column; } }
    @media screen and (max-width: 500px) {
      .footer-main .footer-info {
        margin-right: 0; } }
    .footer-main .footer-info .footer-logo {
      max-width: 296px;
      width: 100%;
      display: flex;
      align-items: flex-end;
      margin-bottom: 2px;
      margin-right: 20px; }
      @media screen and (max-width: 768px) {
        .footer-main .footer-info .footer-logo {
          margin-bottom: 10px; } }
      @media screen and (max-width: 768px) {
        .footer-main .footer-info .footer-logo:last-child {
          margin-bottom: 0; } }
      .footer-main .footer-info .footer-logo img {
        width: 100%; }
  .footer-main .footer-nav {
    color: rgba(255, 255, 255, 0.4); }
    @media screen and (max-width: 768px) {
      .footer-main .footer-nav {
        margin-top: 10px; } }
  .footer-main .powered-by {
    padding-right: 20px;
    box-sizing: border-box;
    display: inline-block; }
  .footer-main .footer-right {
    display: flex;
    align-items: flex-end; }
  .footer-main .licence-info-text {
    color: rgba(255, 255, 255, 0.4);
    margin-right: 33px;
    text-align: right; }
    @media screen and (max-width: 1400px) {
      .footer-main .licence-info-text {
        display: none; } }
  .footer-main .licence-info-image img {
    vertical-align: bottom;
    margin-top: 10px; }

.sidebar {
  font-size: 14px;
  min-width: 410px;
  max-width: 410px; }
  @media screen and (max-width: 1600px) {
    .sidebar {
      min-width: 360px;
      max-width: 360px; } }
  @media screen and (max-width: 500px) {
    .sidebar {
      min-width: 100%;
      max-width: 100%; } }
  .sidebar .sidebar-inner {
    width: calc(100% - 80px);
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px; }
    @media screen and (max-width: 1600px) {
      .sidebar .sidebar-inner {
        width: calc(100% - 30px); } }
    @media screen and (max-width: 991px) {
      .sidebar .sidebar-inner {
        width: calc(100% - 24px); } }
    @media screen and (max-width: 500px) {
      .sidebar .sidebar-inner {
        width: calc(100% - 20px); } }
@media screen and (max-width: 991px) {
  .main-content.has-sidebar.listing-sidebar {
    flex-wrap: wrap; } }

.main-content.has-sidebar.listing-sidebar .sidebar {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 100vh;
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--white);
  transition: 0.4s ease max-width, 0.4s ease min-width; }
  @media screen and (max-width: 991px) {
    .main-content.has-sidebar.listing-sidebar .sidebar {
      max-width: none;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      max-height: 100vh;
      overflow: auto;
      will-change: transform;
      transition: 0.4s ease max-height, 0.4s ease min-height; } }
  .main-content.has-sidebar.listing-sidebar .sidebar.is-closed {
    width: 0;
    min-width: 70px;
    max-width: 70px; }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar.is-closed {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        height: auto;
        min-height: 60px;
        max-height: 60px;
        transition: 0.4s ease max-height;
        overflow: hidden; } }
    .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-toggle {
      padding-left: 24px;
      background-color: var(--primary); }
      @media screen and (max-width: 500px) {
        .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-toggle {
          padding-left: 20px; } }
    .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-toggle-inner {
      padding-right: 0; }
    .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-filter-title {
      opacity: 0;
      width: 0;
      overflow: hidden;
      padding-left: 0;
      transition-delay: 0s, 0s, 0s; }
      @media screen and (max-width: 991px) {
        .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-filter-title {
          opacity: 1;
          width: auto;
          padding-left: 20px; } }
    .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-close {
      width: 0;
      overflow: hidden;
      margin: 0;
      opacity: 0;
      transition-delay: 0s, 0s; }
    .main-content.has-sidebar.listing-sidebar .sidebar.is-closed .sidebar-inner {
      opacity: 0;
      width: 100%;
      transition-delay: 0s, 0.4s; }
  .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-inner {
    padding-right: 50px;
    padding-top: 0;
    padding-bottom: 215px;
    opacity: 1;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: auto;
    will-change: transform;
    max-height: calc(100vh - 80px);
    transition: opacity 0.2s ease 0.2s, width 0.2s ease 0.2s; }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-inner {
        padding-bottom: 50vh;
        overflow: hidden;
        max-height: none; } }
    @media screen and (max-width: 500px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-inner {
        padding-right: 20px; } }
  .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle {
    width: 100%;
    background-color: var(--primary-dark);
    box-sizing: border-box;
    padding-left: 80px;
    cursor: pointer;
    transition: padding-left 0.2s ease 0.2s, background-color 0.8s ease 0s; }
    .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle:hover {
      background-color: var(--primary-dark); }
    @media screen and (max-width: 1600px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle {
        padding-left: 30px; } }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle {
        padding-left: 24px;
        position: sticky;
        top: 0;
        z-index: 20; } }
    @media screen and (max-width: 500px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle {
        padding-left: 20px; } }
  .main-content.has-sidebar.listing-sidebar .sidebar .icon-sliders {
    height: 28px;
    min-width: 22px;
    transform: scale(0.9); }
  .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle-inner {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
    box-sizing: border-box; }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-toggle-inner {
        height: 60px; } }
  .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-filter-title {
    padding-left: 20px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 1;
    width: 190px;
    white-space: nowrap;
    transition: width 0.2s ease 0.2s, opacity 0.2s ease 0.2s, padding-left 0.2s ease 0.2s; }
  .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-close {
    margin-left: auto;
    transform: scale(0.6);
    opacity: 1;
    width: 22px;
    overflow: hidden;
    transition: width 0.2s ease 0.2s, opacity 0.2s ease 0.2s; }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-close {
        transition: none; } }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.listing-sidebar .sidebar .sidebar-close .icon {
        transform: rotate(90deg); } }
.main-content.has-sidebar.listing-sidebar .main-content-inner {
  background-color: var(--offwhite);
  will-change: transform; }
  .main-content.has-sidebar.listing-sidebar .main-content-inner .container {
    margin-left: 35px; }
    @media screen and (max-width: 1600px) {
      .main-content.has-sidebar.listing-sidebar .main-content-inner .container {
        margin: 0 20px; } }
@media screen and (max-width: 991px) {
  .main-content.has-sidebar.faq-sidebar {
    flex-wrap: wrap; } }

.main-content.has-sidebar.faq-sidebar .sidebar {
  margin-top: 60px; }
  @media screen and (min-width: 991px) {
    .main-content.has-sidebar.faq-sidebar .sidebar {
      margin-top: calc(60px + 30 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .main-content.has-sidebar.faq-sidebar .sidebar {
      margin-top: 90px; } }
  @media screen and (max-width: 991px) {
    .main-content.has-sidebar.faq-sidebar .sidebar {
      width: 100%;
      max-width: 400px;
      margin-top: 30px; } }
  .main-content.has-sidebar.faq-sidebar .sidebar .sidebar-inner {
    border-top: 4px solid var(--black); }
    @media screen and (max-width: 991px) {
      .main-content.has-sidebar.faq-sidebar .sidebar .sidebar-inner {
        width: calc(100% - 40px);
        margin: 0 auto; } }
  @media screen and (max-width: 991px) {
    .main-content.has-sidebar.faq-sidebar .sidebar + .main-content-inner {
      padding-left: 0;
      min-height: 65vh; } }
.main-content.has-sidebar.faq-sidebar .sidebar-inner {
  position: sticky;
  top: 20px; }
  @media screen and (max-width: 991px) {
    .main-content.has-sidebar.faq-sidebar .sidebar-inner {
      padding-bottom: 0; } }
.main-content.has-sidebar.faq-sidebar .anchor-navigation li {
  margin-bottom: 20px; }

.main-content.has-sidebar.faq-sidebar .anchor-navigation a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s ease color; }
  .main-content.has-sidebar.faq-sidebar .anchor-navigation a:hover {
    color: var(--primary); }

.main-content.has-sidebar.faq-sidebar .text-container,
.main-content.has-sidebar.faq-sidebar .image-container {
  padding-left: 20px;
  padding-right: 20px; }
  @media screen and (max-width: 991px) {
    .main-content.has-sidebar.faq-sidebar .text-container,
    .main-content.has-sidebar.faq-sidebar .image-container {
      padding: 0;
      margin-top: 20px; } }
.page-detail {
  min-height: inherit;
  margin-bottom: -20px;
  background-color: var(--offwhite); }

.btn {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
  border: none;
  padding: 17px 25px;
  box-sizing: border-box;
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  transition: 0.4s ease background-color;
  white-space: nowrap;
  text-decoration: none; }
  @media screen and (max-width: 991px) {
    .btn {
      padding: 12px 15px;
      font-size: 13px; } }
  .btn:hover {
    background-color: var(--primary-dark); }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5; }
    .btn[disabled]:hover {
      background-color: var(--primary); }
  .btn.btn-outline {
    color: var(--white);
    border: 1px solid var(--white); }
  .btn.btn-small {
    padding: 10px 15px;
    text-transform: none;
    font-weight: normal;
    line-height: 1.1; }
    @media screen and (max-width: 991px) {
      .btn.btn-small {
        padding: 10px 15px;
        font-size: 14px; } }
  .btn.edit-book-meta {
    display: block;
    text-align: center;
    margin-top: 5px; }

.search-bar {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-left: 50px;
  box-sizing: border-box;
  border-top: 1px solid var(--border); }
  @media screen and (max-width: 1600px) {
    .search-bar {
      padding-left: 0; } }
  .search-bar .search-bar-inner {
    background-color: var(--white);
    border-radius: 7px;
    height: 78px;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 991px) {
      .search-bar .search-bar-inner {
        height: 60px; } }
    .search-bar .search-bar-inner form {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%; }
  .search-bar .search-type-select + .search-bar-input {
    margin-left: 0;
    width: calc(100% - 350px - 80px);
    min-width: 280px; }
    @media screen and (max-width: 1200px) {
      .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 95px - 80px);
        min-width: 0; } }
    @media screen and (max-width: 991px) {
      .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 95px - 60px); } }
    @media screen and (max-width: 500px) {
      .search-bar .search-type-select + .search-bar-input {
        width: calc(100% - 135px); } }
    .search-bar .search-type-select + .search-bar-input:before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      width: 1px;
      height: 54px;
      background-color: var(--border); }
      @media screen and (max-width: 991px) {
        .search-bar .search-type-select + .search-bar-input:before {
          height: 34px; } }
  .search-bar .search-type-select {
    position: relative;
    flex-basis: 364px;
    height: 80px;
    line-height: 80px;
    box-sizing: border-box;
    font-weight: 500;
    z-index: 3; }
    @media screen and (max-width: 1200px) {
      .search-bar .search-type-select {
        flex-basis: 105px; } }
    @media screen and (max-width: 991px) {
      .search-bar .search-type-select {
        height: 60px;
        line-height: 60px; } }
    @media screen and (max-width: 500px) {
      .search-bar .search-type-select {
        flex-basis: 70px; } }
    .search-bar .search-type-select.is-open .select-box {
      transform: scaleY(1);
      visibility: visible;
      box-shadow: 0px 13px 14px #00000029; }
      .search-bar .search-type-select.is-open .select-box .type-select-option {
        opacity: 1;
        transition: opacity 0.2s ease 0.4s; }
    .search-bar .search-type-select.is-open .toggle-indicator .icon {
      transform: scale(0.5) rotate(180deg); }
    .search-bar .search-type-select .current-type {
      padding-left: 30px;
      cursor: pointer;
      display: flex;
      flex-direction: row;
      width: 100%;
      box-sizing: border-box; }
      @media screen and (max-width: 991px) {
        .search-bar .search-type-select .current-type {
          padding-left: 24px; } }
      @media screen and (max-width: 500px) {
        .search-bar .search-type-select .current-type {
          padding-left: 20px;
          width: 75px; } }
    .search-bar .search-type-select .current-type-icon {
      display: inline-block;
      margin-right: 20px; }
      @media screen and (max-width: 1200px) {
        .search-bar .search-type-select .current-type-icon {
          margin-right: 5px; } }
    .search-bar .search-type-select .current-type-label {
      padding-right: 10px;
      white-space: nowrap;
      bottom: -2px;
      position: relative;
      height: 78px; }
      @media screen and (max-width: 1200px) {
        .search-bar .search-type-select .current-type-label {
          display: none; } }
      @media screen and (max-width: 991px) {
        .search-bar .search-type-select .current-type-label {
          height: 58px; } }
    .search-bar .search-type-select .toggle-indicator {
      position: relative;
      margin-left: auto;
      padding-right: 20px;
      pointer-events: none;
      color: var(--primary); }
      @media screen and (max-width: 1200px) {
        .search-bar .search-type-select .toggle-indicator {
          padding-right: 15px; } }
      .search-bar .search-type-select .toggle-indicator .icon {
        transform-origin: center center;
        transform: scale(0.5);
        transition: transform 0.2s ease 0s; }
    .search-bar .search-type-select .select-box {
      position: absolute;
      z-index: 1;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--white);
      line-height: 30px;
      padding-top: 5px;
      margin-top: -7px;
      box-sizing: border-box;
      white-space: nowrap;
      border-bottom-left-radius: 7px;
      border-bottom-right-radius: 7px;
      transform: scaleY(0);
      transform-origin: center top;
      box-shadow: 0px 13px 14px #00000000;
      transition: transform 0.4s ease 0s, box-shadow 0.4s ease 0s; }
      @media screen and (max-width: 1200px) {
        .search-bar .search-type-select .select-box {
          width: auto; } }
      @media screen and (max-width: 500px) {
        .search-bar .search-type-select .select-box {
          max-width: calc(100vw - 60px);
          width: calc(100vw - 60px); } }
    .search-bar .search-type-select .type-select-option {
      display: flex;
      padding: 6px 30px;
      opacity: 0;
      border: 1px solid var(--white);
      transition: opacity 0.2s ease 0s;
      cursor: pointer; }
      @media screen and (max-width: 500px) {
        .search-bar .search-type-select .type-select-option {
          padding: 6px 20px;
          font-size: 15px; } }
      .search-bar .search-type-select .type-select-option:last-child {
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px; }
      .search-bar .search-type-select .type-select-option:hover {
        background-color: var(--primary);
        color: white; }
      .search-bar .search-type-select .type-select-option .option-label {
        margin-left: 20px; }
        @media screen and (max-width: 500px) {
          .search-bar .search-type-select .type-select-option .option-label {
            margin-left: 20px;
            white-space: normal;
            line-height: 1;
            align-self: center; } }
  .search-bar .search-bar-input {
    position: relative;
    width: calc(100% - 80px); }
    @media screen and (max-width: 991px) {
      .search-bar .search-bar-input {
        width: calc(100% - 60px); } }
    .search-bar .search-bar-input input {
      box-sizing: border-box;
      border: none;
      height: 78px;
      width: calc(100% - 2px);
      padding-left: 35px;
      padding-right: 60px;
      border-left: 1px solid var(--border);
      outline: none;
      border-radius: 0;
      font-size: 16px;
      border: none;
      color: var(--primary);
      font-weight: 600;
      background: transparent; }
      @media screen and (max-width: 991px) {
        .search-bar .search-bar-input input {
          height: 60px;
          padding-left: 20px; } }
      @media screen and (max-width: 500px) {
        .search-bar .search-bar-input input {
          padding-right: 0px; } }
    .search-bar .search-bar-input.has-text .search-bar-clear {
      display: flex; }
    @media screen and (max-width: 500px) {
      .search-bar .search-bar-input.has-text input {
        padding-right: 40px; } }
    .search-bar .search-bar-input .search-bar-clear {
      display: none;
      position: absolute;
      width: 50px;
      height: 50px;
      justify-content: center;
      align-items: center;
      right: 10px;
      top: 50%;
      color: var(--primary);
      cursor: pointer;
      background-color: var(--white);
      transform: translateY(-50%);
      z-index: 1; }
      .search-bar .search-bar-input .search-bar-clear .icon {
        transform: scale(0.9); }
      @media screen and (max-width: 991px) {
        .search-bar .search-bar-input .search-bar-clear .icon {
          transform: scale(0.8); } }
      @media screen and (max-width: 500px) {
        .search-bar .search-bar-input .search-bar-clear {
          right: 0;
          width: 20px;
          padding-right: 10px;
          padding-left: 10px; }
          .search-bar .search-bar-input .search-bar-clear .icon {
            transform: scale(0.8); } }
    .search-bar .search-bar-input .suggestion-box {
      position: absolute;
      opacity: 0;
      left: 0;
      top: 100%;
      width: 100%;
      z-index: 100;
      background: white;
      box-sizing: border-box;
      padding: 0;
      box-shadow: 0px 13px 14px #00000029;
      border-bottom-left-radius: 7px;
      border-bottom-right-radius: 7px;
      padding-top: 5px;
      margin-top: -5px; }
      .search-bar .search-bar-input .suggestion-box.is-open {
        opacity: 1; }
      .search-bar .search-bar-input .suggestion-box li {
        cursor: pointer;
        padding: 10px 35px; }
        @media screen and (max-width: 500px) {
          .search-bar .search-bar-input .suggestion-box li {
            padding: 10px 20px; } }
        .search-bar .search-bar-input .suggestion-box li:last-child {
          padding-bottom: 20px; }
          @media screen and (max-width: 500px) {
            .search-bar .search-bar-input .suggestion-box li:last-child {
              padding-bottom: 15px; } }
  .search-bar .search-bar-submit button {
    height: 80px;
    width: 80px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background-color: var(--primary-dark);
    color: var(--white);
    cursor: pointer;
    outline-color: var(--primary); }
    @media screen and (max-width: 991px) {
      .search-bar .search-bar-submit button {
        height: 60px;
        width: 60px; } }
    .search-bar .search-bar-submit button .icon {
      color: var(--white); }
      @media screen and (max-width: 991px) {
        .search-bar .search-bar-submit button .icon {
          transform-origin: center center;
          transform: scale(0.8);
          margin-top: -3px; } }
  @media screen and (max-width: 500px) {
    .search-bar .search-bar-help {
      display: none; } }
  .search-bar .search-bar-help .search-bar-help-text {
    display: none; }
  .search-bar .search-bar-help .search-bar-help-text-link {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    text-decoration: none;
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--black);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
    @media screen and (max-width: 991px) {
      .search-bar .search-bar-help .search-bar-help-text-link {
        right: 80px; } }
.text-container {
  max-width: 991px;
  margin: 0 auto;
  padding-top: 40px;
  box-sizing: border-box; }
  @media screen and (min-width: 991px) {
    .text-container {
      padding-top: calc(40px + 25 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .text-container {
      padding-top: 65px; } }
.image-container {
  max-width: 991px;
  margin: 0 auto;
  padding-top: 10px;
  box-sizing: border-box; }
  .image-container img {
    max-width: 100%; }

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap; }
  @media screen and (max-width: 768px) {
    .pagination {
      justify-content: flex-start; } }
  .pagination .pagination-actions {
    display: flex;
    align-items: center; }
  .pagination .pagination-action {
    margin: 0 5px; }
    @media screen and (max-width: 768px) {
      .pagination .pagination-action {
        transform: scale(0.9);
        margin: 0 2px; } }
    .pagination .pagination-action a {
      color: var(--black);
      transition: 0.2s ease color; }
      .pagination .pagination-action a:hover {
        color: var(--primary); }
  .pagination .pagination-next .icon {
    transform: rotate(180deg);
    margin-top: 4px; }
  .pagination .pagination-last .icon {
    transform: rotate(180deg);
    margin-top: 4px; }
  .pagination .pagination-form {
    margin: 0 10px -2px 10px;
    white-space: nowrap; }
    @media screen and (max-width: 768px) {
      .pagination .pagination-form {
        font-size: 14px;
        margin: 0 5px 0 3px; } }
  @media screen and (max-width: 768px) {
    .pagination .pagination-text-page {
      display: none; } }
  .pagination .pagination-input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--border);
    line-height: 1;
    padding: 8px 0px;
    text-align: center;
    box-sizing: border-box;
    width: 50px;
    font-size: 16px;
    outline-color: var(--primary);
    border-radius: 3px;
    margin: 0 5px; }
    @media screen and (max-width: 768px) {
      .pagination .pagination-input {
        margin: 0 2px; } }
    .pagination .pagination-input:focus {
      outline-color: var(--primary); }

.download-pages .download-pages-cta {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: black;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: bold;
  font-size: 14px;
  transition: .2s ease color; }
  .download-pages .download-pages-cta:hover {
    color: var(--primary); }
  .download-pages .download-pages-cta .icon {
    position: relative;
    top: -3px;
    margin-right: 15px;
    color: currentColor; }

.scroll-top-button {
  position: fixed;
  bottom: 14px;
  right: 14px; }
  @media screen and (max-width: 1600px) {
    .scroll-top-button {
      display: none; } }
  .scroll-top-button .btn {
    transform: rotate(90deg);
    padding: 15px;
    width: 55px;
    height: 55px; }
    .scroll-top-button .btn .icon {
      width: 19px;
      height: 19px;
      line-height: 16px; }

.overlay {
  position: fixed;
  z-index: 1000;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(40, 40, 40, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: black;
  white-space: normal; }
  .overlay .overlay-inner {
    margin: 60px auto;
    width: calc(100% - 40px);
    max-width: 1095px;
    background: var(--white);
    border-radius: 11px; }
    @media screen and (max-width: 991px) {
      .overlay .overlay-inner {
        margin: 50px auto; } }
    @media screen and (max-width: 991px) {
      .overlay .overlay-inner {
        margin: 0 auto;
        border-radius: 0;
        width: 100%; } }
  .overlay .overlay-header {
    display: flex;
    padding: 30px 30px 0 30px; }
    @media screen and (max-width: 991px) {
      .overlay .overlay-header {
        padding: 20px 20px 0 20px; } }
    .overlay .overlay-header .icon {
      color: var(--black); }
    .overlay .overlay-header:before {
      content: "";
      width: calc(100% - 60px);
      height: 4px;
      background-color: var(--black);
      margin-right: auto; }
      @media screen and (max-width: 991px) {
        .overlay .overlay-header:before {
          width: calc(100% - 50px); } }
  .overlay .overlay-close {
    cursor: pointer; }
    @media screen and (max-width: 991px) {
      .overlay .overlay-close {
        transform-origin: right top;
        transform: scale(0.8); } }
  .overlay .overlay-body {
    padding: 0 30px 30px 30px; }
    @media screen and (max-width: 991px) {
      .overlay .overlay-body {
        padding: 0 20px 20px 20px; } }
  .overlay .overlay-info-list {
    padding-right: 40px;
    box-sizing: border-box; }
    @media screen and (max-width: 500px) {
      .overlay .overlay-info-list {
        padding-right: 0; } }
    .overlay .overlay-info-list .info-list-heading {
      font-weight: 500;
      margin-bottom: 5px;
      margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .overlay .overlay-info-list .info-list-heading {
          margin-top: 15px; } }
      .overlay .overlay-info-list .info-list-heading:first-child {
        margin-top: 0; }
    .overlay .overlay-info-list .info-list-text {
      line-height: 26px; }
  .overlay .filter-table {
    margin-top: 10px; }
    .overlay .filter-table .filter-table-header {
      display: flex;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      border-bottom: 4px solid var(--black);
      height: 40px;
      align-items: center; }
      .overlay .filter-table .filter-table-header .table-header-col {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 5px;
        cursor: pointer;
        white-space: nowrap;
        user-select: none; }
        .overlay .filter-table .filter-table-header .table-header-col .icon {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 17px;
          height: 11px;
          line-height: 1; }
          .overlay .filter-table .filter-table-header .table-header-col .icon svg {
            width: 100%;
            height: 100%; }
        .overlay .filter-table .filter-table-header .table-header-col.asc .sorting-icon .asc-arrow {
          fill: var(--dark); }
        .overlay .filter-table .filter-table-header .table-header-col.desc .sorting-icon .desc-arrow {
          fill: var(--dark); }
      .overlay .filter-table .filter-table-header .sorting-icon {
        transform: scaleX(-1); }
        .overlay .filter-table .filter-table-header .sorting-icon .desc-arrow,
        .overlay .filter-table .filter-table-header .sorting-icon .asc-arrow {
          fill: #ababab; }
    .overlay .filter-table .filter-table-body {
      margin-bottom: 10px; }
    .overlay .filter-table .table-header-checkbox {
      min-width: 50px;
      width: 50px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .table-header-checkbox {
          min-width: 0;
          width: 0; } }
    .overlay .filter-table .table-header-number {
      min-width: 60px;
      width: 60px;
      text-align: center; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .table-header-number {
          min-width: 70px;
          width: 70px; } }
    .overlay .filter-table .table-header-title {
      margin-right: auto;
      padding-left: 20px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .table-header-title {
          padding-left: 5px; } }
    .overlay .filter-table .table-header-col.table-header-info {
      min-width: 30%;
      width: 30%; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .table-header-col.table-header-info {
          justify-content: flex-end; } }
    .overlay .filter-table .table-row {
      display: flex;
      align-items: center;
      min-height: 62px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .table-row {
          flex-wrap: wrap; } }
      .overlay .filter-table .table-row:nth-child(odd) {
        background-color: var(--offwhite); }
    .overlay .filter-table .table-col {
      line-height: 25px;
      box-sizing: border-box; }
    .overlay .filter-table .col-checkbox {
      min-width: 50px;
      width: 50px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .col-checkbox {
          min-width: 40px;
          width: 40px; } }
    .overlay .filter-table .col-number {
      text-align: center;
      min-width: 60px;
      width: 60px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .col-number {
          min-width: 30px;
          width: 30px; } }
    .overlay .filter-table .col-title {
      margin-right: auto;
      padding: 20px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .col-title {
          width: calc(100% - 90px);
          padding: 10px 5px;
          line-height: 1.2; } }
    .overlay .filter-table .col-info {
      min-width: 30%;
      width: 30%;
      padding-right: 10px; }
      @media screen and (max-width: 768px) {
        .overlay .filter-table .col-info {
          width: 100%;
          padding: 0 10px 5px 75px;
          line-height: 1.2; } }
    .overlay .filter-table .filter-table-apply {
      position: sticky;
      bottom: 20px;
      width: 100%;
      background: var(--offwhite);
      border: 1px solid var(--border);
      height: 80px;
      display: flex;
      align-items: center;
      box-shadow: 0px 0px 15px #00000033;
      border-radius: 7px; }
      @media screen and (max-width: 991px) {
        .overlay .filter-table .filter-table-apply {
          bottom: 10px;
          height: auto;
          padding: 10px 0; } }
      .overlay .filter-table .filter-table-apply form {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px; }
        @media screen and (max-width: 991px) {
          .overlay .filter-table .filter-table-apply form {
            padding: 0px 10px; } }
      .overlay .filter-table .filter-table-apply .filter-selected-count {
        padding-right: 10px; }
      .overlay .filter-table .filter-table-apply .filter-counter-snippet:after {
        content: " - "; }
      .overlay .filter-table .filter-table-apply .clear-filter {
        text-decoration: underline;
        color: var(--primary);
        cursor: pointer; }

.text-overlay .overlay-body {
  padding: 0 80px 30px 30px; }
  @media screen and (max-width: 768px) {
    .text-overlay .overlay-body {
      padding: 0 30px 30px 30px; } }
.image-overlay .overlay-top {
  display: flex;
  justify-content: space-between;
  padding-top: 20px; }
  @media screen and (max-width: 768px) {
    .image-overlay .overlay-top {
      flex-wrap: wrap; } }
.image-overlay .overlay-image {
  width: 210px;
  min-width: 210px; }
  @media screen and (max-width: 768px) {
    .image-overlay .overlay-image {
      margin-top: 20px; } }
  .image-overlay .overlay-image img {
    width: 100%; }

.image-overlay .overlay-bottom {
  margin-top: 30px; }

.datepicker-overlay .year-switcher {
  margin-top: 10px; }

.datepicker-overlay .year-button {
  padding: 5px 15px;
  border: 2px solid var(--border);
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  box-shadow: 0px 2px 2px #00000015;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.2s ease color, 0.2s ease background-color, 0.2s ease border-color; }
  .datepicker-overlay .year-button.current {
    border-color: var(--primary);
    cursor: default; }
    .datepicker-overlay .year-button.current:hover {
      color: var(--black);
      background-color: transparent; }
  .datepicker-overlay .year-button:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary); }

.datepicker-overlay .calendar {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.datepicker-overlay .calendar-month {
  display: inline-block;
  width: calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
  max-width: 290px;
  margin-bottom: 40px;
  margin: 20px 0; }
  @media screen and (max-width: 991px) {
    .datepicker-overlay .calendar-month {
      width: calc(100% / 2);
      max-width: 100%;
      padding: 0 20px; } }
  @media screen and (max-width: 767px) {
    .datepicker-overlay .calendar-month {
      width: 100%;
      max-width: 400px;
      margin: 10px auto 20px auto;
      padding: 0; }
      .datepicker-overlay .calendar-month:last-child {
        margin-bottom: 0; }
      .datepicker-overlay .calendar-month:first-child {
        margin-top: 20px; } }
.datepicker-overlay .calendar-month-name {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.34px; }

.datepicker-overlay .calendar-display {
  width: 100%;
  margin: 20px auto 0 auto; }

.datepicker-overlay .calendar-weekday {
  font-size: 14px;
  width: calc(100% / 7 - 4px);
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 20px;
  color: var(--lightgray); }

.datepicker-overlay .calendar-noday {
  width: calc(100% / 7 - 4px);
  display: inline-block;
  height: 1px;
  color: #fff; }

.datepicker-overlay .calendar-day {
  display: inline-flex;
  width: calc(100% / 7 - 4px);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--black);
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-sizing: border-box; }
  .datepicker-overlay .calendar-day.current {
    border: 2px solid var(--primary); }
  .datepicker-overlay .calendar-day.occasion {
    color: var(--white);
    background-color: var(--primary); }
    .datepicker-overlay .calendar-day.occasion a {
      color: var(--white);
      text-decoration: none; }

.captcha-overlay .captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px; }

.captcha-overlay .btn {
  display: block;
  margin-left: auto;
  margin-top: 15px; }

.captcha-overlay .captcha-info-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold; }

.captcha-overlay .form-input {
  min-width: 180px; }

.language-switcher {
  position: relative; }
  @media screen and (max-width: 1200px) {
    .language-switcher {
      margin-right: 25px; } }
  @media screen and (max-width: 500px) {
    .language-switcher {
      margin-right: 20px; } }
  .language-switcher .current-language {
    cursor: pointer;
    white-space: nowrap;
    line-height: 30px; }
    @media screen and (max-width: 991px) {
      .language-switcher .current-language {
        font-size: 17px; } }
  .language-switcher.is-open .language-switcher-options {
    display: block; }
  .language-switcher.is-open .toggle-indicator {
    transform: scale(0.5) rotate(180deg); }
  .language-switcher .language-switcher-options {
    display: none;
    position: absolute;
    z-index: 200;
    text-align: center;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 10px);
    border-top: 1px solid var(--border); }
    .language-switcher .language-switcher-options a {
      display: block;
      white-space: nowrap;
      padding: 10px;
      box-sizing: border-box;
      background-color: white;
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border); }
  .language-switcher .toggle-indicator {
    display: inline-block;
    color: var(--primary);
    width: 20px;
    transform: scale(0.5); }

.page-slider-sidebar {
  position: relative;
  overflow: hidden;
  width: 337px;
  background-color: var(--primary-dark); }
  @media screen and (min-width: 2200px) {
    .page-slider-sidebar {
      width: 500px; } }
  @media screen and (max-width: 991px) {
    .page-slider-sidebar {
      width: 100%;
      height: auto; } }
  .page-slider-sidebar .page-slider-inner {
    position: absolute;
    width: 100%;
    animation: scroll-vertically 100s linear 0s infinite alternate;
    will-change: transform;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 991px) {
      .page-slider-sidebar .page-slider-inner {
        display: block;
        width: max-content;
        height: auto;
        position: relative;
        white-space: nowrap;
        animation: none;
        overflow: auto;
        width: 100%; } }
    .page-slider-sidebar .page-slider-inner:hover {
      animation-play-state: paused; }

@keyframes scroll-vertically {
  0% {
    transform: translateY(0%); }
  100% {
    transform: translateY(calc(-100% + 100vh - 272px)); } }

@keyframes scroll-horizontally {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(calc(-100% + 100vw)); } }
    .page-slider-sidebar .page-slider-inner .page {
      position: relative;
      width: calc(100% - 160px);
      margin: 0 auto;
      margin-bottom: 15px;
      margin-top: 15px;
      height: auto;
      box-shadow: 0px 3px 20px #00000096; }
      @media screen and (max-width: 2199px) {
        .page-slider-sidebar .page-slider-inner .page {
          width: calc(100% - 80px); } }
      @media screen and (max-width: 991px) {
        .page-slider-sidebar .page-slider-inner .page {
          width: auto;
          height: 100%;
          margin: 30px 15px;
          display: inline-block;
          flex-shrink: 0; } }
      .page-slider-sidebar .page-slider-inner .page img {
        width: 100%;
        display: block; }
    .page-slider-sidebar .page-slider-inner .page-year {
      position: absolute;
      bottom: 20px;
      left: 20px;
      padding: 5px 13px;
      box-sizing: border-box;
      background: white;
      color: black;
      font-weight: bold;
      font-size: 14px;
      border: 1px solid var(--border);
      pointer-events: none; }

.breadcrumbs {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media screen and (max-width: 768px) {
    .breadcrumbs {
      flex-wrap: wrap;
      padding-bottom: 0px;
      padding-top: 10px; } }
  .breadcrumbs a {
    color: currentColor;
    text-decoration: none;
    text-decoration: none; }
  .breadcrumbs .back-link {
    display: flex;
    text-transform: uppercase;
    color: var(--black);
    font-size: 14px;
    font-weight: bold;
    margin-right: 58px;
    letter-spacing: 1.82px;
    white-space: nowrap; }
    @media screen and (max-width: 768px) {
      .breadcrumbs .back-link {
        display: none; } }
    .breadcrumbs .back-link .icon {
      color: var(--black);
      width: 16px;
      margin-right: 20px; }
  .breadcrumbs .breadcrumbs-link-wrapper {
    color: var(--lightgray); }
    @media screen and (max-width: 768px) {
      .breadcrumbs .breadcrumbs-link-wrapper {
        margin-top: 15px; } }
    .breadcrumbs .breadcrumbs-link-wrapper a:hover {
      color: var(--primary); }
      .breadcrumbs .breadcrumbs-link-wrapper a:hover:after {
        color: var(--lightgray); }
    .breadcrumbs .breadcrumbs-link-wrapper .crumb {
      font-size: 14px;
      letter-spacing: 0.21px;
      line-height: 1.7; }
      @media screen and (max-width: 768px) {
        .breadcrumbs .breadcrumbs-link-wrapper .crumb {
          font-size: 12px;
          line-height: 1.4; } }
      .breadcrumbs .breadcrumbs-link-wrapper .crumb:after {
        content: "-";
        margin: 0 10px; }
      .breadcrumbs .breadcrumbs-link-wrapper .crumb:last-child:after {
        display: none; }

.detail-header {
  background-color: var(--offwhite); }
  .detail-header .detail-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-top: 20px; }
    @media screen and (max-width: 991px) {
      .detail-header .detail-header-inner {
        flex-wrap: wrap; } }
  @media screen and (max-width: 768px) {
    .detail-header .detail-properties {
      display: flex;
      flex-wrap: wrap; } }
  .detail-header .detail-header-left {
    width: calc(100% - 370px);
    max-width: 70%;
    padding-right: 40px; }
    @media screen and (max-width: 991px) {
      .detail-header .detail-header-left {
        width: 100%;
        max-width: 100%;
        padding-right: 0; } }
  .detail-header .detail-header-right {
    width: 370px;
    min-width: 370px; }
    @media screen and (max-width: 991px) {
      .detail-header .detail-header-right {
        max-width: none;
        min-width: 0;
        margin-top: 20px;
        width: 100%; } }
.detail-title {
  display: flex;
  align-items: flex-start; }
  @media screen and (max-width: 1200px) {
    .detail-title {
      margin-bottom: 10px; } }
  @media screen and (max-width: 768px) {
    .detail-title {
      justify-content: space-between;
      align-items: flex-start; } }
  .detail-title .title-text {
    margin-right: 20px;
    padding-top: 0;
    margin-top: -10px;
    margin-top: 1px;
    font-size: 24px; }
    @media screen and (min-width: 991px) {
      .detail-title .title-text {
        margin-top: calc(1px + -11 * (100vw - 991px) / 609); } }
    @media screen and (min-width: 1600px) {
      .detail-title .title-text {
        margin-top: -10px; } }
    @media screen and (min-width: 991px) {
      .detail-title .title-text {
        font-size: calc(24px + 14 * (100vw - 991px) / 609); } }
    @media screen and (min-width: 1600px) {
      .detail-title .title-text {
        font-size: 38px; } }
    @media screen and (max-width: 768px) {
      .detail-title .title-text {
        padding-top: 0; } }
  .detail-title .info-icon-container {
    cursor: pointer; }
  .detail-title .info-icon-container .icon {
    width: 30px;
    color: var(--primary); }

.detail-issue-select {
  width: 100%; }
  .detail-issue-select .wishlist {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.82px;
    font-weight: bold;
    padding-bottom: 10px; }
    @media screen and (max-width: 991px) {
      .detail-issue-select .wishlist {
        align-items: center; } }
    .detail-issue-select .wishlist .wishlist-text {
      cursor: pointer; }
    .detail-issue-select .wishlist .wishlist-action {
      cursor: pointer;
      padding-bottom: 10px; }
      @media screen and (max-width: 991px) {
        .detail-issue-select .wishlist .wishlist-action {
          padding-bottom: 0; } }
    .detail-issue-select .wishlist .wishlist-selects {
      width: 100%; }
    .detail-issue-select .wishlist .wishlist-select-list {
      line-height: 30px;
      text-transform: none;
      letter-spacing: 0; }
      @media screen and (max-width: 991px) {
        .detail-issue-select .wishlist .wishlist-select-list:first-child {
          padding-top: 5px; } }
      .detail-issue-select .wishlist .wishlist-select-list a {
        text-decoration: none;
        color: var(--black);
        transition: .2s ease color; }
        .detail-issue-select .wishlist .wishlist-select-list a:hover {
          color: var(--primary); }
  .detail-issue-select .issue-select {
    padding-top: 20px;
    border-top: 4px solid var(--black);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 991px) {
      .detail-issue-select .issue-select {
        padding-bottom: 0; } }
    .detail-issue-select .issue-select .issue-select-text {
      display: inline-block;
      line-height: 1;
      vertical-align: top;
      letter-spacing: 1.82px;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      margin-right: 40px; }
      @media screen and (max-width: 500px) {
        .detail-issue-select .issue-select .issue-select-text {
          margin-right: 20px; } }
    .detail-issue-select .issue-select .date-select-wrapper {
      white-space: nowrap;
      cursor: pointer; }
    .detail-issue-select .issue-select .issue-select-date {
      display: inline-block;
      font-size: 32px;
      font-size: 20px;
      font-weight: bold;
      line-height: 1;
      margin-right: 40px; }
      @media screen and (min-width: 991px) {
        .detail-issue-select .issue-select .issue-select-date {
          font-size: calc(20px + 8 * (100vw - 991px) / 609); } }
      @media screen and (min-width: 1600px) {
        .detail-issue-select .issue-select .issue-select-date {
          font-size: 28px; } }
      @media screen and (max-width: 500px) {
        .detail-issue-select .issue-select .issue-select-date {
          margin-right: 20px; } }
    .detail-issue-select .issue-select .issue-select-action {
      display: inline-block;
      line-height: 1;
      vertical-align: top;
      color: var(--primary); }
      @media screen and (max-width: 500px) {
        .detail-issue-select .issue-select .issue-select-action {
          transform-origin: center top;
          transform: scale(0.8); } }
.detail-property {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding-right: 30px;
  width: calc(100% / 4 - 4px);
  font-size: 14px; }
  @media screen and (max-width: 1200px) {
    .detail-property {
      width: calc(100% / 3 - 4px); } }
  @media screen and (max-width: 991px) {
    .detail-property {
      width: calc(100% / 4 - 4px); } }
  @media screen and (max-width: 768px) {
    .detail-property {
      width: 100%;
      padding-right: 0;
      display: flex;
      align-items: center;
      margin-bottom: 0px; } }
  .detail-property .property-title {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    margin-bottom: 10px; }
    @media screen and (max-width: 768px) {
      .detail-property .property-title {
        margin-bottom: 0;
        margin-right: 20px;
        width: 50%;
        max-width: 200px; } }
  .detail-property .property-text {
    display: flex;
    align-items: center; }
    .detail-property .property-text .icon {
      margin-right: 15px;
      margin-top: -4px; }

.detail-grid {
  background-color: var(--white);
  padding-top: 30px; }
  .detail-grid .detail-grid-inner {
    display: grid;
    justify-content: space-between;
    margin-top: 20px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, calc(100% / 5 - 60px / 2)); }
    @media screen and (max-width: 1600px) {
      .detail-grid .detail-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 4 - 30px)); } }
    @media screen and (max-width: 1400px) {
      .detail-grid .detail-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 3 - 30px)); } }
    @media screen and (max-width: 991px) {
      .detail-grid .detail-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 30px)); } }
    @media screen and (max-width: 600px) {
      .detail-grid .detail-grid-inner {
        grid-template-columns: repeat(auto-fill, calc(100% / 2 - 10px)); } }
    .detail-grid .detail-grid-inner .mouse-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--primary);
      position: fixed;
      z-index: 100;
      transform: translate(-50%, -50%) scale(0);
      pointer-events: none;
      transition: 0.2s ease transform;
      display: flex;
      justify-content: center;
      align-items: center; }
      .detail-grid .detail-grid-inner .mouse-icon .icon {
        color: var(--white);
        width: 22px;
        height: 22px;
        line-height: 22px; }
      .detail-grid .detail-grid-inner .mouse-icon.visible {
        transform: translate(-50%, -50%) scale(1); }
    .detail-grid .detail-grid-inner .page {
      position: relative;
      margin-bottom: 60px;
      max-width: 383px; }
      @media screen and (max-width: 991px) {
        .detail-grid .detail-grid-inner .page {
          margin-bottom: 30px; } }
      @media screen and (max-width: 768px) {
        .detail-grid .detail-grid-inner .page {
          max-width: none; } }
      .detail-grid .detail-grid-inner .page:hover .page-image {
        border-color: var(--primary); }
        .detail-grid .detail-grid-inner .page:hover .page-image:after {
          opacity: 0.2; }
      .detail-grid .detail-grid-inner .page:hover img {
        transform: scale(1.05); }
      .detail-grid .detail-grid-inner .page a {
        text-decoration: none;
        color: var(--black); }
        .detail-grid .detail-grid-inner .page a:hover {
          cursor: none; }
    .detail-grid .detail-grid-inner .page-title {
      padding-bottom: 5px;
      font-size: 12px; }
    .detail-grid .detail-grid-inner .page-image {
      position: relative;
      overflow: hidden;
      height: 0;
      padding-bottom: 133%;
      box-sizing: border-box;
      border: 2px solid var(--black);
      transition: 0.4s ease border-color; }
      .detail-grid .detail-grid-inner .page-image:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        opacity: 0;
        transition: 0.4s ease opacity; }
      .detail-grid .detail-grid-inner .page-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: 0.4s ease transform; }
  .detail-grid .detail-grid-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px; }
    .detail-grid .detail-grid-pagination.pagination-top {
      margin-bottom: 25px; }
    .detail-grid .detail-grid-pagination .pagination {
      justify-content: flex-start; }

.detail-page-view .detail-page-section {
  display: flex; }
  @media screen and (max-width: 991px) {
    .detail-page-view .detail-page-section {
      flex-wrap: wrap; } }
.detail-page-view .detail-page-wrapper {
  width: calc(100% - 370px);
  display: flex;
  padding-right: 115px;
  padding-right: 40px;
  box-sizing: border-box;
  margin-bottom: 40px; }
  @media screen and (min-width: 991px) {
    .detail-page-view .detail-page-wrapper {
      padding-right: calc(40px + 75 * (100vw - 991px) / 609); } }
  @media screen and (min-width: 1600px) {
    .detail-page-view .detail-page-wrapper {
      padding-right: 115px; } }
  @media screen and (max-width: 991px) {
    .detail-page-view .detail-page-wrapper {
      padding-right: 0;
      margin-top: 20px; } }
  @media screen and (max-width: 991px) {
    .detail-page-view .detail-page-wrapper {
      width: 100%;
      margin-bottom: 30px; } }
  @media screen and (max-width: 550px) {
    .detail-page-view .detail-page-wrapper {
      margin-top: 0; } }
.detail-page-view .detail-page-viewer {
  width: calc(100% - 120px);
  margin-right: auto; }
  @media screen and (max-width: 1100px) {
    .detail-page-view .detail-page-viewer {
      width: calc(100% - 80px); } }
  @media screen and (max-width: 768px) {
    .detail-page-view .detail-page-viewer {
      width: calc(100% - 60px); } }
  .detail-page-view .detail-page-viewer .open-seadragon-element {
    box-shadow: 0px 3px 50px #0000003d;
    background-color: var(--white); }
  .detail-page-view .detail-page-viewer .openseadragon-canvas:focus {
    outline: none; }

.detail-page-view .js-viewer-highlight {
  display: none; }

.detail-page-view .detail-page-viewer-controls {
  display: flex;
  flex-direction: column;
  margin-top: 63px;
  background-color: transparent; }
  @media screen and (max-width: 1200px) {
    .detail-page-view .detail-page-viewer-controls {
      margin-top: 100px; } }
  @media screen and (max-width: 991px) {
    .detail-page-view .detail-page-viewer-controls {
      margin-top: 63px; } }
  @media screen and (max-width: 550px) {
    .detail-page-view .detail-page-viewer-controls {
      margin-top: 40px; } }
.detail-page-view .page-viewer-control {
  border: none;
  color: black;
  background-color: transparent;
  margin: 0 0 10px 0;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px; }
  @media screen and (max-width: 991px) {
    .detail-page-view .page-viewer-control {
      width: 35px;
      height: 35px; } }
  .detail-page-view .page-viewer-control:hover {
    color: var(--primary); }
  .detail-page-view .page-viewer-control .icon {
    width: 100%;
    height: 100%;
    transition: 0.2s ease color; }

.detail-page-view .page-viewer-highres-toggle {
  position: relative;
  white-space: nowrap;
  font-size: 14px;
  margin-left: auto; }
  @media screen and (max-width: 1200px) {
    .detail-page-view .page-viewer-highres-toggle {
      margin-left: 0;
      margin-top: 20px; } }
  @media screen and (max-width: 991px) {
    .detail-page-view .page-viewer-highres-toggle {
      width: auto;
      margin-left: auto;
      margin-top: 0px; } }
  @media screen and (max-width: 550px) {
    .detail-page-view .page-viewer-highres-toggle {
      margin-left: 0;
      margin-top: 0; } }
.detail-page-view .page-viewer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 30px;
  margin-top: 0; }
  @media screen and (max-width: 1200px) {
    .detail-page-view .page-viewer-top {
      margin-bottom: 20px; } }
  @media screen and (max-width: 550px) {
    .detail-page-view .page-viewer-top .pagination {
      display: none; } }
  .detail-page-view .page-viewer-top .page-viewer-top-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; }
  .detail-page-view .page-viewer-top .back-to-overview-link {
    display: flex;
    align-items: center;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: bold;
    font-size: 14px;
    transition: .2s ease color; }
    .detail-page-view .page-viewer-top .back-to-overview-link:hover {
      color: var(--primary); }
    .detail-page-view .page-viewer-top .back-to-overview-link .icon {
      position: relative;
      top: -1px;
      margin-right: 10px;
      color: var(--primary); }
    .detail-page-view .page-viewer-top .back-to-overview-link span {
      display: inline-block;
      margin-bottom: -2px; }

.detail-page-view .page-viewer-bottom {
  margin-bottom: 0;
  margin-top: 30px; }
  .detail-page-view .page-viewer-bottom .pagination {
    justify-content: flex-start; }

.detail-page-view .detail-page-info {
  width: 370px; }
  @media screen and (max-width: 991px) {
    .detail-page-view .detail-page-info {
      width: 100%; } }
.open-seadragon-element.fullpage {
  max-height: calc(100vh - 50px); }

.detail-page-viewer-controls.fullpage {
  padding: 10px;
  background-color: var(--offwhite);
  text-align: right; }
  .detail-page-viewer-controls.fullpage .page-viewer-control {
    background: transparent;
    border: none;
    outline: none;
    color: var(--black);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 0;
    padding: 0;
    margin: 0 2px;
    cursor: pointer; }

.detail-page-crop {
  /* Cropper style overrides */ }
  @media screen and (max-width: 991px) {
    .detail-page-crop hr {
      display: none; } }
  .detail-page-crop .download-button {
    margin-bottom: 12px; }
  .detail-page-crop .cropper-overlay {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* mobile viewport fix */
    height: -webkit-fill-available;
    /* mobile safari viewport fix */
    height: 100svh;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease 0.2s; }
    .detail-page-crop .cropper-overlay.show {
      opacity: 1;
      visibility: visible; }
      .detail-page-crop .cropper-overlay.show:after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #303030; }
  .detail-page-crop .cropper-wrapper {
    box-sizing: border-box;
    border-top: 40px solid var(--gray);
    border-bottom: 40px solid var(--gray);
    height: calc(100% - 60px); }
    @media screen and (max-width: 991px) {
      .detail-page-crop .cropper-wrapper {
        height: calc(100% - 50px);
        border-bottom: 0;
        border-top: 20px solid var(--gray);
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        border-bottom: 0; } }
  .detail-page-crop .cropper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #5f5f5f; }
    @media screen and (max-width: 991px) {
      .detail-page-crop .cropper {
        height: calc(100% - 100px); } }
  .detail-page-crop .cropper img {
    display: block;
    /* This rule is very important, please don't ignore this */
    max-width: 100%;
    max-height: 100%; }
  .detail-page-crop .cropper-header {
    height: 60px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 5px; }
    @media screen and (max-width: 991px) {
      .detail-page-crop .cropper-header {
        padding-left: 13px;
        height: 50px; } }
  .detail-page-crop .cropper-header-right .cropper-action {
    display: inline-block;
    opacity: 0.5;
    transition: 0.4s ease opacity;
    pointer-events: none; }
    .detail-page-crop .cropper-header-right .cropper-action:hover.active {
      opacity: 1; }
    .detail-page-crop .cropper-header-right .cropper-action.active {
      opacity: 1;
      pointer-events: all; }
  .detail-page-crop .cropper-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 60px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.82px;
    font-weight: bold; }
    .detail-page-crop .cropper-close .cropper-close-text {
      margin-bottom: -2px; }
      @media screen and (max-width: 991px) {
        .detail-page-crop .cropper-close .cropper-close-text {
          display: none; } }
    .detail-page-crop .cropper-close .icon {
      color: var(--primary);
      margin-right: 20px; }
      @media screen and (max-width: 991px) {
        .detail-page-crop .cropper-close .icon {
          margin-right: 5px; } }
  .detail-page-crop .cropper-save {
    position: absolute;
    right: 40px;
    bottom: 0px;
    color: white;
    background-color: rgba(48, 48, 48, 0.7);
    padding: 20px 25px 20px 29px;
    box-sizing: border-box;
    border-radius: 7px; }
    @media screen and (max-width: 991px) {
      .detail-page-crop .cropper-save {
        padding: 15px 10px 10px 15px;
        background-color: #303030;
        border-radius: 0;
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        text-align: center;
        height: 100px; } }
    .detail-page-crop .cropper-save form {
      display: flex;
      flex-direction: column; }
    .detail-page-crop .cropper-save .cropper-save-inputs {
      padding-bottom: 15px; }
      .detail-page-crop .cropper-save .cropper-save-inputs [for="cropperDownloadJpg"] {
        margin-right: 20px; }
  .detail-page-crop .cropper-line {
    background-color: var(--primary);
    opacity: 1; }
    .detail-page-crop .cropper-line.line-n, .detail-page-crop .cropper-line.line-s {
      height: 4px; }
    .detail-page-crop .cropper-line.line-e, .detail-page-crop .cropper-line.line-w {
      width: 4px; }
  .detail-page-crop .cropper-point {
    background-color: var(--primary);
    opacity: 1;
    width: 10px;
    height: 10px; }
    .detail-page-crop .cropper-point.point-se {
      width: 10px;
      height: 10px; }

.detail-page-summary {
  margin-bottom: 20px; }
  .detail-page-summary .summary-heading {
    padding: 22px 20px 22px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px; }
  .detail-page-summary .summary-content {
    line-height: 24px; }
  .detail-page-summary .summary-content-all-link {
    text-decoration: underline;
    margin-top: 20px;
    cursor: pointer; }

.detail-page-accordion {
  border-top: 1px solid var(--black); }
  .detail-page-accordion:last-child {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--black); }
  .detail-page-accordion.is-open .toggle-icon {
    transform: rotate(45deg); }
  .detail-page-accordion .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 33px 0 25px 3px;
    cursor: pointer; }
    .detail-page-accordion .accordion-toggle .icon {
      position: relative;
      top: -2px;
      width: 12px;
      height: 12px;
      line-height: 12px;
      vertical-align: top; }
  .detail-page-accordion .toggle-icon {
    width: 12px;
    height: 12px;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: .4s ease transform; }
  .detail-page-accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease max-height;
    line-height: 24px; }
  .detail-page-accordion .accordion-body-inner {
    padding-bottom: 25px; }

.detail-page-switcher {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center; }
  .detail-page-switcher .page-nav {
    color: black;
    cursor: pointer; }
    .detail-page-switcher .page-nav .icon {
      vertical-align: text-bottom; }
    .detail-page-switcher .page-nav svg {
      width: 100%;
      height: 100%; }
    .detail-page-switcher .page-nav.page-next svg {
      transform: rotate(180deg); }
  .detail-page-switcher .page-nav-text {
    margin: 0 20px; }

.sidebar-widget {
  border-bottom: 4px solid var(--white);
  margin-top: 25px; }
  .sidebar-widget:last-child {
    border-bottom: none; }
  .sidebar-widget .widget-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px; }
  .sidebar-widget .widget-body {
    padding-bottom: 30px; }
  .sidebar-widget .widget-links {
    margin-top: 10px; }
  .sidebar-widget .widget-filter-active {
    margin-bottom: 5px; }
    .sidebar-widget .widget-filter-active .active-filter {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--primary-dark);
      padding: 11px 20px;
      box-sizing: border-box;
      font-size: 16px;
      margin-bottom: 7px; }
      .sidebar-widget .widget-filter-active .active-filter:last-child {
        margin-bottom: 0; }
    .sidebar-widget .widget-filter-active .filter-name {
      white-space: normal;
      padding-right: 5px; }
    .sidebar-widget .widget-filter-active .filter-remove {
      height: 14px;
      color: var(--white); }
      .sidebar-widget .widget-filter-active .filter-remove .icon {
        width: 14px;
        height: 14px;
        line-height: 14px;
        vertical-align: top; }

.widget-media-type .media-type {
  color: var(--white);
  display: block;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 15px; }
  .widget-media-type .media-type .icon {
    margin-right: 20px; }
    .widget-media-type .media-type .icon.icon-cross {
      margin-right: 0;
      width: 14px;
      height: 14px;
      line-height: 14px;
      display: none;
      margin-left: auto; }
  .widget-media-type .media-type .media-type-name {
    white-space: normal;
    line-height: 1.3; }
  .widget-media-type .media-type.active {
    background-color: var(--primary-dark);
    padding: 11px 20px; }
    .widget-media-type .media-type.active .icon.icon-cross {
      display: block; }

.widget-link-search .widget-search {
  position: relative;
  width: 100%;
  height: 36px;
  margin-bottom: 15px; }
  .widget-link-search .widget-search input {
    width: 100%;
    height: 100%;
    line-height: 16px;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    padding: 5px 20px;
    outline: none;
    border-radius: 3px;
    font-weight: bold;
    color: var(--primary); }
    @media screen and (max-width: 991px) {
      .widget-link-search .widget-search input {
        font-size: 16px;
        padding-bottom: 3px; } }
  .widget-link-search .widget-search ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--primary); }
  .widget-link-search .widget-search ::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--primary); }
  .widget-link-search .widget-search :-ms-input-placeholder {
    /* IE 10+ */
    color: var(--primary); }
  .widget-link-search .widget-search :-moz-placeholder {
    /* Firefox 18- */
    color: var(--primary); }

.widget-link-search .widget-link {
  display: block;
  color: white;
  line-height: 1.1;
  padding: 8px 0;
  text-decoration: none;
  font-size: 14px; }
  .widget-link-search .widget-link.disabled {
    display: none; }
  .widget-link-search .widget-link .widget-link-name {
    display: inline;
    word-break: normal;
    white-space: normal; }

.widget-link-search .widget-show-all {
  margin-top: 20px;
  text-decoration: underline;
  cursor: pointer; }

.widget-year-select .year-select label {
  display: block;
  margin-bottom: 10px; }
  .widget-year-select .year-select label:last-child {
    margin-bottom: 0; }

.widget-year-select .year-select .select-label {
  display: inline-block;
  width: 40px;
  font-size: 14px; }

.widget-year-select .year-select .styled-select {
  padding: 8px 50px 8px 20px;
  max-width: calc(100% - 40px); }

.widget-year-select .year-select .btn {
  margin-left: 44px; }

.widget-date-select .date-select label {
  display: block;
  margin-bottom: 10px; }
  .widget-date-select .date-select label:last-child {
    margin-bottom: 0; }

.widget-date-select .date-select .select-label {
  display: inline-block;
  width: 40px;
  font-size: 14px; }

.widget-date-select .date-select .styled-select {
  max-width: calc(100% - 40px);
  min-width: 70px; }

.widget-date-select .date-select .btn {
  margin-left: 44px; }

.widget-toggle .toggle-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }

.widget-toggle .toggle-container {
  width: 42px; }

.widget-toggle .toggle-switch-label {
  width: calc(100% - 42px);
  margin-right: 0;
  font-weight: bold;
  text-transform: uppercase;
  box-sizing: border-box;
  padding-left: 20px;
  line-height: 25px;
  white-space: normal;
  cursor: pointer; }

.widget-toggle .toggle-switch-description {
  white-space: normal;
  margin-top: 5px;
  box-sizing: border-box;
  padding-left: 62px;
  line-height: 1.4; }

.listing-grid-size-switcher {
  display: flex;
  margin-left: auto; }
  @media screen and (max-width: 650px) {
    .listing-grid-size-switcher {
      display: none; } }
  .listing-grid-size-switcher .size-switcher {
    cursor: pointer;
    opacity: .4; }
    .listing-grid-size-switcher .size-switcher.active {
      opacity: 1; }
    .listing-grid-size-switcher .size-switcher:first-child {
      margin-right: 15px; }

.listing-grid-sorting {
  position: relative;
  display: flex;
  align-items: baseline;
  line-height: 20px;
  margin-right: 20px; }
  @media screen and (max-width: 991px) {
    .listing-grid-sorting {
      margin-top: 5px; } }
  .listing-grid-sorting.is-open .listing-grid-sorting-options {
    display: block; }
  .listing-grid-sorting.is-open .toggle-indicator {
    transform: scale(0.5) rotate(180deg); }
  .listing-grid-sorting .sorting-form {
    position: relative; }
  .listing-grid-sorting .sorting-label {
    font-size: 14px;
    margin-right: 10px;
    white-space: nowrap; }
  .listing-grid-sorting .current-sorting {
    cursor: pointer;
    white-space: nowrap;
    font-size: 12px; }
  .listing-grid-sorting .current-sorting-name {
    margin-right: 15px; }
  .listing-grid-sorting .listing-grid-sorting-options {
    display: none;
    position: absolute;
    z-index: 1;
    text-align: left;
    left: -10px;
    top: calc(100% + 5px);
    background-color: var(--white);
    white-space: nowrap;
    border: 1px solid var(--border);
    font-size: 12px;
    min-width: calc(100% + 10px); }
    .listing-grid-sorting .listing-grid-sorting-options .option {
      cursor: pointer;
      padding-bottom: 10px;
      padding: 5px 10px; }
      .listing-grid-sorting .listing-grid-sorting-options .option:hover {
        background-color: var(--border); }
  .listing-grid-sorting .toggle-indicator {
    display: inline-block;
    color: var(--primary);
    width: 20px;
    transform: scale(0.5);
    transition: transform 0.2s ease 0s; }

.listing-grid-result {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  margin-right: 23px; }
  @media screen and (max-width: 991px) {
    .listing-grid-result {
      width: 100%; } }
.tile {
  position: relative;
  width: 100%;
  margin-bottom: 13px;
  box-shadow: 0px -1px 11px #00000012;
  font-size: 14px;
  overflow: hidden; }
  .tile:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: 0.2s ease opacity;
    opacity: 0; }
  .tile:hover:after {
    opacity: 1; }
  .tile:hover .tile-icon {
    color: var(--primary); }
  .tile:hover .tile-category {
    color: var(--primary); }
    .tile:hover .tile-category a {
      color: var(--primary); }
  .tile:hover .tile-title,
  .tile:hover .tile-subtitle {
    color: var(--primary); }
  .tile:hover .tile-year {
    color: var(--primary); }
  .tile .tile-inner {
    background-color: var(--white);
    height: 100%;
    padding: 20px 20px 35px 20px;
    box-sizing: border-box; }
  .tile .tile-content-link {
    color: var(--black);
    text-decoration: none;
    line-height: initial;
    display: inline-block;
    width: 100%; }
  .tile .tile-actions {
    display: flex;
    align-items: center; }
    .tile .tile-actions .icon {
      color: var(--primary);
      width: 19px;
      height: 19px;
      line-height: 19px; }
    .tile .tile-actions .tile-action {
      margin-right: 20px;
      cursor: pointer; }
      .tile .tile-actions .tile-action:last-child {
        margin-right: 0; }
  .tile .tile-year {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: var(--black);
    transition: 0.2s ease color; }
    .tile .tile-year .year-label {
      margin-right: 10px; }
    .tile .tile-year .year-value {
      font-weight: bold;
      font-size: 19px; }
  .tile .tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px; }
  .tile .tile-header-left {
    display: flex;
    flex-wrap: wrap; }
  .tile .tile-icon {
    display: flex;
    align-items: center;
    color: var(--black);
    white-space: nowrap;
    margin-right: 20px;
    transition: 0.2s ease color; }
    .tile .tile-icon .icon {
      width: 19px;
      height: 19px;
      line-height: 19px; }
    .tile .tile-icon .tile-icon-text {
      margin-left: 10px;
      line-height: 1; }
  .tile .tile-category {
    display: flex;
    align-items: center;
    align-items: baseline;
    width: 100%;
    margin-top: 10px;
    color: var(--black);
    transition: 0.2s ease color; }
    .tile .tile-category .category-label {
      margin-right: 5px;
      white-space: nowrap; }
    .tile .tile-category .category-values {
      font-weight: bold; }
    .tile .tile-category a {
      text-decoration: none;
      color: var(--black);
      transition: 0.2s ease color; }
  .tile .tile-title {
    font-size: 19px;
    font-weight: bold;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
    transition: 0.2s ease color; }
    .tile .tile-title a {
      color: var(--black);
      transition: 0.2s ease color;
      text-decoration: none; }
  .tile .tile-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: -10px;
    color: var(--black);
    transition: 0.2s ease color; }
  .tile .tile-properties {
    display: flex;
    width: calc(100% - 95px);
    padding-left: 30px;
    box-sizing: border-box;
    flex-direction: column; }
    .tile .tile-properties .tile-property {
      display: inline-block;
      line-height: 1.4;
      margin-bottom: 4px; }
      .tile .tile-properties .tile-property.hide-small {
        display: none; }
      .tile .tile-properties .tile-property.bigger .property-value {
        font-size: 19px;
        line-height: 1; }
      .tile .tile-properties .tile-property.unimportant {
        opacity: 0.65;
        margin-top: 5px; }
        .tile .tile-properties .tile-property.unimportant .property-value {
          font-weight: normal; }
    .tile .tile-properties .property-name {
      margin-right: 5px;
      white-space: nowrap; }
    .tile .tile-properties .property-value {
      font-weight: bold; }
  .tile .tile-text {
    display: none; }
  .tile .tile-info {
    display: flex;
    flex-wrap: wrap; }
  .tile .tile-thumbnail {
    width: 95px;
    box-sizing: border-box; }
    .tile .tile-thumbnail img {
      border: 1px solid #e5e5e5;
      width: 100%;
      max-width: 100%; }
  .tile .tile-number {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-size: 12px; }

@media screen and (min-width: 650px) {
  .listing-grid-inner.big .tile .tile-properties .tile-property.hide-small {
    display: inline-block; }
  .listing-grid-inner.big .tile .tile-info {
    display: inline-flex;
    flex-direction: column;
    width: 160px; }
  .listing-grid-inner.big .tile .tile-properties {
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 15px;
    width: 100%; }
  .listing-grid-inner.big .tile .tile-thumbnail {
    width: 100%; }
  .listing-grid-inner.big .tile .tile-header {
    margin-bottom: 15px; }
  .listing-grid-inner.big .tile .tile-header-left {
    flex-wrap: nowrap; }
  .listing-grid-inner.big .tile .tile-category {
    margin-top: 0;
    line-height: 1; }
  .listing-grid-inner.big .tile .tile-text {
    display: inline-flex;
    width: calc(100% - 164px);
    padding-left: 20px;
    box-sizing: border-box;
    line-height: 26px;
    vertical-align: top; }
  .listing-grid-inner.big .tile.no-text .tile-info {
    width: 100%; }
  .listing-grid-inner.big .tile.no-text .tile-info {
    flex-direction: row; }
  .listing-grid-inner.big .tile.no-text .tile-properties {
    width: 55%;
    padding-left: 30px;
    margin-top: 0; }
  .listing-grid-inner.big .tile.no-text .tile-thumbnail {
    width: 45%; } }

.tile.artwork-tile .tile-properties {
  width: 100%;
  padding-left: 0;
  margin-top: 10px;
  box-sizing: border-box; }

.tile.artwork-tile .tile-thumbnail {
  width: 100%;
  height: 220px;
  max-height: 220px;
  background: var(--offwhite);
  padding: 10px;
  box-shadow: inset 0 0 7px 0px #0000001a; }
  .tile.artwork-tile .tile-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none; }

@media screen and (min-width: 650px) {
  .listing-grid-inner.big .tile.artwork-tile .tile-title {
    margin-bottom: 25px; }
  .listing-grid-inner.big .tile.artwork-tile .tile-properties {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
    display: block;
    column-count: 2; }
    .listing-grid-inner.big .tile.artwork-tile .tile-properties .tile-property {
      display: block; }
  .listing-grid-inner.big .tile.artwork-tile .tile-info {
    width: 100%; }
  .listing-grid-inner.big .tile.artwork-tile .tile-thumbnail {
    height: 330px;
    max-height: 330px; } }

.account-container {
  max-width: 1200px;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-top: 20px; }
  @media screen and (min-width: 991px) {
    .account-container {
      margin-top: calc(20px + 40 * (100vw - 991px) / 209); } }
  @media screen and (min-width: 1200px) {
    .account-container {
      margin-top: 60px; } }
  .account-container .account-heading {
    margin-bottom: 20px; }

.account-intro-text {
  margin-bottom: 20px; }

.form-row {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center; }
  @media screen and (max-width: 500px) {
    .form-row {
      flex-wrap: wrap; } }
  .form-row.row-favorite > * {
    margin-top: 10px; }
  .form-row.row-favorite .form-label {
    width: auto;
    min-width: auto;
    padding-right: 15px; }
  .form-row.row-favorite input {
    margin-right: 15px; }

.form-label {
  display: inline-block;
  width: 135px;
  font-size: 16px;
  vertical-align: middle;
  min-width: 135px;
  padding-right: 10px;
  line-height: 1; }
  @media screen and (max-width: 500px) {
    .form-label {
      width: 100%;
      font-size: 14px;
      margin-bottom: 5px;
      padding-right: 0; } }
.form-input {
  line-height: 16px;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 5px 10px 4px 10px;
  height: 36px;
  width: 230px;
  outline: none;
  border: 1px solid #e5e5e5;
  background-color: var(--offwhite);
  border-radius: 3px;
  font-size: 16px;
  vertical-align: middle; }
  .form-input:is(textarea) {
    height: initial;
    line-height: initial; }
  @media screen and (max-width: 500px) {
    .form-input {
      width: 100%; } }
  .form-input:focus {
    outline-style: solid;
    outline-color: var(--black);
    outline-width: 1px;
    background-color: var(--white); }
  .form-input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--lightgray);
    font-weight: 400;
    font-size: 14px; }
  .form-input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--lightgray);
    font-weight: 400;
    font-size: 14px; }
  .form-input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--lightgray);
    font-weight: 400;
    font-size: 14px; }
  .form-input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--lightgray);
    font-weight: 400;
    font-size: 14px; }

.form-error {
  color: #e7473c; }

.form-group {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  background-color: var(--offwhite);
  gap: 8px 10px;
  width: 100%;
  padding: 20px; }
  .form-group.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr; }
    @media screen and (max-width: 768px) {
      .form-group.two-cols {
        grid-template-columns: 1fr; } }
  .form-group.three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
    @media screen and (max-width: 991px) {
      .form-group.three-cols {
        grid-template-columns: 1fr 1fr; } }
    @media screen and (max-width: 768px) {
      .form-group.three-cols {
        grid-template-columns: 1fr; } }
  .form-group .custom-checkbox {
    column-gap: 10px;
    line-height: 1.2; }
  .form-group .form-input {
    background-color: white; }

.form-select {
  line-height: 1.3;
  color: var(--black);
  font-size: 15px;
  padding: 5px 35px 4px 10px;
  height: 36px;
  max-width: 100%;
  width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  margin: 0;
  border: none;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--offwhite);
  background-image: url("data:image/svg+xml,%3Csvg width='616.1' height='345.1' viewBox='0 0 163 91.3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23707070%3Bstroke-width:.494894%3B' transform='rotate(-45 81.3 -111.2)' d='M-61.7-83.2h13.9V32.1h-13.9z'/%3E%3Cpath style='fill:%23707070%3Bstroke-width:.494894%3B' transform='rotate(45 21.1 136.1)' d='M18.3-53.6h13.9V61.7H18.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 9px auto;
  border: 1px solid #e5e5e5; }
  @media screen and (max-width: 500px) {
    .form-select {
      width: 100%; } }
  .form-select:focus {
    outline-style: solid;
    outline-color: var(--black);
    outline-width: 1px;
    background-color: var(--white); }
  .form-select:disabled:hover, .form-select[aria-disabled="true"] {
    border-color: #aaa; }

.favorite-lists {
  margin-top: 40px; }
  .favorite-lists .favorite-list {
    margin-top: 40px; }
  .favorite-lists .favorite-list-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px; }
  .favorite-lists .favorite-list-name > * {
    padding-top: 0;
    padding-bottom: 0; }

.styled-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  table-layout: fixed; }
  .styled-table .new-badge {
    margin: 0;
    white-space: nowrap; }
  .styled-table .table-actions {
    position: relative;
    z-index: 1; }
  .styled-table .table-action:first-child {
    margin-right: 10px; }
  .styled-table .row-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .styled-table tr {
    position: relative;
    background-color: transparent; }
    @media screen and (max-width: 768px) {
      .styled-table tr {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 3px solid var(--black); } }
    @media screen and (max-width: 768px) {
      .styled-table tr:first-child {
        border-top: 3px solid var(--black); } }
  @media screen and (max-width: 768px) {
    .styled-table td {
      display: block;
      font-size: 14px;
      text-align: right; } }
  @media screen and (max-width: 768px) {
    .styled-table td::before {
      content: attr(data-label);
      float: left;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      line-height: 20px;
      padding-right: 10px;
      max-width: 60%;
      text-align: left; } }
  @media screen and (max-width: 768px) {
    .styled-table td :last-child {
      border-bottom: 0; } }
  .styled-table thead {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 4px solid var(--black); }
    @media screen and (max-width: 768px) {
      .styled-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px; } }
    .styled-table thead th {
      padding: 20px 5px; }
      .styled-table thead th.table-page {
        width: 100px;
        width: 70px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-page {
            width: calc(70px + 30 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-page {
            width: 100px; } }
      .styled-table thead th.table-date {
        width: 300px;
        width: 180px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-date {
            width: calc(180px + 120 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-date {
            width: 300px; } }
      .styled-table thead th.table-options {
        width: 80px;
        text-align: right;
        position: relative;
        z-index: 100; }
      .styled-table thead th.table-number {
        width: 5px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-number {
            width: calc(5px + 35 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-number {
            width: 40px; } }
      .styled-table thead th.table-start {
        width: 30px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-start {
            width: calc(30px + 50 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-start {
            width: 80px; } }
      .styled-table thead th.table-end {
        width: 30px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-end {
            width: calc(30px + 50 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-end {
            width: 80px; } }
      .styled-table thead th.table-status {
        width: 30px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-status {
            width: calc(30px + 60 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-status {
            width: 90px; } }
      .styled-table thead th.table-convert {
        width: 60px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-convert {
            width: calc(60px + 45 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-convert {
            width: 105px; } }
      .styled-table thead th.table-online {
        width: 40px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-online {
            width: calc(40px + 50 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-online {
            width: 90px; } }
      .styled-table thead th.table-detail {
        width: 50px; }
        @media screen and (min-width: 768px) {
          .styled-table thead th.table-detail {
            width: calc(50px + 45 * (100vw - 768px) / 432); } }
        @media screen and (min-width: 1200px) {
          .styled-table thead th.table-detail {
            width: 95px; } }
  .styled-table tbody tr:nth-child(odd) {
    background-color: var(--offwhite); }
    @media screen and (max-width: 768px) {
      .styled-table tbody tr:nth-child(odd) {
        background-color: var(--white); } }
  .styled-table tbody td {
    padding: 20px 5px;
    box-sizing: border-box; }
    @media screen and (max-width: 768px) {
      .styled-table tbody td {
        max-width: none;
        padding: 10px 5px;
        overflow: hidden; } }
    @media screen and (max-width: 768px) {
      .styled-table tbody td:nth-child(even) {
        background-color: var(--offwhite); } }
    .styled-table tbody td:last-child {
      text-align: right; }

.account-import .styled-table {
  margin-top: 20px; }

.big-form .form-input {
  width: 100%; }

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