/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  /* font-size: 62.5%; */
  /* background-color: black; */
  background-color: #24221F;
}

body {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  color: #24221F;
  background-color: #ffffff;
  overflow-x: hidden;
  /* background-color: black; */
  background-color: #24221F;
}
a {
  color: #5D7C89;
  text-decoration: none;
}

/* header{
  background-color: black;
} */

p {
font-family: Georgia, "Times New Roman", Times, serif;
}

/* img {
  max-width: 100%;
} */

navigatie-header{
  background: none;
}

/* -------------------------------- 

Home Link

-------------------------------- */
.cd-nugget-info {
  position: relative;
  display: block;
  margin-bottom: 1em;
  padding: .8em;
  background: #5D7C89;
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
}

@media only screen and (max-width: 1024px) {
  .cd-nugget-info {
    display: none;
  }
}

.cd-nugget-info::before, .cd-nugget-info::after {
  /* back arrow */
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  left: 16px;
  top: calc(50% - 1px);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.cd-nugget-info::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cd-nugget-info::after {
  -webkit-transform: translateY(1px) rotate(-45deg);
      -ms-transform: translateY(1px) rotate(-45deg);
          transform: translateY(1px) rotate(-45deg);
}
.cd-nugget-info:hover {
  background: #678a98;
}
.cd-nugget-info.hide-on-mobile {
  display: none;
}
/* @media only screen and (min-width: 1024px) { */
  .cd-nugget-info {
    background: transparent;
    color: #5D7C89;
    border: 2px solid #5D7C89;
  }
  .cd-nugget-info:hover {
    background: #5D7C89;
    color: #ffffff;
  }
  .cd-nugget-info.hide-on-desktop {
    display: none;
  }
  .cd-nugget-info.hide-on-mobile {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 2em;
    padding: .8em .8em .8em 2em;
  }
/*  */

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-product-builder {
  /* height: 100vh; */
  height: 70%;
  margin-top: 100px;
  /* overflow: scroll; */
  /* margin-bottom: 200px; */
}

.cd-builder-steps {
  position: relative;
  height: 100%;
  /* overflow: auto; */
}
.cd-builder-steps > ul {
  height: 100%;
  overflow: hidden;
}
.cd-builder-steps .builder-step {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  /* -webkit-overflow-scrolling: touch; */
  visibility: hidden;
  -webkit-transition: visibility .5s;
  transition: visibility .5s;
  padding: 0 5%;
  list-style-type: none;
}
.cd-builder-steps .builder-step.active {
  position: relative;
  z-index: 2;
  visibility: visible;
  -webkit-transition: visibility .7s;
  transition: visibility .7s;
  list-style-type: none;
  margin-top: 10px;
}
.cd-builder-steps .builder-step.first-load {
  /* hide content uploaded via Ajax */
  display: none;
}

/* -------------------------------- 

Step content - basic style

-------------------------------- */
.cd-step-content {
  /* padding: 1.8em 0 3em; */
  padding: .2em 0 3em;
  opacity: 0;
  overflow-y: hidden;
  margin-bottom: 5em;
  /* this is the animation of a section moving right (go back to a prev step) - selection already made */
  -webkit-animation: cd-center-to-right .5s 0s backwards;
          animation: cd-center-to-right .5s 0s backwards;
}

@media only screen and (max-width: 1024px) {
  .cd-step-content {
    padding: 0.1em 0 3em;
  }
}

.cd-step-content header {
  position: relative;
  margin-bottom: 1em;
}
.cd-step-content h1 {
  font-size: 2.4rem;
}
.cd-step-content .steps-indicator {
  /* visible on mobile only - used to show the current step number */
  position: absolute;
  right: 0;
  bottom: 2px;
  color: #5D7C89;
}
.cd-step-content .options-list > li {
  /* basic style for list of options */
  border: 2px solid #EDEDED;
  border-radius: 4px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  list-style: none;
}
.cd-step-content .options-list > li.selected {
  border-color: #a38d77;
}
.cd-step-content .radio, .cd-step-content .check {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
}
.cd-step-content .radio::after, .cd-step-content .radio::before, .cd-step-content .check::after, .cd-step-content .check::before {
  /* used to create the check icon and yellow circle/square dot ( when element is selected) */
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  /* Force hardware acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-step-content .radio::before, .cd-step-content .check::before {
  /* yellow circle/square */
  border: 2px solid #EDEDED;
  background: #ffffff;
  -webkit-transition: background-color .3s, border-color .3s, -webkit-transform .3s;
  transition: background-color .3s, border-color .3s, -webkit-transform .3s;
  transition: background-color .3s, transform .3s, border-color .3s;
  transition: background-color .3s, transform .3s, border-color .3s, -webkit-transform .3s;
}
.cd-step-content .radio::after, .cd-step-content .check::after {
  /* check icon */
  background: url("./configurator/cd-icon-check.svg") no-repeat center center;
}
.cd-step-content .radio::before {
  border-radius: 50%;
}
.cd-step-content .check::before {
  border-radius: 4px;
}

.cd-step-content .selected .radio::before, .cd-step-content .selected .check::before {
  /* background: linear-gradient(135deg, rgb(209, 163, 84) 1.00%,#a38d77 49.00%,rgb(147, 111, 52) 97.00%); */
  border-color: #a38d77;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-animation: cd-bounce .5s;
          animation: cd-bounce .5s;
  background-color: #a38d77;
}
.active .cd-step-content {
  /* this is the animation of the selected step */
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: cd-right-to-center .5s .2s backwards;
          animation: cd-right-to-center .5s .2s backwards;
}

.move-left .cd-step-content {
  /* this is the animation of a section moving left - selection already made */
  -webkit-animation: cd-center-to-left .5s 0s backwards;
          animation: cd-center-to-left .5s 0s backwards;
}
.active.back .cd-step-content {
  /* this is the animation of the selected step - moving down*/
  -webkit-animation: cd-left-to-center .5s .2s backwards;
          animation: cd-left-to-center .5s .2s backwards;
}

/* @media only screen and (min-width: 768px) { */
  .cd-step-content header {
    margin-bottom: 2em;
  }
  .cd-step-content h1 {
    font-size: 4rem;
  }
  .cd-step-content .steps-indicator {
    font-size: 2rem;
  }
  .cd-step-content .options-list > li {
    margin-bottom: 2%;
  }
  .cd-step-content .options-list.cd-col-2::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-step-content .options-list.cd-col-2 > li {
    width: 48%;
    float: left;
    margin-right: 3%;
    background-color: white;
  }
  .cd-step-content .options-list.cd-col-2 > li:nth-of-type(2n) {
    margin-right: 0;
  }
/* } */
/* @media only screen and (min-width: 1024px) { */
  /* .cd-step-content { */
    /* this padding takes care of both top and bottom fixed navigations */
    /* padding: 20px 0 140px;
    max-width: 1000px;
    margin: 0 auto;
  } */
  .cd-step-content header {
    display: none;
  }
/* } */
@media only screen and (min-width: 1024px) and (min-height: 850px) {
  .cd-step-content {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1480px) and (min-height: 850px) {
  .cd-step-content {
    padding: 20px 0 140px;
  }
}

@-webkit-keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*@-webkit-keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}
@keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}
@-webkit-keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
@keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
} */
/* -------------------------------- 

Models Step - style

-------------------------------- */
.cd-builder-steps .models-list {
  text-align: center;
}
.cd-builder-steps .models-list > li {
  padding: 0.7em 0;
}
.cd-builder-steps .models-list .name {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  margin-top: .2em;
}
.cd-builder-steps .models-list img {
  display: block;
  max-width: 99%;
  margin: 0em auto 0.5em;
}
.cd-builder-steps .models-list .price {
  display: block;
  color: #5D7C89;
  margin-bottom: 1em;
  font-size: 0.84rem;
  font-style: italic;
}
.cd-builder-steps .models-list .selected .radio::before {
  /* show a loading animation while you wait for the HTML to be loaded */
  background: transparent;
  border-color: #EDEDED;
  border-right-color: #a38d77;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-animation: cd-load .6s infinite;
          animation: cd-load .6s infinite;
}
.cd-builder-steps .models-list .selected.loaded .radio::before {
  /* content has been loaded - show the yellow circle + check icon */
  /* background: linear-gradient(135deg, rgb(209, 163, 84) 1.00%,#a38d77 49.00%,rgb(147, 111, 52) 97.00%); */
  border-color: #a38d77;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-animation: cd-bounce .5s;
          animation: cd-bounce .5s;
background-color: #a38d77;
        }

