/* -------------------------------- Primary style -------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  color: #24221f;
  background-color: #fff;
}

a {
  color: #5d7c89;
  text-decoration: none;
}
/* a.disabled {
  pointer-events: none;
  cursor: default;
  color: rgba(93, 124, 137, .5);
} */

img {
  max-width: 100%;
}

div > select.not-selected {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-right: 1px solid; 
  border-left: 1px solid;
  /* transition: border-color 0.3s; */
  border-color: #ff0c0c;
}
li > select.not-selected {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-right: 1px solid; 
  border-left: 1px solid;
  /* transition: border-color 0.3s; */
  border-color: #ff0c0c;
}

.grayout {
  opacity: 0.6; /* Real browsers */
  filter: alpha(opacity = 60); /* MSIE */
}

.p_decoder {
  font-weight: bold;
  text-align: left;
  font-size: large;
  margin: 1em;
  padding: 0;
}

.decoder-summary-list {
  margin: 8% 20% 0% 20%;
}
/* -------------------------------- Home Link -------------------------------- */
.cd-nugget-info {
  position: relative;
  display: block;
  /* margin-bottom: 1em; */
  padding: 0.8em;
  background: #5d7c89;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}
.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);
  transform-origin: left center;
}
.cd-nugget-info::before {
  transform: rotate(45deg);
}
.cd-nugget-info::after {
  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: #fff;
  }
  .cd-nugget-info.hide-on-desktop {
    display: none;
  }
  .cd-nugget-info.hide-on-mobile {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 2em;
    padding: 0.8em 0.8em 0.8em 2em;
  }
}
/* -------------------------------- Main Components -------------------------------- */
.listbox {
  margin-left: 25px;
  flex: 1;
}
.listbox, .listbox_conditions {
  border: 1px solid #ddd;
}
.listbox:hover, .listbox_conditions:hover {
  border: 1px solid #7ad5ff;
}
.gases h3 {
  font-weight: bold;
}
.gas-box {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.gas-box.hidden {
  display: none;
}
.add_gas_button, .remove_gas_button {
  margin: 0 5px 0 0;
  color: #ffffff;
  border-width: 0px;
  border-radius: 0px;
  font-size: 16px;
  padding: 7px 10px;
  transition: all 0.3s;
}
.add_gas_button, .remove_gas_button {
  background-color: rgba(12, 188, 255, 0.7);
  transition: all 0.3s;
}
.add_gas_button:hover, .remove_gas_button:hover{
  background-color: rgba(12, 188, 255, 0.4);
  transition: all 0.3s;
}
.add_gas_button.hidden, .remove_gas_button.hidden {
  background-color: rgba(153, 153, 153, 0.7);
  transition: all 0.3s;
}

.select-box {
  display: flex;
}
.select-box > div {
  margin: .1em 0 .1em 0;
  flex: 1;
}
.select-box > select {
  margin: .1em 0 .1em 0;
  flex: 1;
}
.process-conditions-list {
  list-style-type: none;
  padding: 0;
  /* border-radius: 3px; */
}
.process-conditions-box {
  display: flex;
  /* justify-content: flex-end; */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.process-conditions-box > label {
  margin: .1em 0 .1em 0;
  flex: 1;
  width:30%;
}
.process-conditions-box > select {
  margin: .1em 0 .1em 0;
  flex: 2;
  width: 70%;
}
.cd-product-builder {
  height: auto;
  min-height: 80vh;
  overflow: hidden;
}
.cd-builder-steps {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.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;
  transition: visibility 0.5s;
  padding: 0 5%;
}
.cd-builder-steps .builder-step.active {
  position: relative;
  z-index: 2;
  visibility: visible;
  transition: visibility 0.7s;
  overflow: hidden;
}
.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; */
  opacity: 0;
  /* this is the animation of a section moving right (go back to a prev step) - selection already made */
  animation: cd-center-to-right 0.5s 0s backwards;
}
.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 */
  list-style-type: none;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
  border-left: 1px solid #ededed;
  cursor: pointer;
  transition: border-color 0.3s;
}
.cd-step-content .options-list > li:hover {
  border-color: #7ad5ff;
}
.cd-step-content .options-list > li.selected {
  border-color: #0cbcff;
}

.cd-step-content .options-list > li.not-selected {
  border-color: #ff0c0c;
}

