





/* -- BODY ----------------------------------------------*/

* {margin:0; border:0; padding:0;}
article,aside,details,figcaption,figure,footer,header,menu,nav,section {display:block;}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
        font-size: 1em;
      font-family: chaparral-pro,serif;
      color: rgb(34, 34, 35);
      letter-spacing: 0.5px;
      background: rgb(255,255,255);
      font-weight: normal;
      line-height: 1.375;
    }


body.hidden, body.showForm {
  overflow: hidden;
}


/* -- GENERAL CLASSES -----------------------------------*/

.general-width {
  position: relative;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}



/* -- MIDDLE --------------------------------------------*/
.middle {
  position: relative;
  flex: 1 0 auto;
  clear: both;
  margin: 0;
  overflow-x: hidden;
}



.page {
  position: relative;
  background: rgb(255,255,255);
}




/* --- 1 column full (col1Full) --- */
.layout3 .page > .container {
  width: 100%;
  max-width: 100%;
}

.page:first-child > .container:only-child {
  padding-top: 112px;
}


.content {
  position: relative;
  float: left;
  width: 100%;
  min-height: 100px;
  padding: 0;
  box-sizing: border-box;
  z-index: 1;
}


/* --- sidebar L | content R (col2Right) --- */
.layout1 .content {
  float: right;
  width: 75.4%;
  padding-left: 0.8%;
}


/* --- 1 column (col1) --- */
.layout2 .content {
  width: 100%;
}



/* -- TOP -----------------------------------------------*/
.top-header {
  position: fixed;
  flex-shrink: 0;
  top: 0;
  right: 0;
  left: 0;
        box-shadow: 0 0 1px rgba(0,0,0,0.1);
      background: rgb(244, 145, 14);
      clear: both;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}




.info-bar {
  min-height: 30px;
  padding: 5px 0;
  background: rgb(21,71,52);
  box-sizing: border-box;
  font-family: "europa",sans-serif;
  color: rgb(230, 238, 236);
  font-size: 0.8em;
  line-height: 1.1;
  letter-spacing: 1px;
}


.info-bar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.no-csstransitions .info-bar > div {
  display: block;
}


.info-bar a {
  display: inline-block;
  color: rgb(230, 238, 236);
  text-decoration: none;
}

.no-csstransitions .login-info {
  float: left;
}


.translate {
  display: inline-block;
  margin: 0 2px;
}

.no-csstransitions .translate {
  float: right;
}

.translate a {
  margin-left: 0.5rem;
}

.translate img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
}



header {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.no-csstransitions header {
  display: block;
}


.no-csstransitions header::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin: 0 0 0 -1px;
  vertical-align: middle;
}


.logo {
  position: relative;
}

.no-csstransitions .logo {
  float: left;
}

.logo a {
  position: relative;
  display: block;
  width: auto;
  height: 82px;
  padding: 11px 0;
  box-sizing: border-box;
  text-decoration: none;
}



.logo a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin: 0 0 0 -1px;
  vertical-align: middle;
}


.logo a img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
}



.login::after {
  content: "\f08b";
  display: inline-block;
  vertical-align: middle;;
  font-family: fontAwesome;
  padding-left: 5px;
}


.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-family: "europa",sans-serif;
  font-size: 1.2em;
  text-align: center;
}

.no-csstransitions .header-title {
  top: 16px;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.header-title span {
  display: block;
  font-size: 0.85em;
}


/* --- Slide Navigation button --- */
.sTrigger {
  position: relative;
  display: none;
  width: 24px;
  height: 55px;
  padding: 0 0 0 15px;
  cursor: pointer;
  vertical-align: middle;
}


/* --- hamburger --- */
.sTrigger span {
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: rgb(21,71,52);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s 0.1s;
  transition: all 0.2s 0.1s;
}


.sTrigger.open span {
  background: transparent;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}



.sTrigger span:before, .sTrigger span:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: rgb(21,71,52);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


/* --- top bun --- */
.sTrigger span:before {
  top: -6px;
  -webkit-transform-origin: right top;
}

.sTrigger.open span:before {
  -webkit-transform: rotate(-45deg) translate(0, -3px);
  transform: rotate(-45deg) translate(0, -3px);
  transform-origin: right top;
}



/* --- bottom bun --- */
.sTrigger span:after {
  top: 6px;
  -webkit-transform-origin: right bottom;
}

.sTrigger.open span:after {
  -webkit-transform: rotate(45deg) translate(0, 3px);
  transform: rotate(45deg) translate(0, 3px);
  transform-origin: right bottom;
}

/* -- BOTTOM --------------------------------------------*/
#bottom {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  clear: both;
        color: rgb(230, 238, 236);
      padding: 3.75rem 0;
      background-color: rgb(34, 34, 35);
    }


#bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 76px;
  height: 80px;
  background-image: url(logo-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 1;
}

footer {

}


footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: inherit;
  overflow: initial;
  text-align: left;
}

footer li {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  vertical-align: top;
  font-family: "europa",sans-serif;
  font-size: 0.8em;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}


footer a {
        color: rgb(230, 238, 236);
      text-decoration: none;
    }


.no-touch footer a:hover, .no-touch footer a:active {
        color: rgba(230, 238, 236,0.9);
      text-decoration: underline;
    }




footer section a, footer section span {
  display: block;
}



footer .col-title {
  margin: 0 0 1.25rem 0;
  border-bottom: 1px solid rgba(230, 238, 236,0.5);
  padding: 0 0 0.75em;
  font-family: "europa",sans-serif;
  font-size: 0.8em;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}


footer .col-text {
  font-size: 1.125em;
}



/* -- CHANNEL MENU ---------------------------------*/
.menu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.menu ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: inherit;
  overflow: initial;
  vertical-align: middle;
}

.menu li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.menu li a {
  position: relative;
  display: block;
  padding: 5px 15px;
  font-family: "europa",sans-serif;
  color: rgb(34, 34, 35);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9em;
  line-height: 1.1;
  letter-spacing: 1px;
}

.menu li:last-child a {
  padding-right: 0;
}

.menu li span {
  display: block;
}


.menu ul li a:hover,
.menu ul li a:active {
  color: rgb(21,71,52);
}
#bodyMask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21,71,52,0.8);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, z-index 0.3s;
  transition: opacity 0.3s, z-index 0.3s;
  cursor: pointer;
}


#bodyMask.open {
  opacity: 1;
  z-index: 7;
  visibility: visible;
}

.showForm #bodyMask.open {
  z-index: 20;
}


.no-opacity #bodyMask.open {
  visibility: visible;
}


#sNav {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -310px;
  width: 300px;
  z-index: 9;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#sNav.open-right {
  right: -310px;
}

#sNav.open-left {
  left: -310px;
}

.csstransforms #sNav.open-right {
  right: 0;
  -webkit-transform: translate(110%, 0);
  transform: translate(110%, 0);
}

.csstransforms #sNav.open-left {
  left: 0;
  -webkit-transform: translate(-110%, 0);
  transform: translate(-110%, 0);
}

#sNav.open-right.open {
  right: 0;
}

#sNav.open-left.open {
  left: 0;
}

.csstransforms #sNav.open-right.open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.csstransforms #sNav.open-left.open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}



#sNav .nav-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(230, 238, 236);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


/* --- ITEMS --- */
#sNav .nav-holder > *:first-child {
  margin-top: 75px;
}

#sNav .nav-holder > *:last-child {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(21,71,52,0.2);
}



/* --- MACRONAV --- */
#sNav .menu {
  display: block;
  margin: 0;
}



#sNav .menu ul {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

#sNav .menu ul li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(21,71,52,0.2);
}

#sNav .menu ul li a {
  padding: 1rem;
  color: rgb(21,71,52);
}



#sNav .menu ul li a.current {
  background: rgb(21,71,52);
}




/* --- TRANSLATE --- */
#sNav .translate {
  display: block;
  border-top: 1px solid rgba(21,71,52,0.25);
  padding: 1rem;
}

#sNav .translate a {
  margin: 0 1rem 0 0;
}

#sNav .translate img {
  max-height: 100%;
}



/* --- LOGIN --- */
#sNav .user-login {
  display: block;
  border-top: 1px solid rgba(21,71,52,0.25);
  padding: 1rem;
  background: rgb(21,71,52);
}


#sNav .user-login a {
  font-family: "europa",sans-serif;
  text-decoration: none;
  color: rgb(255,255,255);
}


