.mkl-pc-choice-qty--container {
  display: none;
  width: auto;
  max-width: 120px;
  border: 1px solid #CCC;
  background: #FFF;
  justify-content: space-between;
  margin: 13px;
  border-radius: 4px;
}
.mkl-pc-choice-qty--container > * {
  flex-grow: 1;
}
.mkl-pc-choice-qty--container:focus-within {
  border-color: var(--mkl_pc_color-primary, #777);
}
.mkl-pc-choice-qty--container input.mkl-pc-choice-qty,
.mkl-pc-choice-qty--container input.mkl-pc-choice-qty:focus {
  border: none;
  color: #000;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  width: auto;
  max-width: 2ch;
  text-align: center;
  -moz-appearance: textfield;
}
.mkl-pc-choice-qty--container input.mkl-pc-choice-qty::-webkit-outer-spin-button,
.mkl-pc-choice-qty--container input.mkl-pc-choice-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.active > .mkl-pc-choice-qty--container,
.mkl_pc .mkl_pc_container .mkl_pc_toolbar ul.layer_choices li.active > .text-field .mkl-pc-choice-qty--container,
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul li.active > .mkl_quantity .mkl-pc-choice-qty--container {
  display: flex;
}

.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul > li .mkl-pc-choice-qty--btn {
  padding: 4px;
  margin: 0;
  display: block;
  border: none;
  text-align: center;
  font-size: 15px;
  font-family: sans-serif;
  color: #000;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul > li .mkl-pc-choice-qty--btn svg {
  vertical-align: middle;
  width: 15px;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul > li .mkl-pc-choice-qty--btn svg use {
  fill: #000;
}
.mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul > li .mkl-pc-choice-qty--btn:hover svg use, .mkl_pc .mkl_pc_container .mkl_pc_toolbar section.choices > ul > li .mkl-pc-choice-qty--btn:focus svg use {
  fill: var(--mkl_pc_color-primary);
}

.footer__section-center {
  display: inline-flex;
  align-items: center;
}

.mkl-footer--action-button {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  line-height: 1.2;
  text-transform: none;
  font-size: 12px;
  font-weight: 400;
  background: transparent;
  appearance: none;
  box-shadow: none;
  border: none;
  color: inherit;
  text-decoration: none;
}
.mkl-footer--action-button svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 720px) {
  .mkl-footer--action-button svg {
    margin-right: 3;
  }
}
.mkl-footer--action-button span {
  vertical-align: middle;
}
@media (max-width: 720px) {
  .mkl-footer--action-button span {
    display: none;
  }
}
@media (max-width: 720px) {
  .mkl-footer--action-button {
    display: block;
    height: 100%;
    width: 60px;
  }
}

.adding-to-cart--modal {
  display: none;
}

body.show-add-to-cart-modal .adding-to-cart--modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.9);
}

body.show-add-to-cart-modal.configurator_is_inline .adding-to-cart--modal {
  position: fixed;
}

.adding-to-cart--modal .has-box {
  display: block;
  padding: 50px;
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.0588235294);
}
.adding-to-cart--modal .has-box .header {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 30px;
}
.adding-to-cart--modal .messages:not(:empty) {
  padding-bottom: 28px;
}

.adding-to-cart--adding-cta {
  text-align: center;
}
.adding-to-cart--adding-cta .or {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
.adding-to-cart--adding-cta button.button,
.adding-to-cart--adding-cta a.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0.818em 1.2em;
  font-weight: 700;
  border-radius: 6px;
  left: auto;
  color: #ffffff;
  background-color: #2a2a2a;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}

@keyframes loading-spinner {
  0% {
    width: 0;
    margin-left: 0;
  }
  50% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 0;
    margin-left: 100%;
  }
}
@keyframes anim-circle {
  0% {
    stroke-dashoffset: -170;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes anim-tick {
  0% {
    stroke-dashoffset: 52;
  }
  25% {
    stroke-dashoffset: 52;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.adding-to-cart--modal .spinner {
  height: 4px;
  background: red;
  width: 0;
  margin-top: 10px;
  transition: 0.2s all;
  animation: loading-spinner;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.adding-to-cart--modal svg {
  max-width: 70px;
}
.adding-to-cart--modal svg * {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  fill: none;
  stroke: #63c800;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.adding-to-cart--modal svg circle {
  stroke-dasharray: 170;
  animation: anim-circle 0.5s;
  animation-timeline: auto;
  animation-direction: normal;
}
.adding-to-cart--modal svg polyline {
  stroke-dasharray: 52;
  animation: anim-tick 0.75s;
}
/*# sourceMappingURL=../../maps/assets/css/configurator-common.css.map */
