@charset "UTF-8";
.u-overflow {
  overflow: hidden;
}

.u-clear {
  clear: both;
}

.u-center {
  text-align: center;
}

/**
 * from - https://css-tricks.com/between-the-lines/
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires a media query to cap the value at B.
 */
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

.visuallyhidden, .site-footer .communications form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .site-footer .communications form label.focusable:active, .visuallyhidden.focusable:focus, .site-footer .communications form label.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.unseen, .unseen-focusable, .xl-spotlight .find-church-text form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.unseen-focusable:focus {
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  color: #000;
  background-color: #fff;
  border: solid 4px #9669a9;
  padding: 4px;
  text-decoration: none;
  font-weight: bold;
  outline: 0;
}

@media (max-width: 59.365em) {
  .hide-tabium {
    display: none !important;
  }
}

@media (min-width: 59.375em) {
  .hide-tabium-plus {
    display: none !important;
  }
}

@media (max-width: 49.365em) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 49.375em) {
  .hide-desktop {
    display: none !important;
  }
}

@media (min-width: 68.75em) {
  .hide-medium {
    display: none;
  }
}

@media (max-width: 29.99em) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 20.0525em) {
  .hide-min {
    display: none;
  }
}

.hidden,
.no-js .no-js-hide {
  display: none;
}

.overhide {
  overflow: hidden;
}

/* ===========================================================
 *
 *  Name:          selectordie_dev.css CUSTOM!!!!
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */
.sod_select,
.sod_select * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select {
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 14px 45px 14px 20px;
  outline: 0;
  outline-offset: -2px;
  /* Opera */
  cursor: default;
}

/* Change the border color on hover, focus and when open */
/* .sod_select:hover,
.sod_select.open,
.sod_select.focus { border-color: #000000; } */
/*  .sod_select.open { color: #919191; }
 .sod_select.focus { box-shadow: 0 0 5px rgba(0,0,0,.2); } */
/* When the entire SoD is disabled, go crazy! */
.sod_select.disabled {
  border-color: #828282;
  color: #b2b2b2;
  cursor: not-allowed;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
.sod_select .sod_label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 15px;
  line-height: 1.2em;
}

.sod_select .sod_prefix {
  /* Use this if you're using a prefix and want to style it */
}

.sod_select .sod_placeholder {
  /* Use this if you're using a placeholder and want to style it */
}

/* Options list wrapper */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  height: auto;
  margin: 0 -1px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-top: none;
  z-index: 1;
}

/* Shows the option list (don't edit) */
.sod_select.open .sod_list_wrapper {
  display: block;
}

/* Don't display the options when  */
.sod_select.disabled.open .sod_list_wrapper {
  display: none;
}

/* When the option list is displayed above the SoD */
.sod_select.above .sod_list_wrapper {
  top: auto;
  bottom: 100%;
  border-top: 1px solid #e4e4e4;
  border-bottom: none;
}

/* Options list container */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

/* All the options. Keep the first three lines for truncating... */
.sod_select .sod_option {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  padding: 10px 10px;
  list-style-type: none;
}

/* Optgroups */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
  background: inherit;
  color: #939393;
  font-size: 10px;
  font-style: italic;
}

/* Children of an optgroup */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
.sod_select .sod_option.is-placeholder {
  display: none;
}

/* Disabled option */
.sod_select .sod_option.disabled {
  background: inherit;
  color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
.sod_select .sod_option.selected {
  padding-right: 25px;
}

/* Displays a check mark for the selected option */
.sod_select .sod_option.selected:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #808080;
  height: 9px;
  width: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 500;
}

.sod_select.no_highlight .sod_option.selected:before {
  display: none;
}

.sod_select .sod_option.link {
  /* If data-link is set on a specific option */
}

.sod_select .sod_option.linkexternal {
  /* If data-link-external is set on a specific option */
}

/* Hide native select */
.sod_select select {
  display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
.sod_select.touch select {
  -webkit-appearance: menulist-button;
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

/*! Lity - v2.2.2 - 2016-12-14
* http://sorgalla.com/lity/
* Copyright (c) 2015-2016 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #fff;
}

.lity-hide {
  display: none;
}

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=&bgImgOpacityHighlight=&bgImgOpacityActive=&bgImgOpacityHover=&bgImgOpacityDefault=&bgImgOpacityContent=&bgImgOpacityHeader=&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cc0000&fcError=%235f3f3f&borderColorError=%23f1a899&bgTextureError=flat&bgColorError=%23fddfdf&iconColorHighlight=%23333&fcHighlight=%23333&borderColorHighlight=%23ffffff&bgTextureHighlight=flat&bgColorHighlight=%23e0e0e0&iconColorActive=%23ffffff&fcActive=%23ffffff&borderColorActive=%23ffffff&bgTextureActive=flat&bgColorActive=%2300ab8e&iconColorHover=%23555555&fcHover=%23ffffff&borderColorHover=%23cccccc&bgTextureHover=flat&bgColorHover=%23862633&iconColorDefault=%23777777&fcDefault=%23454545&borderColorDefault=%23ffffff&bgTextureDefault=flat&bgColorDefault=%23ffffff&iconColorContent=%23444444&fcContent=%23333333&borderColorContent=%23ffffff&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23333&fcHeader=%23333333&borderColorHeader=%23ffffff&bgTextureHeader=flat&bgColorHeader=%23ffffff&cornerRadius=0&fwDefault=normal&fsDefault=1em&ffDefault=
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: inherit;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: inherit;
  font-size: 1em;
}

body .ui-widget.ui-widget-content {
  border: 1px solid #e4e4e4;
  box-shadow: 0px 10px 20px 0px rgba(80, 80, 80, 0.5);
}

.ui-widget-content {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-weight: normal;
  color: #454545;
  text-align: center;
  border-radius: 50%;
  line-height: 1.5;
  width: 2em;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #862633;
  font-weight: normal;
  color: #ffffff;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #ffffff;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #ffffff;
  background: #00ab8e;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #ffffff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #ffffff;
  background: #e0e0e0;
  color: #333;
}

.ui-state-checked {
  border: 1px solid #ffffff;
  background: #e0e0e0;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #333;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_333_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_333_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 0;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

/*! jQuery UI - v1.12.1 - 2017-01-27
* http://jqueryui.com
* Includes: core.css, datepicker.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=&bgImgOpacityHighlight=&bgImgOpacityActive=&bgImgOpacityHover=&bgImgOpacityDefault=&bgImgOpacityContent=&bgImgOpacityHeader=&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cc0000&fcError=%235f3f3f&borderColorError=%23f1a899&bgTextureError=flat&bgColorError=%23fddfdf&iconColorHighlight=%23333&fcHighlight=%23333&borderColorHighlight=%23ffffff&bgTextureHighlight=flat&bgColorHighlight=%23e0e0e0&iconColorActive=%23ffffff&fcActive=%23ffffff&borderColorActive=%23ffffff&bgTextureActive=flat&bgColorActive=%2300ab8e&iconColorHover=%23555555&fcHover=%23ffffff&borderColorHover=%23cccccc&bgTextureHover=flat&bgColorHover=%23862633&iconColorDefault=%23777777&fcDefault=%23454545&borderColorDefault=%23ffffff&bgTextureDefault=flat&bgColorDefault=%23ffffff&iconColorContent=%23444444&fcContent=%23333333&borderColorContent=%23ffffff&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23333&fcHeader=%23333333&borderColorHeader=%23ffffff&bgTextureHeader=flat&bgColorHeader=%23ffffff&cornerRadius=0&fwDefault=normal&fsDefault=1em&ffDefault=
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

.ui-widget {
  font-family: inherit;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: inherit;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #fff;
}

.ui-widget-content {
  border: 1px solid #fff;
  background: #fff;
  color: #333;
}

.ui-widget-content a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #fff;
  background: #fff;
  color: #333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #fff;
  background: #fff;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: 1px solid #ccc;
  background: #862633;
  font-weight: normal;
  color: #fff;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focus {
  color: #fff;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #fff;
  background: #00ab8e;
  font-weight: normal;
  color: #fff;
}

.ui-icon-background, .ui-state-active .ui-icon-background {
  border: #fff;
  background-color: #fff;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #fff;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fff;
  background: #e0e0e0;
  color: #333;
}

.ui-state-checked {
  border: 1px solid #fff;
  background: #e0e0e0;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #333;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon, .ui-widget-content .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_333_256x240.png");
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon, .ui-button:active .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon, .ui-button .ui-state-highlight.ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_333_256x240.png");
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("../img/jquery-ui/ui-icons_777777_256x240.png");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 0;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 0;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 0;
}

.ui-widget-overlay {
  background: #aaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666;
  box-shadow: 0 0 5px #666;
}

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
  transiton: all .2s;
  cursor: pointer;
}

.ui-datepicker-prev-hover,
.ui-datepicker-next-hover {
  background: #fff !important;
  border: none !important;
  top: 2px !important;
}

.ui-datepicker-prev-hover {
  left: 2px !important;
}

.ui-datepicker-next-hover {
  right: 2px !important;
}

/**
 * Keyframes mixin
 */
/**
 * Animation
 */
/**
 * Animation fill mode.
 */
/**
 * Animation iteration count.
 */
/* Flexbox containers */
/* Flexbox direction */
/* Flexbox wrap */
/* Flexbox basis */
/* Flexbox grow */
/* Flexbox justify content */
/* Flexbox align items */
/* Flexbox align content */
/* Flexbox align self */
/* Flex */
/* Order */
/* Border Radius */
/* Box Sizing */
/* Appearance */
/* Transitions */
/* Transform */
/* Transform origin */
/* Box shadow */
/* Background size */
/* Placeholder */
/* Opacity */
/* Clearfix */
/* Gradient */
/* Filter */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  overflow-y: scroll;
  box-sizing: border-box;
}
html *, html *:before, html *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a img {
  border: 0;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 11px;
  letter-spacing: 0.0125em;
  padding: 10px 0 0;
}
@media (min-width: 45em) {
  figcaption {
    font-size: 14px;
  }
}

button,
label,
input[type=submit],
input[type=reset] {
  cursor: pointer;
}
button:focus,
label:focus,
input[type=submit]:focus,
input[type=reset]:focus {
  outline: none !important;
}

input[type=text]:focus {
  outline: none !important;
}

textarea {
  resize: vertical;
}

audio {
  line-height: 1;
  margin: 10px 0 20px;
  min-height: 32px;
}

/** Font: Open Sans **/
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Light.eot");
  src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-LightItalic.eot");
  src: url("../fonts/OpenSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-LightItalic.woff") format("woff"), url("../fonts/OpenSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Italic.eot");
  src: url("../fonts/OpenSans-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Italic.woff") format("woff"), url("../fonts/OpenSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-SemiBold.eot");
  src: url("../fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-SemiBoldItalic.eot");
  src: url("../fonts/OpenSans-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-SemiBoldItalic.woff") format("woff"), url("../fonts/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
/** Font: Cabin **/
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-Regular.eot");
  src: url("../fonts/Cabin-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-Regular.woff") format("woff"), url("../fonts/Cabin-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-Italic.eot");
  src: url("../fonts/Cabin-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-Italic.woff") format("woff"), url("../fonts/Cabin-Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-Medium.eot");
  src: url("../fonts/Cabin-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-Medium.woff") format("woff"), url("../fonts/Cabin-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-MediumItalic.eot");
  src: url("../fonts/Cabin-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-MediumItalic.woff") format("woff"), url("../fonts/Cabin-MediumItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-Bold.eot");
  src: url("../fonts/Cabin-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-Bold.woff") format("woff"), url("../fonts/Cabin-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Cabin';
  src: url("../fonts/Cabin-BoldItalic.eot");
  src: url("../fonts/Cabin-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin-BoldItalic.woff") format("woff"), url("../fonts/Cabin-BoldItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'ITC Airstream';
  src: url("../fonts/airstream-itc/Airstream-ITC.eot");
  src: url("../fonts/airstream-itc/Airstream-ITC.eot?#iefix") format("embedded-opentype"), url("../fonts/airstream-itc/Airstream-ITC.woff") format("woff"), url("../fonts/airstream-itc/Airstream-ITC.ttf") format("truetype");
}
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Open Sans", calibri, arial, sans-serif;
  color: #000;
  font-weight: 300;
}
@media (max-width: 49.365em) {
  body {
    font-size: 16px;
  }
}
body a, body:link, body:visited {
  color: #100b74;
}
body a:focus, body a:hover, body:link:focus, body:link:hover, body:visited:focus, body:visited:hover {
  outline: none;
}

.alpha, h1 {
  font-size: 4.375em;
}
@media (max-width: 29.99em) {
  .alpha, h1 {
    font-size: 3.125em;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .alpha, h1 {
    font-size: 3.75em;
  }
}

.beta, h2 {
  font-size: 40px;
}
@media (max-width: 29.99em) {
  .beta, h2 {
    font-size: 24px;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .beta, h2 {
    font-size: 32px;
  }
}

.gamma, h3, .intro {
  font-size: 30px;
}
@media (max-width: 29.99em) {
  .gamma, h3, .intro {
    font-size: 20px;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .gamma, h3, .intro {
    font-size: 28px;
  }
}

.delta, h4 {
  font-size: 28px;
}
@media (max-width: 29.99em) {
  .delta, h4 {
    font-size: 16px;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .delta, h4 {
    font-size: 25px;
  }
}

.epsilon, h5 {
  font-size: 25px;
}
@media (max-width: 29.99em) {
  .epsilon, h5 {
    font-size: 16px;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .epsilon, h5 {
    font-size: 20px;
  }
}

.zeta, h6 {
  font-size: 20px;
}
@media (max-width: 29.99em) {
  .zeta, h6 {
    font-size: 16px;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .zeta, h6 {
    font-size: 18px;
  }
}

h1 {
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl, blockquote {
  margin-top: 0;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cabin", tahoma, arial, sans-serif;
}

h1, h2, h3 {
  font-weight: 500;
}

h4, h5, h6 {
  font-weight: 300;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
p + h2 {
  margin-top: 40px;
  margin-top: 2.5rem;
}

section + section {
  margin-top: 40px;
  margin-top: 2.5rem;
}

hr {
  border: 0;
  border-top: solid 1px #e4e4e4;
  padding: 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.thin {
  font-weight: 100;
}

.lh {
  line-height: 1;
}

.lh-s {
  line-height: 1.3;
}

.lh-m {
  line-height: 1.6;
}

.ta-c {
  text-align: center !important;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

@media (min-width: 49.375em) {
  .ta-r\@desktop {
    text-align: right;
  }
}

@media (max-width: 49.365em) {
  .ta-c\@mobile {
    text-align: center;
  }
}

.more {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 0.875em;
}

.bar-heading {
  line-height: 1.2;
}
@media (max-width: 49.365em) {
  .bar-heading {
    margin: 2% 0 2% 4%;
  }
}
@media (min-width: 49.375em) {
  .bar-heading {
    margin: 4% 0px 3% 15%;
    clear: both;
  }
}
.bar-heading a {
  padding-left: 10px;
  text-decoration: none;
  color: #000;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.bar-heading a:hover, .bar-heading a:focus {
  color: #000;
}
.graduate .bar-heading a {
  color: #fff;
}
.graduate .bar-heading a:hover, .graduate .bar-heading a:focus {
  color: #fff;
}

.intro {
  font-weight: bold;
  line-height: 1.4;
}

@media (min-width: 49.375em) {
  .paragraph--type--text, .form-action__links ul li,
  .paragraph--type--text-with-related,
  .paragraph--type--detailed-accordion,
  .paragraph--type--text-with-background {
    font-size: 18px;
  }
}
.paragraph--type--text ul, .form-action__links ul li ul,
.paragraph--type--text-with-related ul,
.paragraph--type--detailed-accordion ul,
.paragraph--type--text-with-background ul {
  padding-left: 0;
  margin-left: 0;
}
.paragraph--type--text ul > li, .form-action__links ul li ul > li,
.paragraph--type--text-with-related ul > li,
.paragraph--type--detailed-accordion ul > li,
.paragraph--type--text-with-background ul > li {
  list-style-position: outside;
  list-style-image: url("../img/gold-bullet.svg");
  margin-bottom: .5em;
  margin-left: 1.2em;
}
.paragraph--type--text ol, .form-action__links ul li ol,
.paragraph--type--text-with-related ol,
.paragraph--type--detailed-accordion ol,
.paragraph--type--text-with-background ol {
  padding-left: 1.2em;
}
.paragraph--type--text li + li, .form-action__links ul li li + li,
.paragraph--type--text-with-related li + li,
.paragraph--type--detailed-accordion li + li,
.paragraph--type--text-with-background li + li {
  margin-top: .5em;
}
.paragraph--type--text h1, .form-action__links ul li h1, .paragraph--type--text h2, .form-action__links ul li h2,
.paragraph--type--text-with-related h1,
.paragraph--type--text-with-related h2,
.paragraph--type--detailed-accordion h1,
.paragraph--type--detailed-accordion h2,
.paragraph--type--text-with-background h1,
.paragraph--type--text-with-background h2 {
  font-family: "Cabin", tahoma, arial, sans-serif;
}
.paragraph--type--text h1, .form-action__links ul li h1,
.paragraph--type--text-with-related h1,
.paragraph--type--detailed-accordion h1,
.paragraph--type--text-with-background h1 {
  line-height: 1.4;
  letter-spacing: 0.03125em;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--text h1, .form-action__links ul li h1,
  .paragraph--type--text-with-related h1,
  .paragraph--type--detailed-accordion h1,
  .paragraph--type--text-with-background h1 {
    margin-bottom: 30px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--text h1, .form-action__links ul li h1,
  .paragraph--type--text-with-related h1,
  .paragraph--type--detailed-accordion h1,
  .paragraph--type--text-with-background h1 {
    margin-bottom: 52px;
  }
}
.paragraph--type--text h2, .form-action__links ul li h2,
.paragraph--type--text-with-related h2,
.paragraph--type--detailed-accordion h2,
.paragraph--type--text-with-background h2 {
  line-height: 1.4;
  letter-spacing: 0.03125em;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--text h2, .form-action__links ul li h2,
  .paragraph--type--text-with-related h2,
  .paragraph--type--detailed-accordion h2,
  .paragraph--type--text-with-background h2 {
    margin-bottom: 20px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--text h2, .form-action__links ul li h2,
  .paragraph--type--text-with-related h2,
  .paragraph--type--detailed-accordion h2,
  .paragraph--type--text-with-background h2 {
    margin-bottom: 30px;
  }
}
.paragraph--type--text h3, .form-action__links ul li h3,
.paragraph--type--text-with-related h3,
.paragraph--type--detailed-accordion h3,
.paragraph--type--text-with-background h3 {
  line-height: 1.4;
  letter-spacing: 0.01875em;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--text h3, .form-action__links ul li h3,
  .paragraph--type--text-with-related h3,
  .paragraph--type--detailed-accordion h3,
  .paragraph--type--text-with-background h3 {
    font-size: 24px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--text h3, .form-action__links ul li h3,
  .paragraph--type--text-with-related h3,
  .paragraph--type--detailed-accordion h3,
  .paragraph--type--text-with-background h3 {
    margin-bottom: 30px;
  }
}

.paragraph--type--text a, .form-action__links ul li a {
  text-decoration: none;
  font-weight: normal;
  color: #000;
  border-bottom: 1px solid #e9a065;
}
.paragraph--type--text a:hover, .form-action__links ul li a:hover, .paragraph--type--text a:focus, .form-action__links ul li a:focus {
  border-bottom-width: 2px;
  border-bottom-color: #000;
}

#block-cofe-page-title h1, .view-taxonomy-resources .views-title-wrapper h1 {
  font-size: 24px;
  margin: .5em auto 1em;
}
@media (min-width: 45em) {
  #block-cofe-page-title h1, .view-taxonomy-resources .views-title-wrapper h1 {
    font-size: 50px;
    margin-top: .5em;
  }
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?ws8khu");
  src: url("../fonts/icomoon.eot?ws8khu#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?ws8khu") format("truetype"), url("../fonts/icomoon.woff?ws8khu") format("woff"), url("../fonts/icomoon.svg?ws8khu#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-messenger:before {
  content: "\e903";
  color: #0084ff;
}

.icon-chevron-right:before {
  content: "\e906";
}

.icon-chevron-left:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-linkedin:before {
  content: "\e904";
}

.icon-whatsapp:before {
  content: "\e905";
}

.icon-arrow:before {
  content: "\e902";
  color: #d9a471;
}

.icon-search:before {
  content: "\e900";
  color: #8b63a0;
}

.icon-plus:before {
  content: "\e901";
  color: #8b63a0;
}

.icon-target:before {
  content: "\e9b3";
}

.button, .site-footer .footer-nav .sign-in, #block-fancylogin a, .xl-spotlight .find-church-text form input, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .views-related-tags .views-field-term-node-tid a,
.sign-in {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.0625em;
  text-align: center;
  color: #000;
  position: relative;
  padding: 12px 42px 14px;
  margin: 30px 0 30px;
  line-height: 1;
  background-color: #fff;
  font-weight: 200;
  border-top: 3px solid #d69160;
  border-right: 3px solid #e99d67;
  border-bottom: 3px solid #d59161;
  border-left: 3px solid #c3865b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 30em) {
  .button, .site-footer .footer-nav .sign-in, #block-fancylogin a, .xl-spotlight .find-church-text form input, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .views-related-tags .views-field-term-node-tid a,
  .sign-in {
    font-size: 18px;
    margin: 30px 0 40px;
  }
}
.button:hover, .site-footer .footer-nav .sign-in:hover, #block-fancylogin a:hover, .xl-spotlight .find-church-text form input:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:hover, .views-related-tags .views-field-term-node-tid a:hover, .button:focus, .site-footer .footer-nav .sign-in:focus, #block-fancylogin a:focus, .xl-spotlight .find-church-text form input:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:focus, .views-related-tags .views-field-term-node-tid a:focus,
.sign-in:hover,
.sign-in:focus {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
}
.button:active, .site-footer .footer-nav .sign-in:active, #block-fancylogin a:active, .xl-spotlight .find-church-text form input:active, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:active, .views-related-tags .views-field-term-node-tid a:active,
.sign-in:active {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
}

/** Buttons Sizes */
.button--xs {
  font-size: 1em;
  padding: 7px 22px 9px;
}
@media (min-width: 30em) {
  .button--xs {
    font-size: 0.875em;
  }
}

/*
a.button,
a.sign-in {
  background-color: transparent;
  padding: 15px 45px 17px;
  border: 0;
  position: relative;
  color: inherit;
  text-decoration: none;

  &:before, &:after{
    content: "";
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    z-index: -1;
    background: rgba($white, 1);
    transition: all .5s;
  }
  &:before{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
    background: rgb(195,133,90);
    background: -moz-linear-gradient(left, rgba(195,133,90,1) 0%, rgba(234,158,103,1) 100%);
    background: -webkit-linear-gradient(left, rgba(195,133,90,1) 0%,rgba(234,158,103,1) 100%);
    background: linear-gradient(to right, rgba(195,133,90,1) 0%,rgba(234,158,103,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3855a', endColorstr='#ea9e67',GradientType=1 );
  }
}
*/
.messages {
  background: no-repeat 10px 17px;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  border-radius: 2px;
  margin: 9px auto 10px auto;
  max-width: 1280px;
  padding: 15px 20px 15px 35px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  background-image: url(/core/misc/icons/73b355/check.svg);
  -webkit-box-shadow: -8px 0 0 #77b259;
  -moz-box-shadow: -8px 0 0 #77b259;
  box-shadow: -8px 0 0 #77b259;
}

.messages--warning {
  background-color: #fdf8ed;
  background-image: url(/core/misc/icons/e29700/warning.svg);
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  color: #734c00;
  -webkit-box-shadow: -8px 0 0 #e09600;
  -moz-box-shadow: -8px 0 0 #e09600;
  box-shadow: -8px 0 0 #e09600;
}

.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  background-image: url(/core/misc/icons/e32700/error.svg);
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  -webkit-box-shadow: -8px 0 0 #e62600;
  -moz-box-shadow: -8px 0 0 #e62600;
  box-shadow: -8px 0 0 #e62600;
}

input {
  border-radius: 0;
}
input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #4a4a4a;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #4a4a4a;
  opacity: 1;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #4a4a4a;
  opacity: 1;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #4a4a4a;
}
input.error {
  border: 2px solid #c71e26;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1.25rem;
  font-size: 1.125em;
  line-height: inherit;
  border: 0;
  border-bottom: 1px solid #f5f5f5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
label.form-required:after {
  content: '';
  vertical-align: super;
  display: inline-block;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(/themes/custom/cofe/_assets/img/icons/required.svg);
  background-repeat: no-repeat;
  background-size: 7px 7px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  width: 100%;
  padding: 8px 10px;
  background-image: none;
  border: solid 1px #e4e4e4;
  line-height: normal;
}
select::-ms-expand,
textarea::-ms-expand,
input[type="text"]::-ms-expand,
input[type="password"]::-ms-expand,
input[type="datetime"]::-ms-expand,
input[type="datetime-local"]::-ms-expand,
input[type="date"]::-ms-expand,
input[type="month"]::-ms-expand,
input[type="time"]::-ms-expand,
input[type="week"]::-ms-expand,
input[type="number"]::-ms-expand,
input[type="email"]::-ms-expand,
input[type="url"]::-ms-expand,
input[type="search"]::-ms-expand,
input[type="tel"]::-ms-expand,
input[type="color"]::-ms-expand {
  border: 0;
  background-color: transparent;
}
select.error,
textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="datetime"].error,
input[type="datetime-local"].error,
input[type="date"].error,
input[type="month"].error,
input[type="time"].error,
input[type="week"].error,
input[type="number"].error,
input[type="email"].error,
input[type="url"].error,
input[type="search"].error,
input[type="tel"].error,
input[type="color"].error {
  border: 2px solid #c71e26;
}

input[type="search"] {
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select {
  background: url(../img/select.png) no-repeat center right;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 70px 8px 10px;
}

/* CAUTION: IE hackery ahead */
select::-ms-expand {
  display: none;
  /* remove default arrow on ie10 and ie11 */
}

@media (min-width: 45em) {
  #block-cofe-content .listing-filter {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (min-width: 45em) {
  #block-cofe-content .listing-filter .form-item {
    margin: 0 10px 0 0;
  }
}
#block-cofe-content .listing-filter .button, #block-cofe-content .listing-filter .site-footer .footer-nav .sign-in, .site-footer .footer-nav #block-cofe-content .listing-filter .sign-in, #block-cofe-content .listing-filter #block-fancylogin a, #block-fancylogin #block-cofe-content .listing-filter a, #block-cofe-content .listing-filter .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form #block-cofe-content .listing-filter input, #block-cofe-content .listing-filter .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta #block-cofe-content .listing-filter a, #block-cofe-content .listing-filter .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid #block-cofe-content .listing-filter a {
  margin: 0;
  padding-top: 9px;
  padding-bottom: 10px;
}
@media (max-width: 44.99em) {
  #block-cofe-content .listing-filter .form-actions {
    text-align: center;
    display: block;
  }
}

select[multiple],
select[size] {
  height: auto;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 5px;
  position: relative;
  top: -1px;
  left: 1px;
}

textarea {
  height: 200px;
}

.webform-submission-form .form-item {
  margin-bottom: 1rem;
}
.webform-submission-form .form-item.form-item-text-format-value {
  margin-bottom: 0;
}

.description {
  opacity: .7;
  margin-top: 5px;
  margin-bottom: 5px;
}

.vertical-tabs__pane {
  padding: 1em;
}

.web-form-standard fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 80em) {
  .web-form-standard .web-form-element label {
    width: 50%;
    float: left;
    padding-right: 5%;
    padding-top: .5em;
    box-sizing: border-box;
    text-align: right;
  }
  .web-form-standard .web-form-element label.element-invisible {
    position: relative !important;
  }
  .web-form-standard .web-form-element input, .web-form-standard .web-form-element input[type="text"], .web-form-standard .web-form-element input[type="email"], .web-form-standard .web-form-element input[type="number"], .web-form-standard .web-form-element textarea {
    width: 50%;
    float: left;
  }
  .web-form-standard .web-form-element .sod_select {
    max-width: 50%;
    float: left;
  }
}
@media (max-width: 79.99em) {
  .web-form-standard .web-form-element label {
    margin-bottom: 10px;
    display: block;
  }
  .web-form-standard .web-form-element label:empty {
    display: none;
  }
  .web-form-standard .web-form-element .web-form-inputs {
    margin-bottom: 10px;
    display: block;
  }
}
.web-form-standard input[type="text"], .web-form-standard input[type="email"], .web-form-standard input[type="number"], .web-form-standard textarea {
  box-sizing: border-box;
  width: 100%;
}

.web-form-fieldset {
  border: 0;
}
.web-form-fieldset.center-2 {
  float: none;
}
.web-form-fieldset legend {
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.web-form-fieldset legend p {
  font-size: 20px;
  margin-bottom: 0;
}

.web-form-element-double input:first-child, .web-form-element-double .sod_select:first-child {
  margin-right: 4%;
}

.web-form-element-half input, .web-form-element-half .sod_select {
  box-sizing: border-box;
}
@media (min-width: 30em) {
  .web-form-element-half input, .web-form-element-half .sod_select {
    width: 48%;
  }
}

.web-form-element-full input, .web-form-element-full .sod_select {
  width: 100%;
  box-sizing: border-box;
}

.web-form a, .search-filter a {
  text-decoration: none;
}
.web-form a:hover, .web-form a:focus, .search-filter a:hover, .search-filter a:focus {
  text-decoration: underline;
}
.web-form input[type="submit"], .search-filter input[type="submit"] {
  background-color: white;
}
.web-form input[type="text"], .web-form input[type="email"], .web-form input[type="number"], .web-form textarea, .search-filter input[type="text"], .search-filter input[type="email"], .search-filter input[type="number"], .search-filter textarea {
  border: 1px #000 solid;
}
.web-form input[type="text"]::-webkit-input-placeholder, .web-form input[type="email"]::-webkit-input-placeholder, .web-form input[type="number"]::-webkit-input-placeholder, .web-form textarea::-webkit-input-placeholder, .search-filter input[type="text"]::-webkit-input-placeholder, .search-filter input[type="email"]::-webkit-input-placeholder, .search-filter input[type="number"]::-webkit-input-placeholder, .search-filter textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #000;
}
.web-form input[type="text"]:-moz-placeholder, .web-form input[type="email"]:-moz-placeholder, .web-form input[type="number"]:-moz-placeholder, .web-form textarea:-moz-placeholder, .search-filter input[type="text"]:-moz-placeholder, .search-filter input[type="email"]:-moz-placeholder, .search-filter input[type="number"]:-moz-placeholder, .search-filter textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000;
  opacity: 1;
}
.web-form input[type="text"]::-moz-placeholder, .web-form input[type="email"]::-moz-placeholder, .web-form input[type="number"]::-moz-placeholder, .web-form textarea::-moz-placeholder, .search-filter input[type="text"]::-moz-placeholder, .search-filter input[type="email"]::-moz-placeholder, .search-filter input[type="number"]::-moz-placeholder, .search-filter textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000;
  opacity: 1;
}
.web-form input[type="text"]:-ms-input-placeholder, .web-form input[type="email"]:-ms-input-placeholder, .web-form input[type="number"]:-ms-input-placeholder, .web-form textarea:-ms-input-placeholder, .search-filter input[type="text"]:-ms-input-placeholder, .search-filter input[type="email"]:-ms-input-placeholder, .search-filter input[type="number"]:-ms-input-placeholder, .search-filter textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #000;
}
.web-form input[type="text"], .web-form input[type="email"], .web-form input, .web-form textarea, .search-filter input[type="text"], .search-filter input[type="email"], .search-filter input, .search-filter textarea {
  padding: 0.6em 1em;
}
.web-form input[type="text"], .web-form input[type="email"], .web-form input, .web-form select, .web-form .sod_select, .web-form textarea, .search-filter input[type="text"], .search-filter input[type="email"], .search-filter input, .search-filter select, .search-filter .sod_select, .search-filter textarea {
  margin-bottom: 18px;
}
.web-form .sod_select, .search-filter .sod_select {
  border: 1px #e4e4e4 solid;
  padding: 0.6em 45px 0.6em 1em;
  cursor: pointer;
}
.web-form .sod_select:after, .search-filter .sod_select:after {
  content: "\25bc";
  font-family: rpc;
  font-size: 1.2em;
  position: absolute;
  color: #fff;
  right: 0;
  top: 0;
  background: #000;
  height: 100%;
  padding: 0 12px;
  line-height: 2;
}
.web-form .web-form-radio, .search-filter .web-form-radio {
  overflow: hidden;
  width: 100%;
}
.web-form .web-form-radio input, .search-filter .web-form-radio input {
  position: absolute;
  left: -9999px;
}
.web-form .web-form-radio label, .search-filter .web-form-radio label {
  margin-bottom: 18px;
  padding-right: 0;
}
.web-form .web-form-radio input + label:after, .search-filter .web-form-radio input + label:after {
  content: "";
  height: 11px;
  width: 11px;
  border: 8px white solid;
  display: inline-block;
  border-radius: 14px;
  background-color: white;
  margin: 2px -29px -8px 10px;
  -webkit-box-shadow: 0 0 0 2px #e4e4e4;
  -moz-box-shadow: 0 0 0 2px #e4e4e4;
  box-shadow: 0 0 0 2px #e4e4e4;
}
@media (max-width: 29.99em) {
  .web-form .web-form-radio input + label:after, .search-filter .web-form-radio input + label:after {
    margin: 7px -29px -8px 2px;
    display: block;
  }
}
.web-form .web-form-radio input:checked + label:after, .search-filter .web-form-radio input:checked + label:after {
  background-color: #e4e4e4;
}
.web-form .web-form-radio textarea, .search-filter .web-form-radio textarea {
  width: 100%;
  box-sizing: border-box;
}
.web-form .web-form-checkbox input, .search-filter .web-form-checkbox input {
  position: absolute;
  left: -9999px;
}
.web-form .web-form-checkbox label, .search-filter .web-form-checkbox label {
  margin-bottom: 18px;
}
.web-form .web-form-checkbox input + label:after, .search-filter .web-form-checkbox input + label:after {
  content: "";
  height: 26px;
  width: 26px;
  background-position: 3px;
  background-repeat: no-repeat;
  display: inline-block;
  border: 2px #e4e4e4 solid;
  margin: 0px 14px -9px 10px;
}
@media (max-width: 29.99em) {
  .web-form .web-form-checkbox input + label:after, .search-filter .web-form-checkbox input + label:after {
    margin: 7px 14px -9px 0px;
    display: block;
  }
}
.web-form .web-form-checkbox input:checked + label:after, .search-filter .web-form-checkbox input:checked + label:after {
  background-image: url("../images/design/checkbox.png");
  background-image: url("../images/design/checkbox.svg");
}
.web-form .web-form-checkbox.checkbox-inline label, .search-filter .web-form-checkbox.checkbox-inline label {
  display: block;
}
.web-form .web-form-checkbox.checkbox-block, .search-filter .web-form-checkbox.checkbox-block {
  width: 100%;
}
.web-form .web-form-checkbox.checkbox-block label, .search-filter .web-form-checkbox.checkbox-block label {
  padding: 0;
}
.web-form .web-form-checkbox.checkbox-block label:after, .search-filter .web-form-checkbox.checkbox-block label:after {
  margin: 0px -29px -8px 10px;
}
@media (max-width: 29.99em) {
  .web-form .web-form-checkbox.checkbox-block label:after, .search-filter .web-form-checkbox.checkbox-block label:after {
    margin: 7px 14px -9px 0px;
  }
}

.web-form--contact {
  padding: 50px 0;
  overflow: hidden;
}

.webform-row {
  clear: both;
  margin-bottom: 1.25em;
}
.webform-row:before, .webform-row:after {
  content: "";
  display: table;
}
.webform-row:after {
  clear: both;
}

@media (max-width: 59.365em) {
  .webform-field-container {
    clear: both;
    margin-top: 1em;
  }
}
@media (min-width: 59.375em) {
  .webform-field-container {
    float: left;
    padding-left: 20px;
    width: calc(80% - 200px);
    box-sizing: border-box;
  }
}
.webform-field-container .sod_select {
  width: 100%;
}

.required {
  color: #000;
}

.webform-label {
  font-size: 1.5em;
  margin-top: 0.25em;
}
@media (min-width: 59.375em) {
  .webform-label {
    float: left;
    width: 200px;
  }
}

.webform-textfield {
  border: solid 1px #000;
  padding: 12px;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 49.375em) {
  .webform-textfield {
    width: 100%;
  }
}

.webform-textarea.webform-textarea {
  width: 100%;
}

@media (min-width: 59.375em) {
  .webform-actions {
    text-align: center;
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
}

.webform-submit.webform-submit.webform-submit {
  border: 1px solid #000;
  padding: 9px;
  line-height: 1;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 1.75em;
  background: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.webform-submit.webform-submit.webform-submit:hover, .webform-submit.webform-submit.webform-submit:focus {
  background: #000;
  color: #fff;
}

.selectric-wrapper .selectric {
  background: none;
  border: 1px solid #e4e4e4;
  height: 50px;
}
.selectric-wrapper .selectric .button, .selectric-wrapper .selectric .site-footer .footer-nav .sign-in, .site-footer .footer-nav .selectric-wrapper .selectric .sign-in, .selectric-wrapper .selectric #block-fancylogin a, #block-fancylogin .selectric-wrapper .selectric a, .selectric-wrapper .selectric .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .selectric-wrapper .selectric input, .selectric-wrapper .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .selectric-wrapper .selectric a, .selectric-wrapper .selectric .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .selectric-wrapper .selectric a {
  background: #f29c6a;
  border: none;
  color: white;
  height: 50px;
  margin: 0;
  padding: 0;
  width: 50px;
}
.selectric-wrapper .selectric .button:after, .selectric-wrapper .selectric .site-footer .footer-nav .sign-in:after, .site-footer .footer-nav .selectric-wrapper .selectric .sign-in:after, .selectric-wrapper .selectric #block-fancylogin a:after, #block-fancylogin .selectric-wrapper .selectric a:after, .selectric-wrapper .selectric .xl-spotlight .find-church-text form input:after, .xl-spotlight .find-church-text form .selectric-wrapper .selectric input:after, .selectric-wrapper .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:after, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .selectric-wrapper .selectric a:after, .selectric-wrapper .selectric .views-related-tags .views-field-term-node-tid a:after, .views-related-tags .views-field-term-node-tid .selectric-wrapper .selectric a:after {
  border-top-color: white;
  border-width: 7px;
}
.selectric-wrapper .selectric .button:hover, .selectric-wrapper .selectric .site-footer .footer-nav .sign-in:hover, .site-footer .footer-nav .selectric-wrapper .selectric .sign-in:hover, .selectric-wrapper .selectric #block-fancylogin a:hover, #block-fancylogin .selectric-wrapper .selectric a:hover, .selectric-wrapper .selectric .xl-spotlight .find-church-text form input:hover, .xl-spotlight .find-church-text form .selectric-wrapper .selectric input:hover, .selectric-wrapper .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .selectric-wrapper .selectric a:hover, .selectric-wrapper .selectric .views-related-tags .views-field-term-node-tid a:hover, .views-related-tags .views-field-term-node-tid .selectric-wrapper .selectric a:hover, .selectric-wrapper .selectric .button:focus, .selectric-wrapper .selectric .site-footer .footer-nav .sign-in:focus, .site-footer .footer-nav .selectric-wrapper .selectric .sign-in:focus, .selectric-wrapper .selectric #block-fancylogin a:focus, #block-fancylogin .selectric-wrapper .selectric a:focus, .selectric-wrapper .selectric .xl-spotlight .find-church-text form input:focus, .xl-spotlight .find-church-text form .selectric-wrapper .selectric input:focus, .selectric-wrapper .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .selectric-wrapper .selectric a:focus, .selectric-wrapper .selectric .views-related-tags .views-field-term-node-tid a:focus, .views-related-tags .views-field-term-node-tid .selectric-wrapper .selectric a:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.selectric-wrapper .selectric .label {
  color: #1b1b1b;
  font-size: 1em;
  line-height: 47px;
  font-weight: normal;
  margin: 0;
  padding: 0 50px 0 20px;
}
.selectric-wrapper .selectric-items {
  background: white;
  border-color: #e4e4e4;
  color: #1b1b1b;
}
.selectric-wrapper .selectric-items li:hover {
  background: rgba(242, 156, 106, 0.4);
  color: #1b1b1b;
}
.selectric-wrapper .selectric-items li.highlighted, .selectric-wrapper .selectric-items li.selected {
  background: #f29c6a;
  color: white;
}

.message-recipient {
  color: #000;
}

.web-form--client label {
  font-size: 20px;
}
.web-form--client .webform-submit.webform-submit.webform-submit {
  padding: 10px 3em;
}
.web-form--client a {
  text-decoration: underline;
}
.web-form--client .webform-row {
  margin-bottom: 6px;
}
@media (min-width: 59.375em) {
  .web-form--client .webform-label {
    width: 125px;
  }
  .web-form--client .webform-field-container {
    width: calc(80% - 125px);
  }
}
@media (min-width: 49.375em) {
  .web-form--client .webform-textfield {
    width: auto;
  }
}

.web-form--top-labels .webform-label {
  width: auto;
  float: none;
}
.web-form--top-labels .webform-field-container {
  float: none;
  clear: left;
  width: auto;
  margin-top: 1em;
  padding-left: 0;
}

.webform-row--indented {
  text-align: left;
  margin-bottom: 5px;
}
@media (min-width: 49.375em) {
  .webform-row--indented {
    padding-left: 145px;
  }
}

.alert-message {
  border: solid 1px;
  padding: 16px 18px 0;
}

#protected-pages-enter-password {
  max-width: 550px;
  margin: 0 auto;
}

.alert-message-header {
  margin-bottom: 5px;
  line-height: 1.2;
}

.views-exposed-form .form-actions {
  display: inline;
}

.mailchimp-signup-subscribe-form .form-item-mergevars-email, .form-action__links .form-item-mergevars-email {
  display: inline;
}

.path-user #block-cofe-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.84;
  letter-spacing: 0.0125em;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .path-user #block-cofe-content .user-register-form {
    font-size: 16px;
    padding: 0 .5rem;
  }
}
@media (min-width: 45em) {
  .path-user #block-cofe-content .user-register-form {
    font-size: 18px;
    margin: 0 auto 40px;
  }
}
.path-user #block-cofe-content .user-register-form .captcha {
  padding: 0 .5rem;
  margin-top: 1rem;
}
@media (min-width: 49.375em) {
  .path-user #block-cofe-content .user-register-form .captcha {
    padding: 0 1.8rem;
  }
}
.path-user #block-cofe-content .user-register-form .field--type-mailchimp-lists-subscription {
  margin-top: 20px;
}
.path-user #block-cofe-content .user-register-form .field--type-mailchimp-lists-subscription legend {
  display: none;
}
.path-user #block-cofe-content .user-register-form #password-policy-status {
  display: none;
}
.path-user #block-cofe-content .user-register-form .field--widget-boolean-checkbox {
  margin-top: 10px;
}
.path-user #block-cofe-content .user-register-form .field--widget-boolean-checkbox label {
  max-width: 95%;
  vertical-align: top;
}
.path-user #block-cofe-content .user-form .field--widget-boolean-checkbox {
  margin-top: 10px;
}
.path-user #block-cofe-content .user-form .field--widget-boolean-checkbox label {
  max-width: 95%;
  vertical-align: top;
}

.progress-step.is-active .progress-marker,
.progress-step.is-complete .progress-marker,
.webform-progress-tracker .progress-step.is-active:hover .progress-marker {
  background: #9669a9;
}

.paragraph--type--daily-services .toggle {
  text-transform: uppercase;
  background: #fff;
  border: 0;
  border-bottom: solid 1px #9669a9;
}
.paragraph--type--daily-services .toggle.u-mouseBlur {
  outline: 0;
}
.paragraph--type--daily-services .toggle:before {
  content: '';
}
.paragraph--type--daily-services.is-activated .views-exposed-form {
  display: none;
}
.paragraph--type--daily-services.is-activated .container-inner > .field {
  padding-top: 1em;
}
.paragraph--type--daily-services.is-open .views-exposed-form {
  display: block;
  -webkit-animation: filter-show 0.2s;
  -moz-animation: filter-show 0.2s;
  -o-animation-delay: filter-show 0.2s;
  animation-delay: filter-show 0.2s;
}

@keyframes filter-show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
.webform-submission-form .form-required:after {
  background-size: 7px 7px;
  width: 7px;
  height: 7px;
}

.content-moderation-entity-moderation-form {
  font-size: 0.875rem;
}
.content-moderation-entity-moderation-form input.form-submit {
  background: linear-gradient(to bottom, #007bc6, #0071b8);
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  padding: 8px 16px;
  border: 1px solid #1e5c90;
  border-radius: 20em;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.content-moderation-entity-moderation-form input.form-submit:focus {
  outline: none !important;
}
.content-moderation-entity-moderation-form input.form-submit:hover {
  -webkit-box-shadow: 0 1px 2px rgba(23, 26, 28, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(23, 26, 28, 0.25);
  box-shadow: 0 1px 2px rgba(23, 26, 28, 0.25);
}
.content-moderation-entity-moderation-form input.form-submit:hover, .content-moderation-entity-moderation-form input.form-submit:focus {
  border: 1px solid #1280df;
  background: linear-gradient(to bottom, #0c97ed, #1f86c7);
}
@media (min-width: 38.125em) and (max-width: 49.365em) {
  .content-moderation-entity-moderation-form {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 .5rem;
  }
}
@media (min-width: 49.375em) {
  .content-moderation-entity-moderation-form {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.8rem;
    margin-bottom: 1rem;
  }
}

.christmas-form .form-select, .user-christmas-register-form .form-select, #christmas-user-login-form .form-select {
  background: #fff url(../img/cr-select.png) no-repeat right 20px center;
  border: none;
}
.christmas-form input, .user-christmas-register-form input, #christmas-user-login-form input, .christmas-form select, .user-christmas-register-form select, #christmas-user-login-form select, .christmas-form textarea, .user-christmas-register-form textarea, #christmas-user-login-form textarea {
  color: #000;
}
.christmas-form input[type="checkbox"], .user-christmas-register-form input[type="checkbox"], #christmas-user-login-form input[type="checkbox"] {
  display: none;
}
.christmas-form input[type="checkbox"] + label, .user-christmas-register-form input[type="checkbox"] + label, #christmas-user-login-form input[type="checkbox"] + label {
  font-size: 14px;
  font-weight: 100;
  padding-left: 30px;
  position: relative;
}
.christmas-form input[type="checkbox"] + label:before, .user-christmas-register-form input[type="checkbox"] + label:before, #christmas-user-login-form input[type="checkbox"] + label:before {
  background: #fff;
  content: '';
  display: inline-block;
  height: 20px;
  left: 0;
  position: absolute;
  vertical-align: middle;
  width: 20px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.christmas-form input[type="checkbox"]:checked + label:before, .user-christmas-register-form input[type="checkbox"]:checked + label:before, #christmas-user-login-form input[type="checkbox"]:checked + label:before {
  background: #586f2a url(../img/icons/check-mark.svg) no-repeat center;
  -webkit-background-size: 16px;
  -moz-background-size: 16px;
  -o-background-size: 16px;
  background-size: 16px;
}
.christmas-form .form-submit, .user-christmas-register-form .form-submit, #christmas-user-login-form .form-submit {
  background: #2b4da6;
  border: 2px solid #fff;
  color: #fff;
  min-width: 200px;
  padding: 15px 20px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -ms-border-radius: 9999px;
  border-radius: 9999px;
}
.christmas-form .form-submit:hover, .user-christmas-register-form .form-submit:hover, #christmas-user-login-form .form-submit:hover {
  background: #fff;
  color: #2b4da6;
}

.field-hidden {
  display: none;
}

.content-moderation-entity-moderation-form .form-item select {
  width: 200px;
}

.password-strength__meter {
  display: none;
}

.field-error {
  color: #c71e26;
  font-weight: bold;
}

.page {
  overflow: hidden;
}

.container, .path-user #block-cofe-content, #block-cofe-page-title, .view-taxonomy-resources .views-title-wrapper, #block-cofe-breadcrumbs nav, .page-node-type-liturgy-page #block-cofe-content,
.page-node-type-daily-services-integration-page #block-cofe-content, .path-resources main, .section-headers, .date, .paragraph--type--back-to-top,
.paragraph--type--image,
.paragraph--type--media,
.paragraph--type--video,
.paragraph--type--poll,
.paragraph--type--documents,
.paragraph--type--glossary-listing, .paragraph--type--copy-to-clipboard, #block-mainnavigation, #block-views-block-related-tags-block-1 h2, .views-related-tags {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 .5rem;
}
@media (min-width: 49.375em) {
  .container, .path-user #block-cofe-content, #block-cofe-page-title, .view-taxonomy-resources .views-title-wrapper, #block-cofe-breadcrumbs nav, .page-node-type-liturgy-page #block-cofe-content,
  .page-node-type-daily-services-integration-page #block-cofe-content, .path-resources main, .section-headers, .date, .paragraph--type--back-to-top,
  .paragraph--type--image,
  .paragraph--type--media,
  .paragraph--type--video,
  .paragraph--type--poll,
  .paragraph--type--documents,
  .paragraph--type--glossary-listing, .paragraph--type--copy-to-clipboard, #block-mainnavigation, #block-views-block-related-tags-block-1 h2, .views-related-tags {
    padding: 0 1.8rem;
  }
}

@media (min-width: 49.375em) {
  .row, .site-footer .social-channels {
    margin: 0 -1.92308%;
  }
}

@media (min-width: 49.375em) {
  .center-2 {
    width: 63.69048%;
    float: left;
    margin-left: 18.15476%;
    margin-right: -100%;
  }
  .content-page .center-2 {
    width: auto;
    margin: auto;
    float: none;
  }
}

.w100 {
  width: 100%;
}

.page {
  margin: auto;
  position: relative;
}

.has-hero-image #block-cofe-page-title h1, .has-hero-image .view-taxonomy-resources .views-title-wrapper h1, .view-taxonomy-resources .has-hero-image .views-title-wrapper h1 {
  display: none;
}
.has-hero-image .paragraph--type--hero-image h1 {
  display: block;
}

.sites-nav {
  clear: both;
  background-color: #9669a9;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.7px;
  text-align: center;
  line-height: 1;
  overflow-x: auto;
}
@media (min-width: 59.375em) {
  .sites-nav {
    font-size: 13px;
    text-align: right;
  }
}
@media (min-width: 49.375em) {
  .sites-nav .main-more {
    display: none;
  }
}
@media (min-width: 38.125em) and (max-width: 59.365em) {
  .sites-nav {
    margin-bottom: 20px;
  }
}
.sites-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 59.365em) {
  .sites-nav ul {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.sites-nav li {
  display: inline-block;
}
.sites-nav li a {
  color: #fff;
  display: block;
  padding: 18px 11px;
  border-right: 1px solid #fff;
  text-decoration: none;
}
@media (min-width: 49.375em) {
  .sites-nav li a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
@media (min-width: 59.375em) {
  .sites-nav li a {
    text-align: right;
  }
}
.sites-nav li.is-current {
  background-color: #fff;
}
.sites-nav li.is-current a {
  color: #000;
  font-weight: normal;
}
@media (max-width: 49.365em) {
  .no-js .sites-nav ul {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .sites-nav.is-collapsable .container, .sites-nav.is-collapsable .path-user #block-cofe-content, .path-user .sites-nav.is-collapsable #block-cofe-content, .sites-nav.is-collapsable #block-cofe-page-title, .sites-nav.is-collapsable .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .sites-nav.is-collapsable .views-title-wrapper, .sites-nav.is-collapsable #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .sites-nav.is-collapsable nav, .sites-nav.is-collapsable .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .sites-nav.is-collapsable #block-cofe-content,
  .sites-nav.is-collapsable .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .sites-nav.is-collapsable #block-cofe-content, .sites-nav.is-collapsable .path-resources main, .path-resources .sites-nav.is-collapsable main, .sites-nav.is-collapsable .section-headers, .sites-nav.is-collapsable .date, .sites-nav.is-collapsable .paragraph--type--back-to-top,
  .sites-nav.is-collapsable .paragraph--type--image,
  .sites-nav.is-collapsable .paragraph--type--media,
  .sites-nav.is-collapsable .paragraph--type--video,
  .sites-nav.is-collapsable .paragraph--type--poll,
  .sites-nav.is-collapsable .paragraph--type--documents,
  .sites-nav.is-collapsable .paragraph--type--glossary-listing, .sites-nav.is-collapsable .paragraph--type--copy-to-clipboard, .sites-nav.is-collapsable #block-mainnavigation, .sites-nav.is-collapsable #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .sites-nav.is-collapsable h2, .sites-nav.is-collapsable .views-related-tags {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .sites-nav.is-collapsable li {
    display: none;
  }
  .sites-nav.is-collapsable .is-current {
    display: block;
  }
  .sites-nav.is-collapsable .main-more {
    text-transform: uppercase;
    border: 0;
    background-color: #f5f5f5;
    border-radius: 0;
  }
  .sites-nav.is-collapsable .main-more span:after {
    content: '+';
    margin-left: .2em;
  }
  .sites-nav.is-collapsable.is-open ul {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sites-nav.is-collapsable.is-open li {
    display: block;
  }
  .sites-nav.is-collapsable.is-open a {
    padding-top: 16px;
    padding-bottom: 16px;
    border: 0;
    border-top: solid 1px #fff;
  }
  .sites-nav.is-collapsable.is-open .main-more {
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .sites-nav.is-collapsable.is-open .main-more span {
    display: none;
  }
  .sites-nav.is-collapsable.is-open .main-more:before {
    content: '×';
  }
}

.site-header {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.site-header:before, .site-header:after {
  content: "";
  display: table;
}
.site-header:after {
  clear: both;
}
.site-header .cofe-branding {
  float: left;
}
.site-header .cofe-branding a {
  display: block;
  padding: 0 12px 11px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 38.125em) and (max-width: 59.365em) {
  .site-header .cofe-branding a {
    padding: 0 12px 11px 0;
  }
}
@media (min-width: 59.375em) {
  .site-header .cofe-branding a {
    padding: 32px 32px 6px 0;
  }
}
.site-header .cofe-branding a .logo {
  display: block;
  width: 206px;
}
@media (max-width: 38.115em) {
  .site-header .cofe-branding a .logo {
    display: none;
  }
}
@media (min-width: 38.125em) and (max-width: 59.365em) {
  .site-header .cofe-branding a .logo {
    margin-top: -3px;
  }
}
.site-header .cofe-branding a .logo-tablet {
  display: none;
  width: 80px;
}
@media (min-width: 30em) and (max-width: 38.115em) {
  .site-header .cofe-branding a .logo-tablet {
    display: block;
    margin-top: -12px;
  }
}
.site-header .cofe-branding a .logo-mobile {
  display: block;
  width: 45px;
  margin-top: -8px;
}
@media (min-width: 20.0625em) {
  .site-header .cofe-branding a .logo-mobile {
    width: 55px;
    margin-top: -12px;
  }
}
@media (min-width: 30em) {
  .site-header .cofe-branding a .logo-mobile {
    display: none;
  }
}
.site-header .cofe-branding p {
  text-transform: uppercase;
  color: #000;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.08333em;
  margin-bottom: 10px;
}
@media (max-width: 68.74em) {
  .site-header .cofe-branding p {
    display: none;
  }
}
.site-header form {
  font-size: 11px;
  background-color: #f5f5f5;
  border: solid 1px #e4e4e4;
  margin: 0;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header form:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  text-align: center;
  display: inline;
  color: #9669a9;
}
@media (min-width: 59.375em) {
  .site-header form {
    font-size: 0.8125em;
    float: right;
    margin: 25px 0 16px;
  }
}
.site-header form:after {
  position: absolute;
  right: 12px;
  top: 50%;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-header form div, .site-header form input {
  text-transform: uppercase;
  display: inline-block;
  border: none;
  background: transparent;
}
.site-header form .form-item {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 38.125em) {
  .site-header form .form-item {
    width: 240px;
  }
}
@media (min-width: 68.75em) {
  .site-header form .form-item {
    width: 340px;
  }
}
.site-header form .form-item input {
  text-transform: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.site-header form .form-item input::-webkit-input-placeholder {
  /* WebKit browsers */
  text-transform: uppercase;
}
.site-header form .form-item input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  text-transform: uppercase;
}
.site-header form .form-item input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  text-transform: uppercase;
}
.site-header form .form-item input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  text-transform: uppercase;
}
.site-header form input {
  padding: 8px 10px;
}
@media (min-width: 38.125em) {
  .site-header form input {
    padding: 12px 14px 10px;
  }
}
.site-header form .button, .site-header form .site-footer .footer-nav .sign-in, .site-footer .footer-nav .site-header form .sign-in, .site-header form #block-fancylogin a, #block-fancylogin .site-header form a, .site-header .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text .site-header form input, .site-header form .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .site-header form a, .site-header form .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .site-header form a {
  text-indent: -999999px;
  position: relative;
  z-index: 2;
  width: 40px;
  margin: 0;
}
@media (max-width: 59.365em) {
  .site-header .search-api-page-block-form,
  .site-header .search-api-page-block-form-search-results {
    padding-right: 50px;
  }
}

.nav-wrapper {
  text-align: center;
}
@media (min-width: 59.375em) {
  .nav-wrapper {
    text-align: left;
  }
}

.strapline {
  padding: 17px 0 0;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  margin-bottom: 12px;
}
@media (min-width: 20.0625em) {
  .strapline {
    font-size: 11px;
    letter-spacing: 0.06875em;
  }
}
@media (min-width: 38.125em) {
  .strapline {
    display: none;
  }
}

@media (min-width: 59.375em) {
  .layout-container.has-fixed-header {
    padding-top: 156px;
  }
  .layout-container.has-fixed-header .site-header {
    background: white;
    position: fixed;
    top: 0;
    top: var(--header-offset);
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: solid 1px #e4e4e4;
    -webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .layout-container.has-fixed-header .site-header .logo {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .layout-container.has-fixed-header #block-sitenav {
    display: none;
  }
  .layout-container.has-fixed-header .search-api-page-block-form {
    overflow: hidden;
    max-height: 100px;
    -webkit-transition: max-height 0.4s;
    -moz-transition: max-height 0.4s;
    -o-transition: max-height 0.4s;
    transition: max-height 0.4s;
  }
  .layout-container.has-fixed-header .main-nav {
    -webkit-transition: margin-top 0.4s;
    -moz-transition: margin-top 0.4s;
    -o-transition: margin-top 0.4s;
    transition: margin-top 0.4s;
  }
  .layout-container.has-fixed-header.has-mini-header .site-header {
    background-color: rgba(255, 255, 255, 0.95);
  }
  .layout-container.has-fixed-header.has-mini-header .cofe-branding {
    overflow: hidden;
  }
  .layout-container.has-fixed-header.has-mini-header .cofe-branding a {
    padding: 0;
    width: 206px;
    height: 38px;
  }
  .layout-container.has-fixed-header.has-mini-header .cofe-branding .logo {
    opacity: 0;
    position: absolute;
    top: 32px;
    max-width: none;
    pointer-events: none;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  .layout-container.has-fixed-header.has-mini-header .cofe-branding .logo-mobile {
    display: block;
    width: 40px;
    margin-top: 0;
    -webkit-animation: show-mini-logo 0.4s 0.2s;
    -moz-animation: show-mini-logo 0.4s 0.2s;
    -o-animation-delay: show-mini-logo 0.4s 0.2s;
    animation-delay: show-mini-logo 0.4s 0.2s;
    -webkit-animation-iteration-count: both;
    -moz-animation-iteration-count: both;
    -o-animation-delay-iteration-count: both;
    animation-delay-iteration-count: both;
  }
  .layout-container.has-fixed-header.has-mini-header .site-slogan {
    display: none;
  }
  .layout-container.has-fixed-header.has-mini-header .search-api-page-block-form {
    max-height: 0;
  }
  .layout-container.has-fixed-header.has-mini-header .main-nav {
    margin-top: 6px;
  }
}
@-webkit-keyframes show-mini-logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@-moz-keyframes show-mini-logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@-ms-keyframes show-mini-logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@keyframes show-mini-logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
.site-footer {
  clear: both;
  padding-bottom: 10px;
}
@media (min-width: 49.375em) {
  .site-footer {
    padding-bottom: 20px;
  }
}
.site-footer .share-tools {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 30em) {
  .site-footer .share-tools {
    padding-bottom: 80px;
  }
}
@media (min-width: 49.375em) {
  .site-footer .share-tools {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.site-footer .share-tools ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  position: relative;
}
.site-footer .share-tools li {
  display: inline-block;
}
.site-footer .share-tools a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.0625em;
  padding: 10px;
  color: #000;
  text-decoration: none;
}
@media (min-width: 49.375em) {
  .site-footer .share-tools a {
    font-size: 1.125em;
  }
}
.site-footer .share-tools a:hover, .site-footer .share-tools a:focus {
  text-decoration: underline;
}
.site-footer .share-tools a:hover.u-mouseBlur, .site-footer .share-tools a:focus.u-mouseBlur {
  text-decoration: none;
}
.site-footer .communications {
  text-align: center;
}
.site-footer .communications .container, .site-footer .communications .path-user #block-cofe-content, .path-user .site-footer .communications #block-cofe-content, .site-footer .communications #block-cofe-page-title, .site-footer .communications .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .site-footer .communications .views-title-wrapper, .site-footer .communications #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .site-footer .communications nav, .site-footer .communications .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .site-footer .communications #block-cofe-content,
.site-footer .communications .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .site-footer .communications #block-cofe-content, .site-footer .communications .path-resources main, .path-resources .site-footer .communications main, .site-footer .communications .section-headers, .site-footer .communications .date, .site-footer .communications .paragraph--type--back-to-top,
.site-footer .communications .paragraph--type--image,
.site-footer .communications .paragraph--type--media,
.site-footer .communications .paragraph--type--video,
.site-footer .communications .paragraph--type--poll,
.site-footer .communications .paragraph--type--documents,
.site-footer .communications .paragraph--type--glossary-listing, .site-footer .communications .paragraph--type--copy-to-clipboard, .site-footer .communications #block-mainnavigation, .site-footer .communications #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .site-footer .communications h2, .site-footer .communications .views-related-tags {
  border-top: solid 2px #e6e6e6;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 49.375em) {
  .site-footer .communications .container, .site-footer .communications .path-user #block-cofe-content, .path-user .site-footer .communications #block-cofe-content, .site-footer .communications #block-cofe-page-title, .site-footer .communications .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .site-footer .communications .views-title-wrapper, .site-footer .communications #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .site-footer .communications nav, .site-footer .communications .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .site-footer .communications #block-cofe-content,
  .site-footer .communications .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .site-footer .communications #block-cofe-content, .site-footer .communications .path-resources main, .path-resources .site-footer .communications main, .site-footer .communications .section-headers, .site-footer .communications .date, .site-footer .communications .paragraph--type--back-to-top,
  .site-footer .communications .paragraph--type--image,
  .site-footer .communications .paragraph--type--media,
  .site-footer .communications .paragraph--type--video,
  .site-footer .communications .paragraph--type--poll,
  .site-footer .communications .paragraph--type--documents,
  .site-footer .communications .paragraph--type--glossary-listing, .site-footer .communications .paragraph--type--copy-to-clipboard, .site-footer .communications #block-mainnavigation, .site-footer .communications #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .site-footer .communications h2, .site-footer .communications .views-related-tags {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.site-footer .communications h3 {
  font-size: 24px;
  margin: 0 0 24px;
  letter-spacing: 0.025em;
  color: #000;
  overflow: hidden;
}
@media (min-width: 20.0625em) and (max-width: 49.365em) {
  .site-footer .communications h3 {
    font-size: 28px;
  }
}
@media (min-width: 49.375em) {
  .site-footer .communications h3 {
    font-size: 30px;
    margin: 0 0 48px;
  }
}
.site-footer .communications form {
  border: solid 2px #e9a065;
  font-size: 17px;
  margin: 0 auto 50px;
  position: relative;
  width: 90%;
  max-width: 790px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .communications form:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  text-align: center;
  display: inline;
  color: #e9a065;
}
.site-footer .communications form:after {
  position: absolute;
  right: 12px;
  top: 54%;
  content: "";
  font-size: 2.5rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 49.375em) {
  .site-footer .communications form:after {
    right: 30px;
    -webkit-transform: translateY(-56%);
    -moz-transform: translateY(-56%);
    -o-transform: translateY(-56%);
    transform: translateY(-56%);
  }
}
@media (min-width: 30em) {
  .site-footer .communications form {
    margin: 0 auto 0;
  }
}
@media (min-width: 49.375em) {
  .site-footer .communications form {
    margin: 0 auto 0;
    font-size: 18px;
  }
}
.site-footer .communications form input, .site-footer .communications form div {
  background: transparent;
  border: none;
}
.site-footer .communications form input {
  padding: 20px;
  color: #000;
  font-size: inherit;
}
@media (min-width: 49.375em) {
  .site-footer .communications form input {
    padding: 28px 33px 35px;
  }
}
.site-footer .communications form input.form-text {
  min-width: 20px;
  width: auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.site-footer .communications form input.form-submit {
  padding-left: 50px;
  text-indent: -9999em;
  z-index: 2;
  margin: 0;
  letter-spacing: normal;
  text-decoration: none;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.site-footer .social-channels {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .social-channels li {
  display: inline-block;
  width: 25%;
  vertical-align: top;
}
@media (min-width: 73.125em) {
  .site-footer .social-channels li {
    width: auto;
  }
}
.site-footer .social-channels li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 0.75em;
}
@media (min-width: 49.375em) {
  .site-footer .social-channels li a {
    font-size: 1.125em;
    padding-right: 20px;
  }
}
.site-footer .social-channels li a img {
  display: block;
  margin: auto;
  width: 5vw;
  min-width: 70px;
  max-width: 82px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 73.125em) {
  .site-footer .social-channels li a img {
    display: inline;
    vertical-align: middle;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@media (min-width: 49.375em) {
  .site-footer .social-channels li a:hover img, .site-footer .social-channels li a:focus img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.site-footer .footer-nav {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}
@media (min-width: 30em) {
  .site-footer .footer-nav {
    font-size: 1.125em;
  }
}
.site-footer .footer-nav.footer-nav-small {
  font-size: 11px;
}
@media (min-width: 30em) {
  .site-footer .footer-nav.footer-nav-small {
    font-size: 1em;
  }
}
.site-footer .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #000;
}
.site-footer .footer-nav li {
  display: inline-block;
}
.site-footer .footer-nav li a, .site-footer .footer-nav li span {
  color: #000;
  display: inline-block;
  padding: 8px;
  text-decoration: none;
}
@media (min-width: 30em) {
  .site-footer .footer-nav li a, .site-footer .footer-nav li span {
    padding: 12px;
  }
}

#block-fancylogin {
  text-align: center;
  margin-bottom: 5em;
}
#block-fancylogin a {
  margin: 0 !important;
}
@media (max-width: 29.99em) {
  #block-fancylogin a {
    margin-bottom: 1em !important;
  }
}

#fancy_login_dim_screen {
  background: rgba(0, 0, 0, 0.9) !important;
  opacity: 1 !important;
  z-index: 101 !important;
}

#fancy_login_close_button {
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid #e9a065;
  background: none;
  color: #9669a9;
  margin: 7px -18px 0 0;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 22px;
  font-family: ArialRoundedMTBold, cursive;
}

#fancy_login_user_login_block_wrapper {
  padding-bottom: 0;
}

#fancy_login_login_box {
  width: 300px;
  padding: 0 25px;
  z-index: 102 !important;
}
#fancy_login_login_box .softlogin-text {
  margin: 0;
  padding: 20px 0;
}
#fancy_login_login_box input {
  -webkit-appearance: none;
}
#fancy_login_login_box .form-actions {
  text-align: center;
}
#fancy_login_login_box ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
#fancy_login_login_box ul a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e9a065;
}
#fancy_login_login_box ul a:hover, #fancy_login_login_box ul a:focus {
  border-bottom: 2px solid #000;
}

#block-socialmedialinks .communications {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 30em) {
  #block-socialmedialinks .communications {
    margin-bottom: 50px;
  }
}
@media (min-width: 49.375em) {
  #block-socialmedialinks .communications {
    margin-bottom: 50px;
  }
}
#block-socialmedialinks .communications .container, #block-socialmedialinks .communications .path-user #block-cofe-content, .path-user #block-socialmedialinks .communications #block-cofe-content, #block-socialmedialinks .communications #block-cofe-page-title, #block-socialmedialinks .communications .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources #block-socialmedialinks .communications .views-title-wrapper, #block-socialmedialinks .communications #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs #block-socialmedialinks .communications nav, #block-socialmedialinks .communications .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page #block-socialmedialinks .communications #block-cofe-content,
#block-socialmedialinks .communications .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page #block-socialmedialinks .communications #block-cofe-content, #block-socialmedialinks .communications .path-resources main, .path-resources #block-socialmedialinks .communications main, #block-socialmedialinks .communications .section-headers, #block-socialmedialinks .communications .date, #block-socialmedialinks .communications .paragraph--type--back-to-top,
#block-socialmedialinks .communications .paragraph--type--image,
#block-socialmedialinks .communications .paragraph--type--media,
#block-socialmedialinks .communications .paragraph--type--video,
#block-socialmedialinks .communications .paragraph--type--poll,
#block-socialmedialinks .communications .paragraph--type--documents,
#block-socialmedialinks .communications .paragraph--type--glossary-listing, #block-socialmedialinks .communications .paragraph--type--copy-to-clipboard, #block-socialmedialinks .communications #block-mainnavigation, #block-socialmedialinks .communications #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 #block-socialmedialinks .communications h2, #block-socialmedialinks .communications .views-related-tags {
  border-top: none;
}

.page-node-type-long-form-content-page {
  /*
  //removing for now
    .paragraph--type--text .container {
      padding: 0;
    }*/
}
.page-node-type-long-form-content-page #block-cofe-page-title:before, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:before, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:before, .page-node-type-long-form-content-page #block-cofe-page-title:after, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:after, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:after {
  content: "";
  display: table;
}
.page-node-type-long-form-content-page #block-cofe-page-title:after, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:after, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:after {
  clear: both;
}
.page-node-type-long-form-content-page figcaption {
  font-size: 12px;
  margin-top: 1rem;
}
@media (max-width: 49.365em) {
  .page-node-type-long-form-content-page figcaption.align-left, .page-node-type-long-form-content-page figcaption.align-right {
    float: none;
    display: block;
  }
}

#block-cofe-breadcrumbs {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 500;
  padding: 7px 0 9px;
  font-size: 12px;
  letter-spacing: 0.04375em;
  text-align: left;
  color: #000;
  z-index: 1;
  position: relative;
  text-transform: uppercase;
  border-top: solid 1px #e4e4e4;
}
@media (min-width: 30em) and (max-width: 49.365em) {
  #block-cofe-breadcrumbs {
    padding: 7px 0 9px;
    font-size: 13px;
  }
}
@media (min-width: 49.375em) {
  #block-cofe-breadcrumbs {
    font-size: 13px;
    padding: 10px 0 12px;
  }
}
#block-cofe-breadcrumbs ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
#block-cofe-breadcrumbs ol li {
  display: inline;
}
#block-cofe-breadcrumbs ol li a {
  text-decoration: none;
  padding: 0;
  position: relative;
  color: #100b74;
  font-weight: 200;
}
#block-cofe-breadcrumbs ol li a:hover, #block-cofe-breadcrumbs ol li a:focus {
  text-decoration: underline;
}
#block-cofe-breadcrumbs ol li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 7px;
  width: 7px;
  border: solid 1px #e9a065;
  margin-left: 6px;
  margin-right: 6px;
  -webkit-transform: translateY(-2px) rotate(45deg);
  -moz-transform: translateY(-2px) rotate(45deg);
  -o-transform: translateY(-2px) rotate(45deg);
  transform: translateY(-2px) rotate(45deg);
}
#block-cofe-breadcrumbs ol li:last-child:after {
  display: none;
}

.page-node-type-long-form-content-page {
  /*
  //removing for now
    .paragraph--type--text .container {
      padding: 0;
    }*/
}
.page-node-type-long-form-content-page #block-cofe-page-title:before, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:before, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:before, .page-node-type-long-form-content-page #block-cofe-page-title:after, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:after, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:after {
  content: "";
  display: table;
}
.page-node-type-long-form-content-page #block-cofe-page-title:after, .page-node-type-long-form-content-page .view-taxonomy-resources .views-title-wrapper:after, .view-taxonomy-resources .page-node-type-long-form-content-page .views-title-wrapper:after {
  clear: both;
}
.page-node-type-long-form-content-page figcaption {
  font-size: 12px;
  margin-top: 1rem;
}
@media (max-width: 49.365em) {
  .page-node-type-long-form-content-page figcaption.align-left, .page-node-type-long-form-content-page figcaption.align-right {
    float: none;
    display: block;
  }
}

.btn, .btn:link, .btn:visited {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background: #100b74;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.btn.btn-clear, .btn:link.btn-clear, .btn:visited.btn-clear {
  background: transparent;
  color: #9669a9;
  border: 1px solid #9669a9;
  padding: 8px 20px;
}
.btn:hover, .btn:focus, .btn:link:hover, .btn:link:focus, .btn:visited:hover, .btn:visited:focus {
  background: #0a0745;
}
.btn:hover.btn-clear, .btn:focus.btn-clear, .btn:link:hover.btn-clear, .btn:link:focus.btn-clear, .btn:visited:hover.btn-clear, .btn:visited:focus.btn-clear {
  background: rgba(0, 0, 0, 0.1);
}
.btn.btn-center, .btn:link.btn-center, .btn:visited.btn-center {
  display: block;
  margin: 0 auto 2em;
}

.paragraph--type--image-block {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.paragraph--type--image-block:before, .paragraph--type--image-block:after {
  content: "";
  display: table;
}
.paragraph--type--image-block:after {
  clear: both;
}

#block-christmasfamilyactivitiesblock .content, #block-christmasfamilyactivitiesblock .view-taxonomy-resources,
#block-adventfamilyactivitiesblock .content,
#block-adventfamilyactivitiesblock .view-taxonomy-resources {
  line-height: 0;
  padding: 50px 0;
  text-align: center;
}
#block-christmasfamilyactivitiesblock .modal-opener,
#block-adventfamilyactivitiesblock .modal-opener {
  background-color: #4c7696;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 5;
}
#block-christmasfamilyactivitiesblock .modal-opener:nth-child(5n + 1),
#block-adventfamilyactivitiesblock .modal-opener:nth-child(5n + 1) {
  background-color: #4c7696;
}
#block-christmasfamilyactivitiesblock .modal-opener:nth-child(5n + 2),
#block-adventfamilyactivitiesblock .modal-opener:nth-child(5n + 2) {
  background-color: #6e8b52;
}
#block-christmasfamilyactivitiesblock .modal-opener:nth-child(5n + 3),
#block-adventfamilyactivitiesblock .modal-opener:nth-child(5n + 3) {
  background-color: #907d40;
}
#block-christmasfamilyactivitiesblock .modal-opener:nth-child(5n + 4),
#block-adventfamilyactivitiesblock .modal-opener:nth-child(5n + 4) {
  background-color: #945263;
}
#block-christmasfamilyactivitiesblock .modal-opener:nth-child(5n +5),
#block-adventfamilyactivitiesblock .modal-opener:nth-child(5n +5) {
  background-color: #924b30;
}
#block-christmasfamilyactivitiesblock .modal-opener:before,
#block-adventfamilyactivitiesblock .modal-opener:before {
  background: url(../img/bg-star.svg) no-repeat center top;
  bottom: 50px;
  content: '';
  display: inline-block;
  height: 110px;
  position: absolute;
  right: -10px;
  width: 60px;
  z-index: -1;
  -webkit-background-size: 200px auto;
  -moz-background-size: 200px auto;
  -o-background-size: 200px auto;
  background-size: 200px auto;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
#block-christmasfamilyactivitiesblock .modal-opener.locked,
#block-adventfamilyactivitiesblock .modal-opener.locked {
  background-color: #545454;
  cursor: initial;
}
#block-christmasfamilyactivitiesblock .modal-opener.locked img,
#block-adventfamilyactivitiesblock .modal-opener.locked img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
#block-christmasfamilyactivitiesblock .modal-opener.locked .image-wrapper,
#block-adventfamilyactivitiesblock .modal-opener.locked .image-wrapper {
  position: relative;
}
#block-christmasfamilyactivitiesblock .modal-opener.locked .image-wrapper:before,
#block-adventfamilyactivitiesblock .modal-opener.locked .image-wrapper:before {
  background: url(../img/padlock-white.svg) no-repeat center;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 10;
  -webkit-background-size: 45px auto;
  -moz-background-size: 45px auto;
  -o-background-size: 45px auto;
  background-size: 45px auto;
}
#block-christmasfamilyactivitiesblock .modal-opener img,
#block-adventfamilyactivitiesblock .modal-opener img {
  display: block;
  max-width: 100px;
  -webkit-border-radius: 0 0 60px 0;
  -moz-border-radius: 0 0 60px 0;
  -ms-border-radius: 0 0 60px 0;
  border-radius: 0 0 60px 0;
}
#block-christmasfamilyactivitiesblock .modal-opener .open-date,
#block-adventfamilyactivitiesblock .modal-opener .open-date {
  display: block;
  font-family: "ITC Airstream", comic-sans;
  font-size: 1.3em;
  line-height: 1.2;
  padding: 10px;
}
#block-christmasfamilyactivitiesblock .modal-opener sup,
#block-adventfamilyactivitiesblock .modal-opener sup {
  text-transform: uppercase;
  font-size: 50%;
}
#block-christmasfamilyactivitiesblock .modal-opener .month,
#block-adventfamilyactivitiesblock .modal-opener .month {
  display: block;
}
#block-christmasfamilyactivitiesblock .modal,
#block-adventfamilyactivitiesblock .modal {
  text-align: left;
}

@media (min-width: 30em) {
  #block-christmasfamilyactivitiesblock .modal-opener img,
  #block-adventfamilyactivitiesblock .modal-opener img {
    max-width: 120px;
  }
  #block-christmasfamilyactivitiesblock .modal-opener.locked,
  #block-adventfamilyactivitiesblock .modal-opener.locked {
    background-color: #545454;
  }
  #block-christmasfamilyactivitiesblock .modal-opener.locked img,
  #block-adventfamilyactivitiesblock .modal-opener.locked img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
  }
  #block-christmasfamilyactivitiesblock .modal-opener.locked .image-wrapper:before,
  #block-adventfamilyactivitiesblock .modal-opener.locked .image-wrapper:before {
    -webkit-background-size: 50px auto;
    -moz-background-size: 50px auto;
    -o-background-size: 50px auto;
    background-size: 50px auto;
  }
  #block-christmasfamilyactivitiesblock .modal-opener .open-date,
  #block-adventfamilyactivitiesblock .modal-opener .open-date {
    display: block;
    font-size: 1.6em;
  }
}
@media (min-width: 46.25em) {
  #block-christmasfamilyactivitiesblock .modal-opener img,
  #block-adventfamilyactivitiesblock .modal-opener img {
    max-width: none;
  }
  #block-christmasfamilyactivitiesblock .modal-opener.locked,
  #block-adventfamilyactivitiesblock .modal-opener.locked {
    background-color: #545454;
  }
  #block-christmasfamilyactivitiesblock .modal-opener.locked .image-wrapper:before,
  #block-adventfamilyactivitiesblock .modal-opener.locked .image-wrapper:before {
    -webkit-background-size: 60px auto;
    -moz-background-size: 60px auto;
    -o-background-size: 60px auto;
    background-size: 60px auto;
  }
}
.better-sharing-buttons-block {
  padding: 40px 0;
  text-align: center;
}
.better-sharing-buttons-block > h2 {
  color: #000;
  display: inline-block;
  font-size: .875em;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  vertical-align: middle;
}
.better-sharing-buttons-block .social-sharing-buttons {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.better-sharing-buttons-block .social-sharing-buttons a {
  background: #4a4a4a;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  font-size: 25px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.better-sharing-buttons-block .social-sharing-buttons a:hover {
  background: #fff;
  color: #000;
}

@media (min-width: 46.25em) {
  .better-sharing-buttons-block > h2 {
    margin-right: 20px;
  }
}
.carousel-step-by-step-wrapper .inner-container {
  overflow: hidden;
  width: auto;
}
.carousel-step-by-step-wrapper div.owl-carousel .owl-nav button.owl-prev, .carousel-step-by-step-wrapper div.owl-carousel .owl-nav button.owl-next {
  bottom: 20px;
  color: #9669a9;
  display: none;
  font-size: 35px;
  position: absolute;
}
.carousel-step-by-step-wrapper div.owl-carousel .owl-nav button.owl-prev {
  left: 10px;
}
.carousel-step-by-step-wrapper div.owl-carousel .owl-nav button.owl-next {
  right: 10px;
}
.carousel-step-by-step-wrapper--steps {
  background: #9669a9;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
  padding: 0;
  text-transform: uppercase;
}
.carousel-step-by-step-wrapper--steps li {
  display: inline-block;
  list-style: none;
  position: relative;
  min-height: 46px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  padding: 13px 10px 13px 22px;
  font-size: 14px;
  margin-right: 25px;
}
.carousel-step-by-step-wrapper--steps li:after {
  border-color: transparent transparent transparent #9669a9;
  border-style: solid;
  border-width: 23px 0 23px 15px;
  content: '';
  display: block;
  height: 46px;
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  -webkit-transform: scale(0.9999);
  -moz-transform: scale(0.9999);
  -o-transform: scale(0.9999);
  transform: scale(0.9999);
}
.carousel-step-by-step-wrapper--steps li.activated-step {
  background-color: #a783ba;
  z-index: 10;
}
.carousel-step-by-step-wrapper--steps li.activated-step::after {
  border-color: transparent transparent transparent #a783ba;
}
.carousel-step-by-step-wrapper--steps li.activated-prior {
  z-index: 15;
}
.carousel-step-by-step-wrapper--steps li.activated-prior::after {
  border-color: transparent transparent transparent #9669a9;
}
.carousel-step-by-step-wrapper--steps a {
  color: #fff;
}
.carousel-step-by-step-wrapper .carousel-step {
  background: #f5f5f5;
  border: 1px solid #dddddd;
  height: 390px;
  overflow: scroll;
}
.carousel-step-by-step-wrapper .carousel-step h2 {
  color: #9669a9;
}
.carousel-step-by-step-wrapper .carousel-step--body {
  padding: 0 20px;
}
.carousel-step-by-step-wrapper .carousel-step--body > .row, .carousel-step-by-step-wrapper .site-footer .carousel-step--body > .social-channels, .site-footer .carousel-step-by-step-wrapper .carousel-step--body > .social-channels {
  overflow: scroll;
  margin: 0 -15px;
}
.carousel-step-by-step-wrapper .carousel-step--body .column {
  padding: 30px 15px;
  width: 100%;
}
.carousel-step-by-step-wrapper .carousel-step--image {
  padding: 0;
}
.carousel-step-by-step-wrapper .carousel-step--image.has-background {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.carousel-step-by-step-wrapper .owl-item .row, .carousel-step-by-step-wrapper .owl-item .site-footer .social-channels, .site-footer .carousel-step-by-step-wrapper .owl-item .social-channels {
  margin: 0;
}
.carousel-step-by-step-wrapper img,
.carousel-step-by-step-wrapper .row,
.carousel-step-by-step-wrapper .site-footer .social-channels,
.site-footer .carousel-step-by-step-wrapper .social-channels {
  height: 100%;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion {
  font-size: 1em;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .container, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .path-user #block-cofe-content, .path-user .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-cofe-content, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-cofe-page-title, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .views-title-wrapper, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion nav, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-cofe-content,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-cofe-content, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .path-resources main, .path-resources .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion main, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .section-headers, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .date, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--back-to-top,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--image,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--media,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--video,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--poll,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--documents,
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--glossary-listing, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--copy-to-clipboard, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-mainnavigation, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion h2, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .views-related-tags {
  padding: 0;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .container-inner {
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion-element {
  margin: 0;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .expandable {
  padding: 20px 0;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .accordion-item {
  padding: 0;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .expand-toggle {
  border: none;
  font-size: 1em;
  font-weight: 300;
  padding: 0 20px 0 0;
  text-transform: none;
}
.carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .expand-toggle:after, .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .expand-toggle:before {
  height: 2px;
  top: 10px;
  width: 12px;
}

@media (min-width: 768px) {
  .carousel-step-by-step-wrapper div.owl-carousel div.owl-nav button.owl-prev, .carousel-step-by-step-wrapper div.owl-carousel div.owl-nav button.owl-next {
    bottom: 50%;
    display: inline-block;
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .carousel-step-by-step-wrapper div.owl-carousel div.owl-nav button.disabled {
    display: none;
  }
  .carousel-step-by-step-wrapper .carousel-step {
    overflow: hidden;
  }
  .carousel-step-by-step-wrapper .carousel-step--body {
    padding: 0 30px;
  }
  .carousel-step-by-step-wrapper .carousel-step--body > .row, .carousel-step-by-step-wrapper .site-footer .carousel-step--body > .social-channels, .site-footer .carousel-step-by-step-wrapper .carousel-step--body > .social-channels {
    overflow: hidden;
  }
  .carousel-step-by-step-wrapper .carousel-step--body .column {
    height: 390px;
    overflow: scroll;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .carousel-step-by-step-wrapper .carousel-step--image .media {
    display: none;
  }
  .carousel-step-by-step-wrapper .two-column .carousel-step--body {
    position: static;
  }
  .carousel-step-by-step-wrapper .two-column .column:first-child {
    position: relative;
  }
  .carousel-step-by-step-wrapper .two-column .column:first-child:after {
    border-right: 1px solid #dddddd;
    content: '';
    display: inline-block;
    height: calc(100% - 60px);
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .expandable {
    border: 1px solid #dddddd;
    height: 100%;
    overflow: scroll;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .carousel-step-by-step-wrapper .paragraph--type--detailed-accordion .paragraph--type--detailed-accordion .expandable {
    width: 41.666667%;
  }
}
.merry-christmas-everyone .paragraph--type--full-screen-message.u-bgPurple, .merry-christmas-everyone .paragraph--type--full-screen-message.u-bgPurplewarm,
.merry-christmas-everyone .inspiration-message.u-bgPurple,
.merry-christmas-everyone .inspiration-message.u-bgPurplewarm {
  background: #e4ab36 url(../img/blue-stars.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.merry-christmas-everyone .paragraph--type--full-screen-message.u-bgBlue, .merry-christmas-everyone .paragraph--type--full-screen-message.u-bgBluewarm,
.merry-christmas-everyone .inspiration-message.u-bgBlue,
.merry-christmas-everyone .inspiration-message.u-bgBluewarm {
  background: #3e4d8f url(../img/gold-stars.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.merry-christmas-everyone .paragraph--type--full-screen-message.u-bgGreen, .merry-christmas-everyone .paragraph--type--full-screen-message.u-bgRed,
.merry-christmas-everyone .inspiration-message.u-bgGreen,
.merry-christmas-everyone .inspiration-message.u-bgRed {
  background: #377bbb url(../img/gold-stars.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-content {
  max-width: none;
  padding: 10px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-content:before {
  background: url(../img/logo-white.svg) no-repeat center center;
  content: '';
  display: inline-block;
  height: 80px;
  margin-right: 20px;
  width: 80px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-buttons,
.eu-cookie-compliance-banner .eu-cookie-compliance-message {
  float: none;
  max-width: none;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-message {
  display: block;
  margin: 0;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-message .find-more-button,
.eu-cookie-compliance-banner .eu-cookie-compliance-message p {
  display: block;
  font-size: 1em;
  font-weight: normal;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-buttons {
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button {
  border: 3px solid transparent;
  font-family: "Open Sans", calibri, arial, sans-serif;
  font-size: 1em;
  margin: 0;
  padding: 10px 20px;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-default-button {
  background: transparent;
  border: 3px solid #fff;
  box-shadow: none;
  color: #fff;
  font-size: 1em;
  font-family: "Open Sans", calibri, arial, sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 10px 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-default-button:hover {
  background: #fff;
  color: #4d74b9;
}

@media screen and (min-width: 70em) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-buttons {
    margin-right: 0;
  }
}
@media screen and (min-width: 61.25em) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-content {
    max-width: 90%;
  }
  .eu-cookie-compliance-banner .eu-cookie-compliance-content:before {
    height: 110px;
    width: 110px;
  }
  .eu-cookie-compliance-banner .eu-cookie-compliance-buttons,
  .eu-cookie-compliance-banner .eu-cookie-compliance-message {
    float: none;
  }
  .eu-cookie-compliance-banner .eu-cookie-compliance-message p {
    font-size: 1.2em;
  }
  .eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button,
  .eu-cookie-compliance-banner .eu-cookie-compliance-default-button {
    font-size: 1.125em;
    min-width: 165px;
  }
}
.page-node-type-event .event-information {
  background-color: #a688b7;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.page-node-type-event .event-information .field {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
.page-node-type-event .event-information .field--type-color-field-type {
  display: none;
}
.page-node-type-event .event-information a {
  display: inline-block;
  vertical-align: top;
  color: white;
  text-decoration: none;
}
.page-node-type-event .event-information .field--name-field-event-date::before,
.page-node-type-event .event-information .field--name-field-time::before,
.page-node-type-event .event-information .field--name-field-display-location::before {
  content: '';
  background-size: auto 20px;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: top;
  margin-top: -2px;
}
.page-node-type-event .event-information .field--name-field-event-date::before {
  background: url(../img/cal.png) no-repeat;
}
.page-node-type-event .event-information .field--name-field-time::before {
  background: url(../img/time.png) no-repeat;
}
.page-node-type-event .event-information .field--name-field-display-location::before {
  background: url(../img/pin.png) no-repeat;
}
.page-node-type-event .event-information .event-category-short a {
  margin-left: 10px;
}
.page-node-type-event .field--name-body, .page-node-type-event .media-wrapper {
  max-width: 1280px;
  margin: 20px auto 0;
  overflow: hidden;
}
.page-node-type-event .field--name-body {
  padding: 0 10px;
}
.page-node-type-event .media-wrapper .field--name-field-event-location {
  width: 100%;
  position: relative;
  order: 1;
  min-height: 300px;
  margin-bottom: 10px;
}
.page-node-type-event .media-wrapper .field--name-field-event-location .geolocation-formatter-map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-node-type-event .media-wrapper .field--name-field-event-image {
  width: 100%;
  margin-bottom: 20px;
}
.page-node-type-event .media-wrapper .field--name-field-event-image img {
  opacity: .5;
  width: auto;
}
.page-node-type-event #block-entityviewcontent {
  max-width: 650px;
  display: block;
  margin: 0 auto;
}
.page-node-type-event a.eventbrite-link {
  display: block;
  width: 300px;
  text-align: center;
  text-decoration: none;
  color: #a688b7;
  font-weight: bold;
  border: solid;
  padding: 10px 0;
  margin: 10px auto;
}

.page-node-type-event-listing #block-cofe-content {
  max-width: 1280px;
  margin: 0 auto;
}
.page-node-type-event-listing #block-cofe-content p {
  padding: 0 1.8rem;
}

.events-view {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.events-view h3 {
  text-align: center;
}
.events-view .links-wrapper {
  display: inline-block;
  border: 2px solid #a688b7;
  border-radius: 6px;
  margin-bottom: 10px;
}
.events-view .links-wrapper .list-link,
.events-view .links-wrapper .calendar-link {
  display: inline-block;
  vertical-align: top;
}
.events-view .links-wrapper .list-link a,
.events-view .links-wrapper .calendar-link a {
  display: inline-block;
  min-width: 100px;
  text-align: center;
  padding: 7px 10px;
  font-size: .875em;
  line-height: 24px;
  font-weight: 600;
  background: #a688b7;
  color: #fff;
  text-decoration: none;
}
.events-view .links-wrapper .list-link a:hover,
.events-view .links-wrapper .calendar-link a:hover {
  text-decoration: none;
}
.events-view .links-wrapper .list-link.active a,
.events-view .links-wrapper .calendar-link.active a {
  background: #fff;
  color: #333;
}
.events-view .links-wrapper .list-link a {
  border-radius: 4px 0 0 4px;
}
.events-view .links-wrapper .calendar-link a {
  border-radius: 0 4px 4px 0;
}
.events-view .form-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 1em 5px 0;
}
.events-view .form-item.js-form-type-select > label {
  display: none;
}
.events-view .selectric {
  border: 2px solid #e9a065;
  height: auto;
}
.events-view .selectric .button, .events-view .selectric .site-footer .footer-nav .sign-in, .site-footer .footer-nav .events-view .selectric .sign-in, .events-view .selectric #block-fancylogin a, #block-fancylogin .events-view .selectric a, .events-view .selectric .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .events-view .selectric input, .events-view .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .events-view .selectric a, .events-view .selectric .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .events-view .selectric a {
  background: none;
  height: 38px;
  width: 38px;
}
.events-view .selectric .button::after, .events-view .selectric .site-footer .footer-nav .sign-in::after, .site-footer .footer-nav .events-view .selectric .sign-in::after, .events-view .selectric #block-fancylogin a::after, #block-fancylogin .events-view .selectric a::after, .events-view .selectric .xl-spotlight .find-church-text form input::after, .xl-spotlight .find-church-text form .events-view .selectric input::after, .events-view .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a::after, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .events-view .selectric a::after, .events-view .selectric .views-related-tags .views-field-term-node-tid a::after, .views-related-tags .views-field-term-node-tid .events-view .selectric a::after {
  border-top-color: #e9a065;
  border-width: 4px;
}
.events-view .selectric .button:hover, .events-view .selectric .site-footer .footer-nav .sign-in:hover, .site-footer .footer-nav .events-view .selectric .sign-in:hover, .events-view .selectric #block-fancylogin a:hover, #block-fancylogin .events-view .selectric a:hover, .events-view .selectric .xl-spotlight .find-church-text form input:hover, .xl-spotlight .find-church-text form .events-view .selectric input:hover, .events-view .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .events-view .selectric a:hover, .events-view .selectric .views-related-tags .views-field-term-node-tid a:hover, .views-related-tags .views-field-term-node-tid .events-view .selectric a:hover, .events-view .selectric .button:focus, .events-view .selectric .site-footer .footer-nav .sign-in:focus, .site-footer .footer-nav .events-view .selectric .sign-in:focus, .events-view .selectric #block-fancylogin a:focus, #block-fancylogin .events-view .selectric a:focus, .events-view .selectric .xl-spotlight .find-church-text form input:focus, .xl-spotlight .find-church-text form .events-view .selectric input:focus, .events-view .selectric .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .events-view .selectric a:focus, .events-view .selectric .views-related-tags .views-field-term-node-tid a:focus, .views-related-tags .views-field-term-node-tid .events-view .selectric a:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.events-view .selectric .label {
  font-size: .75em;
  font-weight: lighter;
  line-height: 38px;
}
.events-view input.form-submit {
  border: 2px solid #a688b7;
  color: #a688b7;
  font-size: .875em;
  font-weight: 600;
  padding: 0 20px;
  line-height: 38px;
  margin: 0 1em 0 0;
  text-transform: none;
}
.events-view .views-row,
.events-view > form {
  margin-bottom: 1em;
}
.events-view .views-row, .events-view .views-row .views-field {
  overflow: hidden;
}
.events-view .views-field-title {
  font-size: 1.25em;
  font-weight: 700;
}
.events-view .views-field-field-event-date,
.events-view .views-field-field-time,
.events-view .views-field-field-display-location {
  display: inline-block;
  vertical-align: top;
  background: #a688b7;
  color: #fff;
  font-size: .875em;
  padding: 5px 10px;
  margin: 10px 10px 0 0;
}
.events-view .views-field-field-event-date .field-content::before,
.events-view .views-field-field-time .field-content::before,
.events-view .views-field-field-display-location .field-content::before {
  content: '';
  background-size: auto 20px;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: top;
  margin-top: -1px;
}
.events-view .views-field-field-event-sub-category-1 {
  display: inline-block;
  vertical-align: top;
  background: #a688b7;
  color: #fff;
  font-size: .875em;
  padding: 5px 10px;
  margin: 10px 10px 0 0;
}
.events-view .views-field-field-event-date .field-content::before {
  background: url(../img/cal.png) no-repeat;
}
.events-view .views-field-field-time .field-content::before {
  background: url(../img/time.png) no-repeat;
}
.events-view .views-field-field-display-location .field-content::before {
  background: url(../img/pin.png) no-repeat;
}
.events-view .pager ul li a {
  display: inline;
  padding: 2px 7px;
}
.events-view .views-field-field-event-image {
  margin-top: 20px;
}
.events-view .views-field-field-event-image img {
  opacity: .5;
  margin: 0 auto;
}
.events-view .views-field-field-description {
  margin-top: 20px;
}

@media (min-width: 49.375em) {
  .events-view .links-wrapper {
    float: right;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .events-view .links-wrapper .list-link a,
  .events-view .links-wrapper .calendar-link a {
    font-size: 1em;
  }
  .events-view .selectric .label {
    font-size: .875em;
  }
  .events-view input.form-submit {
    font-size: 1em;
  }
  .events-view .views-row,
  .events-view > form {
    margin-bottom: 2em;
  }
  .events-view .views-field-title {
    font-size: 1.375em;
  }
  .events-view .views-field-field-event-date,
  .events-view .views-field-field-time,
  .events-view .views-field-field-display-location {
    font-size: 1em;
  }
  .events-view .views-field-field-event-image, .events-view .views-field-field-description {
    float: none;
  }
}
@media (min-width: 73.125em) {
  .events-view {
    padding: 0 1.8rem;
  }

  .page-node-type-event .event-information {
    padding: 20px;
  }
  .page-node-type-event .event-information .field {
    margin-right: 50px;
  }
}
@media (min-width: 80em) {
  .page-node-type-event .field--name-body {
    padding: 0;
  }
}
@media (min-width: 49.375em) {
  .events-view .views-field-field-event-image {
    float: left;
    width: 25%;
    margin-top: 20px;
  }
  .events-view .views-field-field-event-image img {
    opacity: .5;
  }
  .events-view .views-field-field-description {
    float: left;
    width: 75%;
    padding-left: 20px;
  }

  .page-node-type-event .media-wrapper {
    display: flex;
  }
  .page-node-type-event .media-wrapper .field--name-field-event-location {
    width: 35%;
    order: 1;
    min-height: inherit;
    margin: 0;
  }
  .page-node-type-event .media-wrapper .field--name-field-event-image {
    width: 65%;
    padding-right: 20px;
    margin: 0;
  }
  .page-node-type-event a.eventbrite-link {
    display: inline-block;
    margin: 10px;
  }
}
.featured-block-item {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
}
.featured-block-item .featured-blocks__links {
  font-weight: bold;
  padding-left: 20px;
}
.featured-block-item .featured-blocks__links a::after {
  content: '\f054';
  font: normal normal normal 14px/1 FontAwesome;
  color: #100b74;
  padding-left: 15px;
}
.featured-block-item .featured-blocks__links a:hover {
  text-decoration: none;
}
.featured-block-item .featured-blocks__links a:hover::after {
  color: #0056b3;
}
.featured-block-item .featured-blocks__image {
  height: 260px;
  background-size: cover;
}
.featured-block-item .featured-blocks__content {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  padding-bottom: 20px;
}
.featured-block-item .featured-blocks__content p {
  flex: 1 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.featured-block-item .featured-blocks__content h3 {
  padding-top: 20px;
  padding-left: 20px;
}

.christmas-user-register-form-wrapper h2 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 100;
  margin: 1em 0;
  text-align: center;
}
.christmas-user-register-form-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.christmas-user-register-form-wrapper > ul li {
  display: inline-block;
  margin: 0 20px 30px;
  padding: 0;
}
.christmas-user-register-form-wrapper > ul a {
  color: #fff;
  font-size: 1.25em;
}
.christmas-user-register-form-wrapper .messages {
  text-align: left;
  background-position: 10px 15px;
  padding: 5px 0;
}
.christmas-user-register-form-wrapper .messages li {
  display: block;
  margin: 5px 40px;
}

.user-christmas-register-form .container > .form-wrapper, .user-christmas-register-form .path-user #block-cofe-content > .form-wrapper, .path-user .user-christmas-register-form #block-cofe-content > .form-wrapper, .user-christmas-register-form #block-cofe-page-title > .form-wrapper, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper > .form-wrapper, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper > .form-wrapper, .user-christmas-register-form #block-cofe-breadcrumbs nav > .form-wrapper, #block-cofe-breadcrumbs .user-christmas-register-form nav > .form-wrapper, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content > .form-wrapper, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content > .form-wrapper,
.user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content > .form-wrapper,
.page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content > .form-wrapper, .user-christmas-register-form .path-resources main > .form-wrapper, .path-resources .user-christmas-register-form main > .form-wrapper, .user-christmas-register-form .section-headers > .form-wrapper, .user-christmas-register-form .date > .form-wrapper, .user-christmas-register-form .paragraph--type--back-to-top > .form-wrapper,
.user-christmas-register-form .paragraph--type--image > .form-wrapper,
.user-christmas-register-form .paragraph--type--media > .form-wrapper,
.user-christmas-register-form .paragraph--type--video > .form-wrapper,
.user-christmas-register-form .paragraph--type--poll > .form-wrapper,
.user-christmas-register-form .paragraph--type--documents > .form-wrapper,
.user-christmas-register-form .paragraph--type--glossary-listing > .form-wrapper, .user-christmas-register-form .paragraph--type--copy-to-clipboard > .form-wrapper, .user-christmas-register-form #block-mainnavigation > .form-wrapper, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 > .form-wrapper, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 > .form-wrapper, .user-christmas-register-form .views-related-tags > .form-wrapper {
  margin-bottom: 20px;
}
.user-christmas-register-form .container > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .path-user #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription, .path-user .user-christmas-register-form #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form #block-cofe-page-title > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper > .form-wrapper.field--type-mailchimp-lists-subscription, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form #block-cofe-breadcrumbs nav > .form-wrapper.field--type-mailchimp-lists-subscription, #block-cofe-breadcrumbs .user-christmas-register-form nav > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription,
.page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .path-resources main > .form-wrapper.field--type-mailchimp-lists-subscription, .path-resources .user-christmas-register-form main > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .section-headers > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .date > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .paragraph--type--back-to-top > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--image > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--media > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--video > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--poll > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--documents > .form-wrapper.field--type-mailchimp-lists-subscription,
.user-christmas-register-form .paragraph--type--glossary-listing > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .paragraph--type--copy-to-clipboard > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form #block-mainnavigation > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 > .form-wrapper.field--type-mailchimp-lists-subscription, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 > .form-wrapper.field--type-mailchimp-lists-subscription, .user-christmas-register-form .views-related-tags > .form-wrapper.field--type-mailchimp-lists-subscription {
  margin-bottom: 0;
  margin-top: 20px;
}
.user-christmas-register-form h2 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 100;
  margin: 1em 0;
  text-align: center;
}
.user-christmas-register-form .field--type-mailchimp-lists-subscription legend {
  border: none;
  margin: 0;
}
.user-christmas-register-form label a {
  color: #fff;
  text-decoration: underline;
}
.user-christmas-register-form label a:hover {
  text-decoration: none;
}
.user-christmas-register-form label:not(.option) {
  height: 0;
  margin: 0;
  visibility: hidden;
}
.user-christmas-register-form table.responsive tr {
  border: none;
}
.user-christmas-register-form .form-select,
.user-christmas-register-form .form-email,
.user-christmas-register-form .form-text {
  margin: 0;
  padding: 10px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.user-christmas-register-form .captcha {
  margin-top: 20px;
}

@media (min-width: 46.25em) {
  .user-christmas-register-form .container, .user-christmas-register-form .path-user #block-cofe-content, .path-user .user-christmas-register-form #block-cofe-content, .user-christmas-register-form #block-cofe-page-title, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper, .user-christmas-register-form #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .user-christmas-register-form nav, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content, .user-christmas-register-form .path-resources main, .path-resources .user-christmas-register-form main, .user-christmas-register-form .section-headers, .user-christmas-register-form .date, .user-christmas-register-form .paragraph--type--back-to-top,
  .user-christmas-register-form .paragraph--type--image,
  .user-christmas-register-form .paragraph--type--media,
  .user-christmas-register-form .paragraph--type--video,
  .user-christmas-register-form .paragraph--type--poll,
  .user-christmas-register-form .paragraph--type--documents,
  .user-christmas-register-form .paragraph--type--glossary-listing, .user-christmas-register-form .paragraph--type--copy-to-clipboard, .user-christmas-register-form #block-mainnavigation, .user-christmas-register-form #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .user-christmas-register-form h2, .user-christmas-register-form .views-related-tags {
    margin: 0 -15px;
    width: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .user-christmas-register-form .container > .form-wrapper, .user-christmas-register-form .path-user #block-cofe-content > .form-wrapper, .path-user .user-christmas-register-form #block-cofe-content > .form-wrapper, .user-christmas-register-form #block-cofe-page-title > .form-wrapper, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper > .form-wrapper, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper > .form-wrapper, .user-christmas-register-form #block-cofe-breadcrumbs nav > .form-wrapper, #block-cofe-breadcrumbs .user-christmas-register-form nav > .form-wrapper, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content > .form-wrapper, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content > .form-wrapper,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content > .form-wrapper,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content > .form-wrapper, .user-christmas-register-form .path-resources main > .form-wrapper, .path-resources .user-christmas-register-form main > .form-wrapper, .user-christmas-register-form .section-headers > .form-wrapper, .user-christmas-register-form .date > .form-wrapper, .user-christmas-register-form .paragraph--type--back-to-top > .form-wrapper,
  .user-christmas-register-form .paragraph--type--image > .form-wrapper,
  .user-christmas-register-form .paragraph--type--media > .form-wrapper,
  .user-christmas-register-form .paragraph--type--video > .form-wrapper,
  .user-christmas-register-form .paragraph--type--poll > .form-wrapper,
  .user-christmas-register-form .paragraph--type--documents > .form-wrapper,
  .user-christmas-register-form .paragraph--type--glossary-listing > .form-wrapper, .user-christmas-register-form .paragraph--type--copy-to-clipboard > .form-wrapper, .user-christmas-register-form #block-mainnavigation > .form-wrapper, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 > .form-wrapper, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 > .form-wrapper, .user-christmas-register-form .views-related-tags > .form-wrapper {
    padding: 0 15px;
    max-width: 50%;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  .user-christmas-register-form .container .field--name-field-term-and-conditions, .user-christmas-register-form .path-user #block-cofe-content .field--name-field-term-and-conditions, .path-user .user-christmas-register-form #block-cofe-content .field--name-field-term-and-conditions, .user-christmas-register-form #block-cofe-page-title .field--name-field-term-and-conditions, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper .field--name-field-term-and-conditions, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper .field--name-field-term-and-conditions, .user-christmas-register-form #block-cofe-breadcrumbs nav .field--name-field-term-and-conditions, #block-cofe-breadcrumbs .user-christmas-register-form nav .field--name-field-term-and-conditions, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content .field--name-field-term-and-conditions, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content .field--name-field-term-and-conditions,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content .field--name-field-term-and-conditions,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content .field--name-field-term-and-conditions, .user-christmas-register-form .path-resources main .field--name-field-term-and-conditions, .path-resources .user-christmas-register-form main .field--name-field-term-and-conditions, .user-christmas-register-form .section-headers .field--name-field-term-and-conditions, .user-christmas-register-form .date .field--name-field-term-and-conditions, .user-christmas-register-form .paragraph--type--back-to-top .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--image .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--media .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--video .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--poll .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--documents .field--name-field-term-and-conditions,
  .user-christmas-register-form .paragraph--type--glossary-listing .field--name-field-term-and-conditions, .user-christmas-register-form .paragraph--type--copy-to-clipboard .field--name-field-term-and-conditions, .user-christmas-register-form #block-mainnavigation .field--name-field-term-and-conditions, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 .field--name-field-term-and-conditions, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 .field--name-field-term-and-conditions, .user-christmas-register-form .views-related-tags .field--name-field-term-and-conditions,
  .user-christmas-register-form .container .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .path-user #block-cofe-content .field--type-mailchimp-lists-subscription,
  .path-user .user-christmas-register-form #block-cofe-content .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form #block-cofe-page-title .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper .field--type-mailchimp-lists-subscription,
  .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form #block-cofe-breadcrumbs nav .field--type-mailchimp-lists-subscription,
  #block-cofe-breadcrumbs .user-christmas-register-form nav .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content .field--type-mailchimp-lists-subscription,
  .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content .field--type-mailchimp-lists-subscription,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .path-resources main .field--type-mailchimp-lists-subscription,
  .path-resources .user-christmas-register-form main .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .section-headers .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .date .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--back-to-top .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--image .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--media .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--video .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--poll .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--documents .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--glossary-listing .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .paragraph--type--copy-to-clipboard .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form #block-mainnavigation .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form #block-views-block-related-tags-block-1 h2 .field--type-mailchimp-lists-subscription,
  #block-views-block-related-tags-block-1 .user-christmas-register-form h2 .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .views-related-tags .field--type-mailchimp-lists-subscription,
  .user-christmas-register-form .container .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .path-user #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .path-user .user-christmas-register-form #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form #block-cofe-page-title .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper .field--name-field-digital-campaigns-subscr,
  .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form #block-cofe-breadcrumbs nav .field--name-field-digital-campaigns-subscr,
  #block-cofe-breadcrumbs .user-christmas-register-form nav .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .path-resources main .field--name-field-digital-campaigns-subscr,
  .path-resources .user-christmas-register-form main .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .section-headers .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .date .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--back-to-top .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--image .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--media .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--video .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--poll .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--documents .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--glossary-listing .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .paragraph--type--copy-to-clipboard .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form #block-mainnavigation .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form #block-views-block-related-tags-block-1 h2 .field--name-field-digital-campaigns-subscr,
  #block-views-block-related-tags-block-1 .user-christmas-register-form h2 .field--name-field-digital-campaigns-subscr,
  .user-christmas-register-form .views-related-tags .field--name-field-digital-campaigns-subscr {
    max-width: 100%;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .user-christmas-register-form .container .field--name-field-postcode, .user-christmas-register-form .path-user #block-cofe-content .field--name-field-postcode, .path-user .user-christmas-register-form #block-cofe-content .field--name-field-postcode, .user-christmas-register-form #block-cofe-page-title .field--name-field-postcode, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper .field--name-field-postcode, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper .field--name-field-postcode, .user-christmas-register-form #block-cofe-breadcrumbs nav .field--name-field-postcode, #block-cofe-breadcrumbs .user-christmas-register-form nav .field--name-field-postcode, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content .field--name-field-postcode, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content .field--name-field-postcode,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content .field--name-field-postcode,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content .field--name-field-postcode, .user-christmas-register-form .path-resources main .field--name-field-postcode, .path-resources .user-christmas-register-form main .field--name-field-postcode, .user-christmas-register-form .section-headers .field--name-field-postcode, .user-christmas-register-form .date .field--name-field-postcode, .user-christmas-register-form .paragraph--type--back-to-top .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--image .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--media .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--video .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--poll .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--documents .field--name-field-postcode,
  .user-christmas-register-form .paragraph--type--glossary-listing .field--name-field-postcode, .user-christmas-register-form .paragraph--type--copy-to-clipboard .field--name-field-postcode, .user-christmas-register-form #block-mainnavigation .field--name-field-postcode, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 .field--name-field-postcode, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 .field--name-field-postcode, .user-christmas-register-form .views-related-tags .field--name-field-postcode {
    max-width: 40%;
    -webkit-flex: 1 0 40%;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
  }
  .user-christmas-register-form .container .form-item-mail, .user-christmas-register-form .path-user #block-cofe-content .form-item-mail, .path-user .user-christmas-register-form #block-cofe-content .form-item-mail, .user-christmas-register-form #block-cofe-page-title .form-item-mail, .user-christmas-register-form .view-taxonomy-resources .views-title-wrapper .form-item-mail, .view-taxonomy-resources .user-christmas-register-form .views-title-wrapper .form-item-mail, .user-christmas-register-form #block-cofe-breadcrumbs nav .form-item-mail, #block-cofe-breadcrumbs .user-christmas-register-form nav .form-item-mail, .user-christmas-register-form .page-node-type-liturgy-page #block-cofe-content .form-item-mail, .page-node-type-liturgy-page .user-christmas-register-form #block-cofe-content .form-item-mail,
  .user-christmas-register-form .page-node-type-daily-services-integration-page #block-cofe-content .form-item-mail,
  .page-node-type-daily-services-integration-page .user-christmas-register-form #block-cofe-content .form-item-mail, .user-christmas-register-form .path-resources main .form-item-mail, .path-resources .user-christmas-register-form main .form-item-mail, .user-christmas-register-form .section-headers .form-item-mail, .user-christmas-register-form .date .form-item-mail, .user-christmas-register-form .paragraph--type--back-to-top .form-item-mail,
  .user-christmas-register-form .paragraph--type--image .form-item-mail,
  .user-christmas-register-form .paragraph--type--media .form-item-mail,
  .user-christmas-register-form .paragraph--type--video .form-item-mail,
  .user-christmas-register-form .paragraph--type--poll .form-item-mail,
  .user-christmas-register-form .paragraph--type--documents .form-item-mail,
  .user-christmas-register-form .paragraph--type--glossary-listing .form-item-mail, .user-christmas-register-form .paragraph--type--copy-to-clipboard .form-item-mail, .user-christmas-register-form #block-mainnavigation .form-item-mail, .user-christmas-register-form #block-views-block-related-tags-block-1 h2 .form-item-mail, #block-views-block-related-tags-block-1 .user-christmas-register-form h2 .form-item-mail, .user-christmas-register-form .views-related-tags .form-item-mail {
    max-width: 60%;
    padding: 0 15px;
    -webkit-flex: 1 0 60%;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
  }
  .user-christmas-register-form h2 {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .user-christmas-register-form #edit-account {
    max-width: 100%;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .user-christmas-register-form .form-item-pass {
    margin: 0 -15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .user-christmas-register-form .form-item-pass > div {
    padding: 0 15px;
    max-width: 50%;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }

  .captcha {
    padding: 0 15px;
  }
}
.christmas-user-login-form-wrapper h2 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 100;
  margin: 1em 0;
  text-align: center;
}
.christmas-user-login-form-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.christmas-user-login-form-wrapper > ul li {
  display: inline-block;
  margin: 0 20px 30px;
  padding: 0;
}
.christmas-user-login-form-wrapper > ul a {
  color: #fff;
  font-size: 1.25em;
}
.christmas-user-login-form-wrapper .messages {
  text-align: left;
  background-position: 10px 15px;
  padding: 5px 0;
}
.christmas-user-login-form-wrapper .messages li {
  display: block;
  margin: 5px 40px;
}

#christmas-user-login-form label:not(.option) {
  height: 0;
  margin: 0;
  visibility: hidden;
}
#christmas-user-login-form .captcha {
  margin-top: 20px;
}

@media (min-width: 46.25em) {
  #christmas-user-login-form {
    margin: 0 -15px;
    padding: 0 15px;
    width: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #christmas-user-login-form > .form-item {
    padding: 0 15px;
    max-width: 50%;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  #christmas-user-login-form .form-actions {
    max-width: 100%;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.user-form .password-suggestions {
  display: none !important;
}

#views-exposed-form-document-library-block {
  margin: 0 -15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#views-exposed-form-document-library-block .form-actions,
#views-exposed-form-document-library-block .form-item {
  margin-bottom: 20px;
  padding: 0 15px;
  width: 100%;
}
#views-exposed-form-document-library-block .form-actions label,
#views-exposed-form-document-library-block .form-item label {
  margin-top: auto;
}
#views-exposed-form-document-library-block .form-actions {
  text-align: left;
  width: auto;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#views-exposed-form-document-library-block .form-actions .button, #views-exposed-form-document-library-block .form-actions .site-footer .footer-nav .sign-in, .site-footer .footer-nav #views-exposed-form-document-library-block .form-actions .sign-in, #views-exposed-form-document-library-block .form-actions #block-fancylogin a, #block-fancylogin #views-exposed-form-document-library-block .form-actions a, #views-exposed-form-document-library-block .form-actions .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form #views-exposed-form-document-library-block .form-actions input, #views-exposed-form-document-library-block .form-actions .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta #views-exposed-form-document-library-block .form-actions a, #views-exposed-form-document-library-block .form-actions .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid #views-exposed-form-document-library-block .form-actions a {
  margin: 0 15px 0 0;
}

@media (min-width: 46.25em) {
  #views-exposed-form-document-library-block .form-item {
    width: 50%;
  }
}
@media (min-width: 61.25em) {
  #views-exposed-form-document-library-block .form-item {
    width: 33.33%;
  }
}
#tfa-entry-form {
  margin: auto;
  max-width: 610px;
  padding: 0 15px;
}

/** Hide Drupdal's default navigation bar to create account or reset password links */
.path-user #block-cofe-local-tasks {
  display: none;
}

/** Unique template styles for the singup, request and  login forms */
.form-item-approve label {
  width: 95%;
  vertical-align: top;
}

.mailchimp-signup-subscribe-form .mailchimp-newsletter-mergefields, .form-action__links .mailchimp-newsletter-mergefields, .webform-submission-role-request-form .mailchimp-newsletter-mergefields, .user-login-form .mailchimp-newsletter-mergefields {
  margin-top: 1em;
  margin-bottom: 1em;
}
.mailchimp-signup-subscribe-form .mailchimp-newsletter-wrapper, .form-action__links .mailchimp-newsletter-wrapper, .webform-submission-role-request-form .mailchimp-newsletter-wrapper, .user-login-form .mailchimp-newsletter-wrapper {
  display: block;
  margin-right: 1em;
}
@media (max-width: 29.99em) {
  .mailchimp-signup-subscribe-form .form-actions, .form-action__links .form-actions, .webform-submission-role-request-form .form-actions, .user-login-form .form-actions {
    text-align: center;
  }
}
.mailchimp-signup-subscribe-form select, .form-action__links select, .mailchimp-signup-subscribe-form textarea, .form-action__links textarea, .mailchimp-signup-subscribe-form input[type="text"], .form-action__links input[type="text"], .mailchimp-signup-subscribe-form input[type="password"], .form-action__links input[type="password"], .mailchimp-signup-subscribe-form input[type="datetime"], .form-action__links input[type="datetime"], .mailchimp-signup-subscribe-form input[type="datetime-local"], .form-action__links input[type="datetime-local"], .mailchimp-signup-subscribe-form input[type="date"], .form-action__links input[type="date"], .mailchimp-signup-subscribe-form input[type="month"], .form-action__links input[type="month"], .mailchimp-signup-subscribe-form input[type="time"], .form-action__links input[type="time"], .mailchimp-signup-subscribe-form input[type="week"], .form-action__links input[type="week"], .mailchimp-signup-subscribe-form input[type="number"], .form-action__links input[type="number"], .mailchimp-signup-subscribe-form input[type="email"], .form-action__links input[type="email"], .mailchimp-signup-subscribe-form input[type="url"], .form-action__links input[type="url"], .mailchimp-signup-subscribe-form input[type="search"], .form-action__links input[type="search"], .mailchimp-signup-subscribe-form input[type="tel"], .form-action__links input[type="tel"], .mailchimp-signup-subscribe-form input[type="color"], .form-action__links input[type="color"], .webform-submission-role-request-form select, .webform-submission-role-request-form textarea, .webform-submission-role-request-form input[type="text"], .webform-submission-role-request-form input[type="password"], .webform-submission-role-request-form input[type="datetime"], .webform-submission-role-request-form input[type="datetime-local"], .webform-submission-role-request-form input[type="date"], .webform-submission-role-request-form input[type="month"], .webform-submission-role-request-form input[type="time"], .webform-submission-role-request-form input[type="week"], .webform-submission-role-request-form input[type="number"], .webform-submission-role-request-form input[type="email"], .webform-submission-role-request-form input[type="url"], .webform-submission-role-request-form input[type="search"], .webform-submission-role-request-form input[type="tel"], .webform-submission-role-request-form input[type="color"], .user-login-form select, .user-login-form textarea, .user-login-form input[type="text"], .user-login-form input[type="password"], .user-login-form input[type="datetime"], .user-login-form input[type="datetime-local"], .user-login-form input[type="date"], .user-login-form input[type="month"], .user-login-form input[type="time"], .user-login-form input[type="week"], .user-login-form input[type="number"], .user-login-form input[type="email"], .user-login-form input[type="url"], .user-login-form input[type="search"], .user-login-form input[type="tel"], .user-login-form input[type="color"] {
  border: solid 1px #e6e6e6;
}

/** Form Checkboxes **/
@media (min-width: 45em) {
  .webform-submission-role-request-form .form-checkboxes > div {
    display: inline-block;
    margin-right: 15px;
  }
  .webform-submission-role-request-form .form-checkboxes input[type=checkbox] {
    top: 2px;
  }
}

/** Form action: Login button **/
.form-actions {
  text-align: center;
}

/** Form action links: Create account or reset password **/
.form-action__links {
  margin-top: -20px;
  margin-bottom: 5em;
}
.form-action__links ul {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -moz-box-pack: space-around;
  -ms-flex-pack: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.form-action__links ul li {
  list-style: none;
}
.form-action__links ul li a {
  padding: 10px;
}

.glossary-filter {
  margin-bottom: 10px;
}
.glossary-filter a {
  border-right: 1px solid #221f72;
  color: #1b1b1b;
  display: inline-block;
  font-size: 1.125em;
  margin-bottom: 10px;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  width: 45px;
}
.glossary-filter a:hover {
  text-decoration: underline;
}
.glossary-filter a:last-child {
  border: none;
}
.glossary-filter a.disabled-link {
  color: #e4e4e4;
}

.has-glossaryWidget {
  position: relative;
}
@media (max-width: 59.365em) {
  .has-glossaryWidget {
    padding-right: 50px;
  }
}
.has-glossaryWidget .highlight {
  background: linear-gradient(to right, grey 0, grey 2px, transparent 2px, transparent 4px) repeat-x left bottom;
  background-size: 6px 2px;
  cursor: pointer;
}

.glossaryWidget {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 59.365em) {
  .glossaryWidget {
    text-align: right;
    overflow: hidden;
  }
  .glossaryWidget.is-open {
    background: #f5f5f5;
    min-width: 33%;
    z-index: 1;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    left: 0;
    width: calc(100% - 2em);
    margin: auto;
  }
}
@media (min-width: 59.375em) {
  .glossaryWidget {
    width: 26.53061%;
    padding-left: 6.12245%;
    box-sizing: border-box;
    margin-right: -26.53061%;
  }
}

.glossaryWidget.row-2 {
  top: 50px;
}

.glossaryWidget-toggle {
  border: solid 1px #e9a065;
  width: 25px;
  height: 25px;
  padding: 0;
  line-height: 23px;
  background-color: #fff;
  margin: 6px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.glossaryWidget-toggle > .a,
.glossaryWidget-toggle > .b {
  color: #9669a9;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.glossaryWidget-toggle > .a {
  display: block;
}
.glossaryWidget-toggle > .b {
  display: none;
}
.glossaryWidget-toggle.u-mouseBlur {
  background-color: #fff;
  border-color: #e9a065;
}
.glossaryWidget-toggle.u-mouseBlur > * {
  color: #9669a9;
}
.is-open .glossaryWidget-toggle {
  background-color: #9669a9;
  border-color: #9669a9;
  outline: 0;
}
.is-open .glossaryWidget-toggle > * {
  color: #fff;
}
.is-open .glossaryWidget-toggle > .a {
  display: none;
}
.is-open .glossaryWidget-toggle > .b {
  display: block;
}

.glossaryWidget-content {
  display: none;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 1em 0;
  color: #000;
  font-size: 14px;
}
@media (min-width: 30em) {
  .glossaryWidget-content {
    font-size: 12px;
  }
}
@media (max-width: 59.365em) {
  .glossaryWidget-content {
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
}
.is-open .glossaryWidget-content {
  display: block;
}

.glossaryWidget-definition {
  margin-bottom: 1em;
}

.hero-image-container .paragraph {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  margin-bottom: 24px;
  padding-top: 0;
}
@media (min-width: 38.125em) and (max-width: 49.365em) {
  .hero-image-container .paragraph {
    padding: 0 .5rem;
  }
}
@media (min-width: 49.375em) {
  .hero-image-container .paragraph {
    margin-bottom: 48px;
    padding: 0 1.8rem;
  }
}
.hero-image-container .paragraph--type--hero-image {
  padding-top: 20px;
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--hero-image {
    padding-top: 0;
  }
}
.hero-image-container .paragraph--type--hero-image,
.hero-image-container .paragraph--type--hero-story-page-,
.hero-image-container .paragraph--type--campaign-hero,
.hero-image-container .paragraph--type--social-campaign-hero {
  color: #fff;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.hero-image-container .paragraph--type--hero-image.dark .scrolldown,
.hero-image-container .paragraph--type--hero-story-page-.dark .scrolldown,
.hero-image-container .paragraph--type--campaign-hero.dark .scrolldown,
.hero-image-container .paragraph--type--social-campaign-hero.dark .scrolldown {
  color: #000;
}
.hero-image-container .paragraph--type--hero-image.dark .scrolldown a, .hero-image-container .paragraph--type--hero-image.dark .scrolldown .cta a, .hero-image-container .paragraph--type--hero-image.dark .scrolldown .scrolldown,
.hero-image-container .paragraph--type--hero-story-page-.dark .scrolldown a,
.hero-image-container .paragraph--type--hero-story-page-.dark .scrolldown .cta a,
.hero-image-container .paragraph--type--hero-story-page-.dark .scrolldown .scrolldown,
.hero-image-container .paragraph--type--campaign-hero.dark .scrolldown a,
.hero-image-container .paragraph--type--campaign-hero.dark .scrolldown .cta a,
.hero-image-container .paragraph--type--campaign-hero.dark .scrolldown .scrolldown,
.hero-image-container .paragraph--type--social-campaign-hero.dark .scrolldown a,
.hero-image-container .paragraph--type--social-campaign-hero.dark .scrolldown .cta a,
.hero-image-container .paragraph--type--social-campaign-hero.dark .scrolldown .scrolldown {
  color: #000;
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--hero-image.dark.dark,
  .hero-image-container .paragraph--type--hero-story-page-.dark.dark,
  .hero-image-container .paragraph--type--campaign-hero.dark.dark,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.dark {
    color: #4a4a4a;
  }
  .hero-image-container .paragraph--type--hero-image.dark.dark a, .hero-image-container .paragraph--type--hero-image.dark.dark .cta a, .hero-image-container .paragraph--type--hero-image.dark.dark .scrolldown,
  .hero-image-container .paragraph--type--hero-story-page-.dark.dark a,
  .hero-image-container .paragraph--type--hero-story-page-.dark.dark .cta a,
  .hero-image-container .paragraph--type--hero-story-page-.dark.dark .scrolldown,
  .hero-image-container .paragraph--type--campaign-hero.dark.dark a,
  .hero-image-container .paragraph--type--campaign-hero.dark.dark .cta a,
  .hero-image-container .paragraph--type--campaign-hero.dark.dark .scrolldown,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.dark a,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.dark .cta a,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.dark .scrolldown {
    color: #4a4a4a;
  }
  .hero-image-container .paragraph--type--hero-image.dark.dark h1,
  .hero-image-container .paragraph--type--hero-story-page-.dark.dark h1,
  .hero-image-container .paragraph--type--campaign-hero.dark.dark h1,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.dark h1 {
    color: #9669a9;
  }
  .hero-image-container .paragraph--type--hero-image.dark.light,
  .hero-image-container .paragraph--type--hero-story-page-.dark.light,
  .hero-image-container .paragraph--type--campaign-hero.dark.light,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.light {
    color: #fff;
  }
  .hero-image-container .paragraph--type--hero-image.dark.light a, .hero-image-container .paragraph--type--hero-image.dark.light .cta a, .hero-image-container .paragraph--type--hero-image.dark.light .scrolldown,
  .hero-image-container .paragraph--type--hero-story-page-.dark.light a,
  .hero-image-container .paragraph--type--hero-story-page-.dark.light .cta a,
  .hero-image-container .paragraph--type--hero-story-page-.dark.light .scrolldown,
  .hero-image-container .paragraph--type--campaign-hero.dark.light a,
  .hero-image-container .paragraph--type--campaign-hero.dark.light .cta a,
  .hero-image-container .paragraph--type--campaign-hero.dark.light .scrolldown,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.light a,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.light .cta a,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.light .scrolldown {
    color: #fff;
  }
  .hero-image-container .paragraph--type--hero-image.dark.light h1,
  .hero-image-container .paragraph--type--hero-story-page-.dark.light h1,
  .hero-image-container .paragraph--type--campaign-hero.dark.light h1,
  .hero-image-container .paragraph--type--social-campaign-hero.dark.light h1 {
    color: #fff;
  }
}
.hero-image-container .paragraph--type--hero-image .inner-container,
.hero-image-container .paragraph--type--hero-story-page- .inner-container,
.hero-image-container .paragraph--type--campaign-hero .inner-container,
.hero-image-container .paragraph--type--social-campaign-hero .inner-container {
  background: #9669a9;
  position: relative;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--hero-image .inner-container,
  .hero-image-container .paragraph--type--hero-story-page- .inner-container,
  .hero-image-container .paragraph--type--campaign-hero .inner-container,
  .hero-image-container .paragraph--type--social-campaign-hero .inner-container {
    text-align: center;
    padding-top: 2rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero-image-container .paragraph--type--hero-image .media-image picture,
.hero-image-container .paragraph--type--hero-story-page- .media-image picture,
.hero-image-container .paragraph--type--campaign-hero .media-image picture,
.hero-image-container .paragraph--type--social-campaign-hero .media-image picture {
  width: 100%;
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--hero-image .media-image,
  .hero-image-container .paragraph--type--hero-story-page- .media-image,
  .hero-image-container .paragraph--type--campaign-hero .media-image,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image {
    background: rgba(0, 0, 0, 0.5);
    order: 10;
    max-height: 358px;
    position: relative;
  }
}
.hero-image-container .paragraph--type--hero-image img,
.hero-image-container .paragraph--type--hero-story-page- img,
.hero-image-container .paragraph--type--campaign-hero img,
.hero-image-container .paragraph--type--social-campaign-hero img {
  width: 100%;
  height: auto;
}
.hero-image-container .paragraph--type--hero-image p,
.hero-image-container .paragraph--type--hero-story-page- p,
.hero-image-container .paragraph--type--campaign-hero p,
.hero-image-container .paragraph--type--social-campaign-hero p {
  text-transform: uppercase;
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--hero-image p,
  .hero-image-container .paragraph--type--hero-story-page- p,
  .hero-image-container .paragraph--type--campaign-hero p,
  .hero-image-container .paragraph--type--social-campaign-hero p {
    font-size: 12px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--hero-image p,
  .hero-image-container .paragraph--type--hero-story-page- p,
  .hero-image-container .paragraph--type--campaign-hero p,
  .hero-image-container .paragraph--type--social-campaign-hero p {
    position: absolute;
    top: 11%;
    left: 4%;
  }
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--hero-image h1,
  .hero-image-container .paragraph--type--hero-story-page- h1,
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 30px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: .7em;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--hero-image h1,
  .hero-image-container .paragraph--type--hero-story-page- h1,
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    position: absolute;
    font-size: 3.90625vw;
    top: 21%;
    left: 4%;
    width: 66%;
  }
  .toolbar-vertical.toolbar-tray-open .hero-image-container .paragraph--type--hero-image h1, .toolbar-vertical.toolbar-tray-open
  .hero-image-container .paragraph--type--hero-story-page- h1, .toolbar-vertical.toolbar-tray-open
  .hero-image-container .paragraph--type--campaign-hero h1, .toolbar-vertical.toolbar-tray-open
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 3.28947vw;
  }
}
@media (min-width: 81em) {
  .hero-image-container .paragraph--type--hero-image h1,
  .hero-image-container .paragraph--type--hero-story-page- h1,
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 50px !important;
  }
}
.hero-image-container .paragraph--type--hero-image .cta a,
.hero-image-container .paragraph--type--hero-story-page- .cta a,
.hero-image-container .paragraph--type--campaign-hero .cta a,
.hero-image-container .paragraph--type--social-campaign-hero .cta a {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 30px 17px;
  border: 2px solid #fff;
  letter-spacing: 0.0625em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--hero-image .cta a,
  .hero-image-container .paragraph--type--hero-story-page- .cta a,
  .hero-image-container .paragraph--type--campaign-hero .cta a,
  .hero-image-container .paragraph--type--social-campaign-hero .cta a {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--hero-image .cta a,
  .hero-image-container .paragraph--type--hero-story-page- .cta a,
  .hero-image-container .paragraph--type--campaign-hero .cta a,
  .hero-image-container .paragraph--type--social-campaign-hero .cta a {
    border: 2px solid #e9a065;
    font-size: 18px;
    position: absolute;
    top: 60%;
    left: 4%;
  }
}
.hero-image-container .paragraph--type--hero-image .cta a:hover, .hero-image-container .paragraph--type--hero-image .cta a:focus,
.hero-image-container .paragraph--type--hero-story-page- .cta a:hover,
.hero-image-container .paragraph--type--hero-story-page- .cta a:focus,
.hero-image-container .paragraph--type--campaign-hero .cta a:hover,
.hero-image-container .paragraph--type--campaign-hero .cta a:focus,
.hero-image-container .paragraph--type--social-campaign-hero .cta a:hover,
.hero-image-container .paragraph--type--social-campaign-hero .cta a:focus {
  border-color: #9669a9;
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero,
  .hero-image-container .paragraph--type--social-campaign-hero {
    text-align: center;
  }
  .hero-image-container .paragraph--type--campaign-hero::before, .hero-image-container .paragraph--type--campaign-hero::after,
  .hero-image-container .paragraph--type--social-campaign-hero::before,
  .hero-image-container .paragraph--type--social-campaign-hero::after {
    content: '';
    display: table;
    clear: both;
    width: 1px;
    margin: -1px;
  }
  .hero-image-container .paragraph--type--campaign-hero::before,
  .hero-image-container .paragraph--type--social-campaign-hero::before {
    float: left;
    padding-bottom: 50%;
  }
}
.hero-image-container .paragraph--type--campaign-hero p,
.hero-image-container .paragraph--type--social-campaign-hero p {
  text-transform: none;
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--campaign-hero p,
  .hero-image-container .paragraph--type--social-campaign-hero p {
    font-size: 12px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero p,
  .hero-image-container .paragraph--type--social-campaign-hero p {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 35px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: .7em;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    position: relative;
    top: auto;
    left: auto;
    font-size: 3.35938vw;
    width: 66%;
    margin: auto;
    padding: 1em 0;
  }
  .toolbar-vertical.toolbar-tray-open .hero-image-container .paragraph--type--campaign-hero h1, .toolbar-vertical.toolbar-tray-open
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 2.82895vw;
  }
}
@media (min-width: 81em) {
  .hero-image-container .paragraph--type--campaign-hero h1,
  .hero-image-container .paragraph--type--social-campaign-hero h1 {
    font-size: 44px !important;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero .hero-text,
  .hero-image-container .paragraph--type--social-campaign-hero .hero-text {
    width: 80%;
    margin: auto;
  }
}
@media (min-width: 80em) {
  .hero-image-container .paragraph--type--campaign-hero .hero-text p,
  .hero-image-container .paragraph--type--social-campaign-hero .hero-text p {
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.0125em;
  }
}
.hero-image-container .paragraph--type--campaign-hero .cta,
.hero-image-container .paragraph--type--social-campaign-hero .cta {
  padding: 0 0 20px;
}
@media (min-width: 68.75em) {
  .hero-image-container .paragraph--type--campaign-hero .cta,
  .hero-image-container .paragraph--type--social-campaign-hero .cta {
    padding: 20px 0 20px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero .cta a,
  .hero-image-container .paragraph--type--social-campaign-hero .cta a {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--campaign-hero .media-image,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image {
    background: rgba(0, 0, 0, 0.5);
    order: 10;
    height: 258px;
    height: 50vw;
    max-height: 258px;
    position: relative;
  }
  .hero-image-container .paragraph--type--campaign-hero .media-image > img, .hero-image-container .paragraph--type--campaign-hero .media-image > picture img,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image > img,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image > picture img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--campaign-hero .media-image,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .hero-image-container .paragraph--type--campaign-hero .media-image img,
  .hero-image-container .paragraph--type--social-campaign-hero .media-image img {
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--social-campaign-hero .inner-container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text {
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 24px;
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text {
    padding-bottom: 0;
  }
}
@media (min-width: 38.125em) and (max-width: 59.365em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    margin-top: 20px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (min-width: 59.375em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text {
    width: 29.48718%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
@media (max-width: 38.115em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text p {
    font-size: 16px;
  }
}
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cta {
  padding: 0 0 20px;
}
@media (min-width: 68.75em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cta {
    padding: 20px 0 20px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cta a {
    position: relative;
    top: auto;
    left: auto;
  }
}
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cite,
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text time {
  position: relative;
  font-weight: 300;
  font-size: 12px;
  margin: 0;
}
@media (min-width: 38.125em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cite,
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text time {
    font-size: 16px;
  }
}
@media (min-width: 59.375em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cite {
    color: #9669a9;
  }
  .light .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .cite {
    color: #fff;
  }
}
@media (min-width: 59.375em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text.light .cite {
    color: #fff;
  }
}
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .social-item {
  margin: 1em;
}
@media (min-width: 38.125em) and (max-width: 59.365em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .social-item {
    width: 350px;
    clear: both;
  }
}
@media (min-width: 59.375em) {
  .hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .social-item {
    width: 37.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    float: right;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.hero-image-container .paragraph--type--social-campaign-hero .social-hero-text .social-item .media-facebook-post iframe {
  background: #fff;
  border-radius: 3px;
}
.hero-image-container .scrolldown {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 38.125em) {
  .hero-image-container .scrolldown {
    font-size: 18px;
  }
}
@media (min-width: 68.75em) {
  .hero-image-container .scrolldown {
    left: calc(4% - 30px);
  }
}
.hero-image-container .scrolldown .scrolldown-icon {
  width: 20px;
  overflow: hidden;
  position: relative;
}
.hero-image-container .scrolldown .scrolldown-icon svg {
  position: absolute;
  top: -40px;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: scrolly ease 1.5s;
  -moz-animation: scrolly ease 1.5s;
  -o-animation-delay: scrolly ease 1.5s;
  animation-delay: scrolly ease 1.5s;
  -webkit-animation-iteration-count: 3;
  -moz-animation-iteration-count: 3;
  -o-animation-delay-iteration-count: 3;
  animation-delay-iteration-count: 3;
}

@keyframes scrolly {
  0% {
    top: -40px;
  }
  100% {
    top: -20px;
  }
}
.inspiration-message,
.paragraph.paragraph--type--full-screen-message {
  background: #9669a9;
  color: #fff;
  text-align: center;
  padding: 18vw 10vw;
  min-height: 100vh;
  clear: both;
}
@media (min-width: 49.375em) {
  .inspiration-message,
  .paragraph.paragraph--type--full-screen-message {
    padding: 10vh 10vw;
  }
}
.inspiration-message.u-bgBlue,
.paragraph.paragraph--type--full-screen-message.u-bgBlue {
  background: #4d74b9;
}
.inspiration-message.u-bgBluewarm,
.paragraph.paragraph--type--full-screen-message.u-bgBluewarm {
  background: #221f72;
}
.inspiration-message.u-bgGreen,
.paragraph.paragraph--type--full-screen-message.u-bgGreen {
  background: #586f2a;
}
.inspiration-message.u-bgRed,
.paragraph.paragraph--type--full-screen-message.u-bgRed {
  background: #c71e26;
}
.inspiration-message.u-bgPurplewarm,
.paragraph.paragraph--type--full-screen-message.u-bgPurplewarm {
  background: #94317a;
}
.inspiration-message .textfill,
.paragraph.paragraph--type--full-screen-message .textfill {
  max-width: 100%;
}
@media (min-width: 49.375em) {
  .inspiration-message .textfill,
  .paragraph.paragraph--type--full-screen-message .textfill {
    max-height: 65vh;
  }
}
.inspiration-message .container, .inspiration-message .path-user #block-cofe-content, .path-user .inspiration-message #block-cofe-content, .inspiration-message #block-cofe-page-title, .inspiration-message .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .inspiration-message .views-title-wrapper, .inspiration-message #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .inspiration-message nav, .inspiration-message .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .inspiration-message #block-cofe-content,
.inspiration-message .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .inspiration-message #block-cofe-content, .inspiration-message .path-resources main, .path-resources .inspiration-message main, .inspiration-message .section-headers, .inspiration-message .date, .inspiration-message .paragraph--type--back-to-top,
.inspiration-message .paragraph--type--image,
.inspiration-message .paragraph--type--media,
.inspiration-message .paragraph--type--video,
.inspiration-message .paragraph--type--poll,
.inspiration-message .paragraph--type--documents,
.inspiration-message .paragraph--type--glossary-listing, .inspiration-message .paragraph--type--copy-to-clipboard, .inspiration-message #block-mainnavigation, .inspiration-message #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .inspiration-message h2, .inspiration-message .views-related-tags,
.paragraph.paragraph--type--full-screen-message .container,
.paragraph.paragraph--type--full-screen-message .path-user #block-cofe-content,
.path-user .paragraph.paragraph--type--full-screen-message #block-cofe-content,
.paragraph.paragraph--type--full-screen-message #block-cofe-page-title,
.paragraph.paragraph--type--full-screen-message .view-taxonomy-resources .views-title-wrapper,
.view-taxonomy-resources .paragraph.paragraph--type--full-screen-message .views-title-wrapper,
.paragraph.paragraph--type--full-screen-message #block-cofe-breadcrumbs nav,
#block-cofe-breadcrumbs .paragraph.paragraph--type--full-screen-message nav,
.paragraph.paragraph--type--full-screen-message .page-node-type-liturgy-page #block-cofe-content,
.page-node-type-liturgy-page .paragraph.paragraph--type--full-screen-message #block-cofe-content,
.paragraph.paragraph--type--full-screen-message .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .paragraph.paragraph--type--full-screen-message #block-cofe-content,
.paragraph.paragraph--type--full-screen-message .path-resources main,
.path-resources .paragraph.paragraph--type--full-screen-message main,
.paragraph.paragraph--type--full-screen-message .section-headers,
.paragraph.paragraph--type--full-screen-message .date,
.paragraph.paragraph--type--full-screen-message .paragraph--type--back-to-top,
.paragraph.paragraph--type--full-screen-message .paragraph--type--image,
.paragraph.paragraph--type--full-screen-message .paragraph--type--media,
.paragraph.paragraph--type--full-screen-message .paragraph--type--video,
.paragraph.paragraph--type--full-screen-message .paragraph--type--poll,
.paragraph.paragraph--type--full-screen-message .paragraph--type--documents,
.paragraph.paragraph--type--full-screen-message .paragraph--type--glossary-listing,
.paragraph.paragraph--type--full-screen-message .paragraph--type--copy-to-clipboard,
.paragraph.paragraph--type--full-screen-message #block-mainnavigation,
.paragraph.paragraph--type--full-screen-message #block-views-block-related-tags-block-1 h2,
#block-views-block-related-tags-block-1 .paragraph.paragraph--type--full-screen-message h2,
.paragraph.paragraph--type--full-screen-message .views-related-tags {
  height: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inspiration-message h3,
.paragraph.paragraph--type--full-screen-message h3 {
  font-family: "Open Sans", calibri, arial, sans-serif;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 49.375em) {
  .inspiration-message h3,
  .paragraph.paragraph--type--full-screen-message h3 {
    font-size: 1.125em;
  }
}
.inspiration-message h3:after,
.paragraph.paragraph--type--full-screen-message h3:after {
  content: "";
  display: block;
  position: relative;
  background: #fff;
  height: 2px;
  width: 20vw;
  left: 50%;
  bottom: -.5em;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 49.375em) {
  .inspiration-message h3:after,
  .paragraph.paragraph--type--full-screen-message h3:after {
    width: 7vw;
    bottom: -1.5em;
  }
}
@media (min-width: 49.375em) {
  .inspiration-message .textfill-wrapper,
  .paragraph.paragraph--type--full-screen-message .textfill-wrapper {
    font-size: 3vw;
  }
  .inspiration-message .textfill-wrapper p,
  .paragraph.paragraph--type--full-screen-message .textfill-wrapper p {
    font-size: inherit;
  }
}
.inspiration-message p,
.paragraph.paragraph--type--full-screen-message p {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 1.5625em;
  font-weight: 300;
  margin: auto;
}
@media (min-width: 30em) {
  .inspiration-message p,
  .paragraph.paragraph--type--full-screen-message p {
    font-size: 3vw;
  }
}
@media (min-width: 49.375em) {
  .inspiration-message p,
  .paragraph.paragraph--type--full-screen-message p {
    font-size: 3.125em;
    font-size: 3vw;
    margin: 2vh 10vw;
  }
}
.inspiration-message small,
.paragraph.paragraph--type--full-screen-message small {
  margin: 20px 0 0;
  font-size: 1em;
  text-transform: uppercase;
  position: relative;
}

.paragraph--type--full-screen-message {
  min-height: 0;
}

.inspiration-message {
  margin-bottom: 50px;
}
.inspiration-message h3 {
  margin-bottom: 20px;
}
.inspiration-message h3:after {
  display: none;
}

.latest-spotlights {
  padding-top: 60px;
  padding-bottom: 60px;
  clear: both;
}
@media (min-width: 49.375em) {
  .latest-spotlights {
    padding-top: 80px;
  }
}
.latest-spotlights h3 {
  font-size: 1.0625em;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 45em) {
  .latest-spotlights h3 {
    font-size: 1.4375em;
  }
}
.latest-spotlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.latest-spotlights ul:before, .latest-spotlights ul:after {
  content: "";
  display: table;
}
.latest-spotlights ul:after {
  clear: both;
}
@media (min-width: 49.375em) {
  .latest-spotlights ul {
    margin-top: 3.5rem;
    margin-bottom: 1rem;
  }
}
.latest-spotlights ul li {
  display: block;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 49.375em) {
  .latest-spotlights ul li {
    width: 29.48718%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    text-align: left;
  }
}
.latest-spotlights ul li + li {
  margin-top: 1.5rem;
}
@media (min-width: 49.375em) {
  .latest-spotlights ul li + li {
    margin-top: 0;
  }
}
.latest-spotlights ul li .image-container {
  height: auto;
  margin-bottom: 1.5rem;
  margin-top: 10px;
  overflow: hidden;
  width: 100%;
}
.latest-spotlights ul li img {
  height: auto;
  display: inline-block;
  backface-visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 49.375em) {
  .latest-spotlights ul li img {
    width: 100%;
    display: block;
  }
}
.latest-spotlights ul li p {
  color: #000;
  font-size: 1em;
  font-weight: 300;
  margin-bottom: .8rem;
}
@media (min-width: 49.375em) {
  .latest-spotlights ul li p {
    font-size: 1.125em;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 80em) {
  .latest-spotlights ul li p {
    font-size: 1.4375em;
    margin-bottom: 2rem;
  }
}
.latest-spotlights ul li a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.latest-spotlights ul li a:hover img, .latest-spotlights ul li a:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.latest-spotlights ul li a:hover p, .latest-spotlights ul li a:focus p {
  text-decoration: underline;
}
.latest-spotlights ul li time {
  color: #221f72;
  font-size: 1.125em;
  opacity: 0.65;
}
@media (min-width: 80em) {
  .latest-spotlights ul li time {
    font-size: 1.125em;
  }
}

.latest-spotlights--diary {
  background-color: #f4f8fc;
}

.cwdp {
  position: relative;
  padding: 0 10%;
  line-height: 1.6;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .cwdp {
    padding: 0 10%;
    width: auto;
  }
}
@media (min-width: 45em) and (max-width: 68.74em) {
  .cwdp {
    padding: 0 4% 0 5%;
    width: 82%;
    margin: 0 0 40px 18%;
  }
}
@media (min-width: 68.75em) {
  .cwdp {
    padding: 0 4%;
    width: 64%;
  }
}
.cwdp h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
.cwdp h3 {
  font-size: 1.17em;
  font-weight: bold;
  margin: 1em 0;
}
.cwdp h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
.cwdp p {
  font-size: 0.9em;
  font-weight: normal;
  line-height: 1.2em;
  margin: 1em 0;
}
.cwdp .vlnormal {
  vertical-align: baseline;
}
.cwdp .vlreading {
  text-indent: 1em;
  margin-top: 0;
  margin-bottom: 0;
}
.cwdp .vlrefrain {
  font-style: italic;
}
.cwdp .vlrefrainsymbol {
  font-style: italic;
  color: #CC3300;
  font-weight: bold;
}
.cwdp .vldiamondsymbol {
  font-family: Courier;
  color: #CC3300;
}
.cwdp .vlversedivider {
  font-weight: bold;
  color: #CC3300;
}
.cwdp .vlversenumber {
  vertical-align: text-top;
  font-size: 80%;
  font-style: normal;
  font-weight: normal;
  display: none;
}
.cwdp .vlparasymbol {
  width: 0cm;
  color: #CC3300;
  font-style: normal;
  font-weight: bold;
  position: absolute;
  top: static-position;
  left: 2%;
}
.cwdp .vlall {
  font-weight: bold;
}
.cwdp .vlrubric {
  font-style: italic;
  color: #CC3300;
  font-weight: bold;
}
.cwdp .vlconditional {
  font-style: italic;
}
.cwdp .vlcrossreference {
  font-style: italic;
  text-align: right;
  margin-right: 12%;
}
.cwdp .vlcrossreference2 {
  font-style: italic;
  text-align: right;
  margin-right: 12%;
}
.cwdp .vlnotesymbol {
  color: #CC3300;
  font-weight: bold;
}
.cwdp .vlbiblereference {
  font-style: italic;
}
.cwdp .vlrefrainmargin {
  color: #CC3300;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  left: 4%;
}
.cwdp .vlindent {
  margin-left: 0.5cm;
}
.cwdp .vlindent2 {
  margin-left: 1.0cm;
}
.cwdp .vlindent3 {
  margin-left: 1.5cm;
}
.cwdp .vlpsalmrefrain {
  font-style: italic;
  margin-left: 2.0cm;
}
.cwdp .vlpsalmprayer {
  font-style: italic;
  margin-left: 2.0cm;
}
.cwdp .vloutdent {
  width: 0cm;
  color: #CC3300;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: static-position;
  left: 2%;
}
.cwdp .vlallmargin {
  width: 0cm;
  color: #CC3300;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: static-position;
  left: 2%;
}
.cwdp .vlstanzanumber {
  width: 0cm;
  color: black;
  font-style: normal;
  position: absolute;
  top: static-position;
  left: 2%;
}
.cwdp .vlcopyrightheading {
  font-size: 70%;
  font-weight: bold;
}
.cwdp .vlcopyright {
  font-size: 70%;
  margin-top: 0;
  margin-bottom: 0;
}
.cwdp .vllatin {
  font-style: italic;
}
.cwdp .vlnotenumber {
  width: 0cm;
  color: #CC3300;
  font-style: normal;
  position: absolute;
  top: static-position;
  left: 2%;
  font-weight: bold;
}
.cwdp .vlserviceheading {
  font-style: italic;
  color: #CC3300;
  font-weight: normal;
}
.cwdp .vlsectionhead {
  text-align: right;
  margin-right: 12%;
}
.cwdp .vlitemheading {
  font-style: italic;
  color: #CC3300;
  text-align: right;
  font-weight: normal;
  margin-right: 12%;
}
.cwdp .vlcanticlerefrain {
  font-style: italic;
  font-weight: bold;
  color: #CC3300;
  padding-bottom: 0px;
  margin-bottom: -1em;
}
.cwdp .vlOrdinalhead1 {
  font-style: normal;
  color: #000000;
}
.cwdp .vlOrdinalhead2 {
  font-style: italic;
  color: #CC3300;
  font-weight: bold;
}
.cwdp .vlOrdinalhead3 {
  font-style: normal;
  font-weight: bold;
  color: #000000;
  text-align: right;
  margin-top: auto;
  margin-right: 12%;
  margin-bottom: auto;
  margin-left: auto;
}
.cwdp .vlparasymbolblack {
  width: 0cm;
  color: #000000;
  font-style: normal;
  font-weight: normal;
  position: absolute;
  top: static-position;
  left: 2%;
}
.cwdp .vlred {
  font-style: normal;
  font-weight: bold;
  color: #CC3300;
}
.cwdp ul {
  font-size: 0.9em;
  line-height: 1.2em;
}
.cwdp .vlallmargin {
  width: 0cm;
  color: #CC3300;
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: static-position;
  left: -3 em;
}
.cwdp .vlDPhead1 {
  font-style: normal;
  color: #000000;
}
.cwdp .vlDPhead2 {
  font-style: italic;
  color: #CC3300;
  font-weight: normal;
}
.cwdp .vlDPhead2right {
  font-style: italic;
  color: #CC3300;
  text-align: right;
  font-weight: normal;
  margin-right: 12%;
}
.cwdp .vlDPhead2rightbold {
  font-style: normal;
  color: #CC3300;
  text-align: right;
  font-weight: bold;
  margin-right: 12%;
}
.cwdp .vlDPhead3 {
  font-style: normal;
  font-weight: bold;
  color: #000000;
  text-align: right;
  margin-top: auto;
  margin-right: 12%;
  margin-bottom: auto;
  margin-left: auto;
}
.cwdp .vlDPhead4 {
  font-style: italic;
  font-weight: bold;
  color: #CC3300;
  text-align: right;
  margin-top: auto;
  margin-right: 12%;
  margin-bottom: auto;
  margin-left: auto;
}
.cwdp .vlDPhead4left {
  font-style: italic;
  font-weight: bold;
  color: #CC3300;
  margin-top: auto;
  margin-right: 12%;
  margin-bottom: auto;
  margin-left: auto;
}
.cwdp .redlight {
  font-style: italic;
  color: #CC3300;
  font-weight: normal;
}
.cwdp .cwdp-copyright {
  font-size: .7em;
}
@media (min-width: 45em) and (max-width: 68.74em) {
  .cwdp .vlparasymbol,
  .cwdp .vlallmargin,
  .cwdp .vlstanzanumber,
  .cwdp .vlnotenumber,
  .cwdp .vloutdent,
  .cwdp .vlparasymbolblack {
    left: .5%;
  }
}

.paragraph--type--text, .form-action__links ul li {
  /*  @font-face {font-family:"RCLSorts"; font-style:normal ; font-weight:normal; src:url(fonts/RCLSorts20101028.ttf);}
    @font-face {font-family:"RCLSorts"; font-style:normal ; font-weight:bold; src:url(fonts/RCLSorts20101028.ttf);}
    @font-face {font-family:"RCLSorts"; font-style:italic ; font-weight:normal; src:url(fonts/RCLSorts20101028.ttf);}
    @font-face {font-family:"RCLSorts"; font-style:italic ; font-weight:bold; src:url(fonts/RCLSorts20101028.ttf);}
  
    .sorts {
    font-family:"RCLSorts";
    }
  
    body {
    font-family:serif;
    margin:0 3%;
    text-align:left;
    line-height:1.20em;
    }
  */
  /*
    h1 {
    font-family: serif;
    font-size:170%;
    text-align:center;
    }
  
    h2 {
    font-family: serif;
    font-size:130%;
    text-align:center;
    margin-top:.5em;
    }*/
  /*  sup {
    font-size:80%;
    vertical-align:.4em;
    }
  
    sub {
    font-size:80%;
    vertical-align:-.4em;
    }*/
}
.paragraph--type--text h1.title, .form-action__links ul li h1.title {
  text-align: left;
  padding-top: 2em;
  padding-bottom: 1em;
  font-weight: bold;
  font-size: 210%;
  font-family: sans-serif;
  line-height: 1.2em;
}
.paragraph--type--text p.title1, .form-action__links ul li p.title1 {
  text-align: left;
  font-size: 170%;
  margin-bottom: 0.1em;
  font-family: sans-serif;
  font-weight: normal;
  color: #ff0000;
  line-height: 1.20em;
}
.paragraph--type--text p.logo, .form-action__links ul li p.logo {
  margin: 0;
  line-height: 1.2;
  page-break-before: avoid;
  text-align: left;
  margin-top: 3em;
  font-size: 170%;
  margin-bottom: 0.1em;
  font-family: sans-serif;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h2.hymn, .form-action__links ul li h2.hymn {
  font-family: sans-serif;
  font-size: 170%;
  padding-top: 2em;
  margin-bottom: 0em;
  margin-left: 1.5em;
  text-indent: -1.5em;
  font-weight: bold;
  text-align: left;
  line-height: 1.20em;
}
.paragraph--type--text p.copyright, .form-action__links ul li p.copyright {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-style: normal;
  font-size: 90%;
  text-align: left;
  margin-top: 0em;
  margin-bottom: 0em;
}
.paragraph--type--text p.contentsah, .form-action__links ul li p.contentsah {
  margin: 0;
  line-height: 1.2;
  margin-right: 3em;
  margin-left: 4em;
  text-indent: -2.2em;
  margin-bottom: 0.3em;
  font-size: 90%;
  font-family: sans-serif;
  text-align: left;
}
.paragraph--type--text h2.CTsub, .form-action__links ul li h2.CTsub {
  font-family: serif;
  font-size: 190%;
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  margin-left: 0em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h2.Ahd, .form-action__links ul li h2.Ahd {
  font-family: serif;
  font-size: 190%;
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  margin-left: 0em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h2.Ahdc, .form-action__links ul li h2.Ahdc {
  font-family: sans-serif;
  font-size: 120%;
  text-align: right;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  margin-right: 3em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text p.ftxt, .form-action__links ul li p.ftxt {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-weight: normal;
}
.paragraph--type--text h3.Bhd, .form-action__links ul li h3.Bhd {
  font-family: serif;
  font-size: 110%;
  text-align: left;
  margin-left: 0em;
  margin-top: 0.8em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h4.Chd, .form-action__links ul li h4.Chd {
  font-family: serif;
  font-size: 110%;
  text-align: left;
  margin-left: 0em;
  margin-bottom: 0.8em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h5.Chdc, .form-action__links ul li h5.Chdc {
  font-family: sans-serif;
  font-size: 110%;
  text-align: right;
  margin-right: 3em;
  margin-bottom: 0.8em;
  font-weight: bold;
  line-height: 1.20em;
  color: #ff0000;
}
.paragraph--type--text p.bldia, .form-action__links ul li p.bldia {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 100%;
  margin-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.ve, .form-action__links ul li p.ve {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 3em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.vefo, .form-action__links ul li p.vefo {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.veall, .form-action__links ul li p.veall {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-bottom: 0;
  text-align: left;
  text-indent: -2em;
  margin-left: 2em;
}
.paragraph--type--text p.ve1, .form-action__links ul li p.ve1 {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.veb, .form-action__links ul li p.veb {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 3em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
  font-weight: bold;
}
.paragraph--type--text p.veallb, .form-action__links ul li p.veallb {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-bottom: 0;
  text-align: left;
  text-indent: -2em;
  margin-left: 2em;
  font-weight: bold;
}
.paragraph--type--text p.ve1b, .form-action__links ul li p.ve1b {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
  font-weight: bold;
}
.paragraph--type--text p.vein, .form-action__links ul li p.vein {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 2em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.veallin, .form-action__links ul li p.veallin {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 4em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text i.ss, .form-action__links ul li i.ss {
  font-family: sans-serif;
}
.paragraph--type--text p.txt, .form-action__links ul li p.txt {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: normal;
}
.paragraph--type--text h5.Dhd, .form-action__links ul li h5.Dhd {
  font-family: sans-serif;
  font-size: 90%;
  text-align: left;
  margin-left: 0em;
  text-indent: 0em;
  margin-top: 0em;
  font-weight: bold;
  line-height: 1.20em;
  color: #ff0000;
}
.paragraph--type--text h5.Dhdf, .form-action__links ul li h5.Dhdf {
  font-family: sans-serif;
  font-size: 90%;
  text-align: left;
  margin-left: 0em;
  margin-top: 0em;
  font-weight: bold;
  line-height: 1.20em;
  color: #ff0000;
}
.paragraph--type--text p.pilcrow, .form-action__links ul li p.pilcrow {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-bottom: 0;
  margin-left: 1.5em;
  text-indent: -1.5em;
  text-align: left;
}
.paragraph--type--text p.piltxt, .form-action__links ul li p.piltxt {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 1.7em;
  text-indent: 0em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text h5.Bhdr, .form-action__links ul li h5.Bhdr {
  margin: 0;
  font-family: sans-serif;
  font-size: 120%;
  text-align: right;
  margin-right: 3em;
  margin-top: 0em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text p.source, .form-action__links ul li p.source {
  margin: 0;
  line-height: 1.2;
  text-align: right;
  font-family: sans-serif;
  font-size: 90%;
  margin-right: 3.5em;
  font-weight: normal;
}
.paragraph--type--text p.txtcp, .form-action__links ul li p.txtcp {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: normal;
}
.paragraph--type--text p.txtc, .form-action__links ul li p.txtc {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: bold;
  color: #ff0000;
}
.paragraph--type--text span.colour, .form-action__links ul li span.colour {
  color: #ff0000;
  padding: 0em;
  font-weight: bold;
  font-family: sans-serif;
}
.paragraph--type--text span.black, .form-action__links ul li span.black {
  color: black;
  padding: 0em;
  font-weight: bold;
  font-family: sans-serif;
}
.paragraph--type--text td.colour, .form-action__links ul li td.colour {
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: normal;
  color: #ff0000;
  font-weight: bold;
}
.paragraph--type--text td, .form-action__links ul li td {
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: normal;
}
.paragraph--type--text h5.Ehd, .form-action__links ul li h5.Ehd {
  font-family: sans-serif;
  font-size: 90%;
  margin-bottom: 0;
  text-align: left;
  color: #ff0000;
  font-weight: bold;
}
.paragraph--type--text p.venl, .form-action__links ul li p.venl {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-bottom: 0;
  text-align: left;
  margin-left: 2em;
  text-indent: -2em;
}
.paragraph--type--text p.venl1, .form-action__links ul li p.venl1 {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 3em;
  text-indent: -1.2em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.venl1ind, .form-action__links ul li p.venl1ind {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 4em;
  text-indent: -2.2em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.refr, .form-action__links ul li p.refr {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: bold;
  margin-left: 4.5em;
  text-indent: -4.5em;
}
.paragraph--type--text p.refrc, .form-action__links ul li p.refrc {
  text-align: left;
  font-family: sans-serif;
  font-size: 90%;
  font-weight: normal;
  margin-left: 4.5em;
  text-indent: 0em;
}
.paragraph--type--text p.verse, .form-action__links ul li p.verse {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 90%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--text p.pbreak, .form-action__links ul li p.pbreak {
  margin: 0;
  line-height: 1.2;
  page-break-before: always;
}
.paragraph--type--text p.linespace, .form-action__links ul li p.linespace {
  margin: 0;
  line-height: 1.2;
  line-height: 0;
  text-indent: 0;
  margin-top: 1em;
}
.paragraph--type--text p.halfspace, .form-action__links ul li p.halfspace {
  margin: 0;
  line-height: 1.2;
  text-indent: 0;
  margin-top: 0.5em;
}
.paragraph--type--text h2.prect a, .form-action__links ul li h2.prect a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.ct a, .form-action__links ul li h2.ct a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.pn a, .form-action__links ul li h2.pn a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.hymn a, .form-action__links ul li h2.hymn a {
  text-decoration: none;
  color: red;
}
.paragraph--type--text h5.Dhd a, .form-action__links ul li h5.Dhd a {
  text-decoration: none;
  color: red;
}
.paragraph--type--text p.bookh a, .form-action__links ul li p.bookh a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.ct1 a, .form-action__links ul li h2.ct1 a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text span.small, .form-action__links ul li span.small {
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text span.dim, .form-action__links ul li span.dim {
  color: #A8A8A8;
  font-weight: bold;
  font-family: serif;
}
.paragraph--type--text span.bold, .form-action__links ul li span.bold {
  font-weight: bold;
  font-style: normal;
}
.paragraph--type--text span.under, .form-action__links ul li span.under {
  text-decoration: underline;
}
.paragraph--type--text span.strike, .form-action__links ul li span.strike {
  text-decoration: line-through;
}
.paragraph--type--text h2.cn, .form-action__links ul li h2.cn {
  font-family: serif;
  font-size: 150%;
  margin-top: 1.5em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text h2.carsub, .form-action__links ul li h2.carsub {
  font-family: sans-serif;
  font-size: 170%;
  padding-top: 3em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text p.imagelogo, .form-action__links ul li p.imagelogo {
  margin: 0;
  line-height: 1.2;
  padding-top: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.paragraph--type--text p.imageglogo, .form-action__links ul li p.imageglogo {
  margin: 0;
  line-height: 1.2;
  padding-top: 3em;
  text-align: center;
  margin-bottom: 1em;
}
.paragraph--type--text p.start, .form-action__links ul li p.start {
  margin: 0;
  line-height: 1.2;
  padding-top: 3em;
}
.paragraph--type--text h2.group, .form-action__links ul li h2.group {
  font-family: sans-serif;
  font-size: 200%;
  margin-top: 0em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text h2.centerhd, .form-action__links ul li h2.centerhd {
  font-family: sans-serif;
  font-size: 150%;
  margin-top: 0em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text h2.centersub, .form-action__links ul li h2.centersub {
  font-family: sans-serif;
  font-size: 150%;
  margin-top: 0em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text a.www, .form-action__links ul li a.www {
  text-decoration: underline;
  color: blue;
}
.paragraph--type--text hr.carrule, .form-action__links ul li hr.carrule {
  margin-top: 1em;
  margin-bottom: 2em;
  height: 5px;
  color: #888888;
  background-color: #888888;
}
.paragraph--type--text hr.feature, .form-action__links ul li hr.feature {
  margin-top: 1em;
  margin-bottom: 2em;
  height: 5px;
  color: #888888;
  background-color: #888888;
}
.paragraph--type--text hr.spectop, .form-action__links ul li hr.spectop {
  margin-bottom: 0.3em;
  height: 3px;
  color: #888888;
  background-color: #888888;
}
.paragraph--type--text hr.specbottom, .form-action__links ul li hr.specbottom {
  margin-top: 0.3em;
  height: 3px;
  color: #888888;
  background-color: #888888;
}
.paragraph--type--text p.year, .form-action__links ul li p.year {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 120%;
  margin-top: 0em;
  margin-bottom: 3em;
  font-weight: normal;
  margin-left: 0em;
  text-align: center;
}
.paragraph--type--text p.acn, .form-action__links ul li p.acn {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 170%;
  text-align: center;
  padding-top: 1.5em;
  margin-right: 0em;
  margin-bottom: 2.5em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text div.spec, .form-action__links ul li div.spec {
  margin-top: 1em;
  margin-bottom: 1em;
}
.paragraph--type--text p.fn, .form-action__links ul li p.fn {
  margin: 0;
  line-height: 1.2;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.paragraph--type--text p.cn1, .form-action__links ul li p.cn1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 170%;
  text-align: center;
  margin-top: 1.5em;
  margin-right: 0em;
  margin-bottom: 2.5em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text h2.ct, .form-action__links ul li h2.ct {
  font-family: serif;
  font-size: 170%;
  margin-top: 2em;
  margin-bottom: 3em;
  font-weight: normal;
  margin-left: 0em;
  text-align: center;
  line-height: 1.2em;
}
.paragraph--type--text h2.pt, .form-action__links ul li h2.pt {
  font-family: serif;
  font-size: 170%;
  padding-top: 0em;
  margin-bottom: 0em;
  font-weight: normal;
  margin-left: 0em;
  text-align: center;
  line-height: 1em;
}
.paragraph--type--text h2.pn, .form-action__links ul li h2.pn {
  font-family: serif;
  font-size: 120%;
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-weight: normal;
  margin-left: 0em;
  text-align: center;
  line-height: 1em;
}
.paragraph--type--text h2.ct1, .form-action__links ul li h2.ct1 {
  font-family: serif;
  font-size: 180%;
  margin-top: 1.5em;
  margin-bottom: 3em;
  font-weight: normal;
  margin-left: 0em;
  text-align: center;
  line-height: 1em;
}
.paragraph--type--text p.ct2, .form-action__links ul li p.ct2 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 130%;
  text-align: center;
  margin-top: 1.5em;
  margin-right: 0em;
  margin-bottom: 0.5em;
  margin-left: 0em;
}
.paragraph--type--text h2.cst, .form-action__links ul li h2.cst {
  font-family: serif;
  font-size: 160%;
  text-align: right;
  margin-right: 0em;
  margin-bottom: 0em;
  font-weight: bold;
  margin-left: 0em;
}
.paragraph--type--text h2.prect, .form-action__links ul li h2.prect {
  font-family: sans-serif;
  font-size: 170%;
  text-align: center;
  padding-top: 2em;
  margin-right: 0em;
  margin-bottom: 1em;
  font-weight: bold;
  margin-left: 0em;
}
.paragraph--type--text h2.car a, .form-action__links ul li h2.car a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.group a, .form-action__links ul li h2.group a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.prect1 a, .form-action__links ul li h2.prect1 a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text h2.prect1, .form-action__links ul li h2.prect1 {
  font-family: serif;
  font-size: 140%;
  text-align: center;
  margin-top: 1.5em;
  margin-right: 0em;
  margin-bottom: 1em;
  font-weight: normal;
  margin-left: 0em;
  line-height: 1em;
}
.paragraph--type--text p.preh1, .form-action__links ul li p.preh1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 130%;
  text-align: center;
  margin-top: 1.5em;
  margin-right: 0em;
  margin-bottom: 1em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text p.title2, .form-action__links ul li p.title2 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0em;
  margin-bottom: 15em;
  font-family: serif;
  font-weight: normal;
  font-size: 90%;
}
.paragraph--type--text p.author, .form-action__links ul li p.author {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 115%;
  font-family: serif;
  font-weight: normal;
}
.paragraph--type--text p.au, .form-action__links ul li p.au {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  padding-top: 2em;
  margin-top: 1em;
  margin-bottom: 1.5em;
  font-size: 140%;
  font-family: serif;
  font-weight: normal;
}
.paragraph--type--text p.au1, .form-action__links ul li p.au1 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0em;
  margin-bottom: 9em;
  font-size: 90%;
  font-family: serif;
  font-weight: bold;
}
.paragraph--type--text p.ed, .form-action__links ul li p.ed {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 9em;
  margin-bottom: 1em;
  font-size: 110%;
  font-weight: normal;
  font-family: serif;
}
.paragraph--type--text p.list, .form-action__links ul li p.list {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 100%;
  margin-left: 5.5em;
  text-indent: -1em;
  margin-top: 0em;
  margin-bottom: 0;
  text-align: justify;
}
.paragraph--type--text p.bbl, .form-action__links ul li p.bbl {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 100%;
  margin-left: 2em;
  text-indent: -1em;
  margin-top: 0.5em;
  margin-bottom: 0;
  text-indent: -1em;
  text-align: justify;
}
.paragraph--type--text h2.ahd, .form-action__links ul li h2.ahd {
  font-family: serif;
  font-size: 110%;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  margin-left: 0em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h2.ahd1, .form-action__links ul li h2.ahd1 {
  text-transform: uppercase;
  font-family: serif;
  font-size: 110%;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 1em;
  margin-left: 0em;
  font-weight: bold;
  color: #B8B8B8;
  line-height: 1.20em;
}
.paragraph--type--text h2.bhd, .form-action__links ul li h2.bhd {
  font-family: serif;
  font-size: 125%;
  text-align: left;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text h2.bhd2, .form-action__links ul li h2.bhd2 {
  font-family: serif;
  font-size: 125%;
  text-align: left;
  margin-top: 0em;
  margin-bottom: 0.5em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text h2.chd, .form-action__links ul li h2.chd {
  font-family: serif;
  font-size: 105%;
  text-align: left;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: normal;
  margin-left: 0em;
}
.paragraph--type--text h2.chd2, .form-action__links ul li h2.chd2 {
  font-family: serif;
  font-size: 105%;
  text-align: left;
  margin-top: 0em;
  margin-bottom: 0.5em;
  font-weight: bold;
  margin-left: 0em;
}
.paragraph--type--text h2.dhd, .form-action__links ul li h2.dhd {
  font-family: serif;
  font-size: 100%;
  text-align: left;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: normal;
  font-style: italic;
  margin-left: 0em;
}
.paragraph--type--text h2.aud, .form-action__links ul li h2.aud {
  font-family: serif;
  font-size: 115%;
  text-align: left;
  padding-top: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
  margin-left: 0em;
}
.paragraph--type--text div.bl, .form-action__links ul li div.bl {
  margin-top: 1em;
  margin-bottom: 1em;
}
.paragraph--type--text table, .form-action__links ul li table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.2em;
  margin-bottom: 1.2em;
}
.paragraph--type--text p.tch, .form-action__links ul li p.tch {
  margin: 0;
  line-height: 1.2;
  font-size: 90%;
  font-weight: bold;
  padding: 0.2em;
  font-style: normal;
  vertical-align: top;
  text-align: left;
  font-family: serif;
}
.paragraph--type--text p.tch1, .form-action__links ul li p.tch1 {
  margin: 0;
  line-height: 1.2;
  font-size: 90%;
  font-weight: bold;
  font-style: normal;
  padding: 0.2em;
  vertical-align: top;
  text-align: left;
  font-family: serif;
}
.paragraph--type--text p.t1, .form-action__links ul li p.t1 {
  margin: 0;
  line-height: 1.2;
  font-size: 90%;
  font-style: normal;
  padding: 0.2em;
  text-align: left;
  font-family: serif;
}
.paragraph--type--text p.tnum, .form-action__links ul li p.tnum {
  margin: 0;
  line-height: 1.2;
  font-size: 90%;
  font-style: normal;
  font-family: serif;
  text-align: center;
}
.paragraph--type--text p.t, .form-action__links ul li p.t {
  margin: 0;
  line-height: 1.2;
  font-size: 90%;
  font-weight: normal;
  padding: 0.2em;
  font-style: normal;
}
.paragraph--type--text p.info, .form-action__links ul li p.info {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-align: left;
  text-indent: 0;
  margin-top: .5em;
  font-size: 80%;
}
.paragraph--type--text p.info1, .form-action__links ul li p.info1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-align: left;
  text-indent: 0;
  margin-top: .5em;
  margin-bottom: 2em;
  font-size: 90%;
}
.paragraph--type--text div.cent, .form-action__links ul li div.cent {
  text-align: center;
}
.paragraph--type--text span.center, .form-action__links ul li span.center {
  text-align: center;
}
.paragraph--type--text p.fcopyright, .form-action__links ul li p.fcopyright {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-style: normal;
  font-size: 90%;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 0em;
}
.paragraph--type--text p.copyrightns, .form-action__links ul li p.copyrightns {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-style: normal;
  font-size: 90%;
  text-align: center;
  padding-top: 0em;
  margin-bottom: 0em;
}
.paragraph--type--text p.bib, .form-action__links ul li p.bib {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  margin-top: 0.5em;
}
.paragraph--type--text span.dropcap, .form-action__links ul li span.dropcap {
  font-family: serif;
  font-size: 400%;
  font-weight: normal;
  float: left;
  line-height: 60%;
  padding-top: 0.2em;
}
.paragraph--type--text p.glh1, .form-action__links ul li p.glh1 {
  margin: 0;
  line-height: 1.2;
  font-size: 110%;
  font-weight: bold;
  font-family: serif;
  text-align: left;
  margin-top: 1em;
}
.paragraph--type--text p.glh2, .form-action__links ul li p.glh2 {
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
  font-family: serif;
  text-align: left;
  margin-top: 1em;
  margin-bottom: -0.4em;
}
.paragraph--type--text p.gltx, .form-action__links ul li p.gltx {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-top: 1em;
}
.paragraph--type--text p.ref, .form-action__links ul li p.ref {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-top: 1em;
}
.paragraph--type--text p.listtx, .form-action__links ul li p.listtx {
  margin: 0;
  line-height: 1.2;
  text-align: center;
}
.paragraph--type--text p.biblio, .form-action__links ul li p.biblio {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-left: 1em;
  text-indent: -1em;
}
.paragraph--type--text p.centertxt, .form-action__links ul li p.centertxt {
  margin: 0;
  line-height: 1.2;
  text-align: center;
}
.paragraph--type--text p.spectxt, .form-action__links ul li p.spectxt {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  font-size: 80%;
  margin-bottom: 0.5em;
}
.paragraph--type--text p.boxspectxt, .form-action__links ul li p.boxspectxt {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  font-size: 80%;
  margin-bottom: 0.5em;
}
.paragraph--type--text p.spechd, .form-action__links ul li p.spechd {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  font-size: 90%;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.paragraph--type--text p.fftxt, .form-action__links ul li p.fftxt {
  margin: 0;
  line-height: 1.2;
  padding-top: 2em;
  text-align: justify;
}
.paragraph--type--text p.abtx, .form-action__links ul li p.abtx {
  margin: 0;
  line-height: 1.2;
  margin-top: 4em;
  margin-left: 2em;
  margin-right: 2em;
  text-align: justify;
}
.paragraph--type--text p.abtxt, .form-action__links ul li p.abtxt {
  margin: 0;
  line-height: 1.2;
  margin-left: 2em;
  margin-right: 2em;
  text-indent: 1em;
  text-align: justify;
}
.paragraph--type--text p.rtx, .form-action__links ul li p.rtx {
  margin: 0;
  line-height: 1.2;
  margin-right: 2em;
  font-size: 90%;
  font-family: serif;
  text-align: right;
  color: #B8B8B8;
}
.paragraph--type--text span.ctx, .form-action__links ul li span.ctx {
  font-family: serif;
  color: #B8B8B8;
}
.paragraph--type--text p.ctxt, .form-action__links ul li p.ctxt {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 90%;
  text-indent: 0em;
  margin-top: 1em;
}
.paragraph--type--text p.ctx, .form-action__links ul li p.ctx {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 90%;
  margin-left: 1.5em;
}
.paragraph--type--text p.ctx2, .form-action__links ul li p.ctx2 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-family: serif;
  font-size: 90%;
}
.paragraph--type--text p.ch3, .form-action__links ul li p.ch3 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-family: serif;
  font-size: 90%;
  margin-left: 0em;
}
.paragraph--type--text h2.ch1, .form-action__links ul li h2.ch1 {
  text-align: center;
  font-family: serif;
  font-size: 90%;
  margin-top: 1em;
  text-indent: 0em;
}
.paragraph--type--text p.ch2, .form-action__links ul li p.ch2 {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 90%;
  margin-top: 1em;
  text-indent: 0em;
}
.paragraph--type--text h2.shd, .form-action__links ul li h2.shd {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-family: serif;
  font-weight: bold;
  font-size: 110%;
}
.paragraph--type--text p.stx, .form-action__links ul li p.stx {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-size: 100%;
  margin-bottom: 0.5em;
}
.paragraph--type--text p.stxt, .form-action__links ul li p.stxt {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 100%;
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.paragraph--type--text p.sh2, .form-action__links ul li p.sh2 {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.paragraph--type--text p.scent, .form-action__links ul li p.scent {
  margin: 0;
  line-height: 1.2;
  page-break-after: avoid;
  text-align: center;
  font-family: serif;
  font-size: 100%;
  margin-top: 1em;
}
.paragraph--type--text p.scent1, .form-action__links ul li p.scent1 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text p.snltx, .form-action__links ul li p.snltx {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text p.snl, .form-action__links ul li p.snl {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-family: serif;
  font-size: 100%;
  margin-top: 1em;
  color: #A8A8A8;
}
.paragraph--type--text p.dit, .form-action__links ul li p.dit {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-top: 1em;
  margin-left: 2em;
  margin-right: 2em;
  text-indent: -1em;
}
.paragraph--type--text p.di, .form-action__links ul li p.di {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-top: 0em;
  margin-left: 2em;
  margin-right: 2em;
  text-indent: -1em;
}
.paragraph--type--text p.dib, .form-action__links ul li p.dib {
  margin: 0;
  line-height: 1.2;
  text-align: justify;
  margin-bottom: 1em;
  margin-left: 2em;
  margin-right: 2em;
  text-indent: -1em;
}
.paragraph--type--text p.init, .form-action__links ul li p.init {
  margin: 0;
  line-height: 1.2;
  padding-top: 1.5em;
  text-align: justify;
}
.paragraph--type--text p.fpoem, .form-action__links ul li p.fpoem {
  margin: 0;
  line-height: 1.2;
  margin-top: 3em;
  margin-left: 8em;
  margin-right: 0em;
  text-align: left;
}
.paragraph--type--text p.poem, .form-action__links ul li p.poem {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 2em;
  margin-right: 0em;
  text-align: left;
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text p.poemt, .form-action__links ul li p.poemt {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  margin-left: 2em;
  margin-right: 0em;
  text-align: left;
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text p.poemb, .form-action__links ul li p.poemb {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 2em;
  margin-right: 0em;
  margin-bottom: 1em;
  text-align: left;
  font-family: serif;
  font-size: 100%;
}
.paragraph--type--text p.extt, .form-action__links ul li p.extt {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 1em;
  margin-right: 1em;
  text-align: justify;
}
.paragraph--type--text p.ext, .form-action__links ul li p.ext {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
  text-indent: 0em;
  margin-right: 1em;
  text-align: justify;
}
.paragraph--type--text p.cext, .form-action__links ul li p.cext {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-size: 95%;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
  text-indent: 0em;
  margin-right: 1em;
  text-align: justify;
}
.paragraph--type--text p.extxt, .form-action__links ul li p.extxt {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 1em;
  text-indent: 1em;
  margin-right: 1em;
  text-align: justify;
}
.paragraph--type--text p.extm, .form-action__links ul li p.extm {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 1em;
  text-indent: 1em;
  margin-right: 1em;
  text-align: justify;
}
.paragraph--type--text p.extb, .form-action__links ul li p.extb {
  margin: 0;
  line-height: 1.2;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 1em;
  text-indent: 1em;
  text-align: justify;
}
.paragraph--type--text p.exts, .form-action__links ul li p.exts {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 0em;
  text-align: right;
}
.paragraph--type--text p.fext, .form-action__links ul li p.fext {
  margin: 0;
  line-height: 1.2;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 1em;
  text-align: left;
  text-indent: 1em;
}
.paragraph--type--text p.centt, .form-action__links ul li p.centt {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  text-align: center;
}
.paragraph--type--text p.fcent, .form-action__links ul li p.fcent {
  margin: 0;
  line-height: 1.2;
  margin-top: 1.5em;
  text-align: center;
}
.paragraph--type--text p.cent, .form-action__links ul li p.cent {
  margin: 0;
  line-height: 1.2;
  margin-top: 0.2em;
  text-align: center;
}
.paragraph--type--text p.centb, .form-action__links ul li p.centb {
  margin: 0;
  line-height: 1.2;
  margin-bottom: 1em;
  text-align: center;
}
.paragraph--type--text p.sb, .form-action__links ul li p.sb {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 0.5em;
  text-align: center;
}
.paragraph--type--text p.pq, .form-action__links ul li p.pq {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 5.5em;
  text-align: left;
}
.paragraph--type--text p.letter, .form-action__links ul li p.letter {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  margin-left: 1em;
  margin-right: 1em;
  text-align: left;
}
.paragraph--type--text p.letterr, .form-action__links ul li p.letterr {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 0em;
  margin-right: 0em;
  text-align: right;
}
.paragraph--type--text p.letterr1, .form-action__links ul li p.letterr1 {
  margin: 0;
  line-height: 1.2;
  padding-top: 1.5em;
  margin-left: 0em;
  margin-right: 0em;
  text-align: right;
}
.paragraph--type--text p.letter1, .form-action__links ul li p.letter1 {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 1em;
  text-indent: 1em;
  margin-right: 1em;
  text-align: left;
}
.paragraph--type--text p.letter2, .form-action__links ul li p.letter2 {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 15em;
  text-indent: 1em;
  margin-right: 0em;
  text-align: left;
}
.paragraph--type--text p.letter2ns, .form-action__links ul li p.letter2ns {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-left: 2em;
  margin-right: 2em;
  text-align: left;
}
.paragraph--type--text p.txg, .form-action__links ul li p.txg {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  text-indent: 0em;
  text-align: justify;
}
.paragraph--type--text p.note, .form-action__links ul li p.note {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
}
.paragraph--type--text p.tch, .form-action__links ul li p.tch {
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  vertical-align: top;
  font-family: serif;
}
.paragraph--type--text p.stb, .form-action__links ul li p.stb {
  margin: 0;
  line-height: 1.2;
  font-style: normal;
  font-family: serif;
  text-align: right;
  margin-right: 0em;
}
.paragraph--type--text p.stb1, .form-action__links ul li p.stb1 {
  margin: 0;
  line-height: 1.2;
  font-size: 95%;
  font-style: normal;
  font-family: serif;
  text-align: right;
  margin-right: 0em;
}
.paragraph--type--text p.tb1, .form-action__links ul li p.tb1 {
  margin: 0;
  line-height: 1.2;
  font-size: 95%;
  font-style: normal;
  font-family: serif;
  text-align: left;
}
.paragraph--type--text p.tnum, .form-action__links ul li p.tnum {
  margin: 0;
  line-height: 1.2;
  font-style: normal;
  font-family: serif;
  text-align: center;
}
.paragraph--type--text p.t, .form-action__links ul li p.t {
  margin: 0;
  line-height: 1.2;
  font-weight: normal;
  font-style: normal;
}
.paragraph--type--text p.cs, .form-action__links ul li p.cs {
  margin: 0;
  line-height: 1.2;
  margin-top: 1em;
  font-weight: normal;
  font-style: normal;
  font-family: serif;
}
.paragraph--type--text p.mcontents, .form-action__links ul li p.mcontents {
  margin: 0;
  line-height: 1.2;
  margin-right: 3em;
  margin-left: 4em;
  text-indent: -2.2em;
  margin-bottom: 0.3em;
  font-size: 90%;
  font-family: serif;
  text-align: left;
}
.paragraph--type--text p.contxt, .form-action__links ul li p.contxt {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0em;
  margin-bottom: 3em;
  font-size: 100%;
  font-family: serif;
}
.paragraph--type--text p.contents a, .form-action__links ul li p.contents a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text p.contentsah a, .form-action__links ul li p.contentsah a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text p.contents2 a, .form-action__links ul li p.contents2 a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text p.mcontents a, .form-action__links ul li p.mcontents a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text p.contents2, .form-action__links ul li p.contents2 {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0em;
  text-indent: 0em;
  font-size: 90%;
  font-family: serif;
  text-align: center;
}
.paragraph--type--text div.hisbox, .form-action__links ul li div.hisbox {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid #000000;
  padding: .7em;
}
.paragraph--type--text p.boxh, .form-action__links ul li p.boxh {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  text-align: center;
  font-size: 110%;
  margin-bottom: 0.5em;
  margin-left: 1em;
  margin-right: 1em;
  font-weight: bold;
}
.paragraph--type--text p.boxtxt, .form-action__links ul li p.boxtxt {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-align: left;
  font-size: 100%;
  margin-left: 1em;
  margin-right: 1em;
}
.paragraph--type--text p.contents, .form-action__links ul li p.contents {
  margin: 0;
  line-height: 1.2;
  margin-right: 3em;
  margin-left: 4em;
  text-indent: -2.2em;
  margin-bottom: 0.3em;
  font-size: 90%;
  font-family: serif;
  text-align: left;
}
.paragraph--type--text p.con3, .form-action__links ul li p.con3 {
  margin: 0;
  line-height: 1.2;
  margin-top: 0em;
  margin-bottom: 1em;
  font-size: 90%;
  font-family: serif;
  text-align: center;
}
.paragraph--type--text p.contents1, .form-action__links ul li p.contents1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  margin-top: 0em;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 90%;
}
.paragraph--type--text p.autxt, .form-action__links ul li p.autxt {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  margin-top: 0em;
  margin-left: 1em;
  font-size: 100%;
  font-family: serif;
  text-indent: 1em;
}
.paragraph--type--text p.au2, .form-action__links ul li p.au2 {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-size: 120%;
  font-family: serif;
}
.paragraph--type--text p.au3, .form-action__links ul li p.au3 {
  margin: 0;
  line-height: 1.2;
  margin-top: 1.5em;
  text-align: center;
  font-size: 105%;
  font-family: serif;
}
.paragraph--type--text p.ded, .form-action__links ul li p.ded {
  margin: 0;
  line-height: 1.2;
  font-size: 120%;
  font-family: serif;
  font-style: normal;
  padding-top: 5em;
  margin-bottom: 0em;
  text-align: center;
  line-height: 1.15em;
}
.paragraph--type--text p.ded1, .form-action__links ul li p.ded1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-style: italic;
  margin-top: 5em;
  margin-bottom: 0.5em;
  text-align: center;
}
.paragraph--type--text p.nl, .form-action__links ul li p.nl {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  margin-left: 1.5em;
  text-indent: -1.5em;
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
}
.paragraph--type--text p.ind a, .form-action__links ul li p.ind a, .paragraph--type--text p.indh a, .form-action__links ul li p.indh a, .paragraph--type--text p.ind1 a, .form-action__links ul li p.ind1 a {
  text-decoration: none;
  color: #000000;
}
.paragraph--type--text p.indh, .form-action__links ul li p.indh {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-indent: -1em;
  margin: 1em 0 0 1em;
}
.paragraph--type--text p.ind, .form-action__links ul li p.ind {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-indent: -1em;
  margin: 0 0 0 1em;
}
.paragraph--type--text p.ind1, .form-action__links ul li p.ind1 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-indent: -1em;
  margin: 0 0 0 2em;
}
.paragraph--type--text p.ind2, .form-action__links ul li p.ind2 {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  text-indent: -1em;
  margin: 0 0 0 3em;
}
.paragraph--type--text p.nobreak, .form-action__links ul li p.nobreak {
  margin: 0;
  line-height: 1.2;
  page-break-before: always;
}
.paragraph--type--text p.caption, .form-action__links ul li p.caption {
  margin: 0;
  line-height: 1.2;
  font-family: serif;
  font-weight: normal;
  font-style: normal;
  font-size: 90%;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.paragraph--type--text p.image, .form-action__links ul li p.image {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.paragraph--type--text sup.footnote, .form-action__links ul li sup.footnote {
  font-size: 80%;
  margin-right: .5em;
}
.paragraph--type--text span.sc, .form-action__links ul li span.sc {
  font-variant: small-caps;
}
.paragraph--type--text span.fsc, .form-action__links ul li span.fsc {
  font-size: 75%;
}
.paragraph--type--text p.imagetop, .form-action__links ul li p.imagetop {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.paragraph--type--text div.boxlrule, .form-action__links ul li div.boxlrule {
  margin-top: 0em;
  margin-bottom: 0em;
  border-left: 1px solid #ff0000;
  padding-left: .7em;
  padding-top: 0em;
  padding-bottom: 0em;
  padding-right: 0em;
}
.paragraph--type--text h5.Dhdlight, .form-action__links ul li h5.Dhdlight {
  font-family: sans-serif;
  font-size: 80%;
  text-align: left;
  margin-left: 0em;
  text-indent: 0em;
  margin-top: 0em;
  font-weight: normal;
  line-height: 1.20em;
  color: #ff0000;
}
.paragraph--type--text p.ve1light, .form-action__links ul li p.ve1light {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 80%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
  text-align: left;
  font-weight: normal;
}
.paragraph--type--text p.vealllight, .form-action__links ul li p.vealllight {
  margin: 0;
  line-height: 1.2;
  font-family: sans-serif;
  font-size: 80%;
  margin-bottom: 0;
  text-align: left;
  text-indent: -2em;
  margin-left: 2em;
  font-weight: normal;
}
.paragraph--type--text span.colourrom, .form-action__links ul li span.colourrom {
  color: #ff0000;
  padding: 0em;
  font-weight: normal;
  font-family: sans-serif;
}
.paragraph--type--text h5.Dhdlight a, .form-action__links ul li h5.Dhdlight a {
  text-decoration: none;
  color: red;
}
.paragraph--type--text p.title, .form-action__links ul li p.title {
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-size: 170%;
  margin-bottom: 0.1em;
  font-family: sans-serif;
  font-weight: bold;
  line-height: 1em;
}
.paragraph--type--text h2.Ahd2, .form-action__links ul li h2.Ahd2 {
  font-family: sans-serif;
  font-size: 180%;
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  margin-left: 0em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h3.Bhd3, .form-action__links ul li h3.Bhd3 {
  font-family: sans-serif;
  font-size: 120%;
  text-align: left;
  margin-left: 0em;
  margin-top: 0.8em;
  margin-bottom: 0.7em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text h3.Bhd3r, .form-action__links ul li h3.Bhd3r {
  font-family: sans-serif;
  font-size: 120%;
  text-align: right;
  margin-left: 0em;
  margin-top: 0.8em;
  margin-bottom: 0.7em;
  font-weight: normal;
  line-height: 1.20em;
}
.paragraph--type--text p.contents2, .form-action__links ul li p.contents2 {
  margin: 0;
  line-height: 1.2;
  margin-right: 3em;
  margin-left: 4em;
  text-indent: -2.2em;
  margin-bottom: 0.2em;
  font-size: 90%;
  font-family: sans-serif;
  text-align: left;
}
.paragraph--type--text span.colour a, .form-action__links ul li span.colour a {
  color: #ff0000;
  padding: 0em;
  font-weight: bold;
  font-family: sans-serif;
}

.page-node-type-daily-services-integration-page #block-cofe-content > table,
.page-node-type-daily-services-integration-page #mainbody #maincontent #box_center {
  position: relative;
  margin-left: 1em;
  margin-right: 1em;
  max-width: calc(100% - 2em);
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .page-node-type-daily-services-integration-page #block-cofe-content > table,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center {
    margin-left: 10%;
    width: 80%;
    max-width: 80%;
  }
}
@media (max-width: 29.99em) {
  .page-node-type-daily-services-integration-page #block-cofe-content > table .HeadingARedItalic,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center .HeadingARedItalic {
    font-size: 1.6em;
  }
  .page-node-type-daily-services-integration-page #block-cofe-content > table .vlstanzanumber,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center .vlstanzanumber {
    left: 0;
  }
  .page-node-type-daily-services-integration-page #block-cofe-content > table .vlrefrainmargin,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center .vlrefrainmargin {
    left: 0;
  }
}
@media (min-width: 30em) and (max-width: 49.365em) {
  .page-node-type-daily-services-integration-page #block-cofe-content > table .vlstanzanumber,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center .vlstanzanumber {
    left: -2em;
  }
}
@media (min-width: 30em) {
  .page-node-type-daily-services-integration-page #block-cofe-content > table p,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center p {
    font-size: inherit;
  }
  .page-node-type-daily-services-integration-page #block-cofe-content > table .vlstanzanumber,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center .vlstanzanumber {
    left: -2em;
  }
}
@media (min-width: 49.375em) {
  .page-node-type-daily-services-integration-page #block-cofe-content > table,
  .page-node-type-daily-services-integration-page #mainbody #maincontent #box_center {
    width: 64% !important;
    max-width: 960px;
    margin-left: 7em;
  }
}
.page-node-type-daily-services-integration-page .bcpdp-copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 .5rem;
}
@media (min-width: 49.375em) {
  .page-node-type-daily-services-integration-page .bcpdp-copyright {
    padding: 0 1.8rem;
  }
}

.service-listing-link-wrapper {
  padding-top: 1em;
}
.service-listing-link-wrapper a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  font-size: 18px;
  -webkit-box-shadow: 0 1px 0 0 #e9a065;
  -moz-box-shadow: 0 1px 0 0 #e9a065;
  box-shadow: 0 1px 0 0 #e9a065;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.service-listing-link-wrapper a:focus, .service-listing-link-wrapper a:hover {
  -webkit-box-shadow: 0 2px 0 0 #e9a065;
  -moz-box-shadow: 0 2px 0 0 #e9a065;
  box-shadow: 0 2px 0 0 #e9a065;
}

.map-container {
  overflow: hidden;
  position: relative;
}

.interactive-map {
  width: 100%;
  height: 600px;
}

.interactive-map__search {
  width: 100%;
  padding: 5px;
  background-color: #f5f5f5;
}
@media (min-width: 38.125em) {
  .interactive-map__search {
    width: auto;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (min-width: 59.375em) {
  .interactive-map__search {
    right: auto !important;
  }
}
.interactive-map__search .form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.interactive-map__search .form .form-item {
  margin-bottom: 0 !important;
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
@media (min-width: 59.375em) {
  .interactive-map__search .form .form-item {
    width: 380px;
  }
}
.interactive-map__search .form input,
.interactive-map__search .form button {
  height: 40px;
}
.interactive-map__search .form button {
  background-color: #fff;
  border: solid 1px #e4e4e4;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.interactive-map__search .form button:hover, .interactive-map__search .form button:focus {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
}
.interactive-map__search .form button:active {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
}
.interactive-map__search .form input {
  border-right: 0;
  width: 100%;
}
.interactive-map__search .form #submit-location {
  border-left: 0;
  width: 40px;
}
.interactive-map__search .form #geo-locate {
  padding-left: 10px;
  padding-right: 10px;
}
.no-geolocation .interactive-map__search .form #geo-locate {
  display: none;
}
.interactive-map__search .form #geo-locate i {
  color: #9669a9;
}

.map-location {
  align-items: center;
  padding: 8px;
  max-width: 150px;
}
@media (min-width: 38.125em) {
  .map-location {
    max-width: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.map-location .map-location__media {
  display: inline-block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
@media (min-width: 38.125em) {
  .map-location .map-location__media {
    margin-bottom: 0;
    margin-right: 1rem;
    width: 205px;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
}
.map-location .map-location__body {
  text-align: center;
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
@media (min-width: 68.75em) {
  .map-location .map-location__body {
    padding: 0 70px;
    max-width: 363px;
  }
}
.map-location h2 {
  margin-bottom: 1rem;
  font-size: 18px;
  display: inline-block;
}
.map-location p {
  margin-bottom: 0;
}
.map-location .button, .map-location .site-footer .footer-nav .sign-in, .site-footer .footer-nav .map-location .sign-in, .map-location #block-fancylogin a, #block-fancylogin .map-location a, .map-location .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .map-location input, .map-location .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .map-location a, .map-location .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .map-location a {
  margin: 0;
}
@media (min-width: 38.125em) {
  .map-location--diocese {
    display: block;
  }
}
@media (min-width: 68.75em) {
  .map-location--diocese .map-location__body {
    padding: 0;
  }
}

.gm-style-iw {
  position: relative;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.map-diocese--overlay {
  background-color: white;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 10px;
  z-index: 10;
}
.map-diocese--overlay ul {
  margin: 0;
  padding: 0;
}
.map-diocese--overlay ul li {
  font-size: 0.8125em;
  line-height: 1.4em;
  list-style: none;
}
.map-diocese--overlay ul li .diocese-color {
  border-radius: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  height: 15px;
  width: 15px;
}
.map-diocese--overlay ul li .diocese-color--canterbury {
  background-color: #1e447c;
}
.map-diocese--overlay ul li .diocese-color--york {
  background-color: #ad273a;
}
.map-diocese--overlay ul li a {
  text-decoration: underline;
}

.diocese-europe-logo {
  background: url("../img/diocese-europe-logo.jpg") no-repeat center center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  height: 15px;
  width: 15px;
}

div.modal {
  overflow: auto;
}
div.modal .modal-dialog {
  margin-left: 10px;
  margin-right: 10px;
  max-width: 61.25em;
}
div.modal .modal-content {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
div.modal .modal-closer {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(20%, -20%);
  -moz-transform: translate(20%, -20%);
  -o-transform: translate(20%, -20%);
  transform: translate(20%, -20%);
}

.modal-opener {
  cursor: pointer;
}

@media (min-width: 61.25em) {
  div.modal .modal-closer {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  div.modal .modal-dialog {
    margin-left: auto;
    margin-right: auto;
  }
}
.christmas-activities-modal .modal-closer,
.advent-activities-modal .modal-closer {
  background: #fff;
  font-size: 22px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  z-index: 10;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -ms-border-radius: 9999px;
  border-radius: 9999px;
}
.christmas-activities-modal .modal-body,
.advent-activities-modal .modal-body {
  background: #c7eaf2;
  overflow: hidden;
  padding: 0;
}
.christmas-activities-modal .day-wrapper,
.advent-activities-modal .day-wrapper {
  background: #4c7696;
  color: #fff;
  padding: 20px 0 10px;
  position: relative;
  text-align: center;
}
.christmas-activities-modal .day-wrapper:before,
.advent-activities-modal .day-wrapper:before {
  border: 200px solid #4c7696;
  content: '';
  display: block;
  height: 3000px;
  position: absolute;
  right: 50%;
  top: 100%;
  width: 3000px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -ms-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transform: translate(46%, -200px);
  -moz-transform: translate(46%, -200px);
  -o-transform: translate(46%, -200px);
  transform: translate(46%, -200px);
}
.christmas-activities-modal .day-wrapper h2,
.advent-activities-modal .day-wrapper h2 {
  display: inline-block;
  font-size: 2em;
  font-family: "ITC Airstream", comic-sans;
  padding-right: 50px;
  position: relative;
}
.christmas-activities-modal .day-wrapper h2:after,
.advent-activities-modal .day-wrapper h2:after {
  background: url(../img/bg-star.svg) no-repeat center top;
  top: 50%;
  content: '';
  display: inline-block;
  height: 340px;
  position: absolute;
  left: 100%;
  width: 120px;
  -webkit-background-size: 400px auto;
  -moz-background-size: 400px auto;
  -o-background-size: 400px auto;
  background-size: 400px auto;
  -webkit-transform: rotate(-20deg) translateY(-50%);
  -moz-transform: rotate(-20deg) translateY(-50%);
  -o-transform: rotate(-20deg) translateY(-50%);
  transform: rotate(-20deg) translateY(-50%);
}
.christmas-activities-modal sup,
.advent-activities-modal sup {
  text-transform: uppercase;
  font-size: 50%;
}
.christmas-activities-modal .month,
.advent-activities-modal .month {
  display: inline-block;
  font-size: 1.5em;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.christmas-activities-modal .info-wrapper,
.advent-activities-modal .info-wrapper {
  padding: 20px;
  position: relative;
  z-index: 100;
}
.christmas-activities-modal .info-wrapper h3,
.advent-activities-modal .info-wrapper h3 {
  color: #100b74;
  position: relative;
  z-index: 10;
}
.christmas-activities-modal .info-wrapper p,
.advent-activities-modal .info-wrapper p {
  position: relative;
  z-index: 10;
}
.christmas-activities-modal .info-wrapper a,
.advent-activities-modal .info-wrapper a {
  text-decoration: underline;
}
.christmas-activities-modal .info-wrapper a:hover,
.advent-activities-modal .info-wrapper a:hover {
  text-decoration: none;
}
.christmas-activities-modal .info-wrapper .info,
.advent-activities-modal .info-wrapper .info {
  margin: auto 0;
}
.christmas-activities-modal .img-wrapper img,
.advent-activities-modal .img-wrapper img {
  width: 100%;
}
.christmas-activities-modal .modal-controls,
.advent-activities-modal .modal-controls {
  background: #fff;
  font-size: 20px;
  height: 40px;
  line-height: 44px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 50%;
  width: 40px;
  z-index: 200;
  cursor: pointer;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -ms-border-radius: 9999px;
  border-radius: 9999px;
}
.christmas-activities-modal .modal-controls .icon-arrow-left:before,
.advent-activities-modal .modal-controls .icon-arrow-left:before {
  content: "\e907";
}
.christmas-activities-modal .modal-controls .icon-arrow-right:before,
.advent-activities-modal .modal-controls .icon-arrow-right:before {
  content: "\e906";
}
.christmas-activities-modal .modal-control-next,
.advent-activities-modal .modal-control-next {
  left: 100%;
  -webkit-transform: translate(-75%, -50%);
  -moz-transform: translate(-75%, -50%);
  -o-transform: translate(-75%, -50%);
  transform: translate(-75%, -50%);
}
.christmas-activities-modal .modal-control-prev,
.advent-activities-modal .modal-control-prev {
  right: 100%;
  -webkit-transform: translate(75%, -50%);
  -moz-transform: translate(75%, -50%);
  -o-transform: translate(75%, -50%);
  transform: translate(75%, -50%);
}
.christmas-activities-modal .better-sharing-buttons-block,
.advent-activities-modal .better-sharing-buttons-block {
  padding: 0;
  text-align: right;
}
.christmas-activities-modal .better-sharing-buttons-block > h2,
.advent-activities-modal .better-sharing-buttons-block > h2 {
  color: inherit;
}
.christmas-activities-modal .better-sharing-buttons-block .social-sharing-buttons a,
.advent-activities-modal .better-sharing-buttons-block .social-sharing-buttons a {
  background: #000;
  color: #c7eaf2;
}
.christmas-activities-modal .better-sharing-buttons-block .social-sharing-buttons a:hover,
.advent-activities-modal .better-sharing-buttons-block .social-sharing-buttons a:hover {
  background: #c7eaf2;
  color: #000;
}

@media (min-width: 46.25em) {
  .christmas-activities-modal .modal-body,
  .advent-activities-modal .modal-body {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .christmas-activities-modal .day-wrapper,
  .advent-activities-modal .day-wrapper {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .christmas-activities-modal .day-wrapper h2,
  .advent-activities-modal .day-wrapper h2 {
    display: inline-block;
    font-size: 2.5em;
    padding-right: 90px;
    position: relative;
    -webkit-transform: translateX(-45px);
    -moz-transform: translateX(-45px);
    -o-transform: translateX(-45px);
    transform: translateX(-45px);
  }
  .christmas-activities-modal .day-wrapper h2:after,
  .advent-activities-modal .day-wrapper h2:after {
    background: url(../img/bg-star.svg) no-repeat center top;
    top: 50%;
    content: '';
    display: inline-block;
    height: 700px;
    position: absolute;
    left: 100%;
    width: 300px;
    z-index: -1;
    -webkit-background-size: 850px auto;
    -moz-background-size: 850px auto;
    -o-background-size: 850px auto;
    background-size: 850px auto;
    -webkit-transform: rotate(-20deg) translateY(-50%);
    -moz-transform: rotate(-20deg) translateY(-50%);
    -o-transform: rotate(-20deg) translateY(-50%);
    transform: rotate(-20deg) translateY(-50%);
  }
  .christmas-activities-modal .img-wrapper,
  .christmas-activities-modal .info-wrapper,
  .advent-activities-modal .img-wrapper,
  .advent-activities-modal .info-wrapper {
    max-width: 50%;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  .christmas-activities-modal .info-wrapper,
  .advent-activities-modal .info-wrapper {
    padding: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .christmas-activities-modal .img-wrapper,
  .advent-activities-modal .img-wrapper {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .christmas-activities-modal .modal-controls,
  .advent-activities-modal .modal-controls {
    font-size: 32px;
    height: 55px;
    line-height: 60px;
    width: 55px;
  }
  .christmas-activities-modal .modal-control-next,
  .advent-activities-modal .modal-control-next {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .christmas-activities-modal .modal-control-prev,
  .advent-activities-modal .modal-control-prev {
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
}
.christmas-modal .modal-content {
  background: #100b74 url(../img/christmas-register-bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.christmas-modal .modal-closer {
  background: #fff;
  font-size: 22px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  -ms-border-radius: 9999px;
  border-radius: 9999px;
}
.christmas-modal .modal-body {
  color: #fff;
}

#block-cofe-local-tasks {
  border-top: solid 1px #e4e4e4;
  overflow: auto;
}
#block-cofe-local-tasks > ul {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 49.375em) {
  #block-cofe-local-tasks > ul {
    padding: 0 1.8rem;
  }
}
#block-cofe-local-tasks > ul li {
  list-style: none;
}
#block-cofe-local-tasks > ul a {
  display: block;
  padding: .5rem;
}

.main-nav {
  float: right;
  clear: right;
  font-family: "Cabin", tahoma, arial, sans-serif;
  letter-spacing: 0.8px;
  text-align: right;
  line-height: 1;
  font-size: 0.9375em;
  font-weight: 400;
}
@media (max-width: 59.365em) {
  .main-nav {
    display: none;
  }
}
@media (min-width: 49.375em) and (max-width: 59.365em) {
  .main-nav {
    border-left: solid 1px #e4e4e4;
    border-right: solid 1px #e4e4e4;
  }
}
@media (min-width: 80em) {
  .main-nav {
    font-size: 16px;
  }
}
.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav li {
  display: inline-block;
}
.main-nav li a {
  color: #100b74;
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px 12px 10px;
}
@media (min-width: 80em) {
  .main-nav li a {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 59.375em) {
  .main-nav li.is-active, .main-nav li.selected {
    position: relative;
  }
  .main-nav li.is-active a, .main-nav li.selected a {
    color: #000;
  }
  .main-nav li.is-active > a:after, .main-nav li.selected > a:after {
    color: #000 !important;
  }
  .main-nav li.is-active:after, .main-nav li.selected:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 12px;
    height: 2px;
    width: calc(100% - 24px);
    background: #e9a065;
    -webkit-animation: mega-fade-in 0.4s;
    -moz-animation: mega-fade-in 0.4s;
    -o-animation-delay: mega-fade-in 0.4s;
    animation-delay: mega-fade-in 0.4s;
  }
  .main-nav li.is-active > a {
    font-weight: 700;
  }
}
@media (min-width: 59.375em) {
  .main-nav > .menu > li:last-child > a:after {
    content: '+';
    display: inline-block;
    vertical-align: top;
    margin-left: .5rem;
    line-height: 15px;
    font-size: 25px;
    color: #9669a9;
    font-family: arial;
    font-weight: 700;
  }
}

@media (max-width: 59.365em) {
  .main-nav {
    clear: both;
    float: none;
    text-align: left;
    margin-left: -.5rem;
    margin-right: -.5rem;
    border-bottom: solid 1px #e4e4e4;
    margin-bottom: 2rem;
  }
  .nav-open .main-nav {
    display: block;
  }
  .main-nav li {
    display: block;
  }
  .main-nav li a {
    display: block;
    padding: 16px 20px;
    border-top: solid 1px #e4e4e4;
  }
}
#block-cofe-main-menu {
  position: relative;
}

.mobile-nav-btn {
  width: 32px;
  height: 40px;
  position: absolute;
  right: 0;
  top: -32px;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  padding-bottom: 12px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (max-width: 29.99em) {
  .mobile-nav-btn {
    right: 5px;
  }
}
@media (min-width: 59.375em) {
  .mobile-nav-btn {
    display: none;
  }
}
.mobile-nav-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #9f85ab;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.mobile-nav-btn span:nth-child(1) {
  top: 0px;
}
.mobile-nav-btn span:nth-child(2), .mobile-nav-btn span:nth-child(3) {
  top: 8px;
}
.mobile-nav-btn span:nth-child(4) {
  top: 16px;
}
.mobile-nav-btn.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.mobile-nav-btn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-nav-btn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile-nav-btn.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.menu-button-label {
  font-size: 9px;
  color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.megamenu {
  display: none;
}
@media (min-width: 59.375em) {
  .megamenu.is-open {
    display: flex;
    height: 100%;
  }
}

.megamenu-wrapper {
  position: relative;
  clear: both;
  display: none;
}
@media (min-width: 59.375em) {
  .megamenu-wrapper.is-open {
    display: block;
  }
  .megamenu-wrapper .mega-highlights,
  .megamenu-wrapper .children {
    padding-bottom: 1rem;
  }
  .megamenu-wrapper .children {
    padding-right: 23px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 810px;
    flex-basis: 810px;
  }
  .megamenu-wrapper .children-links {
    columns: 2;
  }
  .megamenu-wrapper .children-links a {
    font-weight: normal;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
  }
  .megamenu-wrapper .mega-highlights {
    border-left: solid 1px #e4e4e4;
    padding-left: 23px;
    -webkit-flex-basis: 390px;
    flex-basis: 390px;
  }
  .megamenu-wrapper .children-links a,
  .megamenu-wrapper .mega-highlights > a {
    text-decoration: none;
    display: block;
    font-size: 18px;
    color: #000;
    padding: .75em 0;
    text-transform: none;
  }
  .megamenu-wrapper .children-links a:focus, .megamenu-wrapper .children-links a:hover,
  .megamenu-wrapper .mega-highlights > a:focus,
  .megamenu-wrapper .mega-highlights > a:hover {
    text-decoration: underline;
  }
  .megamenu-wrapper .children-heading,
  .megamenu-wrapper .mega-highlights > div {
    color: #9669a9;
    font-family: "Cabin", tahoma, arial, sans-serif;
    line-height: 2.2;
    padding-top: 1.6875em;
    padding-bottom: 1.6875em;
    font-weight: normal;
    margin-bottom: 2em;
    letter-spacing: .2em;
  }
  .megamenu-wrapper.has-opened {
    z-index: 10;
    -webkit-animation: mega-fade-in 0.2s;
    -moz-animation: mega-fade-in 0.2s;
    -o-animation-delay: mega-fade-in 0.2s;
    animation-delay: mega-fade-in 0.2s;
  }
  .megamenu-wrapper.has-opened .megamenu-wrapper-b:before,
  .megamenu-wrapper.has-opened .megamenu-container {
    -webkit-animation: mega-open 0.2s;
    -moz-animation: mega-open 0.2s;
    -o-animation-delay: mega-open 0.2s;
    animation-delay: mega-open 0.2s;
  }
  .megamenu-wrapper.switched-right .megamenu-container {
    -webkit-animation: mega-right 0.2s;
    -moz-animation: mega-right 0.2s;
    -o-animation-delay: mega-right 0.2s;
    animation-delay: mega-right 0.2s;
  }
  .megamenu-wrapper.switched-left .megamenu-container {
    -webkit-animation: mega-left 0.2s;
    -moz-animation: mega-left 0.2s;
    -o-animation-delay: mega-left 0.2s;
    animation-delay: mega-left 0.2s;
  }
  .megamenu-wrapper.has-closed {
    display: block;
    z-index: 1;
    -webkit-animation: mega-fade-out 0.2s;
    -moz-animation: mega-fade-out 0.2s;
    -o-animation-delay: mega-fade-out 0.2s;
    animation-delay: mega-fade-out 0.2s;
    -webkit-animation-iteration-count: both;
    -moz-animation-iteration-count: both;
    -o-animation-delay-iteration-count: both;
    animation-delay-iteration-count: both;
  }
  .megamenu-wrapper.has-closed .megamenu-container {
    -webkit-animation: mega-close 0.2s;
    -moz-animation: mega-close 0.2s;
    -o-animation-delay: mega-close 0.2s;
    animation-delay: mega-close 0.2s;
    -webkit-animation-iteration-count: both;
    -moz-animation-iteration-count: both;
    -o-animation-delay-iteration-count: both;
    animation-delay-iteration-count: both;
  }
}

@keyframes mega-fade-in {
  0% {
    opacity: 0;
  }
}
@keyframes mega-fade-out {
  100% {
    opacity: 0;
  }
}
@keyframes mega-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@keyframes mega-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -o-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}
@keyframes mega-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
  }
}
@keyframes mega-close {
  0% {
    display: block;
  }
  99% {
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
    -webkit-transform: translateY(-90px);
    -moz-transform: translateY(-90px);
    -o-transform: translateY(-90px);
    transform: translateY(-90px);
  }
}
.megamenu-wrapper-b {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #f5f5f5;
  border-top: solid 1px #e4e4e4;
  z-index: 100;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 59.375em) {
  .megamenu-wrapper-b:before {
    content: '';
    position: absolute;
    top: 89px;
    border-bottom: solid 1px #e4e4e4;
    height: 0;
    width: 100%;
    left: 0;
  }
}

.megamenu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 .5rem;
  height: 100%;
}
@media (min-width: 49.375em) {
  .megamenu-container {
    padding: 0 1.8rem;
  }
}

@media (max-width: 59.365em) {
  .main-nav li.is-parent > a {
    position: relative;
    padding-left: 68px;
  }
  .main-nav li.is-parent > a:before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    text-align: center;
    line-height: 48px;
    height: 100%;
    border-right: solid 1px #e4e4e4;
    font-size: 2em;
    font-weight: 300;
  }
  .main-nav li.is-parent.selected {
    -webkit-box-shadow: inset 2px 0 0 0 #e9a065;
    -moz-box-shadow: inset 2px 0 0 0 #e9a065;
    box-shadow: inset 2px 0 0 0 #e9a065;
  }
  .main-nav li.is-parent.selected > a:before {
    content: '-';
    line-height: 42px;
  }
  .main-nav li.selected .megamenu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .main-nav .megamenu {
    background: #f5f5f5;
    border-top: solid 1px #e4e4e4;
    overflow: hidden;
  }
  .main-nav .megamenu .children-heading {
    display: none;
  }
  .main-nav .megamenu a {
    display: block;
    border-top: 0;
    border-bottom: solid 1px #ccc;
    text-transform: none;
  }
  .main-nav .children {
    z-index: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 320px;
    flex-basis: 320px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  }
  .main-nav .mega-highlights {
    background: #e4e4e4;
    -webkit-box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 220px;
    flex-basis: 220px;
  }
  .main-nav .mega-highlights > div {
    padding: 20px;
    letter-spacing: .2em;
    border-bottom: solid 1px #ccc;
  }

  .no-js .mobile-nav-close {
    display: block;
    width: 32px;
    height: 40px;
    right: 0;
    position: absolute;
    top: -40px;
    background: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 40px;
    line-height: 28px;
  }

  .no-js .main-nav:target {
    display: block;
  }
  .no-js .main-nav:target .megamenu {
    display: block;
  }
}
.mobile-nav-close {
  display: none;
}

.one-two-column-paragraph {
  color: #fff;
  margin-bottom: 20px;
}
.one-two-column-paragraph .info-wrapper {
  padding: 28px 45px 0 45px;
}
.one-two-column-paragraph img {
  width: 100%;
}
.one-two-column-paragraph .row, .one-two-column-paragraph .site-footer .social-channels, .site-footer .one-two-column-paragraph .social-channels {
  margin: 0;
}
.one-two-column-paragraph a {
  color: #fff;
}
.one-two-column-paragraph a:hover {
  text-decoration: none;
}
.one-two-column-paragraph .info,
.one-two-column-paragraph .image {
  padding: 0;
}
.one-two-column-paragraph .one-2-two .info {
  -webkit-box-ordinal-group: 0;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: 0;
  -webkit-order: 0;
  order: 0;
}
.one-two-column-paragraph .one-2-two .image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
.one-two-column-paragraph .has-background {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media (min-width: 992px) {
  .one-two-column-paragraph .image img {
    display: none;
  }
}
.path-resources .page-title {
  font-size: 2em;
  margin: 30px 0;
}

@media (min-width: 46.25em) {
  .path-resources .page-title {
    font-size: 3em;
    margin: 40px 0;
  }
}
@media (min-width: 61.25em) {
  .path-resources .page-title {
    font-size: 4em;
    margin: 50px 0;
  }
}
.test {
  width: 54.48718%;
  float: left;
  margin-left: 1.92308%;
  margin-right: 1.92308%;
  width: 37.82051%;
  float: left;
  margin-left: 1.92308%;
  margin-right: 1.92308%;
  margin-left: 10.25641%;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .test {
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .test {
    margin-bottom: 90px;
  }
}
@media (min-width: 49.375em) {
  .test {
    margin: 10px 0 0;
  }
}
@media (max-width: 49.365em) {
  .test {
    margin-left: 4.48718%;
  }
}
@media (min-width: 49.375em) and (max-width: 79.99em) {
  .test {
    font-size: 11.71875vw;
  }
}

.layout-content:before, .layout-content:after {
  content: "";
  display: table;
}
.layout-content:after {
  clear: both;
}

.hero-home:before, .hero-home:after {
  content: "";
  display: table;
}
.hero-home:after {
  clear: both;
}

@media (max-width: 44.99em) {
  .section-headers {
    margin-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 45em) {
  .section-headers > div {
    margin: 0 auto 50px;
    width: 64%;
  }
}
.section-headers ul {
  margin: 0;
  list-style: none;
  overflow: hidden;
  padding: 25px 20px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
@media (min-width: 45em) {
  .section-headers ul {
    margin-bottom: 50px;
  }
}
.section-headers ul li {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}
@media (max-width: 44.99em) {
  .section-headers ul li {
    width: 100%;
    float: none;
  }
}
.section-headers ul li a {
  font-size: 18px;
  line-height: 1.84;
  letter-spacing: 1px;
  text-align: left;
  color: #4a4a4a;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #e9a065;
}

.message-block {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 160px auto;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 180px;
  text-align: center;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .message-block {
    background-size: 160px auto;
  }
}
@media (min-width: 45em) {
  .message-block {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    margin-left: 26.92308%;
    padding-top: 200px;
  }
}
.message-block p {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.3;
}
@media (min-width: 30em) and (max-width: 44.99em) {
  .message-block p {
    font-size: 2.125em;
  }
}
@media (min-width: 45em) {
  .message-block p {
    font-size: 3.125em;
  }
}
.message-block a {
  text-decoration: none;
  position: relative;
  font-family: "Open Sans", calibri, arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.0625em;
  display: inline-block;
  color: #000;
}
@media (min-width: 30em) {
  .message-block a {
    font-size: 1.125em;
  }
}
.message-block a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80%;
  height: 2px;
  background: #e9a065;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.message-block a:before {
  bottom: 0;
  content: "";
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  z-index: 1;
}

.p-icon-default .message-block,
.p-icon- .message-block {
  background-image: url("../img/shine.svg");
  background-size: 187px auto;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .p-icon-default .message-block,
  .p-icon- .message-block {
    background-size: 160px auto;
  }
}

.p-icon-the-church-of-england .message-block, .p-icon-the-church-of-england.paragraph--type--large-spotlight-text, .p-icon-the-church-of-england.paragraph--type--small-message {
  background-image: url("../img/celtic-cross.svg");
}
.p-icon-the-church-of-england .message-block {
  background-size: 120px auto;
  background-position: center 10px;
}
.p-icon-the-church-of-england.paragraph--type--large-spotlight-text, .p-icon-the-church-of-england.paragraph--type--small-message {
  background-size: 90px auto;
  padding-top: 150px;
}

.p-icon-the-archbishop-of-york .message-block, .p-icon-the-archbishop-of-york.paragraph--type--large-spotlight-text, .p-icon-the-archbishop-of-york.paragraph--type--small-message {
  background-image: url("../img/romero-cross.svg");
}
.p-icon-the-archbishop-of-york .message-block {
  background-size: 100px auto;
}
.p-icon-the-archbishop-of-york.paragraph--type--large-spotlight-text, .p-icon-the-archbishop-of-york.paragraph--type--small-message {
  background-size: 78px auto;
  padding-top: 150px;
}

.p-icon-the-archbishop-of-canterbury .message-block, .p-icon-the-archbishop-of-canterbury.paragraph--type--large-spotlight-text, .p-icon-the-archbishop-of-canterbury.paragraph--type--small-message {
  background-image: url("../img/canterbury-cross.svg");
}
.p-icon-the-archbishop-of-canterbury .message-block {
  background-size: 160px auto;
}
.p-icon-the-archbishop-of-canterbury.paragraph--type--large-spotlight-text, .p-icon-the-archbishop-of-canterbury.paragraph--type--small-message {
  background-size: 120px auto;
  padding-top: 150px;
}

.p-icon-christenings .message-block, .p-icon-christenings.paragraph--type--large-spotlight-text, .p-icon-christenings.paragraph--type--small-message {
  background-image: url("../img/baptismal-font.svg");
}
.p-icon-christenings .message-block {
  background-size: 130px auto;
}
.p-icon-christenings.paragraph--type--large-spotlight-text, .p-icon-christenings.paragraph--type--small-message {
  background-size: 82px auto;
  padding-top: 150px;
}

.p-icon-font .message-block, .p-icon-font.paragraph--type--large-spotlight-text, .p-icon-font.paragraph--type--small-message {
  background-image: url("../img/baptismal-font.svg");
}
.p-icon-font .message-block {
  background-size: 130px auto;
}
.p-icon-font.paragraph--type--large-spotlight-text, .p-icon-font.paragraph--type--small-message {
  background-size: 82px auto;
  padding-top: 150px;
}

.p-icon-weddings .message-block, .p-icon-weddings.paragraph--type--large-spotlight-text, .p-icon-weddings.paragraph--type--small-message {
  background-image: url("../img/wedding-rings.svg");
}
.p-icon-weddings .message-block {
  background-size: 170px auto;
}
.p-icon-weddings.paragraph--type--large-spotlight-text, .p-icon-weddings.paragraph--type--small-message {
  background-size: 124px auto;
  padding-top: 150px;
}

.p-icon-funerals .message-block, .p-icon-funerals.paragraph--type--large-spotlight-text, .p-icon-funerals.paragraph--type--small-message {
  background-image: url("../img/wreath.svg");
}
.p-icon-funerals .message-block {
  background-size: 160px auto;
}
.p-icon-funerals.paragraph--type--large-spotlight-text, .p-icon-funerals.paragraph--type--small-message {
  background-size: 105px auto;
  padding-top: 150px;
}

.p-icon-east-window .message-block, .p-icon-east-window.paragraph--type--large-spotlight-text, .p-icon-east-window.paragraph--type--small-message {
  background-image: url("../img/east-window.svg");
}
.p-icon-east-window .message-block {
  background-size: 137px auto;
}
.p-icon-east-window.paragraph--type--large-spotlight-text, .p-icon-east-window.paragraph--type--small-message {
  background-size: 116px auto;
  padding-top: 150px;
}

.p-icon-east-window-alternate .message-block, .p-icon-east-window-alternate.paragraph--type--large-spotlight-text, .p-icon-east-window-alternate.paragraph--type--small-message {
  background-image: url("../img/east-window-alternate.svg");
}
.p-icon-east-window-alternate .message-block {
  background-size: 137px auto;
}
.p-icon-east-window-alternate.paragraph--type--large-spotlight-text, .p-icon-east-window-alternate.paragraph--type--small-message {
  background-size: 116px auto;
  padding-top: 150px;
}

.p-icon-bible .message-block, .p-icon-bible.paragraph--type--large-spotlight-text, .p-icon-bible.paragraph--type--small-message {
  background-image: url("../img/bible.svg");
}
.p-icon-bible .message-block {
  background-size: 142px auto;
}
.p-icon-bible.paragraph--type--large-spotlight-text, .p-icon-bible.paragraph--type--small-message {
  background-size: 130px auto;
  padding-top: 150px;
}

.p-icon-fish .message-block, .p-icon-fish.paragraph--type--large-spotlight-text, .p-icon-fish.paragraph--type--small-message {
  background-image: url("../img/fish.svg");
}
.p-icon-fish .message-block {
  background-size: 142px auto;
}
.p-icon-fish.paragraph--type--large-spotlight-text, .p-icon-fish.paragraph--type--small-message {
  background-size: 142px auto;
  padding-top: 150px;
  background-position: center 20px;
}

.p-icon-the-church-of-england-gold .message-block, .p-icon-the-church-of-england-gold.paragraph--type--large-spotlight-text, .p-icon-the-church-of-england-gold.paragraph--type--small-message {
  background-image: url("../img/cofe-cross.png");
}
.p-icon-the-church-of-england-gold .message-block {
  background-size: 120px auto;
  background-position: center 10px;
}
.p-icon-the-church-of-england-gold.paragraph--type--large-spotlight-text, .p-icon-the-church-of-england-gold.paragraph--type--small-message {
  background-size: 90px auto;
  background-position: center 10px;
}

.paragraph--type--small-message a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.0625em;
  text-align: center;
  color: #4a4a4a;
  position: relative;
  padding: 12px 42px 14px;
  line-height: 1;
  background-color: #fff;
  font-weight: 200;
  border-top: 3px solid #d69160;
  border-right: 3px solid #e99d67;
  border-bottom: 3px solid #d59161;
  border-left: 3px solid #c3865b;
  margin-top: 1em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.paragraph--type--small-message a:hover, .paragraph--type--small-message a:focus {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px rgba(0, 0, 0, 0.3);
}
.paragraph--type--small-message a:active {
  -webkit-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  -moz-box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
  box-shadow: inset 0 0 5px #e9a065, 0 8px 7px -6px transparent;
}

.xl-spotlight {
  clear: both;
  text-align: center;
  color: #000;
  position: relative;
}
.xl-spotlight:before, .xl-spotlight:after {
  content: "";
  display: table;
}
.xl-spotlight:after {
  clear: both;
}
.xl-spotlight .media-image {
  display: inline-block;
  margin-bottom: -27%;
  position: relative;
  width: 100%;
}
.xl-spotlight .media-image img {
  width: auto;
  height: auto;
  max-width: 90%;
  -webkit-box-shadow: 5px 15px 0 -5px #fcefe6;
  -moz-box-shadow: 5px 15px 0 -5px #fcefe6;
  box-shadow: 5px 15px 0 -5px #fcefe6;
}
@media (min-width: 45em) {
  .xl-spotlight .media-image img {
    width: 62.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    float: right;
    max-width: none;
    -webkit-box-shadow: -50px 50px 0 #fcefe6;
    -moz-box-shadow: -50px 50px 0 #fcefe6;
    box-shadow: -50px 50px 0 #fcefe6;
  }
  .paragraph--type--a-church-near-you-search .xl-spotlight .media-image img {
    width: 71.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    margin-bottom: 0;
    float: right;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}
.paragraph--type--a-church-near-you-search .xl-spotlight .media-image img {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.xl-spotlight .paragraph--type--spotlight-text,
.xl-spotlight .find-church-text {
  background: #fff;
  position: relative;
  z-index: 10;
}
@media (min-width: 30em) and (max-width: 44.99em) {
  .xl-spotlight .paragraph--type--spotlight-text,
  .xl-spotlight .find-church-text {
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .xl-spotlight .paragraph--type--spotlight-text,
  .xl-spotlight .find-church-text {
    width: 54.48718%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    padding: 73px 104px 40px 0;
    margin: 0;
  }
}
@media (min-width: 68.75em) {
  .xl-spotlight .paragraph--type--spotlight-text,
  .xl-spotlight .find-church-text {
    min-height: 400px;
  }
}
@media (min-width: 45em) {
  .xl-spotlight .find-church-text {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 515px;
    padding-bottom: 0;
    padding-top: 32px;
  }
}
.xl-spotlight .find-church-text h3 {
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  font-family: "Cabin", tahoma, arial, sans-serif;
}
@media (min-width: 45em) {
  .xl-spotlight .find-church-text h3 {
    font-size: 50px;
  }
}
.xl-spotlight .find-church-text .find-link-wrapper {
  margin-bottom: -10px;
}
.xl-spotlight .find-church-text .find-link-wrapper a {
  display: inline-block;
}
.xl-spotlight .find-church-text .find-link-wrapper a:before, .xl-spotlight .find-church-text .find-link-wrapper a:after {
  display: none;
  content: "";
}
.xl-spotlight .find-church-text form {
  position: relative;
  margin: 30px auto 0 auto;
  width: 100%;
  max-width: 790px;
}
@media (min-width: 30em) and (max-width: 44.99em) {
  .xl-spotlight .find-church-text form {
    margin-top: 20px;
  }
}
.xl-spotlight .find-church-text form:before, .xl-spotlight .find-church-text form:after {
  content: "";
  display: table;
}
.xl-spotlight .find-church-text form:after {
  clear: both;
}
.xl-spotlight .find-church-text form input {
  padding: 12px 18px 14px;
  border-width: 2px;
  float: left;
  height: 70px;
}
@media (min-width: 38.125em) {
  .xl-spotlight .find-church-text form input {
    margin: 0;
  }
}
.xl-spotlight .find-church-text form input[type="text"] {
  text-transform: none;
  font-weight: inherit;
  text-align: left;
  width: calc(100% - 100px);
  border-right: 0;
  -webkit-appearance: none;
}
.xl-spotlight .find-church-text form input[type="submit"] {
  width: 100px;
  color: transparent;
  border-left: 0;
  -webkit-appearance: none;
}
.xl-spotlight .find-church-text form .icon-go {
  font-size: 2.5rem;
  position: absolute;
  right: 35px;
  top: 50%;
  margin-top: -20px;
  pointer-events: none;
}
.xl-spotlight .find-church-text form .icon-go:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  text-align: center;
  display: inline;
  color: #e9a065;
}
@media (max-width: 44.99em) {
  .xl-spotlight .find-church-text form input[type="text"] {
    width: calc(100% - 50px);
  }
  .xl-spotlight .find-church-text form input[type="submit"] {
    width: 50px;
  }
  .xl-spotlight .find-church-text form .icon-go {
    right: 15px;
  }
}
@media (min-width: 45em) {
  .xl-spotlight.xl-spotlight--left .paragraph--type--spotlight-text,
  .xl-spotlight.xl-spotlight--left .find-church-text {
    float: right;
    padding-right: 0;
    padding-left: 104px;
  }
}
.xl-spotlight.xl-spotlight--left .media-image img {
  -webkit-box-shadow: -5px 15px 0 -5px #ece0f1;
  -moz-box-shadow: -5px 15px 0 -5px #ece0f1;
  box-shadow: -5px 15px 0 -5px #ece0f1;
}
@media (min-width: 45em) {
  .xl-spotlight.xl-spotlight--left .media-image img {
    width: 62.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    float: left;
    -webkit-box-shadow: 50px 50px 0 #ece0f1;
    -moz-box-shadow: 50px 50px 0 #ece0f1;
    box-shadow: 50px 50px 0 #ece0f1;
  }
}
.xl-spotlight h2, .xl-spotlight h3 {
  font-size: 20px;
  line-height: 1.88;
  letter-spacing: 0.03125em;
  margin: 20px 0 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .xl-spotlight h2, .xl-spotlight h3 {
    font-size: 24px;
  }
}
@media (min-width: 45em) {
  .xl-spotlight h2, .xl-spotlight h3 {
    font-size: 30px;
  }
}
.xl-spotlight p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.84;
  letter-spacing: 0.0125em;
}
@media (min-width: 30em) and (max-width: 44.99em) {
  .xl-spotlight p {
    font-size: 18px;
  }
}
@media (min-width: 45em) {
  .xl-spotlight p {
    font-size: 18px;
  }
}
.xl-spotlight .cta {
  display: inline;
  position: relative;
  z-index: 1;
}
.xl-spotlight a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1em;
  line-height: 1.84;
  letter-spacing: 0.0625em;
  text-align: center;
  color: #000;
  padding: 12px 30px 17px;
  border-top: 3px solid #d69160;
  border-right: 3px solid #e99d67;
  border-bottom: 3px solid #d59161;
  border-left: 3px solid #c3865b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 30em) {
  .xl-spotlight a {
    font-size: 1.125em;
  }
}
@media (min-width: 49.375em) {
  .xl-spotlight a {
    font-size: 1.125em;
  }
}
.xl-spotlight a:before {
  bottom: 0;
  content: "";
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  z-index: 1;
}
.xl-spotlight a:hover, .xl-spotlight a:focus {
  border-color: #9669a9;
}

.paragraph--type--a-church-near-you-search .container-inner {
  position: relative;
}
.paragraph--type--a-church-near-you-search .container-inner:before, .paragraph--type--a-church-near-you-search .container-inner:after {
  content: "";
  display: table;
}
.paragraph--type--a-church-near-you-search .container-inner:after {
  clear: both;
}

.paragraph--type--small-message {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 125px;
  background: url(../img/shine.svg) no-repeat top center;
  background-size: 110px auto;
  color: #000;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--small-message {
    margin-bottom: 100px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--small-message {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    margin-bottom: 150px;
  }
}
.paragraph--type--small-message h3 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 18px;
  line-height: 1.88;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--small-message h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--small-message h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.paragraph--type--small-message p {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--small-message p {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--small-message p {
    font-size: 18px;
  }
}

.rss-feed-button,
.paragraph--type--quote blockquote,
.paragraph--type--text .container-inner,
.form-action__links ul li .container-inner,
.paragraph--type--introduction .container-inner,
.paragraph--type--detailed-accordion .container-inner,
.paragraph--type--text-with-background .container-inner,
.paragraph--type--poll .poll-view,
.paragraph--type--glossary-listing .field--name-field-glossary-list,
.paragraph--type--media .media,
.paragraph--type--image .media,
.paragraph--type--back-to-top .container-inner,
.paragraph--type--documents .container-inner,
.paragraph--type--_-colum-with-title .paragraph--type--tweets,
.paragraph--type--_-colum-with-title .paragraph--type--related-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.84;
  letter-spacing: 0.0125em;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .rss-feed-button,
  .paragraph--type--quote blockquote,
  .paragraph--type--text .container-inner,
  .form-action__links ul li .container-inner,
  .paragraph--type--introduction .container-inner,
  .paragraph--type--detailed-accordion .container-inner,
  .paragraph--type--text-with-background .container-inner,
  .paragraph--type--poll .poll-view,
  .paragraph--type--glossary-listing .field--name-field-glossary-list,
  .paragraph--type--media .media,
  .paragraph--type--image .media,
  .paragraph--type--back-to-top .container-inner,
  .paragraph--type--documents .container-inner,
  .paragraph--type--_-colum-with-title .paragraph--type--tweets,
  .paragraph--type--_-colum-with-title .paragraph--type--related-content {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .rss-feed-button,
  .paragraph--type--quote blockquote,
  .paragraph--type--text .container-inner,
  .form-action__links ul li .container-inner,
  .paragraph--type--introduction .container-inner,
  .paragraph--type--detailed-accordion .container-inner,
  .paragraph--type--text-with-background .container-inner,
  .paragraph--type--poll .poll-view,
  .paragraph--type--glossary-listing .field--name-field-glossary-list,
  .paragraph--type--media .media,
  .paragraph--type--image .media,
  .paragraph--type--back-to-top .container-inner,
  .paragraph--type--documents .container-inner,
  .paragraph--type--_-colum-with-title .paragraph--type--tweets,
  .paragraph--type--_-colum-with-title .paragraph--type--related-content {
    font-size: 18px;
    margin: 0 auto;
    width: 64%;
  }
}
.rss-feed-button .instagram-media,
.paragraph--type--quote blockquote .instagram-media,
.paragraph--type--text .container-inner .instagram-media,
.form-action__links ul li .container-inner .instagram-media,
.paragraph--type--introduction .container-inner .instagram-media,
.paragraph--type--detailed-accordion .container-inner .instagram-media,
.paragraph--type--text-with-background .container-inner .instagram-media,
.paragraph--type--poll .poll-view .instagram-media,
.paragraph--type--glossary-listing .field--name-field-glossary-list .instagram-media,
.paragraph--type--media .media .instagram-media,
.paragraph--type--image .media .instagram-media,
.paragraph--type--back-to-top .container-inner .instagram-media,
.paragraph--type--documents .container-inner .instagram-media,
.paragraph--type--_-colum-with-title .paragraph--type--tweets .instagram-media,
.paragraph--type--_-colum-with-title .paragraph--type--related-content .instagram-media {
  margin: 0 auto !important;
}

.cwdp,
.content,
.view-taxonomy-resources,
.date .container-inner {
  margin: 20px 0 30px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .cwdp,
  .content,
  .view-taxonomy-resources,
  .date .container-inner {
    padding: 0 .5rem;
  }
}
@media (min-width: 45em) {
  .cwdp,
  .content,
  .view-taxonomy-resources,
  .date .container-inner {
    margin: 0 auto 40px;
  }
}

.paragraph--type--video .media {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.84;
  letter-spacing: 0.0125em;
  margin: 0 auto;
  display: block;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--video .media {
    font-size: 16px;
    padding: 0 .5rem;
  }
}
@media (min-width: 45em) {
  .paragraph--type--video .media {
    font-size: 18px;
    width: 64%;
  }
}

.map-outer-container, .paragraph--type--webform .container-inner, .page-content .container-inner {
  margin: 20px 0 30px;
}
@media (min-width: 45em) {
  .map-outer-container, .paragraph--type--webform .container-inner, .page-content .container-inner {
    font-size: 18px;
    margin: 0 auto 40px;
    width: 64%;
  }
}

@media (min-width: 45em) {
  .paragraph--type--media .media {
    margin-bottom: 80px;
  }
}
.paragraph--type--media .media .twitter-tweet {
  margin: auto;
}

.date {
  margin-top: -20px;
}
@media (min-width: 45em) {
  .date {
    margin-top: -40px;
  }
}
.date p {
  font-weight: 500;
  font-size: 1.2em;
}

.page-node-type-landing-page .paragraph--type--text, .page-node-type-landing-page .form-action__links ul li, .form-action__links ul .page-node-type-landing-page li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.84;
  letter-spacing: 0.0125em;
  text-align: center;
  margin: 0;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .page-node-type-landing-page .paragraph--type--text, .page-node-type-landing-page .form-action__links ul li, .form-action__links ul .page-node-type-landing-page li {
    font-size: 16px;
    padding: 0 .5rem;
  }
}
@media (min-width: 45em) {
  .page-node-type-landing-page .paragraph--type--text .container-inner, .page-node-type-landing-page .form-action__links ul li .container-inner, .form-action__links ul .page-node-type-landing-page li .container-inner {
    font-size: 18px;
    margin: 0 auto;
    width: 64%;
  }
}

.paragraph--type--large-spotlight {
  clear: both;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
.paragraph--type--large-spotlight:before, .paragraph--type--large-spotlight:after {
  content: "";
  display: table;
}
.paragraph--type--large-spotlight:after {
  clear: both;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--large-spotlight {
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight {
    margin-bottom: 180px;
  }
}
.paragraph--type--large-spotlight .paragraph {
  padding-bottom: 0;
  padding-top: 0;
}
.paragraph--type--large-spotlight .paragraph--type--image,
.paragraph--type--large-spotlight .paragraph--type--video {
  margin: 0 0 10px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--large-spotlight .paragraph--type--image,
  .paragraph--type--large-spotlight .paragraph--type--video {
    margin: 0 0 10px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .paragraph--type--image,
  .paragraph--type--large-spotlight .paragraph--type--video {
    width: 50%;
    float: left;
    margin: 0;
  }
}
.paragraph--type--large-spotlight .paragraph--type--image .media,
.paragraph--type--large-spotlight .paragraph--type--video .media {
  width: auto;
  margin: 0;
}
.paragraph--type--large-spotlight .paragraph--type--image img,
.paragraph--type--large-spotlight .paragraph--type--video img {
  display: block;
  height: auto;
  width: 90%;
  margin: 0 auto 45px;
  -webkit-box-shadow: -5px 15px 0 -5px #f5f5f5;
  -moz-box-shadow: -5px 15px 0 -5px #f5f5f5;
  box-shadow: -5px 15px 0 -5px #f5f5f5;
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .paragraph--type--image img,
  .paragraph--type--large-spotlight .paragraph--type--video img {
    width: auto;
    -webkit-box-shadow: 15px 45px 0 -15px #f5f5f5;
    -moz-box-shadow: 15px 45px 0 -15px #f5f5f5;
    box-shadow: 15px 45px 0 -15px #f5f5f5;
  }
}
.paragraph--type--large-spotlight .paragraph--type--video a {
  display: block;
  position: relative;
  z-index: 2;
}
.paragraph--type--large-spotlight .paragraph--type--video a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e9a065;
  left: 50%;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.paragraph--type--large-spotlight .paragraph--type--video a:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #ffffff;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.paragraph--type--large-spotlight .paragraph--type--video a:hover:before, .paragraph--type--large-spotlight .paragraph--type--video a:focus:before {
  opacity: .7;
}
.paragraph--type--large-spotlight .large-spotlight--right,
.paragraph--type--large-spotlight .large-spotlight--left {
  position: relative;
}
.paragraph--type--large-spotlight .large-spotlight--right:before, .paragraph--type--large-spotlight .large-spotlight--right:after,
.paragraph--type--large-spotlight .large-spotlight--left:before,
.paragraph--type--large-spotlight .large-spotlight--left:after {
  content: "";
  display: table;
}
.paragraph--type--large-spotlight .large-spotlight--right:after,
.paragraph--type--large-spotlight .large-spotlight--left:after {
  clear: both;
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .large-spotlight--right .paragraph--type--image,
  .paragraph--type--large-spotlight .large-spotlight--right .paragraph--type--video {
    float: right;
  }
}
.paragraph--type--large-spotlight .large-spotlight--right img {
  -webkit-box-shadow: 5px 15px 0 -5px #f5f5f5;
  -moz-box-shadow: 5px 15px 0 -5px #f5f5f5;
  box-shadow: 5px 15px 0 -5px #f5f5f5;
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .large-spotlight--right img {
    -webkit-box-shadow: -15px 45px 0 -15px #f5f5f5;
    -moz-box-shadow: -15px 45px 0 -15px #f5f5f5;
    box-shadow: -15px 45px 0 -15px #f5f5f5;
  }
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .large-spotlight--right .paragraph--type--large-spotlight-text {
    float: left;
  }
}
.paragraph--type--large-spotlight .paragraph--type--large-spotlight-text {
  background-repeat: no-repeat;
  background-position: center 10px;
  color: #000;
  margin-bottom: 60px;
  margin-top: 60px;
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight .paragraph--type--large-spotlight-text {
    margin: 0;
    padding-top: 130px;
    width: 44%;
    float: right;
  }
}
.paragraph--type--large-spotlight h4 {
  font-size: 1.25em;
  line-height: 1.88;
  letter-spacing: 0.03125em;
  margin: 0 0 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--large-spotlight h4 {
    margin: 0 0 20px;
    font-size: 1.5em;
  }
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight h4 {
    margin: 20px 0 20px;
    font-size: 1.875em;
  }
}
.paragraph--type--large-spotlight p {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.84;
  letter-spacing: 0.0125em;
}
@media (min-width: 30em) {
  .paragraph--type--large-spotlight p {
    font-size: 1.125em;
  }
}
@media (min-width: 45em) {
  .paragraph--type--large-spotlight p {
    font-size: 1.125em;
  }
}
.paragraph--type--large-spotlight .cta {
  display: inline;
}
.paragraph--type--large-spotlight .cta a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1em;
  line-height: 1.84;
  letter-spacing: 0.0625em;
  text-align: center;
  color: #000;
  padding: 12px 30px 17px;
  border-top: 3px solid #d69160;
  border-right: 3px solid #e99d67;
  border-bottom: 3px solid #d59161;
  border-left: 3px solid #c3865b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.paragraph--type--large-spotlight .cta a:before {
  bottom: 0;
  content: "";
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  z-index: 1;
}
@media (min-width: 30em) {
  .paragraph--type--large-spotlight .cta a {
    font-size: 1.125em;
  }
}
.paragraph--type--large-spotlight .cta a:hover, .paragraph--type--large-spotlight .cta a:focus {
  border-color: #9669a9;
}

.paragraph--type--text-with-related {
  overflow: hidden;
}
.paragraph--type--text-with-related:before, .paragraph--type--text-with-related:after {
  content: "";
  display: table;
}
.paragraph--type--text-with-related:after {
  clear: both;
}
.paragraph--type--text-with-related .paragraph--type--related-content {
  border-top: 1px solid #e4e4e4;
}
@media (min-width: 68.75em) {
  .paragraph--type--text-with-related .paragraph--type--related-content {
    width: 12.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
}
.paragraph--type--text-with-related .paragraph--type--related-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 0;
}
@media (max-width: 68.74em) {
  .paragraph--type--text-with-related .paragraph--type--related-content h2 {
    text-align: center;
  }
}
.paragraph--type--text-with-related .paragraph--type--related-content a {
  text-decoration: none;
  display: block;
  padding: 10px 0 20px;
}
@media (min-width: 20.0625em) and (max-width: 68.74em) {
  .paragraph--type--text-with-related .paragraph--type--related-content a {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
}
@media (min-width: 68.75em) {
  .paragraph--type--text-with-related .paragraph--type--related-content a {
    border-bottom: 1px solid #e4e4e4;
  }
}
.paragraph--type--text-with-related .paragraph--type--related-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.paragraph--type--text-with-related .paragraph--type--related-content img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px 0;
}
@media (max-width: 68.74em) {
  .paragraph--type--text-with-related .inner {
    padding: .5rem;
  }
}
@media (min-width: 68.75em) {
  .paragraph--type--text-with-related .inner {
    width: 62.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
}

.paragraph--type--spotlight-medium-with-background.u-bgBlue .xl-spotlight--red {
  background: #4d74b9;
}
.paragraph--type--spotlight-medium-with-background.u-bgBluewarm .xl-spotlight--red {
  background: #221f72;
}
.paragraph--type--spotlight-medium-with-background.u-bgGreen .xl-spotlight--red {
  background: #586f2a;
}
.paragraph--type--spotlight-medium-with-background.u-bgRed .xl-spotlight--red {
  background: #c71e26;
}
.paragraph--type--spotlight-medium-with-background.u-bgPurplewarm .xl-spotlight--red {
  background: #94317a;
}
.paragraph--type--spotlight-medium-with-background.u-bgPurple .xl-spotlight--red {
  background: #9669a9;
}

.paragraph--type--full-width-signpost {
  clear: both;
  background: #9669a9;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 125px;
  margin-bottom: 30px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--full-width-signpost {
    padding: 30px 0;
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--full-width-signpost {
    padding: 60px 0 70px;
    margin-bottom: 125px;
  }
}
.paragraph--type--full-width-signpost.u-bgBlue {
  background: #4d74b9;
}
.paragraph--type--full-width-signpost.u-bgBluewarm {
  background: #221f72;
}
.paragraph--type--full-width-signpost.u-bgGreen {
  background: #586f2a;
}
.paragraph--type--full-width-signpost.u-bgRed {
  background: #c71e26;
}
.paragraph--type--full-width-signpost.u-bgPurplewarm {
  background: #94317a;
}
.paragraph--type--full-width-signpost.u-bgPurple {
  background: #9669a9;
}
.paragraph--type--full-width-signpost h3 {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.00625em;
  line-height: 2;
  display: inline-block;
  margin: 0;
  border-bottom: 1px solid #e9a065;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--full-width-signpost h3 {
    font-size: 14px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--full-width-signpost h3 {
    font-size: 14px;
  }
}
.paragraph--type--full-width-signpost p {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 24px;
  letter-spacing: 0.00625em;
  margin: 20px 0 30px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--full-width-signpost p {
    font-size: 34px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--full-width-signpost p {
    font-size: 50px;
    margin: 60px 0 70px;
  }
}
.paragraph--type--full-width-signpost a {
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  padding: 12px 30px 17px;
  color: #fff;
  border: 2px solid #fff;
  font-size: 18px;
  letter-spacing: 0.0625em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.paragraph--type--full-width-signpost a:hover, .paragraph--type--full-width-signpost a:focus {
  border-color: #e9a065;
}

.paragraph--type--quote-with-images {
  clear: both;
  margin-bottom: 30px;
}
.paragraph--type--quote-with-images:before, .paragraph--type--quote-with-images:after {
  content: "";
  display: table;
}
.paragraph--type--quote-with-images:after {
  clear: both;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--quote-with-images {
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--quote-with-images {
    margin-bottom: 208px;
  }
}
.paragraph--type--quote-with-images .media-image {
  float: right;
  width: 50%;
}
.paragraph--type--quote-with-images .media-image img {
  width: 44%;
  height: auto;
}
.paragraph--type--quote-with-images .flex-wrapper {
  clear: both;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.paragraph--type--quote-with-images .flex-wrapper .media-image {
  float: left;
  clear: both;
}
.paragraph--type--quote-with-images .flex-wrapper .media-image img {
  width: 100%;
}
.paragraph--type--quote-with-images .quote-content {
  text-align: center;
  width: 50%;
  padding: 0 0 0 5%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.paragraph--type--quote-with-images .quote-content p {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03125em;
  color: #000;
  margin: 0.5rem 0;
}
@media (min-width: 45em) and (max-width: 59.365em) {
  .paragraph--type--quote-with-images .quote-content p {
    font-size: 30px;
  }
}
@media (min-width: 59.375em) {
  .paragraph--type--quote-with-images .quote-content p {
    font-size: 50px;
  }
}
.paragraph--type--quote-with-images .quote-content .cite {
  font-size: 15px;
  display: block;
  margin-top: 1rem;
}
@media (min-width: 45em) {
  .paragraph--type--quote-with-images .quote-content .cite {
    font-size: 20px;
  }
}
.paragraph--type--quote-with-images .quote-content a {
  margin-top: 1rem;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  padding: 12px 30px 17px;
  color: inherit;
  border-top: 3px solid #d69160;
  border-right: 3px solid #e99d67;
  border-bottom: 3px solid #d59161;
  border-left: 3px solid #c3865b;
  font-size: 15px;
  letter-spacing: 0.0625em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 45em) {
  .paragraph--type--quote-with-images .quote-content a {
    font-size: 18px;
    margin-top: 3rem;
  }
}
.paragraph--type--quote-with-images .quote-content a:focus, .paragraph--type--quote-with-images .quote-content a:hover {
  border-color: #9669a9;
}

.paragraph--type--introduction .container-inner {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.74;
  letter-spacing: 0.1px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--introduction .container-inner {
    font-size: 18px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--introduction .container-inner {
    font-size: 23px;
    margin: 0 auto;
  }
}
.page-node-type-storytelling-page .paragraph--type--introduction .container-inner:first-letter {
  font-size: 3.5em;
  font-weight: 500;
  float: left;
  line-height: .9;
  margin: 0 .1em 0 0;
  color: #9f85ab;
}

.paragraph--type--quote blockquote, .paragraph--type--verse blockquote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.2px;
  margin: 60px 0 60px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--quote blockquote, .paragraph--type--verse blockquote {
    font-size: 20px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--quote blockquote, .paragraph--type--verse blockquote {
    font-size: 30px;
    margin: 80px 0 80px;
  }
}
.paragraph--type--quote blockquote cite, .paragraph--type--verse blockquote cite {
  display: block;
  font-size: .6em;
  margin: 1em 0 0;
  font-weight: 500;
  letter-spacing: 0.0625em;
  color: #9669a9;
  font-style: normal;
}

.layout-content #block-cofe-page-title + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote, .layout-content .view-taxonomy-resources .views-title-wrapper + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote, .view-taxonomy-resources .layout-content .views-title-wrapper + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote {
  padding-right: .5rem;
  padding-left: .5rem;
}
@media (min-width: 45em) {
  .layout-content #block-cofe-page-title + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote, .layout-content .view-taxonomy-resources .views-title-wrapper + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote, .view-taxonomy-resources .layout-content .views-title-wrapper + #block-mainnavigation + #block-cofe-content .paragraph--type--quote blockquote {
    width: 64%;
    margin-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.paragraph--type--parallax-image {
  margin-bottom: 20px;
}
@media (min-width: 45em) {
  .paragraph--type--parallax-image {
    margin-bottom: 80px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--parallax-image + .paragraph--type--parallax-image {
    margin-top: -80px;
  }
}

.paralax {
  margin: 2em 0 0;
}
.paralax:before, .paralax:after {
  content: "";
  display: table;
}
.paralax:after {
  clear: both;
}
@media (min-width: 45em) {
  .paralax {
    margin: 1em 0 0;
  }
}
.paralax .paralax-holder {
  width: 100%;
  width: 100vw;
  min-height: 101px;
  min-height: 30vh;
  max-width: none;
  left: 0;
  position: absolute;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
}
@media (min-width: 45em) {
  .paralax .paralax-holder {
    min-height: 400px;
    background-attachment: fixed;
    background-size: cover;
  }
}

.paragraph--type--_-column {
  margin-bottom: 20px;
}
.paragraph--type--_-column:before, .paragraph--type--_-column:after {
  content: "";
  display: table;
}
.paragraph--type--_-column:after {
  clear: both;
}
@media (min-width: 45em) {
  .paragraph--type--_-column {
    margin-bottom: 80px;
  }
}
.paragraph--type--_-column .paragraph--type--image {
  margin-bottom: 20px;
}
@media (min-width: 45em) {
  .paragraph--type--_-column .paragraph--type--image {
    width: 47.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    margin: 0;
  }
  .paragraph--type--_-column .paragraph--type--image:nth-child(even) {
    float: right;
  }
  .paragraph--type--_-column .paragraph--type--image .media {
    width: 100%;
  }
}
.paragraph--type--_-column .paragraph--type--image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 45em) {
  .paragraph--type--_-column .paragraph--type--text, .paragraph--type--_-column .form-action__links ul li, .form-action__links ul .paragraph--type--_-column li {
    width: 47.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    border-top: 3px solid #e4e4e4;
    margin: 0;
    padding-bottom: 0;
    padding-top: 5vw;
  }
  .paragraph--type--_-column .paragraph--type--text:nth-child(even), .paragraph--type--_-column .form-action__links ul li:nth-child(even), .form-action__links ul .paragraph--type--_-column li:nth-child(even) {
    float: right;
  }
  .paragraph--type--_-column .paragraph--type--text .container, .paragraph--type--_-column .form-action__links ul li .container, .form-action__links ul .paragraph--type--_-column li .container, .paragraph--type--_-column .paragraph--type--text .path-user #block-cofe-content, .path-user .paragraph--type--_-column .paragraph--type--text #block-cofe-content, .paragraph--type--_-column .form-action__links ul li .path-user #block-cofe-content, .path-user .paragraph--type--_-column .form-action__links ul li #block-cofe-content, .form-action__links ul .paragraph--type--_-column li .path-user #block-cofe-content, .path-user .form-action__links ul .paragraph--type--_-column li #block-cofe-content, .paragraph--type--_-column .paragraph--type--text #block-cofe-page-title, .paragraph--type--_-column .form-action__links ul li #block-cofe-page-title, .form-action__links ul .paragraph--type--_-column li #block-cofe-page-title, .paragraph--type--_-column .paragraph--type--text .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--_-column .paragraph--type--text .views-title-wrapper, .paragraph--type--_-column .form-action__links ul li .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--_-column .form-action__links ul li .views-title-wrapper, .form-action__links ul .paragraph--type--_-column li .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .form-action__links ul .paragraph--type--_-column li .views-title-wrapper, .paragraph--type--_-column .paragraph--type--text #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--_-column .paragraph--type--text nav, .paragraph--type--_-column .form-action__links ul li #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--_-column .form-action__links ul li nav, .form-action__links ul .paragraph--type--_-column li #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .form-action__links ul .paragraph--type--_-column li nav, .paragraph--type--_-column .paragraph--type--text .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--_-column .paragraph--type--text #block-cofe-content, .paragraph--type--_-column .form-action__links ul li .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--_-column .form-action__links ul li #block-cofe-content, .form-action__links ul .paragraph--type--_-column li .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .form-action__links ul .paragraph--type--_-column li #block-cofe-content,
  .paragraph--type--_-column .paragraph--type--text .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .paragraph--type--_-column .paragraph--type--text #block-cofe-content,
  .paragraph--type--_-column .form-action__links ul li .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .paragraph--type--_-column .form-action__links ul li #block-cofe-content,
  .form-action__links ul .paragraph--type--_-column li .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .form-action__links ul .paragraph--type--_-column li #block-cofe-content, .paragraph--type--_-column .paragraph--type--text .path-resources main, .path-resources .paragraph--type--_-column .paragraph--type--text main, .paragraph--type--_-column .form-action__links ul li .path-resources main, .path-resources .paragraph--type--_-column .form-action__links ul li main, .form-action__links ul .paragraph--type--_-column li .path-resources main, .path-resources .form-action__links ul .paragraph--type--_-column li main, .paragraph--type--_-column .paragraph--type--text .section-headers, .paragraph--type--_-column .form-action__links ul li .section-headers, .form-action__links ul .paragraph--type--_-column li .section-headers, .paragraph--type--_-column .paragraph--type--text .date, .paragraph--type--_-column .form-action__links ul li .date, .form-action__links ul .paragraph--type--_-column li .date, .paragraph--type--_-column .paragraph--type--text .paragraph--type--back-to-top, .paragraph--type--_-column .form-action__links ul li .paragraph--type--back-to-top, .form-action__links ul .paragraph--type--_-column li .paragraph--type--back-to-top,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--image,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--image,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--image,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--media,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--media,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--media,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--video,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--video,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--video,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--poll,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--poll,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--poll,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--documents,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--documents,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--documents,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--glossary-listing,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--glossary-listing,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--glossary-listing, .paragraph--type--_-column .paragraph--type--text .paragraph--type--copy-to-clipboard, .paragraph--type--_-column .form-action__links ul li .paragraph--type--copy-to-clipboard, .form-action__links ul .paragraph--type--_-column li .paragraph--type--copy-to-clipboard, .paragraph--type--_-column .paragraph--type--text #block-mainnavigation, .paragraph--type--_-column .form-action__links ul li #block-mainnavigation, .form-action__links ul .paragraph--type--_-column li #block-mainnavigation, .paragraph--type--_-column .paragraph--type--text #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--_-column .paragraph--type--text h2, .paragraph--type--_-column .form-action__links ul li #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--_-column .form-action__links ul li h2, .form-action__links ul .paragraph--type--_-column li #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .form-action__links ul .paragraph--type--_-column li h2, .paragraph--type--_-column .paragraph--type--text .views-related-tags, .paragraph--type--_-column .form-action__links ul li .views-related-tags, .form-action__links ul .paragraph--type--_-column li .views-related-tags {
    padding: 0;
  }
  .paragraph--type--_-column .paragraph--type--text .container .container-inner, .paragraph--type--_-column .form-action__links ul li .container .container-inner, .form-action__links ul .paragraph--type--_-column li .container .container-inner, .paragraph--type--_-column .paragraph--type--text .path-user #block-cofe-content .container-inner, .path-user .paragraph--type--_-column .paragraph--type--text #block-cofe-content .container-inner, .paragraph--type--_-column .form-action__links ul li .path-user #block-cofe-content .container-inner, .path-user .paragraph--type--_-column .form-action__links ul li #block-cofe-content .container-inner, .form-action__links ul .paragraph--type--_-column li .path-user #block-cofe-content .container-inner, .path-user .form-action__links ul .paragraph--type--_-column li #block-cofe-content .container-inner, .paragraph--type--_-column .paragraph--type--text #block-cofe-page-title .container-inner, .paragraph--type--_-column .form-action__links ul li #block-cofe-page-title .container-inner, .form-action__links ul .paragraph--type--_-column li #block-cofe-page-title .container-inner, .paragraph--type--_-column .paragraph--type--text .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .paragraph--type--_-column .paragraph--type--text .views-title-wrapper .container-inner, .paragraph--type--_-column .form-action__links ul li .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .paragraph--type--_-column .form-action__links ul li .views-title-wrapper .container-inner, .form-action__links ul .paragraph--type--_-column li .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .form-action__links ul .paragraph--type--_-column li .views-title-wrapper .container-inner, .paragraph--type--_-column .paragraph--type--text #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .paragraph--type--_-column .paragraph--type--text nav .container-inner, .paragraph--type--_-column .form-action__links ul li #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .paragraph--type--_-column .form-action__links ul li nav .container-inner, .form-action__links ul .paragraph--type--_-column li #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .form-action__links ul .paragraph--type--_-column li nav .container-inner, .paragraph--type--_-column .paragraph--type--text .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .paragraph--type--_-column .paragraph--type--text #block-cofe-content .container-inner, .paragraph--type--_-column .form-action__links ul li .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .paragraph--type--_-column .form-action__links ul li #block-cofe-content .container-inner, .form-action__links ul .paragraph--type--_-column li .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .form-action__links ul .paragraph--type--_-column li #block-cofe-content .container-inner,
  .paragraph--type--_-column .paragraph--type--text .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
  .page-node-type-daily-services-integration-page .paragraph--type--_-column .paragraph--type--text #block-cofe-content .container-inner,
  .paragraph--type--_-column .form-action__links ul li .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
  .page-node-type-daily-services-integration-page .paragraph--type--_-column .form-action__links ul li #block-cofe-content .container-inner,
  .form-action__links ul .paragraph--type--_-column li .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
  .page-node-type-daily-services-integration-page .form-action__links ul .paragraph--type--_-column li #block-cofe-content .container-inner, .paragraph--type--_-column .paragraph--type--text .path-resources main .container-inner, .path-resources .paragraph--type--_-column .paragraph--type--text main .container-inner, .paragraph--type--_-column .form-action__links ul li .path-resources main .container-inner, .path-resources .paragraph--type--_-column .form-action__links ul li main .container-inner, .form-action__links ul .paragraph--type--_-column li .path-resources main .container-inner, .path-resources .form-action__links ul .paragraph--type--_-column li main .container-inner, .paragraph--type--_-column .paragraph--type--text .section-headers .container-inner, .paragraph--type--_-column .form-action__links ul li .section-headers .container-inner, .form-action__links ul .paragraph--type--_-column li .section-headers .container-inner, .paragraph--type--_-column .paragraph--type--text .date .container-inner, .paragraph--type--_-column .form-action__links ul li .date .container-inner, .form-action__links ul .paragraph--type--_-column li .date .container-inner, .paragraph--type--_-column .paragraph--type--text .paragraph--type--back-to-top .container-inner, .paragraph--type--_-column .form-action__links ul li .paragraph--type--back-to-top .container-inner, .form-action__links ul .paragraph--type--_-column li .paragraph--type--back-to-top .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--image .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--image .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--image .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--media .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--media .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--media .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--video .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--video .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--video .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--poll .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--poll .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--poll .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--documents .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--documents .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--documents .container-inner,
  .paragraph--type--_-column .paragraph--type--text .paragraph--type--glossary-listing .container-inner,
  .paragraph--type--_-column .form-action__links ul li .paragraph--type--glossary-listing .container-inner,
  .form-action__links ul .paragraph--type--_-column li .paragraph--type--glossary-listing .container-inner, .paragraph--type--_-column .paragraph--type--text .paragraph--type--copy-to-clipboard .container-inner, .paragraph--type--_-column .form-action__links ul li .paragraph--type--copy-to-clipboard .container-inner, .form-action__links ul .paragraph--type--_-column li .paragraph--type--copy-to-clipboard .container-inner, .paragraph--type--_-column .paragraph--type--text #block-mainnavigation .container-inner, .paragraph--type--_-column .form-action__links ul li #block-mainnavigation .container-inner, .form-action__links ul .paragraph--type--_-column li #block-mainnavigation .container-inner, .paragraph--type--_-column .paragraph--type--text #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .paragraph--type--_-column .paragraph--type--text h2 .container-inner, .paragraph--type--_-column .form-action__links ul li #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .paragraph--type--_-column .form-action__links ul li h2 .container-inner, .form-action__links ul .paragraph--type--_-column li #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .form-action__links ul .paragraph--type--_-column li h2 .container-inner, .paragraph--type--_-column .paragraph--type--text .views-related-tags .container-inner, .paragraph--type--_-column .form-action__links ul li .views-related-tags .container-inner, .form-action__links ul .paragraph--type--_-column li .views-related-tags .container-inner {
    width: 100%;
    margin: 0;
  }
}

.paragraph--type--_-colum-with-title:before, .paragraph--type--_-colum-with-title:after {
  content: "";
  display: table;
}
.paragraph--type--_-colum-with-title:after {
  clear: both;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title {
    margin-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-item {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets, .paragraph--type--_-colum-with-title .paragraph--type--related-content {
  margin-bottom: 60px;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .related-inner, .paragraph--type--_-colum-with-title .paragraph--type--related-content .related-inner {
  overflow: hidden;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container {
  overflow-y: auto;
  max-height: 300px;
  border: 1px solid #EEF2F5;
  border-bottom: none;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .views-row, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .views-row {
  border-bottom: 1px solid #EEF2F5;
  padding: 5px;
  font-size: 14px;
  font-weight: normal;
  font-family: "Segoe UI", Arial, sans-serif;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .views-row, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .views-row {
    padding: 10px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity {
  margin-left: 40px;
  line-height: 1.5;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity {
    margin-left: 58px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-author img, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-author img {
  margin-left: -40px;
  margin-top: 5px;
  float: left;
  width: 30px;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-author img, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-author img {
    margin-left: -58px;
    width: 48px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity a, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity a {
  text-decoration: none;
  color: #6D6D6D;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity a:hover, .paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity a:focus, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity a:hover, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity a:focus {
  text-decoration: underline;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-text, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-text {
  padding: 4px 0;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-text a, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-text a {
  color: #9669a9;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-image, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-image {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 4px 0;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links a, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links a {
  padding-right: 20%;
  display: inline-block;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links a, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links a {
    padding-right: 15%;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .reply:hover,
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .reply:focus, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .reply:hover,
.paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .reply:focus {
  color: #1da1f2;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .retweet:hover,
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .retweet:focus, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .retweet:hover,
.paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .retweet:focus {
  color: #17bf63;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .favourite:hover,
.paragraph--type--_-colum-with-title .paragraph--type--tweets .views-element-container .twitter-entity .tweet-links .favourite:focus, .paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .favourite:hover,
.paragraph--type--_-colum-with-title .paragraph--type--related-content .views-element-container .twitter-entity .tweet-links .favourite:focus {
  color: #e0245e;
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets h2, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets h2, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  .paragraph--type--_-colum-with-title .paragraph--type--tweets h2:after, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets h2, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2 {
    font-size: 18px;
    margin-bottom: 80px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--tweets h2:after, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  height: 2px;
  background: #e9a065;
  width: 100px;
}
@media (max-width: 44.99em) {
  .paragraph--type--_-colum-with-title .paragraph--type--tweets h2:after, .paragraph--type--_-colum-with-title .paragraph--type--related-content h2:after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--related-content {
  width: 100%;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content .related-inner {
    margin-left: -1.92308%;
    margin-right: -1.92308%;
  }
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content .column-2 {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--related-content h3 {
  font-weight: 500;
  margin: 0 0 .5em;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 {
    font-size: 24px;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a {
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 44.99em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a {
    border-bottom: 1px solid #e9a065;
  }
  .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a:hover, .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a:focus {
    border-bottom: 2px solid #e9a065;
  }
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a:hover, .paragraph--type--_-colum-with-title .paragraph--type--related-content h3 a:focus {
    border-bottom: 2px solid #e9a065;
  }
}
.paragraph--type--_-colum-with-title .paragraph--type--related-content p {
  line-height: 1.84;
}
@media (min-width: 45em) {
  .paragraph--type--_-colum-with-title .paragraph--type--related-content p {
    margin-bottom: 2em;
    font-size: 18px;
  }
}

.paragraph--type--text-with-background .container .container-inner, .paragraph--type--text-with-background .path-user #block-cofe-content .container-inner, .path-user .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background #block-cofe-page-title .container-inner, .paragraph--type--text-with-background .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .paragraph--type--text-with-background .views-title-wrapper .container-inner, .paragraph--type--text-with-background #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .paragraph--type--text-with-background nav .container-inner, .paragraph--type--text-with-background .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .paragraph--type--text-with-background #block-cofe-content .container-inner,
.paragraph--type--text-with-background .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
.page-node-type-daily-services-integration-page .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background .path-resources main .container-inner, .path-resources .paragraph--type--text-with-background main .container-inner, .paragraph--type--text-with-background .section-headers .container-inner, .paragraph--type--text-with-background .date .container-inner, .paragraph--type--text-with-background .paragraph--type--back-to-top .container-inner,
.paragraph--type--text-with-background .paragraph--type--image .container-inner,
.paragraph--type--text-with-background .paragraph--type--media .container-inner,
.paragraph--type--text-with-background .paragraph--type--video .container-inner,
.paragraph--type--text-with-background .paragraph--type--poll .container-inner,
.paragraph--type--text-with-background .paragraph--type--documents .container-inner,
.paragraph--type--text-with-background .paragraph--type--glossary-listing .container-inner, .paragraph--type--text-with-background .paragraph--type--copy-to-clipboard .container-inner, .paragraph--type--text-with-background #block-mainnavigation .container-inner, .paragraph--type--text-with-background #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .paragraph--type--text-with-background h2 .container-inner, .paragraph--type--text-with-background .views-related-tags .container-inner {
  background: #f5f5f5;
  padding: 20px 20px 10px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--text-with-background .container .container-inner, .paragraph--type--text-with-background .path-user #block-cofe-content .container-inner, .path-user .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background #block-cofe-page-title .container-inner, .paragraph--type--text-with-background .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .paragraph--type--text-with-background .views-title-wrapper .container-inner, .paragraph--type--text-with-background #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .paragraph--type--text-with-background nav .container-inner, .paragraph--type--text-with-background .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .paragraph--type--text-with-background #block-cofe-content .container-inner,
  .paragraph--type--text-with-background .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
  .page-node-type-daily-services-integration-page .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background .path-resources main .container-inner, .path-resources .paragraph--type--text-with-background main .container-inner, .paragraph--type--text-with-background .section-headers .container-inner, .paragraph--type--text-with-background .date .container-inner, .paragraph--type--text-with-background .paragraph--type--back-to-top .container-inner,
  .paragraph--type--text-with-background .paragraph--type--image .container-inner,
  .paragraph--type--text-with-background .paragraph--type--media .container-inner,
  .paragraph--type--text-with-background .paragraph--type--video .container-inner,
  .paragraph--type--text-with-background .paragraph--type--poll .container-inner,
  .paragraph--type--text-with-background .paragraph--type--documents .container-inner,
  .paragraph--type--text-with-background .paragraph--type--glossary-listing .container-inner, .paragraph--type--text-with-background .paragraph--type--copy-to-clipboard .container-inner, .paragraph--type--text-with-background #block-mainnavigation .container-inner, .paragraph--type--text-with-background #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .paragraph--type--text-with-background h2 .container-inner, .paragraph--type--text-with-background .views-related-tags .container-inner {
    margin-bottom: 30px;
    padding: 20px .5rem 10px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--text-with-background .container .container-inner, .paragraph--type--text-with-background .path-user #block-cofe-content .container-inner, .path-user .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background #block-cofe-page-title .container-inner, .paragraph--type--text-with-background .view-taxonomy-resources .views-title-wrapper .container-inner, .view-taxonomy-resources .paragraph--type--text-with-background .views-title-wrapper .container-inner, .paragraph--type--text-with-background #block-cofe-breadcrumbs nav .container-inner, #block-cofe-breadcrumbs .paragraph--type--text-with-background nav .container-inner, .paragraph--type--text-with-background .page-node-type-liturgy-page #block-cofe-content .container-inner, .page-node-type-liturgy-page .paragraph--type--text-with-background #block-cofe-content .container-inner,
  .paragraph--type--text-with-background .page-node-type-daily-services-integration-page #block-cofe-content .container-inner,
  .page-node-type-daily-services-integration-page .paragraph--type--text-with-background #block-cofe-content .container-inner, .paragraph--type--text-with-background .path-resources main .container-inner, .path-resources .paragraph--type--text-with-background main .container-inner, .paragraph--type--text-with-background .section-headers .container-inner, .paragraph--type--text-with-background .date .container-inner, .paragraph--type--text-with-background .paragraph--type--back-to-top .container-inner,
  .paragraph--type--text-with-background .paragraph--type--image .container-inner,
  .paragraph--type--text-with-background .paragraph--type--media .container-inner,
  .paragraph--type--text-with-background .paragraph--type--video .container-inner,
  .paragraph--type--text-with-background .paragraph--type--poll .container-inner,
  .paragraph--type--text-with-background .paragraph--type--documents .container-inner,
  .paragraph--type--text-with-background .paragraph--type--glossary-listing .container-inner, .paragraph--type--text-with-background .paragraph--type--copy-to-clipboard .container-inner, .paragraph--type--text-with-background #block-mainnavigation .container-inner, .paragraph--type--text-with-background #block-views-block-related-tags-block-1 h2 .container-inner, #block-views-block-related-tags-block-1 .paragraph--type--text-with-background h2 .container-inner, .paragraph--type--text-with-background .views-related-tags .container-inner {
    margin-bottom: 80px;
  }
}

.expand-toggle {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.09375em;
  color: #9669a9;
  position: relative;
  display: block;
  text-decoration: none;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 15px;
  padding-right: 40px;
}
@media (min-width: 45em) {
  .expand-toggle {
    padding-bottom: 15px;
  }
}
.no-js .expand-toggle {
  display: none;
}
.expand-toggle:before, .expand-toggle:after {
  content: "";
  display: block;
  height: 3px;
  width: 20px;
  background: #9669a9;
  position: absolute;
  right: 10px;
  top: 15px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.expand-toggle:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.expand-toggle.expand-toggle--open:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.expandable {
  border-bottom: 2px solid #e4e4e4;
  padding: 20px;
  background: #f5f5f5;
  overflow: hidden;
}

.form-block, .filters {
  max-width: 780px;
  margin: 20px auto;
  padding: 20px;
  clear: both;
  background: #f5f5f5;
}
@media (min-width: 49.375em) {
  .form-block, .filters {
    margin: 70px auto;
    padding: 80px 100px;
  }
}
.landing-header .form-block, .landing-header .filters {
  background: none;
  text-align: center;
}
@media (min-width: 49.375em) {
  .landing-header .form-block, .landing-header .filters {
    margin: -50px auto 30px;
    padding: 0px 100px;
  }
}
.landing-header .form-block .form-item, .landing-header .form-block .form-actions, .landing-header .form-block .button, .landing-header .form-block .site-footer .footer-nav .sign-in, .site-footer .footer-nav .landing-header .form-block .sign-in, .landing-header .form-block #block-fancylogin a, #block-fancylogin .landing-header .form-block a, .landing-header .form-block .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .landing-header .form-block input, .landing-header .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .landing-header .form-block a, .landing-header .form-block .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .landing-header .form-block a, .landing-header .filters .form-item, .landing-header .filters .form-actions, .landing-header .filters .button, .landing-header .filters .site-footer .footer-nav .sign-in, .site-footer .footer-nav .landing-header .filters .sign-in, .landing-header .filters #block-fancylogin a, #block-fancylogin .landing-header .filters a, .landing-header .filters .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .landing-header .filters input, .landing-header .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .landing-header .filters a, .landing-header .filters .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .landing-header .filters a {
  display: inline-block;
  margin-left: -4px;
  vertical-align: bottom;
}
.landing-header .form-block .form-item input, .landing-header .form-block .form-actions input, .landing-header .form-block .button input, .landing-header .form-block .site-footer .footer-nav .sign-in input, .site-footer .footer-nav .landing-header .form-block .sign-in input, .landing-header .form-block #block-fancylogin a input, #block-fancylogin .landing-header .form-block a input, .landing-header .form-block .xl-spotlight .find-church-text form input input, .xl-spotlight .find-church-text form .landing-header .form-block input input, .landing-header .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a input, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .landing-header .form-block a input, .landing-header .form-block .views-related-tags .views-field-term-node-tid a input, .views-related-tags .views-field-term-node-tid .landing-header .form-block a input, .landing-header .filters .form-item input, .landing-header .filters .form-actions input, .landing-header .filters .button input, .landing-header .filters .site-footer .footer-nav .sign-in input, .site-footer .footer-nav .landing-header .filters .sign-in input, .landing-header .filters #block-fancylogin a input, #block-fancylogin .landing-header .filters a input, .landing-header .filters .xl-spotlight .find-church-text form input input, .xl-spotlight .find-church-text form .landing-header .filters input input, .landing-header .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a input, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .landing-header .filters a input, .landing-header .filters .views-related-tags .views-field-term-node-tid a input, .views-related-tags .views-field-term-node-tid .landing-header .filters a input {
  box-sizing: border-box;
}
.form-block label, .filters label {
  font-size: 0.875em;
}
.form-block input, .form-block select, .form-block textarea, .filters input, .filters select, .filters textarea {
  background: #fff;
  border: 1px solid #000;
  display: block;
  margin-bottom: 1em;
  padding: 8px 15px;
  max-width: 100%;
  width: 100%;
}
.form-block select, .filters select {
  width: auto;
  padding: 7px 15px;
}
.form-block .button, .form-block .site-footer .footer-nav .sign-in, .site-footer .footer-nav .form-block .sign-in, .form-block #block-fancylogin a, #block-fancylogin .form-block a, .form-block .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .form-block input, .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .form-block a, .form-block .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .form-block a, .filters .button, .filters .site-footer .footer-nav .sign-in, .site-footer .footer-nav .filters .sign-in, .filters #block-fancylogin a, #block-fancylogin .filters a, .filters .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form .filters input, .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .filters a, .filters .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid .filters a {
  width: auto;
  background: #100b74;
  border: 1px solid #100b74;
  color: #fff;
  padding: 8px 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.form-block .button:hover, .form-block .site-footer .footer-nav .sign-in:hover, .site-footer .footer-nav .form-block .sign-in:hover, .form-block #block-fancylogin a:hover, #block-fancylogin .form-block a:hover, .form-block .xl-spotlight .find-church-text form input:hover, .xl-spotlight .find-church-text form .form-block input:hover, .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .form-block a:hover, .form-block .views-related-tags .views-field-term-node-tid a:hover, .views-related-tags .views-field-term-node-tid .form-block a:hover, .form-block .button:focus, .form-block .site-footer .footer-nav .sign-in:focus, .site-footer .footer-nav .form-block .sign-in:focus, .form-block #block-fancylogin a:focus, #block-fancylogin .form-block a:focus, .form-block .xl-spotlight .find-church-text form input:focus, .xl-spotlight .find-church-text form .form-block input:focus, .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .form-block a:focus, .form-block .views-related-tags .views-field-term-node-tid a:focus, .views-related-tags .views-field-term-node-tid .form-block a:focus, .filters .button:hover, .filters .site-footer .footer-nav .sign-in:hover, .site-footer .footer-nav .filters .sign-in:hover, .filters #block-fancylogin a:hover, #block-fancylogin .filters a:hover, .filters .xl-spotlight .find-church-text form input:hover, .xl-spotlight .find-church-text form .filters input:hover, .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .filters a:hover, .filters .views-related-tags .views-field-term-node-tid a:hover, .views-related-tags .views-field-term-node-tid .filters a:hover, .filters .button:focus, .filters .site-footer .footer-nav .sign-in:focus, .site-footer .footer-nav .filters .sign-in:focus, .filters #block-fancylogin a:focus, #block-fancylogin .filters a:focus, .filters .xl-spotlight .find-church-text form input:focus, .xl-spotlight .find-church-text form .filters input:focus, .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .filters a:focus, .filters .views-related-tags .views-field-term-node-tid a:focus, .views-related-tags .views-field-term-node-tid .filters a:focus {
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #fff;
}
.form-block .button:active, .form-block .site-footer .footer-nav .sign-in:active, .site-footer .footer-nav .form-block .sign-in:active, .form-block #block-fancylogin a:active, #block-fancylogin .form-block a:active, .form-block .xl-spotlight .find-church-text form input:active, .xl-spotlight .find-church-text form .form-block input:active, .form-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:active, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .form-block a:active, .form-block .views-related-tags .views-field-term-node-tid a:active, .views-related-tags .views-field-term-node-tid .form-block a:active, .filters .button:active, .filters .site-footer .footer-nav .sign-in:active, .site-footer .footer-nav .filters .sign-in:active, .filters #block-fancylogin a:active, #block-fancylogin .filters a:active, .filters .xl-spotlight .find-church-text form input:active, .xl-spotlight .find-church-text form .filters input:active, .filters .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a:active, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta .filters a:active, .filters .views-related-tags .views-field-term-node-tid a:active, .views-related-tags .views-field-term-node-tid .filters a:active {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.share-block, .share-this {
  text-align: center;
  margin-bottom: 2em;
}
.share-block b, .share-this b {
  font-weight: bold;
  text-transform: uppercase;
}
.share-block ul, .share-this ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}
.share-block ul li, .share-this ul li {
  display: inline-block;
  margin: 0 .8em;
}
.share-block ul li.socialLink a, .share-this ul li.socialLink a {
  font-size: 1.5em;
}
.share-block ul li a, .share-this ul li a {
  font-size: 1.4em;
}
.share-block ul li a:link, .share-block ul li a:visited, .share-this ul li a:link, .share-this ul li a:visited {
  color: #e4e4e4;
  text-decoration: none;
}
.share-block ul li a:hover, .share-block ul li a:focus, .share-this ul li a:hover, .share-this ul li a:focus {
  color: #fefefe;
}

/*
.share-this{
    position: relative;
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
    transform: none !important;
    .share-link{
        display: inline !important;
        padding: 0 !important;
    }
    span{
        display: inline !important;
        font-size: 1em !important;
    }
    ul{
        transition: all .3s;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        background: $grey;
        border-radius: 4px;
        width: 160px;
        padding: 7px 0 3px;
        opacity: 0;
        z-index: -1;
        &:after{
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 7px 7.5px 0 7.5px;
            border-color: $grey transparent transparent transparent;
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
        }
        li{
            line-height: 1;
            margin: 0 7px;
            float: none !important;
            width: auto !important;
            a{
                margin: 0;
                padding: 0 !important;
                float: none !important;
                width: auto !important;
                &:link, &:visited{
                    color: #fff !important;
                }
                [class^="icon"]{
                    margin: 0 !important;
                    color: #fff !important;
                    padding: 0 !important;
                }
            }
        }
    }
    &.share-this-open{
        ul{
            opacity: 1;
            z-index: 1;
            bottom: 15px;
        }
    }
}
*/
.site-footer .share-buttons {
  position: absolute;
  left: 50%;
  bottom: -38px;
  display: none;
  width: 294px;
  margin-left: -147px;
}
.mobile .site-footer .share-buttons {
  width: 317px;
  margin-left: -158px;
}
@media (min-width: 30em) {
  .site-footer .share-buttons {
    bottom: -45px;
  }
}
.site-footer .share-buttons ul li {
  margin: 0 10px;
}
@media (min-width: 30em) {
  .site-footer .share-buttons ul li {
    margin: 0 15px;
  }
}
.site-footer .share-buttons ul li a {
  position: relative;
  font-size: 1em;
  padding: 0;
  width: 30px;
  height: 30px;
}
.site-footer .share-buttons ul li a i {
  position: relative;
  right: -1px;
  vertical-align: middle;
}
.site-footer .share-buttons ul li a:after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #e9a065;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.site-footer .share-buttons ul li a:hover:after, .site-footer .share-buttons ul li a:focus:after {
  -webkit-transform: scale(1.1) rotate(45deg);
  -moz-transform: scale(1.1) rotate(45deg);
  -o-transform: scale(1.1) rotate(45deg);
  transform: scale(1.1) rotate(45deg);
}
.site-footer .share-buttons ul li.mobile-only {
  display: none;
}
.mobile .site-footer .share-buttons ul li.mobile-only {
  display: inline-block;
}
.site-footer .share-buttons .icon-facebook {
  color: #3b5998;
}
.site-footer .share-buttons .icon-twitter {
  color: #1da1f2;
}
.site-footer .share-buttons .icon-linkedin {
  color: #0077b5;
}
.site-footer .share-buttons .icon-whatsapp {
  color: #075e54;
}
.site-footer .share-buttons .icon-messenger {
  color: #0084ff;
}

.video-embed-field-responsive-video:after {
  padding-bottom: 0;
}

main {
  clear: both;
}

.parallax {
  min-height: 100px;
  min-height: 30vh;
  max-width: none;
  background-position: center top;
  background-size: cover;
  position: relative;
}
@media (min-width: 59.375em) {
  .parallax {
    background-attachment: fixed;
  }
  .parallax.parallax--small {
    min-height: 400px;
    min-height: 40vh;
  }
  .parallax.parallax--medium {
    min-height: 600px;
    min-height: 60vh;
  }
  .parallax.parallax--full {
    min-height: 800px;
    min-height: 100vh;
  }
  .mobile .parallax {
    min-height: 100px !important;
    min-height: 30vh !important;
  }
}

.paragraph--type--poll .poll-question {
  margin-bottom: 1em;
}
.paragraph--type--poll .field-group {
  margin-bottom: 0;
}

.paragraph--type--daily-prayer {
  text-align: center;
  max-width: 580px;
  margin: 20px 4%;
  padding: 20px 2% 60px 2%;
  border-top: 1px solid #dddddd;
  background: url(../img/daily-prayer.png) no-repeat bottom center;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--daily-prayer {
    margin: 30px 4%;
  }
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer {
    margin: 80px auto;
    padding: 20px 0 60px 0;
  }
}
.paragraph--type--daily-prayer .daily-prayer-toggle {
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  margin: 20px 0;
  line-height: 1;
  display: block;
  -webkit-transition: margin 0.5s;
  -moz-transition: margin 0.5s;
  -o-transition: margin 0.5s;
  transition: margin 0.5s;
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer .daily-prayer-toggle {
    margin: 25px 0 45px;
  }
}
.paragraph--type--daily-prayer .daily-prayer-toggle svg {
  vertical-align: unset;
  margin-right: 8px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer .daily-prayer-toggle.daily-prayer-toggle--closed {
    margin: 25px 0 35px;
  }
}
.paragraph--type--daily-prayer .daily-prayer-toggle.daily-prayer-toggle--closed svg {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.paragraph--type--daily-prayer h2, .paragraph--type--daily-prayer h3, .paragraph--type--daily-prayer h4 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 22px;
  color: #9669a9;
  margin-bottom: 15px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--daily-prayer h2, .paragraph--type--daily-prayer h3, .paragraph--type--daily-prayer h4 {
    font-size: 28px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer h2, .paragraph--type--daily-prayer h3, .paragraph--type--daily-prayer h4 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.paragraph--type--daily-prayer p {
  font-size: 16px;
  line-height: 1.84;
  font-weight: 500;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--daily-prayer p {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer p {
    font-size: 18px;
  }
}
.paragraph--type--daily-prayer small {
  font-size: 100%;
  text-transform: uppercase;
}
.paragraph--type--daily-prayer .prayer-share {
  text-transform: uppercase;
  margin: 30px 0 20px;
  padding-top: 30px;
  position: relative;
}
.paragraph--type--daily-prayer .prayer-share:before {
  content: '';
  display: block;
  background-color: #e9a065;
  height: 2px;
  width: 100px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 45em) {
  .paragraph--type--daily-prayer .prayer-share {
    margin: 35px 0;
    padding-top: 45px;
  }
}
.paragraph--type--daily-prayer .prayer-share a {
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  height: 30px;
  width: 30px;
  margin: 0 0 0 20px;
}
.paragraph--type--daily-prayer .prayer-share a i {
  vertical-align: middle;
}
.paragraph--type--daily-prayer .prayer-share a i.icon-facebook {
  color: #3E6399;
}
.paragraph--type--daily-prayer .prayer-share a i.icon-twitter {
  color: #00AAE3;
}
.paragraph--type--daily-prayer .prayer-share a:after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #e9a065;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.paragraph--type--daily-prayer .prayer-share a:hover:after, .paragraph--type--daily-prayer .prayer-share a:focus:after {
  -webkit-transform: scale(1.1) rotate(45deg);
  -moz-transform: scale(1.1) rotate(45deg);
  -o-transform: scale(1.1) rotate(45deg);
  transform: scale(1.1) rotate(45deg);
}

.paragraph--type--documents .container-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 45em) {
  .paragraph--type--documents .container-inner ul {
    columns: 2;
    column-gap: 2rem;
  }
}
.paragraph--type--documents a {
  text-decoration: none;
  border-bottom: 1px solid #e9a065;
  font-weight: normal;
}
.paragraph--type--documents a:hover, .paragraph--type--documents a:focus {
  border-bottom: 2px solid #000;
}

.paragraph--type--app-download {
  clear: both;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--app-download {
    margin-bottom: 30px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--app-download {
    margin-bottom: 80px;
  }
}
.paragraph--type--app-download h2 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 20px;
  line-height: 1.88;
  letter-spacing: 0.03125em;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--app-download h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--app-download h2 {
    font-size: 30px;
    margin-bottom: 80px;
  }
}
.page-node-type-landing-page .paragraph--type--app-download h2, .page-node-type-page .paragraph--type--app-download h2, .page-node-type-article .paragraph--type--app-download h2, .page-node-type-storytelling-page .paragraph--type--app-download h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .page-node-type-landing-page .paragraph--type--app-download h2, .page-node-type-page .paragraph--type--app-download h2, .page-node-type-article .paragraph--type--app-download h2, .page-node-type-storytelling-page .paragraph--type--app-download h2 {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .page-node-type-landing-page .paragraph--type--app-download h2, .page-node-type-page .paragraph--type--app-download h2, .page-node-type-article .paragraph--type--app-download h2, .page-node-type-storytelling-page .paragraph--type--app-download h2 {
    font-size: 18px;
    margin-bottom: 107px;
  }
}
.page-node-type-landing-page .paragraph--type--app-download h2:after, .page-node-type-page .paragraph--type--app-download h2:after, .page-node-type-article .paragraph--type--app-download h2:after, .page-node-type-storytelling-page .paragraph--type--app-download h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #e9a065;
}
@media (min-width: 45em) {
  .page-node-type-landing-page .paragraph--type--app-download h2:after, .page-node-type-page .paragraph--type--app-download h2:after, .page-node-type-article .paragraph--type--app-download h2:after, .page-node-type-storytelling-page .paragraph--type--app-download h2:after {
    width: 100px;
    bottom: -30px;
  }
}
.paragraph--type--app-download article, .paragraph--type--app-download div {
  display: inline-block;
}
.paragraph--type--app-download article a, .paragraph--type--app-download div a {
  text-decoration: none;
}
@media (min-width: 45em) {
  .paragraph--type--app-download article {
    padding: 0 20px;
  }
}

.paragraph--type--copy-to-clipboard {
  text-align: center;
}

.paragraph--type--glossary-listing form {
  margin-left: -1rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 38.125em) {
  .paragraph--type--glossary-listing form {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.paragraph--type--glossary-listing form .form-item {
  margin-left: 1rem;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 2;
  flex-grow: 2;
}
.paragraph--type--glossary-listing form .js-form-type-textfield {
  width: 100%;
}
@media (min-width: 45em) {
  .paragraph--type--glossary-listing form .js-form-type-textfield {
    max-width: 300px;
  }
}
.paragraph--type--glossary-listing form .form-actions {
  width: 100%;
  margin-left: 1rem;
}
.paragraph--type--glossary-listing ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.paragraph--type--glossary-listing ul li {
  margin-bottom: 1rem;
}
.paragraph--type--glossary-listing ul li h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 45em) {
  .paragraph--type--glossary-listing ul li h3 {
    font-size: 18px;
  }
}

.paragraph--type--video .media-video img {
  display: none;
}

.paragraph--type--text #mc_embed_signup, .form-action__links ul li #mc_embed_signup {
  clear: none;
  overflow: hidden;
}

figure div,
.paragraph--type--image .media-image {
  position: relative;
}

.paragraph--type--image .media-image img {
  width: 100%;
}

.credit {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.xl-spotlight--right .credit {
  right: 20px;
}
.xl-spotlight--left .credit {
  right: auto;
  left: 20px;
}

:target:before {
  content: "";
  display: block;
  height: 45px;
  /* fixed header height*/
  margin: -45px 0 0;
  /* negative fixed header height */
}

.webform-confirmation-modal .ui-button {
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid #e9a065 !important;
  background: none !important;
  outline: none !important;
  color: #a688b7;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 22px;
  font-family: cursive;
}
.webform-confirmation-modal .ui-button .ui-button-icon-primary {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='213' height='213' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3E background %3C/title%3E%3Cpath fill='none' d='M-1-1h582v402H-1z'/%3E%3Ctitle%3E Layer 1 %3C/title%3E%3Cpath fill='%23a688b7' clip-rule='evenodd' fill-rule='evenodd' d='M131.8 106.5l76-76c7-7 7-18.3 0-25.3s-18.4-7-25.4 0l-76 76-75.8-76c-7-7-18.4-7-25.4 0s-7 18.4 0 25.4l76 76-76 75.8c-7 7-7 18.3 0 25.3s18.4 7 25.4 0l76-76 75.8 76c7 7 18.3 7 25.3 0s7-18.3 0-25.3l-76-76z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 10px auto;
}

.page-node-type-page #block-cofe-content > .paragraph--type--related-content .container, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-user #block-cofe-content, .path-user .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-page-title, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-title-wrapper, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .page-node-type-page #block-cofe-content > .paragraph--type--related-content nav, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-resources main, .path-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content main, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .section-headers, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .date, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--back-to-top,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--image,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--media,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--video,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--poll,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--documents,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--glossary-listing, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--copy-to-clipboard, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-mainnavigation, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .page-node-type-page #block-cofe-content > .paragraph--type--related-content h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-related-tags {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .container > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-user #block-cofe-content > h2, .path-user .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-page-title > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .view-taxonomy-resources .views-title-wrapper > h2, .view-taxonomy-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-title-wrapper > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-breadcrumbs nav > h2, #block-cofe-breadcrumbs .page-node-type-page #block-cofe-content > .paragraph--type--related-content nav > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-liturgy-page #block-cofe-content > h2, .page-node-type-liturgy-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-daily-services-integration-page #block-cofe-content > h2,
.page-node-type-daily-services-integration-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-resources main > h2, .path-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content main > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .section-headers > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .date > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--back-to-top > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--image > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--media > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--video > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--poll > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--documents > h2,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--glossary-listing > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--copy-to-clipboard > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-mainnavigation > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-views-block-related-tags-block-1 h2 > h2, #block-views-block-related-tags-block-1 .page-node-type-page #block-cofe-content > .paragraph--type--related-content h2 > h2, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-related-tags > h2 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .container > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-user #block-cofe-content > a, .path-user .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-page-title > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .view-taxonomy-resources .views-title-wrapper > a, .view-taxonomy-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-title-wrapper > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-breadcrumbs nav > a, #block-cofe-breadcrumbs .page-node-type-page #block-cofe-content > .paragraph--type--related-content nav > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-liturgy-page #block-cofe-content > a, .page-node-type-liturgy-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-daily-services-integration-page #block-cofe-content > a,
.page-node-type-daily-services-integration-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-resources main > a, .path-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content main > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .section-headers > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .date > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--back-to-top > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--image > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--media > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--video > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--poll > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--documents > a,
.page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--glossary-listing > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--copy-to-clipboard > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-mainnavigation > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-views-block-related-tags-block-1 h2 > a, #block-views-block-related-tags-block-1 .page-node-type-page #block-cofe-content > .paragraph--type--related-content h2 > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-related-tags > a {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media (min-width: 49.375em) {
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .container > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-user #block-cofe-content > a, .path-user .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-page-title > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .view-taxonomy-resources .views-title-wrapper > a, .view-taxonomy-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-title-wrapper > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-breadcrumbs nav > a, #block-cofe-breadcrumbs .page-node-type-page #block-cofe-content > .paragraph--type--related-content nav > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-liturgy-page #block-cofe-content > a, .page-node-type-liturgy-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .page-node-type-daily-services-integration-page #block-cofe-content > a,
  .page-node-type-daily-services-integration-page .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-cofe-content > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .path-resources main > a, .path-resources .page-node-type-page #block-cofe-content > .paragraph--type--related-content main > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .section-headers > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .date > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--back-to-top > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--image > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--media > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--video > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--poll > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--documents > a,
  .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--glossary-listing > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .paragraph--type--copy-to-clipboard > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-mainnavigation > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content #block-views-block-related-tags-block-1 h2 > a, #block-views-block-related-tags-block-1 .page-node-type-page #block-cofe-content > .paragraph--type--related-content h2 > a, .page-node-type-page #block-cofe-content > .paragraph--type--related-content .views-related-tags > a {
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
}

.embedded-entity.align-left {
  margin-right: 1em;
}
.embedded-entity.align-right {
  margin-left: 1em;
}
.embedded-entity.align-center {
  margin: 0 1em;
}
.embedded-entity.align-center figure {
  text-align: center;
}

.paragraph {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}
.paragraph.no-top-padding {
  padding-top: 0;
}
.paragraph.no-bottom-padding {
  padding-bottom: 0;
}

@media (min-width: 61.25em) {
  .paragraph {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.paragraph--type--a-church-near-you-search article.media-image {
  margin-bottom: 0;
}

@media (min-width: 45em) {
  .paragraph--type--a-church-near-you-search div.find-church-text {
    bottom: auto;
    padding: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 68.75em) {
  .paragraph--type--a-church-near-you-search div.find-church-text {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.paragraph--type--app-download .paragraph {
  padding-top: 0;
  padding-bottom: 0;
}

.paragraph--type--back-to-top .container-inner {
  margin-bottom: 0;
  margin-top: 0;
}

.backToTop-link {
  text-decoration: none;
}

.backToTop-icon {
  display: inline-block;
  margin: 6px;
  width: 25px;
  height: 25px;
  background: #e9a065;
  vertical-align: middle;
  position: relative;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.backToTop-icon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.backToTop-link:focus .backToTop-icon, .backToTop-link:hover .backToTop-icon {
  background-color: #896242;
  -webkit-box-shadow: 0 0 0 2px #e9a065;
  -moz-box-shadow: 0 0 0 2px #e9a065;
  box-shadow: 0 0 0 2px #e9a065;
}
.backToTop-link:focus .backToTop-icon:before, .backToTop-link:hover .backToTop-icon:before {
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
}

.backToTop-text {
  display: inline-block;
  font-size: 18px;
  color: #000;
  margin-left: 16px;
  vertical-align: middle;
  -webkit-box-shadow: 0 1px 0 0 transparent;
  -moz-box-shadow: 0 1px 0 0 transparent;
  box-shadow: 0 1px 0 0 transparent;
  -webkit-transition: box-shadow 0.5s;
  -moz-transition: box-shadow 0.5s;
  -o-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}
.backToTop-link:focus .backToTop-text, .backToTop-link:hover .backToTop-text {
  -webkit-box-shadow: 0 1px 0 0 #e9a065;
  -moz-box-shadow: 0 1px 0 0 #e9a065;
  box-shadow: 0 1px 0 0 #e9a065;
}

.paragraph--type--banner {
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.paragraph--type--banner.text-color-light {
  color: #fff;
}
.paragraph--type--banner.text-color-dark {
  color: #000;
}
.paragraph--type--banner .container, .paragraph--type--banner .path-user #block-cofe-content, .path-user .paragraph--type--banner #block-cofe-content, .paragraph--type--banner #block-cofe-page-title, .paragraph--type--banner .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--banner .views-title-wrapper, .paragraph--type--banner #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--banner nav, .paragraph--type--banner .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--banner #block-cofe-content,
.paragraph--type--banner .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .paragraph--type--banner #block-cofe-content, .paragraph--type--banner .path-resources main, .path-resources .paragraph--type--banner main, .paragraph--type--banner .section-headers, .paragraph--type--banner .date, .paragraph--type--banner .paragraph--type--back-to-top,
.paragraph--type--banner .paragraph--type--image,
.paragraph--type--banner .paragraph--type--media,
.paragraph--type--banner .paragraph--type--video,
.paragraph--type--banner .paragraph--type--poll,
.paragraph--type--banner .paragraph--type--documents,
.paragraph--type--banner .paragraph--type--glossary-listing, .paragraph--type--banner .paragraph--type--copy-to-clipboard, .paragraph--type--banner #block-mainnavigation, .paragraph--type--banner #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--banner h2, .paragraph--type--banner .views-related-tags {
  padding-bottom: 50px;
  padding-top: 50px;
}
.paragraph--type--banner .container > .media-image, .paragraph--type--banner .path-user #block-cofe-content > .media-image, .path-user .paragraph--type--banner #block-cofe-content > .media-image, .paragraph--type--banner #block-cofe-page-title > .media-image, .paragraph--type--banner .view-taxonomy-resources .views-title-wrapper > .media-image, .view-taxonomy-resources .paragraph--type--banner .views-title-wrapper > .media-image, .paragraph--type--banner #block-cofe-breadcrumbs nav > .media-image, #block-cofe-breadcrumbs .paragraph--type--banner nav > .media-image, .paragraph--type--banner .page-node-type-liturgy-page #block-cofe-content > .media-image, .page-node-type-liturgy-page .paragraph--type--banner #block-cofe-content > .media-image,
.paragraph--type--banner .page-node-type-daily-services-integration-page #block-cofe-content > .media-image,
.page-node-type-daily-services-integration-page .paragraph--type--banner #block-cofe-content > .media-image, .paragraph--type--banner .path-resources main > .media-image, .path-resources .paragraph--type--banner main > .media-image, .paragraph--type--banner .section-headers > .media-image, .paragraph--type--banner .date > .media-image, .paragraph--type--banner .paragraph--type--back-to-top > .media-image,
.paragraph--type--banner .paragraph--type--image > .media-image,
.paragraph--type--banner .paragraph--type--media > .media-image,
.paragraph--type--banner .paragraph--type--video > .media-image,
.paragraph--type--banner .paragraph--type--poll > .media-image,
.paragraph--type--banner .paragraph--type--documents > .media-image,
.paragraph--type--banner .paragraph--type--glossary-listing > .media-image, .paragraph--type--banner .paragraph--type--copy-to-clipboard > .media-image, .paragraph--type--banner #block-mainnavigation > .media-image, .paragraph--type--banner #block-views-block-related-tags-block-1 h2 > .media-image, #block-views-block-related-tags-block-1 .paragraph--type--banner h2 > .media-image, .paragraph--type--banner .views-related-tags > .media-image {
  margin-bottom: 50px;
  padding: 0 20px;
}
.paragraph--type--banner .info-wrapper {
  font-size: 1.8em;
  text-align: center;
}
.paragraph--type--banner .info-wrapper a {
  border: 3px solid #fff;
  color: #e3c03c;
  display: inline-block;
  font-size: 16px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.paragraph--type--banner .info-wrapper a:hover {
  background: #fff;
  color: #100b74;
}
.paragraph--type--banner .info-wrapper .embedded-entity {
  margin: 0;
}

@media (min-width: 46.25em) {
  .paragraph--type--banner .container, .paragraph--type--banner .path-user #block-cofe-content, .path-user .paragraph--type--banner #block-cofe-content, .paragraph--type--banner #block-cofe-page-title, .paragraph--type--banner .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--banner .views-title-wrapper, .paragraph--type--banner #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--banner nav, .paragraph--type--banner .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--banner #block-cofe-content,
  .paragraph--type--banner .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .paragraph--type--banner #block-cofe-content, .paragraph--type--banner .path-resources main, .path-resources .paragraph--type--banner main, .paragraph--type--banner .section-headers, .paragraph--type--banner .date, .paragraph--type--banner .paragraph--type--back-to-top,
  .paragraph--type--banner .paragraph--type--image,
  .paragraph--type--banner .paragraph--type--media,
  .paragraph--type--banner .paragraph--type--video,
  .paragraph--type--banner .paragraph--type--poll,
  .paragraph--type--banner .paragraph--type--documents,
  .paragraph--type--banner .paragraph--type--glossary-listing, .paragraph--type--banner .paragraph--type--copy-to-clipboard, .paragraph--type--banner #block-mainnavigation, .paragraph--type--banner #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--banner h2, .paragraph--type--banner .views-related-tags {
    padding-bottom: 75px;
    padding-top: 75px;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .paragraph--type--banner .container > .media-image, .paragraph--type--banner .path-user #block-cofe-content > .media-image, .path-user .paragraph--type--banner #block-cofe-content > .media-image, .paragraph--type--banner #block-cofe-page-title > .media-image, .paragraph--type--banner .view-taxonomy-resources .views-title-wrapper > .media-image, .view-taxonomy-resources .paragraph--type--banner .views-title-wrapper > .media-image, .paragraph--type--banner #block-cofe-breadcrumbs nav > .media-image, #block-cofe-breadcrumbs .paragraph--type--banner nav > .media-image, .paragraph--type--banner .page-node-type-liturgy-page #block-cofe-content > .media-image, .page-node-type-liturgy-page .paragraph--type--banner #block-cofe-content > .media-image,
  .paragraph--type--banner .page-node-type-daily-services-integration-page #block-cofe-content > .media-image,
  .page-node-type-daily-services-integration-page .paragraph--type--banner #block-cofe-content > .media-image, .paragraph--type--banner .path-resources main > .media-image, .path-resources .paragraph--type--banner main > .media-image, .paragraph--type--banner .section-headers > .media-image, .paragraph--type--banner .date > .media-image, .paragraph--type--banner .paragraph--type--back-to-top > .media-image,
  .paragraph--type--banner .paragraph--type--image > .media-image,
  .paragraph--type--banner .paragraph--type--media > .media-image,
  .paragraph--type--banner .paragraph--type--video > .media-image,
  .paragraph--type--banner .paragraph--type--poll > .media-image,
  .paragraph--type--banner .paragraph--type--documents > .media-image,
  .paragraph--type--banner .paragraph--type--glossary-listing > .media-image, .paragraph--type--banner .paragraph--type--copy-to-clipboard > .media-image, .paragraph--type--banner #block-mainnavigation > .media-image, .paragraph--type--banner #block-views-block-related-tags-block-1 h2 > .media-image, #block-views-block-related-tags-block-1 .paragraph--type--banner h2 > .media-image, .paragraph--type--banner .views-related-tags > .media-image {
    max-width: 50%;
    padding: 0 50px;
    margin-bottom: 0;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .paragraph--type--banner .info-wrapper {
    font-size: 2.1em;
    max-width: 50%;
    padding: 0 50px;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
  .paragraph--type--banner .info-wrapper p {
    margin-bottom: 50px;
  }
  .paragraph--type--banner .info-wrapper a {
    font-size: 18px;
    min-width: 270px;
  }
  .paragraph--type--banner .info-wrapper .embedded-entity {
    margin: 0 -50px;
  }
}
@media (min-width: 61.25em) {
  .paragraph--type--banner .container, .paragraph--type--banner .path-user #block-cofe-content, .path-user .paragraph--type--banner #block-cofe-content, .paragraph--type--banner #block-cofe-page-title, .paragraph--type--banner .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--banner .views-title-wrapper, .paragraph--type--banner #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--banner nav, .paragraph--type--banner .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--banner #block-cofe-content,
  .paragraph--type--banner .page-node-type-daily-services-integration-page #block-cofe-content,
  .page-node-type-daily-services-integration-page .paragraph--type--banner #block-cofe-content, .paragraph--type--banner .path-resources main, .path-resources .paragraph--type--banner main, .paragraph--type--banner .section-headers, .paragraph--type--banner .date, .paragraph--type--banner .paragraph--type--back-to-top,
  .paragraph--type--banner .paragraph--type--image,
  .paragraph--type--banner .paragraph--type--media,
  .paragraph--type--banner .paragraph--type--video,
  .paragraph--type--banner .paragraph--type--poll,
  .paragraph--type--banner .paragraph--type--documents,
  .paragraph--type--banner .paragraph--type--glossary-listing, .paragraph--type--banner .paragraph--type--copy-to-clipboard, .paragraph--type--banner #block-mainnavigation, .paragraph--type--banner #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--banner h2, .paragraph--type--banner .views-related-tags {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .paragraph--type--banner .info-wrapper {
    font-size: 2.25em;
  }
}
.paragraph--type--block {
  background-position: center;
  padding: 50px 0;
  text-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.paragraph--type--block .container, .paragraph--type--block .path-user #block-cofe-content, .path-user .paragraph--type--block #block-cofe-content, .paragraph--type--block #block-cofe-page-title, .paragraph--type--block .view-taxonomy-resources .views-title-wrapper, .view-taxonomy-resources .paragraph--type--block .views-title-wrapper, .paragraph--type--block #block-cofe-breadcrumbs nav, #block-cofe-breadcrumbs .paragraph--type--block nav, .paragraph--type--block .page-node-type-liturgy-page #block-cofe-content, .page-node-type-liturgy-page .paragraph--type--block #block-cofe-content,
.paragraph--type--block .page-node-type-daily-services-integration-page #block-cofe-content,
.page-node-type-daily-services-integration-page .paragraph--type--block #block-cofe-content, .paragraph--type--block .path-resources main, .path-resources .paragraph--type--block main, .paragraph--type--block .section-headers, .paragraph--type--block .date, .paragraph--type--block .paragraph--type--back-to-top,
.paragraph--type--block .paragraph--type--image,
.paragraph--type--block .paragraph--type--media,
.paragraph--type--block .paragraph--type--video,
.paragraph--type--block .paragraph--type--poll,
.paragraph--type--block .paragraph--type--documents,
.paragraph--type--block .paragraph--type--glossary-listing, .paragraph--type--block .paragraph--type--copy-to-clipboard, .paragraph--type--block #block-mainnavigation, .paragraph--type--block #block-views-block-related-tags-block-1 h2, #block-views-block-related-tags-block-1 .paragraph--type--block h2, .paragraph--type--block .views-related-tags {
  max-width: 550px;
}
.paragraph--type--block .container > a, .paragraph--type--block .path-user #block-cofe-content > a, .path-user .paragraph--type--block #block-cofe-content > a, .paragraph--type--block #block-cofe-page-title > a, .paragraph--type--block .view-taxonomy-resources .views-title-wrapper > a, .view-taxonomy-resources .paragraph--type--block .views-title-wrapper > a, .paragraph--type--block #block-cofe-breadcrumbs nav > a, #block-cofe-breadcrumbs .paragraph--type--block nav > a, .paragraph--type--block .page-node-type-liturgy-page #block-cofe-content > a, .page-node-type-liturgy-page .paragraph--type--block #block-cofe-content > a,
.paragraph--type--block .page-node-type-daily-services-integration-page #block-cofe-content > a,
.page-node-type-daily-services-integration-page .paragraph--type--block #block-cofe-content > a, .paragraph--type--block .path-resources main > a, .path-resources .paragraph--type--block main > a, .paragraph--type--block .section-headers > a, .paragraph--type--block .date > a, .paragraph--type--block .paragraph--type--back-to-top > a,
.paragraph--type--block .paragraph--type--image > a,
.paragraph--type--block .paragraph--type--media > a,
.paragraph--type--block .paragraph--type--video > a,
.paragraph--type--block .paragraph--type--poll > a,
.paragraph--type--block .paragraph--type--documents > a,
.paragraph--type--block .paragraph--type--glossary-listing > a, .paragraph--type--block .paragraph--type--copy-to-clipboard > a, .paragraph--type--block #block-mainnavigation > a, .paragraph--type--block #block-views-block-related-tags-block-1 h2 > a, #block-views-block-related-tags-block-1 .paragraph--type--block h2 > a, .paragraph--type--block .views-related-tags > a {
  border: 3px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.paragraph--type--block .container > a:hover, .paragraph--type--block .path-user #block-cofe-content > a:hover, .path-user .paragraph--type--block #block-cofe-content > a:hover, .paragraph--type--block #block-cofe-page-title > a:hover, .paragraph--type--block .view-taxonomy-resources .views-title-wrapper > a:hover, .view-taxonomy-resources .paragraph--type--block .views-title-wrapper > a:hover, .paragraph--type--block #block-cofe-breadcrumbs nav > a:hover, #block-cofe-breadcrumbs .paragraph--type--block nav > a:hover, .paragraph--type--block .page-node-type-liturgy-page #block-cofe-content > a:hover, .page-node-type-liturgy-page .paragraph--type--block #block-cofe-content > a:hover,
.paragraph--type--block .page-node-type-daily-services-integration-page #block-cofe-content > a:hover,
.page-node-type-daily-services-integration-page .paragraph--type--block #block-cofe-content > a:hover, .paragraph--type--block .path-resources main > a:hover, .path-resources .paragraph--type--block main > a:hover, .paragraph--type--block .section-headers > a:hover, .paragraph--type--block .date > a:hover, .paragraph--type--block .paragraph--type--back-to-top > a:hover,
.paragraph--type--block .paragraph--type--image > a:hover,
.paragraph--type--block .paragraph--type--media > a:hover,
.paragraph--type--block .paragraph--type--video > a:hover,
.paragraph--type--block .paragraph--type--poll > a:hover,
.paragraph--type--block .paragraph--type--documents > a:hover,
.paragraph--type--block .paragraph--type--glossary-listing > a:hover, .paragraph--type--block .paragraph--type--copy-to-clipboard > a:hover, .paragraph--type--block #block-mainnavigation > a:hover, .paragraph--type--block #block-views-block-related-tags-block-1 h2 > a:hover, #block-views-block-related-tags-block-1 .paragraph--type--block h2 > a:hover, .paragraph--type--block .views-related-tags > a:hover {
  background: #fff;
  color: #100b74;
}
.paragraph--type--block .media-image {
  margin-bottom: 20px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 46.25em) {
  .paragraph--type--block .media-image {
    margin-bottom: 50px;
  }
}
.paragraph--type--detailed-accordion.paragraph {
  padding-bottom: 0;
}
.paragraph--type--detailed-accordion.paragraph .container-inner {
  margin-bottom: 0;
  margin-top: 0;
}
.paragraph--type--detailed-accordion .paragraph {
  padding-bottom: 0;
  padding-top: 0;
}
.paragraph--type--detailed-accordion .accordion-item {
  padding-bottom: 24px;
}
@media (min-width: 61.25em) {
  .paragraph--type--detailed-accordion .accordion-item {
    padding-bottom: 48px;
  }
}

.paragraph--type--document-library {
  padding: 30px 0;
}
.paragraph--type--document-library .inner-container {
  margin-bottom: 50px;
}
.paragraph--type--document-library .downloads__list {
  margin: 0;
}
.paragraph--type--document-library .pager__items {
  margin-top: 20px;
}

.paragraph--type--group-full-screen-messages.paragraph {
  padding-bottom: 0;
  padding-top: 0;
}

div.paragraph--type--hero-image .media-image picture {
  width: 100%;
}

.paragraph--type--hero-image-full-width.paragraph {
  padding-bottom: 0;
  padding-top: 0;
}

.hero-image-story-bg {
  max-width: none;
  background-position: center top;
  background-size: cover;
  background-color: #9669a9;
}
@media (min-width: 45em) {
  .js .hero-image-story-bg img {
    opacity: 0;
  }
}
@media (min-width: 45em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- {
    background: none;
  }
}
@media (max-width: 38.115em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- h1 {
    font-size: 30px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: .7em;
  }
}
@media (min-width: 38.125em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- h1 {
    text-align: center;
    width: 100%;
    left: 0;
  }
  .toolbar-vertical.toolbar-tray-open .hero-image-story-bg .paragraph--type--hero-story-page- h1 {
    font-size: 3.28947vw;
  }
}
@media (min-width: 81em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- h1 {
    font-size: 50px !important;
  }
}
@media (min-width: 45em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- h1:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 20%;
    bottom: -35%;
    left: 50%;
    background: #e9a065;
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    transform: translatex(-50%);
  }
}
.hero-image-story-bg .paragraph--type--hero-story-page- p {
  text-transform: none;
  font-family: "Cabin", tahoma, arial, sans-serif;
  line-height: 1.88;
  letter-spacing: 0.03125em;
}
@media (max-width: 38.115em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- p {
    font-size: 18px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (min-width: 38.125em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- p {
    font-size: 30px;
    top: 41%;
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 38.125em) {
  .hero-image-story-bg .paragraph--type--hero-story-page- .cta a {
    left: 50%;
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    -o-transform: translatex(-50%);
    transform: translatex(-50%);
  }
}

.paragraph--type--hero-story-page-.has-background {
  max-width: none;
  padding: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (min-width: 38.125em) {
  .paragraph--type--hero-story-page-.has-background .inner-container {
    background: none;
  }
}
.paragraph--type--hero-story-page- .inner-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  position: relative;
}

.paragraph--type--image .media-image.media {
  display: block;
  margin-bottom: 0;
}
.paragraph--type--image .media-image.media pictures {
  margin-left: auto;
  margin-right: auto;
}

.paragraph--type--media .media {
  display: block;
}

.media-facebook-post {
  text-align: center;
}

div.paragraph.paragraph--type--quote blockquote {
  margin-left: auto;
  margin-right: auto;
}

.paragraph--type--quotes-group .paragraph {
  padding-top: 0;
  padding-bottom: 0;
}
.paragraph--type--quotes-group .paragraph blockquote {
  margin: 0;
}

.paragraph--type--section-header {
  max-width: 1280px;
}
.paragraph--type--section-header.paragraph {
  margin: 0 auto;
}
.paragraph--type--section-header .section-header {
  padding: 0 10px;
}
@media (min-width: 45em) {
  .paragraph--type--section-header .section-header {
    margin: 0 auto;
    padding: 0 20px;
    width: 64%;
  }
}

.paragraph--type--social-campaign-hero {
  overflow: hidden;
}

.paragraph--type--split-panel.paragraph {
  padding-bottom: 0;
  padding-top: 0;
}
.paragraph--type--split-panel .paragraph {
  min-height: 50vw;
}

@media (min-width: 46.25em) {
  .paragraph--type--split-panel {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .paragraph--type--split-panel .paragraph {
    max-width: 50%;
    min-height: 23vw;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
}
.paragraph--type--xl-spotlight {
  padding-bottom: 30px;
  padding-top: 30px;
}

.paragraph--type--text.paragraph .container-inner, .form-action__links ul li.paragraph .container-inner {
  margin-bottom: 0;
  margin-top: 0;
}

.paragraph--type--text-with-background.paragraph .container-inner {
  margin-bottom: 0;
  margin-top: 0;
}

.paragraph--type--twinned-spotlight {
  clear: both;
}
.paragraph--type--twinned-spotlight:before, .paragraph--type--twinned-spotlight:after {
  content: "";
  display: table;
}
.paragraph--type--twinned-spotlight:after {
  clear: both;
}
@media (max-width: 49.365em) {
  .paragraph--type--twinned-spotlight {
    padding: 0 .5rem;
  }
}
.paragraph--type--twinned-spotlight h3 {
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 20px;
  line-height: 1.88;
  letter-spacing: 0.03125em;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight h3 {
    font-size: 30px;
    margin-bottom: 80px;
  }
}
.page-node-type-landing-page .paragraph--type--twinned-spotlight h3, .page-node-type-page .paragraph--type--twinned-spotlight h3, .page-node-type-article .paragraph--type--twinned-spotlight h3, .page-node-type-storytelling-page .paragraph--type--twinned-spotlight h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .page-node-type-landing-page .paragraph--type--twinned-spotlight h3, .page-node-type-page .paragraph--type--twinned-spotlight h3, .page-node-type-article .paragraph--type--twinned-spotlight h3, .page-node-type-storytelling-page .paragraph--type--twinned-spotlight h3 {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .page-node-type-landing-page .paragraph--type--twinned-spotlight h3, .page-node-type-page .paragraph--type--twinned-spotlight h3, .page-node-type-article .paragraph--type--twinned-spotlight h3, .page-node-type-storytelling-page .paragraph--type--twinned-spotlight h3 {
    font-size: 18px;
    margin-bottom: 107px;
  }
}
.page-node-type-landing-page .paragraph--type--twinned-spotlight h3:after, .page-node-type-page .paragraph--type--twinned-spotlight h3:after, .page-node-type-article .paragraph--type--twinned-spotlight h3:after, .page-node-type-storytelling-page .paragraph--type--twinned-spotlight h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50px;
  height: 2px;
  background: #e9a065;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 45em) {
  .page-node-type-landing-page .paragraph--type--twinned-spotlight h3:after, .page-node-type-page .paragraph--type--twinned-spotlight h3:after, .page-node-type-article .paragraph--type--twinned-spotlight h3:after, .page-node-type-storytelling-page .paragraph--type--twinned-spotlight h3:after {
    width: 100px;
    bottom: -30px;
  }
}
.paragraph--type--twinned-spotlight .paragraph {
  padding-bottom: 0;
  padding-top: 0;
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    text-align: left;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 {
  text-transform: none;
  text-align: left;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3em;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 {
    font-size: 24px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 {
    font-size: 30px;
    margin-bottom: 26px;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3:after, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4:after,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3:after,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4:after {
  display: none;
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3 a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4 a,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3 a,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 a {
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3 a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4 a,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3 a,
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 a {
    border-bottom: 1px solid #e9a065;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3 a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h3 a:focus, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4 a:hover, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text h4 a:focus,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3 a:hover,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h3 a:focus,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 a:hover,
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .page-node-type-landing-page h4 a:focus {
  border-bottom: 2px solid #e9a065;
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.84;
  letter-spacing: 0.0125em;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text p {
    font-size: 16px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text p {
    font-size: 18px;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a {
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight {
  text-align: center;
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight {
    width: 46.15385%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
    text-align: left;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .media-image {
  width: 64%;
  margin: 0 auto 10px;
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .media-image {
    width: 44%;
    float: left;
    margin: auto;
    overflow: hidden;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight img {
  width: auto;
  height: auto;
  backface-visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight a {
  text-decoration: none;
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight a:hover img, .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight a:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content {
    width: 80%;
    margin: auto auto 40px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content {
    width: 56%;
    float: left;
    padding: 0 2% 0 6%;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content h4 {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.00625em;
  color: #000;
  border-bottom: 1px solid #a783ba;
  display: inline-block;
  margin: 0;
  padding-bottom: 5px;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content h4 {
    font-size: 14px;
    display: inline;
  }
}
.paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content p {
  color: #000;
  font-family: "Cabin", tahoma, arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.5px;
  margin: 5px 0 0;
}
@media (min-width: 20.0625em) and (max-width: 44.99em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content p {
    font-size: 20px;
  }
}
@media (min-width: 45em) {
  .paragraph--type--twinned-spotlight .paragraph--type--image-spotlight .spotlight-content p {
    font-size: 24px;
    margin: 28px 0 0;
  }
}

.video-full-width-paragraph {
  position: relative;
  color: #fff;
}
.video-full-width-paragraph .video-title {
  position: absolute;
  top: 50%;
  left: 40%;
}
.video-full-width-paragraph .video-text {
  position: absolute;
  top: 55%;
  left: 40%;
}
.video-full-width-paragraph.video-dark {
  color: #9669a9;
}

div.rss-feed-button {
  text-align: right;
}
div.rss-feed-button a {
  background: #e9a065;
  color: white;
  display: inline-block;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}

@media (max-width: 44.99em) {
  .content .search-api-page-block-form .form-actions, .view-taxonomy-resources .search-api-page-block-form .form-actions {
    text-align: center;
  }
  .content .search-api-page-block-form .form-actions input, .view-taxonomy-resources .search-api-page-block-form .form-actions input {
    margin: 0;
  }
}
@media (min-width: 45em) {
  .content .search-api-page-block-form, .view-taxonomy-resources .search-api-page-block-form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .content .search-api-page-block-form .form-item-keys, .view-taxonomy-resources .search-api-page-block-form .form-item-keys {
    margin-right: 20px;
    -webkit-flex-grow: 2;
    flex-grow: 2;
  }
  .content .search-api-page-block-form input, .view-taxonomy-resources .search-api-page-block-form input, .content .search-api-page-block-form button, .view-taxonomy-resources .search-api-page-block-form button {
    margin: 0;
  }
  .content .search-api-page-block-form input[type="search"], .view-taxonomy-resources .search-api-page-block-form input[type="search"] {
    padding: 12px;
  }
}

.listings, .view-taxonomy-resources .view-content {
  margin: 2em 0;
}
.listings ol, .view-taxonomy-resources .view-content ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.listings ol li, .view-taxonomy-resources .view-content ol li {
  margin: 0 0 2em 0;
  padding: 0 0 1em 0;
  border-bottom: 1px solid #e4e4e4;
}
.listings ol li:before, .view-taxonomy-resources .view-content ol li:before, .listings ol li:after, .view-taxonomy-resources .view-content ol li:after {
  content: "";
  display: table;
}
.listings ol li:after, .view-taxonomy-resources .view-content ol li:after {
  clear: both;
}
@media (min-width: 45em) {
  .listings ol li, .view-taxonomy-resources .view-content ol li {
    margin: 0 0 .9em 0;
    padding: 0 0 .9em 0;
  }
  .page-node-type-listing-page .listings ol li, .page-node-type-listing-page .view-taxonomy-resources .view-content ol li, .view-taxonomy-resources .page-node-type-listing-page .view-content ol li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.listings ol li a.img-link, .view-taxonomy-resources .view-content ol li a.img-link {
  width: 29.48718%;
  float: left;
  margin-left: 1.92308%;
  margin-right: 1.92308%;
  overflow: hidden;
  display: block;
  margin-left: 0;
  border: 0;
}
@media (max-width: 44.99em) {
  .listings ol li a.img-link, .view-taxonomy-resources .view-content ol li a.img-link {
    margin-bottom: .5em;
  }
}
@media (min-width: 45em) {
  .listings ol li a.img-link, .view-taxonomy-resources .view-content ol li a.img-link {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.listings ol li a.img-link img, .view-taxonomy-resources .view-content ol li a.img-link img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.listings ol li a.img-link:hover img, .view-taxonomy-resources .view-content ol li a.img-link:hover img, .listings ol li a.img-link:focus img, .view-taxonomy-resources .view-content ol li a.img-link:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.listings ol li .listing-inner, .view-taxonomy-resources .view-content ol li .listing-inner {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 45em) {
  .listings ol li .listing-inner, .view-taxonomy-resources .view-content ol li .listing-inner {
    width: 62.82051%;
    float: left;
    margin-left: 1.92308%;
    margin-right: 1.92308%;
  }
  .listings ol li .listing-inner h3, .view-taxonomy-resources .view-content ol li .listing-inner h3, .listings ol li .listing-inner p, .view-taxonomy-resources .view-content ol li .listing-inner p {
    max-width: 580px;
  }
}
@media (max-width: 44.99em) {
  .listings ol li .listing-inner p, .view-taxonomy-resources .view-content ol li .listing-inner p {
    clear: both;
  }
}
.listings ol li h3, .view-taxonomy-resources .view-content ol li h3 {
  margin: 0 0 .5em;
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 45em) {
  .listings ol li h3, .view-taxonomy-resources .view-content ol li h3 {
    font-size: 30px;
  }
}
.listings ol li h3 a, .view-taxonomy-resources .view-content ol li h3 a {
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 44.99em) {
  .listings ol li h3 a, .view-taxonomy-resources .view-content ol li h3 a {
    border-bottom: 1px solid #e9a065;
  }
  .listings ol li h3 a:hover, .view-taxonomy-resources .view-content ol li h3 a:hover, .listings ol li h3 a:focus, .view-taxonomy-resources .view-content ol li h3 a:focus {
    border-bottom: 2px solid #e9a065;
  }
}
@media (min-width: 45em) {
  .listings ol li h3 a:hover, .view-taxonomy-resources .view-content ol li h3 a:hover, .listings ol li h3 a:focus, .view-taxonomy-resources .view-content ol li h3 a:focus {
    border-bottom: 2px solid #e9a065;
  }
}
.listings ol li h3 a:link, .view-taxonomy-resources .view-content ol li h3 a:link, .listings ol li h3 a:visited, .view-taxonomy-resources .view-content ol li h3 a:visited {
  text-decoration: none;
}
.listings ol li .search-item-type .search-item-type-inner, .view-taxonomy-resources .view-content ol li .search-item-type .search-item-type-inner {
  color: #4a4a4a;
  position: relative;
  border: 3px solid #d69160;
  display: inline-block;
  padding: 3px 12px;
}
.listings ol li .search-item-type .search-item-type-inner .type-file, .view-taxonomy-resources .view-content ol li .search-item-type .search-item-type-inner .type-file {
  text-transform: uppercase;
}

.pager {
  text-align: center;
}
.pager ul {
  margin: 2em 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 45em) {
  .pager ul {
    font-size: 18px;
  }
}
.pager ul li {
  display: inline-block;
}
@media (min-width: 45em) {
  .pager ul li {
    margin: 0 5px;
  }
}
.pager ul li a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  border: 1px solid #9f85ab;
  height: 2em;
  width: 2em;
  line-height: 2;
  vertical-align: text-bottom;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pager ul li a:hover, .pager ul li a:focus {
  border: 1px solid #e9a065;
}
.pager ul li.is-active a {
  border: 2px solid #e9a065;
  font-weight: 300;
}
.pager ul li.pager__item--next a, .pager ul li.pager__item--last a, .pager ul li.pager__item--previous a, .pager ul li.pager__item--first a {
  color: #000;
  border: none;
  width: 1.5em;
}
@media (min-width: 45em) {
  .pager ul li.pager__item--next a, .pager ul li.pager__item--last a, .pager ul li.pager__item--previous a, .pager ul li.pager__item--first a {
    width: auto;
  }
}
.pager ul li.pager__item--next a:hover, .pager ul li.pager__item--next a:focus, .pager ul li.pager__item--last a:hover, .pager ul li.pager__item--last a:focus, .pager ul li.pager__item--previous a:hover, .pager ul li.pager__item--previous a:focus, .pager ul li.pager__item--first a:hover, .pager ul li.pager__item--first a:focus {
  color: #e9a065;
}
.pager ul li i {
  font-size: 1em;
}
.pager ul li i + i {
  margin-left: -.5em;
}

#bbd-tabs {
  border: none;
  padding: 0;
  position: relative;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#bbd-tabs .border-holder {
  border: 1px solid #9f85ab;
  padding: 1em;
  margin: 0 0 1em;
}
#bbd-tabs .bbd-tabs-inner h3 {
  margin: 0.5em 0 0;
  font-size: 1.1em;
  font-weight: 400;
}
#bbd-tabs .ui-tabs-nav {
  padding: 0;
}
#bbd-tabs .ui-tabs-nav li {
  width: auto;
  background: none;
  border: 1px solid #9f85ab;
  border-radius: 0;
  margin: 0.5em;
  float: none;
  display: inline-block;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
#bbd-tabs .ui-tabs-nav li a {
  color: #4a4a4a;
  font-size: 1em;
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}
#bbd-tabs .ui-tabs-nav li:hover, #bbd-tabs .ui-tabs-nav li.has-active-items {
  border: 1px solid #d69160;
  background: #fff;
}
#bbd-tabs .ui-tabs-nav li.ui-state-active, #bbd-tabs .ui-tabs-nav li.ui-tabs-active {
  border: 2px solid #d69160;
  background: #fff;
}
#bbd-tabs .tabs-container .ui-tabs-panel {
  border: none;
}
#bbd-tabs .tabs-container .ui-tabs-panel:focus {
  outline: none !important;
}
#bbd-tabs .tabs-container .ui-tabs-panel legend {
  display: none;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item {
  display: inline-block;
  float: none;
  margin: 0.5em 0.5em 0.5em 0;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item input.form-checkbox {
  display: none;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item input.form-checkbox:checked + label {
  border-color: #d69160;
  border-width: 2px;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item input.form-checkbox:checked + label:focus {
  outline: none !important;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item label {
  display: inline-block;
  line-height: 42px;
  border: 1px solid #9f85ab;
  border-radius: 0;
  margin: 0;
  padding: 0 1em;
  font-size: 1em;
  font-weight: 400;
  color: #4a4a4a;
}
#bbd-tabs .tabs-container .ui-tabs-panel .form-checkboxes .form-item label:focus {
  outline: none !important;
}
#bbd-tabs .search-api-page-block-form {
  max-height: none;
}
#bbd-tabs .search-sort-by {
  margin: 0 0 1em;
}
#bbd-tabs .search-sort-by .form-item-sort-by {
  width: 100%;
  overflow: hidden;
}
#bbd-tabs .search-sort-by .form-item-sort-by label {
  float: left;
  margin: 0 0.5em 0 0;
  padding: 0.3em 0;
}
#bbd-tabs .search-sort-by .form-item-sort-by .bef-links {
  float: left;
}
#bbd-tabs .search-sort-by .form-item-sort-by .bef-links > div {
  display: inline-block;
}
#bbd-tabs .search-sort-by .form-item-sort-by .bef-links a {
  display: block;
  padding: 0.3em 0.5em;
  text-decoration: none;
  border: 1px solid #9f85ab;
  color: #4a4a4a;
  margin: 0 0.3em 0.5em 0;
}
#bbd-tabs .search-sort-by .form-item-sort-by .bef-links a:hover, #bbd-tabs .search-sort-by .form-item-sort-by .bef-links a.bef-link-active {
  border-color: #d69160;
}

.search-result-page footer h3 {
  margin: 0 0 0.5em;
}
.search-result-page footer ul {
  margin: 0 0 1em;
}

.side-nav-label {
  border: 1px solid #e4e4e4;
  padding: 10px;
  margin: 0 .5rem;
  position: relative;
}
@media (min-width: 45em) {
  .side-nav-label {
    display: none;
  }
}
.side-nav-label .mobile-nav-btn {
  top: 12px;
  right: 12px;
  padding: 0;
  height: 20px;
  width: 20px;
}

.side-nav {
  position: relative;
  z-index: 1000;
}
@media (max-width: 44.99em) {
  .side-nav {
    background: #f5f5f5;
    margin: 0 .5rem;
  }
  .side-nav a {
    padding: 10px;
    display: block;
  }
  .side-nav .menu li + li {
    margin: 0;
  }
}
@media (min-width: 45em) {
  .side-nav {
    margin: 0 auto;
    width: 64%;
  }
}
@media (min-width: 45em) {
  .side-nav {
    display: block;
    float: left;
    width: 18%;
    z-index: 1;
    padding-right: 4%;
    margin: 0 0 3em 0 !important;
  }
}
.side-nav > .menu > li > a {
  font-weight: 600;
  border-top: 1px solid #e6e6e6;
  padding: 15px 0 15px;
  display: block;
}
.side-nav > .menu > li > a:before {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  margin-right: 7px;
  margin-top: 0;
  position: relative;
  top: 2px;
  border-style: solid;
  border-width: 7px 8.6px 7px 0;
  border-color: transparent #9669a9 transparent transparent;
}
.side-nav > .menu > li:first-child {
  border: none;
}
.side-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-nav .menu li {
  font-size: 1rem;
}
.side-nav .menu li.is-active > a {
  color: #9669a9;
}
.side-nav .menu li a {
  color: #000;
  letter-spacing: 0.1px;
  text-decoration: none;
  word-break: break-word;
}
.side-nav .menu li a:hover {
  text-decoration: underline;
}
.side-nav .menu li a.last_level {
  color: #9669a9;
}
.side-nav .menu li.menu-item,
.side-nav .menu li .hidden {
  display: none;
}
.side-nav .menu li.menu-item--active-trail {
  display: block;
}
.side-nav .menu li.menu-item--active-trail > a {
  font-weight: 600;
  display: block;
  border-top: 1px solid #e6e6e6;
  padding: 15px 0 15px;
}
@media (max-width: 44.99em) {
  .side-nav .menu li.menu-item--active-trail > a {
    padding-left: 12px;
  }
}
.side-nav .menu li.menu-item--active-trail > a:before {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  margin-right: 7px;
  margin-top: 0px;
  position: relative;
  top: 2px;
  border-style: solid;
  border-width: 7px 8.6px 7px 0;
  border-color: transparent #9669a9 transparent transparent;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 44.99em) {
  .side-nav .menu li.menu-item--active-trail a {
    padding-left: 12px;
  }
}
.side-nav .menu li.direct-parent, .side-nav .menu li.has-children, .side-nav .menu li.menu-item--expanded {
  padding-bottom: 15px;
}
.side-nav .menu li.direct-parent a, .side-nav .menu li.has-children a, .side-nav .menu li.menu-item--expanded a {
  padding: 0;
  border: none;
}
.side-nav .menu li.direct-parent a:before, .side-nav .menu li.has-children a:before, .side-nav .menu li.menu-item--expanded a:before {
  display: none;
}
.side-nav .menu li.direct-parent > a, .side-nav .menu li.has-children > a, .side-nav .menu li.menu-item--expanded > a {
  display: block;
  border-top: 1px solid #e6e6e6;
  padding: 15px 0 15px;
}
.side-nav .menu li.direct-parent > a:before, .side-nav .menu li.has-children > a:before, .side-nav .menu li.menu-item--expanded > a:before {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  margin-right: 7px;
  margin-top: 0;
  position: relative;
  top: 2px;
  border-style: solid;
  border-width: 7px 8.6px 7px 0;
  border-color: transparent #e9a065 transparent transparent;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.side-nav .menu li.direct-parent.menu-item--active-trail > a:before, .side-nav .menu li.menu-item--active-trail.has-children > a:before, .side-nav .menu li.menu-item--active-trail.menu-item--expanded > a:before {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.side-nav .menu li.has-children > a, .side-nav .menu li.menu-item--expanded > a {
  border: none;
  padding: 0;
}
.side-nav .menu li.has-children > a:before, .side-nav .menu li.menu-item--expanded > a:before {
  border-color: transparent #e6e6e6 transparent transparent;
}
.side-nav .menu li.has-children .menu, .side-nav .menu li.menu-item--expanded .menu {
  padding-left: 15px;
}
.side-nav .menu li.has-children .menu li, .side-nav .menu li.menu-item--expanded .menu li {
  padding-top: 12px;
  line-height: 1.4;
}
.side-nav .menu li.last-level > .menu > .menu-item {
  display: block;
}
.side-nav .menu li .menu {
  padding-top: 0;
  padding-left: 10px;
}
.side-nav .menu li .menu li + li {
  padding-top: 10px;
}

/** Fix: 3rd level sub menus **/
.side-nav .menu > .menu > .menu .menu-item--active-trail > a {
  border: none;
  padding: 0;
}
.side-nav .menu > .menu > .menu .menu-item--active-trail > a:before {
  display: none;
}

.communications:before, .communications:after {
  content: "";
  display: table;
}
.communications:after {
  clear: both;
}
@media (min-width: 49.375em) {
  .site-footer .communications {
    margin-bottom: 0;
  }
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 30em) {
  .social-links {
    margin: 0 -5px;
  }
}
@media (min-width: 49.375em) {
  .social-links {
    margin: 0 -10px;
  }
}
.social-links > li {
  display: inline-block;
  width: 33.333%;
  vertical-align: top;
}
@media (max-width: 49.365em) {
  .social-links > li {
    margin-bottom: 30px;
  }
}
@media (min-width: 30em) {
  .social-links > li {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 49.375em) {
  .social-links > li {
    width: 15.666%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.social-links > li a {
  color: inherit;
  text-decoration: none;
}
.social-links > li a .social-icon {
  display: block;
}
@media (min-width: 30em) {
  .social-links > li a .social-icon {
    margin-bottom: 10px;
  }
}
.social-links > li a .social-icon > span {
  display: inline-block;
  font-size: 2em;
}
@media (min-width: 45em) {
  .social-links > li a .social-icon > span {
    font-size: 2.5em;
  }
}
.social-links > li a .social-icon > span.fa-twitter {
  color: #1DA1F3;
}
.social-links > li a .social-icon > span.fa-facebook, .social-links > li a .social-icon > span.fa-facebook-official {
  color: #3C5B9B;
}
.social-links > li a .social-icon > span.fa-facebook:before, .social-links > li a .social-icon > span.fa-facebook-official:before {
  content: "\f230";
}
.social-links > li a .social-icon > span.fa-youtube, .social-links > li a .social-icon > span.fa-youtube-play {
  color: #FF0000;
}
.social-links > li a .social-icon > span.fa-youtube:before, .social-links > li a .social-icon > span.fa-youtube-play:before {
  content: "\f16a";
}
.social-links > li a .social-icon > span.fa-flickr {
  color: #0063dc;
}
.social-links > li a .social-icon > span.fa-rss {
  color: #FF7B0A;
}
.social-links > li a .social-label {
  display: block;
  font-size: 10px;
}
@media (max-width: 29.99em) {
  .social-links > li a .social-label br {
    display: none;
  }
}
@media (min-width: 30em) {
  .social-links > li a .social-label {
    font-size: 16px;
  }
}
@media (min-width: 80em) {
  .social-links > li a .social-label {
    font-size: 18px;
    line-height: 32px;
  }
}

.restricted .share-tools {
  display: none;
}

h2.styleguide {
  font-size: 2.25em;
  text-transform: none;
}

div.styleguide {
  border-top-color: #f5f5f5;
}

.sub-brand-title a {
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}
.sub-brand-title a:hover {
  text-decoration: none;
}

.sub-brand-logo img {
  height: 40px;
  width: auto;
}

.sub-brand-search {
  padding: 50px 0;
}
.sub-brand-search .row, .sub-brand-search .site-footer .social-channels, .site-footer .sub-brand-search .social-channels {
  padding: 10px 0;
  border-bottom: 2px solid #e4e4e4;
}
.sub-brand-search .row-item {
  border: 0;
}
.sub-brand-search .sub-brand-results {
  margin-top: 20px;
}
.sub-brand-search form {
  margin-bottom: 20px;
}
.sub-brand-search .expandable {
  background: none;
  border: none;
  padding: 10px 0 0;
}
.sub-brand-search .expandable > .row, .sub-brand-search .site-footer .expandable > .social-channels, .site-footer .sub-brand-search .expandable > .social-channels {
  margin: 0 -15px;
  padding: 0;
}
.sub-brand-search .row, .sub-brand-search .site-footer .social-channels, .site-footer .sub-brand-search .social-channels {
  border: none;
}
.sub-brand-search .sub-brand-node-title {
  font-size: 1.125em;
  font-weight: bold;
}

.sub-brand-header .col-9 {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

#views-exposed-form-sub-brand-block {
  display: flex;
}
#views-exposed-form-sub-brand-block .js-form-type-textfield {
  width: 100%;
}
#views-exposed-form-sub-brand-block .button, #views-exposed-form-sub-brand-block .site-footer .footer-nav .sign-in, .site-footer .footer-nav #views-exposed-form-sub-brand-block .sign-in, #views-exposed-form-sub-brand-block #block-fancylogin a, #block-fancylogin #views-exposed-form-sub-brand-block a, #views-exposed-form-sub-brand-block .xl-spotlight .find-church-text form input, .xl-spotlight .find-church-text form #views-exposed-form-sub-brand-block input, #views-exposed-form-sub-brand-block .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta a, .paragraph--type--twinned-spotlight .paragraph--type--spotlight-text .cta #views-exposed-form-sub-brand-block a, #views-exposed-form-sub-brand-block .views-related-tags .views-field-term-node-tid a, .views-related-tags .views-field-term-node-tid #views-exposed-form-sub-brand-block a {
  margin: 4px 0 0 0;
  border: 1px solid #e4e4e4;
  padding: 11px;
  height: 100%;
}
#views-exposed-form-sub-brand-block input[type="text"] {
  border-right: 0;
}
#views-exposed-form-sub-brand-block input[name="search"] {
  height: 100%;
}

@media (max-width: 59.365em) {
  .sub-brand-menu-nav {
    display: none;
  }

  .nav-open .sub-brand-menu-nav {
    display: block;
  }

  ul.sub-brand-menu-items {
    margin: 0;
    padding: 5px 0 0 0;
    overflow: auto;
    white-space: nowrap;
  }
  ul.sub-brand-menu-items::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
  }
  ul.sub-brand-menu-items li {
    display: block;
  }

  .sub-brand-logo img {
    height: auto;
    width: 100%;
  }

  .sub-brand-title {
    padding: 0;
    text-align: center;
  }
}
/*!
* @author Steven Masala [me@smasala.com]
* Github: https://github.com/smasala/responsive-tables-js
* @license: MIT https://tldrlegal.com/license/mit-license
* Responsive Tables
* @version 1.0.0
*/
table.responsive span[data-type="responsive"] {
  display: none;
}

@media only screen and (min-width: 300px) {
  table.responsive span[data-type="responsive"] {
    display: inline-block;
    width: 45%;
    color: #a8a8a8;
    vertical-align: top;
  }

  table.responsive, table.responsive thead, table.responsive tbody, table.responsive th, table.responsive td, table.responsive tr {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }

  html.ie9 table.responsive, html.ie9 table.responsive thead, html.ie9 table.responsive tbody, html.ie9 table.responsive th, html.ie9 table.responsive td, html.ie9 table.responsive tr {
    float: left;
    clear: both;
    width: 100%;
  }

  table.responsive tr {
    border-bottom: 1px solid #ccc;
  }

  table.responsive td {
    border: none;
  }
  table.responsive td:nth-child(1) {
    display: none;
  }
  table.responsive td:nth-child(2) {
    display: none;
  }

  table.responsive th {
    display: none;
  }
}
.responsive-video {
  position: relative;
  padding-bottom: 56.3%;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#block-views-block-related-tags-block-1 h2 {
  font-size: 30px;
  margin-bottom: 25px;
  margin-top: 25px;
  text-align: center;
}

.views-related-tags {
  margin-bottom: 50px;
}
.views-related-tags .views-row {
  margin: 0 -8px;
}
.views-related-tags .views-row::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.views-related-tags .views-field-term-node-tid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.views-related-tags .views-field-term-node-tid ul li {
  display: inline-block;
  text-align: center;
}
.views-related-tags .views-field-term-node-tid a {
  margin: 0 8px 16px;
}

.view-document-library .view-filters {
  margin-bottom: 30px;
}
.view-document-library .row, .view-document-library .site-footer .social-channels, .site-footer .view-document-library .social-channels {
  margin: 0;
}
.view-document-library .download {
  width: 100%;
}

.downloads__list {
  list-style: none;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.downloads__list li {
  border: 1px solid #9669a9;
  border-radius: 5px;
  display: flex;
  line-height: 1;
  margin-bottom: 24px;
  width: 100%;
}
.downloads__list-item-title {
  line-height: 1.6;
  margin: 0;
  padding: 16px;
  width: 100%;
}
.downloads__list-item-button {
  background: none;
  border: 0;
  border-left: 1px solid #9669a9;
  cursor: pointer;
  margin-left: auto;
  font-weight: bold;
  font-size: 24px;
  height: 100%;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.downloads__list-item-button a {
  color: #9669a9;
  display: inline-block;
  height: 100%;
  padding: 16px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.downloads__list-item-button a:hover {
  color: white;
}
.downloads__list-item-button a:hover {
  background: #9669a9;
  color: white;
}

.view-document-library select[multiple],
.view-document-library select[size] {
  height: 50px;
}

@media only screen and (min-width: 980px) {
  .downloads__list li {
    width: calc(50% - 12px);
  }
  .downloads__list li:nth-child(2n) {
    margin-left: 24px;
  }
}
.view-taxonomy-resources .views-title-wrapper {
  padding: 0;
}

.webform-submission-form label.form-required:after {
  background-image: url(/themes/custom/cofe/_assets/img/icons/required.svg);
  background-size: 7px 7px;
}

.webform-required .form-required:after {
  background-image: url(/themes/custom/cofe/_assets/img/icons/required.svg);
  background-size: 7px 7px;
  width: 7px;
  height: 7px;
  content: '';
  vertical-align: super;
  display: inline-block;
  background-repeat: no-repeat;
  margin: 0 0.3em;
}
