#debevpcgroup {
  display: none;
}

/*START MODAL*/
html.modal-active,
body.modal-active {
  overflow: hidden;
}

#configurator {
  /* font-family: 'Montserrat'; */
  font-weight: normal;
  font-style: normal;
  color: #303030;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.modal-configurator {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 99999;
}

.modal-configurator #state .state {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

#modal-configurator-start.modal-configurator #state .state-loading {
  opacity: 0;
  max-height: 2000px;
}

#modal-configurator-start.modal-configurator.unfolding #state .state-loading {
  opacity: 1;
  max-height: 2000px;
  transition: opacity 0.5s ease 0s;
}

#modal-configurator-start.modal-configurator #state.complete .state-loading,
#modal-configurator-start.modal-configurator.unfolding
  #state.complete
  .state-loading {
  opacity: 0;
  max-height: 0;
  transition:
    opacity 0.3s ease 0.7s,
    max-height 0s ease 1s;
}

.modal-configurator #state .state-loaded {
  max-height: 0;
  opacity: 0;
}

.modal-configurator #state.complete .state-loaded {
  max-height: 2000px;
  opacity: 1;
  transition:
    max-height 0s ease 1s,
    opacity 0.5s ease 1s;
}

.modal-configurator.unfolding {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-configurator.unfolding .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-configurator.unfolding.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-configurator.unfolding.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-configurator .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  vertical-align: middle;
}

.modal-configurator .modal-background .modal {
  background: #ffffff;
  padding: 2em;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  z-index: 99999;
  width: 80%;
  min-width: 300px;
  max-width: 800px;
  top: 0;
  max-height: calc(90vh);
  overflow: auto;
}

.modal-configurator .info {
  font-size: 40px;
  line-height: 1;
  color: #e65100;
}

.modal-configurator h2 {
  font-family: 'Quicksand';
  font-weight: 600;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.2;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
}

.modal-configurator p {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  padding: 0;
  margin-bottom: 1em;
}

.modal-configurator .button {
  font-family: 'Quicksand';
  font-weight: 600;
  font-style: normal;
  font-size: 1.4em;
  color: #ffffff;
  background: #e65100;
  text-transform: uppercase;
  padding: 0.3em;
  line-height: 1.5;
  transition: background 0.3s ease;
}

.modal-configurator .modal-background .modal .button:hover,
.modal-configurator .modal-background .modal .button:focus {
  cursor: pointer;
  background: #2f9057;
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

/*LOADING SPINNER*/
#modal-configurator-start.modal-configurator #state .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  opacity: 1;
}

#modal-configurator-complete .lds-ring {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}

.modal-configurator .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #e65100;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #e65100 transparent transparent transparent;
}

.modal-configurator .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.modal-configurator .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.modal-configurator .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#modal-configurator-start.modal-configurator #state.precomplete .lds-ring {
  opacity: 0;
  transition: opacity 0.2s ease 0s;
}

/*END LOADING SPINNER*/
#loadingwrapper {
  display: block;
  position: relative;
  width: 350px;
  max-width: 100%;
  margin: auto;
}

#loadingwrapper .loader {
  position: absolute;
  top: -95px;
  left: calc(50% - 40px);
  border: 5px solid #2f9057;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  transform: scale(0);
  opacity: 0;
}

#modal-configurator-start.modal-configurator
  #state.precomplete
  #loadingwrapper
  .loader {
  transform: scale(1);
  opacity: 1;
  transition: all 0.1s ease 0.1s;
}

#modal-configurator-start.modal-configurator
  #state
  #loadingwrapper
  .loader:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f00c';
  font-size: 2em;
  color: #2f9057;
  transform: rotate(180deg);
  opacity: 0;
}

#modal-configurator-start.modal-configurator
  #state.precomplete
  #loadingwrapper
  .loader:before {
  animation: overspin 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes overspin {
  0% {
    transform: rotate(180deg);
    opacity: 0;
  }

  100% {
    transform: rotate(0);
    opacity: 1;
  }
}

#loadingwrapper .loading-bar {
  display: inline-block;
  width: 100%;
  height: 30px;
  background: #dfe6e9;
  border-radius: 5px;
  overflow: hidden;
}

#modal-configurator-start.modal-configurator
  #loadingwrapper
  .loading-bar
  .progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #e65100;
  border-radius: 5px;
  border: 0 solid #e65100;
  transform: translateX(-100%);
}

#modal-configurator-start.modal-configurator.unfolding
  #loadingwrapper
  .loading-bar
  .progress-bar {
  transform: translateX(-99%);
  -webkit-animation: progress_first 100s 1.3s ease-in forwards;
  animation: progress_first 100s 1.3s ease-in forwards;
}

@-webkit-keyframes progress_first {
  0% {
    transform: translateX(-99%);
  }

  1% {
    transform: translateX(-89%);
  }

  2% {
    transform: translateX(-89%);
  }

  3% {
    transform: translateX(-78%);
  }

  4% {
    transform: translateX(-78%);
  }

  8% {
    transform: translateX(-66%);
  }

  9% {
    transform: translateX(-66%);
  }

  14% {
    transform: translateX(-52%);
  }

  15% {
    transform: translateX(-52%);
  }

  20% {
    transform: translateX(-36%);
  }

  21% {
    transform: translateX(-36%);
  }

  25% {
    transform: translateX(-28%);
  }

  30% {
    transform: translateX(-21%);
  }

  40% {
    transform: translateX(-18%);
  }

  50% {
    transform: translateX(-15%);
  }

  60% {
    transform: translateX(-12%);
  }

  70% {
    transform: translateX(-9%);
  }

  80% {
    transform: translateX(-6%);
  }

  90% {
    transform: translateX(-3%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes progress_first {
  0% {
    transform: translateX(-99%);
  }

  1% {
    transform: translateX(-89%);
  }

  2% {
    transform: translateX(-89%);
  }

  3% {
    transform: translateX(-78%);
  }

  4% {
    transform: translateX(-78%);
  }

  8% {
    transform: translateX(-66%);
  }

  9% {
    transform: translateX(-66%);
  }

  14% {
    transform: translateX(-52%);
  }

  15% {
    transform: translateX(-52%);
  }

  20% {
    transform: translateX(-36%);
  }

  21% {
    transform: translateX(-36%);
  }

  25% {
    transform: translateX(-28%);
  }

  30% {
    transform: translateX(-21%);
  }

  40% {
    transform: translateX(-18%);
  }

  50% {
    transform: translateX(-15%);
  }

  60% {
    transform: translateX(-12%);
  }

  70% {
    transform: translateX(-9%);
  }

  80% {
    transform: translateX(-6%);
  }

  90% {
    transform: translateX(-3%);
  }

  100% {
    transform: translateX(0%);
  }
}

#loadingwrapper .status {
  margin-top: 10px;
}

#loadingwrapper .status .state-info {
  display: block;
  text-align: left;
  font-size: 0.9em;
  /*text-transform: uppercase;*/
  position: relative;
}

#modal-configurator-start.modal-configurator
  #state
  #loadingwrapper
  .status
  .state-info:before {
  content: 'Wird geladen... bitte warten';
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -500px;
  opacity: 0;
}

#modal-configurator-start.modal-configurator.unfolding
  #state
  #loadingwrapper
  .status
  .state-info:before {
  animation: fadeInLeft 0.5s 1.5s forwards ease;
}

@keyframes fadeInLeft {
  0% {
    text-indent: -500px;
    opacity: 0;
  }

  100% {
    text-indent: 0;
    opacity: 1;
  }
}

#modal-configurator-start.modal-configurator.unfolding
  #state.precomplete
  #loadingwrapper
  .status
  .state-info:before {
  animation: fadeOutLeft 0.2s 0s forwards ease;
}

@keyframes fadeOutLeft {
  0% {
    text-indent: 0;
    opacity: 1;
  }

  100% {
    text-indent: -500px;
    opacity: 0;
  }
}

#modal-configurator-start.modal-configurator
  #state
  #loadingwrapper
  .status
  .state-info:after {
  content: 'Vollständig geladen';
  color: #2f9057;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -500px;
  opacity: 0;
}

#modal-configurator-start.modal-configurator
  #state.precomplete
  #loadingwrapper
  .status
  .state-info:after {
  animation: fadeInLeft_Complete 0.2s 0.2s forwards ease;
}

@keyframes fadeInLeft_Complete {
  0% {
    text-indent: -500px;
    opacity: 0;
  }

  100% {
    text-indent: 0;
    opacity: 1;
  }
}

#loadingwrapper .status .percentage {
  display: inline-block;
  text-align: right;
  width: 100%;
}

#loadingwrapper .status .percentage:before {
  content: '0%';
  font-size: 0.9em;
  letter-spacing: 1pt;
}

