Подскажите пожалуйста, как можно заставить двигаться стрелчку, чтобы она постоянно двигалась влево вправо?
<button class="btn-continion offset-md-3">Далее</button>
<div id="string">
<div class="string-right"></div>
<div class="string-cont"></div>
</div>
.btn-continion{
font-size: 1.125em;
background-color: transparent;
border-radius: 5px;
border: 2px solid black;
padding: 1px 18px;
cursor: pointer;
}
/*стрелочка*/
.string-right{
border-right: 1px solid;
border-bottom: 1px solid;
height: 9px;
width: 9px;
transform: rotate(-45deg);
margin-left: 445px;
color: black;
margin-top: -20px;
}
.string-cont{
width: 15px;
height: 1px;
background-color: black;
position: absolute;
margin-top: -5px;
margin-left: 440px;
}