/**
 * widgetForm.css — Estilos del Widget Formulario (cotizador)
 * Migración React → Vanilla JS (tarea #444)
 * Combina main.chunk.css + estilos nativos para <input type="range">
 */

/* ========================================================================
   NATIVE RANGE INPUT (reemplaza react-input-range)
   ======================================================================== */
.input-range {
  position: relative;
  width: 100%;
  height: 20px;
}
.input-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.input-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid #000;
  cursor: pointer;
}
.input-range input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid #000;
  cursor: pointer;
}
.input-range input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ccc;
  border-radius: 2px;
}
.input-range input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
}

/* Legacy classes from react-input-range (por si alguna referencia queda) */
.input-range__slider,
.input-range__track--active {
  background-color: #000;
}
.input-range__slider {
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  margin-left: -10px;
  margin-top: -10px;
}
.input-range__label-container {
  display: none;
}
.input-range__track {
  position: absolute;
}
.input-range__slider:active {
  transform: none;
}

/* ========================================================================
   FIELD ERRORS
   ======================================================================== */
.range-field-error {
  text-align: right;
  margin-top: -60px;
}
.text-field-error {
  text-align: right;
  margin-top: -20px;
}

/* ========================================================================
   SELECT FIELD
   ======================================================================== */
.ps-select-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
.ps-select-wrapper .select-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.ps-select-wrapper .select-label.is-active {
  color: #333;
  font-weight: 500;
}
.ps-select-wrapper select.form-control {
  appearance: none;
  -webkit-appearance: none;
  height: auto;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
}
.ps-select-wrapper select.form-control:focus {
  outline: none;
  border-color: #ffd102;
  box-shadow: 0 0 0 2px rgba(255, 209, 2, 0.25);
}

/* ========================================================================
   SPINNER
   ======================================================================== */