#modal-configurator-start.modal-configurator.unfolding
  #loadingwrapper
  .status
  .percentage:before {
  content: '1%';
  -webkit-animation: percentage_first 100s 1.5s forwards;
  animation: percentage_first 100s 1.5s forwards;
}

@-webkit-keyframes percentage_first {
  0% {
    content: '1%';
  }

  1% {
    content: '6%';
  }

  2% {
    content: '11%';
  }

  3% {
    content: '17%';
  }

  4% {
    content: '22%';
  }

  8% {
    content: '28%';
  }

  9% {
    content: '34%';
  }

  14% {
    content: '41%';
  }

  15% {
    content: '48%';
  }

  20% {
    content: '56%';
  }

  21% {
    content: '64%';
  }

  25% {
    content: '72%';
  }

  30% {
    content: '79%';
  }

  40% {
    content: '82%';
  }

  50% {
    content: '85%';
  }

  60% {
    content: '88%';
  }

  70% {
    content: '91%';
  }

  80% {
    content: '94%';
  }

  90% {
    content: '97%';
  }

  100% {
    content: '100%';
  }
}

@keyframes percentage_first {
  0% {
    content: '1%';
  }

  1% {
    content: '6%';
  }

  2% {
    content: '11%';
  }

  3% {
    content: '17%';
  }

  4% {
    content: '22%';
  }

  8% {
    content: '28%';
  }

  9% {
    content: '34%';
  }

  14% {
    content: '41%';
  }

  15% {
    content: '48%';
  }

  20% {
    content: '56%';
  }

  21% {
    content: '64%';
  }

  25% {
    content: '72%';
  }

  30% {
    content: '79%';
  }

  40% {
    content: '82%';
  }

  50% {
    content: '85%';
  }

  60% {
    content: '88%';
  }

  70% {
    content: '91%';
  }

  80% {
    content: '94%';
  }

  90% {
    content: '97%';
  }

  100% {
    content: '100%';
  }
}

#modal-configurator-start.modal-configurator.unfolding
  #state.precomplete
  #loadingwrapper
  .loading-bar
  .progress-bar {
  -webkit-animation: none !important;
  animation: none !important;
  transform: translateX(0%) !important;
  background: #2f9057 !important;
}

#modal-configurator-start.modal-configurator.unfolding
  #state.precomplete
  #loadingwrapper
  .status
  .percentage:before {
  content: '100%' !important;
}

/*END MODAL*/

/*START hide adminbar*/
/* body.page-template-page-configurator #wpadminbar,
body.page-template-page-configurator-request #wpadminbar {
  display: none !important;
} */

/* body.page-template-page-configurator.admin-bar,
body.page-template-page-configurator-request.admin-bar {
  margin-top: -32px !important;
} */

/* @media all and (max-width: 782px) {
  body.page-template-page-configurator.admin-bar,
  body.page-template-page-configurator-request.admin-bar {
    margin-top: -46px !important;
  }
} */

/*END hide adminbar*/

/*NEW CONFIGURATOR*/
#vpc-ajax-container {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#vpc-container.VPC_Custom_Skin {
  width: 100%;
  max-width: 100%;
  padding: 0 4%;
  position: relative;
  font-size: 15px;
  line-height: 1;
  display: none;
}

#vpc-container.VPC_Custom_Skin.ready {
  display: block;
}

#vpc-ajax-container #debug {
  opacity: 0;
  margin: 0;
}

#debe-custom-skin {
  display: flex;
  flex-direction: row;
  margin-bottom: 80px;
}

#vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-preview-outer {
  position: relative;
  order: 1;
  width: 58%;
  max-width: 1500px;
  margin-top: 0;
  transform: translateX(36%);
  transition: transform 0.3s ease-in-out;
}

#vpc-container.VPC_Custom_Skin.loaded #debe-custom-skin #vpc-preview-outer {
  transform: inherit;
}

#debe-custom-skin #vpc-preview-container {
  width: 100%;
}

#vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-price-container {
  /* font-family: 'Montserrat'; */
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  font-style: normal;
  display: block;
  height: auto;
  color: #888888;
  text-align: left;
  margin: 0 0 20px 0;
  transform: translateX(-1000%);
  transition: transform 0.5s 0.3s ease-in-out;
}

#vpc-container.VPC_Custom_Skin.loaded #debe-custom-skin #vpc-price-container {
  transform: translateX(0%);
}

#debe-custom-skin #vpc-price-container div {
  display: inline-block;
  width: auto;
}

#debe-custom-skin #vpc-price-container span.vpc-price-label {
  font-family: 'Quicksand';
  font-weight: 600;
  font-style: normal;
  color: #666666 !important;
}

#debe-custom-skin #vpc-price-container span#vpc-price {
  color: #e65100;
  font-weight: 700;
  font-size: 110%;
}

#debe-custom-skin #vpc-price-container #vpc-price-suffix,
#debe-custom-skin #vpc-price-container #vpc-price-versandkosten {
  display: inline-block;
  font-size: 50%;
  letter-spacing: -0.5px;
}

#debe-custom-skin #vpc-price-container #vpc-price-versandkosten a {
  color: #e65100;
  font-weight: 700;
}

#debe-custom-skin #vpc-preview,
.VPC_Custom_Skin .vpc-cart-config-image,
.VPC_Custom_Skin.vpc-cart-config-image,
.VPC_Custom_Skin .saved-config-preview,
.VPC_Custom_Skin.saved-config-preview {
  position: relative;
  border: none;
  text-align: center;
  vertical-align: top;
}

#debe-custom-skin #vpc-preview img,
.VPC_Custom_Skin .vpc-cart-config-image img,
.VPC_Custom_Skin.vpc-cart-config-image img,
.VPC_Custom_Skin .saved-config-preview img,
.VPC_Custom_Skin.saved-config-preview img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 100%;
  display: block;
  background: none !important;
}

#debe-custom-skin #vpc-preview img:first-child,
.VPC_Custom_Skin .vpc-cart-config-image img:first-child,
.VPC_Custom_Skin.vpc-cart-config-image img:first-child,
.VPC_Custom_Skin .saved-config-preview img:first-child,
.VPC_Custom_Skin.saved-config-preview img:first-child {
  position: relative;
}

#debe-custom-skin #vpc-preview img.step-preview {
  opacity: 0.5;
  -webkit-animation: preview_animation 3s ease-in-out infinite;
  -moz-animation: preview_animation 3s ease-in-out infinite;
  -o-animation: preview_animation 3s ease-in-out infinite;
  animation: preview_animation 3s ease-in-out infinite;
}

@-webkit-keyframes preview_animation {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

@-moz-keyframes preview_animation {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

@-o-keyframes preview_animation {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes preview_animation {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

#debe-custom-skin #vpc-preview img.helper-vordersitze {
  z-index: 9999;
}

/*PREVIEW IMAGE ZOOMVIEW*/
@media all and (min-width: 992px) {
  body.zoomview #page-configurator #et-main-area {
    z-index: 99999;
    position: relative;
  }

  body.zoomview
    #page-configurator
    #vpc-container.VPC_Custom_Skin.loaded
    #debe-custom-skin
    #vpc-preview-outer {
    z-index: 99999;
  }

  body.zoomview
    #page-configurator
    #vpc-container.VPC_Custom_Skin.loaded
    #debe-custom-skin
    #vpc-preview-outer
    #vpc-price-container {
    opacity: 0;
  }

  body.zoomview
    #page-configurator
    #vpc-container.VPC_Custom_Skin.loaded
    #debe-custom-skin
    #vpc-preview-outer
    #vpc-preview {
    position: fixed !important;
    top: 50%;
    left: 50%;
    width: 85vw;
    max-width: 1500px;
    transform: translate(-50%, -50%);
    border: 1em solid #ffffff !important;
  }

  body
    #page-configurator
    #debe-custom-skin
    #vpc-preview-outer
    #vpc-preview:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    content: '\f00e';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 111111;
    font-size: 0;
    color: #ffffff;
    transform: translate(-50%, -50%);
  }

  #debe-custom-skin #vpc-preview-outer #vpc-preview:hover {
    cursor: pointer;
  }

  body.zoomview
    #page-configurator
    #debe-custom-skin
    #vpc-preview-outer
    #vpc-preview:after {
    content: '\f010';
  }

  #debe-custom-skin #vpc-preview-outer #vpc-preview:hover:after {
    animation: preview_zoom 3s cubic-bezier(0, 0.2, 0.8, 2) infinite;
  }

  @keyframes preview_zoom {
    0% {
      font-size: 8em;
      opacity: 0.1;
    }

    33% {
      font-size: 6em;
      opacity: 0.5;
    }

    66% {
      font-size: 4em;
      opacity: 0.1;
    }

    100% {
      font-size: 8em;
      opacity: 0.5;
    }
  }
}

