Your theme is overwriting the style for those pagination buttons:
(blackdogsitting.com/wp-content/themes/rara-business-pro/style.css)
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
font-size: 0.8em;
font-weight: 900;
color: #0aa3f3;
border: 1px solid #0aa3f3;
background: none;
padding: 18px 60px;
border-radius: 5px;
-webkit-transition: ease 0.2s;
-moz-transition: ease 0.2s;
transition: ease 0.2s;
}
(see the padding above)
You can fix this by adding the following CSS:
.sa_owl_theme .owl-dots .owl-dot {
padding:0px !important;
}
Code added and back to normal appearance. Thank You. Cheers!