*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; 
    box-sizing: border-box;
}

a:link{text-decoration:none;}
a:hover{text-decoration: underline;}
a:active, a:active *{outline: none !important; -moz-outline-style: none !important;}
a:focus, a:focus *{outline: none !important; -moz-outline-style: none !important;}

html{
    height:100%;
    min-height: 100%;
}

body {
  overflow-x: hidden;
}

.aprobado{
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}

.dummy-positioning{
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.success-icon {
  display: inline-block;
  width: 10em;
  height: 10em;
  font-size: 20px;
  border-radius: 50%;
  border: 20px solid #96df8f;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  -webkit-animation: showSuccess 180ms ease-in-out;
          animation: showSuccess 180ms ease-in-out;
  transform: scale(1);
}

.success-icon__tip, .success-icon__long {
  display: block;
  position: absolute;
  height: 1em;
  background-color: #96df8f;
  border-radius: 1em;
}
.success-icon__tip {
  width: 2.8em;
  top: 4.3em;
  left: 1.4em;
  transform: rotate(45deg);
  -webkit-animation: tipInPlace 300ms ease-in-out;
          animation: tipInPlace 300ms ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 180ms;
          animation-delay: 180ms;
  visibility: hidden;
}
.success-icon__long {
  width: 4.4em;
  transform: rotate(-45deg);
  top: 3.8em;
  left: 2.55em;
  -webkit-animation: longInPlace 140ms ease-in-out;
          animation: longInPlace 140ms ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: hidden;
  -webkit-animation-delay: 440ms;
          animation-delay: 440ms;
}

@-webkit-keyframes showSuccess {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes showSuccess {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes tipInPlace {
  from {
    width: 0em;
    top: 3.5em;
    left: 2em;
  }
  to {
    width: 2.8em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}
@keyframes tipInPlace {
  from {
    width: 0em;
    top: 3.5em;
    left: 2em;
  }
  to {
    width: 2.8em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}
@-webkit-keyframes longInPlace {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }
  to {
    width: 4.4em;
    top: 3.8em;
    left: 2.55em;
    visibility: visible;
  }
}
@keyframes longInPlace {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }
  to {
    width: 4.4em;
    top: 3.8em;
    left: 2.55em;
    visibility: visible;
  }
}

.descripcion{
  font-size: 18px;
  font-weight: 600;
}