/*END PREVIEW IMAGE ZOOMVIEW*/

#debe-custom-skin #stepswitcher {
  order: 2;
  width: 38%;
  margin-top: 20px;
  margin-right: 0;
  padding-left: 0;
  margin-left: 4%;
  position: relative;
}

#debe-custom-skin div#stepsend {
  position: absolute;
  bottom: 0;
}

#debe-custom-skin #stepswitcher.scrolled {
  margin-top: 0;
}

#debe-custom-skin #stepswitcher #stepsline {
  display: flex;
  width: 100%;
  height: 2px;
  background: none;
  padding: 50px 0 50px 0;
  position: relative;
}

/*STEPSLINE*/
#vpc-container.VPC_Custom_Skin #stepsline:before {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  width: 0%;
  transform: translateY(-2px);
  background: #dddddd;
  top: initial;
}

#vpc-container.VPC_Custom_Skin.loaded #stepsline:before {
  width: 100%;
  transition: width 2s 1s linear;
}

#vpc-container.VPC_Custom_Skin.loaded #stepswitcher.scrolled #stepsline {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 35%;
  background: #ffffff;
}

#vpc-container.VPC_Custom_Skin .stephelper {
  width: inherit;
  position: relative;
  margin-top: -2px;
  height: 2px;
}

#vpc-container.VPC_Custom_Skin .stephelper .step {
  width: 100%;
  position: absolute;
  background: none;
  padding-top: 100%;
  margin: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  top: 1px;
}

#vpc-container.VPC_Custom_Skin .stephelper .step .bubble {
  position: absolute;
  background: #dddddd;
  width: 36px;
  padding-top: 36px;
  margin: auto;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  border-radius: 50%;
  transform: scale(0) translateY(-50%);
  transform-origin: 50% 0%;
  z-index: 1;
}

#vpc-container.VPC_Custom_Skin.editstatus
  #stepsline.start
  .stephelper:not(.done):not(.active):not(.start)
  .step
  .bubble {
  background: #94d1a5;
}

