/* BTN: used for button styles */
/* Default state is blue */
.btn,
.node-readmore > a, .link-as-button {
  background-color: #002D72;
  border-radius: 27px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  border: 1px solid #002D72;
  padding-left: 29px;
  padding-right: 27px;
  padding-top: 14px;
  padding-bottom: 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  white-space: normal;
  line-height: 1; /* for when button text wraps on mobile */
}

.btn_light {
  background-color: #FFFFFF;
  border-radius: 27px;
  color: #002D72;
  border: 1px solid #D7DCE8;
}

.btn_slim,
.node-readmore > a {
  padding-top: 6px;
  padding-bottom: 7px;
}

.btn:visited,
.btn:hover,
.btn:focus,
.node-readmore > a:hover,
.node-readmore > a:visited,
.node-readmore > a:focus  {
  color: #ffffff;
}

.btn:hover,
.node-readmore > a:hover {
  background-color: rgba(1, 33, 105, 0.8);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.btn:focus,
.node-readmore > a:focus {
  border-color: #CB6015;
}

.btn_light:visited,
.btn_light:hover,
.btn_light:focus  { 
  color: #002D72;
}

.btn_light:hover {
  background-color: #F2F4F7;
}

.link-as-button{
  display: block;
  margin-bottom: 15px;
  width: 100%;
  max-width: 500px;
}

/* overriding dirtyness done in WP Shortcode module, forgive my specificity */
div.link-as-button-wrap {
  background-color: transparent !important;
}

a.simple-button-plugin:focus {
  border-color: #910048 !important;
  outline-color: #fff;
}