I'd like to create a stylish rounded corner div on the top-right and top-left edges. I attempted it with the following code:
border-top-left-radius: 5em;
border-top-right-radius: 5em;
Desired look of the div: https://i.stack.imgur.com/EoSvSm.jpg
Actual appearance of the div: https://i.stack.imgur.com/WkEcQm.jpg
UPDATE
.picker-map {
border-top-left-radius: 5em;
border-top-right-radius: 5em;
height: 200px;
opacity: 0.8;
background-color: white;
border-top: 7px dashed;
border-top-color: #FC5241;}