#vpc-container.VPC_Custom_Skin .stephelper .step .bubble:after {
  content: '';
  position: absolute;
  color: #ffffff;
  z-index: 3;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(1) .step .bubble:after {
  content: '1';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(2) .step .bubble:after {
  content: '2';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(3) .step .bubble:after {
  content: '3';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(4) .step .bubble:after {
  content: '4';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(5) .step .bubble:after {
  content: '5';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(6) .step .bubble:after {
  content: '6';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(7) .step .bubble:after {
  content: '7';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(8) .step .bubble:after {
  content: '8';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(9) .step .bubble:after {
  content: '9';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(10) .step .bubble:after {
  content: '10';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(11) .step .bubble:after {
  content: '11';
}

#vpc-container.VPC_Custom_Skin .stephelper:nth-child(12) .step .bubble:after {
  content: '12';
}

#vpc-container.VPC_Custom_Skin .stephelper:last-child .step .bubble:after {
  content: '✔' !important;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper
  .step
  .bubble {
  animation: loadbubble 0.3s forwards;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(1)
  .step
  .bubble {
  animation-delay: 0.1s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(2)
  .step
  .bubble {
  animation-delay: 0.3s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(3)
  .step
  .bubble {
  animation-delay: 0.5s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(4)
  .step
  .bubble {
  animation-delay: 0.7s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(5)
  .step
  .bubble {
  animation-delay: 0.9s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(6)
  .step
  .bubble {
  animation-delay: 1.1s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(7)
  .step
  .bubble {
  animation-delay: 1.3s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(8)
  .step
  .bubble {
  animation-delay: 1.5s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(9)
  .step
  .bubble {
  animation-delay: 1.7s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(10)
  .step
  .bubble {
  animation-delay: 1.9s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(11)
  .step
  .bubble {
  animation-delay: 2.2s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.load
  .stephelper:nth-child(12)
  .step
  .bubble {
  animation-delay: 2.4s;
}

@keyframes loadbubble {
  0% {
    transform: scale(0) translateY(-50%);
    opacity: 0;
  }

  70% {
    transform: scale(1.5) translateY(-50%);
    opacity: 1;
  }

  100% {
    transform: scale(0.9) translateY(-50%);
    opacity: 1;
  }
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.start
  .step
  .bubble,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.active
  .step
  .bubble,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backactive
  .step
  .bubble {
  transform: scale(0.9) translateY(-50%);
  background: #dddddd;
  opacity: 1;
  animation: activebubble 0.6s forwards !important;
  animation-delay: 0.3s !important;
}

@keyframes activebubble {
  0% {
    transform: scale(0.9) translateY(-50%);
    background: #dddddd;
    opacity: 1;
  }

  10% {
    transform: scale(0.9) translateY(-50%);
    background: #dddddd;
    opacity: 1;
  }

  70% {
    transform: scale(0.8) translateY(-50%);
    background: #7e7e7e;
    opacity: 1;
  }

  90% {
    transform: scale(1.6) translateY(-50%);
    background: #7e7e7e;
    opacity: 1;
  }

  100% {
    transform: scale(1.4) translateY(-50%);
    background: #7e7e7e;
    opacity: 1;
  }
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.done:not(.active):not(.backactive)
  .step
  .bubble {
  animation: none !important;
  transform: scale(0.9) translateY(-50%) !important;
  background: #2f9057;
  opacity: 1;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backnext
  .step
  .bubble,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backhelper
  .step
  .bubble {
  animation: none !important;
  transform: scale(0.9) translateY(-50%) !important;
  background: #dddddd;
  opacity: 1;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backnext.done
  .step
  .bubble,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backhelper.done
  .step
  .bubble {
  background: #94d1a5 !important;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.final
  .step
  .bubble {
  background: #2f9057 !important;
}

#vpc-container.VPC_Custom_Skin .stephelper .step:before,
#vpc-container.VPC_Custom_Skin .stephelper .step:after {
  content: '';
  width: 0;
  height: 2px;
  top: 50%;
  transform: translateY(-1px);
  position: absolute;
  background: #dddddd;
}

#vpc-container.VPC_Custom_Skin .stephelper .step:before {
  left: 0;
}

#vpc-container.VPC_Custom_Skin .stephelper .step:after {
  left: 50%;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper .step:before,
#vpc-container.VPC_Custom_Skin.loaded .stephelper .step:after {
  width: 50%;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(1) .step:before {
  transition: width 0.1s 0s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(1) .step:after {
  transition: width 0.1s 0.1s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(2) .step:before {
  transition: width 0.1s 0.2s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(2) .step:after {
  transition: width 0.1s 0.3s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(3) .step:before {
  transition: width 0.1s 0.4s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(3) .step:after {
  transition: width 0.1s 0.5s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(4) .step:before {
  transition: width 0.1s 0.6s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(4) .step:after {
  transition: width 0.1s 0.7s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(5) .step:before {
  transition: width 0.1s 0.8s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(5) .step:after {
  transition: width 0.1s 0.9s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(6) .step:before {
  transition: width 0.1s 1s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(6) .step:after {
  transition: width 0.1s 1.1s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(7) .step:before {
  transition: width 0.1s 1.2s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(7) .step:after {
  transition: width 0.1s 1.3s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(8) .step:before {
  transition: width 0.1s 1.4s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(8) .step:after {
  transition: width 0.1s 1.5s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(9) .step:before {
  transition: width 0.1s 1.6s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(9) .step:after {
  transition: width 0.1s 1.7s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(10) .step:before {
  transition: width 0.1s 1.8s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(10) .step:after {
  transition: width 0.1s 1.9s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(11) .step:before {
  transition: width 0.1s 2s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(11) .step:after {
  transition: width 0.1s 2.1s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(12) .step:before {
  transition: width 0.1s 2.2s linear;
}

#vpc-container.VPC_Custom_Skin.loaded .stephelper:nth-child(12) .step:after {
  transition: width 0.1s 2.3s linear;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.done
  .step:before,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backactive
  .step:before {
  width: 50%;
  background: #7e7e7e;
  opacity: 1;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.done
  .step:after {
  animation: stepactivebefore 0.6s linear forwards;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.active
  .step:before,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.start
  .step:before {
  animation: stepactivecurrent 0.6s linear forwards;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backactive
  .step:after {
  animation: stepbackcurrent 0.6s linear forwards;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backnext
  .step:before {
  animation: stepbackbefore 0.6s linear forwards;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.done
  .step:after {
  animation-delay: 0s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.active
  .step:before {
  animation-delay: 0s;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.start
  .step:before {
  animation-delay: 0s;
}

@keyframes stepactivebefore {
  0% {
    width: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    background: #7e7e7e;
    opacity: 1;
  }

  60% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  100% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }
}

@keyframes stepactivecurrent {
  0% {
    width: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    background: #7e7e7e;
    opacity: 1;
  }

  60% {
    width: 0;
    background: #7e7e7e;
    opacity: 1;
  }

  100% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }
}

@keyframes stepbackbefore {
  0% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  20% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  60% {
    width: 0;
    background: #7e7e7e;
    opacity: 1;
  }

  100% {
    width: 0;
    background: #dddddd;
    opacity: 0;
  }
}

@keyframes stepbackcurrent {
  0% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  20% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  60% {
    width: 50%;
    background: #7e7e7e;
    opacity: 1;
  }

  100% {
    width: 0;
    background: #7e7e7e;
    opacity: 1;
  }
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backhelper:not(.current):not(.active)
  .step:before,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backhelper
  .step:after,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.backnext
  .step:after {
  animation: none !important;
  width: 0% !important;
  background: #dddddd !important;
  opacity: 0 !important;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.active:not(.last)
  .step:after {
  animation: none !important;
  width: 50% !important;
  background: #dddddd !important;
  opacity: 1 !important;
}

#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.final
  .step:after,
#vpc-container.VPC_Custom_Skin.loaded
  #stepsline.start
  .stephelper.last
  .step:after {
  display: none;
}

#vpc-container.VPC_Custom_Skin.loaded #stepsline.start .stephelper.last:after {
  content: '';
  width: 50px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: #ffffff;
  left: 50%;
  z-index: 0;
}

#vpc-container.VPC_Custom_Skin .stephelper span {
  display: none;
  position: absolute;
  width: 62px;
  padding-top: 62px;
  margin: auto;
  left: 50%;
  top: calc(50% - 1px);
  opacity: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
}

#vpc-container.VPC_Custom_Skin #stepsline.start .stephelper.active span,
#vpc-container.VPC_Custom_Skin #stepsline.start .stephelper.backactive span,
#vpc-container.VPC_Custom_Skin #stepsline.start .stephelper.start span {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.3s 0.3s linear;
}

#vpc-container.VPC_Custom_Skin .stephelper span:before,
#vpc-container.VPC_Custom_Skin .stephelper span:after {
  content: '';
  border-radius: 50%;
  position: absolute;
  border: 4px solid #7e7e7e;
  opacity: 1;
  animation: lds-ripple 3s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#vpc-container.VPC_Custom_Skin .stephelper span:after {
  content: '';
  animation-delay: -1.5s;
}

@keyframes lds-ripple {
  0% {
    top: calc(40% - 2px);
    left: calc(40% - 2px);
    width: 10%;
    height: 10%;
    opacity: 1;
  }

  100% {
    top: -4px;
    left: -4px;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

/*END STEPSLINE*/

#debe-custom-skin #vpc-preview-container {
  margin-top: 30px;
}

#debe-custom-skin #vpc-preview-container.scrolled {
  position: fixed;
  top: 0;
  margin-top: 45px;
  left: 4%;
  width: 53.3%;
}

#debe-custom-skin #vpc-preview-container.scrolled-bottom {
  position: absolute;
  bottom: 5em;
  margin-top: 3em;
  left: 0;
  width: auto;
  max-width: 100%;
}

#debe-custom-skin #vpc-preview-container.scrolled-bottom #vpc-preview {
  display: inline-block;
  max-width: 100%;
}

#debe-custom-skin #stepswitcher #vpc-components {
  margin: 0;
  padding-top: 20px;
}

#debe-custom-skin #stepswitcher.scrolled #vpc-components {
  padding-top: 120px;
}

/*#debe-custom-skin #stepswitcher .debeinputvalidate * {
    cursor: pointer !important;
}*/

#vpc-container.VPC_Custom_Skin #stepswitcher #debe-vpc-steps {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}

#vpc-container.VPC_Custom_Skin.loaded #stepswitcher #debe-vpc-steps {
  transform: scale(1);
}

#debe-custom-skin #stepswitcher .debeparent {
  margin: 0 0 15px 0;
  position: relative;
  display: none;
  /* display: block; */
}

#debe-custom-skin #stepswitcher .debeparent.activegroup {
  display: block;
}

#vpc-container.VPC_Custom_Skin .debeparent .debechild.isnotvisible {
  display: none;
}

#vpc-container.VPC_Custom_Skin .debeparent .debechild.isvisible {
  display: block;
  width: 100%;
}

#debe-custom-skin #stepswitcher .debeparent .debechild {
  transform: translateX(300%);
  /* transition: transform 0.2s ease-in-out; */
}

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

/* #debe-custom-skin #stepswitcher .debeparent.activegroup .debechild.isvisible.animate-in {
    animation: activegroupFadeIn 1s linear forwards;
} */

#debe-custom-skin #stepswitcher .debeparent.activegroup .debechild.animate-in {
  animation: activegroupFadeIn 0.5s linear forwards;
  animation-delay: 0s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-1 {
  animation-delay: 0.1s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-2 {
  animation-delay: 0.2s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-3 {
  animation-delay: 0.3s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-4 {
  animation-delay: 0.4s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-5 {
  animation-delay: 0.5s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-6 {
  animation-delay: 0.6s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-7 {
  animation-delay: 0.7s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-8 {
  animation-delay: 0.8s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-9 {
  animation-delay: 0.9s;
}

#debe-custom-skin
  #stepswitcher
  .debeparent.activegroup
  .debechild.animate-in.animate-pos-10 {
  animation-delay: 0.1s;
}

#debe-custom-skin .debechild .vpc-component {
  border: 0;
  background-color: #dddddd;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 15px 0;
  /* display: block!important; */
}

#debe-custom-skin .debechild.active .vpc-component {
  background-color: #e65100;
}

#debe-custom-skin .debechild .vpc-component.filled,
#debe-custom-skin .debechild .vpc-component.prefilled,
#debe-custom-skin .debechild.active .vpc-component.filled,
#debe-custom-skin .debechild.active .vpc-component.prefilled {
  background-color: #2f9057;
}

/* #debe-custom-skin .debechild .vpc-component.rules_groups_hide {
  background-color: lightblue!important;
}

#debe-custom-skin .debechild .vpc-component.rules_groups_show {
  background-color: yellow!important;
}

#debe-custom-skin .debechild .vpc-component.rules_groups_hide.checked {
  background-color: red!important;
} */

#debe-custom-skin
  .debeparent.activegroup.checkit
  .debechild:not(.active).tobechecked
  .vpc-component:not(.filled):not(.prefilled) {
  background-color: darkred;
  -webkit-animation: checkit_component 3s ease-in-out infinite;
  -moz-animation: checkit_component 3s ease-in-out infinite;
  -o-animation: checkit_component 3s ease-in-out infinite;
  animation: checkit_component 3s ease-in-out infinite;
}

@-webkit-keyframes checkit_component {
  0% {
    background-color: #bd1d1d;
  }

  50% {
    background-color: darkred;
  }

  100% {
    background-color: #bd1d1d;
  }
}

@-moz-keyframes checkit_component {
  0% {
    background-color: #bd1d1d;
  }

  50% {
    background-color: darkred;
  }

  100% {
    background-color: #bd1d1d;
  }
}

@-o-keyframes checkit_component {
  0% {
    background-color: #bd1d1d;
  }

  50% {
    background-color: darkred;
  }

  100% {
    background-color: #bd1d1d;
  }
}

@keyframes checkit_component {
  0% {
    background-color: #bd1d1d;
  }

  50% {
    background-color: darkred;
  }

  100% {
    background-color: #bd1d1d;
  }
}

/*COMPONENT HEADER*/
#debe-custom-skin .vpc-component .vpc-component-header {
  color: #7e7e7e;
  position: relative;
  text-align: left;
  padding: 0 15px;
  min-height: 80px;
  background: transparent;
  cursor: pointer;
}

#debe-custom-skin .vpc-component .vpc-component-header:after {
  display: none;
}

#debe-custom-skin .vpc-component .vpc-component-header img.step-preview {
  display: none;
}

#debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
  display: inline-block;
  max-width: 120px;
  width: auto;
  max-height: 80px;
  position: absolute;
  left: 15px;
  margin: 0;
}

#debe-custom-skin .vpc-component .header-selected {
  display: inline-block;
  width: calc(100% - 235px);
  padding: 0 10px;
  margin: 0 130px 0 120px;
  position: relative;
}

#debe-custom-skin .vpc-component .header-selected .cname,
#debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
  margin-bottom: 10px;
  display: block;
}

#debe-custom-skin .vpc-component .header-selected .cname {
  /* font-family: 'Montserrat'; */
  font-weight: bold;
  font-style: normal;
  color: #333333;
  line-height: 1.2;
  font-size: 1rem;
}

#debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
  /* font-family: 'Montserrat'; */
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  font-size: 0.9rem;
}

#debe-custom-skin .vpc-component .header-selected .vpc-selected-outer i,
#debe-custom-skin
  .vpc-component
  .header-selected
  .vpc-selected-outer
  .vpc-selected {
  display: inline;
}

#debe-custom-skin
  .vpc-component
  .header-selected
  .vpc-selected-outer
  .vpc-selected {
  padding-left: 0.3em;
}

#debe-custom-skin .vpc-component .vpc-component-header .vpc-selected-icon {
  position: absolute;
  top: 0;
  right: 60px;
  height: auto;
  margin: 0;
  width: auto;
  display: none;
}

#debe-custom-skin
  .vpc-component.filled
  .vpc-component-header
  .vpc-selected-icon,
#debe-custom-skin
  .vpc-component.prefilled
  .vpc-component-header
  .vpc-selected-icon {
  display: block;
}

#debe-custom-skin .vpc-component .vpc-component-header .vpc-selected-icon img {
  max-width: 100px;
  max-height: 70px;
}

/*#debe-custom-skin .debechild:not(.active) .vpc-component .vpc-selected-outer i.fas:before {
    color: #7e7e7e;
}*/

/*#debe-custom-skin .debechild.active .vpc-component .vpc-selected-outer i.fas:before {
    color: #FFFFFF;
}*/

#debe-custom-skin
  .debechild:not(.active)
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-selected-outer
  i.fas:before {
  content: '\f078';
}

#debe-custom-skin
  .debechild.active
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-selected-outer
  i.fas:before {
  content: '\f077';
}

#debe-custom-skin
  .debechild
  .vpc-component.filled
  .vpc-selected-outer
  i.fas:before,
#debe-custom-skin
  .debechild
  .vpc-component.prefilled
  .vpc-selected-outer
  i.fas:before {
  content: '\f078';
}

#debe-custom-skin
  .debechild.active
  .vpc-component.filled
  .vpc-selected-outer
  i.fas:before,
#debe-custom-skin
  .debechild.active
  .vpc-component.prefilled
  .vpc-selected-outer
  i.fas:before {
  content: '\f077';
}

#debe-custom-skin
  .debeparent.activegroup.checkit
  .debechild:not(.active).tobechecked
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-selected-outer
  i.fas:before {
  content: '\f078';
}

#debe-custom-skin .debechild .vpc-component .vpc-component-header-icon {
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  height: 100%;
  width: 30px;
  text-align: right;
  font-size: 50px;
  line-height: 1;
}

#debe-custom-skin .debechild .vpc-component.filled .vpc-component-header-icon,
#debe-custom-skin
  .debechild
  .vpc-component.prefilled
  .vpc-component-header-icon {
  font-size: 30px;
  line-height: 1;
}

/*#debe-custom-skin .debechild:not(.active) .vpc-component .vpc-component-header-icon i.fas:before {
    color: #7e7e7e;
}*/

/*#debe-custom-skin .debechild.active .vpc-component .vpc-component-header-icon i.fas:before {
    color: #FFFFFF;
}*/

#debe-custom-skin
  .debechild:not(.active)
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-component-header-icon
  i.fas:before {
  content: '\f309';
}

#debe-custom-skin
  .debechild.active
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-component-header-icon
  i.fas:before {
  content: '\f30c';
}

#debe-custom-skin
  .debechild
  .vpc-component.filled
  .vpc-component-header-icon
  i.fas:before,
#debe-custom-skin
  .debechild
  .vpc-component.prefilled
  .vpc-component-header-icon
  i.fas:before {
  content: '\f00c';
}

#debe-custom-skin
  .debeparent.activegroup.checkit
  .debechild:not(.active).tobechecked
  .vpc-component:not(.filled):not(.prefilled)
  .vpc-component-header-icon
  i.fas:before {
  content: '\f12a';
}

#debe-custom-skin .debechild .vpc-component.filled .vpc-component-header,
#debe-custom-skin .debechild .vpc-component.prefilled .vpc-component-header,
#debe-custom-skin .debechild.active .vpc-component .vpc-component-header,
#debe-custom-skin
  .debeparent.activegroup.checkit
  .debechild.tobechecked
  .vpc-component
  .vpc-component-header,
#debe-custom-skin .debechild .vpc-component.filled .header-selected .cname,
#debe-custom-skin .debechild .vpc-component.prefilled .header-selected .cname,
#debe-custom-skin .debechild.active .vpc-component .header-selected .cname,
#debe-custom-skin
  .debeparent.activegroup.checkit
  .debechild.tobechecked
  .vpc-component
  .header-selected
  .cname {
  color: #ffffff;
}

/*END COMPONENT HEADER*/

#debe-custom-skin .vpc-component .vpc-options {
  margin: 15px 10px 0;
  background-color: #ffffff;
  padding: 10px 20px;
  border: none;
  display: none;
}

#debe-custom-skin .debechild.active .vpc-component .vpc-options {
  display: block;
}

/*COMPONENT INFO*/
#debe-custom-skin .vpc-component .vpc-options .component-info {
  display: block;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
}

#debe-custom-skin .vpc-component .vpc-options.optiontype-icon .component-info {
  padding-left: 15px;
  padding-right: 15px;
}

#debe-custom-skin .vpc-component .vpc-options .vpc-group {
  border: none;
  display: block;
  padding: 0;
}

#debe-custom-skin .vpc-component .vpc-options .vpc-group.default {
  display: none;
}

#debe-custom-skin .vpc-options .vpc-single-option-wrap.default {
  display: none;
}

#debe-custom-skin .vpc-component .vpc-options .vpc-group .vpc-group-name {
  display: block;
  margin: 0 0 20px 0;
  font-size: 20px;
  text-align: left;
  padding: 2px 5px;
  border-bottom: 2px solid #ededed;
  line-height: 1.3;
  color: #444444;
  width: 100%;
}

/*STARt optiontype-radio*/
#debe-custom-skin .vpc-options.optiontype-radio .vpc-single-option-wrap {
  display: block;
}

#debe-custom-skin .vpc-options .tooltip {
  display: none !important;
}

#debe-custom-skin .vpc-options.optiontype-radio .vpc-single-option-wrap label {
  font-weight: 500;
  display: block;
  font-size: 16px;
  border: none;
  margin: 0 0 15px 0;
  height: auto;
  line-height: 1.4;
  cursor: pointer;
}

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  input[type='radio'] {
  display: none;
}

/* #debe-custom-skin .vpc-options.optiontype-radio .vpc-single-option-wrap input[type="radio"]+label>span.customcheck {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 1px 6px 0 0;
    border: 0.0625em solid rgb(192, 192, 192);
    border-radius: 0.25em;
    background: rgb(224, 224, 224);
    vertical-align: top;
} */

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  input[type='radio']
  + label
  > span.customcheck {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  border: 0.0625em solid rgb(192, 192, 192);
  border-radius: 0.25em;
  background: rgb(224, 224, 224);
  vertical-align: middle;
}

/* #debe-custom-skin .vpc-options.optiontype-radio .vpc-single-option-wrap label span {
    display: inline-block;
    width: calc(100% - 40px);
} */

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  label
  span {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  input[type='radio']:checked
  + label {
  font-weight: bold;
}

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  input[type='radio']:checked
  + label
  > span.customcheck:before {
  content: '✓' !important;
  display: block !important;
  color: #e65100;
  font-size: 24px;
  line-height: 12px;
  text-align: center;
  text-shadow: 1px 1px 0 #e65100;
  font-weight: bold;
}

/* #debe-custom-skin .vpc-options.optiontype-radio .vpc-single-option-wrap img.radio-icon {
    max-width: 150px !important;
    height: auto !important;
    max-height: 100px !important;
    margin-left: 30px;
    margin-top: 5px;
    display: block;
} */

#debe-custom-skin
  .vpc-options.optiontype-radio
  .vpc-single-option-wrap
  img.radio-icon {
  max-width: 150px !important;
  height: auto !important;
  max-height: 80px !important;
  margin-right: 15px;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle;
}

/*END optiontype-radio*/

/*START optiontype-text*/
#debe-custom-skin
  .vpc-options.optiontype-text
  .vpc-single-option-wrap
  input[type='text'],
#debe-custom-skin
  .vpc-options.optiontype-textarea
  .vpc-single-option-wrap
  textarea {
  padding: 6px;
  border: 2px solid #cccccc;
  background-color: #f8f8f8;
  color: #444444;
}

/*END optiontype-text*/

/*START optiontype-icon*/
#debe-custom-skin
  .vpc-options.optiontype-icon
  .vpc-single-option-wrap
  input[type='radio'] {
  display: none !important;
}

#debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
  display: inline-block;
  width: auto !important;
}

#debe-custom-skin .icon-label {
  display: block;
}

#debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
  width: calc(24% - 30px) !important;
  margin: 0;
  padding-top: 0;
  position: relative;
  padding-bottom: 40px !important;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 0;
  text-align: center;
  min-height: 1px;
  box-sizing: border-box;
  /*float: left;*/
  display: inline-block;
  max-width: 156px;
}

#debe-custom-skin .vpc-options.optiontype-icon label.custom {
  display: block;
  cursor: pointer;
  position: relative;
  text-align: center;
  /* width: calc(100% - 6px)!important; */
  width: 100% !important;
  /* max-width: calc(150px - 6px); */
  max-width: 150px;
  /* max-height: calc(150px - 6px); */
  max-height: 100%;
  height: auto;
  box-sizing: content-box;
  margin: auto;
  padding-bottom: 0;
  /*float: none;*/
  top: 0;
  left: 0;
  right: 0;
  height: auto !important;
  padding-top: calc(100% - 6px);
  min-height: 1px;
}

#debe-custom-skin .vpc-options.optiontype-icon label.custom:before {
  content: '';
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  max-height: 150px;
  background-size: cover;
}

#debe-custom-skin
  .vpc-options.optiontype-icon
  input:checked
  + label.custom:before {
  color: transparent;
  border: 4px solid #e65100;
  position: absolute;
  top: -4px;
  left: -4px;
  content: '' !important;
  margin-bottom: 0px;
}

#debe-custom-skin .vpc-options.optiontype-icon label.custom span {
  font-size: 12px;
  font-weight: 500;
  margin-left: -8px;
  margin-right: -8px;
  width: calc(100% + 16px) !important;
  display: block !important;
  line-height: 1.2;
  position: absolute;
  top: calc(100% + 6px);
  /* font-family: 'Montserrat'; */
}

/*END optiontype-icon*/

/*COMPONENT CLOSE ELEMENT*/
#debe-custom-skin .debechild .vpc-component .close-component {
  padding: 0 1em;
  display: none;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 14px;
}

#debe-custom-skin .debechild.active .vpc-component .close-component {
  display: block;
}

#debe-custom-skin .vpc-component .close-component span {
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
}

/*BUTTON ROW*/
#debe-custom-skin .debe-step-btn-row {
  display: block;
}

#vpc-container.VPC_Custom_Skin #debe-custom-skin .debe-step-btn-row button {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s 0.5s ease-in-out;
}

#vpc-container.VPC_Custom_Skin.loaded
  #debe-custom-skin
  .debe-step-btn-row
  button {
  transform: translateY(0px);
  opacity: 1;
}

#debe-custom-skin .debe-step-btn-row button {
  display: inline-block;
  font-family: 'Quicksand';
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  padding: 10px 1.5em;
  line-height: 1;
  border: none;
  outline: none;
  color: #ffffff;
  text-transform: uppercase;
  min-width: 150px;
}

#debe-custom-skin #vpc-add-to-cart {
  font-family: 'Quicksand';
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  padding: 12px 1.5em;
  line-height: 1;
  border: none;
  outline: none;
  color: #ffffff;
  background: #e65100;
  width: 100%;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

#debe-custom-skin #vpc-add-to-cart:hover,
#debe-custom-skin #vpc-add-to-cart:focus {
  background: #2f9057;
  cursor: pointer;
}

#debe-custom-skin .debe-step-btn-row span.cover {
  display: inline-block;
}

#debe-custom-skin .debe-step-btn-row span.cover.disabled {
  cursor: not-allowed;
}

#debe-custom-skin .debe-step-btn-row button.debe-next-step[disabled] {
  pointer-events: none;
}

#debe-custom-skin .debe-step-btn-row button.debe-prev-step {
  background: #7e7e7e;
  margin-right: 1em;
  cursor: pointer;
  transition: background 0.1s 0s ease !important;
}

#debe-custom-skin .debe-step-btn-row button.debe-prev-step:hover,
#debe-custom-skin .debe-step-btn-row button.debe-prev-step:focus {
  background: #2f9057;
  cursor: pointer;
  transition: background 0.1s 0s ease !important;
}

#debe-custom-skin .debeparent .debe-step-btn-row button.debe-next-step {
  background: #bbbbbb;
  margin: 0;
  cursor: not-allowed;
}

#debe-custom-skin
  .debeparent.validated
  .debe-step-btn-row
  button.debe-next-step {
  background: #e65100;
  cursor: pointer;
  transition: background 0.1s 0s ease !important;
}

#debe-custom-skin
  .debeparent.validated
  .debe-step-btn-row
  button.debe-next-step:hover,
#debe-custom-skin
  .debeparent.validated
  .debe-step-btn-row
  button.debe-next-step:focus {
  background: #2f9057;
  cursor: pointer;
  transition: background 0.1s 0s ease !important;
}

#debe-custom-skin
  .debeparent.firstgroup
  .debe-step-btn-row
  button.debe-prev-step {
  display: none;
}

#debe-custom-skin
  .debeparent.endstatus
  .debe-step-btn-row
  button.debe-next-step {
  display: none;
}

#debe-custom-skin .mobile-close-component {
  display: none;
  /* font-family: 'Montserrat'; */
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  position: fixed;
  top: -200px;
  z-index: 1;
  background: #e65100;
  color: #ffffff;
  width: 92vw;
  padding: 15px 5px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: top 0.3s ease-in-out;
}

/*START RESPONSIVE*/
@media all and (max-width: 1880px) {
  #vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-preview-outer {
    width: 50%;
    transform: translateX(50%);
    transition: transform 0.3s ease-in-out;
  }

  #vpc-container.VPC_Custom_Skin.loaded #debe-custom-skin #vpc-preview-outer {
    transform: inherit;
  }

  #debe-custom-skin #vpc-preview-container.scrolled {
    width: 46%;
  }

  #vpc-container #debe-custom-skin #stepswitcher {
    width: 46%;
  }

  #vpc-container.VPC_Custom_Skin.loaded #stepswitcher.scrolled #stepsline {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 42.4%;
    background: #ffffff;
  }

  #debe-custom-skin .vpc-group-name {
    margin-left: 0;
    margin-right: 0;
  }
}