.bookmark {
  position: absolute;
  display: block;
  top: -7px;
  right: 0;
  padding: 0 1rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.bookmark.disabled {
  cursor: default;
  opacity: 0.75;
}

.bookmark::before {
  content: "\f097";
  display: block;
  font-family: FontAwesome;
  font-size: 3em;
  line-height: 1;
  color: rgb(0,0,0,0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.bookmark:hover::before {
  color: rgb(21,71,52);
}


.bookmark.disabled:hover::before {
  color: rgb(0,0,0,0.4);
}

.bookmark[data-status="1"]::before {
  content: "\f02e";
  color: rgb(21,71,52);
}




.auction-info {
  position: relative;
  margin: 1rem 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.auction-info h4 {
  text-align: left;
  margin: 2rem 0 1rem;
}

.auction-info h4:first-child {
  margin-top: 0;
}


.conForm a.btn-live-bidding {
  width: 100%;
  margin: 1rem 0 0;
}

/* --- COUNTDOWN --- */
.product-wrapper .countdown {
  position: absolute;
  top: 0;
  right: 0;
}

.ix-prod .countdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 200px;
  padding: 1em;
  box-sizing: border-box;
  text-align: left;
}



.countdown span {
  display: block;
}

.index .countdown span {
  -webkit-transition: none;
  transition: none;
}



.clock-timer .unit {
  display: inline-block;
  margin: 0 0 5px;
  vertical-align: top;
  font-size: 0.65em;
  text-align: center;
}


.clock-timer .wrapper {
  display: inline-block;
  vertical-align: top;
}

.clock-timer > .unit {
  padding-right: 10px;
}

.clock-timer .unit span {
  display: block;
  font-size: 2.5em;
  line-height: 1;
}

.clock-timer .hours:after, .clock-timer .minutes:after {
  content: ":";
}

.countdown .clock-title {
  margin-bottom: 5px;
  font-size: 0.85em;
  text-align: left;
}


.index-start {
  display: grid;
  grid-template-areas: "active active" "postsale announced" "past announced";
  grid-template-columns: 1fr 31.45%;
  grid-column-gap: 3rem;
}


.index-auction {
  margin-top: 2rem;
}

.auction-active {
  grid-area: active;
  margin-top: 0;
}

.auction-announced {
  position: relative;
  grid-area: announced;
}

.index-auction.auction-announced::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: -1.5rem;
  width: 1px;
  background-color: rgba(21,71,52,0.2);
}

.auction-postsale {
  grid-area: postsale;
}

.auction-past {
  grid-area: past;
}


.index-auction.auction-active *:first-child {
  margin-top: 0;
}



.index-auction h1, .index-auction h2, .index-auction h3, .index-auction h4, .index-auction h5, .index-auction .title-h1, .index-auction .title-h2, .index-auction .title-h3, .index-auction .title-h4 {
  margin-bottom: 0;
  text-align: left;
}


.index-auction ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-column-gap: 1.5rem;
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}


.index-auction.auction-active ul {
  display: block;
}

.index-auction.auction-announced ul {
  display: block;
}


.index-auction li {
  position: relative;
  display: inline-flex;
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  box-sizing: border-box;
}


.index-auction.auction-active ul li:first-child {
  margin-top: 0;
}



.index-auction li span {
  display: block;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.index-auction li .act-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background-color: rgb(230, 238, 236);
  color: rgb(34, 34, 35);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch .index-auction li .act-item:not(.no-hover):hover {
  background-color: rgb(167, 187, 180);
}

.index-auction.auction-active li .act-item {
  flex-direction: row;
  background-color: rgba(21,71,52,0.9);
  color: rgb(255,255,255);
}

.no-touch .index-auction.auction-active li .act-item:not(.no-hover):hover {
  background-color: rgb(21,71,52);
}

.index-auction.auction-announced li .act-item {
  background-color: transparent;
}



.index-auction li .act-item[data-title]::before {
  content: attr(data-title);
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
  background-color: rgb(255,255,255);
  z-index: 1;
}

.index-auction li .act-item[data-title=""]::before {
  display: none;
}

.index-auction.auction-active li .act-item[data-title]::before {
  color: rgb(34, 34, 35);
}


.act-item .act-img {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 50%;
  background-color: rgba(21,71,52,0.25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.index-auction.auction-active .act-img {
  position: relative;
  width: 50%;
  height: 100%;
  padding: 0;
  background-color: rgba(255,255,255,0.5);
}


.act-item .act-img.image-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/common/logo-index.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20% auto;
  opacity: 0.5;
}



.act-item .lazy-loader {
  width: 50%;
}


.act-item .act-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.index-auction.auction-active .act-info {
  justify-content: center;
  width: calc(50% - 2rem);
  min-height: 350px;
  padding-left: 0;
}

.index-auction.auction-announced .act-info {
  padding: 1rem 0 0;
}



.index-auction li .act-item a {
  display: block;
  margin: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgb(34, 34, 35);
}

.index-auction.auction-active li .act-item a {
  font-size: 2.5em;
  color: rgb(255,255,255);
}


.no-touch .index-auction li .act-item:not(.no-hover):hover a {
  color: rgb(34, 34, 35);
}

.no-touch .index-auction.auction-active li .act-item:not(.no-hover):hover a {
  color: rgb(255,255,255);
}


.index-auction li .act-item a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}


.index-auction li .act-item .act-headline > span {
  margin: 0;
}


.index-auction.auction-active li .act-item .act-desc {
  font-size: 1.375em;
}

.index-auction li .act-item .act-desc:not(:last-child) {
  margin-bottom: 1rem;
}



.index-auction li .act-item .act-more {
  margin-top: auto;
  font-family: "europa",sans-serif;
  font-size: 0.875em;
  line-height: 1;
  text-transform: uppercase;
}

.index-auction.auction-active li .act-item .act-more {
  margin-top: 1rem;
  margin-right: auto;
  border-radius: 2px;
  padding: 0.5rem 0.75rem;
  background-color: rgb(255,255,255);
  color: rgb(21,71,52);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.no-touch .index-auction.auction-active li .act-item:not(.no-hover):hover .act-more {
  background-color: rgb(230, 238, 236);
}

.index-auction li .act-item .act-more span {
  display: inline-block;
  margin-right: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}




.index-auction .act-archive .act-item {
  background-color: rgba(21,71,52,0.9);
  color: rgb(255,255,255);
}


.no-touch .index-auction .act-archive .act-item:not(.no-hover):hover {
  background-color: rgb(21,71,52);
  color: rgb(255,255,255);
}


.index-auction .act-archive .act-info .title-h2 {
  margin: 0 0 1rem;
  font-size: 3em;
  line-height: 1;
  color: rgb(255,255,255);
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-hyphens: unset;
  hyphens: unset;
}


.no-touch .index-auction .act-archive .act-item:not(.no-hover):hover a {
  color: rgb(255,255,255);
}


.index-auction .act-archive .act-info .act-desc {
  font-size: 1.2em;
}



.index-auction .act-archive .act-item .act-more {
  margin-top: auto;
  margin-right: auto;
  border-radius: 2px;
  padding: 0.5rem 0.75rem;
  background-color: rgb(255,255,255);
  color: rgb(21,71,52);
}





.teaser-auction-archive {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 2rem 0;
  padding: 1rem;
  background-color: rgb(21,71,52);
  box-sizing: border-box;
  text-decoration: none;
  color: rgb(255,255,255);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.no-touch .teaser-auction-archive:hover, .no-touch .teaser-auction-archive:active {
  background-color: rgba(21,71,52,0.9);
  color: rgb(255,255,255);
}


.teaser-auction-archive h2 {
  margin: 0;
  font-size: 3em;
  line-height: 1;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-hyphens: unset;
  hyphens: unset;
}


.teaser-auction-archive p {
  font-size: 1.2em;
}


.teaser-auction-archive .archive-more {
  display: block;
  margin: 0 0 0.5rem;
  border-radius: 2px;
  padding: 0.5rem 0.75rem;
  background-color: rgb(255,255,255);
  color: rgb(21,71,52);
  font-family: "europa",sans-serif;
  font-size: 0.875em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.teaser-auction-archive .archive-more span {
  display: inline-block;
  margin-right: 0.5rem;
}




.index-archive > ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-archive > ul > li {
  margin: 0;
  padding: 0;
}


.index-archive > ul > li:first-child h2 {
  margin-top: 0;
}


.index-auction.auction-archive ul {
  grid-template-columns: repeat(3,1fr);
}

.index-auction.auction-archive li {
  flex-direction: column;
  margin: 0.5rem 0;
}



.index-auction.auction-archive li span {
  position: static;
}


.index-auction.auction-archive li .act-item {
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  background-color: transparent;
}

.no-touch .index-auction.auction-archive li .act-item:not(.no-hover):hover {
  background-color: transparent;
}

.index-auction.auction-archive li .act-item[data-title=""]::before {
  display: none;
}


.auction-archive .act-item .act-img {
  position: relative;
  width: 40%;
  padding: 0 0 25%;
  background-color: rgba(21,71,52,0.25);
  overflow: hidden;
  flex-shrink: 0;
}



.auction-archive .act-item .lazy-loader {
  position: absolute;
  width: 40%;
}

.index-auction.auction-archive li .lazy-loader span {
  position: absolute;
}



.auction-archive .act-item .act-info {
  flex-grow: 1;
  padding: 0 0 0 1rem;
}


.index-auction.auction-archive li .act-headline {
  margin-top: -5px;
}


.index-auction.auction-archive li .act-item .act-desc:not(:last-child) {
  margin-bottom: 0.5rem;
}


.index-auction.auction-archive li .act-item .act-more {
  margin-top: 0;
}



/* --- lazy load icon --- */
.lazy {
  opacity: 0;
}

.lores {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.ps-wait, .lores.ps-wait, .lores.hide {
  opacity: 0;
}

.lores.hidden,
.media-gallery .gal-img.lores.hidden {
  display: none;
}


.overlay .lazy {
  display: none;
}

.pageoverlay-item.new .lazy,
.pageoverlay-item.active .lazy {
  display: block;
}






.lazy-loader,
.index .lazy-loader {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.lazy + .lazy-loader {
  opacity: 1;
  visibility: visible;
}

.lazy.ps-wait + .lazy-loader {
  opacity: 0;
}

.iSlider .lazy-loader {
  z-index: 0;
}

.graphic .lazy + .lazy-loader {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-color: rgb(249, 249, 249);
}

.img-noscript ~ .lazy-loader {
  display: none;
}

.ix-full .lazy-loader {
  bottom: auto;
  height: 0;
  padding: 0 0 50%;
}

.ix-bild .lazy-loader {
  background-color: rgba(255,255,255,0.5);
}


.lazy-loader span,
.index .lazy-loader span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 2rem;
  line-height: 1;
  color: rgb(34, 34, 35);
}

.media-gallery .slidethumbs .lazy-loader span {
  width: auto;
  height: auto;
  font-size: 1.2rem;
  color: rgb(255,255,255);
}

.marquee {
  position: relative;
  left: 0;
  left: calc(-50vw + 50%);
  width: 100%;
  width: 100vw;
  height: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow-x: hidden;
}

.content > .marquee:first-child:not(.product-wrapper):not(.contentBar) {
  margin-top: 0;
}

.content > .marquee:first-child + .product-wrapper,
.content > .marquee:first-child + .contentBar {
  margin-top: 0;
}

.track {
  position: absolute;
  display: flex;
  align-items: center;
  height: 30px;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee 20s linear infinite;
  animation: marquee 20s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  text-decoration: none;
}

.no-touch .track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.swiffy-slider {
    position: relative;
    display: block;
    width: 100%;
    --swiffy-slider-snap-align: center;
    --swiffy-slider-item-width: 100%;
    --swiffy-slider-item-gap: 1rem;
    --swiffy-slider-item-reveal: 0rem;
    --swiffy-slider-item-ratio: 2/1;
    --swiffy-slider-item-count: 1;
    --swiffy-slider-nav-light: #fff;
    --swiffy-slider-nav-dark: #333;
    --swiffy-slider-nav-zoom: 1;
    --swiffy-slider-track-opacity: 0.1;
    --swiffy-slider-track-height: 0;
    --swiffy-slider-nav-outside-size: 3.5rem;
    --swiffy-slider-indicator-outside-size: 1.5rem;
    --swiffy-slider-animation-duration: .75s;
    --swiffy-slider-animation-delay: 0s;
    --swiffy-slider-animation-timing: ease-in-out;
}

.swiffy-slider,
.swiffy-slider::after,
.swiffy-slider::before {
    box-sizing: border-box;
}

.swiffy-slider ::-webkit-scrollbar {
    height: var(--swiffy-slider-track-height);
}

.swiffy-slider ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
}

.swiffy-slider ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
}

.swiffy-slider ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.6);
}



.slider-item-snapstart {
    --swiffy-slider-snap-align: start;
}


.slider-item-reveal {
    --swiffy-slider-item-reveal: 8rem;
}

.slider-item-snapstart.slider-item-reveal {
    --swiffy-slider-item-reveal: 4rem;
}


.slider-item-show3 {
    --swiffy-slider-item-count: 3;
}



@media (max-width: 62rem) {
    .swiffy-slider {
        --swiffy-slider-track-height: 0rem;
        --swiffy-slider-item-reveal: 0rem;
        --swiffy-slider-item-count: 1;
        --swiffy-slider-nav-zoom: .875;
    }

    .slider-item-reveal {
        --swiffy-slider-item-reveal: 4rem;
    }
    .slider-item-snapstart.slider-item-reveal {
        --swiffy-slider-item-reveal: 2rem;
    }




}



.hgroup {
  margin: 2rem 0;
}

.hgroup.hide-pc {
  display: none;
}

h1, h2, h3, h4, h5, .title-h1, .title-h2, .title-h3, .title-h4 {
        font-weight: normal;
      font-family: europa,sans-serif;
      margin: 2rem 0;
      line-height: 1.25;
      text-align: center;
    }



h1, .title-h1 {
        font-size: 2.25em;
    }

.hgroup h1, .hgroup .title-h1 {
          margin: 0;
    }


h2, .title-h2 {
        font-size: 1.75em;
    }

.hgroup h2, .hgroup .title-h2 {
        font-size: 1em;
      margin: 0.5rem 0 0;
    }


h3, .title-h3 {
        font-size: 1.375em;
    }

.hgroup h3, .hgroup .title-h3 {
        font-size: 1em;
      margin: 0 0 0.5rem;
    }


h4, .title-h4 {
        font-size: 1.25em;
    }


p {
  margin: 1rem 0;
}


ul {
  list-style: disc;
  margin: 1em 0;
  padding: 0 0 0 2rem;
  overflow: hidden;
}

ul li {
  padding: 2px 0;
}


a {
  color: rgb(21,71,52);
  text-decoration: underline;
}


a:hover, a:focus {
  color: rgb(38, 130, 95);
}


hr, .clearLine {
  margin: 2rem 0;
  height: 1px;
  background: rgb(21,71,52);
  background: rgba(21,71,52,0.2);
}


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

.small {
  font-size: 0.85em;
}


.content > *:first-child:not(.product-wrapper):not(.contentBar) {
  margin-top: 3.75rem;
}


.content > .hgroup.hide-pc + *:not(.product-wrapper):not(.contentBar) {
  margin-top: 3.75rem;
}

.content > *:last-child:not(.product-wrapper):not(.contentBar) {
  margin-bottom: 3.75rem;
}


.col-layout {
  position: relative;
  width: 102.1432%;
  margin: 1rem -1.0716%;
}


.layout2 .col-layout,
.contentBar .col-layout,
.form-modal .col-layout {
  width: 101.6%;
  margin: 1rem -0.8%;
}

.col-layout .column {
  position: relative;
  display: inline-block;
  margin: 0 1.0491%;
  vertical-align: top;
}


.layout2 .col-layout .column,
.contentBar .col-layout .column,
.form-modal .col-layout .column {
  margin: 0 0.7868%;
}


/* --- 2 COL 50/50 --- */
.col-layout.type1 > .column {
  width: 47.8839%;
}

.layout2 .col-layout.type1 > .column,
.contentBar .col-layout.type1 > .column,
.form-modal .col-layout.type1 > .column {
  width: 48.4075%;
}


.col-layout.type1 > .column:nth-of-type(n+3) {
  margin-top: 1rem;
}



/* --- 3 COL --- */
.col-layout.type2 > .column {
  width: 31.22318%;
}

.layout2 .col-layout.type2 > .column,
.contentBar .col-layout.type2 > .column,
.form-modal .col-layout.type2 > .column {
  width: 31.7471%;
}

.col-layout.type2 > .column:nth-of-type(n+4) {
  margin-top: 1rem;
}

/* --- 2 COL 66/33 --- */
.col-layout.type3 > .column:nth-of-type(2n + 1) {
  width: 64.5447%;
}

.layout2 .col-layout.type3 > .column:nth-of-type(2n + 1),
.contentBar .col-layout.type3 > .column:nth-of-type(2n + 1),
.form-modal .col-layout.type3 > .column:nth-of-type(2n + 1) {
  width: 65.0680%;
}

.col-layout.type3 > .column:nth-of-type(2n) {
  width: 31.22318%;
}

.layout2 .col-layout.type3 > .column:nth-of-type(2n),
.contentBar .col-layout.type3 > .column:nth-of-type(2n),
.form-modal .col-layout.type3 > .column:nth-of-type(2n) {
  width: 31.7471%;
}


.col-layout.type3 > .column:nth-of-type(n+3) {
  margin-top: 1rem;
}



/* --- 2 COL 33/66 --- */
.col-layout.type4 > .column:nth-of-type(2n + 1) {
  width: 31.22318%;
}

.layout2 .col-layout.type4 > .column:nth-of-type(2n + 1),
.contentBar .col-layout.type4 > .column:nth-of-type(2n + 1),
.form-modal .col-layout.type4 > .column:nth-of-type(2n + 1) {
  width: 31.7471%;
}

.col-layout.type4 > .column:nth-of-type(2n) {
  width: 64.5447%;
}

.layout2 .col-layout.type4 > .column:nth-of-type(2n),
.contentBar .col-layout.type4 > .column:nth-of-type(2n),
.form-modal .col-layout.type4 > .column:nth-of-type(2n) {
  width: 65.0680%;
}

.col-layout.type4 > .column:nth-of-type(n+3) {
  margin-top: 1rem;
}


/* --- 4 COL --- */
.col-layout.type5 > .column {
  width: 22.9018%;
}

.layout2 .col-layout.type5 > .column,
.contentBar .col-layout.type5 > .column,
.form-modal .col-layout.type5 > .column {
  width: 23.4264%;
}


.col-layout.type5 > .column:nth-of-type(n+5) {
  margin-top: 1rem;
}


/* --- COLUMN CONTENT --- */
.col-layout .column > *:first-child {
  margin-top: 0;
}


.col-layout .column > h2:first-child,
.col-layout .column > h3:first-child,
.col-layout .column > h4:first-child {
  margin-top: 1rem;
}


.col-layout .column > *:last-child {
  margin-bottom: 0;
}

.col-layout p {
  word-wrap: break-word;
}

.col-layout .ZMSGraphic:not(.imgwidth3) {
  float: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.col-layout .ZMSGraphic:not(.imgwidth3) .graphic, .col-layout .ZMSGraphic:not(.imgwidth3) .text {
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
}




/* --- CSS COLUMNS --- */

.css-columns[data-columns="2"] {
  columns: 300px 2;
}

.css-columns[data-columns="3"] {
  columns: 300px 3;
}

.btn {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0;
  border-radius: 2px;
  border: 1px solid rgb(21,71,52);
  padding: 1rem;
  background-color: transparent;
  box-sizing: border-box;
  font-family: "europa",sans-serif;
  font-size: 0.875em;
  line-height: 1;
  color: rgb(21,71,52);
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}


.contentBar .container .bar-content > .btn:last-child {
  margin-bottom: 5px;
}


.no-touch .btn:hover:not(.disabled):not([disabled]),
.no-touch .btn:active:not(.disabled):not([disabled]),
.no-touch a:hover .btn:not(.disabled):not([disabled]) {
  background-color: rgba(21,71,52,0.2);
  color: rgb(21,71,52);
  text-decoration: none;
}

.btn:focus {
  outline: 0;
}

.btn.active,
.btn:active {
  outline: 0;
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  opacity: 0.65;
}

.btn-primary.active,
.btn-warning.active,
.btn-inverse.active {
  color: rgb(255,255,255);
  color: rgba(255,255,255, 0.75);
}



/* --- PRIMARY --- */
.btn-primary {
  border-color: rgb(21,71,52);
  background-color: rgb(21,71,52);
  color: rgb(255,255,255);
}

.no-touch .btn-primary:hover:not(.disabled):not([disabled]),
.no-touch .btn-primary:active:not(.disabled):not([disabled]),
.no-touch a:hover .btn-primary:not(.disabled):not([disabled]) {
  background-color: rgb(34, 34, 35);
  color: rgb(255,255,255);
}


/* --- SECONDARY --- */
.btn-secondary {
  border-color: rgb(255,255,255);
  background-color: rgba(255,255,255,0.85);
  color: rgb(21,71,52);
}

.no-touch .btn-secondary:hover:not(.disabled):not([disabled]),
.no-touch .btn-secondary:active:not(.disabled):not([disabled]),
.no-touch a:hover .btn-secondary:not(.disabled):not([disabled]) {
  background-color: rgb(255,255,255);
  color: rgb(21,71,52);
}



.btn > span {
  display: inline-block;
  vertical-align: middle;
}


.btn > i {
  position: relative;
  vertical-align: middle;
  font-size: 1.4rem;
}

.btn > i + span, .btn > span + i {
  margin-left: 0.5rem;
  vertical-align: middle;
}




/* --- CLOSE BUTTON --- */
.labeled-icon {
  position: absolute;
  display: block;
  top: 5%;
  top: 4vw;
  right: 2%;
  right: 4vw;
  width: 50px;
  height: 50px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(0,0,0,0.2);
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
  z-index: 5;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.no-touch .labeled-icon:hover, .no-touch .labeled-icon:active {
  background: rgba(255,255,255,0.6);
}

.labeled-icon .icon {
  position: relative;
  display: block;
  width:  50%;
  height: 50%;
  margin: 25% 0 0 25%;
  background: transparent url(sprite-icons.png) 3px -75px no-repeat;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

button.labeled-icon .icon {
  margin-top: 0;
}

.csstransforms .labeled-icon .icon {
  background: transparent;
}

.no-touch .labeled-icon:hover .icon, .no-touch .labeled-icon:active .icon {
  background: transparent url(sprite-icons.png) 10px 10px no-repeat;
}

.csstransforms.no-touch .labeled-icon:hover .icon, .csstransforms.no-touch .labeled-icon:active .icon {
  background: transparent;
}


.csstransforms .labeled-icon .icon:before, .csstransforms .labeled-icon .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  width: 3px;
  height: 100%;
  background: rgb(255,255,255);
  backface-visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.csstransforms .labeled-icon .icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.csstransforms .labeled-icon .icon:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}


.csstransforms.no-touch .labeled-icon:hover .icon:before, .csstransforms.no-touch .labeled-icon:active .icon:before,
.csstransforms.no-touch .labeled-icon:hover .icon:after, .csstransforms.no-touch .labeled-icon:active .icon:after {
  background: rgb(0,0,0);
}


.csstransforms .labeled-icon i {
  display: none;
}


/* -- STANDARDS -----------------------------------------*/
form input, form select, form textarea {
  position: relative;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgb(21,71,52);
  border-radius: 2px;
  padding: 0.5em;
  box-sizing: border-box;
            font-size: 1em;
          font-family: chaparral-pro,serif;
          color: rgb(34, 34, 35);
          letter-spacing: 0.5px;
          background: rgb(255,255,255);
          font-weight: normal;
          line-height: 1.375;
      }

form input[type=radio], form input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 2px 5px 2px 0;
  border: 0;
  padding: 0;
  background: transparent;
}

button {
            font-size: 1em;
          font-family: chaparral-pro,serif;
          color: rgb(34, 34, 35);
          letter-spacing: 0.5px;
          background: rgb(255,255,255);
          font-weight: normal;
          line-height: 1.375;
      }


/* --- STANDARDS - VALIDATION --- */
.conForm .errors {
  display: none;
  margin: 0 0 2em;
  padding: 2em;
  background: rgb(167, 187, 180);
  background: rgba(21,71,52,0.2);
  color: rgb(34, 34, 35);
  box-sizing: border-box;
}

.contentBar.back2 .conForm .errors,
.contentBar.back3 .conForm .errors {
  background: rgb(230, 238, 236);
  background: rgba(255,255,255,0.3);
}

.conForm.bid .errors {
  margin: 0 0 1em;
  padding: 1em;
}

.conForm .errors.show {
  display: block;
}

form .required input, form .required select, form .required textarea {
  border-color: rgb(21,71,52);
}

form .invalid input:invalid, form .invalid select:invalid, form .invalid textarea:invalid,
form input.notvalid, form select.notvalid, form textarea.notvalid {
  border-color: rgb(204,0,0);
  background: rgba(204,0,0,0.1);
}

.no-csstransitions form .invalid input, .no-csstransitions form .invalid select, .no-csstransitions form .invalid textarea {
  border-color: rgb(204,0,0);
  background: rgba(204,0,0,0.1);
}

form .invalid input.radio, form .invalid input.checkbox,
form .invalid input[type=radio]:invalid, form .invalid input[type=checkbox]:invalid {
  border: 2px solid rgb(204,0,0);
  outline: 2px solid rgb(204,0,0);
}

form .invalid input + label {
  color: rgb(204,0,0);
}


.contentBar.back2 form .invalid input + label,
.contentBar.back3 form .invalid input + label,
.contentBar .container.back4 form .invalid input + label {
  color: rgb(255,255,255);
}


form .note-required {
  display: none;
  padding: 0.25rem 0;
  color: rgb(204,0,0);
  font-size: 0.85em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

form .privacy-input .note-required {
  font-size: 1em;
}

form .invalid input:invalid + .note-required, form .invalid select:invalid + .note-required, form .invalid textarea:invalid + .note-required,
form .invalid input:invalid ~ .note-required, form .invalid select:invalid ~ .note-required, form .invalid textarea:invalid ~ .note-required {
  display: block;
  opacity: 1;
}

form .invalid input + .note-required, form .invalid select + .note-required, form .invalid textarea + .note-required,
form .invalid input ~ .note-required, form .invalid select ~ .note-required, form .invalid textarea ~ .note-required {
  display: block;
  opacity: 0;
}



/* --- CONTAINERS --- */
.conForm {
  position: relative;
}

.form-modal .conForm {
  padding: 3em 0 0;
}


.ix-prod .conForm {
  max-width: 350px;
  margin: 1rem 0 0;
  border: 1px solid rgba(17,17,17,0.1);
  padding: 1rem;
  background: rgb(230, 238, 236);
  background: rgba(255,255,255,0.3);
  box-sizing: border-box;
}


.conForm.narrow {
  display: inline-block;
  width: 49.1817%;
}


.col-layout .conForm.narrow,
.contentBar .content-wrapper.position1 .conForm.narrow,
.contentBar .content-wrapper.position2 .conForm.narrow,
.contentBar .content-wrapper.position3 .conForm.narrow,
.contentBar .content-wrapper.position5 .conForm.narrow,
.contentBar .content-wrapper.position6 .conForm.narrow,
.contentBar .content-wrapper.position8 .conForm.narrow,
.contentBar .content-wrapper.position9 .conForm.narrow {
  width: 100%;
}

.conForm.register {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}


.conForm.resetpw {
  display: block;
  margin: 0 auto;
}

.conForm.newsletter-signup {
  max-width: 600px;
  margin: 2rem 0;
}

.contentBar .bar-content.justify2 .conForm.newsletter-signup {
  margin: 2rem auto;
}

.conForm.narrow.newsletter-signup {
  display: block;
  width: auto;
}

.conForm.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.conForm.invite {
  display: block;
  margin: 0 auto;
}

.conForm.search {
  margin: 1rem 0;
  z-index: 10;
}

.conForm.search form {
  display: flex;
  align-items: flex-start;
}

/* --- MODAL --- */

.form-modal {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
}


.form-modal.showForm {
  display:block;
  opacity: 1;
  z-index: 15;
}


.form-modal .modal-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(255,255,255);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}



/* --- SECTIONS --- */

.conForm.narrow section,
.form-modal .conForm.narrow section {
  width: 100%;
  box-sizing: border-box;
}

.conForm.narrow.newsletter-signup section {
  width: auto;
}

.conForm .formSend {
  text-align: right;
}


.conForm.newsletter-signup .formName {
  flex-grow: 1;
  order: 0;
  flex-basis: 25%;
}


.conForm.newsletter-signup .formPrivacy {
  flex-grow: 2;
  order: 2;
  padding-top: 0.25rem;
  font-size: 0.85em;
}


.conForm.newsletter-signup .formSend {
  flex-shrink: 0;
  order: 1;
  margin-left: 1rem;
}



.conForm.search section {
  flex-shrink: 0;
}


.conForm.search .formSort {
  margin-left: auto;
  text-align: right;
}

.conForm.search .formFilter {
  text-align: right;
  margin-left: 1rem;
}

/* --- WRAPPERS --- */

.conForm div {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 0 0.5rem;
  vertical-align: top;
}

.conForm.newsletter-signup div:not(.errors),
.conForm.search div {
  padding: 0;
}


.conForm .double1 {
  width: 30.4125%;
  padding: 0;
}

.form-modal .conForm .double1 {
  width: 31.1664%;
}


.conForm .double2 {
  width: 65.2074%;
  padding: 0;
}

.form-modal .conForm .double2 {
  width: 65.5839%;
}


.conForm .double1 + .double2,
.conForm .double2 + .double1 {
  margin-left: 4.3822%;
}


.form-modal .conForm .double1 + .double2,
.form-modal .conForm .double2 + .double1 {
  margin-left: 3.2497%;
}

.conForm .formBid div {
  display: flex;
  flex-wrap: wrap;
}

.no-csstransitions .conForm .formBid div {
  display: block;
}

.conForm .formTel div {
  display: block;
}

.conForm.search .formSearch div {
  max-width: 400px;
}



/* --- STANDARDS --- */
.conForm h4 {
  margin: 1rem 0 0;
}

.conForm .column h4 {
  text-align: left;
}

.conForm p {
  clear: both;
}

.conForm .formBid p {
  width: 100%;
  flex-shrink: 0;
}

.ix-prod .conForm p a {
  text-decoration: underline;
}


/* --- LABELS --- */
.conForm label {
  position: relative;
  display: none;
  padding: 0 0 2px 4px;
}

.no-placeholder .conForm label {
  display: block;
}

.conForm label.show-before {
  display: block;
}

.conForm label.beside {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.conForm label.above {
  display: block;
  margin: 0;
  padding: 0;
}


.conForm label.radio, .conForm .wide label.radio {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0 1em 0 0;
  vertical-align: middle;
}

.conForm label.checkbox {
  display: inline;
}

.conForm .wide label.radio {
  padding: 0;
}

.conForm label.long, .conForm .wide label.long {
  display: inline-block;
  width: 75%;
  width: calc(100% - 30px);
  padding: 0;
  vertical-align: top;
}


.conForm .formBid label {
  display: inline-block;
  width: auto;
  margin: 0;
  border: 1px solid rgb(21,71,52);
  padding: 0.5rem 0.75rem;
  background: rgb(255,255,255);
  box-sizing: border-box;
  vertical-align: middle;
  flex-shrink: 0;
}

.no-csstransitions .conForm .formBid label {
  width: 35px;
  padding: 0.5rem 0;
  text-align: center;
}

.conForm .formBid label:first-child {
  border-radius: 2px 0 0 2px;
  border-right: 0;
}


.conForm.search .formSort label,
.conForm.search .formFilter label {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  margin-left: 1rem;
  padding: 0;
  text-align: center;
  font-size: 1.4em;
}


/* --- INPUTS --- */

.conForm input {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0;
  z-index: 0;
  vertical-align: middle;
}

.conForm input.short {
  width: 125px;
}

.conForm input.medium {
  width: 40%;
  margin: 0 3%;
}

.conForm input.radio, .conForm .required input.radio {
  margin-left: 0;
}

.conForm .formBid input {
  width: 150px;
  border-radius: 0 2px 2px 0;
  flex-grow: 2;
  text-align: right;
}

.no-csstransitions .conForm .formBid input {
  width: calc(100% - 35px);
}

.conForm.search input {
  border-color: rgba(17,17,17,0.25);
  padding-right: 50px;
}

.conForm .btn {
  width: auto;
  margin: 0;
  padding-top: 0.49rem;
  padding-right: 0.25rem;
  padding-bottom: 0.49rem;
  white-space: normal;
}


.conForm.bid .btn {
  padding-top: 0.85rem;
  padding-right: 1rem;
  padding-bottom: 0.65rem;
}


.conForm .btn.wide {
  width: 100%;
  padding: 1rem;
}

.conForm.search .submit {
  position: absolute;
  right: 0.5rem;
  bottom: 0.65rem;
  background-color: transparent;
  color: rgb(21,71,52);
}


/* --- SELECT --- */

.conForm select {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  vertical-align: top;
}

.conForm select.short {
  width: 60px;
}

.conForm option {
  color: rgb(34, 34, 35);
}


.conForm option.hide {
  display: none;
}


.conForm.search select {
  width: 200px;
  margin-left: 1rem;
  vertical-align: middle;
}


/* --- TEXTAREA --- */
.conForm textarea {
  width: 100%;
  height: 200px;
}



/* --- LOGIN --- */

.form-login {
  width: 350px;
  max-width: 100%;
  margin: 50px auto;
  padding: 10px 20px;
  background: #F5F5F5;
  box-sizing: border-box;
  box-shadow: 0 1px 3px #AAAAAA;
  text-align: center;
}

.product-wrapper .form-login {
  width: auto;
  max-width: 350px;
  margin: 1rem auto;
}

.no-opacity .form-login {
  border: 1px solid #CCCCCC
}

.form-login h1 {
  font-size: 1.2em;
  line-height: 1.25em;
}

.form-login .login-title {
  margin: 1rem 0;
  padding: 0;
  font-family: "europa",sans-serif;
}



.contentBar {
  position: relative;
  left: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  margin: 0;
  background-color: rgb(255,255,255);
  box-sizing: border-box;
  overflow: hidden;
}


.overlay-holder .contentBar {
  left: calc(-42vw + 50%);
  width: 84vw;
}


.contentBar.no-image {
  margin: 3rem 0;
}


/* --- need margins when other content before or after content bar --- */
*:not(.contentBar) + .contentBar {
  margin-top: 3rem;
}

.contentBar + *:not(.contentBar) {
  margin-top: 3rem !important;
}





.layout0 .contentBar {
  left: 0;
  left: calc(-50vw + 67%);
}


.modal-notice .contentBar {
  left: auto;
  width: 100%;
  margin: 0;
  padding: 10%;
}


/* --- content bar height --- */
.contentBar.no-text.height2 {
  height: 25vh;
}

.contentBar.no-text.height3 {
  height: 50vh;
}

.contentBar.no-text.height4 {
  height: 75vh;
}

.contentBar.no-text.height5 {
  height: 100vh;
}




/* --- content bar background --- */
.contentBar.back1 {
  background-color: rgba(0,0,0,0.05);
}

.contentBar.back2 {
  background-color: rgb(21,71,52);
}

.contentBar.back3 {
  background-color: rgb(21,71,52);
}

.contentBar.back4 {
  background-color: transparent;
}

.contentBar .background-image[data-bg-opacity="1"] {
  opacity:0.75;
}
.contentBar .background-image[data-bg-opacity="2"] {
  opacity:0.5;
}
.contentBar .background-image[data-bg-opacity="3"] {
  opacity:0.25;
}


.contentBar .background-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  overflow: hidden;
}


.contentBar.height1 .background-image {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: 0;
}


.contentBar .background-image[data-bg-layout="5"] {
  max-width: 100%;
}


.contentBar .background-image > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}



.contentBar .background-image[data-bg-layout="2"] > div {
  width: 50%;
}

.contentBar .background-image[data-bg-layout="3"] > div {
  right: 0;
  left: auto;
  width: 50%;
}


/* --- Kachel --- */
.contentBar .background-image[data-bg-layout="5"] > div,
.contentBar .background-image > div div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


/* --- Parallax --- */
.contentBar .background-image[data-bg-layout="0"] > .parascroll {
  left: 50%;
  width: 100vmax;
  height: 150%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}




/* --- Everything else --- */
.contentBar .background-image > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
    -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}



.no-objectfit .contentBar .background-image > div img,
.no-objectfit .contentBar .background-image[data-bg-layout="0"] > div img {
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}


.contentBar .background-image > div .lores {
  opacity: 0.75;
  background-size: cover;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}


/* --- Bildgröße --- */
.contentBar .background-image[data-bg-layout="4"] > div img {
  -o-object-fit: auto;
  object-fit: auto;
}


/* --- 100% Höhe --- */
.contentBar .background-image[data-bg-layout="6"] > div img {
  left: auto;
  width: auto;
}



.contentBar .background-image[data-bg-layout="6"][data-orientation="0"] > div img {
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="1"] > div img {
  left: 0;
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="2"] > div img {
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="3"] > div img {
  right: 0;
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="4"] > div img {
  right: 0;
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="5"] > div img {
  right: 0;
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="6"] > div img {
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="7"] > div img {
  left: 0;
}

.contentBar .background-image[data-bg-layout="6"][data-orientation="8"] > div img {
  left: 0;
}



.contentBar .background-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
    -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}



