SVG shapes animation around buttons

by katalin_2003

HTML

<div class="svg-wrapper">
  <svg height="60" width="320" xmlns="http://www.w3.org/2000/svg">
    <rect class="btn-shapes shape1" height="60" width="320" />
  </svg>
  <div class="text">PRODUITS NEUFS</div>
</div>

<div class="svg-wrapper">
  <svg height="60" width="320" xmlns="http://www.w3.org/2000/svg">
    <rect class="btn-shapes shape2" height="60" width="320" />
  </svg>
  <div class="text">SERVICES</div>
</div>

CSS

html,
body {
  background: #333;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

.svg-wrapper {
  display: inline-block;
  height: 60px;
/* 
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
*/	
  width: 320px;
}

.btn-shapes {
  fill: transparent;
  /* stroke-dasharray: 140 540; */
  /* stroke-dashoffset: -474; */
  stroke-width: 8px;
  stroke: #19f6e8;
}

.shape1 {
  stroke-dasharray: 280 420;
  stroke-dashoffset: -404;
}

.shape2 {
  stroke-dasharray: 174 540;
  stroke-dashoffset: -454;
}

.text {
  color: #fff;
  font-family: 'Roboto Condensed';
  font-size: 22px;
  letter-spacing: 8px;
  line-height: 32px;
  position: relative;
  top: -48px;
}

@keyframes draw {
  0% {
    stroke-dasharray: 140 540;
    stroke-dashoffset: -474;
    stroke-width: 8px;
  }

  100% {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    stroke-width: 2px;
  }
}

.svg-wrapper:hover .btn-shapes {
  -webkit-animation: 0.5s draw linear forwards;
  animation: 0.5s draw linear forwards;
}