@-webkit-keyframes cd-load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cd-load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* -------------------------------- 

Colors Step - style

-------------------------------- */
.cd-product-previews {
  position: relative;
  margin: 4.5em 0;
}
.cd-product-previews > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.cd-product-previews > li.selected {
  position: relative;
  opacity: 1;
}
.cd-product-previews > li img {
  display: block;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .cd-product-previews {
    margin: 0 0 2em;
  }
}
@media only screen and (min-width: 1480px) and (min-height: 850px) {
  .cd-product-previews {
    margin-bottom: 4em;
  }
}

.cd-product-customizer {
  /* text-align: center; */
  margin-bottom: 15px;
}

/* .cd-product-customizer {
  display: flex; /* Use flexbox to make the list items appear horizontally */
  /* list-style: none; /* Remove default list styles */
  /* padding: 0; /* Remove default padding */
  /*margin: 0; /* Remove default margin */
/* } */

.cd-product-customizer img {
  max-width: 130px;
  height: auto; /* Maintain the aspect ratio */
  /* border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px; */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 65px;
  border-bottom-right-radius: 65px;
}

@media only screen and (max-width: 365px){
  .cd-product-customizer img {
    max-width: 69px;
  }
}

@media only screen and (min-width: 365px) and (max-width: 411px){
  .cd-product-customizer img {
    max-width: 78px;
  }
}

