/* USER CONTENT: overriding wysiwyg styles for text and adding custom button styles. */

/* HEADINGS */
.content h2,
.user-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  letter-spacing: 0.6px;
}

.content h3,
.user-content h3 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-size: 24px;
  color: #000000;
  letter-spacing: 0.6px;
}

.user-content ul {
  list-style-type: disc;
} 

/* 
  CUSTOM BUTTONS for WYSIWYG EDITOR: uses CKEditor Link module to create custom formatting styles.
  See configuration here under the CSS tab at the bottom:
    http://az-ade.lndo.site/test-content-area#overlay=admin/config/content/wysiwyg/profile/basic_html/edit 
  These buttons match brand/styleguide standards and can be applied where anchors are used.
*/

.btn-brand {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #D7DCE8;
  text-align: center;
  min-height: 54px !important;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
  border-radius: 27px;
  text-decoration: none;
}

.btn-brand:hover {
  background-color: #F2F4F7;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
  border-color: transparent;
  text-decoration: none;
}

.btn-brand_secondary {
  background-color: #002D72;
  border-color: #002D72;
  color: #ffffff;
}

.btn-brand_secondary:hover {
  background-color: rgba(1, 33, 105, 0.8);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
  border-color: transparent;
}

.btn-brand_secondary:visited {
  color: #ffffff;
}

.btn-brand:focus,
.btn-brand_secondary:focus {
  background-color: #ffffff !important;
  border-color: #CB6015;
}