.no-objectfit .contentBar .background-image video,
.no-objectfit .contentBar .background-image[data-bg-layout="0"] video {
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}



/* --- OFFSET GRAPHIC --- */
.contentBar .offset-graphic {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}



.contentBar .offset-graphic[data-gap="1"] {
  top: 2rem;
  bottom: 2rem;
}



.contentBar .offset-graphic.img-layout0 {
  right: 50%;
}

.contentBar .offset-graphic[data-gap="1"].img-layout0 {
  right: 45%;
  right: calc(50% + 2rem);
  width: calc(50% - 4rem);
}

.contentBar .offset-graphic.img-layout1 {
  left: 50%;
}

.contentBar .offset-graphic[data-gap="1"].img-layout1 {
  left: 45%;
  left: calc(50% + 2rem);
  width: calc(50% - 4rem);
}



.offset-graphic img {
  position: absolute;
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}


.contentBar .offset-graphic[data-orientation="0"] img {
  top: 0;
  left: 0;
}

.contentBar .offset-graphic[data-orientation="1"] img {
  top: 0;
  right: 0;
}

.contentBar .offset-graphic[data-orientation="2"] img {
  bottom: 0;
  right: 0;
}

.contentBar .offset-graphic[data-orientation="3"] img {
  bottom: 0;
  left: 0;
}

.contentBar .offset-graphic[data-orientation="4"] img {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}


.contentBar .offset-graphic[data-orientation="5"] img {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}


.contentBar .offset-graphic[data-orientation="6"] img {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}



/* --- MAP IN FIRST LEVEL --- */

.contentBar .background-map {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
}




.contentBar.height1 .background-map,
.contentBar .background-map:only-child {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: 400px;
}

.contentBar.height2 .background-map:only-child {
  height: 25vh;
}

.contentBar.height3 .background-map:only-child {
  height: 50vh;
}

.contentBar.height4 .background-map:only-child {
  height: 75vh;
}

.contentBar.height5 .background-map:only-child {
  height: 100vh;
}



.contentBar .background-map[data-bg-layout="2"] {
  right: auto;
  width: 50%;
}

.contentBar .background-map[data-bg-layout="3"] {
  left: auto;
  width: 50%;
}


.contentBar .background-map #map {
  height: 100%;
  padding: 0;
}


.contentBar .content-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  z-index: 2;
}



/* --- mittig (default) --- */
.contentBar .content-wrapper.position,
.contentBar .content-wrapper.position0 {
  align-items: center;
}

/* --- Oben --- */
.contentBar .content-wrapper.position4,
.contentBar .content-wrapper.position5,
.contentBar .content-wrapper.position6 {
  align-items: flex-start;
}

/* --- Unten --- */
.contentBar .content-wrapper.position7,
.contentBar .content-wrapper.position8,
.contentBar .content-wrapper.position9 {
  align-items: flex-end;
}



.contentBar .content-wrapper:before,
.contentBar > .media-gallery:only-child:before {
  content: "";
  float: left;
  width: 1px;
  margin-left: -1px;
}


.contentBar.height2 .content-wrapper:before,
.contentBar.height2 > .media-gallery:only-child:before {
  height: 25vh;
}

.contentBar.height3 .content-wrapper:before,
.contentBar.height3 > .media-gallery:only-child:before {
  height: 50vh;
}

.contentBar.height4 .content-wrapper:before,
.contentBar.height4 > .media-gallery:only-child:before {
  height: 75vh;
}

.contentBar.height5 .content-wrapper:before,
.contentBar.height5 > .media-gallery:only-child:before {
  height: 100vh;
}


.contentBar .container {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 4em 0;
}

.contentBar.back4 .content-wrapper:only-child .container,
.contentBar .content-wrapper .container[data-text-style="1"] {
  padding: 0;
}

.contentBar .container:not(.back0)[data-text-style="1"] {
  width: 100%;
}

/* --- Linksbündig --- */
.contentBar .content-wrapper.position .container,
.contentBar .content-wrapper.position0 .container,
.contentBar .content-wrapper.position1 .container,
.contentBar .content-wrapper.position4 .container,
.contentBar .content-wrapper.position5 .container,
.contentBar .content-wrapper.position7 .container,
.contentBar .content-wrapper.position8 .container {
  justify-content: flex-start;
}


/* --- Rechtsbündig --- */
.contentBar .content-wrapper.position3 .container,
.contentBar .content-wrapper.position6 .container,
.contentBar .content-wrapper.position9 .container {
  justify-content: flex-end;
}

.no-csstransitions .contentBar .content-wrapper.position3 .container,
.no-csstransitions .contentBar .content-wrapper.position6 .container,
.no-csstransitions .contentBar .content-wrapper.position9 .container {
  text-align: right;
}

/* --- Zentriert --- */
.contentBar .content-wrapper.position2 .container {
  justify-content: center;
}