@media only screen and (min-width: 411px) and (max-width: 500px){
  .cd-product-customizer img {
   max-width: 88px;
  }
}

@media only screen and (min-width: 500px) and (max-width: 620px){
  .cd-product-customizer img {
    max-width: 95px;
  }
}

@media only screen and (min-width: 620px) and (max-width: 920px){
  .cd-product-customizer img {
    max-width: 120px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1060px){
  .cd-product-customizer img {
    max-width: 60px;
  }
}

@media only screen and (min-width: 1060px) and (max-width: 1150px){
  .cd-product-customizer img {
    max-width: 70px;
  }
}


@media only screen and (min-width: 1150px) and (max-width: 1320px){
  .cd-product-customizer img {
    max-width: 80px;
  }
}

@media only screen and (min-width: 1320px) and (max-width: 1550px){
  .cd-product-customizer img {
    max-width: 100px;
  }
}

.cd-product-customizer li {
  position: relative;
  display: inline-block;
  /* margin-right: .5em; */
  margin-top: 1em;
}
.cd-product-customizer li:last-of-type {
  margin-right: 0;
}
.cd-product-customizer li::before, .cd-product-customizer li::after {
  /* this is used as tooltip to show color name */
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-5px);
      -ms-transform: translateX(-50%) translateY(-5px);
          transform: translateX(-50%) translateY(-5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s, visibility .2s, -webkit-transform .2s;
  transition: opacity .2s, visibility .2s, -webkit-transform .2s;
  transition: opacity .2s, visibility .2s, transform .2s;
  transition: opacity .2s, visibility .2s, transform .2s, -webkit-transform .2s;
}
.cd-product-customizer li::before {
  /* this is the tooltip triangle */
  content: '';
  bottom: 100%;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #a38d77;
  border-top-width: 10px;
  border-top-width: 10px;
}
.cd-product-customizer li::after {
  /* this is the tooltip content */
  content: attr(data-content);
  background-color: #a38d77;
  white-space: nowrap;
  padding: .7em 1.1em;
  border-radius: 1.5em;
  bottom: calc( 10% - 1px);
  font-size: 18px;
  color: white;
}

@media only screen and (max-width: 350px){
  .cd-product-customizer li::after {
    font-size: 11px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 470px){
  .cd-product-customizer li::after {
    font-size: 12px;
  }
}

@media only screen and (min-width: 470px) and (max-width: 620px){
  .cd-product-customizer li::after {
    font-size: 14px;
  }
}

@media only screen and (min-width: 620px) and (max-width: 920px){
  .cd-product-customizer li::after {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px){
  .cd-product-customizer li::after {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1480px){
  .cd-product-customizer li::after {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1480px) and (max-width: 1600px){
  .cd-product-customizer li::after {
    font-size: 16px;
  }
}

.cd-product-customizer li:hover::before, .cd-product-customizer li:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
/* .cd-product-customizer a {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #EDEDED;
  -webkit-transition: box-shadow .3s;
  transition: box-shadow .3s;
} */
.cd-product-customizer .selected a {
  box-shadow: 0 0 0 2px #a38d77;
}
/* @media only screen and (min-width: 768px) { */
  /* .cd-product-customizer li {
    margin-right: 1em;
  } */
  .cd-product-customizer a {
    height: 100px;
    width: 100px;
    margin-bottom: 10px;
  }
/* } */

.cd-product-customizer .active{
  border-style: inset;
  border-width: 5px;
  border-left: none;
  border-right: none;
  border-color: #a38d77;
  /* padding-bottom: 5px; */
}

[data-color="wit"] {
  background-color: #dce8ea;
  /* border-style: inset;
  border-width: 5px;
  border-left: none;
  border-right: none;
  border-color: #a38d77;
  padding-bottom: 5px; */
}

[data-color="grijs"] {
  background-color: #a2babc;
  border-style: solid;
  /* border-width: 5px;
  border-left: none;
  border-right: none;
  border-color: #a38d77 */
}

[data-color="antraciet"] {
  background-color: #4d5258;
  /* border-style: solid;
  border-width: 5px;
  border-left: none;
  border-right: none;
  border-color: #a38d77 */
}

[data-color="zwart"] {
  background-color: #17617d;
  /* border-style: solid;
  border-width: 5px;
  border-left: none;
  border-right: none;
  border-color: #a38d77 */
}

/* -------------------------------- 

Accessories Step - style

-------------------------------- */
/* .cd-builder-steps .accessories-list span {
  display: none;
} */

.cd-builder-steps .accessories-list > li {
  text-align: center;
  /* padding: 1.2em 1em; */
  font-weight: bold;
  position: relative;
    text-align: left;
    /* padding: 35px 250px 35px 32px; */
    padding: 22px 250px 22px 16px;
}
.cd-builder-steps .accessories-list p {
  font-size: 1.2rem;
  line-height: 1.4;
  /* min-width: 130px; */
}
.cd-builder-steps .accessories-list .price {
  display: block;
  margin: 1.2em auto;
  color: #5D7C89;
}
/* @media only screen and (min-width: 768px) { */
  .cd-builder-steps .accessories-list > li {
    position: relative;
    text-align: left;
    /* padding: 35px 250px 35px 32px; */
    padding: 22px 250px 22px 16px;
    color: white;
    display: flex;
  }
  .cd-builder-steps .accessories-list p {
    /* font-size: 2.2rem; */
    font-size: 1.2rem;
    min-width: 140px;
  }
  .cd-builder-steps .accessories-list .check, .cd-builder-steps .accessories-list .price {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cd-builder-steps .accessories-list .check {
    right: 32px;
  }
  .cd-builder-steps .accessories-list .price {
    /* 32px (right padding) + 44px (.check width) + 26px (margin between .check and .price) */
    right: 102px;
    margin: 0;
    font-size: 1.2rem;
    color: #24221F;
  }
/* } */

@media only screen and (min-width: 1024px) and (max-width: 1140px) {
  .cd-builder-steps .accessories-list p {
    max-width: 200px;
  }
}

@media only screen and (min-width: 1140px) and (max-width: 1330px){
  .cd-builder-steps .accessories-list p {
    max-width: 270px;
  }
}

@media only screen and (min-width: 1330px) {
  .cd-builder-steps .accessories-list p {
    max-width: 358px;
  }
}


@media only screen and (min-width: 1024px) {
  .cd-builder-steps .accessories-list > li {
    /* padding-right: 300px; */
    padding-right: 1px;
    display: flex;
  }
  .cd-builder-steps .accessories-list p, .cd-builder-steps .accessories-list .price {
    /* font-size: 2.0rem; */
    font-size: 1.2rem;
  }
}
/* @media only screen and (min-width: 1200x) {
  .cd-builder-steps .accessories-list > li {
    padding-right: 1px;
  }
  .cd-builder-steps .accessories-list p, .cd-builder-steps .accessories-list .price {
    font-size: 2.6rem;
  }
} */

/* -------------------------------- 

Summary Step - style

-------------------------------- */
.cd-builder-steps .summary-list > li {
  position: relative;
  margin: 1.6em 0;
}

@media only screen and (max-width: 1024px) {
  .cd-builder-steps .summary-list > li {
    margin: 0em 0;
  }
}


.cd-builder-steps .summary-list h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: .1em;
  font-size: 1rem;
}
.cd-builder-steps .summary-list h2::before {
    /* this is the line below the step label */
  content: '';
  display: block;
  height: 2px;
  width: 32px;
  background: #EDEDED;
  margin-bottom: .6em;
}

/* .cd-builder-steps h2::before {

  content: '';
  display: block;
  height: 2px;
  width: 32px;
  background: #EDEDED;
  margin-bottom: .6em;
} */

.cd-builder-steps .summary-list .product-preview {
  display: block;
  max-width: 700px;
  width: 100%;
  margin-bottom: 2em;
}
.cd-builder-steps .summary-list h3 {
  font-size: 1.8rem;
  font-weight: bold;
  /* margin: .6em 0; */
}
.cd-builder-steps .summary-list p {
  color: #5D7C89;
  line-height: 1.6;
  /* width: 80%; */
  /* margin-left: 10%; */
  font-size: 1rem;
}
.cd-builder-steps .summary-list .summary-color::after {
  clear: both;
  content: "";
  display: block;
}

/* @media only screen and (min-width: 1024px) {
.cd-builder-steps .summary-list .summary-color > * {
  float: left;
}
} */
.cd-builder-steps .summary-list .color-swatch {
  display: inline-block;
  height: 40px;
  width: 40px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #EDEDED;
  border-radius: 50%;
}
.cd-builder-steps .summary-list .color-label {
  display: inline-block;
  font-size: 1.8rem;
  margin-top: 11px;
  font-style: italic;
  color: #5D7C89;
  font-size: 1rem;
  /* margin-left: .5em; */
}

.cd-builder-steps .summary-list .pool-cover-label {
  display: inline-block;
  font-size: 1.8rem;
  margin-top: 11px;
  font-style: italic;
  color: #5D7C89;
  font-size: 1rem;
  /* margin-left: .5em; */
}

.cd-builder-steps .summary-list .summary-accessories {
  color: #5D7C89;
  list-style: disc;
  list-style-position: inside;
}
.cd-builder-steps .summary-list .summary-accessories p {
  display: inline;
}
@media only screen and (min-width: 1024px) {
  .cd-builder-steps .summary-list {
    text-align: center;
  }
  .cd-builder-steps .summary-list > li {
    margin: 0 0 1.5em;
  }
  .cd-builder-steps .summary-list h2 {
    /* padding-top: 10px; */
    font-size: 1.1rem;
  }
  .cd-builder-steps .summary-list h2::before {
    margin: 0 auto .6em;
  }
  .cd-builder-steps .summary-list h3 {
    font-size: 2.8rem;
    text-align: center;
  }
  .cd-builder-steps .summary-list p {
    font-size: 1.4rem;
  }
  .cd-builder-steps .summary-list .product-preview {
    margin: 0 auto 2em;
  }
  .cd-builder-steps .summary-list .summary-color {
    display: inline-block;
  }
  .cd-builder-steps .summary-list .color-swatch {
    height: 54px;
    width: 54px;
  }
  .cd-builder-steps .summary-list .color-label {
    font-size: 1.5rem;
    /* margin-top: 15px; */
  }
}

@media only screen and (min-width: 1200px) {
  .cd-builder-steps .summary-list h3 {
    font-size: 2rem;
    text-align: center;
  }

  .cd-builder-steps .summary-list h2 {
    font-size: 1.1rem;
  }

  .cd-builder-steps .summary-list p {
    font-size: 1rem;
  }

  .cd-builder-steps .summary-list .color-label {
    font-size: 1rem;
    /* margin-top: 15px; */
  }
}

/* -------------------------------- 

Builder top navigation

-------------------------------- */
.cd-product-builder .main-header {
  display: none;
}
/* @media only screen and (min-width: 1024px) { */
  .cd-product-builder .main-header {
    display: block;
    position: relative;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 5%;
    text-align: center;
    background: #ffffff;
  }
  .cd-product-builder .main-header::after {
    /* this is to create the linear gradient below the header */
    content: '';
    /* position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: -webkit-linear-gradient(top, white, rgba(255, 255, 255, 0));
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)); */
  }
  .cd-product-builder .main-header h1 {
    font-size: 3.8rem;
    margin: 1.1em auto .76em;
    font-weight: bold;
  }
/* } */
@media only screen and (min-width: 1480px) and (min-height: 850px) {
  .cd-product-builder .main-header h1 {
    font-size: 4.8rem;
  }
}


/* @media only screen and (min-width: 1024px){ */
  .cd-builder-main-nav li {
    display: inline-block;
  }
  .cd-builder-main-nav a {
    display: block;
    /* font-size: 1.1rem; */
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5D7C89;
    padding: .7em .8em;
    border-bottom: 2px solid transparent;
    -webkit-transition: color .2s, border-color .2s;
    transition: color .2s, border-color .2s;
  }
  .cd-builder-main-nav a:hover {
    color: #a38d77;
  }
  .cd-builder-main-nav .active a {
    border-color: #a38d77;
    color: #a38d77;
  }
  .cd-builder-main-nav .active a:hover {
    color: #a38d77;
  }
  .cd-builder-main-nav.disabled li:not(.active) a {
    color: rgba(93, 124, 137, 0.5);
  }
/* } */

@media only screen and (min-width: 1200px) {
  .cd-builder-main-nav a {
    font-size: 0.92rem;
    content: '';
    }
  }

@media only screen and (max-width: 1024px) {
  .cd-builder-main-nav{
    /* display: none; */
    margin-top: 5px;
  }

}

/* -------------------------------- 

Builder fixed bottom summary

-------------------------------- */
footer {
  position: fixed;
}

.cd-builder-footer {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: #ffffff;
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  /* transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; */
}
.cd-builder-footer.disabled {
  /* no product model has been selected yet - hide navigation */
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.cd-builder-footer .selected-product2 {
  /* visible on desktop only */
  display: none;
}
.cd-builder-footer .alert {
  /* this is the notification to select a model - visible on desktop only */
  display: none;
}
@media only screen and (min-width: 1024px) {
  .cd-builder-footer {
    height: 100px;
    padding: 0 2em;
    box-shadow: 0 0 39px rgba(0, 0, 0, 0.1);
  }
  .cd-builder-footer::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-builder-footer.disabled {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .cd-builder-footer .selected-product2 {
    display: block;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2em;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .cd-builder-footer .selected-product2::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-builder-footer .selected-product2, .cd-builder-footer img, .cd-builder-footer .tot-price {
    float: left;
  }
  .cd-builder-footer img {
    width: 165px;
    padding-right: 15px;
    margin-right: 27px;
    /* border-right: 1px solid #e1e1e1; */
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }

  .cd-builder-footer .tot-price {
    padding-left: 27px;
    border-left: 1px solid #e1e1e1;
  }

  .cd-builder-footer .selected-product2 span {
    display: block;
    color: #5D7C89;
  }
  .cd-builder-footer .tot-price {
    margin-top: 12px;
  }
  .cd-builder-footer .selected-product2 .total {
    color: #24221F;
    /* font-size: 3.2rem; */
    font-size: 1.8rem;
    margin-top: 4px;
  }

  .cd-builder-footer span {
    font-size: 1rem;
  }

  .cd-builder-footer.disabled .selected-product2 {
    /* translateX is equal to img width (197px) + img margin-right (27px) */
    -webkit-transform: translateX(-224px) translateY(-50%);
        -ms-transform: translateX(-224px) translateY(-50%);
            transform: translateX(-224px) translateY(-50%);
  }
  .cd-builder-footer.disabled .selected-product2 img {
    opacity: 0;
    padding-left: 0px;
  }
  .selected-product img {
    text-align: left;
    float: left;
  }

  .configurator-preview .selected-product img {

    text-align: left;
    float: left;
    border-radius: 10px;
  }

  /* @media only screen and (min-width: 1024px){
    .configurator-preview .selected-product img {
      color: red;
    }
  } */

  .cd-builder-footer .alert {
    display: block;
    position: absolute;
    top: 120%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-transition: top .2s;
    transition: top .2s;
    background: #24221F;
    color: #ffffff;
    padding: .8em 1em;
    border-radius: 4px;
  }
  .cd-builder-footer.disabled.show-alert .alert {
    top: 50%;
  }
}
@media only screen and (min-width: 1024px) and (min-height: 850px) {
  .cd-builder-footer {
    height: 100px;
  }
}

.cd-builder-secondary-nav {
  height: 100%;
}
.cd-builder-secondary-nav .nav-item {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  -webkit-transition: width .2s, opacity .2s;
  transition: width .2s, opacity .2s;
  overflow: hidden;
}
.cd-builder-secondary-nav .prev {
  left: 0;
  color: #5D7C89;
}
.cd-builder-secondary-nav .next {
  z-index: 1;
  right: 0;
  /* background: linear-gradient(135deg, rgb(209, 163, 84) 1.00%,#a38d77 49.00%,rgb(147, 111, 52) 97.00%); */
  background-color: #a38d77;
}
.cd-builder-secondary-nav .next:hover {
  /* background: linear-gradient(136deg, rgb(201, 155, 76) 1.00%,rgb(215, 181, 97) 49.00%,rgb(139, 103, 44) 97.00%); */
  background-color: #a38d77;
}
.disabled .cd-builder-secondary-nav .next {
  background: rgba(93, 124, 137, 0.5);
}
.step-1 .cd-builder-secondary-nav .prev {
  /* if models are visible, do not show the prev link */
  opacity: 0;
}
.step-1 .cd-builder-secondary-nav .next {
  width: 100%;
}
.cd-builder-secondary-nav .nav-item ul {
  position: relative;
  width: 100%;
  height: 100%;
}
.cd-builder-secondary-nav .nav-item ul::after {
  /* this is the arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 30px;
  background: url("./configurator/cd-icon-arrow.svg") no-repeat 0 0;
  pointer-events: none;
}
.cd-builder-secondary-nav .nav-item.prev ul::after {
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background-position: 0 -16px;
}
.cd-builder-secondary-nav .nav-item.next ul::after {
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cd-builder-secondary-nav .nav-item ul li {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 54px;
  text-align: center;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.cd-builder-secondary-nav .nav-item ul li.visible {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.cd-builder-secondary-nav .nav-item ul li.visited {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.cd-builder-secondary-nav a {
  display: block;
  font-size: 1rem;
}
.cd-builder-secondary-nav .next a {
  color: #ffffff;
  font-size: 1rem;
}

.cd-builder-secondary-nav .next button {
  color: #ffffff;
  padding-left: 2.3em;
  text-align: left;
  border: none;
  background-color: none;
  background: none;
  padding: 17px 120px 120px 32px;
  font-weight: bold;
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  .cd-builder-secondary-nav .next button {
    padding: 17px 120px 120px 92px;
  }
}

@media only screen and (max-width: 400px) {
  .cd-builder-secondary-nav .next button {
    padding: 0px 120px 50px 72px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-builder-secondary-nav {
    box-shadow: none;
    float: right;
    width: 265px;
  }
  .cd-builder-secondary-nav > ul {
    margin-top: 22px;
  }
  .cd-builder-secondary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-builder-secondary-nav .nav-item {
    position: relative;
    height: 56px;
  }
  .cd-builder-secondary-nav .nav-item.next {
    width: 194px;
    border-radius: 2rem;
    float: right;
    margin-left: 11px;
  }
  .cd-builder-secondary-nav .nav-item.prev {
    width: 56px;
    border-radius: 50%;
    background: #EDEDED;
    /* replace text with image */
    color: transparent;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .cd-builder-secondary-nav .nav-item.prev:hover {
    background: #f2f2f2;
  }
  .cd-builder-secondary-nav .nav-item.prev ul::after {
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) translateX(-50%) rotate(180deg);
            transform: translateY(-50%) translateX(-50%) rotate(180deg);
  }
  .cd-builder-secondary-nav .nav-item ul li {
    text-align: left;
    font-size: 1rem;
    font-size: 1rem;
  }
  .cd-builder-secondary-nav a {
    padding-left: 2.3em;
  }
}
/* @media only screen and (min-width: 1024px) and (min-height: 850px) {
  .cd-builder-secondary-nav > ul {
    margin-top: 32px;
  }
} */

.configurator-preview {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  /* overflow: auto; */
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  margin: 15px;
}

@media only screen and (max-width: 1024px) {
  .configurator-preview {
  display: block;
  flex-direction: column;
  margin: 0px;
  }
}

.configure-options {
  width: 100%;
  display: flex;
  /* overflow: auto; */
  min-height: 100vh;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.logo {
  border-radius: 30px ;
  padding: 10px;
  width: 100%;
  height: auto;
  max-height: 100px;
  max-width: 240px;
}

@media only screen and (max-width: 1024px) and (min-width: 650px)  {
  .logo {
    width: auto;
    height: auto;
    max-width: 300px;
  }
}

@media only screen and (min-width: 1024px) {
  .logo {
    width: auto;
    height: auto;
    max-width: 360px;
  }
}

.nav-configurator{
  justify-content: center;
  text-align: center;
  float: center;
  width: 45%;
}

@media only screen and (max-width: 1024px) {
  .nav-configurator{
    justify-content: center;
    text-align: center;
    float: center;
    width: 100%;
  }
}

.get-quote {
  color: #ffffff;
  background: #FFB500;
}

.get-quote:hover {
  background: #ffbc1a;
}

#ProductImage{
  /* max-width: auto; */
  width: 100%;
  height: auto;
  /* overflow: hidden; */


  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.selected-product img {
  display: block;
  margin: 0 auto; /* Center the image horizontally within the container */
  width: 50%; /* Set the image width to 50% to fill the container */
}

@media only screen and (min-width: 1024px) {
  #ProductImage{
    margin-top: 51px;
  }
}

#ProductImage2{
border-radius: 5px;
transition: all .15s ease-in-out;

-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}

.selected-product2 img:hover {
  transform: scale(1.08);
  box-shadow: #8a97a0;
  cursor: pointer;
}

.cd-product-customizer li:hover {
  transform: scale(1.02);
  box-shadow: #8a97a0;
  cursor: pointer;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.form-style-5{
	max-width: 500px;
	padding: 10px 20px;
	background: #f4f7f8;
	margin: 10px auto;
	padding: 20px;
	background: #f4f7f8;
	border-radius: 8px;
	font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #c3b4a6;
}

.form-style-5 ::placeholder{
  color: #6e5c4a;
}

.form-style-5 fieldset{
	border: none;
}
.form-style-5 legend {
	font-size: 1.4em;
	margin-bottom: 10px;
}
.form-style-5 label {
	display: block;
	/* margin-bottom: 8px; */
  font-size: 1.6rem;
  /* font-family: "Lato", sans-serif; */
  font-family: Georgia, "Times New Roman", Times, serif;
  color:#5a6369;
  text-align: left; /* Ensure labels are left-aligned */
  margin-bottom: 10px;

}
.form-style-5 input[type="text"],
.form-style-5 input[type="date"],
.form-style-5 input[type="datetime"],
.form-style-5 input[type="email"],
.form-style-5 input[type="number"],
.form-style-5 input[type="search"],
.form-style-5 input[type="time"],
.form-style-5 input[type="url"],
.form-style-5 textarea,
.form-style-5 select {
	font-family: Georgia, "Times New Roman", Times, serif;
	/* background: rgba(255,255,255,.1); */
	border: none;
	border-radius: 4px;
	font-size: 15px;
	margin: 0;
	outline: 0;
	padding: 10px;
	width: 100%;
	box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	/* background-color: #e8eeef; */
  background-color: #eae5e0;
	color:#656E75;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	margin-bottom: 25px;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .form-style-5 input[type="text"], .form-style-5 input[type="email"], .form-style-5 select, .form-style-5 label {
    font-size: 12px;
  }
}

.form-style-5 input[type="text"]:focus,
.form-style-5 input[type="date"]:focus,
.form-style-5 input[type="datetime"]:focus,
.form-style-5 input[type="email"]:focus,
.form-style-5 input[type="number"]:focus,
.form-style-5 input[type="search"]:focus,
.form-style-5 input[type="time"]:focus,
.form-style-5 input[type="url"]:focus,
.form-style-5 textarea:focus,
.form-style-5 select:focus{
	background: #d2d9dd;
}
/* .form-style-5 select{
	-webkit-appearance: menulist-button;
	height:35px;
} */
.form-style-5 .number {
	background: #1abc9c;
	color: #fff;
	height: 30px;
	width: 30px;
	display: inline-block;
	font-size: 0.8em;
	margin-right: 4px;
	line-height: 30px;
	text-align: center;
	text-shadow: 0 1px 0 rgba(255,255,255,0.2);
	border-radius: 15px 15px 15px 0px;
}

.form-style-5 input[type="submit"],
.form-style-5 input[type="button"]
{
	position: relative;
	display: block;
	padding: 19px 39px 18px 39px;
	color: #FFF;
	margin: 0 auto;
	background: #1abc9c;
	font-size: 18px;
	text-align: center;
	font-style: normal;
	width: 100%;
	border: 1px solid #16a085;
	border-width: 1px 1px 3px;
	margin-bottom: 10px;
}
.form-style-5 input[type="submit"]:hover,
.form-style-5 input[type="button"]:hover
{
	background: #109177;
}

.color-summary-content {
  display: flex;
  flex-direction: column;
}

.model-line {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: .1em;
  font-size: 1.2rem;
}

@media only screen and (min-width: 765px) {
  .model-line {
    font-size: x-large;
    text-decoration-line: underline;
    text-underline-offset: 5px;
  }
}

#quote-form{
  margin: 0px;
}

#quote-form2{
  margin: 0px;
}

#quote-form3{
  margin: 0px;
}

@media only screen and (max-width: 600px) {
  .configurator-container{
    min-height: 380px;
  }
}
/* 
.configurator-container{
  margin-bottom: 34rem;  
} */



@media only screen and (max-width: 480px) {
  .cd-product-builder{
    margin-bottom: 40rem;  
  }
}

@media only screen and (min-width: 480px) and (max-width: 600px) {
  .cd-product-builder{
    margin-bottom: 41rem;  
  }
}

@media only screen and (min-width: 600px) and (max-width: 800px) {
  .cd-product-builder{
    margin-bottom: 50rem;  
  }
}

@media only screen and (min-width: 800px) and (max-width: 940px) {
  .cd-product-builder{
    margin-bottom: 60rem;  
  }
}

@media only screen and (min-width: 940px) and (max-width: 1024px) {
  .cd-product-builder{
    margin-bottom: 70rem;  
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .cd-product-builder{
    margin-bottom: 28rem;  
  }
}

@media only screen and (min-width: 1200px){
  .cd-product-builder{
    margin-bottom: 26rem;  
  }
}

@media (max-width: 1240px) {
  nav {
    display: block;
  }
}

@media(max-height: 500px) {
  .configurator-container
    {
      min-height: 280px;
    }
    .cd-product-builder
    {
      margin-bottom: 78rem;
    }
}

h2 {
  color: #a38d77;
}

h3 {
  color: #D3D3D3
}

.js-option .fa {
  color: #c3b4a6;
}
.fa-circle-info {
  color: black;
}

.js-option .fa-solid {
  color: #c3b4a6;
}

.js-option.fa-regular {
  color: #c3b4a6;
}

.js-option .fa-circle-info {
  color: #fdde6c;
  width: 70%;
  margin-left: 8px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 420px;
  background-color: black;
  color: #fff;
  font-size: medium;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 5;
  top: 150%;
  left: 42%;
  margin-left: -170px;
  background-color: rgba(78, 75, 75, 2.7);
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 42%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(78, 75, 75, 0.7) transparent;
  z-index: 5;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}



.accessories-list .model-line{
  margin-top: 28px;
}

.header-root-class-name {
  background-image: none;
}