.lds-ripple {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #000;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  to {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* ========================================================================
   STEP WIZARD
   ======================================================================== */
.widget_form .stepwizard {
  margin-bottom: 30px;
}
.widget_form .stepwizard-step {
  width: 100%;
  display: block;
}
.widget_form .stepwizard-step:first-child a:before,
.widget_form .stepwizard-step:first-child span:before {
  display: none;
}
.widget_form .stepwizard-step p {
  margin-top: 0;
  color: #666;
}
.widget_form .stepwizard-row {
  display: table-row;
}
.widget_form .stepwizard {
  display: table;
  width: 100%;
  position: relative;
}
.widget_form .stepwizard .setup-panel {
  padding-right: 5%;
  display: table;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .stepwizard .setup-panel .btn.disabled,
.widget_form .stepwizard .setup-panel .btn[disabled],
.widget_form .stepwizard .setup-panel fieldset[disabled] .btn {
  opacity: 1 !important;
  color: #bbb;
}
.widget_form .stepwizard-step {
  text-align: center;
  position: relative;
}
.widget_form .stepwizard-step:first-child:before {
  display: none;
}
.widget_form .btn-style {
  cursor: pointer;
  border: none;
  padding: 0;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.widget_form .btn-style:after {
  content: "";
  display: block;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  height: 26px;
  width: 26px;
}
.widget_form .laststep-textPolicy {
  margin-bottom: 1.5rem;
}
.widget_form .btn-style:before {
  content: "";
  width: 100%;
  background-color: #ccc;
  display: block;
  position: absolute;
  right: 0.3125rem;
  z-index: 0;
  height: 2px;
  top: 10px;
}
.widget_form .btn-style:focus {
  box-shadow: none;
}
.widget_form .btn-active:after {
  background-color: #ffd000;
  border-color: #ffd000;
}
.widget_form .btn-disable:after {
  background-color: #ccc;
  border-color: #ccc;
}
.widget_form .bar-active:before {
  background-color: #ffd000;
}
.widget_form .titleStep {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.widget_form .stepwizard-step a span.number-step,
.widget_form .stepwizard-step span span.number-step {
  position: absolute;
  font-weight: 100;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 20px;
  right: 2px;
}
.widget_form .stepwizard-step a span.number-step .number,
.widget_form .stepwizard-step span span.number-step .number {
  font-size: 13px;
}
.widget_form .stepwizard-step.current a span.number-step .number,
.widget_form .stepwizard-step.current span span.number-step .number {
  font-weight: 700;
  line-height: 24px;
}
.widget_form .stepwizard-step a span.number-step .check,
.widget_form .stepwizard-step span span.number-step .check {
  display: none;
  transform: rotate(45deg);
  height: 13px;
  width: 6px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  margin-left: 8px;
  margin-top: 3px;
}
.widget_form .stepwizard-step:not(.current) a.btn-active span.number-step .number,
.widget_form .stepwizard-step:not(.current) span.btn-active span.number-step .number {
  display: none;
}
.widget_form .stepwizard-step:not(.current) a.btn-active span.number-step .check,
.widget_form .stepwizard-step:not(.current) span.btn-active span.number-step .check {
  display: block;
}
.widget_form .step-counter .items .index-counter:after {
  content: "/";
}
.widget_form [type="reset"],
.widget_form [type="submit"],
.widget_form button,
.widget_form html [type="button"] {
  -webkit-appearance: initial;
}

/* ========================================================================
   WIDGET FORM - CONTAINER
   ======================================================================== */
.widget_form .container {
  width: 100%;
}
.widget_form .container .section-title {
  flex-basis: auto;
}
.widget_form .container .stepper {
  background-color: #f8f7f7;
  padding: 1.25rem;
}
.widget_form .container .stepper .step-counter .items span {
  font-size: 1rem;
  line-height: 1.6875rem;
  letter-spacing: 0.035625rem;
}
.widget_form .container .stepper .section-title {
  padding: 1.75rem;
}
.widget_form .container .stepper .section-title h2 {
  text-align: left !important;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.044375rem;
  text-transform: uppercase;
}
.widget_form .container .stepper .section-title p {
  text-align: left !important;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0;
}
.widget_form .container .stepper .panel-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.widget_form .container .stepper .panel-body .form-group {
  width: 100%;
  margin-bottom: 0;
}
.widget_form .container .stepper .panel-body .form-group div .container-check-input {
  background-color: #fff;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  border: none;
  box-shadow: 0 0 5px 0 #ccc;
}
.widget_form .container .stepper .panel-body-service .form-group {
  width: 10rem;
  margin: 0.1875rem;
}
.widget_form .container .stepper .panel-body-service .form-group div .container-check-input {
  width: 10rem;
  height: 11.25rem;
  padding: 0;
  border-radius: 0.3125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.widget_form .container .stepper .panel-body-service .form-group div .container-check-input .checkbox-icon {
  font-size: 3.5rem;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.widget_form .container .stepper .panel-body-service .form-group div .container-check-input .checkbox-icon:before {
  display: none;
}
.widget_form .container .stepper .panel-body-location .form-group .form-group.input-group {
  margin-bottom: 2rem;
}
.widget_form .container .stepper .panel-body-location .form-group .form-group.input-group span:before {
  display: none;
}
.widget_form .container .stepper .panel-body-location .form-group .form-group.input-group span img {
  margin-bottom: 1rem;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group {
  width: 100%;
  margin: 0 0 2rem;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box {
  width: 100%;
  text-align: center;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box div {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box div .add,
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box div .less {
  cursor: pointer;
  z-index: 2;
  margin: 0 1rem;
  border: 0.0625rem solid #000;
  font-size: 2.25rem;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box div .money {
  background: none;
  border: none;
  border-bottom: 0.0625rem solid #000;
  text-align: right;
  font-size: 1.375rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  width: 6.875rem;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box div .euro {
  font-size: 1.375rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  margin-left: 0.5rem;
}
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box .rangeslider,
.widget_form .container .stepper .panel-body.panel-body-collection .form-group .cro-simulate-box .rangeslider input {
  width: 100%;
}
.widget_form .container .stepper .panel-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.widget_form .container .stepper .panel-buttons .nextBtn {
  margin-bottom: 1rem;
  width: 100%;
}
.widget_form .container .stepper .panel-buttons .nextBtn div span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .container .stepper .panel-buttons .nextBtn div span span {
  font-size: 1.2rem;
  margin-left: 1rem;
  transform: rotate(180deg);
}
.widget_form .container .stepper .panel-buttons .call-center {
  font-size: 0.875rem;
  width: 100%;
}

/* ========================================================================
   WIDGET BANNER
   ======================================================================== */
.widget_form .container .widget-banner {
  position: relative;
  background-color: #ffd000;
  padding: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .container .widget-banner div {
  width: 20.3125rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.widget_form .container .widget-banner div p {
  margin-bottom: 0.5rem;
}
.widget_form .container .widget-banner div p:first-child {
  font-size: 2.5rem;
  line-height: 3.1875rem;
  letter-spacing: 0.010625rem;
  width: 100%;
}
.widget_form .container .widget-banner div p:nth-child(2) {
  font-size: 1rem;
  line-height: 1.6875rem;
  letter-spacing: 0.035625rem;
  width: 100%;
}
.widget_form .container .widget-banner div p:nth-child(3) {
  font-size: 4.375rem;
  line-height: 1.59375rem;
  letter-spacing: 0.0090625rem;
  width: 10rem;
}
.widget_form .container .widget-banner div p:nth-child(4) {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.044375rem;
  width: 8.75rem;
  margin-left: 1rem;
}
.widget_form .container .widget-banner div p:nth-child(5) {
  font-size: 0.75rem;
  line-height: 1.6875rem;
  letter-spacing: 0.026875rem;
  width: 100%;
}

/* ========================================================================
   WIDGET FORM - MAIN
   ======================================================================== */
.widget_form {
  background-color: #f8f7f7;
  padding: 1.75rem 1.25rem 1.25rem;
  min-height: 300px;
  position: relative;
}
.widget_form .step-counter .items span {
  font-size: 1rem;
  line-height: 1.6875rem;
  letter-spacing: 0.035625rem;
}
.widget_form .section-title {
  padding: 1.75rem;
}
.widget_form .form-wrapper.row.pack {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.widget_form .section-title h2,
.widget_form .section-title h3,
.widget_form .section-title p.section-title__title {
  text-align: left !important;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.044375rem;
  text-transform: none;
}
.widget_form .section-title p {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0;
}
.widget_form .panel-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.widget_form .panel-body .form-group {
  width: 100%;
  margin-bottom: 0;
}
.widget_form .panel-body .form-group div .container-check-input {
  background-color: #fff;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
  border: none;
  box-shadow: 0 0 5px 0 #ccc;
  height: 50px;
  padding-left: 50px;
  font-size: 16px;
}
.widget_form .panel-body .form-group div .container-check-input .checkmark {
  height: 30px;
  width: 30px;
}
.widget_form .container-check-input .checkmark:after {
  left: 10px !important;
  top: 2px !important;
}
@media (hover: hover) {
  .widget_form .panel-body .form-group div .container-check-input:hover {
    background-color: #ffd000;
  }
}
.widget_form .panel-body .form-group div .container-check-input.selected {
  background-color: #ffd000;
}
.widget_form .panel-body-service .form-group {
  width: 10rem;
  margin: 0.1875rem;
}
.widget_form .panel-body-service .form-group div .container-check-input {
  width: 10rem;
  height: 11.25rem;
  padding: 0;
  border-radius: 0.3125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.widget_form .panel-body-service .form-group div .container-check-input .checkbox-icon {
  font-size: 3.5rem;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.widget_form .panel-body-service .form-group div .container-check-input .checkbox-icon:before {
  display: none;
}
.widget_form .panel-body-location .form-group .form-group.input-group {
  margin-bottom: 2rem;
}
.widget_form .panel-body-location .form-group .form-group.input-group span:before {
  display: none;
}
.widget_form .panel-body-location .form-group .form-group.input-group span img {
  margin-bottom: 1rem;
}
.widget_form .panel-body.panel-body-collection .form-group {
  width: 100%;
  margin: 0 0 2rem;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box {
  width: 100%;
  text-align: center;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box div {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box div .add,
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box div .less {
  cursor: pointer;
  z-index: 2;
  margin: 0 1rem;
  border: 0.0625rem solid #000;
  font-size: 2.25rem;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box div .money {
  background: none;
  border: none;
  border-bottom: 0.0625rem solid #000;
  text-align: right;
  font-size: 1.375rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  width: 6.875rem;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box div .euro {
  font-size: 1.375rem;
  line-height: 1.6875rem;
  letter-spacing: 0.025rem;
  margin-left: 0.5rem;
}
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box .rangeslider,
.widget_form .panel-body.panel-body-collection .form-group .cro-simulate-box .rangeslider input {
  width: 100%;
}
.widget_form .panel-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.widget_form .panel-buttons .nextBtn {
  margin-bottom: 1rem;
  width: 100%;
}
.widget_form .panel-buttons .nextBtn div span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget_form .panel-buttons .nextBtn div span span {
  font-size: 1.2rem;
  margin-left: 1rem;
  transform: rotate(180deg);
}
.widget_form .panel-buttons .call-center {
  font-size: 0.875rem;
  width: 100%;
}
.widget_form .checkbox-text {
  margin: 0;
  padding-right: 10px;
}
.widget_form span.checkbox-icon img {
  max-width: 50px;
}
.widget_form .form-wrapper form.generic-form .ps-checbox .checkbox-container .fontNormal.error {
  margin-bottom: 20px;
}
.widget_form .form-wrapper form.generic-form .ps-checbox .checkbox-container .errorMessage {
  margin-top: -20px;
}
.widget_form .button-inline .ps-input.has-float-label input.form-control {
  border-radius: 6rem;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (min-width: 576px) {
  .widget_form .panel-buttons .call-center,
  .widget_form .panel-buttons .nextBtn {
    width: auto;
  }
  .widget_form .panel-body .form-group {
    width: 230px;
    margin-right: 2rem;
  }
  .widget_form .panel-body .form-group div .container-check-input {
    width: 230px;
  }
  .widget_form .panel-body-service .form-group {
    width: 10rem;
    margin: 0.3rem;
  }
  .widget_form .panel-body-service .form-group div .container-check-input {
    width: 10rem;
  }
}
@media (min-width: 768px) {
  .widget_form .panel-buttons.button-inline {
    width: auto;
    margin-left: -40px;
    margin-top: -2px;
    z-index: 3;
  }
  .widget_form .panel-buttons.button-inline .linkComponent {
    margin-top: 0;
  }
  .widget_form .button-inline .ps-input.has-float-label input.form-control {
    padding-right: 45px;
    padding-left: 20px;
  }
  .widget_form .panel-buttons.button-inline .btn {
    padding: 0.7rem 3rem;
  }
}

/* ========================================================================
   ICON ROTATE & ERRORS
   ======================================================================== */
.icon-rotate {
  display: flex;
  align-items: center;
}
.icon-rotate > span {
  padding: 0;
  transform: rotate(180deg);
}
.single-error input.error {
  border-color: #d94d4d !important;
  margin-bottom: 50px;
}
.single-error .errorMessage {
  color: #d94d4d;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1;
}
.single-error .errorMessage:before {
  color: #d94d4d;
  font-size: 1rem;
  margin-right: 0.5rem;
  content: "\2715";
}
.single-error {
  border-color: #d94d4d !important;
}

/* ========================================================================
   LOADING BLOCK
   ======================================================================== */
.form-loading-block-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  min-height: 280px;
}
.form-loading-text-widget {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0;
}

/* ========================================================================
   COMPONENT PACKAGE
   ======================================================================== */
.widget-package .widget-wrap {
  border-radius: 1rem;
  padding: 1.75rem;
}
.widget-package .widget-button {
  display: none;
}
.widget-package .widget-button a {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  text-decoration: none;
  border-radius: 1rem;
  padding: 6px 20px;
  transition: 0.3s;
}
.widget-package .widget-button a:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.widget-package dialog {
  background-color: #fff;
  width: 100%;
  min-height: 100px;
}
.widget-package dialog[open] {
  position: fixed;
  width: 85%;
  z-index: 999;
  top: 50px;
  padding: 1.5rem;
  color: #000;
  border: 0;
}
.widget-package dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
#widget-popup .dialog-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: Poppins, sans-serif;
}
#widget-popup h4 {
  margin-top: 1.5rem;
}
.packPrice,
.widget-image-mobile {
  display: none;
}
@media only screen and (max-width: 960px) {
  .widget-wrap .row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .widget-package .widget-description p {
    display: none;
  }
  .widget-package .widget-button,
  .widget-package .widget-description h4 {
    display: block;
  }
  .widget-package {
    margin-bottom: 1rem;
  }
  .widget-wrap .row {
    flex-direction: row;
    align-items: center;
  }
  .widget-image {
    display: none;
  }
  .widget-image-mobile {
    display: block;
  }
}

/* ========================================================================
   WIDGET FORM NEW SKIN
   ======================================================================== */
.widget_form.widget_form_new {
  background-color: #fff;
  box-shadow: 0 0.2rem 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
  border-radius: 1.125rem;
}
.widget_form .section-title {
  padding: 0.5rem 1.75rem;
}
.widget_form.widget_form_new .section-title p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0;
}
.widget_form.widget_form_new .panel-body {
  justify-content: center;
}
.widget_form.widget_form_new .panel-body .form-group {
  margin: 1rem;
}
.widget_form.widget_form_new .panel-body .ps-input.form-group {
  margin: 1rem 0;
}
.widget_form.widget_form_new .ps-input.has-float-label > .icon + .form-control {
  padding-left: 0;
}
.widget_form.widget_form_new .panel-body .form-group div .container-check-input {
  height: 10rem;
  border-radius: 0.3125rem;
  padding: 0;
  flex-direction: column;
  display: flex;
  justify-content: center;
  outline: 0.0625rem solid #ddd;
  cursor: pointer;
  transition: background-color 0.5s ease, outline-color 0.5s ease;
  font-weight: 700;
}
.widget_form.widget_form_new .panel-body .form-group div .container-check-input:has(input:checked),
.widget_form.widget_form_new .panel-body .form-group div .container-check-input:has(input:focus) {
  background-color: #fdc000;
  outline-color: #000;
}
.widget_form.widget_form_new .panel-body-service .form-group div .container-check-input .checkbox-icon {
  height: auto;
}
.widget_form.widget_form_new .step-counter {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.widget_form.widget_form_new .step-counter .items span {
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}
.widget_form.widget_form_new .stepwizard .setup-panel {
  padding: 0;
}
.widget_form.widget_form_new .stepwizard-step-bar {
  height: 3px;
  background-color: #ccc;
  width: 100%;
}
.widget_form.widget_form_new .stepwizard-step-bar.selected {
  background-color: #fdc000;
}
.widget_form.widget_form_new button.step_button {
  margin-right: 15px;
  border: 0;
  background-color: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.widget_form.widget_form_new .stepwizard {
  width: 90%;
  margin: 0 auto 1rem;
}
.widget_form.widget_form_new .widget-package .widget-wrap {
  padding: 1rem;
}
.widget_form.widget_form_new .widget-wrap.bg-primary {
  background-color: #f2f8f8 !important;
  border: 1px solid #b0dde2;
}
.widget_form.widget_form_new input.form-control {
  border-radius: 5px;
}
.widget_form.widget_form_new .button-inline .ps-input.has-float-label input.form-control {
  border-radius: 5px;
  border-color: #bababa !important;
}
.widget_form.widget_form_new .widget-package .widget-wrap {
  border-radius: 5px;
}
.widget_form.widget_form_new #widget-popup {
  background-color: #f2f8f8 !important;
  border: 1px solid #b0dde2;
  border-radius: 5px;
}
.widget_form.widget_form_new .widget-package .description p {
  display: block;
}
.widget_form.widget_form_new .widget-package .widget-button a {
  background-color: unset;
  color: #637a7c;
  border: 0;
  padding: 0;
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.widget_form.widget_form_new .widget-package .widget-button a:hover {
  color: #ffd000;
}
.widget_form.widget_form_new .text-field-error {
  margin-top: -10px;
}
.widget_form.widget_form_new .checkbox-text {
  padding: 10px 0;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}
.widget_form.widget_form_new .widget_form_new_icon {
  max-width: 48px;
  width: 100%;
  height: auto;
}
.widget_form.widget_form_new .widget_form_new_title {
  display: flex;
  grid-gap: 15px;
  gap: 15px;
  margin-bottom: 0.8rem;
}
.widget_form.widget_form_new .dialog-close {
  cursor: pointer;
}
@media only screen and (max-width: 610px) {
  .widget_form.widget_form_new .panel-body .form-group div .container-check-input {
    width: 100%;
    flex-direction: row;
    grid-gap: 0.3rem;
    gap: 0.3rem;
    height: 100px;
    box-shadow: 0 0.375rem 0.25rem rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    justify-content: left;
  }
  .widget_form.widget_form_new .panel-body .form-group {
    margin: 0.5rem 0;
    width: 100%;
  }
  .widget_form.widget_form_new .panel-body-service .form-group div .container-check-input .checkbox-icon {
    max-width: 32px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .widget_form.widget_form_new {
    padding: 1.1rem;
  }
  .widget_form.widget_form_new .widget-form__radio {
    width: 1.125rem;
    height: 1.125rem;
    position: relative;
    border-radius: 50%;
    border: 0.125rem solid #000;
  }
  .widget_form.widget_form_new .widget-form__radio:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  .widget_form.widget_form_new .container-check-input input:checked ~ .widget-form__radio:before {
    background-color: #000;
    width: 0.5rem;
    height: 0.5rem;
  }
  .widget_form.widget_form_new .stepwizard {
    width: 100%;
  }
  .widget_form.widget_form_new .form-group {
    margin: 0.5rem 0;
  }
  .widget_form.widget_form_new .form-wrapper.row.pack {
    padding-left: 0;
    padding-right: 0;
  }
  .widget_form.widget_form_new .linkComponent {
    width: 95%;
  }
  .widget_form.widget_form_new .linkComponent .btn {
    width: 100%;
  }
  .widget_form.widget_form_new .linkComponent .btn span.text {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .widget_form_new_hide_mobile {
    display: none;
  }
}

/* ========================================================================
   MISC
   ======================================================================== */
.box-inputs.box-select-inputs {
  color: #4c4c4c;
}
.custom-button-dropdown-toggle {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: 0;
  color: #4c4c4c;
}
.widget_form:not(.widget_form_new) form .switch-field .switch .slider {
  border: 1px solid #4c4c4c !important;
}
.switch .slider {
  pointer-events: none !important;
}
.switch .values {
  pointer-events: auto !important;
  top: 0;
}
.widget_form .ps-input.has-float-label select.form-control {
  appearance: none;
  -webkit-appearance: none;
  height: 3rem;
  border-radius: 0;
  border: 1px solid #4c4c4c !important;
  color: #4c4c4c;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
  padding: 0 2.5rem 0 0.75rem;
  text-align: left;
  cursor: pointer;
  display: block;
  width: 100%;
}
.widget_form .ps-input.has-float-label select.form-control:focus {
  border: 1px solid #4c4c4c !important;
  box-shadow: unset;
  outline: none;
}
.widget_form .button-inline .ps-input.has-float-label select.form-control {
  border-radius: 6rem;
}
.widget_form.widget_form_new .ps-input.has-float-label select.form-control {
  border-radius: 5px;
  border: 1px solid #bababa !important;
}

/* ========================================================================
   FORM FIELD EZTIA (honeypot)
   ======================================================================== */
.form-field-eztia {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}


/* ========================================================================
   Selector time
   ======================================================================== */
   body:not(.user-is-tabbing) select:focus {
    outline:unset;
    background-color: #f4f4f4;
    border: 2px solid #86888C;
}

.time-call-option:hover{
    background-color: #f4f4f4;
}

.time-call-option{
    height: 3rem;
    background-color: white;
    border: 1px solid #d3d4d3;
    border-width: 0 1px;
}

.time-call option::checkmark {
    display: none; 
}

.time-call{
     appearance: base-select; 
    width: 100%;
    padding: 1rem 4rem;
    font-size:18px;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #86888C;
    border-radius: .5rem;
    background-color: #f4f4f4;
    color: #B6B7B7;
    height: 3rem;
    overflow:hidden;
    display: flex;
    align-items: center;
    margin: 0px !important;
    margin-top:.75rem !important;
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.time-call::picker-icon {
    width: 3rem;
    text-align: center;
    position: absolute;
    height: calc(3rem - 4px);
    right: calc(0.0rem - 4px);
    line-height: calc(3rem - 4px);
    margin: 0;
    border: 2px solid #86888C;
    content: "\f107";
    font-family: 'FontAwesome';
    background-color:#d3d4d3;
    border-radius:0 .5rem .5rem 0;
    color:#3a3c3f;
}

.time-call:open::picker-icon {
    content: "\f106";
    
}

.time-call:focus{
    border: 0px;
}

@media (max-width: 768px) {
    .time-call::picker-icon {
        right: calc(0.1rem - 4px);
    }
}