.no-csstransitions .contentBar .content-wrapper.position2 .container {
  text-align: center;
}





.contentBar .media-gallery + .content-wrapper,
.contentBar .background-map + .content-wrapper {
  pointer-events: none;
}



/* --- text color --- */
/* standard */

/* white */
.contentBar .container.color1,
.contentBar .container.color1 h2,
.contentBar .container.color1 h3,
.contentBar .container.color1 h4,
.contentBar .container.color1 h5,
.contentBar .container.color1 .index ul:not(.ix-bild) li > a,
.contentBar .container.color1 .ZMSFile a {
  color: rgb(255,255,255);
}


.contentBar .container.color1 p > a:not(.btn),
.contentBar .container.color1 .conForm a {
  color: rgb(255,255,255);
}


.no-touchevents .contentBar .container.color1 p > a:hover, .no-touchevents .contentBar .container.color1 p > a:active,
.no-touchevents .contentBar .container.color1 .conForm a:hover, .no-touchevents .contentBar .container.color1 .conForm a:active,
.no-touchevents .contentBar .container.color1 .index ul:not(.ix-bild) li > a:hover .ix-more, .no-touchevents .contentBar .container.color1 .index ul:not(.ix-bild) li > a:active .ix-more {
  color: rgb(255,255,255);
  background: rgba(255,255,255,0.1);
}


/* accent */
.contentBar .container.color2,
.contentBar .container.color2 h2,
.contentBar .container.color2 h3,
.contentBar .container.color2 h4,
.contentBar .container.color2 h5,
.contentBar .container.color2 .index ul:not(.ix-bild) li > a {
  color: rgb(21,71,52);
}

/* --- reverse above style for ix-bild headlines --- */
.contentBar .container.color2 .ix-bild h3 {
  color: rgb(255,255,255);
}

.contentBar .container.color2 p > a:not(.btn) {
  color: rgb(21,71,52);
}

.no-touchevents .contentBar .container.color2 p > a:hover, .no-touchevents .contentBar .container.color2 p > a:active,
.no-touchevents .contentBar .container.color2 .index ul:not(.ix-bild) li > a:hover .ix-more, .no-touchevents .contentBar .container.color2 .index ul:not(.ix-bild) li > a:active .ix-more {
  color: rgb(21,71,52);
  background: rgba(21,71,52,0.1);
}


/* dark */
.contentBar .container.color3,
.contentBar .container.color3 h2,
.contentBar .container.color3 h3,
.contentBar .container.color3 h4,
.contentBar .container.color3 h5,
.contentBar .container.color3 .index ul:not(.ix-bild) li > a {
  color: rgb(21,71,52);
}

/* --- reverse above style for ix-bild headlines --- */
.contentBar .container.color3 .ix-bild h3 {
  color: rgb(21,71,52);
}

.contentBar .container.color3 p > a:not(.btn) {
  color: rgb(21,71,52);
}

.no-touchevents .contentBar .container.color3 p > a:hover, .no-touchevents .contentBar .container.color3 p > a:active,
.no-touchevents .contentBar .container.color3 .index ul:not(.ix-bild) li > a:hover .ix-more, .no-touchevents .contentBar .container.color3 .index ul:not(.ix-bild) li > a:active .ix-more {
  color: rgb(21,71,52);
  background: rgba(21,71,52,0.1);
}



/* --- BAR CONTENT --- */
.contentBar .container .bar-content {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  pointer-events: auto;
}



/* --- text width --- */
.contentBar .content-wrapper.position1 .bar-content,
.contentBar .content-wrapper.position2 .bar-content,
.contentBar .content-wrapper.position3 .bar-content,
.contentBar .content-wrapper.position5 .bar-content,
.contentBar .content-wrapper.position6 .bar-content,
.contentBar .content-wrapper.position8 .bar-content,
.contentBar .content-wrapper.position9 .bar-content {
  width: 44.95%;
}


.contentBar .content-wrapper.position1 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position5 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position8 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content {
  width: 50%;
}



/* --- text justify --- */
.contentBar .content-wrapper .bar-content.justify0 {
  text-align: left;
}

.contentBar .content-wrapper .bar-content.justify1 {
  text-align: right;
}

.contentBar .content-wrapper .bar-content.justify2 {
  text-align: center;
}




/* --- text padding --- */
.contentBar .container:not(.back0)[data-text-style="0"] .bar-content,
.contentBar .container:not(.back0)[data-text-style="1"] .bar-content {
  padding: 3rem 4.233%;
}



/* --- text background - full container height --- */
.contentBar .container[data-text-style="1"] .bar-content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}


.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content:before {
  left: 50%;
}


.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content:before {
  left: 25%;
}


.contentBar .content-wrapper.position1 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position5 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position8 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content:before {
  width: 50%;
}




/* --- text background color --- */
.contentBar .container.back1[data-text-style="0"] .bar-content,
.contentBar .container.back1[data-text-style="1"] .bar-content:before {
  background-color: rgba(255,255,255,0.85);
}

.contentBar .container.back2[data-text-style="0"] .bar-content,
.contentBar .container.back2[data-text-style="1"] .bar-content:before {
  background-color: rgba(230, 238, 236,0.85);
}

.contentBar .container.back3[data-text-style="0"] .bar-content,
.contentBar .container.back3[data-text-style="1"] .bar-content:before {
  background-color: rgba(21,71,52,0.85);
}

.contentBar .container.back4[data-text-style="0"] .bar-content,
.contentBar .container.back4[data-text-style="1"] .bar-content:before {
  background-color: rgba(21,71,52,0.85);
}




.contentBar .media-gallery + .content-wrapper .bar-content,
.contentBar .background-map + .content-wrapper .bar-content {
  pointer-events: auto;
}


.contentBar .container .bar-content > *:first-child {
  margin-top: 0;
}

.contentBar .container .bar-content > *:last-child {
  margin-bottom: 0;
}



.contentBar .container[data-text-style="2"] .bar-content h2,
.contentBar .container[data-text-style="2"] .bar-content h3,
.contentBar .container[data-text-style="2"] .bar-content h4,
.contentBar .container[data-text-style="2"] .bar-content p,
.contentBar .container[data-text-style="2"] .bar-content .gallery-title {
  box-decoration-break: clone;
  display: inline;
  line-height: 1.5;
}

.contentBar .container[data-text-style="2"] .bar-content h2:before,
.contentBar .container[data-text-style="2"] .bar-content h2:after,
.contentBar .container[data-text-style="2"] .bar-content h3:before,
.contentBar .container[data-text-style="2"] .bar-content h3:after,
.contentBar .container[data-text-style="2"] .bar-content h4:before,
.contentBar .container[data-text-style="2"] .bar-content h4:after,
.contentBar .container[data-text-style="2"] .bar-content p:before,
.contentBar .container[data-text-style="2"] .bar-content p:after,
.contentBar .container[data-text-style="2"] .bar-content .gallery-title:before,
.contentBar .container[data-text-style="2"] .bar-content .gallery-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin: 1rem 0;
}

.contentBar .container.back1[data-text-style="2"] .bar-content h2,
.contentBar .container.back1[data-text-style="2"] .bar-content h3,
.contentBar .container.back1[data-text-style="2"] .bar-content h4,
.contentBar .container.back1[data-text-style="2"] .bar-content p,
.contentBar .container.back1[data-text-style="2"] .bar-content .gallery-title {
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0.5rem 0 0 rgba(255,255,255,0.85), -0.5rem 0 0 rgba(255,255,255,0.85);
}

.contentBar .container.back2[data-text-style="2"] .bar-content h2,
.contentBar .container.back2[data-text-style="2"] .bar-content h3,
.contentBar .container.back2[data-text-style="2"] .bar-content h4,
.contentBar .container.back2[data-text-style="2"] .bar-content p,
.contentBar .container.back2[data-text-style="2"] .bar-content .gallery-title {
  background-color: rgba(230, 238, 236,0.85);
  box-shadow: 0.5rem 0 0 rgba(230, 238, 236,0.85), -0.5rem 0 0 rgba(230, 238, 236,0.85);
}

.contentBar .container.back3[data-text-style="2"] .bar-content h2,
.contentBar .container.back3[data-text-style="2"] .bar-content h3,
.contentBar .container.back3[data-text-style="2"] .bar-content h4,
.contentBar .container.back3[data-text-style="2"] .bar-content p,
.contentBar .container.back3[data-text-style="2"] .bar-content .gallery-title {
  background-color: rgba(21,71,52,0.85);
  box-shadow: 0.5rem 0 0 rgba(21,71,52,0.85), -0.5rem 0 0 rgba(21,71,52,0.85);
}

.contentBar .container.back4[data-text-style="2"] .bar-content h2,
.contentBar .container.back4[data-text-style="2"] .bar-content h3,
.contentBar .container.back4[data-text-style="2"] .bar-content h4,
.contentBar .container.back4[data-text-style="2"] .bar-content p,
.contentBar .container.back4[data-text-style="2"] .bar-content .gallery-title {
  background-color: rgba(21,71,52,0.85);
  box-shadow: 0.5rem 0 0 rgba(21,71,52,0.85), -0.5rem 0 0 rgba(21,71,52,0.85);
}


.contentBar .container[data-text-style="2"] .bar-content ul {
  clear: both;
}

.contentBar .container[data-text-style="2"] .bar-content > ul li {
  position: relative;
  float: left;
  margin: 2px 0;
  padding: 0;
  clear: both;
}

.contentBar .container[data-text-style="2"] .bar-content > ul.list-plus li:before,
.contentBar .container[data-text-style="2"] .bar-content > ul.list-check li:before {
  top: 2px;
}

.contentBar .container[data-text-style="2"] .bar-content > ul li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1em;
  z-index: -1;
  white-space: pre-wrap;
  box-decoration-break: clone;
}

.contentBar .container[data-text-style="2"] .bar-content > ul.list-plus li:after,
.contentBar .container[data-text-style="2"] .bar-content > ul.list-check li:after {
  left: -1.618em;
}


.contentBar .container.back1[data-text-style="2"] .bar-content > ul li:after {
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0.5rem 0 0 rgba(255,255,255,0.85), -0.5rem 0 0 rgba(255,255,255,0.85);
}

.contentBar .container.back2[data-text-style="2"] .bar-content > ul li:after {
  background-color: rgba(230, 238, 236,0.85);
  box-shadow: 0.5rem 0 0 rgba(230, 238, 236,0.85), -0.5rem 0 0 rgba(230, 238, 236,0.85);
}

.contentBar .container.back3[data-text-style="2"] .bar-content > ul li:after {
  background-color: rgba(21,71,52,0.85);
  box-shadow: 0.5rem 0 0 rgba(21,71,52,0.85), -0.5rem 0 0 rgba(21,71,52,0.85);
}

.contentBar .container.back4[data-text-style="2"] .bar-content > ul li:after {
  background-color: rgba(21,71,52,0.85);
  box-shadow: 0.5rem 0 0 rgba(21,71,52,0.85), -0.5rem 0 0 rgba(21,71,52,0.85);
}


.contentBar .container[data-text-style="2"] .bar-content .btn {
  margin-left: -0.5rem;
}




.contentBar.back3 p > a, .contentBar .back4 p > a {
  color: rgb(34, 34, 35);
}

.media-gallery {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.ix-prod .media-gallery {
  width: 30%;
  padding: 1rem;
}


.media-gallery:not(.gallery-slideshow) .gallery-page {
  position: relative;
  width: 102.1432%;
  margin: 0 -1.0716%;
}

.media-gallery .gallery-page.changing {
  overflow: hidden;
}


/* --- WRAPPER FOR NAVIGATION --- */

.media-gallery .wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.ix-prod .media-gallery .wrap {
  top: 1em;
  right: 1em;
  bottom: 1em;
  left: 1em;
}

.media-gallery.carousel .wrap {
  white-space: nowrap;
  overflow-x: scroll;
}

.media-gallery.carousel .wrap.flickity-enabled {
  overflow: unset;
}

.media-gallery .wrap.active {
  z-index: 1;
}

.media-gallery .wrap.active, .media-gallery.tInfinity .wrap.view {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 0.1em;
  opacity: 1;
  visibility: visible;
}


.media-gallery .wrap.old {
  z-index: auto;
}

.media-gallery .wrap.new {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.media-gallery.tInfinity .wrap.new {
  top: 100%;
}




/* --- GALLERY ITEM DEFAULTS --- */
.media-gallery .gallery-item .item-container {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.media-gallery .gallery-item .gal-img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0 0 66%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.overlay .gal-img.lazy {
  display: none;
}

.pageoverlay-item.new .gal-img.lazy,
.pageoverlay-item.active .gal-img.lazy {
  display: block;
}

.media-gallery .gallery-item .gal-img.lazy {
  opacity: 0;
}


.media-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.media-gallery .gallery-item .gal-text {
  margin: 5px 0 0;
}



/* --- CAROUSEL --- */
.media-gallery.carousel .gallery-item {
  position: relative;
  display: inline-block;
  width: 22.9018%;
  margin: 1.0491%;
  vertical-align: top;
  -webkit-transition: width 0.3s, margin 0.3s;
  transition: width 0.3s, margin 0.3s;
}



/* --- THUMBGRID THUMBNAILS --- */

.gallery-thumbgrid .gallery-item {
  position: relative;
  display: inline-block;
  width: 14.5624%;
  margin: 1.0491%;
  vertical-align: top;
  -webkit-transition: width 0.3s, margin 0.3s;
  transition: width 0.3s, margin 0.3s;
}


.gallery-thumbgrid .gallery-item .item-container {
  background-color: rgba(0,0,0,0.1);
  color: rgb(255,255,255);
}

.gallery-thumbgrid.hover2 .gallery-item a, .gallery-thumbgrid.hover3 .gallery-item a {
  overflow: hidden;
}


.gallery-thumbgrid .gallery-item .gal-img {
  padding: 0 0 100%;
  background-size: contain;
}

.gallery-thumbgrid .gal-text {
  display: none;
}



/* --- THUMBGRID HOVER EFFECTS --- */

/* --- BORDER --- */

.hover1 .gallery-item a:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(21,71,52);
  background: rgba(21,71,52,0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

.no-touch .hover1 .gallery-item a:hover:after, .no-touch .hover1 .gallery-item a:active:after {
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
}




/* --- ZOOM IMAGE --- */

.no-touch .hover2 .gallery-item a:hover .gal-img, .no-touch .hover2 .gallery-item a:active .gal-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}




/* --- ZOOM ICON --- */

.media-gallery .gal-zoom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}




.media-gallery.single-media .gal-zoom {
  opacity: 0.8;
  visibility: visible;
}


.no-touch .media-gallery a:hover .gal-zoom, .no-touch .media-gallery a:active .gal-zoom {
  opacity: 1;
  visibility: visible;
}



.media-gallery .gal-zoom span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  line-height: 1;
  color: rgb(255,255,255);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.media-gallery.single-media .gallery-page .gal-zoom span {
  font-size: 5rem;
}





/* --- ZOOM IMAGE & BKGD --- */

.media-gallery.hover3 .gal-zoom, 
.media-gallery.hover4 .gal-zoom {
  background: rgb(21,71,52);
  background: rgba(21,71,52,0.6);
}


.gallery-slideshow.hover3 .gal-zoom, 
.gallery-slideshow.hover4 .gal-zoom,
.single-media.hover3 .gal-zoom, 
.single-media.hover4 .gal-zoom {
  background: transparent;
}

.no-touch .gallery-slideshow.hover3 a:hover .gal-zoom, .no-touch .gallery-slideshow.hover3 a:active .gal-zoom,
.no-touch .gallery-slideshow.hover4 a:hover .gal-zoom, .no-touch .gallery-slideshow.hover4 a:active .gal-zoom,
.no-touch .single-media.hover3 a:hover .gal-zoom, .no-touch .single-media.hover3 a:active .gal-zoom,
.no-touch .single-media.hover4 a:hover .gal-zoom, .no-touch .single-media.hover4 a:active .gal-zoom {
  background: rgb(21,71,52);
  background: rgba(21,71,52,0.6);
}

.media-gallery.hover3 .gal-zoom span {
  background: transparent;
}







/* --- PLAY ICON --- */

.media-gallery .gal-play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.media-gallery.single-media .gal-play, .media-gallery.single-media .gal-play {
  opacity: 0.5;
  visibility: visible;
}

.no-touch .media-gallery a:hover .gal-play, .no-touch .media-gallery a:active .gal-play {
  opacity: 1;
  visibility: visible;
}

.media-gallery .gal-play span {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  border: 1px solid rgb(21,71,52);
  border: 1px solid rgba(21,71,52,0.8);
  padding: 0 8px;
  background: rgb(21,71,52);
  background: rgba(0,0,0,0.8);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  font-size: 2.5rem;
  color: rgb(255,255,255);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.media-gallery.single-media .gal-play span, .media-gallery.single-media .gal-play span,
.no-touch .media-gallery a:hover .gal-play span, .no-touch .media-gallery a:active .gal-play span {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}





/* --- PAGE LOADER --- */

.gallery-page .loader {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255,255,255,0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}

.gallery-page .loader.view {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gallery-page .loader span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  padding: 10px 7px;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.2);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
  font-size: 2rem;
  line-height: 1;
  color: rgb(255,255,255);
}






/* --- VIDEO ALBUM / AUDIO ALBUM --- */

.gallery-audio .gallery-item,
.gallery-video .gallery-item {
  display: inline-block;
  width: 31.22318%;
  margin: 1.0491%;
  vertical-align: top;
}

.layout2 .gallery-audio .gallery-item,
.layout3 .gallery-video .gallery-item {
  display: inline-block;
  width: 31.7471%;
  margin: 0.7868%;
}


.gallery-audio .gallery-item .gal-text,
.gallery-video .gallery-item .gal-text {
  position: relative;
  display: block;
}






/* --- THUMBGRID PAGE NAVIGATION --- */

.nav-pages {
  margin: 1rem 0;
  text-align: center;
}

.nav-pages a {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 6px 14px;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.2rem;
  color: rgb(34, 34, 35);
}


.no-touch .nav-pages a:hover, .no-touch .nav-pages a:active {
  background-color: rgb(167, 187, 180);
}

.nav-pages .active, .no-touch .nav-pages .active:hover, .no-touch .nav-pages .active:active {
  border: 1px solid rgb(167, 187, 180);
  background-color: rgb(255,255,255);
  cursor: default;
}

.nav-pages .active span {
  cursor: default;
}

.nav-pages .disabled,
.no-touch .nav-pages .disabled:hover,
.no-touch .nav-pages .disabled:active {
  background-color: transparent;
  color: rgb(230, 238, 236);
  cursor: default;
  opacity: 0.25;
}

.nav-pages .disabled span {
  cursor: default;
}

.nav-pages a:first-child {
  border-left-width: 1px;
  border-radius: 2px 0 0 2px;
}

.nav-pages a:last-child {
  border-radius: 0 2px 2px 0;
}




/* --- THUMBGRID PAGE ARROW NAVIGATION --- */

.nav-arrows, .nav-infinity {
  position: absolute;
  top: 50%;
  width:  3.5292%;
  height: 60px;
  margin: 0;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 3;
}

.nav-arrows.next {
  right: 0;
}

.nav-arrows.prev {
  left: 0;
}


.nav-infinity {
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}


.nav-arrows.disabled, .nav-infinity.disabled {
  opacity: 0.3;
  cursor: default;
}

.nav-arrows.hide, .nav-infinity.hide {
  opacity: 0;
  visibility: hidden;
}


.media-gallery:not(.tArrows) .nav-arrows {
  display: none;
}

.nav-arrows a, .nav-infinity a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}


.nav-arrows.prev a {
  text-align: left;
}

.nav-arrows.next a {
  text-align: right;
}

.nav-arrows a.disabled, .nav-infinity a.disabled {
  opacity: 0.3;
  cursor: default;
}


.nav-arrows a.hide, .nav-infinity a.hide {
  opacity: 0;
  visibility: hidden;
}

.nav-arrows a span, .nav-infinity a span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing:border-box;
  font-size: 4rem;
  line-height: 1;
  color: rgb(34, 34, 35);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}


