html,
* {
  font-family: "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #04bbf1;
  border-radius: 50px !important;
  background-color: white;
  cursor: pointer;
  position: relative;
}

input[type="radio"]:checked {
  background-color: #fff;
  border-color: #04bbf1;
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #04bbf1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50px;
}

input[type="radio"]:not(:checked) {
  accent-color: #04bbf1;
}

input[type="radio"]:checked {
  accent-color: #04bbf1;
}

.container__form input[type="radio"] {
  padding: 0px;
}

input[type="checkbox"].btn__reparto {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #04bbf1;
  border-radius: 50px !important;
  background-color: white;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"].btn__reparto:checked {
  background-color: #fff;
  border-color: #04bbf1;
}

input[type="checkbox"].btn__reparto:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #04bbf1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50px;
}

input[type="checkbox"].btn__reparto:not(:checked) {
  accent-color: #04bbf1;
}

input[type="checkbox"].btn__reparto:checked {
  accent-color: #04bbf1;
}

.container__form input[type="checkbox"].btn__reparto {
  padding: 0px;
}
img{
    max-width: 100%;
}

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

.no-gutters {
  padding: 0;
  margin: 0;
}

.full-height-image {
  height: 100vh;
  width: 100%;
}

.content-container {
  background-color: #f6fdff;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.steps__solicitud {
  margin-bottom: 1rem;
}

.progressbar__steps {
  counter-reset: step;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.progressbar__steps li {
  position: relative;
  list-style: none;
  float: left;
  width: 25%;
  text-align: center;
}

.progressbar__steps li:before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  width: 32px;
  height: 32px;
  border: 1px solid #dbdbdb;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000;
  font-weight: 700;
  line-height: 32px;
  z-index: 2;
  position: relative;
}

.progressbar__steps li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #04bbf1;
  top: 20px;
  left: -50%;
  z-index: 0;
}

.progressbar__steps li:first-child:after {
  content: none;
}

.progressbar__steps li.active:before {
  border: 2px solid #04bbf1;
  color: #04bbf1;
}

.progressbar__steps li.active + li:after {
  background: none;
  border-top: 2px dashed #dbdbdb;
}

.progressbar__steps li.active {
  font-weight: 700;
  color: #04bbf1;
}

.progressbar__steps li.active span {
  position: absolute;
  left: 0;
  right: 0;
  width: 44px;
  height: 44px;
  margin: auto;
  top: -6px;
  border-radius: 50%;
  z-index: 1;
  background-color: #fff;
  color: #04bbf1;
}

.progressbar__steps li.completed:before {
  content: "\2713";
  background-color: #04bbf1;
  color: #fff;
  border: 2px solid #04bbf1;
}

.progressbar__steps li.completed span {
  color: transparent;
}

.progressbar__steps li.completed + li:after {
  background: #04bbf1;
}

.progressbar__steps li.active ~ li:before {
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  color: #000;
}

.progressbar__steps li span {
  color: transparent;
}

.container__main {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding-top: 30px;
  gap: 15px;
  width: 100%;
}

.select2-container {
  max-width: 100%;
}

.container__information {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.title__section {
  color: #1d4370;
  font-size: 1.5rem;
  font-weight: 700;
}

.subtitle__section {
  color: #6f87a7;
  font-size: 1rem;
  line-height: 150%;
  padding: 5px 110px;
}

.container__form {
  padding: 20px 50px 10px;
  height: 500px;
  overflow-y: auto;
}

.content__form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}