.cd-step-content .radio, .cd-step-content .check {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
}
.cd-step-content .radio::after, .cd-step-content .check::after, .cd-step-content .radio::before, .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 */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.cd-step-content .radio::before, .cd-step-content .check::before {
  /* yellow circle/square */
  border: 2px solid #ededed;
  background: #fff;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}
.cd-step-content .radio::after, .cd-step-content .check::after {
  /* check icon */
  background: url('../img/cd-icon-check.svg') no-repeat center center;
  background-size: 30px;
}
.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: #0cbcff;
  border-color: #0cbcff;
  transform: scale(1.5);
  animation: cd-bounce 0.5s;
}
.active .cd-step-content {
  /* this is the animation of the selected step */
  opacity: 1;
  transform: translateX(0);
  animation: cd-right-to-center 0.5s 0.2s backwards;
}
.move-left .cd-step-content {
  /* this is the animation of a section moving left - selection already made */
  animation: cd-center-to-left 0.5s 0s backwards;
}
.active.back .cd-step-content {
  /* this is the animation of the selected step - moving down*/
  animation: cd-left-to-center 0.5s 0.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 {
    list-style-type: none;
    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: 30%;
    float: left;
    margin-right: 4%;
  }
  .cd-step-content .options-list.cd-col-2 > li:nth-of-type(3n) {
    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: 14% 0 40px;
    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: 200px 0 30px;
  }
}
@keyframes cd-right-to-center {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes cd-left-to-center {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes cd-center-to-left {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@keyframes cd-center-to-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}
@keyframes cd-bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.6);
  }
  60% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1.5);
  }
}
/* -------------------------------- Models Step - style -------------------------------- */
.cd-builder-steps .models-list {
  text-align: center;
}
.cd-builder-steps .models-list > li {
  padding: 2.7em 0;
}
.models-list li {
  margin-bottom: 10px;
}
.cd-builder-steps .models-list .name {
  display: block;
  font-size: 3.2rem;
  font-weight: bold;
  margin-top: 0.2em;
}
.cd-builder-steps .models-list img {
  display: block;
  max-width: 50%;
  margin: 1.8em auto 2.2em;
}
.cd-builder-steps .models-list .code {
  display: block;
  color: #5d7c89;
  margin-bottom: 1em;
}
.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: #ffb500;
  transform: scale(1);
  animation: cd-load 0.6s infinite;
}
.cd-builder-steps .models-list .selected.loaded .radio::before {
  /* content has been loaded - show the yellow circle + check icon */
  background: #0cbcff;
  border-color: #0cbcff;
  transform: scale(1.5);
  animation: cd-bounce 0.5s;
}
@keyframes cd-load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    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;
}
.cd-product-customizer li {
  position: relative;
  display: inline-block;
  margin-right: 0.5em;
}
.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%;
  transform: translateX(-50%) translateY(-5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.cd-product-customizer li::before {
  /* this is the tooltip triangle */
  content: '';
  bottom: 100%;
  height: 0;
  border: 8px solid transparent;
  border-top-color: rgba(237, 237, 237, .8);
  border-top-width: 10px;
  border-top-width: 10px;
}
.cd-product-customizer li::after {
  /* this is the tooltip content */
  content: attr(data-content);
  background-color: rgba(237, 237, 237, .8);
  white-space: nowrap;
  padding: 0.7em 1.1em;
  border-radius: 2em;
  bottom: calc(100% + 18px);
}
.cd-product-customizer li:hover::before, .cd-product-customizer li:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.cd-product-customizer a {
  /* replace text with bg color */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ededed;
  transition: box-shadow 0.3s;
}
.cd-product-customizer .selected a {
  box-shadow: 0 0 0 2px #ffb500;
}
@media only screen and (min-width: 768px) {
  .cd-product-customizer li {
    margin-right: 1em;
  }
  .cd-product-customizer a {
    height: 50px;
    width: 50px;
  }
}
[data-color="white"] {
  /* used to give background color to Color options */
  background-color: #fff;
}
[data-color="grey"] {
  background-color: #303539;
}
[data-color="orange"] {
  background-color: #cf5a16;
}
[data-color="perl"] {
  background-color: #d1d1d1;
}
/* -------------------------------- Accessories Step - style -------------------------------- */
.accessories-list-title {
  font-weight: bold;
}
.cd-builder-steps .accessories-list > li {
  text-align: center;
  /* padding: 1em 1em; */
  /* font-weight: bold; */
}
.cd-builder-steps .accessories-list p {
  font-size: 1rem;
  /* line-height: 1.4; */
}
.cd-builder-steps .accessories-list .code {
  display: block;
  /* margin: 0.2em auto; */
  color: #5d7c89;
}
@media only screen and (min-width: 768px) {
  .cd-builder-steps .accessories-list > li {
    position: relative;
    text-align: left;
    /* padding: 12.5px 250px 12.5px 16px; */
    margin: 1px;
    padding: 0px 250px 0px 16px;
  }
  .cd-builder-steps .accessories-list p {
    font-size: 1.1rem;
  }
  .cd-builder-steps .accessories-list .check, .cd-builder-steps .accessories-list .code {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .cd-builder-steps .accessories-list .check {
    right: 32px;
  }
  .cd-builder-steps .accessories-list .code {
    /* 32px (right padding) + 44px (.check width) + 26px (margin between .check and .price) */
    right: 102px;
    margin: 0;
    font-size: 1.1rem;
    color: #24221f;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-builder-steps .accessories-list > li {
    padding-right: 300px;
  }
  .cd-builder-steps .accessories-list p, .cd-builder-steps .accessories-list .code {
    font-size: 1.8rem;
  }
}
/* -------------------------------- Summary Step - style -------------------------------- */
.cd-builder-steps .summary-list > li {
  list-style-type: none;
  position: relative;
  margin: 1em 0;
}
.cd-builder-steps .summary-list h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0.5em 0.5em;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
/* .cd-builder-steps .summary-list h2::before {
  content: '';
  display: none;
  height: 2px;
  width: 32px;
  background: #ededed;
  margin-bottom: 0.6em;
}*/
.cd-builder-steps .summary-list .product-preview {
  display: block;
  max-width: 700px;
  width: 100%;
}
.cd-builder-steps .summary-list h3 {
  font-size: 1em;
  font-weight: bold;
  margin-top: 0.5em;
}
.cd-builder-steps .summary-list p {
  color: #5d7c89;
  line-height: 1.6;
}
.cd-builder-steps .summary-list .summary-color::after {
  clear: both;
  content: "";
  display: block;
}
.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 #fff;
  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;
  margin-left: 0.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 4.5em; */
    margin: 0 0 0.5em;
  }
  .cd-builder-steps .summary-list h2 {
    font-size: 1.8rem;
  }
  .cd-builder-steps .summary-list h2::before {
    margin: 0 auto 0.6em;
  }
  /* .cd-builder-steps .summary-list h3 {
		 font-size: 4rem;
		 text-align: center;
	} */
  .cd-builder-steps .summary-list p {
    font-size: 1.8rem;
  }
  .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: 2.4rem;
    margin-top: 15px;
  }
}
/* -------------------------------- Builder top navigation -------------------------------- */
.cd-product-builder .main-header {
  display: none;
  margin-top: 2.5%;
}

