@charset "UTF-8";
/*----------------------------------------------------

1. Global Area 
2. Header Section
3. Wizard Form Styles
4. Mobile Responsive Adjustments
=====================================================================*/
/*=========
Font load
===========*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*=========
Color Code
===========*/
:root {
  --primary-color: #d83a2e;
  --secondary-color: #f5a800;
  --text-color: #222221;
  --bg-color: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero-section {
  background: var(--primary-color);
  color: var(--bg-color);
}
header {
  background: var(--secondary-color);
  padding: 15px 0;
}
.sec-pasos{
  background: var(--primary-color);
  padding: 15px 0;
  margin-bottom: 30px;
  border-radius: 8px;
}
.hero-section h1,
.hero-section p {
  color: var(--bg-color);
}
.gradient-footer {
  background: linear-gradient(180deg, #ffffff00 0%, #ffffff 33%);
  height: 120px !important;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/*global area*/
/*----------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  font-family: var(--font-family);
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-color);
}

::-moz-selection {
  color: var(--bg-color);
  background-color: var(--primary-color);
}

::selection {
  color: var(--bg-color);
  background-color: var(--primary-color);
}

::-moz-selection {
  color: var(--bg-color);
  background-color: var(--primary-color);
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #282828 url("../img/preloader.gif") no-repeat center center;
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  overflow: hidden;
}

button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
.wizard-form-field select.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.relative-position {
  position: relative;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-family);
}

/*------------------------------------------------------------------------------------------------------------------*/
/*    default pre style
/*------------------------------------------------------------------------------------------------------------------*/
.pb-100 {
  padding-bottom: 100px;
}

.boxed-version {
  max-width: 100%;
  margin: auto;
  position: relative;
}
.boxed-version .wizard-forms {
  zoom: 0.8;
}
.boxed-version .form-content {
  padding-right: 2%;
  padding-left: 60px;
}
.boxed-version .actions {
  right: 30px;
}

.dark-version.dark-version {
  background-color: #1a1a1a;
  color: #6c757d;
}
.dark-version.dark-version .wrapper,
.dark-version.dark-version .has-float-label label {
  background-color: #1a1a1a;
}
.dark-version.dark-version label,
.dark-version.dark-version p,
.dark-version.dark-version span {
  color: #6c757d !important;
}
.dark-version.dark-version button,
.dark-version.dark-version input,
.dark-version.dark-version optgroup,
.dark-version.dark-version select,
.dark-version.dark-version textarea {
  background-color: #1a1a1a !important;
}

.wrapper {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  background-color: var(--bg-color);

}

.wizard {
  position: relative;
}

.steps {
  top: 110px;
  z-index: 9;
  position: absolute;
}

.steps li {
  display: inline-block;
  padding-right: 270px;
}
.steps li:last-child {
  padding-right: 0;
}
.steps li a {
  width: 50px;
  color: #fff;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  display: inline-block;
  border: 2px solid #e3e3e3;
}
.steps li.first a {
  border: 2px solid var(--primary-color);
}
.steps li.checked a, .steps li.current a {
  border: 2px solid var(--primary-color);
}
.steps li.checked a:after, .steps li.current a:after {
  top: 0;
  left: 13px;
  font-size: 20px;
  color: var(--primary-color);
  content: "";
  font-weight: 900;
  position: absolute;
  font-family: "Font Awesome 5 Free";
}

.form-content {
  width: 75%;
  padding-top: 65px;
  padding-left: 51px;
  padding-right: 51px;
}

.form-header {
  text-align: center;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
.form-row .form-holder {
  width: 50%;
  margin-right: 30px;
}
.form-row .form-holder:last-child {
  margin-right: 0;
}
.form-row .form-holder.w-100 {
  width: 100%;
  margin-right: 0;
}
.form-row .select {
  width: 50%;
  margin-right: 30px;
}
.form-row .select .form-holder {
  width: 100%;
  margin-right: 0;
}

.form-holder {
  position: relative;
}
.form-holder i {
  position: absolute;
  bottom: 7px;
  right: 0;
  font-size: 17px;
}

.form-control {
  height: 37px;
  border: none;
  border-bottom: 2px solid #e6e6e6;
  width: 100%;
  color: #666;
}
.form-control:focus {
  border-color: #e9e0cf;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #999;
}
select.form-control option[value=""][disabled] {
  display: none;
}

.actions {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
}
.actions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.actions li {
  margin: 0 10px;
}
.actions li span,
.actions li button {
  height: 55px;
  width: 200px;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 55px;
  text-align: center;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.actions li span i,
.actions li button i {
  position: relative;
}
.actions li:first-child span, .actions li:first-child button {
  color: var(--text-color);
  background-color: var(--bg-color);
  border-color: var(--primary-color);
  border-radius: 3px;
}
.actions li:first-child span i, .actions li:first-child button i {
  /* left: -45px; */
  left: auto;
}
.actions li .js-btn-next i, .actions li button i {
  /* right: -45px !important; */
  right: auto !important;
  left: inherit !important;
}
.actions li:last-child span {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-radius: 3px;
}
.actions li:last-child span:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}
.actions li[aria-disabled=true] a {
  opacity: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.actions li[aria-disabled=false] ~ li a {
  background-color: var(--primary-color);
  color: var(--bg-color);
}
.actions li[aria-disabled=false] ~ li a:hover {
  background-color: var(--secondary-color);
}

.checkbox-tick label {
  cursor: pointer;
  display: inline-block;
  padding-left: 23px;
  position: relative;
}
.checkbox-tick label.male {
  margin-right: 26px;
}
.checkbox-tick input, .checkbox-tick .wizard-form-field select, .wizard-form-field .checkbox-tick select {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-tick input:checked ~ .checkmark, .checkbox-tick .wizard-form-field select:checked ~ .checkmark, .wizard-form-field .checkbox-tick select:checked ~ .checkmark {
  background: #999;
}
.checkbox-tick input:checked ~ .checkmark:after, .checkbox-tick .wizard-form-field select:checked ~ .checkmark:after, .wizard-form-field .checkbox-tick select:checked ~ .checkmark:after {
  display: block;
}
.checkbox-tick .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid #999;
  border-radius: 50%;
  font-family: Material-Design-Iconic-Font;
  color: #fff;
  font-size: 11px;
}
.checkbox-tick .checkmark:after {
  top: 0;
  left: 2px;
  position: absolute;
  display: none;
  content: "";
}

.checkbox-circle {
  position: relative;
  padding-left: 23px;
  margin-top: 41px;
  width: 63%;
}
.checkbox-circle.mt-24 {
  margin-top: 24px;
}
.checkbox-circle label {
  cursor: pointer;
  color: #999;
  font-size: 13px;
  line-height: 1.9;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.checkbox-circle label a {
  color: #6d7f52;
}
.checkbox-circle label a:hover {
  color: #89b843;
}
.checkbox-circle input, .checkbox-circle .wizard-form-field select, .wizard-form-field .checkbox-circle select {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-circle input:checked ~ .checkmark:after, .checkbox-circle .wizard-form-field select:checked ~ .checkmark:after, .wizard-form-field .checkbox-circle select:checked ~ .checkmark:after {
  display: block;
}
.checkbox-circle .checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  border: 1px solid #999;
}
.checkbox-circle .checkmark:after {
  content: "";
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  display: none;
}

.has-float-label {
  display: block;
}
.has-float-label i {
  position: absolute;
  top: 25px;
  left: 35px;
  width: 33px;
  height: 33px;
  color: #8dcef9;
  border: 1px solid #8dcef9;
  border-radius: 100%;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.has-float-label i:hover {
  background: #5756a2;
  border-color: #5756a2;
  color: #fff;
}
.has-float-label i + input, .has-float-label .wizard-form-field i + select, .wizard-form-field .has-float-label i + select {
  padding-left: 75px;
}
.has-float-label label {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 23px;
  font-weight: 700;
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  top: -12px;
  left: 36px;
  z-index: 3;
  background: #ffffff;
  line-height: 1;
  padding: 0 5px;
}
.has-float-label label::after {
  content: " ";
  display: block;
  position: absolute;
}
.has-float-label > span {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 23px;
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  top: -12px;
  left: 36px;
  z-index: 3;
  background: #f1f9fe;
  line-height: 1;
  padding: 0 5px;
}
.has-float-label > span::after {
  content: " ";
  display: block;
  position: absolute;
}
.has-float-label .form-control {
  /* FF 4-18 */
  /* FF 19+ */
}
.has-float-label .form-control::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.has-float-label .form-control::-moz-placeholder {
  opacity: 1;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.has-float-label .form-control:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.has-float-label .form-control:-ms-input-placeholder:not(:focus) + * {
  font-size: 150%;
  opacity: 0;
  top: 0.3em;
  background: transparent;
}
.has-float-label .form-control::-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.has-float-label .form-control::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #5756a2;
}
.has-float-label .form-control::-moz-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  color: #5756a2;
}
.has-float-label .form-control:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  color: #5756a2;
}
.has-float-label .form-control::placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #5756a2;
}
.has-float-label .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.has-float-label .form-control:focus:-moz-placeholder {
  color: transparent;
}
.has-float-label .form-control:focus::-moz-placeholder {
  color: transparent;
}
.has-float-label .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.has-float-label .form-control:-moz-placeholder-shown:not(:focus) + * {
  font-size: 150%;
  opacity: 0;
  top: 0.3em;
  background: transparent;
}
.has-float-label .form-control:-ms-input-placeholder:not(:focus) + * {
  font-size: 150%;
  opacity: 0;
  top: 30px;
  left: 40px;
  visibility: hidden;
  background: transparent;
}
.has-float-label .form-control:placeholder-shown:not(:focus) + * {
  font-size: 150%;
  opacity: 0;
  top: 30px;
  left: 40px;
  visibility: hidden;
  background: transparent;
}

.tooltip-info i {
  position: absolute;
  top: 25px;
  left: 35px;
  width: 33px;
  height: 33px;
  color: #8dcef9;
  border: 1px solid #8dcef9;
  border-radius: 100%;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tooltip-info i:hover {
  background: #5756a2;
  border-color: #5756a2;
  color: #fff;
}
.tooltip-info span, .tooltip-info input[type=text], .tooltip-info .wizard-form-field select[type=text], .wizard-form-field .tooltip-info select[type=text] {
  padding-left: 50px;
}

/* IE 10+ */
.input-group .has-float-label {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.input-group .has-float-label .form-control {
  width: 100%;
  border-radius: 0.25rem;
}
.input-group .has-float-label:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: 0;
}
.input-group .has-float-label:not(:last-child) .form-control {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: 0;
}
.input-group .has-float-label:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group .has-float-label:not(:first-child) .form-control {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.tooltip-inner {
  max-width: 280px;
  background-color: #5756a2;
  border-radius: 0;
}

.arrow {
  left: 4px !important;
}

.tooltip {
  left: 6.9% !important;
}

.tooltip .arrow:before {
  border-bottom-color: #5756a2;
  border-top-color: #5756a2;
}

/*---------------------------------------------------- */
/*wizard area*/
/*----------------------------------------------------*/
.multisteps-form__progress {
  /* background-image: url(../img/step-bg.png); */
  background-repeat: repeat-x;
  padding: 0 80px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  background-color: var(--primary-color);
  border-radius: 8px;
}

.wizard-part-title {
  padding: 140px;
  padding-bottom: 0;
}

.multisteps-form__progress-btn {
  position: relative;
  color: var(--bg-color);
  border: none;
  background-color: transparent;
  outline: none !important;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 32px;
  padding: 15px 0;
}
.multisteps-form__progress-btn:first-child {
  margin-left: 0;
}
.multisteps-form__progress-btn:before {
  content: "";
  width: 50px;
  height: 50px;
  font-weight: 700;
  left: 0px;
  top: 0px;
  margin-right: 15px;
  line-height: 50px;
  position: relative;
  text-align: center;
  display: inline-block;
  border: 2px solid var(--bg-color);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 3;
  color: var(--bg-color);
}
.multisteps-form__progress-btn:nth-child(1):before {
  content: "1";
}
.multisteps-form__progress-btn:nth-child(2):before {
  content: "2";
}
.multisteps-form__progress-btn:nth-child(3):before {
  content: "3";
}
.multisteps-form__progress-btn:nth-child(4):before {
  content: "4";
}
.multisteps-form__progress-btn:nth-child(5):before {
  content: "5";
}
.multisteps-form__progress-btn:after {
  content: "";
  position: absolute;
  top: 38px;
  right: -40px;
  display: block;
  width: 20px;
  height: 4px;
  background-color: var(--bg-color);
  z-index: 1;
}
.feature-icon i{
  color: var(--primary-color) !important;
}
.multisteps-form__progress-btn:last-child:after {
  display: none;
}
.multisteps-form__progress-btn.js-active {
  color: var(--secondary-color);
  font-weight: 700;
}
.multisteps-form__progress-btn.js-active:before {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--bg-color);
  content: "\f00c";
  font-size: 20px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.multisteps-form__form {
  height: 1420px;
}

.multisteps-form__panel {
  width: 100%;
  height: 0 !important;
  overflow-y: hidden;
  opacity: 0;
  visibility: hidden;
}
.multisteps-form__panel.js-active {
  position: absolute;
  top: 0;
  left: 0;
  height: auto !important;
  overflow: visible;
  opacity: 1;
  visibility: visible;
}
.multisteps-form__panel[data-animation=scaleOut] {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.multisteps-form__panel[data-animation=scaleOut].js-active {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.multisteps-form__panel[data-animation=slideHorz] {
  left: -50px;
}
.multisteps-form__panel[data-animation=slideHorz].js-active {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.25s;
       -o-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
       -o-transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
          transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  left: 0;
}
.multisteps-form__panel[data-animation=slideVert] {
  top: 30px;
}
.multisteps-form__panel[data-animation=slideVert].js-active {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  top: 0;
}
.multisteps-form__panel[data-animation=fadeIn].js-active {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.multisteps-form__panel[data-animation=scaleIn] {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.multisteps-form__panel[data-animation=scaleIn].js-active {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.wizard-part-title h3 {
  color: var(--text-color);
  font-size: 50px;
  font-weight: 700;
  text-align: left;
}

.badge-selection {
  margin: 0 auto;
  max-width: 1090px;
}
.badge-selection label {
  margin-right: 30px;
}
.badge-selection input, .badge-selection .wizard-form-field select, .wizard-form-field .badge-selection select {
  height: 25px;
  width: 25px;
}
.badge-selection h3 {
  margin-bottom: 20px;
}
.badge-selection span,
.badge-selection h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
}
.badge-selection span {
  top: -5px;
  margin-left: 5px;
  position: relative;
}

.wizard-topper {
  position: absolute;
  top: -375px;
  right: 5%;
}
.wizard-topper .wizard-progress {
  width: 550px;
  float: right;
}
.wizard-topper .wizard-progress .progress {
  height: 27px;
  padding: 2px;
  position: relative;
  border-radius: 80px;
  border: 2px solid #e3e3e3;
  background-color: transparent;
}
.wizard-topper .wizard-progress .progress .progress-bar {
  top: 2px;
  left: 2px;
  width: 30%;
  height: 18px;
  position: absolute;
  border-radius: 80px;
  background: var(--gradient);
}

.wizard-content-item {
  margin: 0 auto;
  max-width: 855px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.wizard-content-item h2 {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 700;
}
.wizard-content-item p {
  color: var(--text-color);
  font-size: 18px;
  font-weight:500;
  line-height: 1.2;
  margin-top: 20px;
}

.wizard-form-field {
  margin: 0 auto;
  max-width: 1095px;
}
.wizard-form-field input, .wizard-form-field select {
  width: 100%;
  height: 80px;
  border: none;
  overflow: visible;
  padding-left: 40px;
  border-radius: 3px;
  margin-bottom: 28px;
  -webkit-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  background-color: var(--bg-color);
  border: 2px solid var(--primary-color);
}
.wizard-form-field input:focus, .wizard-form-field select:focus {
  border: 2px solid var(--secondary-color);
  background-color: var(--bg-color);
}
.wizard-form-field select {
  height: 80px !important;
}
.wizard-form-field .wizard-form-input input::-webkit-input-placeholder, .wizard-form-field .wizard-form-input select::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

.wizard-footer {
  min-height: auto;
}

.wizard-imgbg {
  left: -20px;
  bottom: 30px;
  position: absolute;
}

.wizard-option-list {
  margin: 0 auto;
  max-width: 920px;
}
.wizard-option-list ul {
  margin: 0px -15px;
}
.wizard-option-list li {
  width: 50%;
  float: left;
  padding: 15px;
  position: relative;
}
.wizard-option-list li:before {
  content: "";
  top: 41px;
  left: 35px;
  position: absolute;
  font-size: 1.4em;
  font-weight: 500;
  font-family: "Font Awesome 5 Free";
}
.wizard-option-list li:after {
  top: 45px;
  right: 35px;
  content: "";
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
.wizard-option-list li .option-item-list select {
  width: 100%;
  height: 83px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  padding-left: 60px;
  border: 2px solid var(--primary-color);
  background-color: var(--bg-color);
  -webkit-appearance: none;
}
.wizard-option-list li.active:before {
  color: var(--primary-color);
}
.wizard-option-list li.active .option-item-list select {
  border: 2px solid var(--secondary-color);
}
.wizard-option-list li.no-arrow:after {
  display: none;
}
.wizard-option-list li.no-arrow:before {
  display: none;
}
.wizard-option-list .nationality-list:before {
  top: 42px;
  content: "";
  font-size: 20px;
}
.wizard-option-list .upload-araa {
  width: 100%;
  height: 80px;
  margin: 20px 0px 35px;
  display: inline-block;
  border: 2px solid var(--primary-color);
}
.wizard-option-list .upload-araa .upload-text span {
  display: inline-block;
  padding: 23px 30px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
}
.wizard-option-list .upload-araa .upload-option {
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  position: relative;
  top: 12px;
  right: 12px;
}
.wizard-option-list .upload-araa .upload-option label {
  margin-bottom: 0;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
}
.wizard-option-list .taxable-area {
  padding-bottom: 30px;
}
.wizard-option-list .taxable-area label {
  margin-bottom: 0;
}
.wizard-option-list .taxable-area .tax-check {
  display: none;
}
.wizard-option-list .taxable-area .checkbo-box-border {
  position: relative;
}
.wizard-option-list .taxable-area .checkbo-box-border:before {
  top: 6px;
  left: 10px;
  color: var(--primary-color);
  content: "";
  font-size: 16px;
  font-weight: 900;
  display: none;
  position: absolute;
  font-family: "Font Awesome 5 Free";
}
.wizard-option-list .taxable-area .checkbo-box-border:after {
  position: absolute;
  content: "";
  height: 38px;
  width: 38px;
  top: 0px;
  left: 0px;
  border: 2px solid var(--primary-color);
}
.wizard-option-list .taxable-area .tax-check:checked ~ .checkbo-box-border:before {
  display: block;
}
.wizard-option-list .texable-option {
  top: 10px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  padding-left: 50px;
  position: relative;
}

.wizard-identity-box {
  -webkit-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
}
.wizard-identity-box .wizard-identity-icon img {
  padding-top: 50px;
}

.wizard-identity {
  margin: 0 auto;
  max-width: 850px;
}
.wizard-identity .wizard-identity-box {
  height: 310px;
}
.wizard-identity .identity-upload {
  padding-top: 70px;
}
.wizard-identity .identity-upload i {
  color: var(--text-color);
  font-size: 55px;
  margin-bottom: 10px;
}
.wizard-identity .upload-option label {
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0;
}
.wizard-identity .upload-option span {
  display: block;
  color: var(--text-color);
}

.progress .progress-bar {
  width: 90%;
  background: var(--gradient);
}

.identity-check {
  display: none;
}

.identity-option {
  margin: 0 auto;
  max-width: 1025px;
}
.identity-option ul {
  padding: 0px -15px;
}
.identity-option li {
  width: 45%;
  height: 80px;
  color: var(--text-color);
  margin: 0 15px;
  font-size: 20px;
  line-height: 80px;
  font-weight: 600;
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid var(--primary-color);
}
.identity-option li .identity-label {
  display: block;
}
.identity-option li .checkmark-border {
  position: absolute;
  top: 0;
  left: 0;
}
.identity-option li .checkmark-border:before {
  content: "";
  position: absolute;
  height: 33px;
  width: 33px;
  border-radius: 100%;
  left: 30px;
  top: 25px;
  background-color: #fff;
  border: 2px solid var(--primary-color);
}
.identity-option li .checkmark-border:after {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  display: none;
  border-radius: 100%;
  left: 36px;
  top: 31px;
  background-color: var(--primary-color);
}
.identity-option li .identity-check:checked ~ .checkmark-border:after {
  display: block;
}

.wizard-submit-file-content {
  margin: 0 auto;
  max-width: 1005px;
}

.n-summary {
  height: 80px;
  padding-left: 30px;
  line-height: 80px;
  background-color: var(--bg-color);
  border: 2px solid var(--primary-color);
}
.n-summary span {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
}
.n-summary label {
  float: right;
  padding-top: 10px;
  margin-bottom: 0;
  margin-right: 20px;
}
.n-summary label span {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  top: -7px;
}
.n-summary input, .n-summary .wizard-form-field select, .wizard-form-field .n-summary select {
  height: 30px;
  width: 30px;
  border: 2px solid var(--primary-color);
}

.n-activity {
  height: 80px;
  padding-left: 30px;
  line-height: 80px;
  position: relative;
  background-color: var(--bg-color);
  border: 2px solid var(--primary-color);
}
.n-activity.checked {
  border: 2px solid var(--secondary-color);
  background: transparent;
}
.n-activity label {
  margin-bottom: 0;
  width: 100%;
}
.n-activity label .net-check {
  display: none;
}
.n-activity label .net-check-border {
  position: absolute;
  top: 0;
  right: 0;
}
.n-activity label .net-check-border:before {
  content: "";
  top: 0px;
  right: 32px;
  font-family: "Font Awesome 5 Free";
  display: none;
  font-weight: 600;
  position: absolute;
}
.n-activity label .net-check-border:after {
  top: 18px;
  right: 20px;
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  border: 2px solid var(--primary-color);
}
.n-activity label .net-check:checked ~ .net-check-border:before {
  display: block;
}
.n-activity .n-title {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}

.n-checked {
  height: 130px;
  padding-left: 30px;
  padding-top: 30px;
  background-color: var(--bg-color);
  border: 2px solid var(--primary-color);
}
.n-checked span {
  display: block;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.n-checked label span {
  display: inline-block;
  color: var(--text-color);
  font-size: 18px;
}

.n-select-option {
  margin-top: 20px;
  position: relative;
}
.n-select-option select {
  width: 100%;
  height: 83px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  padding-left: 30px;
  border: 2px solid var(--primary-color);
  background-color: var(--bg-color);
  -webkit-appearance: none;
}
.n-select-option:after {
  top: 25px;
  right: 35px;
  font-size: 20px;
  content: "";
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

/*---------------------------------------------------- */
/*wizard area*/
/*----------------------------------------------------*/
/* ==================================================
*	01 - media screen and (max-width: 1440px)
*	02 - media screen and (max-width: 1280px)
*	03 - media screen and (max-width: 1199px)
*	04 - media screen and (max-width: 991px)
*	05 - media screen and (max-width: 767px)
*	06 - media screen and (max-width: 680px)
*	07 - media screen and (max-width: 580px)
*	08 - media screen and (max-width: 480px)
*	09 - media screen and (max-width: 380px)
*	10 - media screen and (max-width: 320px)
================================================== */
@media screen and (max-width: 1440px) {
  .wrapper {
    padding: 0 0 90px 0;
    margin: 0;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .multisteps-form__progress-btn:not(:last-child)::after{
    right: -20px;
  }
  .feature-item{
    max-width: 240px !important;
  }
  .multisteps-form__progress {
    padding: 0;
  }

  .wizard-part-title {
    padding-top: 60px;
  }

  .multisteps-form__progress-btn {
    margin-left: 18px;
  }

  .wizard > .steps li {
    padding-right: 260px;
  }

  .tooltip {
    left: 9.2% !important;
  }
}
@media screen and (max-width: 1300px) {
  .wrapper {
    padding: 0 0 60px 0;
    margin: 0;
  }

  .wizard > .steps li {
    margin-bottom: 30px;
  }

  .wizard-content-item p {
    font-size: 24px;
  }

  .wizard-topper .wizard-progress {
    width: 375px;
  }

  .multisteps-form__progress {
    padding: 0;
    background: none;
  }

  .wizard-part-title {
    padding: 60px;
  }

  .multisteps-form__progress-btn {
    font-size: 18px;
  }

  .wizard-part-title h3 {
    font-size: 45px;
  }

  .wizard-topper {
    top: -325px;
  }

  .wizard-content-form {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .multisteps-form__progress {
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    grid-template-columns: none;
  }
  .header-features {
    display: none !important;
  }

  .multisteps-form__progress-btn {
    width: auto;
    margin-left: 15px;
    font-size: 14px;
    padding: 10px 0;
  }

  .multisteps-form__progress-btn:before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    font-size: 16px;
  }

  .multisteps-form__progress-btn:after {
    top: 20px;
    right: -20px;
    width: 15px;
  }

  .sec-pasos {
    padding: 0 0 15px 0;
    margin-bottom: 20px;
  }

  .wizard-topper {
    position: absolute;
    top: -40px;
    right: auto;
    width: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .wizard-topper .wizard-progress {
    width: 100%;
    float: none;
  }

  .multisteps-form__progress-btn:before {
    left: -10px;
  }

  .multisteps-form__progress-btn:after {
    display: none;
  }

  .multisteps-form__progress-btn {
    width: 65px;
    margin-left: 0;
  }

  .multisteps-form__progress-btn {
    font-size: 0;
  }

  .wizard-part-title {
    float: none !important;
    padding: 10px;
  }

  .wizard-progress {
    float: none;
    margin-top: 20px;
  }

  .inner {
    padding: 0 15px;
  }

  .wizard-imgbg {
    display: none;
  }

  .wizard-content-item {
    padding-top: 60px;
  }

  .actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 30px;
  }
.multisteps-form{
  overflow: visible !important;
  padding-bottom: 40px !important;
}
  .wrapper {
    padding: 0 0 40px 0;
    overflow-x: hidden;
    margin: 0;
  }

  .wizard-topper {
    width: 70%;
  }

  .actions li span, .actions li button {
    width: 170px;
  }

  .wizard-part-title {
    width: 100%;
    margin-bottom: 20px;
  }

  .multisteps-form__progress {
    padding: 8px;
  }

  .multisteps-form__progress-btn {
    margin-left: 10px;
    font-size: 0;
    padding: 5px 0;
  }

  .multisteps-form__progress-btn:before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 0;
  }

  .multisteps-form__progress-btn:after {
    top: 17px;
    right: -15px;
    width: 10px;
    height: 3px;
  }

  .steps li.current:after,
.steps li.checked:after,
.steps li:after {
    display: none;
  }

  .wizard-part-title h3 {
    font-size: 40px;
  }

  .wizard-content-item p {
    font-size: 18px !important;
    line-height: 26px;
  }

  .wizard-content-item {
    padding-top: 85px;
  }

  .wizard-option-list li {
    width: 100%;
  }

  .wizard-option-list .taxable-area label {
    margin-bottom: 30px;
  }

  .wizard-content-item h2 {
    font-size: 36px;
  }

  .wizard-content-item {
    padding-bottom: 30px;
  }

  .wizard-identity .wizard-identity-box {
    margin-bottom: 30px;
  }

  .wizard-identity {
    padding: 0px 30px;
  }

  .identity-option li {
    width: 100%;
    margin: 0 0px 20px 0;
  }

  .n-activity {
    margin-bottom: 20px;
  }

  .n-checked {
    margin-bottom: 20px;
  }

  .wizard-footer {
    min-height: auto;
  }

  .actions li:first-child span i, .actions li:first-child button i {
    left: 0;
  }

  .actions li .js-btn-next i, .actions li button i {
    right: 0 !important;
  }
}
@media screen and (max-width: 460px) {
  .wizard-progress {
    width: 290px;
  }

  .wizard-part-title h3 {
    font-size: 25px;
  }

  .wizard-content-item h2 {
    font-size: 30px;
  }

  .wizard-content-form {
    padding: 0 10px;
  }

  .actions li span, .actions li button {
    width: 150px;
    min-width: auto;
  }

  .wizard-option-list .upload-araa .upload-text span {
    display: none;
  }

  .wizard > .content {
    margin-bottom: 15px;
  }

  .wizard-content-item {
    padding-top: 20px;
  }

  .wizard-form-field input, .wizard-form-field select {
    padding: 0 25px;
  }

  .has-float-label i {
    left: 20px;
  }

  .identity-option li {
    height: inherit;
    line-height: inherit;
  }

  .n-summary {
    height: inherit;
    line-height: inherit;
    display: inline-block;
    margin-bottom: 10px;
  }

  .n-summary label {
    float: none;
  }

  .n-checked label span {
    font-size: 15px;
  }

  .actions {
    right: 15px;
    bottom: 15px;
  }

  .multisteps-form__progress-btn:after {
    display: none;
  }

  .multisteps-form__progress-btn {
    width: 65px;
    margin-left: 0;
  }
}
/*---------------------------------------------------- */

/* Center Selection Styles */
.center-option {
	height: 100%;
	min-height: 120px;
	padding: 0;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-color);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	display: flex;
	cursor: pointer;
}

.center-option.checked {
	border: 2px solid var(--secondary-color);
	background-color: rgba(245, 168, 0, 0.05);
}

.center-option .center-image {
	width: 40%;
	height: 100%;
	min-height: 120px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}


.center-option .center-content {
	width: 60%;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.center-option .n-title {
	line-height: 1.3;
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--text-color);
}

.center-option .center-desc {
	font-size: 12px;
	line-height: 1.2;
	color: #666;
	margin-top: 0;
	display: block;
}

.center-option .center-check {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	width: 24px;
	height: 24px;
}

.center-option .center-check label {
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.center-option .center-check .net-check-border {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.center-option .center-check .net-check-border:after {
	top: 0;
	right: 0;
	content: "";
	position: absolute;
	height: 20px;
	width: 20px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	background-color: var(--bg-color);
}

.center-option.checked .center-check .net-check-border:before {
	top: 2px;
	right: 2px;
	color: var(--secondary-color);
	content: "\f00c";
	font-size: 12px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	position: absolute;
	font-family: "Font Awesome 5 Free";
	z-index: 1;
}

.city-centers {
	margin-top: 30px;
	margin-bottom: 20px;
}

.city-centers h3 {
	color: var(--primary-color);
	font-size: 24px;
  font-weight:700;
	margin-bottom: 20px;
}

.center-option .center-check .center-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* Header Features Styles */
.header-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-item {
  flex: 1 1 45%;
  max-width: 280px;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 6px;
  padding: 8px 12px;
}
.header-features h6,
.header-features small{
  color: white !important;
}

.feature-icon {
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.feature-text h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-color);
}

.feature-text small {
  font-size: 12px;
  color: var(--text-color);
  opacity: 0.8;
  display: block;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .feature-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .header-features {
    justify-content: center;
    margin-top: 15px;
  }
  
  .feature-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 767px) {
  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 15px;
  }
}

/* Storage Selection Styles */
.filter-section {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  border-left: none;
}

.filter-title {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color) !important;
  margin-bottom: 15px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-check {
  margin-right: 15px;
  margin-bottom: 10px;
}

.form-check-input {
  margin-right: 5px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 14px;
  font-weight: 500;
}

.storage-units-container {
  margin-top: 30px;
}

.storage-units-container h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.storage-option {
  height: 100%;
  min-height: 180px;
  padding: 0;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.storage-option.checked {
  border: 2px solid var(--secondary-color);
  background-color: rgba(245, 168, 0, 0.05);
}

.storage-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}

.storage-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.storage-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.storage-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.storage-details {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.storage-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

.storage-check {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 24px;
  height: 24px;
}

.storage-check label {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.storage-check .storage-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.storage-check .storage-check-border {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.storage-check .storage-check-border:after {
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background-color: var(--bg-color);
}

.storage-option.checked .storage-check .storage-check-border::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  background-color: var(--secondary-color) !important;
  border-radius: 50% !important;
  z-index: 10 !important;
  font-size: 12px !important;
  border: 2px solid var(--secondary-color) !important;
}

.storage-check .storage-check-border::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  height: 20px !important;
  width: 20px !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50% !important;
  background-color: var(--bg-color) !important;
}

.storage-unit-item.hidden {
  display: none;
}

@media (max-width: 767px) {
  .filter-options {
    flex-direction: column;
  }
  
  .form-check {
    margin-right: 0;
  }
  
  .storage-option {
    min-height: 160px;
  }
  
  .storage-image {
    height: 100px;
  }
  
  .storage-content {
    padding: 10px;
  }
}

/* Selected Storage Summary Styles */
.selected-storage-card {
  display: flex;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(245, 168, 0, 0.05);
  margin-bottom: 20px;
}

.selected-storage-image {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}

.selected-storage-details {
  padding: 15px;
  flex: 1;
}

.selected-storage-details h4 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.selected-storage-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.selected-storage-price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--secondary-color) !important;
}

@media (max-width: 767px) {
  .selected-storage-card {
    flex-direction: column;
  }
  
  .selected-storage-image {
    width: 100%;
    height: 150px;
  }
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(216, 58, 46, 0.25);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  margin-left: 0.5rem;
}

/* Minimalistic Filter Styles */
.filter-toggle-group {
  display: inline-flex;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.filter-toggle-group .form-check {
  margin: 0;
  padding: 0;
  position: relative;
  flex: 1;
}

.filter-toggle-group .form-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-toggle-group .form-check-label {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
  text-align: center;
  width: 100%;
}

.filter-toggle-group .form-check-input:checked + .form-check-label {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  border: 2px solid var(--primary-color);
}

.filter-section {
  margin-bottom: 30px;
}

.filter-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .filter-toggle-group .form-check-label {
    padding: 8px 5px;
    font-size: 12px;
  }
}

/* Category-specific styles */
.filter-toggle-group.category-group .form-check-label {
  font-size: 12px;
}

/* Size-specific styles */
.filter-toggle-group.size-group .form-check-label {
  font-size: 12px;
  padding: 8px 5px;
}

/* Contract Summary Styles */
.card-header.bg-primary {
  background-color: var(--primary-color) !important;
  border-radius: 8px 8px 0 0;
}

.card {
  border-radius: 8px;
  overflow: hidden;
}

.alert-primary {
  background-color: rgba(216, 58, 46, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  border-radius: 6px;
}

.text-primary {
  color: var(--primary-color) !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.alert-info {
  background-color: rgba(245, 168, 0, 0.1);
  border-color: var(--secondary-color);
  color: #333;
  border-radius: 6px;
}

.text-info {
  color: var(--secondary-color) !important;
}

.alert-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.alert ul {
  margin-bottom: 0;
}

.alert ul li {
  margin-bottom: 5px;
}

.alert ul li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for contract summary */
@media (max-width: 767px) {
  .card-body .row .col-md-6:first-child {
    margin-bottom: 20px;
  }
  
  .alert-info .d-flex {
    flex-direction: column;
  }
  
  .alert-info .me-3 {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }
}

/* Contract Details Grid Styles */
.contract-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
    margin-left: 1rem;
}

.detail-value small {
    color: #6c757d;
    font-weight: normal;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.total-section {
    grid-column: 1 / -1;
    margin-top: 1rem;
    background: var(--primary-color) !important;
    padding: 1rem !important;
    border-radius: 8px;
}

.total-section .detail-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.total-amount {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .contract-details-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-value {
        margin-top: 0.25rem;
        margin-left: 0;
    }
}

/* Floating Info Button and Popup Styles */
.floating-info {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
}

.info-button {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.info-button i {
    color: white;
    font-size: 24px;
}

.info-button:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
}

.info-popup {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 460px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.info-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.info-popup h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.info-popup p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.info-form .form-group {
    margin-bottom: 15px;
}

.info-form input,
.info-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.info-form input:focus,
.info-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.info-form textarea {
    height: 100px;
    resize: none;
}

.info-form .form-check {
    margin: 15px 0;
}

.info-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-form button:hover {
    background-color: var(--secondary-color);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .info-popup {
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
    }
}

/*===========================================
   Wizard Form Styles - Added from index.html
=============================================*/

/* Estilos para el contenido del Paso 4 */
.multisteps-form__panel[data-animation="slideVert"] .wizard-content-form {
    max-width: 1095px;
    margin: 0 auto;
}

/* Estilos para la barra de progreso */
.multisteps-form__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    padding: 0 15px;
    background-color: #dc3545;
}

.multisteps-form__progress-btn {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 35px 10px 20px;
    transition: all 0.2s ease;
}

/* Agregar flechas entre los botones */
.multisteps-form__progress-btn:not(:last-child)::after {
    content: "\f054"; /* Código del ícono chevron-right de Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -20%;
    top: 38%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    background: transparent;
}

/* Estilo para la flecha cuando el botón está activo */
.multisteps-form__progress-btn.js-active:not(:last-child)::after {
    color: #fff;
}

/* Mobile Progress Slider */
.progress-slider-arrows {
    display: none;
}

/* Fix for wizard footer buttons */
.wizard-footer {
    min-height: auto;
    position: relative;
    z-index: 10;
}

.actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.actions ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.actions li {
    margin: 0 5px;
    list-style: none;
}

/* Fix for centers list not showing completely on first load */
.city-centers {
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: visible !important;
}

.city-centers .row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.center-option {
    height: 100%;
    min-height: 120px;
    margin-bottom: 15px;
}

/*===========================================
   Mobile Responsive Adjustments
=============================================*/

@media (max-width: 768px) {
    .multisteps-form__progress {
        flex-wrap: nowrap;
        justify-content: center;
        padding: 15px 0;
        overflow: hidden;
        position: relative;
        height: 60px;
    }

    .multisteps-form__progress-btn {
        font-size: 18px;
        padding: 10px 15px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        text-align: center;
        color: #fff;
        font-weight: 500;
        z-index: 0; /* Ensure non-active buttons are below active one */
    }

    .multisteps-form__progress-btn.js-active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
        font-weight: 600;
    }

    .multisteps-form__progress-btn:not(:last-child)::after {
        display: none;
    }

    /* Progress slider arrows */
    .progress-slider-arrows {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .progress-arrow {
        width: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        pointer-events: auto;
        background-color: transparent;
        transition: all 0.2s ease;
    }

    .progress-arrow:hover {
        background-color: rgba(0, 0, 0, 0);
    }

    .progress-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .progress-step-indicator {
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 2;
    }

    .step-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .step-dot.active {
        background-color: #fff;
    }
    
    /* Fix for wizard footer buttons on mobile and tablet */
    .wizard-footer {
        min-height: auto;
        position: relative;
        z-index: 10;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .actions {
      position: absolute;
      right: 30px;
      bottom: -60px;
      z-index: 1000;
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    
    .actions ul {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .actions li {
        margin: 0 5px;
        list-style: none;
    }
    
    .actions li span,
    .actions li button {
        height: 50px;
        min-width: 120px;
        font-size: 14px;
        line-height: 50px;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    /* Ensure buttons are visible on all steps */
    .multisteps-form__panel .wizard-footer .actions {
        display: block !important;
    }
    
    /* Additional fixes for mobile */
    .inner {
        padding-bottom: 120px !important; /* Ensure enough space for fixed buttons */
        overflow: visible !important;
    }
    
    .pb-100 {
        padding-bottom: 120px !important;
    }
    
    /* Improve button visibility */
    .actions li span,
    .actions li button {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Fix for button icons */
    .actions li span i,
    .actions li button i {
        margin: 0 5px;
    }
    
    .actions li:first-child span i, 
    .actions li:first-child button i {
        margin-right: 5px;
    }
    
    .actions li:last-child span i, 
    .actions li:last-child button i {
        margin-left: 5px;
    }
    
    /* Fix for centers list on mobile */
    .city-centers {
        display: block;
        overflow: visible !important;
        height: auto !important;
    }
    
    .city-centers .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .city-centers .col-md-4 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix for wizard content */
    .wizard-content-form {
        overflow: visible !important;
    }
    
    .multisteps-form__panel {
        overflow: visible !important;
        height: auto !important;
    }
    
    .multisteps-form__form {
        overflow: visible !important;
    }
    
    /* Fix for the wizard panel height */
    .multisteps-form__panel.js-active {
        height: auto !important;
        overflow: visible !important;
    }
    
    /* Fix for overlapping step buttons in header */
    .multisteps-form__progress-btn {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
    
    .multisteps-form__progress-btn.js-active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
}
.multisteps-form__progress-btn:hover{
  color: white !important;
}
.multisteps-form__progress .multisteps-form__progress-btn.last-btn::after{
  display: none !important;
}