.container__form label {
  color: #858585;
  font-size: 0.75rem;
  line-height: 18px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.container_next__section {
  width: 100%;
}

.container__form input {
  padding: 16px;
  gap: 10px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #04bbf1;
  background: #fff;
}

.btn__next {
  background-color: #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  padding: 10px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  border: none;
  color: #fff;
  font-size: 1.25rem;
}

.btn__next.active:hover {
  background-color: #04bbf1;
}

.btn__next.active {
  background-color: #1d4370;
  color: #ffff;
  cursor: pointer;
}

.btn__next__mob {
  background-color: #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  padding: 10px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: none;
}

.btn__next__mob.active {
  background-color: #1d4370;
  color: #ffff;
  cursor: pointer;
}

.container-radius {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container-radius input {
  width: 20px;
  height: 20px;
}

.container-radius label {
  color: #081528;
  font-size: 0.875rem;
  text-transform: capitalize;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.container-radius-opcion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container-radius-opcion input {
  width: 20px;
  height: 20px;
}

.container-radius-opcion label {
  color: #081528;
  font-size: 0.875rem;
  text-transform: capitalize;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.container-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container-radio input {
  width: 20px;
  height: 20px;
}

.container-radio label {
  color: #081528;
  font-size: 0.875rem;
  text-transform: capitalize;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.container__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.title__question {
  color: #081528;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 140%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #2196f3;
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.subtitle__question {
  color: #081528;
  font-family: Arial;
  font-size: 0.875rem;
  line-height: 150%;
}

.question__subtitle {
  color: #858585;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 18px;
}

.select__holcim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #04bbf1;
  color: #858585;
}

.container__thankyou {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 24px;
  height: 400px;
  padding: 20px 0px 10px;
}

.title__thank {
  color: #1d4370;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
}

.container__info__thank {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.container_aceptar_terminos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 25px;
  padding: 0px 105px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.container_aceptar_terminos input {
  min-width: 20px;
  height: 20px;
  width: 20px;
  -ms-flex-item-align: center;
  align-self: center;
}

.text__info {
  color: #081528;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
}

.link__privacidad {
  color: #1d4370;
  font-size: 1.125rem;
  line-height: 140%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.hero__thankyou {
  background-color: #f6fdff;
}

.head__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 13px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.space__container hr {
  width: 100%;
  height: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: -o-linear-gradient(left, #94c12e 15%, #04bbf1 50%, #1d4370 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(15%, #94c12e), color-stop(50%, #04bbf1), to(#1d4370));
  background: linear-gradient(90deg, #94c12e 15%, #04bbf1 50%, #1d4370 100%);
  opacity: 1;
}

.container__finally__thankyou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0 85px 0;
}

.container__info__thankyou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.finally__title {
  color: #1d4370;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

.text__finally {
  color: #071d34;
  font-size: 1.5rem;
  line-height: 140%;
}

.img-holcim {
  max-height: 300px;
}

.img-holcim_mob {
  max-height: 300px;
  display: none;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 40px;
  background-color: #04bbf1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}

.footer__link__item {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 140%;
}

.footer__links span,
.footer__links a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.v-line {
  border-left: 1px solid #ffffff;
  height: auto;
}

.alert_email,
.alert_name,
.alert_apaterno,
.alert_amaterno,
.alert_empresa,
.alert_tel,
.alert_puesto {
  color: #ff0000;
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

.text__sector,
.text__volumen {
  display: none;
}

.container__radio__sector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.container_next__section {
  display: block;
}

.holcim_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.container__main__aviso {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 225px;
}

.container__aviso {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.container__intro {
  padding: 10px 120px;
}

.title__aviso {
  color: #1d4370;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
}

.subtitle__aviso {
  color: #1d4370;
  font-family: Barlow;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.text__aviso {
  color: #071d34;
  font-size: 1.2rem;
  line-height: 140%;
  text-align: left;
}

.container__img {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.background__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.imagen__mobile {
  display: none;
}

.imagen__desktop {
  display: block;
}

.container__logo {
  position: absolute;
  top: -25%;
  left: 20%;
  -webkit-transform: translate(-30%, -20%);
  -ms-transform: translate(-30%, -20%);
  transform: translate(-30%, -20%);
  color: #fff;
  padding: 20px;
  width: 48%;
  z-index: 2;
}

.container__info__banner {
  position: absolute;
  top: 25%;
  left: 40%;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  color: #fff;
  padding: 20px;
  width: 80%;
  z-index: 2;
}

.title__banner {
  color: #fff;
  font-family: Arial;
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 2rem;
  text-align: left;
}

.subtitle__banner {
  color: #fff;
  font-family: Arial;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}

/*Estilos Dashboard */
.form__login__admin {
  width: 30%;
}

.container__form__log {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 280px;
  gap: 25px;
  align-items: center;
}

.ocultar-celda {
  display: none;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #04bbf1;
  border-radius: 8px;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #858585;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container__equipos {
  display: none;
}

.select2-selection__arrow {
  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100% !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  background: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  background: none;
  display: block;
  width: 13px;
  height: 13px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.5 4.5a.5.5 0 0 1 .8-.4L8 8.292 13.7 4.1a.5.5 0 0 1 .8.4.5.5 0 0 1-.1.2l-6 5.5a.5.5 0 0 1-.8 0l-6-5.5a.5.5 0 0 1-.1-.2z"/></svg>') !important;
  border-color: transparent;
  border-style: none;
  background-color: #fff;
  left: -3px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #858585;
  line-height: 28px;
}

.acept__user {
  border: 1px solid #94c12e !important;
  background-color: #94c12e !important;
  border-radius: 8px !important;
  color: #fff !important;
  width: 120px !important;
  margin: 5px;
}

.remove__user {
  border: 1px solid #f2545b !important;
  background-color: #f2545b !important;
  border-radius: 8px !important;
  color: #fff !important;
  width: 120px !important;
  margin: 5px;
}

div.dt-button-collection {
  background-color: #454d55 !important;
}

.buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;
  -ms-flex-direction: row;

  flex-direction: row;

  -webkit-box-pack: end;

  -ms-flex-pack: end;

  justify-content: end;
  max-width: 95%;
}

.container__form input.error {
  border: 1px solid red;
}

.select__holcim.error {
  border: 1px solid red;
}

.select2-container--default .select2-selection--single.error {
  border: 1px solid red;
}

.color {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    262deg,
    rgba(0, 0, 0, 0.5) 24.94%,
    rgba(58, 58, 58, 0) 43.84%,
    rgba(0, 0, 0, 0.2) 63.57%,
    rgba(0, 0, 0, 0.5) 80.52%
  );
  background: linear-gradient(
    188deg,
    rgba(0, 0, 0, 0.5) 24.94%,
    rgba(58, 58, 58, 0) 43.84%,
    rgba(0, 0, 0, 0.2) 63.57%,
    rgba(0, 0, 0, 0.5) 80.52%
  );
  z-index: 1;
}

.radio-wrapper {
  width: 145px;
  height: 50px;
  display: inline-block;
  vertical-align: super;
  background: transparent;
  border: 2px solid #6f87a7;
  color: #004d64;
  border-radius: 30px;
  position: relative;
  margin-left: -1%;
}

.radio__toggle {
  display: none;
}

.radio-wrapper label {
  line-height: 50px;
  padding: 0;
  text-align: center;
  width: 50px;
  height: 48px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: #004d64;
  top: -10px;
}

.neutral + label {
  left: 33%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.neutral:checked + label {
  border: 2px solid #1d4370;
  background: #fff;
}

.yes + label {
  left: 0;
}

.yes:checked + label {
  background: #04bbf1;
  color: #fff;
  -moz-animation-duration: 0.4s;
  -moz-animation-name: slidein;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: slidein;
  animation-duration: 0.4s;
  animation-name: slidein;
}

.no + label {
  right: 0;
}

.no:checked + label {
  background: #04bbf1;
  color: #fff;
  -moz-animation-duration: 0.4s;
  -moz-animation-name: slideno;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: slideno;
  animation-duration: 0.4s;
  animation-name: slideno;
}

@-webkit-keyframes slidein {
  from {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  to {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes slidein {
  from {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }

  to {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes slideno {
  from {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  to {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes slideno {
  from {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }

  to {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.button__scroll {
  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-align: end;
  -ms-flex-align: end;
  align-items: end;
  padding-right: 30px;
}

.scroll {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #04bbf1;
  border: 2px solid #04bbf1;
  position: relative;
}

.scroll::before {
  content: "▼";
  font-size: 24px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.container__form label.foto__label,
.container__form label.direccion__label {
  color: #000;
  font-size: 0.875rem;
}
.error-message {
  font-size: 0.875rem;
  color: red;
}

.imagen__desktop__back {
  max-width: 100%;
  max-height: 100vh;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center bottom;
  object-position: center bottom;
}

/*Responsive */

@media (min-height: 900px) {
  .grecaptcha-badge {
    top: 780px !important;
  }
}

@media screen and (max-width: 1900px) {
    .logo__home{
        max-width: 200px;
        left: 10%;
    }
}
@media screen and (max-width: 1100px) {
  .container__info__banner {
    padding: 5px;
  }

  .container__logo {
    width: 50%;
  }

  .imagen__desktop__back{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .container__logo.logo__home {
    top: 5%;
    text-align: left;
  }

  .container__logo.logo__home img{
    height: auto;
    max-width: 200px;
  }

}

@media (max-width: 768px) {
  .content-container {
    background-color: #fff;
  }

  .no-gutters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .container__form {
    height: auto;
    overflow: auto;
    padding: 0px 16px 20px;
  }

  .steps__solicitud {
    margin-bottom: 0rem;
  }

  .content-container {
    height: auto;
  }

  .progressbar__steps li.active {
    font-size: 0.825rem;
  }

  .steps__solicitud {
    margin-top: 1rem;
  }

  .full-height-image {
    height: auto;
  }

  .container_next__section {
    display: block;
    margin-bottom: 20px;
  }

  .container__main {
    padding: 40px 10px 0px;
  }

  .container-radius {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }

  .container-radius-opcion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }

  .container-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
  }

  .container__thankyou {
    margin-bottom: 2.5rem;
  }

  .container__finally__thankyou {
    padding: 45px 16px;
  }

  .text__finally {
    text-align: center;
    font-size: 1.125rem;
  }

  .finally__title {
    font-size: 1.5rem;
  }

  .head__container {
    padding-top: 35px;
    padding-bottom: 15px;
  }

  .container__main__aviso {
    padding: 20px 16px;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
  }

  .container__intro {
    padding: 0;
  }

  .container__logo {
    top: 5%;
    left: 25%;
    width: 90%;
    display: none;
  }

  .container__info__banner {
    position: absolute;
    top: 75%;
    left: 40%;
    -webkit-transform: translate(-40%, -40%);
    -ms-transform: translate(-40%, -40%);
    transform: translate(-40%, -40%);
    color: #fff;
    padding: 0px;
    width: 100%;
  }

  .title__banner {
    font-size: 1.75rem;
    margin: 0 15px 25px;
  }

  .subtitle__section {
    font-size: 1.125rem;
    padding: 0;
    padding-top: 15px;
  }

  .imagen__mobile {
    display: block;
  }

  .imagen__desktop ,
  .imagen__desktop__back {
    display: none;
  }

  .subtitle__banner {
    margin: 10px 15px;
  }

  .form__login__admin {
    width: 70%;
  }

  .img-holcim {
    max-height: 300px;
    display: none;
  }

  .img-holcim_mob {
    max-height: 300px;
    display: block;
  }

  .progressbar__steps li {
    height: 90px;
    max-height: 90px;
  }

  .text__info {
    padding: 0px;
  }

  .container__form label {
    font-weight: 400;
    margin: 10px 0px;
    margin: 0;
    font-size: 0.76rem;
  }

  .container-radius input {
    min-width: 16px;
    width: 16px;
    height: 16px;
  }

  .description__equipos {
    max-width: 100%;
  }

  .container-radius-opcion input {
    min-width: 20px;
  }

  .container_aceptar_terminos {
    padding: 0px 5px;
    gap: 5px;
  }

  .container_aceptar_terminos input {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }

  .form-text {
    max-width: 250px;
  }

  .js-form-item {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .radio-wrapper label {
    top: 0px;
  }
}
