Hello,
This is because of below style in shortcode.css (line 560).
.omsc-toggle {
margin: 1em 0;
border:1px solid #e1e1e1;
border-color:rgba(0,0,0,0.10);
padding:0;
overflow:hidden;
}
You could either remove the border property from above or create another style like below which will override the above one.
.omsc-toggle {
border:none;
}
Regards,
Bala