@media all and (max-width: 1580px) {
  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(32% - 30px) !important;
    /*padding-top: calc(32% - 30px)!important;*/
  }
}

@media all and (max-width: 1500px) {
  #vpc-container #debe-custom-skin #stepswitcher {
    margin-top: 0;
  }

  #debe-custom-skin #stepswitcher #stepsline {
    padding: 50px 0 40px 0;
  }

  #debe-custom-skin #stepswitcher #vpc-components {
    padding-top: 10px;
  }

  #debe-custom-skin #stepswitcher.scrolled #vpc-components {
    padding-top: 100px;
  }

  #debe-custom-skin #vpc-preview-container {
    margin-top: 45px;
  }

  #debe-custom-skin #vpc-preview-container.scrolled {
    margin-top: 40px;
  }

  #vpc-container.VPC_Custom_Skin .stephelper .step .bubble {
    width: 32px;
    padding-top: 32px;
  }

  #vpc-container.VPC_Custom_Skin .stephelper span {
    width: 56px;
    padding-top: 56px;
  }
}

@media all and (max-width: 1440px) {
  #debe-custom-skin .vpc-component {
    margin-bottom: 15px;
  }
}

@media all and (max-width: 1200px) {
  #debe-custom-skin #vpc-preview-container.scrolled {
    margin-top: 35px;
  }

  #vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-price-container {
    font-size: 26px;
    margin-bottom: 15px;
  }

  #debe-custom-skin #stepswitcher #stepsline {
    padding: 40px 0 35px 0;
  }

  #vpc-container #debe-custom-skin #stepswitcher.scrolled #vpc-components {
    padding-top: 85px;
  }

  #vpc-container.VPC_Custom_Skin .stephelper .step .bubble {
    width: 28px;
    padding-top: 28px;
  }

  #vpc-container.VPC_Custom_Skin .stephelper .step .bubble:after {
    font-size: 14px;
  }

  #vpc-container.VPC_Custom_Skin .stephelper span {
    width: 46px;
    padding-top: 46px;
  }
}

