/*!
Theme Name: Clean
Description: A clean and modern theme
Tags: Left  
Supports: columns, color_swatches
*/
:root {
  --mkl_pc_border-radius: 60px;
  --mkl_pc_thumbnail_size: 70px;
  --mkl_pc_toolbar_width: 450px;
  --mkl_pc_toolbar_width_medium: 250px;
  --mkl_pc_toolbar_width_small: 80px;
  --mkl_pc_icon_border_radius: 12px;
  --mkl_pc_choice_min_height: 100px;
  --mkl_pc_layer_min_height: 60px;
  --mkl_pc_footer_height: 5em;
  --mkl_pc_scrollbar-width: 6px;
  --mkl_pc_color-container-bg: #F2F2F2;
  --mkl_pc_color-viewer-bg: #FFF;
  --mkl_pc_color-light-gray: #efefef;
  --mkl_pc_color-primary: #3FB181;
  --mkl_pc_color-border-color: #e5e5e5;
  --mkl_pc_color-primary_hover: #3c9871;
  --mkl_pc_color-layers_button_text_color: rgba(0, 0, 0, 0.7);
  --mkl_pc_color-choices_button_text_color: rgba(0, 0, 0, 0.7);
  --mkl_pc_color-overlay_bg: #000000;
  --mkl_pc_color-active_layer_button_bg_color: #FFFFFF;
  --mkl_pc_color-active_layer_button_text_color: #000000;
  --mkl_pc_color-active_choice_button_bg_color: #FFFFFF;
  --mkl_pc_color-active_choice_button_text_color: #000000;
}
@media (max-width: 760px) {
  :root {
    --mkl_pc_toolbar_width: var( --mkl_pc_toolbar_width_medium );
    --mkl_pc_footer_height: 4em;
  }
}
@media (max-width: 660px) {
  :root {
    --mkl_pc_toolbar_width: var( --mkl_pc_toolbar_width_small );
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  :root {
    --mkl_pc_border-radius: 10px ;
  }
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes configurator-load {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Woocommerce  */
.configurator_is_opened:not(.configurator_is_inline) {
  overflow: hidden;
}

.is_configurable div.product form.cart {
  border: none;
}
.is_configurable:not(.enable-add-to-cart):not(.configurator_is_inline) div.product form.cart .quantity, .is_configurable:not(.enable-add-to-cart):not(.configurator_is_inline) div.product form.cart .single_add_to_cart_button {
  display: none;
}
@media (max-width: 660px) {
  .is_configurable button.configure-product {
    font-size: 1.4em;
    display: block;
    width: 100%;
  }
}

/* CUSTOMIZER */
.mkl_pc {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100000;
}
.mkl_pc .loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.mkl_pc .loader .header {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFF;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}
.mkl_pc .loader .spinner {
  width: 40px;
  height: 40px;
  margin: 30px auto;
  background-color: #FFF;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
.mkl_pc.loading .loader {
  display: block;
}
.mkl_pc.loading .mkl_pc_container {
  transform: translateY(-30px);
  opacity: 0;
}
.mkl_pc .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.mkl_pc .mkl_pc_container {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mkl_pc_color-container-bg);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s;
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_bg {
  position: absolute;
  left: var(--mkl_pc_toolbar_width);
  top: 0;
  right: 0;
  bottom: var(--mkl_pc_footer_height);
  background-position: 50%;
  background-size: cover;
  border-bottom-left-radius: var(--mkl_pc_border-radius);
  background-color: var(--mkl_pc_color-viewer-bg);
  transition: all 0.3s cubic-bezier(0.02, 0.5, 0.14, 1.01);
  z-index: 3;
}
@media (max-width: 660px) {
  .mkl_pc.showing-choices .mkl_pc_bg {
    --mkl_pc_toolbar_width: var( --mkl_pc_toolbar_width_small );
    transform: translateX(calc(250px - var(--mkl_pc_toolbar_width_small)));
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer {
  position: absolute;
  z-index: 4;
  left: var(--mkl_pc_toolbar_width);
  top: 0;
  right: 0;
  bottom: var(--mkl_pc_footer_height);
  border-bottom-left-radius: var(--mkl_pc_border-radius);
  background-color: var(--mkl_pc_color-viewer-bg);
  transition: all 0.3s cubic-bezier(0.02, 0.5, 0.14, 1.01);
}
.mkl_pc_bg + .mkl_pc .mkl_pc_container .mkl_pc_viewer {
  background-color: transparent;
}
@media (max-width: 660px) {
  .mkl_pc.showing-choices .mkl_pc_viewer {
    --mkl_pc_toolbar_width: var( --mkl_pc_toolbar_width_small );
    transform: translateX(calc(250px - var(--mkl_pc_toolbar_width_small)));
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select {
  position: absolute;
  right: 0;
  top: 1em;
  z-index: 2;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select > a {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: #EEE;
  right: 15px;
  position: relative;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  transition: all 0.2s;
  display: flex;
  flex-direction: row;
  transform-origin: 0 0;
  transform: rotate(90deg) translateY(-2px);
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li a {
  display: block;
  padding: 3px 11px;
  text-align: center;
  text-transform: uppercase;
  font-size: 80%;
  letter-spacing: 2px;
  color: var(--mkl_pc_color-primary);
  border-top: 2px solid transparent;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li a span.angle-image {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li a span.angle-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li.active a {
  border-top-color: inherit;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li.active a::before {
  padding-right: 1em;
  opacity: 1;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select li:last-child a {
  border-bottom: none;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select > a span {
    display: none;
  }
  .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select > a::before {
    margin-right: 0;
  }
  .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select > a::before {
    margin-right: 0;
  }
  .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select:hover > a span, .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select:focus-within > a span, .mkl_pc .mkl_pc_container .mkl_pc_viewer .angles-select > a:focus span {
    display: inline-block;
    margin-left: 1em;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  user-select: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers img {
  transition: 0.2s all;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-height: 100%;
  -webkit-user-drag: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers img:not(.active), .mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers img.loading {
  opacity: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers .custom-html {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers .custom-html:not(.active) {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers .images-loading {
  display: none;
  width: 30px;
  height: 30px;
  background: var(--mkl_pc_color-primary_hover);
  position: absolute;
  left: 2em;
  bottom: 2em;
  opacity: 0;
  transition: all 0.2s;
  border-radius: 50%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
.mkl_pc .mkl_pc_container .mkl_pc_viewer .mkl_pc_layers img.loading ~ .images-loading {
  opacity: 1;
  display: block;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar {
  position: absolute;
  z-index: 2;
  width: var(--mkl_pc_toolbar_width);
  background: var(--mkl_pc_color-container-bg);
  left: 0;
  top: 0;
  bottom: calc(var(--mkl_pc_footer_height) + var(--mkl_pc_border-radius));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header {
  border-bottom: 1px solid var(--mkl_pc_color-border-color);
  padding: 1.5em;
  padding-left: 55px;
  position: relative;
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar > header {
    padding: 0.5em;
    height: 50px;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header h3 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1;
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar > header h3 {
    display: none;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel {
  position: absolute;
  background: transparent;
  border: none;
  box-shadow: none;
  width: 20px;
  height: 20px;
  padding: 0;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel span {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel::before, .mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel::after {
  content: " ";
  width: 20px;
  height: 2px;
  background: var(--mkl_pc_color-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: 50%;
  transform: rotate(45deg);
  transition: all 0.2s;
  border-radius: 1px;
  display: block;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel::after {
  transform: rotate(-45deg);
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar > header > .cancel {
    left: 28px;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices {
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.02, 0.5, 0.14, 1.01);
  background: var(--mkl_pc_color-container-bg);
  transform: translateX(100%);
  overflow: auto;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices::-webkit-scrollbar {
  width: var(--mkl_pc_scrollbar-width);
  height: 6px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices::-webkit-scrollbar-thumb {
  background: var(--mkl_pc_color-primary);
  border-radius: 6px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices::-webkit-scrollbar-button {
  width: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices::-webkit-scrollbar-thumb:hover {
  background: var(--mkl_pc_color-primary_hover);
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices {
    left: 0;
    transform: translateX(-100%);
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button {
  position: relative;
  height: 100%;
  background: transparent;
  transition: 0.2s all;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button span.choice-price {
  display: inline-block;
  padding: 0 6px;
  border-radius: 6px;
  color: #777;
  margin-left: 5px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button i.mkl-pc-thumbnail {
  height: var(--mkl_pc_thumbnail_size);
  width: var(--mkl_pc_thumbnail_size);
  border: 3px solid transparent;
  position: relative;
  display: inline-block;
  border-radius: var(--mkl_pc_icon_border_radius);
  background: transparent;
  box-shadow: none;
  transition: all 0.2s;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button i.mkl-pc-thumbnail span {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: var(--mkl_pc_icon_border_radius);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.1);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button i.mkl-pc-thumbnail img {
  position: absolute;
  max-width: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li > button span.description {
  display: block;
  font-weight: 300;
  font-size: 0.9em;
  margin-top: 0.5em;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul {
  display: flex;
  flex-wrap: wrap;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group) {
  flex: auto;
  width: 50%;
  flex-grow: 0;
  min-height: var(--mkl_pc_choice_min_height);
  box-sizing: border-box;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group):nth-child(odd) {
  border-right: 1px solid var(--mkl_pc_color-border-color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).form-item {
  width: 100%;
  border: none;
  padding: 1em;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).form-item label {
  display: block;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).has-text-field .text-field {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).has-text-field.active {
  height: auto;
  min-height: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).has-text-field.active button {
  height: auto;
  min-height: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li:not(.is-group).has-text-field.active .text-field {
  padding: 0 10px 10px;
  display: block;
  border-bottom: 1px solid var(--mkl_pc_color-border-color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group {
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group:nth-child(odd) ~ li:not(.is-group) {
  border-right: 1px solid var(--mkl_pc_color-border-color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 14px;
  font-size: 0.8em;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label .choice-text--container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label .text.choice-name {
  text-transform: uppercase;
  text-align: center;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label span.choice-price {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label i.mkl-pc-thumbnail {
  height: 38px;
  width: 58px;
  border: none;
  display: block;
  position: relative;
  box-shadow: none;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label i.mkl-pc-thumbnail {
    height: 30px;
    width: 30px;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label i.mkl-pc-thumbnail span {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group .choice-group-label i.mkl-pc-thumbnail img {
  position: absolute;
  max-width: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label {
  height: auto;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label::after, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label::before {
  content: "";
  width: 15px;
  display: block;
  height: 2px;
  background: rgba(54, 56, 58, 0.3333333333);
  position: absolute;
  right: 30px;
  transition: 0.2s all;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label:hover::after, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label:hover::before, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label:focus::after, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group button.choice-group-label:focus::before {
  background: var(--mkl_pc_color-primary);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group:not(.show-group-content) button.choice-group-label::before {
  right: 30px;
  transform: rotate(90deg);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.choices-list > ul li.is-group:not(.show-group-content) button.choice-group-label ~ ul.choices-list--children {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.active {
  transform: translateX(0);
  visibility: visible;
  box-shadow: -12px 0 40px -10px rgba(0, 0, 0, 0.15);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.active li.active button {
  background-color: var(--mkl_pc_color-active_choice_button_bg_color);
  color: var(--mkl_pc_color-active_choice_button_text_color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title {
  border: none;
  border-bottom: 1px solid var(--mkl_pc_color-border-color);
  position: relative;
  z-index: 2;
  position: sticky;
  top: 0;
  background: var(--mkl_pc_color-container-bg);
  text-transform: uppercase;
  padding: 20px;
  padding-left: 50px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span {
  display: block;
  line-height: 1.3;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border-bottom: none;
  transform: translate(15px, -50%);
  transition: 0.2s all;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close span {
  border-bottom: none;
  box-shadow: none;
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close:focus {
  outline: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close::before, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close::after {
  content: " ";
  width: 15px;
  height: 2px;
  background: var(--mkl_pc_color-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: 0;
  transform: translateX(8px) rotate(-45deg);
  transition: all 0.2s;
  border-radius: 1px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close::after {
  transform: translateX(8px) rotate(45deg);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close:focus, .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span a.close:hover {
  transform: translate(20px, -50%);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices li.layer-choices-title > span.description {
  font-size: 80%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-1 > li.choices-list > ul li.choice:not(.is-group) {
  width: 100%;
  border-right: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-3 > li.choices-list > ul li.choice:not(.is-group) {
  width: 33.3333333333%;
  border-right: 1px solid var(--mkl_pc_color-border-color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-3 > li.choices-list > ul li.choice:not(.is-group):nth-child(3n+0) {
  border-right: none;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-3 > li.choices-list > ul li.choice:not(.is-group) {
    width: 100%;
    border-right: none;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-4 > li.choices-list > ul li.choice:not(.is-group) {
  width: 25%;
  border-right: 1px solid var(--mkl_pc_color-border-color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-4 > li.choices-list > ul li.choice:not(.is-group):nth-child(4n+0) {
  border-right: none;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-4 > li.choices-list > ul li.choice:not(.is-group) {
    width: 50%;
  }
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.columns-4 > li.choices-list > ul li.choice:not(.is-group):nth-child(2n+0) {
    border-right: none;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 2;
  position: relative;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  border-bottom: 1px solid var(--mkl_pc_color-border-color);
  border-radius: 0;
  background-color: transparent;
  position: relative;
  line-height: 1.3;
  color: var(--mkl_pc_color-layers_button_text_color);
  font-weight: normal;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button:hover, .mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button:focus, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button:hover, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button:focus {
  color: var(--mkl_pc_color-primary_hover);
  background-color: var(--mkl_pc_color-active_layer_button_bg_color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button span.text, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button span.text {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button span.description, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button span.description {
  display: block;
  font-weight: 300;
  font-size: 0.9em;
  margin-top: 0.5em;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button span.description, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button span.description {
    display: none;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button span.selected-choice, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button span.selected-choice {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  opacity: 0.5;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li button, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li button {
    padding: 0.5em;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li span.out-of-stock, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li span.out-of-stock {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  padding: 0.5em;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li.active > button, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.active > button {
  background: var(--mkl_pc_color-active_choice_button_bg_color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li ul, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li ul.active li, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li ul.active li {
  -webkit-animation: slide-in-left 1s ease-out;
  animation: slide-in-left 1s ease-out;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li ul li.active button, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li ul li.active button {
  background: rgb(234.25, 234.25, 234.25);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar > ul li ul.choices-list--children, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li ul.choices-list--children {
  border-top: 1px solid var(--mkl_pc_color-border-color);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices {
  position: relative;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices::-webkit-scrollbar {
  width: var(--mkl_pc_scrollbar-width);
  height: 6px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices::-webkit-scrollbar-thumb {
  background: var(--mkl_pc_color-primary);
  border-radius: 6px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices::-webkit-scrollbar-button {
  width: var(--mkl_pc_scrollbar-width);
  height: var(--mkl_pc_scrollbar-width);
  background: var(--mkl_pc_color-primary);
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices::-webkit-scrollbar-thumb:hover {
  background: var(--mkl_pc_color-primary_hover);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers {
  transition: all 0.3s cubic-bezier(0.02, 0.5, 0.14, 1.01);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers li {
  min-height: var(--mkl_pc_layer_min_height);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers li.layers-list-item.hide_in_configurator {
  display: none !important;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers button {
  height: 100%;
  text-align: center;
}
@media (min-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers button {
    text-align: left;
    padding-left: 60px;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i {
  width: 50px;
  max-width: 100%;
  display: block;
  text-align: center;
}
@media (min-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
  }
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i {
    margin: 0 auto;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i img {
  max-width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i.selected-choice-image img ~ img {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i.selected-choice-image:not(:empty) + i {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers i.close {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers button:hover i {
  opacity: 1;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers li.active > button {
  background-color: var(--mkl_pc_color-active_layer_button_bg_color);
  color: var(--mkl_pc_color-active_layer_button_text_color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers li.active > button i {
  opacity: 1;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers.opened {
  transform: translateX(-100%);
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices .layers.opened {
    transform: translateX(100%);
  }
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100% - 50px);
    box-shadow: 0 5px 11px rgba(0, 0, 0, 0.2);
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step {
  height: 100%;
  overflow-x: hidden;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step > .layer-item {
  display: block;
  padding: 10px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step > .layer-item .layer-name {
  display: block;
  font-size: 1.3em;
  font-weight: bold;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step > .layer-item .selected-choice {
  display: block;
  font-size: 0.85em;
  text-transform: uppercase;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step > .layer_choices {
  position: relative;
  left: auto;
  background: transparent;
  box-shadow: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step > .layer_choices .layer-choices-title {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layers-list-item.type-step:not(.active) {
  display: none;
}
@media (max-width: 660px) {
  .mkl_pc.showing-choices {
    --mkl_pc_toolbar_width: 250px;
  }
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=text],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=number],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=email],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=tel],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=url],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=password],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar input[type=search],
.mkl_pc .mkl_pc_container .mkl_pc_toolbar textarea,
.mkl_pc .mkl_pc_container .mkl_pc_toolbar .input-text {
  background: #FFF;
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar select {
  padding: 0.2em;
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary {
  -webkit-font-smoothing: subpixel-antialiased;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item_group h5 {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  color: var(--mkl_pc_color-ll2);
  display: inline-block;
  -webkit-font-smoothing: subpixel-antialiased;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary > .mkl_pc_summary_item_group.group > h5 {
  color: var(--mkl_pc_color-ll1);
  text-decoration: underline;
  font-size: larger;
  display: block;
  padding: 10px 0 3px 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item_group:not(.group) {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item_group:not(.group) h5 {
  margin-right: 5px;
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item_group:not(.group) h5::after {
  content: ":";
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item_group.group + .group {
  border-top: 1px solid rgba(255, 255, 255, 0.1058823529);
  margin-top: 10px;
  padding-top: 10px;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item {
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
  flex: auto;
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item.has-form-field .summary-item--name {
  font-weight: 500;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item.has-form-field .summary-item--name .form-field--value {
  font-weight: 300;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary .mkl_pc_summary_item.has-form-field .summary-item--name .form-field--value::before {
  content: ":";
  display: inline-block;
  margin-right: 5px;
}
.mkl_pc .mkl_pc_container .mkl_pc_summary {
  padding: 15px;
}
.mkl_pc .mkl_pc_container footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--mkl_pc_footer_height);
  padding: 1em;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.mkl_pc .mkl_pc_container footer .footer__section-left {
  display: none;
}
.mkl_pc .mkl_pc_container footer .footer__section-left h3 {
  display: none;
}
.mkl_pc .mkl_pc_container footer .footer__section-center {
  display: flex;
  align-items: center;
}
.mkl_pc .mkl_pc_container footer .single_add_to_cart_button {
  visibility: visible;
}
.mkl_pc .mkl_pc_container footer .form,
.mkl_pc .mkl_pc_container footer form,
.mkl_pc .mkl_pc_container footer .quantity {
  display: inline-flex;
  padding: 0;
}
.mkl_pc .mkl_pc_container footer .form input.qty,
.mkl_pc .mkl_pc_container footer form input.qty,
.mkl_pc .mkl_pc_container footer .quantity input.qty {
  background: #fff;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container footer .form input.qty,
  .mkl_pc .mkl_pc_container footer form input.qty,
  .mkl_pc .mkl_pc_container footer .quantity input.qty {
    border: 2px solid #36383a;
  }
}
.mkl_pc .mkl_pc_container footer form.cart {
  margin: 0;
}
.mkl_pc .mkl_pc_container footer form.save-form {
  display: block;
}
.mkl_pc .mkl_pc_container footer .sent-email form.save-form,
.mkl_pc .mkl_pc_container footer .sending-email form.save-form {
  display: none;
}
.mkl_pc .mkl_pc_container footer .extra-cost {
  visibility: hidden;
  position: fixed;
  margin-bottom: 0;
}
.mkl_pc .mkl_pc_container footer .extra-cost.show {
  visibility: visible;
  position: relative;
  padding-right: 10px;
  display: inline-block !important;
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container footer .extra-cost.show {
    display: none !important;
  }
}
.mkl_pc .mkl_pc_container footer span.pc-total-price {
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5em;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container footer span.pc-total-price {
    position: absolute;
    right: 0;
    top: -30px;
  }
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form {
  display: inline-flex;
  align-items: stretch;
  padding-right: 0.5em;
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form form.cart {
  margin: 0;
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form button.configurator-add-to-cart, .mkl_pc .mkl_pc_container footer .pc_configurator_form button.add-to-quote {
  text-transform: uppercase;
  background: var(--mkl_pc_color-primary);
  color: #FFF;
  border-radius: 14px;
  border: 2px solid var(--mkl_pc_color-primary);
  font-weight: 300;
  letter-spacing: 1.2px;
  font-size: 12px;
  padding: 4px 16px;
  line-height: 12px;
  position: relative;
  z-index: 2;
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form button.add-to-quote {
  margin-left: 4px;
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form .quantity {
  border: 2px solid var(--mkl_pc_color-primary);
  border-radius: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-right: 0;
  margin-right: -12px;
  box-sizing: border-box;
  position: relative;
  height: auto;
  width: auto;
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container footer .pc_configurator_form .quantity [class*=minus], .mkl_pc .mkl_pc_container footer .pc_configurator_form .quantity [class*=plus] {
    display: none !important;
  }
}
.mkl_pc .mkl_pc_container footer .pc_configurator_form .quantity input.qty {
  border: none;
  background: transparent;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  height: 40px;
  width: 60px;
  padding-left: 15px;
  padding-right: 12px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--mkl_pc_color-primary);
  box-sizing: content-box;
}
.mkl_pc .mkl_pc_container footer h3.product-name {
  line-height: 1;
  margin: 0;
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container footer h3.product-name {
    display: none;
  }
}
.mkl_pc .mkl_pc_container footer button.configurator-add-to-cart svg {
  display: none;
}
.mkl_pc .mkl_pc_container footer button.reset-configuration {
  background: transparent;
  color: inherit;
  appearance: none;
  box-shadow: none;
  border: none;
  color: var(--mkl_pc_color-primary);
  font-weight: normal;
  margin: 0;
  padding: 4px 9px;
  letter-spacing: normal;
  display: inline-block;
}
.mkl_pc .mkl_pc_container footer button.reset-configuration span {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.mkl_pc .mkl_pc_container footer button.reset-configuration svg {
  height: 23px;
  fill: currentColor;
  width: 23px;
  display: block;
  margin: 0 auto;
}
.mkl_pc .mkl_pc_container footer button.reset-configuration:hover, .mkl_pc .mkl_pc_container footer button.reset-configuration:focus, .mkl_pc .mkl_pc_container footer button.reset-configuration:active {
  color: var(--mkl_pc_color-primary_hover);
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container footer button.reset-configuration {
    display: none;
  }
}
@media (max-width: 760px) {
  .mkl_pc .mkl_pc_container footer {
    text-align: center;
  }
}
@media (max-width: 660px) {
  .mkl_pc .mkl_pc_container footer {
    padding: 0;
  }
  .mkl_pc .mkl_pc_container footer .form {
    display: flex;
    align-items: center;
  }
  .mkl_pc .mkl_pc_container footer .form span.extra-cost-label {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    text-align: left;
  }
  .mkl_pc .mkl_pc_container footer .form span.pc-price {
    text-align: left;
    font-size: 1.2em;
  }
  .mkl_pc .mkl_pc_container footer .form .extra-cost.show {
    padding: 0;
    text-align: left;
    line-height: 1;
  }
}
.mkl_pc.floating .mkl_pc_toolbar {
  top: 30px;
  left: 30px;
  bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.1);
}
.mkl_pc.floating .mkl_pc_viewer {
  left: 0;
  bottom: 0;
}
.mkl_pc.floating .mkl_pc_viewer .mkl_pc_layers {
  left: var(--mkl_pc_toolbar_width);
}
.mkl_pc.floating footer {
  left: auto;
  right: 0;
  width: auto;
  bottom: 30px;
  transition: 0.2s all;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.1);
}
.mkl_pc.right .mkl_pc_toolbar {
  left: auto;
  right: 0;
}
.mkl_pc.right .mkl_pc_toolbar > header > .cancel {
  left: 30px;
  right: auto;
}
.mkl_pc.right .mkl_pc_viewer,
.mkl_pc.right .mkl_pc_bg {
  left: 0;
  right: var(--mkl_pc_toolbar_width);
}
.mkl_pc.opened {
  visibility: visible;
}
.mkl_pc.opened .overlay {
  visibility: visible;
  opacity: 1;
}
.mkl_pc.opened .mkl_pc_container {
  visibility: visible;
  opacity: 1;
  transform: none;
}
@media (min-width: 660px) {
  body.admin-bar:not(.configurator_is_inline) .mkl_pc {
    top: 32px;
  }
}

.mkl_pc:not(.no-tooltip) .mkl_pc_container .mkl_pc_toolbar section.choices .layer_choices li.choice > button span.description {
  display: none;
}

body.configurator_is_inline .mkl_pc {
  position: relative;
  height: 100vh;
  z-index: 1;
}
body.configurator_is_inline .mkl_pc .overlay {
  display: none;
}
body.configurator_is_inline .mkl_pc .mkl_pc_container {
  box-shadow: none;
}
body.configurator_is_inline .mkl_pc .mkl_pc_container .cancel {
  display: none;
}

/* YITH Added to cart popup compat */
.mkl_pc.opened.adding-to-cart .mkl_pc_container {
  opacity: 0.4;
}

.mkl_pc.opened.adding-to-cart::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.save-your-design-modal-container a,
.share-your-design-modal-container a {
  color: var(--mkl_pc_color-primary);
}
.save-your-design-modal-container a.mkl-footer--action-button,
.share-your-design-modal-container a.mkl-footer--action-button {
  display: block;
  text-decoration: none;
}
.save-your-design-modal-container a:hover, .save-your-design-modal-container a:focus, .save-your-design-modal-container a:active,
.share-your-design-modal-container a:hover,
.share-your-design-modal-container a:focus,
.share-your-design-modal-container a:active {
  color: var(--mkl_pc_color-primary_hover);
}
.save-your-design-modal-container a.mkl-footer--action-button span,
.share-your-design-modal-container a.mkl-footer--action-button span {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.save-your-design-modal-container a.mkl-footer--action-button svg,
.share-your-design-modal-container a.mkl-footer--action-button svg {
  transform: none;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.mkl_pc .icon-only {
  width: 44px;
}
.mkl_pc .icon-only span {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

a.save-your-design--pdf {
  color: var(--mkl_pc_color-primary);
  text-decoration: none;
  display: block;
}
a.save-your-design--pdf:hover, a.save-your-design--pdf:focus, a.save-your-design--pdf:active {
  color: var(--mkl_pc_color-primary_hover);
}
a.save-your-design--pdf span {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
a.save-your-design--pdf svg {
  transform: scale(0.8);
  margin-right: auto;
  margin-left: auto;
  display: block;
}

/* Color mode */
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list {
  padding: 1em;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul {
  display: flex;
  flex-wrap: wrap;
  --mkl_pc_icon_border_radius: 50%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li.is-group {
  width: 100%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) {
  padding: 5px;
  width: auto;
  --mkl_pc_choice_min_height: 0;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group):nth-child(odd) {
  border: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button {
  padding: 0;
  border: none;
  box-shadow: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button .text.choice-name {
  display: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button:hover, .mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button:focus {
  outline: none;
  background: transparent;
  box-shadow: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button:hover i, .mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) button:focus i {
  box-shadow: 0 3px 20px 8px rgba(0, 0, 0, 0.1);
  outline-color: #FFF;
  outline-offset: 2px;
  outline-style: solid;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) i.mkl-pc-thumbnail {
  width: var(--mkl_pc_color_thumnail_size, 44px);
  height: var(--mkl_pc_color_thumnail_size, 44px);
  position: relative;
  top: auto;
  transform: none;
  right: auto;
  overflow: visible;
  border: none;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) i.mkl-pc-thumbnail span {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
  overflow: visible;
  border-radius: 50%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) i.mkl-pc-thumbnail span img {
  border-radius: 50%;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).active button {
  background: transparent;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).active button i.mkl-pc-thumbnail {
  border-color: var(--mkl_pc_color-active_choice_button_bg_color);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).active button i.mkl-pc-thumbnail span img {
  box-shadow: 0 6px 15px -4px rgba(0, 0, 0, 0.568627451);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).active button i.mkl-pc-thumbnail span::before {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  background: #FFF;
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1;
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2901960784);
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).active button i.mkl-pc-thumbnail span::after {
  content: " ";
  /* color: green; */
  position: absolute;
  top: 0;
  right: -1px;
  display: block;
  width: 10px;
  height: 4px;
  border-bottom: 2px solid #179608;
  border-left: 2px solid #179608;
  transform: rotate(-45deg);
  z-index: 2;
  box-sizing: content-box;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).out-of-stock i.mkl-pc-thumbnail svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).out-of-stock i.mkl-pc-thumbnail svg line.cls-1 {
  stroke: #FFF;
  stroke-width: 4px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).out-of-stock button:focus i.mkl-pc-thumbnail,
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group).out-of-stock button:hover i.mkl-pc-thumbnail {
  outline-style: dashed;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors.layer_choices.swatches-size--small {
  --mkl_pc_color_thumnail_size: 35px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors.layer_choices.swatches-size--medium {
  --mkl_pc_color_thumnail_size: 50px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors.layer_choices.swatches-size--large {
  --mkl_pc_color_thumnail_size: 74px;
}

.mkl_pc:not(.no-tooltip) .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li:not(.is-group) span.text,
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li span.description,
.mkl_pc:not(.no-tooltip) .mkl_pc_container .mkl_pc_toolbar ul.display-mode-colors li.choices-list ul li span.out-of-stock {
  display: none;
}

.tippy-content span.text, .tippy-content span.description, .tippy-content span.choice-price, .tippy-content span.out-of-stock {
  display: block;
  text-transform: uppercase;
  font-size: 80%;
}

.tippy-content span.choice-price {
  font-size: 0.8em;
  opacity: 0.6;
}

/* Dropdown mode */
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown {
  border-bottom: 1px solid #e5e5e5;
  padding: 13px;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown > button {
  border: 1px solid #d1d1d1;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown > button::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: translateY(calc(-50% - 3px)) rotate(-45deg);
  transform-origin: 50% 50%;
  transition: 0.2s all;
}
@media (min-width: 660px) {
  body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown.has-thumbnail > button {
    padding-left: 60px;
  }
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown.active > button {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  border-color: var(--mkl_pc_color-primary);
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown.active > button ::after {
  transform: translateY(calc(-50% + 3px)) rotate(135deg);
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown {
  position: absolute;
  top: calc(100% - 13px);
  height: auto;
  left: 13px;
  bottom: auto;
  right: auto;
  width: calc(100% - 26px);
  z-index: 3;
  max-height: 250px;
  transform: none;
  border: 1px solid #DEDEDE;
  box-shadow: 0 30px 30px -5px rgba(0, 0, 0, 0.15), 0 5px 5px rgba(0, 0, 0, 0.05);
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown .layer-choices-title {
  display: none;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown:not(.active) {
  display: none;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown.active li, body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown li {
  animation-delay: 0s;
  animation-duration: 0s;
  border-right: none;
  width: 100%;
  min-height: 0;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown li.is-group .choice-group-label {
  padding: 8px;
  opacity: 0.4;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown .choice-text--container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button {
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  --mkl_pc_thumbnail_size: 35px;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button i {
  left: auto;
  top: auto;
  transform: translateY(0);
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button span.text {
  flex: 1;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button span.choice-price {
  float: right;
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button:hover, body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown button:focus {
  background-color: var(--mkl_pc_color-active_choice_button_bg_color);
  color: var(--mkl_pc_color-primary);
}
body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown ul.display-mode-dropdown li.active button {
  background-color: var(--mkl_pc_color-active_choice_button_bg_color);
  color: var(--mkl_pc_color-active_choice_button_text_color);
}

body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown > button::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: translateY(calc(-50% - 3px)) rotate(-45deg);
  transform-origin: 50% 50%;
  transition: 0.2s all;
}

body:not(.is-mobile) .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.display-mode-dropdown.active > button::after {
  transform: translateY(calc(-50% + 3px)) rotate(135deg);
}

.mkl_pc .mkl_pc_container .mkl_pc_toolbar .layer_choices.display-mode-dropdown li.choices-list > ul li.is-group .choice-group-label {
  padding: 8px;
  opacity: 0.4;
}

.mkl-pc-syd-modal {
  left: 0;
}
.mkl-pc-syd-modal::after {
  left: 24px;
}
@media (max-width: 760px) {
  .mkl-pc-syd-modal {
    left: calc(-1 * var(--container-offset, 0));
  }
  .mkl-pc-syd-modal::after {
    left: calc(24px + var(--container-offset, 0));
  }
}

nav.mkl-pc--steps {
  display: inline-flex;
  flex-direction: row;
}

.mkl_pc.has-steps:not(.last-step) .mkl_pc_container .form .pc_configurator_form {
  display: none;
}

.mkl_pc.has-steps .mkl_pc_container .mkl_pc_toolbar section.choices .layers.opened {
  transform: none;
}

.mkl_pc.has-steps.last-step nav.mkl-pc--steps .step-next {
  display: none;
}

.mkl_pc.has-steps:not(.right) footer .footer__section-left {
  order: 3;
}
.mkl_pc.has-steps:not(.right) footer .footer__section-right {
  order: 1;
}
.mkl_pc.has-steps:not(.right) footer .footer__section-center {
  order: 2;
}

/* Code For Loading Screen */
.mkl-configurator-inline.is-shortcode.configure-product:empty {
  height: 60vh;
}

.mkl-configurator-inline.is-shortcode.configure-product:empty::after {
  content: attr(data-loading);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-animation: configurator-load 1s infinite ease-in-out;
  animation: configurator-load 1s infinite ease-in-out;
}

/* Divi fix */
.et_divi_theme:not(.configurator_is_inline) .mkl_pc {
  z-index: 100000;
}
/*# sourceMappingURL=../../../maps/inc/themes/clean/style.css.map */
