a,
a:focus,
a:hover,
a:active {
  text-decoration: none;
  transition: .3s all ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  /* font-weight: 300; */
  /* line-height: 1; */
  /* color: #111111; */
  margin: 0;
  cursor: default;
}

figure {
  width: 100%;
  margin: 0;
}

img {
  width: 100%;
}

/* Mensaje Confirmacion */
.sectRspta{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cont-rspta {
  width: 30rem;
  max-width: 30rem;
  text-align: center;
  background: #ffff;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 0 10px 0px #313131;
}
.icon {
  font-size: 5rem;
}
.iconError {
  color: #dc3545;
}
.iconGood {
  color: #1e7e34;
}
.rspta-title {
  font-size: 40px;
  color: #313131;
}
.rspta-text {
  /* color: ; */
  font-size: 18px;
}
.rspta-btn {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .cont-rspta {
    width: 25rem;
  }
}
@media screen and (max-width: 480px) {
  .cont-rspta {
    width: 20rem;
  }
  .icon {
    font-size: 4rem;
  }
  .rspta-title {
    font-size: 30px;
  }
  .rspta-text {
    font-size: 14px;
  }
  .rspta-btn {
    font-size: 1rem;
  }
}