@media all and (max-width: 1160px) {
  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(49% - 30px) !important;
    /*padding-top: calc(32% - 30px)!important;*/
  }
}

@media all and (max-width: 991px) {
  /*modal*/
  .modal-configurator .modal-background .modal {
    padding: 1em;
    width: 96vw;
    max-width: 96vw;
  }

  .modal-configurator p {
    font-size: 0.98em;
    margin-bottom: 0.5em;
  }

  .modal-configurator h2 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
  }

  /*trusted shops*/
  body.page-template-page-configurator div[id^='trustbadge-container'],
  body.page-template-page-configurator-request div[id^='trustbadge-container'] {
    display: none !important;
  }

  /*#page-configurator:not(.mobile-active) #vpc-container.VPC_Custom_Skin {
        margin-bottom: 60px;
    }*/

  #debe-custom-skin {
    display: block;
    flex-direction: unset;
    margin-bottom: 60px;
  }

  /*mobile active status - only in portrait mode*/
  #debe-custom-skin.mobile-active {
    margin-bottom: 0;
  }

  #debe-custom-skin #vpc-preview-container {
    order: 1;
    width: 100%;
    display: block;
    margin-top: 20px;
  }

  #vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-price-container {
    margin: 0 0 5px 0;
  }

  #vpc-container #debe-custom-skin #stepswitcher {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding-top: 10px;
  }

  #debe-custom-skin #stepswitcher #stepsline {
    padding: 30px 0 30px 0;
  }

  #debe-custom-skin #stepswitcher #vpc-components {
    padding-top: 10px;
    order: 2;
    width: 100%;
  }

  #vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-preview-outer {
    width: 100%;
    transform: translateX(0%);
    transition: all 0.3s ease-in-out;
  }

  #vpc-container.VPC_Custom_Skin.loaded #debe-custom-skin #vpc-preview-outer {
    width: 100%;
    transform: translateX(0%);
    display: block;
  }

  body.scrolled-mobile
    #vpc-container.VPC_Custom_Skin.loaded
    #debe-custom-skin
    #vpc-preview-outer {
    width: 92%;
    position: fixed;
    z-index: 1;
    transition: none !important;
  }

  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(24% - 30px) !important;
  }

  #debe-custom-skin .debe-step-btn-row {
    display: block;
    text-align: right;
  }

  body:not(.oldconfigurator) #page-configurator #debug {
    display: none;
  }

  body:not(.oldconfigurator) #page-configurator #main-footer > .container {
    display: none;
  }
}

