.Wizard {
  /* position: relative; */
  display: block;
  padding: 12px;
  border-radius: 20px;
  border: 1px #00afe8 solid;
  /* border-right: 1px #00afe8 solid;
  border-left: 1px #00afe8 solid; */
  margin-bottom: 40px;
  padding-bottom: 40px;
  /* background-color: #fff; */
}

.DocObjTabContainer {
  background-color: #fff;
  padding: 20px;
  width: 100%;
}

.Wizard .Cab {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-bottom: 1px #777 solid;
  margin-bottom: 20px;
  padding: 10px 0
}

.Wizard .DesplBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #ddd;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -15px;
  cursor: pointer;
  transition: all .2s ease;
  transform: rotate(180deg);
}

.Wizard .DesplBtn.Accion {
  transform: rotate(0deg);
}

.Wizard .DesplBtn:hover {
  background-color: darkorange;
}

.Wizard .DesplBtn:hover::after, .Wizard .DesplBtn:hover::before {
  color: #fff
}

.Wizard .DesplBtn::after, .Wizard .DesplBtn::before {
  display: block;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 1em;
  font-weight: 700;
  color: #444;
}

.Wizard .DesplBtn::before {
  margin-bottom: -11px
}

/* Pasos */
.Wizard .Pasos {
  display: flex;
  padding: 5px 5px 18px 5px;
}

.Wizard .Pasos a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Wizard .Flecha,
.Wizard .Pasos .Paso {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  height: 37px;
  width: 37px;
  background-color: #fff;
  color: #777;
  font-family: robotoM;
  font-size: 1.1em;
  border-radius: 50%;
  transition: all .2s ease;
}

.Wizard .Flecha {
  background-color: #aaa
}

.Wizard .Flecha::before {
  display: block;
  content: "\f061";
  font-family: FontAwesome;
  color: #fff;
}

.Wizard .Flecha.Ant::before {
  content: "\f060";
}

.Wizard .Pasos .Paso.Compl::before {
  display: block;
  content: "\f00c";
  font-family: FontAwesome;
  background-color: #9acb4c;
  position: absolute;
  top: -6px;
  right: -5px;
  color: #fff;
  padding: 2px;
  font-size: .7em;
  border-radius: 50%;
  border: 1px #fff solid;
}

.Wizard .Flecha:hover,
.Wizard .Pasos .Paso:hover,
.Wizard .Pasos .Paso.Actual {
  background-color: #00afe8;
  color: #fff
}

.Wizard .Pasos .Paso .Hov {
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease;
  position: absolute;
  bottom: 40px;
  display: flex;
  left: -4px;
}

.Wizard .Pasos .Paso .Hov::after {
  content: "";
  display: block;
  background-color: #576e82;
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: -4px;
  left: 19px;
  transform: rotate(45deg);
}

.Wizard .Pasos .Paso:hover .Hov {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
  background-color: #576e82;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: .9em;
  font-family: 'robotoL';
}

.Wizard .Pasos .Paso .Hov .Num {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 7px;
  height: 100%;
  align-self: center;
  width: max-content;
}

.Wizard .Pasos .Paso .Hov .Nombre {
  display: block;
  max-width: 150px;
  width: max-content;
  border-left: 1px rgba(255, 255, 255, .5) solid;
  padding-left: 7px;
}

/* Desplegable */
.Wizard .Despl {
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all .3s ease;
  height: 120px;
  padding: 5px;
}

.Wizard .Despl.Ocultar {
  opacity: 0;
  height: 0;
}

/* Cinco Pasos */
.Wizard .Despl .Int {
  display: block;
  padding: 5px 5px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 125%;
  margin-left: -12.7%;
}

.Wizard .Despl.Izq .Int {
  margin-left: 0;
  width: 111%;
}

.Wizard .Despl.Der .Int {
  margin-left: -11%;
  width: 111%;
}

.Wizard .Despl .Int>.Paso, .Wizard .Despl a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 12px;
  flex-direction: column;
  border-radius: 15px;
  margin: .5%;
  position: relative;
  transition: all .2s ease;
  width: 19%;
}

/* Tres Pasos */
.Wizard .Despl.Pasos3 .Int {
  width: 100%;
  margin-left: 0;
}

.Wizard .Despl.Pasos3.Der .Int {
  margin-left: 0;
}