.nav-arrows a.disabled span, .nav-infinity a.disabled span {
  cursor: default;
}




.no-touch .nav-arrows:not(.disabled) a:not(.disabled):hover span, .no-touch .nav-arrows:not(.disabled) a:not(.disabled):active span,
.no-touch .nav-infinity:not(.disabled) a:not(.disabled):hover span, .no-touch .nav-infinity:not(.disabled) a:not(.disabled):active span {
  color: rgb(21,71,52);
}




/* --- PHOTOALBUM - SLIDESHOW --- */


.gallery-slideshow.left {
  float: left;
  width: 48.9096%;
  margin-right: 2.1433%;
  padding: 0;
}


.col-layout .gallery-slideshow.left {
  float: none;
  width: 100%;
  margin-right: 0;
}

.gallery-slideshow.right {
  float: right;
  width: 48.9096%;
  margin-left: 2.1433%;
  padding: 0;
}

.col-layout .gallery-slideshow.right {
  float: none;
  width: 100%;
  margin-left: 0;
}


.ix-prod .gallery-slideshow.left,
.ix-prod .gallery-slideshow.right {
  float: none;
  width: 30%;
  margin: 0;
  padding: 1rem;
}

.ix-prod .gallery-slideshow.left .gallery-page,
.ix-prod .gallery-slideshow.right .gallery-page {
  position: relative;
}

.ix-prod .gallery-slideshow.left .gallery-page::before,
.ix-prod .gallery-slideshow.right .gallery-page::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(255,255,255);
}


.gallery-slideshow.hover2 .gallery-item,
.gallery-slideshow.hover3 .gallery-item {
  overflow: hidden;
}

.gallery-slideshow .gallery-item .gal-img {
  padding: 0 0 66%;
  background-size: contain;
}

.ix-prod .gallery-slideshow .gallery-item .gal-img {
  padding: 0 0 100%;
}


.gallery-slideshow.center .gallery-item .gal-img {
  padding: 0 0 33%;
}

.gallery-slideshow .gallery-item img {
  display: none;
}




/* --- SLIDESHOW NAV DOTS --- */

.slidetabs {
  position: relative;
  margin: 5px 0 0;
  text-align: center;
  z-index: 1;
}

.ix-prod .slidetabs {
  margin: 1em 0 0;
}

.indextabs {
  position: absolute;
  top: 2.5%;
  top: 2.5vw;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.contentBar > .gallery-slideshow .slidetabs {
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  margin: 0;
}

.contentBar > .gallery-slideshow.left .slidetabs {
  right: auto;
}

.contentBar > .gallery-slideshow.right .slidetabs {
  left: auto;
}

.indextabs:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin: 0 0 0 -1px;
  vertical-align: middle;
}



/* single tab */
.slidetabs a,
.indextabs a {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  border: 0;
  overflow: hidden;
  vertical-align: middle;
}


.slidethumbs a {
  margin: 5px 2px;
}


.slidetabs a span,
.indextabs a span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgb(230, 238, 236);
  background-color: rgba(0,0,0,0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}


.slidethumbs a span {
  width: 50px;
  height: 50px;
  border-radius: 0;
  padding: 2px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0.5;
}



.slidetabs a span:before,
.indextabs a span:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgb(255,255,255);
  z-index: -1;
}

.slidethumbs a span:before {
  display: none;
}

.no-touch .slidetabs a:hover span, .no-touch .slidetabs a:active span,
.no-touch .indextabs a:hover span, .no-touch .indextabs a:active span {
  background-color: rgb(167, 187, 180);
  background-color: rgba(0,0,0,0.3);
}

.slidetabs a.active span,
.indextabs a.active span,
.no-touch .slidetabs a.active:hover span, .no-touch .slidetabs a.active:active span,
.no-touch .indextabs a.active:hover span, .no-touch .indextabs a.active:active span {
  background-color: rgb(21,71,52);
  cursor: default;
}


.no-touch .slidethumbs a:hover span, .no-touch .slidethumbs a:active span {
  opacity: 1;
}

.slidethumbs a.active span,
.no-touch .slidethumbs a.active:hover span, .no-touch .slidethumbs a.active:active span {
  border: 2px solid rgb(21,71,52);
  padding: 0;
  cursor: default;
}


.slidethumbs a.active span,
.no-touch .slidethumbs a.active:hover span, .no-touch .slidethumbs a.active:active span {
  opacity: 1;
}





/* --- SINGLE VIDEO / SINGLE AUDIO --- */
.contentBar > .single-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.single-media .gallery-item {
  width: 48.9096%;
  box-sizing: border-box;
  cursor: pointer;
}


/* --- left --- */
.single-media .gallery-page[data-layout="0"] .gallery-item {
  float: left;
  margin-right: 2.1433%;
}


/* --- right --- */
.single-media .gallery-page[data-layout="1"] .gallery-item {
  float: right;
  margin-left: 2.1433%;
}


/* --- 100% | col content --- */
.single-media .gallery-page[data-layout="2"] .gallery-item,
.col-layout .single-media .gallery-page[data-layout="0"] .gallery-item,
.col-layout .single-media .gallery-page[data-layout="1"] .gallery-item {
  float: none;
  width: 100%;
  margin: 0;
}


.contentBar > .single-media .gallery-item {
  position: absolute;
  top: 0;
  bottom: 0;
}

.contentBar > .single-media .gallery-page[data-layout="0"] .gallery-item {
  float: none;
  left: 0;
  width: 50%;
  margin: 0;
}

.contentBar > .single-media .gallery-page[data-layout="1"] .gallery-item {
  float: none;
  right: 0;
  width: 50%;
  margin: 0;
}

.contentBar > .single-media .gallery-page[data-layout="2"] .gallery-item {
  left: 0;
  right: 0;
  width: auto;
}



.content .single-media .gallery-page .gal-text {
  margin-left: 51.0529%;
  color: rgb(34, 34, 35);
}

.content .single-media .gallery-page[data-layout="1"] .gal-text {
  margin-right: 51.0529%%;
  margin-left: 0;
}


.content .single-media .gallery-page[data-layout="2"] .gal-text,
.col-layout .single-media .gallery-page[data-layout="1"] .gal-text {
  margin: 1em 0 0;
}


.contentBar > .single-media .gal-text {
  display: none;
}


.content .single-media .gallery-page h3 {
  margin-top: 0;
}

.single-media .gallery-item .gal-img {
  padding: 0 0 56.25%;
}

.contentBar > .single-media .gallery-item .gal-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
}

.single-media .gallery-page .gallery-item .js-pano {
  position: relative;
  display: block;
  float: none;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
}



.single-media .gallery-item .video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
  background: rgb(0,0,0);
}

.contentBar > .single-media .gallery-item .video-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
}

.single-media .gallery-item .video-container iframe,
.single-media .gallery-item .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}








/* --- CONTENT GALLERY NAV --- */

.contentGallery .galNav {
  position: relative;
  width: 100%;
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.contentGallery .galNav li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.contentGallery .galNav a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  padding: 10px;
  background-color: rgb(21,71,52);
  background-color: rgba(21,71,52,0.5);
}

.contentGallery .galNav span {
  position: relative;
  display: block;
  width: 80%;
  height: 80%;
  margin: 10% 0 0 10%;
  box-sizing:border-box;
  font-size: 2rem;
  line-height: 1;
  color: rgb(255,255,255);
}

.csstransforms .contentGallery .galNav span i {
  display: none;
}

.csstransforms .contentGallery .galNav .next span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.csstransforms .contentGallery .galNav span:before, .csstransforms .contentGallery .galNav span:after {
  content: "";
  position: absolute;
  left: 25%;
  width: 4px;
  height: 50%;
  background: rgb(255,255,255);
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.csstransforms .contentGallery .galNav span:before {
  -webkit-transform: translate(-50%,0) rotate(40deg);
  transform: translate(-50%,0) rotate(45deg);
  -webkit-transform-origin: 0 100% 0;
  transform-origin: 0 100% 0;
}

.csstransforms .contentGallery .galNav span:after {
  top: 50%;
  -webkit-transform: translate(-50%,0) rotate(-40deg);
  transform: translate(-50%,0) rotate(-40deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}


.no-touch .contentGallery .galNav a:hover span, .no-touch .contentGallery .galNav a:hover span {
  color: rgb(21,71,52);
}

.csstransforms.no-touch .contentGallery .galNav a:hover span:before, .csstransforms.no-touch .contentGallery .galNav a:hover span:after {
  background: rgb(21,71,52);
}




.contentGallery .galImg {
  text-align: center;
}

.contentGallery .galImg img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}


/* --- OVERLAY GALLERY --- */

.overlay {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.8);
  text-align: center;
  opacity: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}


.overlay.open {
  display:block;
  opacity: 1;
  z-index: 14;
}


.overlay.changing {
  display:block;
  opacity: 1;
  z-index: 500;
}


.overlay .galImg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}


.overlay .galImg.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.overlay .galImg.new {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}






/* --- OVERLAY AUDIO WRAPPER --- */

.overlay .media-wrapper {

}

.overlay .audio-container {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 500px;
  max-width: 100%;
  height: 30px;
  max-height: 100%;
  margin: auto;
}




/* --- OVERLAY IMAGE --- */

.overlay .galImg .image-container {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain, contain;
}

.overlay .galImg img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
}

.overlay .galImg .media-wrapper img {
  display: none;
}

.overlay .galImg .media-wrapper audio {
  display: block;
  width: 100%;
}





/* --- VIDEO IN OVERLAY --- */

.overlay .overlay-video img {
  display: none;
}


.overlay .video-container,
.overlay .iframe-container {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  max-width: 177.78vh;
  height: 56.25vw;
  max-height: 100vh;
  margin: auto;
  background: rgb(0,0,0);
  z-index: 5;
}

.overlay .iframe-container iframe,
.overlay .video-container iframe,
.overlay .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}


.overlay #player object {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}




/* --- OVERLAY DESCRIPTION --- */

.overlay .galImg .text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1%;
  background: rgba(0,0,0,0.6);
  color: rgb(255,255,255);
  color: rgba(255,255,255,0.7);
  text-align: left;
  font-size: 0.85rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}


.overlay  .galImg .text.img-view {
  opacity: 0;
}


.overlay .galImg .text p {
  max-width: 800px;
}


/* --- OVERLAY LOADER --- */
.overlay .loader {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  padding: 10px 7px;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.2);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
  font-size: 2rem;
  line-height: 1;
  color: rgb(255,255,255);
}

.overlay .loader.hide {
  opacity: 0;
  z-index: -1;
}

.no-opacity .overlay .loader.hide {
  visibility: hidden;
}





/* --- OVERLAY NAV --- */

.overlay > .nav {
  position: absolute;
  top: 50%;
  width:  50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.2);
  box-sizing: border-box;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  z-index: 5;
}


.overlay > .nav.prev {
  left: 2%;
  left: 4vw;
}

.overlay > .nav.next {
  right: 2%;
  right: 4vw;
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
}

.overlay > .nav.disabled {
  opacity: 0.3;
  cursor: default;
}

.overlay > .nav.hide,
.overlay.inactive > .nav {
  opacity: 0;
  visibility: hidden;
}

.overlay > .nav.img-view {
  opacity: 0;
  visibility: hidden;
}



.no-touch .overlay > .nav:hover {
  background: rgba(255,255,255,0.6);
}

.no-touch .overlay > .nav.disabled:hover {
  background: rgba(0,0,0,0.2);
}


.overlay > .nav span {
  position: relative;
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% 0 0 20%;
  box-sizing:border-box;
  font-size: 4rem;
  line-height: 1;
}

.overlay > .next span {
  margin-left: 15%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}


.overlay > .nav span:before, .overlay > .nav span:after {
  content: "";
  position: absolute;
  left: 25%;
  width: 3px;
  height: 50%;
  background: rgb(255,255,255);
  backface-visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.overlay > .nav span:before {
  -webkit-transform: translate(-50%,0) rotate(40deg);
  transform: translate(-50%,0) rotate(45deg);
  -webkit-transform-origin: 0 100% 0;
  transform-origin: 0 100% 0;
}

.overlay > .nav span:after {
  top: 50%;
  -webkit-transform: translate(-50%,0) rotate(-40deg);
  transform: translate(-50%,0) rotate(-40deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}


.no-touch .overlay > .nav:not(.disabled):hover span:before, .no-touch .overlay > .nav:not(.disabled):hover span:after {
  background: rgb(0,0,0);
}






/* --- CLOSE BUTTON --- */

.overlay .close.img-view {
  opacity: 0;
}


.overlay.inactive .close {
  opacity: 0;
  visibility: hidden;
}






/* --- PAGE OVERLAY --- */
.overlay.page-overlay {
  z-index: 13;
}

.overlay .pageoverlay-item {
  position: absolute;
  top: 5%;
  top: 5vw;
  right: 0;
  bottom: 5%;
  bottom: 5vw;
  left: 0;
  width: 84%;
  width: 84vw;
  max-width: 1920px;
  margin: 0 auto;
  border-radius: 2px;
  padding: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.85);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}


.overlay .pageoverlay-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.overlay .pageoverlay-item.new {
  visibility: visible;
  z-index: 2;
}

.overlay-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(255,255,255);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.body-splash + .overlay-holder {
  background: transparent;
}


.overlay-holder > div {
  position: relative;
  display: inline-block;
  float: none;
  vertical-align: top;
}


.overlay-holder .content {
  text-align: left;
}

.overlay-holder .general-width {
  width: 92%;
  max-width: 1280px;
}

.overlay-holder .content h1 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}



.overlay .close-gal {
  position: relative;
  display: inline-block;
  left: auto;
  right: auto;
  width: 35px;
  height: 35px;
  margin: 0 10px 0 -45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
}

.overlay .close-gal.hide {
  opacity: 0;
  visibility: hidden;
}




