/*
Theme Name: Divi Child
Template: Divi
Theme URI: https://mainehost.com/wordpress/
Version: divi.x
Description: Child theme customization based on Divi theme.
Author: Maine Hosting Solutions
Author URI: https://mainehost.com
Tags: responsive-layout
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url("../Divi/style.css");


/* START - Dan's custom buttons */

/* Button base css */
.btn, a.btn, input[type="submit"] {
  background: #3B6E8F;
  border-radius: 4px;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
}
.btn:hover {
  background: #1d435e;
  text-decoration: none;
}
/* Button variations */
.btn-primary, .btn-default, btn btn-primary, btn btn-default {
  background: #3B6E8F !important;
  padding: 5px 10px 5px 10px !important;
}
.btn-small {
  font-size: 12px !important;
}
.btn-large {
    padding: 11px 19px !important;
    font-size: 17.5px !important;
    margin-top: 10px;
    margin-bottom: 10px;
}
.btn-red, .btn-danger, .btn-warning {
    background: #B42E34 !important;
}
.btn-red:hover {
  background: #333333 !important;
}
.btn-grey {
    background: #333333 !important;
}
.btn-grey:hover {
  background: #B42E34 !important;
}
.btn-full {
    width: 95% !important;
    display: inline-block;
    margin: 5px;
}
.btn-300 {
    width: 300px !important;
    display: inline-block;
}

/* END - Dan's custom buttons */