.btn-rounded {
   border-radius: 40px;
}

/* White button with black border and black text */
.btn-outline-light {
   color: #000;
   border-color: #000;
}
.btn-blue-outline {
   line-height: 1em;
   color: #008cc9;
   border: 1px solid #008cc9;
   border-radius: 25px;
   background-color: #fff;
   font-weight: normal;
   width: 125px;
   padding: 7px;
   font-size: 1.4rem;
}
.btn-blue-outline:hover {
   border-width: 2px;
   color: #008cc9;
}

/* Blue button with white text */
.btn-dark-blue {
   color: #fff;
   background-color: #2d9cdb;
   border-color: #2d9cdb;
}
.btn-dark-blue:hover {
   color: #fff;
   background-color: #2187c1;
   border-color: #1f7fb6;
}
.header-inverted .btn:hover {
   color: #000;
   background-color: #f5f5f5;
}