/* -- INDEX ----------------------------------------*/
.index {
  position: relative;
  margin: 0;
  clear: both;
}

.index ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: inherit;
  overflow: initial;
  text-align: left;
}

.index li {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 1rem 0;
  padding: 0;
  vertical-align: top;
}


.index li a {
  text-decoration: none;
}

.index span {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.index span.sp-inline {
  display: inline;
}

.index li .ix-more {
  font-size: 0.85em;
}

.index .ix-more.btn,
.index .ix-more span {
  display: inline-block;
}


.index .ix-item {
  width: 100%;
  border: 0;
  overflow: hidden;
}



.index .ix-info {
  padding: 1rem;
}


.index .ix-img {
  text-align: center;
}

.index .ix-img::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin: 0 0 0 -1px;
  vertical-align: middle;
}


.index .ix-img img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}


.index .ix-more i {
  margin-left: 0.5rem;
}


.index .ix-menu {
  margin: 2rem 0;
}



/* --- CATALOG INDEX --- */

ul.ix-act {
  position: relative;
  width: 100%;
}

.index .ix-act li {
  margin: 0.5rem 0;
}

.index .ix-act:first-child li:first-child {
  margin-top: 0;
}



.ix-act li .ix-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 15% 1rem 1rem;
  padding: calc(10% + 1rem) 2rem;
  background-color: rgba(21,71,52, 0.85);
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgb(255,255,255);
  text-align: center;
  font-size: 1.2em;
}

.ix-act.actPost li .ix-item {
  padding: 2rem;
}


.no-touch .ix-act a:hover, .no-touch .ix-act a:active {
  background-color: rgba(21,71,52, 0.85);
}


.ix-act li > a span, .ix-act li > span span {
  z-index: 1;
}

.ix-act li .ix-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.no-touch .ix-act a:hover .ix-img, .no-touch .ix-act a:active .ix-img {
  opacity: 0.5;
}

.ix-act .ix-pretitle {
  margin-bottom: 0.5rem;
  font-size: 0.85em;
}


.ix-act .ix-more.btn {
  margin-top: 1rem;
}

.ix-act.actPost .ix-more.btn {
  border-color: currentColor;
  color: rgb(255,255,255);
}

.no-touch .ix-act.actPost a:hover .ix-more.btn, .no-touch .ix-act.actPost a:active .ix-more.btn {
  border-color: currentColor;
  background-color: rgba(255,255,255,0.2);
  color: rgb(255,255,255);
}


.index .actArch {
  width: calc(100% + 1rem);
  margin: 0 -0.5rem;
}


.index .actArch li {
  width: calc(33% - 1rem);
  margin: 0.5rem;
}


.actArch li .ix-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}



.actArch li .ix-img {
  display: inline-block;
  width: 125px;
  height: 0;
  padding: 0 0 15%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: top;
}











.scootchFromRight {
  -webkit-animation: scootchFromRight 0.3s ease both;
  animation: scootchFromRight 0.3s ease both;
}

.scootchToLeft {
  -webkit-animation: scootchToLeft 0.3s ease both;
  animation: scootchToLeft 0.3s ease both;
}

.scootchToRight {
  -webkit-animation: scootchToRight 0.3s ease both;
  animation: scootchToRight 0.3s ease both;
}

.scootchFromLeft {
  -webkit-animation: scootchFromLeft 0.3s ease both;
  animation: scootchFromLeft 0.3s ease both;
}


.scaleDown {
  -webkit-animation: scaleDown .4s ease both;
  animation: scaleDown .4s ease both;
}

.scaleUp {
  -webkit-animation: scaleUp .4s ease both;
  animation: scaleUp .4s ease both;
}

.moveToLeft {
  -webkit-animation: moveToLeft 0.6s ease both;
  animation: moveToLeft 0.6s ease both;
}

.moveFromRight {
  -webkit-animation: moveFromRight 0.6s ease both;
  animation: moveFromRight 0.6s ease both;
}



.moveToRight {
  -webkit-animation: moveToRight 0.6s ease both;
  animation: moveToRight 0.6s ease both;
}

.moveFromLeft {
  -webkit-animation: moveFromLeft 0.6s ease both;
  animation: moveFromLeft 0.6s ease both;
}


.moveToBottom {
  -webkit-animation: moveToBottom 0.4s ease both;
  animation: moveToBottom 0.4s ease both;
}

.moveFromBottom {
  -webkit-animation: moveFromBottom 0.4s ease both;
  animation: moveFromBottom 0.4s ease both;
}


.fadeOut {
  -webkit-animation: fadeOut 0.4s ease both;
  animation: fadeOut 0.4s ease both;
}

.fadeIn {
  -webkit-animation: fadeIn 0.4s ease both;
  animation: fadeIn 0.4s ease both;
}


.popIn {
  -webkit-animation: popIn 0.4s ease both;
  animation: popIn 0.4s ease both;
}

.stayPut {
  -webkit-animation: stayPut 0.4s ease both;
  animation: stayPut 0.4s ease both;
}


/* --- ANIMATIONS --- */

@-webkit-keyframes scootchToLeft {
  0% { -webkit-transform: translateX(0); opacity: 1; }
  100% { -webkit-transform: translateX(-25%); opacity: 0; }
}

@keyframes scootchToLeft {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-25%); opacity: 0; }
}




@-webkit-keyframes scootchFromLeft {
  0% { -webkit-transform: translateX(-25%); opacity: 0; }
  100% { -webkit-transform: translateX(0); opacity: 1; }
}

@keyframes scootchFromLeft {
  0% { transform: translateX(-25%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}




@-webkit-keyframes scootchToRight { 
  0% { -webkit-transform: translateX(0); opacity: 1; }
  100% { -webkit-transform: translateX(25%); opacity: 0; }
}

@keyframes scootchToRight { 
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(25%); opacity: 0; }
}




@-webkit-keyframes scootchFromRight {
  0% { -webkit-transform: translateX(25%); opacity: 0; }
  100% { -webkit-transform: translateX(0); opacity: 1; }
}

@keyframes scootchFromRight {
  0% { transform: translateX(25%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}





@-webkit-keyframes moveToLeft {
  0% { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-100%); }
}

@keyframes moveToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}




@-webkit-keyframes moveFromLeft {
  0% { -webkit-transform: translateX(-100%); }
  100% { -webkit-transform: translateX(0); }
}

@keyframes moveFromLeft {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}



@-webkit-keyframes moveToRight { 
  0% { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(100%); }
}

@keyframes moveToRight { 
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}



@-webkit-keyframes moveFromRight {
  0% { -webkit-transform: translateX(100%); }
  100% { -webkit-transform: translateX(0); }
}

@keyframes moveFromRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}



@-webkit-keyframes moveToBottom {
  0% { -webkit-transform: translateY(0); }
  100% { -webkit-transform: translateY(150%); }
}

@keyframes moveToBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(150%); }
}



@-webkit-keyframes moveFromBottom {
  0% { -webkit-transform: translateY(150%); }
  100% { -webkit-transform: translateY(0); }
}

@keyframes moveFromBottom {
  0% { transform: translateY(150%); }
  100% { transform: translateY(0); }
}




@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}



@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}

@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}



@-webkit-keyframes fadeInText {
  0% { -webkit-transform: translate3D(0,50px,0); opacity:0; }
  100% { -webkit-transform: translate3D(0,0,0); opacity:1; }
}

@keyframes fadeInText {
  0% { transform: translate3D(0,50px,0); opacity:0; }
  100% { transform: translate3D(0,0,0); opacity:1; }
}



@-webkit-keyframes fadeOutText {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeOutText {
  0% {  opacity: 1; }
  100% { opacity: 0; }
}




@-webkit-keyframes scaleDown {
  0% { opacity: 1; -webkit-transform: scale(1); }
  100% { opacity: 0; -webkit-transform: scale(.8); }
}
@keyframes scaleDown {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.8); }
}



@-webkit-keyframes scaleUp {
  0% { opacity: 0; -webkit-transform: scale(.8); }
  100% { opacity: 1; -webkit-transform: scale(1); }
}
@keyframes scaleUp {
  0% { opacity: 0; transform: scale(.8); }
  100% { opacity: 1; transform: scale(1); }
}


@-webkit-keyframes stayPut {
  0% { opacity: 1; }
  50% { opacity: 0.99; }
  100% { opacity: 1; }
}

@keyframes stayPut {
  0% { opacity: 1; }
  50% { opacity: 0.99; }
  100% { opacity: 1; }
}



@-webkit-keyframes popIn {
  0% { opacity: 0; -webkit-transform: scale(0); }
  40% { opacity: 0.75; -webkit-transform: scale(1.05); }
  85% { opacity: 1; -webkit-transform: scale(0.95); }
  100% { opacity: 1; -webkit-transform: scale(1); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0); }
  40% { opacity: 0.75; transform: scale(1.05); }
  85% { opacity: 1; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}



/* --- INDEX PRODS --- */

/* --- STANDARDS --- */
.ix-prod .ix-item {
  border: 1px solid rgb(237, 237, 237);
  border: 1px solid rgba(0,0,0,0.1);
  background: rgb(249, 249, 249);
  background: rgba(0,0,0, 0.05);
  color: rgb(21,71,52);
  overflow: inherit;
  overflow: initial;
}


.ix-prod li[data-bid="1"] .ix-item {
  background: rgba(255, 148, 0, 0.50);
}


.ix-prod li[data-lot-done="1"][data-bid="1"] .ix-item {
  background: rgba(127, 29, 29, 0.50);
}


.ix-prod li[data-lot-done="1"][data-bid-top="1"] .ix-item,
.ix-prod li[data-lot-done="0"][data-bid-top="1"] .ix-item {
  background: rgba(21,71,52, 0.50);
}

.ix-prod li[data-bid="1"][data-bid-top="3"] .ix-item {
  background: rgba(0,0,0, 0.25);
}




.ix-prod .ix-img {
  padding: 1rem;
}


.ix-prod .ix-info {
  padding-right: 200px;
}


.ix-prod .no-bids .ix-info {
  padding: 1rem;
}

.ix-prod .ix-title {
  font-family: "europa",sans-serif;
}

.ix-prod .ix-manu {
  text-transform: uppercase;
}

.ix-prod .ix-lot span {
  display: inline;
  opacity: 0.5;
}

.ix-prod .ix-bid {
  margin: 0 0 1rem;
}


.ix-prod .lot-bid.bid-no .ix-bid {
  border: 1px solid rgba(127, 29, 29, 0.5);
  background: rgba(127, 29, 29, 0.15);
}


.ix-prod .ix-bid {
  padding-left: 45px;
  padding-left: calc(30px + 1rem);
}


.ix-prod .ix-bid::before {
  content: "\f071";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: FontAwesome;
  font-size: 2.25em;
  transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
}

.ix-prod li[data-bid-top="1"] .ix-bid::before {
  content: "\f058";
  font-size: 2.5em;
}


.ix-prod li[data-bid-top="3"] .ix-bid::before {
  content: "\f05a";
  font-size: 2.5em;
}


.ix-prod .ix-bid.bid-phone::before {
  content: "\f095";
  font-size: 2em;
}



.ix-prod .ix-more {
  margin-bottom: 0;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem;
  background: rgb(255,255,255);
  font-family: "europa",sans-serif;
  text-transform: uppercase;
  font-size: 0.875em;
}


.no-touch .ix-prod a:hover .ix-more, .no-touch .ix-prod a:active .ix-more {
  background: rgb(237, 237, 237);
  background: rgba(0,0,0, 0.1);
  color: rgb(21,71,52);
}


/* --- V0 (LIST) --- */
.ix-prod[data-layout="0"] .ix-img {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}

.ix-prod[data-layout="0"] .ix-img img {
  max-height: 300px;
}


.ix-prod[data-layout="0"] .ix-info {
  display: inline-block;
  width: 70%;
  padding-left: 0;
  vertical-align: top;
}

.ix-prod[data-layout="0"] .no-bids .ix-info {
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
}


.ix-prod[data-layout="0"] .ix-title {
  font-size: 1.4rem;
}




/* --- V1 (GRID) --- */
.index .ix-prod[data-layout="1"] {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  margin: 0 -1%;
}

.ix-prod[data-layout="1"] li {
  display: inline-flex;
  width: 23%;
  margin: 1rem 1%;
}


.ix-prod[data-layout="1"] .ix-img {
  display: flex;
  height: 250px;
  background: rgb(255,255,255);
  align-content: center;
  align-items: center;
  justify-content: center;
}





/* -- DETAIL - PRODUCT VIEW ------------------------*/
.product-wrapper {
  position: relative;
  left: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  margin: 0;
  padding: 3rem 0 5rem;
  box-sizing: border-box;
  overflow: hidden;
}



.product-view .prod-img::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin: 0 0 0 -1px;
  vertical-align: middle;
}


.product-view .prod-img img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}


.product-view h1, .product-view h2, .product-view h3, .product-view h4,
.product-view .title-h1, .product-view .title-h2, .product-view .title-h3, .product-view .title-h4 {
  text-align: left;
}

.product-view h1,
.product-view .title-h1 {
  font-size: 1.75em;
}


.product-view .hgroup h2,
.product-view .hgroup .title-h2 {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}


.product-view .hgroup h3,
.product-view .hgroup .title-h3 {
  margin: 0.5rem 0 0;
}


.product-view .lot-img {
  margin: 2rem 0;
  text-align: center;
}


.product-view img {
  display: inline-block;
  width: auto;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
}


.product-view  .prod-bid,
.product-view .prod-price {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(21,71,52, 0.15);
  box-sizing: border-box;
  text-align: center;
}

.ix-prod .prod-price {
  margin: 0 0 1rem;
  text-align: left;
}

.ix-prod .prod-price.js-note-live-lot,
.ix-prod .prod-price.js-note-closed-bid {
  margin: 0;
  text-align: center;
}


.product-view .prod-price h4 {
  text-align: center;
  margin: 0;
}

.product-view .prod-price p {
  margin: 0.5rem 0 0;
}



.product-view  .prod-bid.bid-icon {
  padding-left: 60px;
  padding-left: calc(50px + 1rem);
  text-align: left;
}


.product-view  .prod-bid.bid-icon span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  border-right: 1px solid rgba(21,71,52, 0.5);
  background: rgba(21,71,52, 0.15);
  font-size: 1.4rem;
}


.product-view  .prod-bid.bid-icon span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}





.product-view .btn {
  width: 100%;
}



/* --- BID LOADER --- */
.ix-prod li .loader-bid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
  margin: 0;
  padding: 0;
  background: rgba(17,17,17,0.5);
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  opacity: 0;
}


.ix-prod li .loader-bid.view {
  opacity: 1;
  visibility: visible;
}

.ix-prod li .loader-bid span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 2rem;
  line-height: 1;
  color: rgb(255,255,255);
}




/* --- LIST VIEW PAGE-NAV --- */

.list-nav {
  margin: 2rem 0;
  text-align: center;
}

.list-nav ul {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: inherit;
  overflow: initial;
}

.list-nav > div {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}


.list-nav li {
  display: inline-block;
  padding: 0;
}


.list-nav a, .list-nav li > span {
  display: block;
  width: auto;
  border-radius: 0;
  border-color: rgba(17,17,17,0.25);
  border-right: 0;
  padding: 0.53rem 1rem;
  text-align: center;
  font-size: 0.8em;
  color: rgb(34, 34, 35);
  text-decoration: none;
}


.list-nav .nav a, .list-nav li.nav > span {
  padding: 0.5rem 1rem;
}


.list-nav li:first-child a, .list-nav li:first-child > span {
  border-radius: 2px 0 0 2px;
}


.list-nav li:last-child a, .list-nav li:last-child > span {
  border-radius: 0 2px 2px 0;
  border-right: 1px solid rgba(17,17,17,0.25);
}


.no-touch .list-nav a:hover:not(.disabled):not([disabled]), .no-touch .list-nav a:active:not(.disabled):not([disabled]) {
  background: rgba(237, 237, 237,0.5);
  color: rgb(34, 34, 35);
  text-decoration: none;
}

.list-nav .active a, .list-nav .active > span,
.no-touch .list-nav .active a:hover:not(.disabled):not([disabled]), .no-touch .list-nav .active > span:hover:not(.disabled):not([disabled]) {
  background: rgb(237, 237, 237);
  color: rgb(34, 34, 35);
  cursor: default;
  text-decoration: none;
}

.list-nav li.disabled > span, .no-touch .list-nav li.disabled > span:hover {
  background-color: rgba(17,17,17,0.05) !important;
  opacity: 0.5;
  cursor: default;
}



/* --- NAV BUTTONS --- */
.navBtn {
  margin: 0;
  padding: 0.5rem;
  background: rgb(255,255,255);
}

.navBtn + .navBtn {
  margin-left: 0.5rem;
}

.navBtn.btn-bids {
  padding: 0.75rem;
}

.navBtn.btn-text {
  padding: 0.75rem;
}


.navBtn.active,
.no-touch .btn.active:hover:not(.disabled):not([disabled]),
.no-touch .btn.active:active:not(.disabled):not([disabled]) {
  background-color: rgb(21,71,52);
  color: rgb(255,255,255);
}




