div.cont-conadis {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

div.cont-conadis input {
  display: none;
}

div.cont-conadis span.boton-conadis {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 210px;
  border-radius: 12px;
  box-shadow: 2px 2px 2em .2em #d8d8d8;
  padding: .7em 1em;
  margin: 30px 0 5px 0;
  position: relative;
  cursor: pointer;
}

div.cont-conadis span.boton-conadis img {
  height: 70px;
}

div.cont-conadis span.boton-conadis p {
  margin-left: 5px;
  font-family: 'Archivo Narrow', sans-serif;
  color: #333;
}

div.cont-conadis span.boton-conadis logoSvgCheck {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.6em;
  width: 1.6em;
  position: absolute;
  right: 15px;
  bottom: 50%;
  transform: translateY(50%);
}

div.cont-conadis span.boton-conadis logoSvgCheck svg {
  height: 100%;
  width: 100%;
}

div.cont-conadis span.boton-conadis logoSvgCheck svg path#checkSvgConadis {
  stroke: #ef8627;
  stroke-width: 6;
  stroke-dasharray: 150;
  stroke-dashoffset: 200;
  stroke-miterlimit: 50;
  animation: dibujar-linea 1s forwards cubic-bezier(0.175, 0.185, 0.21, 0.153);
}

@keyframes dibujar-linea {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dasharray: 300;
  }
}