@media all and (max-width: 991px) and (orientation: portrait) {
  #modal-configurator-start.modal-configurator p br {
    display: none;
  }

  #page-configurator.mobile-active:before {
    top: 0;
    content: '';
    position: fixed;
    height: 18px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
  }

  #page-configurator.mobile-active header#he-main,
  #page-configurator.mobile-active div#mkt-container {
    display: none;
  }

  #page-configurator.mobile-active #debe-custom-skin {
    margin-bottom: 0px;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin
    div#debe-custom-skin
    div#vpc-preview-outer {
    position: fixed;
    bottom: 0;
    width: 92vw;
    z-index: 1;
    top: initial;
    padding-bottom: 15px;
    background: #ffffff;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin
    div#debe-custom-skin
    div#vpc-preview-outer
    #vpc-price-container {
    display: none;
  }

  #page-configurator.mobile-active
    #vpc-container
    #debe-custom-skin
    #stepswitcher {
    padding-top: 10px;
  }

  #page-configurator.mobile-active #vpc-container.VPC_Custom_Skin #stepsline {
    display: none;
  }

  #page-configurator.mobile-active footer#main-footer {
    display: none;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin
    #debe-custom-skin
    .debeparent
    .debechild.isvisible {
    display: none;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin
    #debe-custom-skin
    .debeparent
    .debechild.isvisible.debechild-mobile-active {
    display: inline-block;
    /*height: calc(100vh - 35px);*/
    margin-top: 5px;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin.loaded
    .debe-step-btn-row {
    display: none;
  }

  #page-configurator.mobile-active
    #vpc-container.VPC_Custom_Skin
    #debe-custom-skin
    .debeparent
    .debechild.isvisible.active.debechild-mobile-active
    .vpc-component {
    top: 5px;
    z-index: 11111;
    position: relative;
    /*margin-bottom: -45px;*/
    /*margin-bottom: -20px;*/
    margin-bottom: 0px;
  }

  #page-configurator.mobile-active
    #debe-custom-skin
    .debechild.active
    .mobile-close-component {
    display: none;
  }

  #page-configurator.mobile-active
    #debe-custom-skin
    .debechild.active
    .mobile-close-component.show {
    top: 15px;
    transition: top 0.3s ease-in-out;
  }

  #page-configurator.mobile-active
    #debe-custom-skin
    .debechild.active
    .vpc-component.filled
    .mobile-close-component {
    background: #2f9057;
  }
}

@media all and (max-width: 767px) {
  .modal-configurator {
    z-index: 99999;
  }

  .modal-configurator .info {
    font-size: 30px;
  }

  .modal-configurator h2 {
    font-size: 1.2em;
    line-height: 1.2;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .modal-configurator p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 0.6em;
  }

  .modal-configurator .button {
    font-size: 1.1em;
    line-height: 1.3;
  }

  #vpc-container.VPC_Custom_Skin.ready {
    display: block;
  }

  #vpc-container.VPC_Custom_Skin #debe-custom-skin #vpc-price-container {
    font-size: 24px;
    margin: 0 0 10px 0;
  }

  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(32% - 30px) !important;
  }

  #debe-custom-skin
    .vpc-options.optiontype-radio
    .vpc-single-option-wrap.radio
    img.radio-icon {
    max-width: 130px !important;
    height: auto !important;
    max-height: 90px !important;
    margin-left: 24px;
    margin-top: 6px;
    display: block;
    /*float: left;*/
    margin-bottom: 10px;
  }

  #debe-custom-skin .debe-step-btn-row {
    text-align: center;
  }
}

@media all and (max-width: 767px) and (orientation: landscape) {
  .modal-configurator p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 640px) and (orientation: landscape) {
  .modal-configurator .info {
    font-size: 20px;
  }

  .modal-configurator p {
    font-size: 12px;
  }
}

@media all and (max-width: 560px) {
  #vpc-container.VPC_Custom_Skin #stepsline {
    display: inline-block;
    margin-left: -4% !important;
    height: 3px;
    width: auto;
    /*padding-right: 40vw;*/
    padding-right: 42vw;
    transform: translateX(0);
    transition: transform 0.5s linear;
  }

  #vpc-container.VPC_Custom_Skin #stepswitcher #stepsline {
    width: max-content;
  }

  #vpc-container.VPC_Custom_Skin #stepsline:before {
    transform: translateY(-2px);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-4
    #stepsline {
    transform: translateX(-14vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-5
    #stepsline {
    transform: translateX(-28vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-6
    #stepsline {
    transform: translateX(-42vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-7
    #stepsline {
    transform: translateX(-56vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-8
    #stepsline {
    transform: translateX(-70vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-9
    #stepsline {
    transform: translateX(-84vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-10
    #stepsline {
    transform: translateX(-98vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-11
    #stepsline {
    transform: translateX(-112vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-12
    #stepsline {
    transform: translateX(-126vw);
  }

  #vpc-container.VPC_Custom_Skin .stephelper {
    /*min-width: 20vw;*/
    min-width: 14vw;
    position: relative;
    height: 1px;
    display: table-cell;
  }

  #vpc-container.VPC_Custom_Skin .stephelper span {
    position: absolute;
    width: 56px;
    height: 56px;
    margin: auto;
    left: -0.5px;
    right: 0;
    top: unset;
    transform: translateY(-50%);
  }

  #vpc-container.VPC_Custom_Skin.loaded
    #stepsline.start
    .stephelper.final
    .step:after,
  #vpc-container.VPC_Custom_Skin.loaded
    #stepsline.start
    .stephelper:last-child
    .step:after {
    animation: none !important;
    width: 0% !important;
    background: #ffffff !important;
    opacity: 0 !important;
    height: 0 !important;
  }

  #vpc-container.VPC_Custom_Skin.loaded
    #stepsline.start
    .stephelper.last:after {
    display: none;
  }

  #debe-custom-skin .vpc-group-name {
    font-size: 1.1em;
    text-align: left;
  }

  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(49% - 30px) !important;
  }

  #debe-custom-skin
    .vpc-options.optiontype-radio
    .vpc-single-option-wrap
    input[type='radio']
    + label {
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 500;
    margin-bottom: 15px;
  }

  #debe-custom-skin
    .vpc-options.optiontype-radio
    .vpc-single-option-wrap
    label
    span {
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 500;
    margin-bottom: 0px;
  }

  #debe-custom-skin
    .vpc-options.optiontype-radio
    .vpc-single-option-wrap.radio
    img.radio-icon {
    max-width: 130px !important;
    height: auto !important;
    max-height: 90px !important;
    margin-left: 24px;
    margin-top: 6px;
    display: block;
    /*float: left;*/
    margin-bottom: 10px;
  }
}

@media all and (max-width: 440px) {
  .modal-configurator p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 424px) {
  .modal-configurator p {
    font-size: 13px;
  }

  #vpc-container.VPC_Custom_Skin #stepsline {
    padding-right: 40vw;
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-3
    #stepsline {
    transform: translateX(-20vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-4
    #stepsline {
    transform: translateX(-40vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-5
    #stepsline {
    transform: translateX(-60vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-6
    #stepsline {
    transform: translateX(-80vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-7
    #stepsline {
    transform: translateX(-100vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-8
    #stepsline {
    transform: translateX(-120vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-9
    #stepsline {
    transform: translateX(-140vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-10
    #stepsline {
    transform: translateX(-160vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-11
    #stepsline {
    transform: translateX(-180vw);
  }

  #vpc-container.VPC_Custom_Skin
    div#stepswitcher.active-debevpcgroup-12
    #stepsline {
    transform: translateX(-200vw);
  }

  #vpc-container.VPC_Custom_Skin .stephelper {
    min-width: 20vw;
  }

  #vpc-container.VPC_Custom_Skin .stephelper span {
    left: 0.5px;
  }

  #debe-custom-skin .vpc-options.optiontype-icon .vpc-single-option-wrap {
    width: calc(49% - 20px) !important;
    margin-left: 10px;
    margin-right: 10px;
  }

  #debe-custom-skin .vpc-component .vpc-options {
    padding-left: 7px;
    padding-right: 7px;
  }

  #debe-custom-skin .vpc-component .vpc-options .component-info {
    padding-left: 8px;
    padding-right: 8px;
  }

  #debe-custom-skin .vpc-component .vpc-options.optiontype-icon {
    padding-left: 0;
    padding-right: 0;
  }

  #debe-custom-skin
    .vpc-component
    .vpc-options.optiontype-icon
    .component-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  #debe-custom-skin .vpc-group-name {
    font-size: 14px;
  }

  #debe-custom-skin
    .vpc-component
    .vpc-options.optiontype-icon
    .vpc-group-name {
    margin: 0 8px 15px 8px;
    width: calc(100% - 16px);
  }

  #debe-custom-skin
    .vpc-options.optiontype-radio
    .vpc-single-option-wrap
    label
    span {
    font-weight: normal;
  }
}

@media all and (max-width: 374px) {
  #debe-custom-skin .vpc-options.optiontype-icon label.custom span {
    font-weight: 400;
  }

  #debe-custom-skin .debe-step-btn-row button {
    min-width: 130px;
  }
}