/* --- DETAIL VIEW NAV BUTTONS --- */
.nav-detail {
  margin: 2rem 0 1rem;
  text-align: left;
}







.nav-detail > .nav {
  position: fixed;
  top: 40%;
  top: 50vh;
  width:  50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255,255,255);
  box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  z-index: 5;
}


.nav-detail > .nav.prev {
  left: 2rem;
}

.nav-detail > .nav.next {
  right: 2rem;
}

.nav-detail > .nav.disabled {
  opacity: 0.3;
  cursor: default;
}

.nav-detail > .nav.hide,
.nav-detail.inactive > .nav {
  opacity: 0;
  visibility: hidden;
}



.no-touch .nav-detail > .nav:hover {
  background: rgba(21,71,52,0.2);
  text-decoration: none;
}

.no-touch .nav-detail > .nav.disabled:hover {
  background: rgb(255,255,255);
}


.nav-detail > .nav span {
  position: relative;
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% 0 0 20%;
  box-sizing:border-box;
  font-size: 4rem;
  line-height: 1;
}

.nav-detail > .next span {
  margin-left: 15%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}


.nav-detail > .nav span:before, .nav-detail > .nav span:after {
  content: "";
  position: absolute;
  left: 25%;
  width: 3px;
  height: 50%;
  background: rgb(21,71,52);
  backface-visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-detail > .nav span:before {
  -webkit-transform: translate(-50%,0) rotate(40deg);
  transform: translate(-50%,0) rotate(45deg);
  -webkit-transform-origin: 0 100% 0;
  transform-origin: 0 100% 0;
}

.nav-detail > .nav span:after {
  top: 50%;
  -webkit-transform: translate(-50%,0) rotate(-40deg);
  transform: translate(-50%,0) rotate(-40deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}


.no-touch .nav-detail > .nav:not(.disabled):hover span:before, .no-touch .nav-detail > .nav:not(.disabled):hover span:after {
  background: rgb(21,71,52);
}




.clearing:after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  clear: both;
}





@media (max-width: 1440px) {
  .media-gallery.carousel .gallery-item {
  width: 22.9018%;
}


.layout2 .media-gallery.carousel .gallery-item,
.layout3 .media-gallery.carousel .gallery-item {
  width: 23.4264%;
}


.contentBar > .media-gallery.carousel .gallery-item,
.layout2 .contentBar > .media-gallery.carousel .gallery-item,
.layout3 .contentBar > .media-gallery.carousel .gallery-item,

.contentBar .bar-content .media-gallery.carousel .gallery-item,
.layout2 .contentBar  .bar-content .media-gallery.carousel .gallery-item,
.layout3 .contentBar  .bar-content .media-gallery.carousel .gallery-item {
  width: 33.333333%;
  margin: 0;
}
}



@media (max-width: 1280px) {
  .list-nav a, .list-nav li > span {
  margin-left: -1px;
  border-right: 1px solid rgba(17,17,17,0.25);
}

  .swiffy-slider .slider-container {
  --swiffy-slider-snap-align: center;
}
}



@media (max-width: 1025px) {
  .col-layout {
  width: 103.0303%;
  margin: 1rem -1.5151%;
}


.layout2 .col-layout,
.contentBar .col-layout,
.form-modal .col-layout {
  width: 102%;
  margin: 1rem -1%;
}



.col-layout .column {
  margin: 0 1.4705%;
}

.layout2 .col-layout .column,
.contentBar .col-layout .column,
.form-modal .col-layout .column {
  margin: 0 0.9803%;
}

.contentBar .conForm .col-layout .column {
  margin: 0;
}

.col-layout.type1 .column,
.col-layout.type2 .column,
.col-layout.type3 .column:nth-of-type(2n + 1),
.col-layout.type3 .column:nth-of-type(2n),
.col-layout.type4 .column:nth-of-type(2n + 1),
.col-layout.type4 .column:nth-of-type(2n),
.col-layout.type5 .column {
  width: 47.0588%;
}


.layout2 .col-layout.type1 .column,
.layout2 .col-layout.type2 .column,
.layout2 .col-layout.type3 .column:nth-of-type(2n + 1),
.layout2 .col-layout.type3 .column:nth-of-type(2n),
.layout2 .col-layout.type4 .column:nth-of-type(2n + 1),
.layout2 .col-layout.type4 .column:nth-of-type(2n),
.layout2 .col-layout.type5 .column,

.contentBar .col-layout.type1 .column,
.contentBar .col-layout.type2 .column,
.contentBar .col-layout.type3 .column:nth-of-type(2n + 1),
.contentBar .col-layout.type3 .column:nth-of-type(2n),
.contentBar .col-layout.type4 .column:nth-of-type(2n + 1),
.contentBar .col-layout.type4 .column:nth-of-type(2n),
.contentBar .col-layout.type5 .column,

.form-modal .col-layout.type1 .column,
.form-modal .col-layout.type2 .column,
.form-modal .col-layout.type3 .column:nth-of-type(2n + 1),
.form-modal .col-layout.type3 .column:nth-of-type(2n),
.form-modal .col-layout.type4 .column:nth-of-type(2n + 1),
.form-modal .col-layout.type4 .column:nth-of-type(2n),
.form-modal .col-layout.type5 .column {
  width: 48.0392%;
}

.contentBar .col-layout .conForm .col-layout.type1 .column {
  width: 100%;
}


.col-layout.type1 > .column:nth-of-type(n+3),
.col-layout.type2 > .column:nth-of-type(n+3),
.col-layout.type3 > .column:nth-of-type(n+3),
.col-layout.type4 > .column:nth-of-type(n+3),
.col-layout.type5 > .column:nth-of-type(n+3) {
  margin-top: 1rem;
}


  .layout0 .contentBar {
  left: calc(-50vw + 75.75%);
}


/* --- text width --- */
.contentBar .content-wrapper.position1 .bar-content,
.contentBar .content-wrapper.position2 .bar-content,
.contentBar .content-wrapper.position3 .bar-content,
.contentBar .content-wrapper.position5 .bar-content,
.contentBar .content-wrapper.position6 .bar-content,
.contentBar .content-wrapper.position8 .bar-content,
.contentBar .content-wrapper.position9 .bar-content {
  width: 40.5%;
}

.contentBar .container.back1[data-text-style="0"] .bar-content,
.contentBar .container.back1[data-text-style="1"] .bar-content,
.contentBar .container.back2[data-text-style="0"] .bar-content,
.contentBar .container.back2[data-text-style="1"] .bar-content,
.contentBar .container.back3[data-text-style="0"] .bar-content,
.contentBar .container.back3[data-text-style="1"] .bar-content,
.contentBar .container.back4[data-text-style="0"] .bar-content,
.contentBar .container.back4[data-text-style="1"] .bar-content {
  padding: 2rem;
}

  .conForm.narrow {
  width: 49%;
}

.conForm input.short {
  width: 40%;
}

.conForm select.short {
  width: 40%;
}






.conForm.search form {
  flex-wrap: wrap;
  justify-content: center;
}

.conForm.search section {

}


.conForm.search .formSearch {
  width: 100%;
  text-align: center;
}

.conForm.search .formSort {
  margin: 1rem 0;
  text-align: center;
}

.conForm.search .formFilter {
  margin: 1rem 0 1rem 2rem;
  text-align: center;
}


.conForm.search .formSort label,
.conForm.search .formFilter label {
  margin-left: 0;
}
  .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  position: relative;
  left: auto;
  width: 103.0303%;
  margin: 0 -1.5151%;
}

.layout2 .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout3 .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  width: 102%;
  margin: 0 -1%;
}


.col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  width: 106.246%;
  margin: 0 -3.123%;
}

.layout2 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout3 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  width: 104.0788%;
  margin: 0 -2.0394%;
}


.gallery-audio .gallery-item,
.gallery-video .gallery-item {
  display: inline-block;
  width: 47.0588%;
  margin: 1.4705%;
  vertical-align: top;
}

.layout2 .gallery-audio .gallery-item,
.layout3 .gallery-audio .gallery-item,
.layout2 .gallery-video .gallery-item,
.layout3 .gallery-video .gallery-item {
  display: inline-block;
  width: 48.0392%;
  margin: 0.9803%;
}


.gallery-thumbgrid .gallery-item {
  width: 22.0588%;
  margin: 1.4705%;
}


.layout2 .gallery-thumbgrid .gallery-item,
.layout3 .gallery-thumbgrid .gallery-item {
  width: 14.7058%;
  margin: 0.9803%;
}


.col-layout .gallery-thumbgrid .gallery-item {
  width: 44.1133%;
  margin: 2.9395%;
}

.layout2 .col-layout .gallery-thumbgrid .gallery-item,
.layout3 .col-layout .gallery-thumbgrid .gallery-item {
  width: 29.4074%;
  margin: 1.9596%;
}


.media-gallery.carousel .gallery-item {
  width: 30.39233%;
  margin: 1.4705%;
}

.layout2 .media-gallery.carousel .gallery-item,
.layout3 .media-gallery.carousel .gallery-item {
  width: 31.37273%;
  margin: 0.9803%;
}


.contentBar > .media-gallery.carousel .gallery-item,
.layout2 .contentBar > .media-gallery.carousel .gallery-item,
.layout3 .contentBar > .media-gallery.carousel .gallery-item,

.contentBar .bar-content .media-gallery.carousel .gallery-item,
.layout2 .contentBar  .bar-content .media-gallery.carousel .gallery-item,
.layout3 .contentBar  .bar-content .media-gallery.carousel .gallery-item {
  width: 50%;
  margin: 0;
}



.gallery-slideshow.left {
  width: 48.4848%;
  margin-right: 2.9411%;
}

.gallery-slideshow.right {
  width: 48.4848%;
  margin-left: 2.9411%;
}



.single-media .gallery-item {
  width: 48.4848%;
  margin: 0 2.9411% 0 0;
}

.single-media .gallery-page[data-layout="1"] .gal-item {
  margin: 0 0 0 2.9411%;
}

.content .single-media .gallery-page .gal-text {
  margin-left: 51.4259%;
}


.content .single-media .gallery-page[data-layout="1"] .gal-text {
  margin-right: 51.4259%;
}




.gallery-slideshow.center .gallery-item .gal-img {
  padding: 0 0 50%;
}




.media-gallery.tArrows {
  text-align: right;
}



.nav-arrows {
  position: relative;
  display: inline-block;
  top: auto;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}

.nav-arrows.next {
  right: auto;
  margin-left: 15px;
}

.nav-arrows.prev {
  left: auto;
  margin-right: 15px;
}
  .ix-prod[data-layout="1"] li {
  width: 31.3333%;
}

.nav-detail > .nav.prev {
  left: 1rem;
}

.nav-detail > .nav.next {
  right: 1rem;
}
  









ul, ol,
layout2 .content > ul,
.layout2 .content > ol {
  padding: 0 0 0 2.5rem;
}

.contentBar .bar-content > ul:not(.js-toggle-container),
.contentBar .bar-content > ol {
  padding: 0 0 0 20.97843%;
}

.contentBar .bar-content > ul.list-check li:before {
  left: auto;
  right: calc(100% + 0.75rem);
}

.contentBar .bar-content.justify1 > ul.list-plus li:before,
.contentBar .bar-content.justify2 > ul.list-plus li:before,
.contentBar .bar-content.justify1 > ul.list-check li:before,
.contentBar .bar-content.justify2 > ul.list-check li:before {
  position: relative;
  right: auto;
}



blockquote,
.layout2 blockquote {
  margin: 2em 9.8484% 2em calc(11.3189% - 2px);
  padding: 0 0 0 1.4705%;
}


p.emphasis,
.layout2 .p.emphasis {
  margin: 2.9411% 12.8787%;
}



  
.index-start {
  display: block;
}

.index-auction.auction-announced::before {
  display: none;
}


.index-auction.auction-announced ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}




.index-auction.auction-archive ul {
  grid-template-columns: repeat(2,1fr);
}
  
.index-auction .swiffy-slider {
  --swiffy-slider-item-count: 2;
}
}



@media (max-width: 925px) {
  .page:first-child > .container:only-child {
  padding-top: 75px;
}
  .info-bar, .header-title {
  display: none;
}


.logo a {
  height: 75px;
  padding: 15px 0;
}


.sTrigger {
  display: inline-block;
}
  header .menu {
  display: none;
}

  .labeled-icon {
  top: 0;
  right: 0;
  border-radius: 0;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
  .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  background-color: rgba(0,0,0, 0.6);
  z-index: 4;
}




/* --- ARROWS --- */

.overlay .nav {
  top: 0;
  border-radius: 0;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}

.overlay .nav.prev {
  left: 0;
}

.overlay .nav.next {
  right: auto;
  left: 52px;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
  .hgroup.hide-pc {
  display: block;
}


.hgroup.hide-pc span {
  display: block;
  font-size: 0.65em;
}


}


@media (max-width: 800px) {
  .general-width {
  width: 92%;
}


  .col-layout,
.layout2 .col-layout,
.contentBar .col-layout,
.form-modal .col-layout {
  width: 102%;
  margin: 1rem -1%;
}


.col-layout .column,
.layout2 .col-layout .column,
.contentBar .col-layout .column,
.form-modal .col-layout .column {
  margin: 0 1%;
}

.col-layout.type1 .column,
.col-layout.type2 .column,
.col-layout.type3 .column:nth-of-type(2n + 1),
.col-layout.type3 .column:nth-of-type(2n),
.col-layout.type4 .column:nth-of-type(2n + 1),
.col-layout.type4 .column:nth-of-type(2n),
.col-layout.type5 .column,

.layout2 .col-layout.type1 .column,
.layout2 .col-layout.type2 .column,
.layout2 .col-layout.type3 .column:nth-of-type(2n + 1),
.layout2 .col-layout.type3 .column:nth-of-type(2n),
.layout2 .col-layout.type4 .column:nth-of-type(2n + 1),
.layout2 .col-layout.type4 .column:nth-of-type(2n),
.layout2 .col-layout.type5 .column,

.contentBar .col-layout.type1 .column,
.contentBar .col-layout.type2 .column,
.contentBar .col-layout.type3 .column:nth-of-type(2n + 1),
.contentBar .col-layout.type3 .column:nth-of-type(2n),
.contentBar .col-layout.type4 .column:nth-of-type(2n + 1),
.contentBar .col-layout.type4 .column:nth-of-type(2n),
.contentBar .col-layout.type5 .column,

.form-modal .col-layout.type1 .column,
.form-modal .col-layout.type2 .column,
.form-modal .col-layout.type3 .column:nth-of-type(2n + 1),
.form-modal .col-layout.type3 .column:nth-of-type(2n),
.form-modal .col-layout.type4 .column:nth-of-type(2n + 1),
.form-modal .col-layout.type4 .column:nth-of-type(2n),
.form-modal .col-layout.type5 .column {
  width: 48%;
}


  .contentBar {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.overlay-holder .contentBar {
  left: calc(-50vw + 50%);
  width: 100vw;
}



.layout0 .contentBar {
  left: calc(-50vw + 50%);
}

*:not(.contentBar) + .contentBar {
  margin-top: 2rem;
}

.contentBar + *:not(.contentBar) {
  margin-top: 2rem;
}

.contentBar.height1 {
  display: block;
}


/* bild height */
.contentBar.height1 .background-image {
  height: auto;
}


.contentBar .background-image[data-bg-layout="2"],
.contentBar .background-image[data-bg-layout="3"] {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: 0;
  padding: 0 0 50%;
}

.contentBar .background-image[data-bg-layout="2"] > div,
.contentBar .background-image[data-bg-layout="3"] > div {
  width: 100%;
}


.touchevents .contentBar .background-image[data-bg-layout="0"] > .parascroll {
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  transform: none;
}


.contentBar .background-video {
  display: none;
}



.contentBar .offset-graphic {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 92%;
  text-align: center;
}

.contentBar .offset-graphic[data-gap="1"] {
  top: auto;
  bottom: auto;
  padding: 1rem 0;
}

.contentBar .offset-graphic.img-layout0 {
  right: auto;
}

.contentBar .offset-graphic[data-gap="1"].img-layout0 {
  right: auto;
  width: 92%;
}

.contentBar .offset-graphic.img-layout1 {
  left: auto;
}

.contentBar .offset-graphic[data-gap="1"].img-layout1 {
  left: auto;
  width: 92%;
}

.contentBar[data-order="0"] .offset-graphic,
.contentBar[data-order="0"] .media-gallery,
.contentBar[data-order="0"] .background-map {
  order: 2;
}




.offset-graphic img,
.contentBar .offset-graphic[data-orientation="0"] img,
.contentBar .offset-graphic[data-orientation="1"] img,
.contentBar .offset-graphic[data-orientation="2"] img,
.contentBar .offset-graphic[data-orientation="3"] img,
.contentBar .offset-graphic[data-orientation="4"] img,
.contentBar .offset-graphic[data-orientation="5"] img,
.contentBar .offset-graphic[data-orientation="6"] img {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transform: none;
  transform: none;
}



/* --- MAP IN FIRST LEVEL --- */

.contentBar .background-map {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: auto;
}


.contentBar .background-map[data-bg-layout="0"],
.contentBar .background-map[data-bg-layout="1"],
.contentBar.height1 .background-map,
.contentBar .background-map:only-child,
.contentBar.height0 .background-map:only-child,
.contentBar.height2 .background-map:only-child,
.contentBar.height3 .background-map:only-child,
.contentBar.height4 .background-map:only-child {
  height: auto;
}

.contentBar .background-map[data-bg-layout="2"],
.contentBar .background-map[data-bg-layout="3"] {
  width: 100%;
}


.contentBar .background-map #map {
  height: 300px;
}





.contentBar.height2 *:not(.background-image) + .content-wrapper:before,
.contentBar.height3 *:not(.background-image) + .content-wrapper:before,
.contentBar.height4 *:not(.background-image) + .content-wrapper:before,
.contentBar.height5 *:not(.background-image) + .content-wrapper:before,

.contentBar.height2 > .media-gallery:only-child:before,
.contentBar.height3 > .media-gallery:only-child:before,
.contentBar.height4 > .media-gallery:only-child:before,
.contentBar.height5 > .media-gallery:only-child:before {
  height: auto;
}



.contentBar .container {
  display: block;
  padding: 2rem 0;
}



/* --- text width --- */
.contentBar .content-wrapper.position1 .bar-content,
.contentBar .content-wrapper.position2 .bar-content,
.contentBar .content-wrapper.position3 .bar-content,
.contentBar .content-wrapper.position5 .bar-content,
.contentBar .content-wrapper.position6 .bar-content,
.contentBar .content-wrapper.position8 .bar-content,
.contentBar .content-wrapper.position9 .bar-content,

.contentBar .content-wrapper.position1 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position5 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position8 .container[data-text-style="1"] .bar-content,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content {
  width: 100%;
}



/* --- text padding --- */

.contentBar .container[data-text-style="1"] .bar-content,

.contentBar .container.back1[data-text-style="0"] .bar-content,
.contentBar .container.back1[data-text-style="1"] .bar-content,
.contentBar .container.back2[data-text-style="0"] .bar-content,
.contentBar .container.back2[data-text-style="1"] .bar-content,
.contentBar .container.back3[data-text-style="0"] .bar-content,
.contentBar .container.back3[data-text-style="1"] .bar-content,
.contentBar .container.back4[data-text-style="0"] .bar-content,
.contentBar .container.back4[data-text-style="1"] .bar-content {
  padding: 2rem 4%;
}



/* --- text background - full container height --- */
.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content:before {
  left: 0;
}


.contentBar .content-wrapper.position1 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position2 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position3 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position5 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position6 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position8 .container[data-text-style="1"] .bar-content:before,
.contentBar .content-wrapper.position9 .container[data-text-style="1"] .bar-content:before {
  width: 100%;
}


  .conForm.narrow {
  width: 100%;
}


.conForm input.short,
.conForm select.short,
.conForm input.medium,
.conForm select.medium {
  width: 100%;
  margin: 0;
}


.conForm .double1 {
  width: 32%;
}

.form-modal .conForm .double1 {
  width: 100%;
  margin-right: 0;
  padding: 0 0 1em;
}


.conForm .double2 {
  width: 65%;
}

.form-modal .conForm .double2 {
  width: 100%;
}


.conForm .double1 + .double2,
.conForm .double2 + .double1 {
  margin-left: 3%;
}


.form-modal .conForm .double1 + .double2,
.form-modal .conForm .double2 + .double1 {
  margin-left: 0;
}


.conForm.bid {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}


.ix-prod .conForm.bid {
  display: block;
  max-width: 350px;
  margin: 1rem 0 0;
}






  .index .actArch li {
  width: calc(50% - 1rem);
}
  .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  position: relative;
  width: 102%;
  margin: 0 -1%;
}

.col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout2 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout3 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  width: 104.1666%;
  margin: 0 -2.0833%;
}