.Wizard .Despl.Pasos3.Izq .Int {
  margin-left: 0;
}

.Wizard .Despl.Pasos3 .Int>.Paso, .Wizard .Despl.Pasos3 a {
  width: 40%;
}

/* Dos Pasos */
.Wizard .Despl.Pasos2 .Int {
  width: 100%;
}

.Wizard .Despl.Pasos2.Der .Int {
  margin-left: 0;
}

.Wizard .Despl.Pasos2.Izq .Int {
  margin-left: 0;
}

.Wizard .Despl.Pasos2 .Int>.Paso, .Wizard .Despl.Pasos2 a {
  width: 50%;
}

/* Dos Pasos */
.Wizard .Despl.Pasos1 .Int {
  width: 100%;
  margin-left: 0
}

.Wizard .Despl.Pasos1 .Int>.Paso, .Wizard .Despl.Pasos1 a {
  width: 100%;
}

/**/
.Wizard .Despl .Int>.Paso:last-child, .Wizard .Despl a:last-child {
  margin-right: 0
}

.Wizard .Despl .Int>.Paso:first-child, .Wizard .Despl a:first-child {
  margin-left: 0
}

.Wizard .Despl a {
  padding: 0;
  margin: 0 .5%;
}

.Wizard .Despl a .Paso {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 15px;
  width: 100%;
  margin: .5%;
  transition: all .2s ease;
}

.Wizard .Despl .Paso .Nombre:last-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.Wizard .Despl .Int .Paso .Num {
  position: absolute;
  width: 74px;
  top: -13px;
  white-space: nowrap;
  background-color: #fff;
  color: #999;
  text-align: center;
  border-radius: 15px;
  padding: 2px;
  font-size: 14px;
  font-family: 'robotoM';
  border: 2px #999 dashed;
  opacity: 0;
  transition: all .2s ease;
}

.Wizard .Despl .Int .Paso:hover .Num {
  opacity: 1;
}

.Wizard .Despl .Int .Paso.Hab .Num {
  background-color: #aaa;
  color: #fff;
  border: 0;
  padding: 4px 12px;
  opacity: 1;
}

.Wizard .Despl .Int .Paso.Hab:hover,
.Wizard .Despl .Int .Paso.Actual {
  box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.Wizard .Despl .Int .Paso.Actual .Num {
  background-color: #00afe8;
  color: #fff;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
}

.Wizard .Despl .Int .Paso .Nombre {
  color: #666;
  border-radius: 15px;
  padding: 4px;
  font-size: 16px;
  font-family: 'robotoM';
  margin-top: 4px;
  /* width: 200px;
  max-width: 113px; */
  text-align: center;
}

@media (max-width:800px) {
  .Wizard .Cab {
    width: auto;
  }

  .Wizard .Despl .Pc {
    display: none;
  }
}

@media (max-width:600px) {
  .Wizard .Despl .Int .Paso .Nombre {
    font-size: 14px;
    max-width: 83px;
  }

  .Wizard .Despl .Int .Paso .Num {
    font-size: 13px
  }

  .Wizard .Despl .Int .Paso .Num {
    width: 64px
  }

  .Wizard .Flecha, .Wizard .Pasos .Paso {
    width: 34px;
    height: 34px;
    s
  }
}

.Wizard .Despl .Int .Paso.Compl .Num::after {
  display: block;
  content: "\f00c";
  font-family: FontAwesome;
  background-color: #9acb4c;
  position: absolute;
  top: -6px;
  right: -5px;
  color: #fff;
  padding: 2px;
  font-size: .7em;
  border-radius: 50%;
  border: 1px #fff solid;
}

/* Paginado Pie */
.Wizard .ContPie {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px auto -57px;
}

.Wizard .ContPie .Pie {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f3;
  padding: 0 15px
}

.Wizard .ContPie .Pie .Nombre {
  padding: 0 9px;
  font-size: 18px
}

.Wizard .ContPie .Pie .Nombre.Actual {
  background-color: #fff;
  color: #00afe8;
  font-family: robotoM;
  padding: 5px 20px;
  margin: 0 10px;
  border-radius: 15px
}

@media (max-width:450px) {
  .Wizard .ContPie {
    margin-bottom: -56px
  }

  .Wizard .ContPie .Pie {
    padding: 0;
  }

  .Wizard .ContPie .Pie .Nombre {
    font-size: 16px;
  }
}