/*END RESPONSIVE*/

/*RESPONSIVE COMPONENT HEADER*/
@media all and (max-width: 1440px) {
  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 170px);
    margin: 0 50px 0 120px;
  }

  #debe-custom-skin .vpc-component .header-selected .cname,
  #debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
    margin-bottom: 10px;
  }

  #debe-custom-skin .vpc-component .vpc-component-header .vpc-selected-icon {
    right: 15px;
  }

  #debe-custom-skin
    .vpc-component
    .vpc-component-header
    .vpc-selected-icon
    img {
    max-width: 50px;
    max-height: 50px;
  }

  #debe-custom-skin .debechild .vpc-component .vpc-component-header-icon {
    height: 40px;
    width: 30px;
    font-size: 40px;
  }

  #debe-custom-skin .debechild .vpc-component.filled .vpc-component-header-icon,
  #debe-custom-skin
    .debechild
    .vpc-component.prefilled
    .vpc-component-header-icon {
    top: inherit;
    bottom: -8px;
    height: 30px;
    width: 30px;
    font-size: 25px;
  }
}

@media all and (max-width: 1200px) {
  #debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
    max-width: 90px;
    max-height: 60px;
    left: 15px;
  }

  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 140px);
    margin: 0 50px 0 90px;
  }
}

@media all and (max-width: 1160px) {
  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 50px);
    margin: 0 50px 0 0px;
    padding-left: 0;
  }

  #debe-custom-skin .vpc-component .header-selected .cname {
    min-height: 60px;
    margin-left: 100px;
    font-weight: bold;
    font-size: 15px;
  }

  #debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
    font-weight: normal;
  }
}

@media all and (max-width: 991px) {
  #debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
    max-width: 135px;
    max-height: 85px;
    left: 15px;
  }

  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 185px);
    margin: 0 50px 0 135px;
    padding-left: 10px;
  }

  #debe-custom-skin .vpc-component .header-selected .cname {
    min-height: 0px;
    margin-left: 0px;
    font-weight: bold;
  }

  #debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
    font-weight: 500;
  }
}

@media all and (max-width: 767px) {
  #debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
    max-width: 120px;
    max-height: 80px;
    left: 15px;
  }

  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 170px);
    margin: 0 50px 0 120px;
    padding-left: 10px;
  }
}

@media all and (max-width: 560px) {
  #debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
    max-width: 90px;
    max-height: 60px;
    left: 15px;
  }

  #debe-custom-skin .vpc-component .header-selected {
    width: calc(100% - 40px);
    margin: 0 40px 0 0px;
    padding-left: 0;
  }

  #debe-custom-skin .vpc-component .header-selected .cname {
    min-height: 54px;
    margin-left: 100px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  #debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
    font-weight: normal;
    line-height: 1.2;
    font-size: 13px;
  }

  #debe-custom-skin
    .vpc-component
    .vpc-component-header
    .vpc-selected-icon
    img {
    max-width: 40px;
    max-height: 40px;
  }
}

@media all and (max-width: 424px) {
  #debe-custom-skin .vpc-component .vpc-component-header {
    padding: 0 10px;
    min-height: initial;
  }

  #debe-custom-skin .vpc-component .vpc-component-header img.component-icon {
    max-width: 78px;
    max-height: 54px;
    left: inherit;
    right: 10px;
  }

  #debe-custom-skin .vpc-component .header-selected {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  #debe-custom-skin .vpc-component .header-selected .cname {
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    margin-left: 0;
    min-height: 48px;
    margin-right: 90px;
  }

  #debe-custom-skin .vpc-component .header-selected .vpc-selected-outer {
    line-height: 1.2;
    font-size: 13px;
    font-weight: normal;
    min-height: initial;
    max-width: calc(100% - 50px);
  }

  #debe-custom-skin .vpc-component .vpc-component-header .vpc-selected-icon {
    top: inherit;
    bottom: 0px;
    height: auto;
    right: 10px;
    min-height: initial;
    z-index: 1;
  }

  #debe-custom-skin
    .vpc-component
    .vpc-component-header
    .vpc-selected-icon
    img {
    max-width: 45px;
    max-height: 30px;
  }

  #debe-custom-skin .debechild .vpc-component .vpc-component-header-icon {
    right: 10px;
    top: inherit;
    bottom: 0;
    height: 30px;
    width: 30px;
    font-size: 30px;
    line-height: 30px;
  }

  #debe-custom-skin .debechild .vpc-component.filled .vpc-component-header-icon,
  #debe-custom-skin
    .debechild
    .vpc-component.prefilled
    .vpc-component-header-icon {
    height: 25px;
    width: 25px;
    font-size: 25px;
    line-height: 25px;
    bottom: 0;
    right: 12px;
  }
}

@media all and (max-width: 374px) {
  #debe-custom-skin .vpc-component .header-selected .cname {
    font-size: 13px;
  }
}

body.administrator #stepswitcher .vpc-action-buttons {
  display: block;
}

body.administrator #stepswitcher .vpc-action-buttons #vpc-add-to-cart {
  display: block !important;
}

/* ── ACF Theme: Button Overrides ─────────────────────────── */
.modal-configurator .button,
#modal-configurator-close,
#debe-custom-skin .debe-step-btn-row button,
#debe-custom-skin .debe-step-btn-row button.debe-next-step,
#debe-custom-skin .debe-step-btn-row button.debe-prev-step,
#debe-custom-skin #vpc-add-to-cart {
  /* display: inline-flex !important; */
  /* align-items: center; */
  /* justify-content: center; */
  /* gap: 0.5rem; */
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  /* cursor: pointer; */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  /* white-space: nowrap; */
  /* background: rgb(var(--btn-bg)); */
  /* color: rgb(var(--btn-text)) !important; */
}
.modal-configurator .button:hover,
#modal-configurator-close:hover,
#debe-custom-skin .debe-step-btn-row button:hover,
#debe-custom-skin .debe-step-btn-row button.debe-next-step:hover,
#debe-custom-skin .debe-step-btn-row button.debe-prev-step:hover,
#debe-custom-skin #vpc-add-to-cart:hover {
  /* background: rgb(var(--btn-bg-hover)); */
  /* color: rgb(var(--btn-text)) !important; */
  transform: translateY(-1px);
}