.decoderInput {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 40%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 2rem;
  line-height: 1.5;
  color: #24221f;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media only screen and (min-width: 1024px) {
  .cd-product-builder .main-header {
    display: block;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 5%;
    text-align: center;
    background: #fff;
  margin-top: 4%;
  }
  .cd-product-builder .main-header h1 {
    font-size: 3.8rem;
    margin: 1.1em auto 0.3em;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1480px) and (min-height: 850px) {
  .cd-product-builder .main-header h1 {
    font-size: 4.8rem;
  }
  .cd-product-builder .main-header {
    margin-top: 2.5%;
  }

}
@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.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5d7c89;
    padding: 0.7em 0.8em;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .cd-builder-main-nav a:hover {
    color: #7ad5ff;
  }
  .cd-builder-main-nav .active a {
    border-color: #0cbcff;
    color: #0cbcff;
  }
  .cd-builder-main-nav .active a:hover {
    color: #7ad5ff;
  }
  .cd-builder-main-nav.disabled li:not(.active) a {
    color: rgba(93, 124, 137, .5);
  }
}
/* -------------------------------- Builder fixed bottom summary -------------------------------- */
.cd-builder-footer {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: #fff;
  box-shadow: 0 -2px 24px rgba(0, 0, 0, .2);
  transition: transform 0.3s;
}
.cd-builder-footer.disabled {
  /* no product model has been selected yet - hide navigation */
  transform: translateY(100%);
}
.cd-builder-footer .selected-product {
  /* 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, .1);
  }
  .cd-builder-footer::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-builder-footer.disabled {
    transform: translateY(0);
  }
  .cd-builder-footer .selected-product {
    display: block;
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 2em;
    transition: transform 0.3s;
  }
  .cd-builder-footer .selected-product::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-builder-footer .selected-product, .cd-builder-footer img, .cd-builder-footer .tot-code {
    float: left;
  }
  .cd-builder-footer img {
    width: 197px;
    padding-right: 27px;
    margin-right: 27px;
    border-right: 1px solid #e1e1e1;
    transition: opacity 0.2s;
  }
  .cd-builder-footer .selected-product span {
    display: block;
    color: #5d7c89;
  }
  .cd-builder-footer .tot-code {
    margin-top: 12px;
  }
  .cd-builder-footer .selected-product .total {
    color: #24221f;
    font-size: 2.0rem;
    margin-top: 4px;
  }
  .cd-builder-footer.disabled .selected-product {
    /* translateX is equal to img width (197px) + img margin-right (27px) */
    transform: translateX(-224px) translateY(-50%);
  }
  .cd-builder-footer.disabled .selected-product img {
    opacity: 0;
  }
  .cd-builder-footer .alert {
    display: block;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.2s;
    background: #0cbcff;
    color: #fff;
    padding: 0.8em 1em;
  }
  .cd-builder-footer.disabled.show-alert .alert {
    top: 50%;
  }
}
@media only screen and (min-width: 1024px) and (min-height: 850px) {
  .cd-builder-footer {
    height: 120px;
  }
}
.cd-builder-secondary-nav {
  height: 100%;
}
.cd-builder-secondary-nav .nav-item {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  transition: width 0.2s, opacity 0.2s;
  overflow: hidden;
}
.cd-builder-secondary-nav .prev {
  left: 0;
  color: #5d7c89;
}
.cd-builder-secondary-nav .next {
  z-index: 1;
  right: 0;
  background: #0cbcff;
  transition: all 0.3s;
}
.cd-builder-secondary-nav .next:hover {
  background: #7ad5ff;
  transition: all 0.3s;
}
.disabled .cd-builder-secondary-nav .next {
  background: rgba(153, 153, 153, 1);
  transition: all 0.3s;
}
.disabled .cd-builder-secondary-nav .next:hover {
  background: rgba(153, 153, 153, 0.7);
  transition: all 0.3s;
}
.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 {
  list-style-type: none;
  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: 16px;
  background: url('../img/cd-icon-arrow.svg') no-repeat 0 0;
  pointer-events: none;
}
.cd-builder-secondary-nav .nav-item.prev ul::after {
  left: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background-position: 0 -16px;
}
.cd-builder-secondary-nav .nav-item.next ul::after {
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.cd-builder-secondary-nav .nav-item ul li {
  list-style-type: none;
  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;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.cd-builder-secondary-nav .nav-item ul li.visible {
  transform: translateY(0);
}
.cd-builder-secondary-nav .nav-item ul li.visited {
  transform: translateY(-100%);
}
.cd-builder-secondary-nav a {
  display: block;
}
.cd-builder-secondary-nav .next a {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .cd-builder-secondary-nav {
    box-shadow: none;
    float: right;
    width: 265px;
  }
  .cd-builder-secondary-nav > ul {
    padding-left: 0px;
    padding-bottom: 0px;
    list-style-type: none;
    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;
    float: right;
    margin-left: 11px;
  }
  .cd-builder-secondary-nav .nav-item.prev {
    width: 50px;
    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%;
    transform: translateY(-50%) translateX(-50%) rotate(180deg);
  }
  .cd-builder-secondary-nav .nav-item ul li {
    list-style-type: none;
    text-align: left;
    font-size: 1.4rem;
  }
  .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;
  }
}
/* Mobile */
@media only screen and (max-width: 600px) {
  .cd-step-content {
    padding: 20px 0 20px !important;
  }
  .cd-builder-steps .accessories-list .code {
    display: none !important;
  }
  .radio-option {
    margin-bottom: 5px;
  }
  .accessories-list-title {
    margin-bottom: 5px;
  }
  .accessories-list.options-list, .process-conditions-list {
    padding: 10px 0 !important;
  }
  .process-conditions-box > label {
    width: 30%;
  }
  .process-conditions-box > select {
    width: 70%;
  }
  .summary-list {
    padding: 0 !important;
  }
  .cd-builder-steps .summary-list h2 {
    font-size: 1.6rem !important;
    margin: 0px !important;
  }
  .cd-builder-steps .summary-list > li {
    border-bottom: 1px solid rgb(208, 208, 208);
    padding-bottom: 10px;
  }
  .cd-builder-steps .summary-list > li:first-child {
    border-bottom: 0px solid #000;
  }
}