I'm trying to create to create two diagonal curved lines with CSS.
What I'm trying to create:
What I've achieved so far:
I've attempted this using a border, my code so far:
.bottom-circle {
width: 45%;
height: 50px;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
border-left: 2px dashed #c6c6c6;
border-right: 2px dashed #c6c6c6;
margin: 0 auto;
}
<div class="bottom-circle"></div>
I've spent a few hours trying to fix this but with no luck so far. I'm wondering how I could do this in the simplest way possible? Thanks