.contentBar > .gallery-slideshow:not(:only-child) .wrap.active {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}


.contentBar > .gallery-slideshow:not(:only-child) .gallery-item {
  position: relative;
}


.gallery-audio .gallery-item,
.gallery-video .gallery-item,
.layout2 .gallery-audio .gallery-item,
.layout3 .gallery-audio .gallery-item,
.layout2 .gallery-video .gallery-item,
.layout3 .gallery-video .gallery-item {
  width: 48%;
  margin: 2% 1%;
}


.gallery-thumbgrid .gallery-item,
.layout2 .gallery-thumbgrid .gallery-item,
.layout3 .gallery-thumbgrid .gallery-item {
  width: 23%;
  margin: 1%;
}


.col-layout .gallery-thumbgrid .gallery-item,
.layout2 .col-layout .gallery-thumbgrid .gallery-item,
.layout3 .col-layout .gallery-thumbgrid .gallery-item {
  width: 46.0786%;
  margin: 1.9575%;
}






.gallery-slideshow.left {
  width: 49%;
  margin-right: 2%;
}

.gallery-slideshow.right {
  width: 49%;
  margin-left: 2%;
}


.ix-prod .gallery-slideshow.left,
.ix-prod .gallery-slideshow.right {
  width: 40%;
}


.single-media .gallery-item {
  width: 100%;
}

.single-media .gallery-page[data-layout="0"] .gallery-item,
.single-media .gallery-page[data-layout="1"] .gallery-item {
  margin: 0;
}


.contentBar > .single-media .gallery-item,
.contentBar > .single-media .gallery-page[data-layout="0"] .gallery-item,
.contentBar > .single-media .gallery-page[data-layout="1"] .gallery-item,
.contentBar > .single-media .gallery-page[data-layout="2"] .gallery-item {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
}


.content .single-media .gallery-page .gal-text {
  margin-left: 51%;
}

.content .single-media .gallery-page[data-layout="1"] .gal-text {
  margin-right: 51%;
}

.contentBar > .gallery-slideshow .gallery-item .gal-img {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 0;
  padding: 0 0 66%;
}


.contentBar > .single-media .gallery-item .gal-img,
.contentBar > .single-media .gallery-item .video-container {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
}








.contentBar > .gallery-slideshow:not(:only-child) .slidetabs {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 1em auto;
}


.indextabs {
  top: 25px;
}

.indextabs a {
  margin: 0 3px;
}


.indextabs a span {
  width: 5px;
  height: 5px;
}



  .product-view h1 {
  font-size: 1.5em;
}


.ix-prod .ix-info,
.ix-prod[data-layout="0"] .ix-info {
  width: 60%;
  padding-right: 1em;
}


.ix-prod .ix-manu,
.ix-prod .ix-lot {
  padding-right: 3rem;
}

.ix-prod[data-layout="0"] .ix-title {
  font-size: 1.2rem;
}


.ix-prod[data-layout="1"] li {
  width: 48%;
}




/* --- DETAIL VIEW NAV BUTTONS --- */
.nav-detail {
  position: relative;
}

.nav-detail > .nav {
  position: absolute;
  top: 0;
  width:  40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid rgb(21,71,52);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}


.nav-detail > .nav.prev {
  left: auto;
  right: calc(40px + 1em);
}

.nav-detail > .nav.next {
  right: 0;
}
  h2, h3, h4, h5, .title-h1, .title-h2, .title-h3, .title-h4, .product-wrapper h1 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}















.contentBar .bar-content > ul:not(.js-toggle-container),
.contentBar .bar-content > ol {
  padding: 0 0 0 2.5rem;
}



.content > *:first-child:not(.contentBar):not(.product-wrapper) {
  margin-top: 2rem;
}

.content > *:last-child:not(.contentBar) {
  margin-bottom: 2rem;
}




blockquote {
  margin: 1rem 0;
  padding: 0 0 0 1rem;
}


p.emphasis {
  margin: 1rem 0;
}


  .ix-prod .countdown {
  position: relative;
  top: auto;
  right: auto;
  margin: 1rem 0;
  padding: 0;
}

.countdown span {
  text-align: left;
}
  .index-auction.auction-active li .act-item {
  flex-direction: column;
}

.index-auction.auction-active .act-item .act-img {
  width: 100%;
  height: 0;
  padding: 0 0 50%;
}


.index-auction.auction-active .act-item .lazy-loader {
  width: 100%;
}


.index-auction.auction-active .act-item .act-info {
  width: 100%;
  min-height: 0;
  padding-left: 1rem;
}


.teaser-auction-archive {
  display: flex;
}
  .bookmark {
  top: -15px;
  padding: 0.5rem;
}
  .slider-container {
    --swiffy-slider-item-gap-totalwidth: calc(var(--swiffy-slider-item-gap) * (var(--swiffy-slider-item-count) - 1));
    --swiffy-slider-item-width: calc((100% - var(--swiffy-slider-item-reveal) - var(--swiffy-slider-item-gap-totalwidth)) / var(--swiffy-slider-item-count));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: grid;
    align-items: center;
    height: 100%;
    grid: auto / auto-flow max-content;
    grid-auto-rows: 100%;
    grid-auto-columns: var(--swiffy-slider-item-width);
    grid-auto-flow: column;
    grid-gap: var(--swiffy-slider-item-gap);
    list-style: none;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    scrollbar-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
    background-clip: padding-box;
}


.slider-container > * {
    /*The slides*/
    scroll-snap-align: var(--swiffy-slider-snap-align);
    position: relative;
    width: 100%;
    height: 100%;
}

.index-auction ul.slider-container {
  grid-template-columns: none;
  grid-column-gap: var(--swiffy-slider-item-gap);
  left: calc(-50vw + 50%);
  width: 100vw;
  margin: 1rem 0 0;
  padding: 0 4vw;
  overflow-x: auto;
}

.index-auction.auction-announced ul {
  grid-template-columns: none;
}

.index-auction ul.slider-container li {
  margin: 0;
}
}



@media (max-width: 600px) {
  .col-layout,
.layout2 .col-layout,
.contentBar .col-layout,
.form-modal .col-layout {
  width: 100%;
  margin: 1rem 0;
}


.col-layout .column,
.layout2 .col-layout .column,
.contentBar .col-layout .column,
.form-modal .col-layout .column {
  width: 100% !important;
  margin: 0;
}


.col-layout.type1 > .column:nth-of-type(n+2),
.col-layout.type2 > .column:nth-of-type(n+2),
.col-layout.type3 > .column:nth-of-type(n+2),
.col-layout.type4 > .column:nth-of-type(n+2),
.col-layout.type5 > .column:nth-of-type(n+2) {
  margin-top: 1rem;
}
  .contentBar .background-map #map {
  height: 200px;
}

  .ix-prod .conForm.bid {
  max-width: 100%;
}

.conForm .double1,
.conForm .double2 {
  width: 100%;
  padding: 0 0 1rem;
}


.conForm .double1 + .double2,
.conForm .double2 + .double1 {
  margin-left: 0;
}


.conForm.newsletter-signup form {
  display: block;
}

.conForm.narrow.newsletter-signup section {
  margin: 1rem 0 0;
}

.conForm.narrow.newsletter-signup .formPrivacy {
  margin-top: 0;
}





.conForm.search .formFilter {
  width: 100%;
  margin: 0;
}
  .index .actArch {
  width: 100%;
  margin: 0;
}


.index .actArch li {
  width: 100%;
  margin: 0.5rem 0;
}

  .ix-prod[data-layout="0"] .ix-img {
  display: block;
  width: 100%;
  background: rgb(255,255,255);
}


.ix-prod[data-layout="0"] .ix-info {
  display: block;
  width: 100%;
  padding-left: 1em;
}



.index .ix-prod[data-layout="1"] {
  display: block;
  width: 100%;
  margin: 0;
}

.ix-prod[data-layout="1"] li {
  display: inline-block;
  width: 100%;
  margin: 1em 0;
}


.ix-prod[data-layout="1"] .ix-img {
  display: block;
  height: auto;
}

.ix-prod[data-layout="1"] .ix-img img {
  max-height: 250px;
}


.ix-prod[data-layout="1"] .ix-title {
  font-size: 1.2rem;
}

  .media-gallery.gallery-audio .gallery-page,
.media-gallery.gallery-video .gallery-page,
.layout2 .media-gallery.gallery-audio .gallery-page,
.layout3 .media-gallery.gallery-audio .gallery-page,
.layout2 .media-gallery.gallery-video .gallery-page,
.layout3 .media-gallery.gallery-video .gallery-page {
  width: 100%;
  margin: 1% 0;
}


.col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout2 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page,
.layout3 .col-layout .media-gallery:not(.single-media):not(.gallery-slideshow) .gallery-page {
  width: 102%;
  margin: 0 -1%;
}


.gallery-thumbgrid .gallery-item,
.layout2 .gallery-thumbgrid .gallery-item,
.layout3 .gallery-thumbgrid .gallery-item,
.col-layout .gallery-thumbgrid .gallery-item,
.layout2 .col-layout .gallery-thumbgrid .gallery-item,
.layout3 .col-layout .gallery-thumbgrid .gallery-item {
  width: 31.3333%;
  margin: 1%;
}


.media-gallery.carousel .gallery-item,
.layout2 .media-gallery.carousel .gallery-item,
.layout3 .media-gallery.carousel .gallery-item {
  width: 48%;
  margin: 1%;
}


.gallery-audio .gallery-item,
.gallery-video .gallery-item,
.layout2 .gallery-audio .gallery-item,
.layout3 .gallery-audio .gallery-item,
.layout2 .gallery-video .gallery-item,
.layout3 .gallery-video .gallery-item {
  width: 100%;
  padding: 2% 0;
}


.gallery-slideshow.left {
  float: none;
  width: 100%;
  margin-right: 0;
}

.gallery-slideshow.right {
  float: none;
  width: 100%;
  margin-left: 0;
}


.ix-prod .gallery-slideshow.left,
.ix-prod .gallery-slideshow.right {
  width: 100%;
}


.gallery-slideshow.center .gallery-item .gal-img {
  padding: 0 0 66%;
}



.single-media .gallery-item,
.single-media .gallery-page[data-layout="1"] .gallery-item {
  float: none;
  width: 100%;
  margin: 0;
}

.single-media .gallery-page .gal-text,
.content .single-media .gallery-page .gal-text {
  margin: 1em 0 0;
}

.content .single-media .gallery-page[data-layout="1"] .gal-text {
  margin-right: 0;
}






  h1, .title-h1 {
      font-size: 2em;
  }















  
.index-auction.auction-archive ul {
  display: block;
}


.index-auction.auction-archive li {
  margin: 0.75rem 0;
}


.index-auction.auction-archive .title-h4 {
  font-size: 1.1em;
}
  .bookmark {
  top: 6px;
  right: 0;
  padding-right: 1rem;
  padding-bottom: 0;
}

.bookmark::before {
  font-size: 2.5em;
}

.auction-info h4:first-child {
  margin-top: 1rem;
}
  
.index-auction .slider-item-snapstart.slider-item-reveal {
  --swiffy-slider-item-reveal: 4rem;
}

.index-auction .swiffy-slider {
  --swiffy-slider-item-count: 1;
}

.index-auction ul.slider-container {
  display: grid;
}



.index-auction ul.slider-container li {
  display: flex;
}
}


@media (max-width: 400px) {
  .contentBar .background-image[data-bg-layout="2"],
.contentBar .background-image[data-bg-layout="3"] {
  padding: 0 0 66%;
}

}





/* -- COOKIE CONSENT -----------------------------------------------*/
.cookie-consent {
  position: fixed;
  display: block;
  right: 0;
  bottom: -100%;
  left: 0;
  padding: 1rem 0;
  background-color: rgb(238,238,238);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  color: rgb(51,51,51);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  clear: both;
  z-index: 100;
}


.csstransforms .cookie-consent {
  bottom: 0;
  -webkit-transform: translate(0,110%);
  transform: translate(0,110%);
}

.cookie-consent.show {
  bottom: 0;
}

.csstransforms .cookie-consent.show {
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}


.cookie-consent.show.hide {
  bottom: -100%;
}

.csstransforms .cookie-consent.show.hide {
  bottom: 0;
  -webkit-transform: translate(0,110%);
  transform: translate(0,110%);
}


.cookie-consent::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  clear: both;
}

.cookie-consent > div {
  position: relative;
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.85em;
  text-align: left;
}


.cookie-consent p {
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}


.cookie-consent a {
  display: inline-block;
  text-decoration: underline;
}


.no-touch .cookie-consent a:hover, .no-touch .cookie-consent a:active {

}


.cookie-consent .btn {
  display: block;
  float: right;
  width: auto;
  margin: 0 0 5px 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(204,204,204);
  color: rgb(51,51,51);
}

.cookie-consent .btn > i {
  font-size: 1rem;
}



@media (max-width: 450px) {

  .cookie-consent > div {
    font-size: 0.8em;
  }

}
form div.email-alt {
  display: none;
}  
