.card-registration .select-input.form-control[readonly]:not([disabled]) {
  font-size: 1rem;
  line-height: 2.15;
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.card-registration .select-arrow {
  top: 13px;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.resaltar {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 900;
  font-size: 26px;
  transition: transform 0.5s;
  text-align: center;
  z-index: 1;
}

.resaltar1::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 0;
  background-color: #22d8f8;
  z-index: -1;
  padding: 0 4px;
  transform: rotate(-2deg) translate(-4px, -2px);
  transition: transform 0.5s;
}

.resaltar2::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 120%;
  height: 100%;
  top: 10px;
  left: -20px;
  background-color: #00acca;
  z-index: -1;
  padding: 0 4px;
  transform: rotate(-2deg) translate(-4px, -2px);
  transition: transform 0.5s;
}

.seccion {
  background-image: url(/img/fondo_00.jpg);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.item-01 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.item-02 {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}
.item-03 {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}
.item-04 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}
/* .item-05{
        grid-column: 3 / 5;
        grid-row: 1 / 3;
      } */
.item-06 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.item-10 {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
}

.enviar {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 2px;
  border: 3px solid #000;
  padding: 20px 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.enviar span {
  width: 25%;
  height: 100%;
  background-color: #48a3ee;
  position: absolute;
  border-radius: 50%;
  transform: translateY(100%);
  transition: transform 0.2s;
  z-index: -2;
}
.enviar span:nth-child(1) {
  left: 0;
}
.enviar span:nth-child(2) {
  left: 25%;
  transition-delay: 0.1s;
}

.enviar span:nth-child(3) {
  left: 50%;
  transition-delay: 0.2s;
}

.enviar span:nth-child(4) {
  left: 75%;
  transition-delay: 0.3s;
}

.enviar:hover span {
  transform: translateY(0) scale(2);
}

.listaCheck {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

.bordes {
  border-bottom: 1px solid #48a3ee;
  padding-bottom: 5px;
}
.pasarCheck:hover {
  cursor: pointer;
}

.contenedor_h1 {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #48a3ee;
}

h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.datosPersonales {
  /* color: #ff8a0c; */
  color: #ffffff;
  padding: 10px 0;
}

li {
  list-style: none;
  border-bottom: 1px solid #22d8f8;
}


.verMas {
  display: flex;
  justify-content: end;
  align-items: end;
}

.itemsDetalle {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin: 0;
}

.detalles {
  display: none;
}

@media screen and (min-width: 768px) {
  .detalles {
    display: block;
  }
  
}

