@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic);
/* CONFIG -------------------- */
/* Fonts */
/* Widths */
/* Nav (Parent Items) */
/* Darkened by 15 on each level */
/* On Touch / On Dropdown */
/* Current Page */
/* Sub-Nav (Non-parent items)*/
/* Darkened by 20% on each level */
/* Reduced by 1px on each level */
/* FONTS -------------------- */
.font-heading {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.font-content {
  font-family: 'Lato', sans-serif;
}
/* MIXINS -------------------- */
.text-selection-off,
.text-selection-off * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
}
.text-selection-on,
.text-selection-on * {
  -webkit-touch-callout: auto !important;
  -webkit-user-select: auto !important;
  -khtml-user-select: auto !important;
  -moz-user-select: moz-all !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.transition-all {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -kthtml-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.background-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hover-opacity {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -kthtml-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.hover-opacity:hover {
  opacity: 0.7;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.pre-wrap {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -hp-pre-wrap;
  /* HP printers */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
.break-word {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
a.block-link {
  display: block;
  width: 100%;
  height: 100%;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.wrapper,
.block,
header,
footer,
nav,
section {
  position: relative;
  margin: auto;
}
body {
  font-family: 'Lato', sans-serif;
  background: #1f1f1f;
}
a {
  cursor: pointer;
}
.btn {
  margin: 0;
  display: inline-block;
}
.btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 15px 20px;
  color: #fff !important;
  border: 3px solid #4c0303;
  font-size: 28px;
  font-weight: 700;
  background: #740b0b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #740b0b), color-stop(100%, #500101));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #740b0b 0%, #500101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#740b0b', endColorstr='#500101', GradientType=0);
  /* IE6-9 */
}
.btn a:hover {
  background: #5e0909;
  /* Old browsers */
  background: -moz-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5e0909), color-stop(100%, #420101));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #5e0909 0%, #420101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e0909', endColorstr='#420101', GradientType=0);
  /* IE6-9 */
}
.btn.btn-small a {
  padding: 11px 16px;
  font-size: 20px;
}
input[type='text'],
input[type='search'],
input[type='password'],
textarea {
  position: relative;
  display: inline-block;
  background: #000;
  border: 1px solid #292929;
  color: #7f7f7f;
  padding: 11px 10px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
}
input[type='text']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #343434;
}
input[type='text']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='password']:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #343434;
}
input[type='text']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='password']::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #343434;
}
input[type='text']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #343434;
}
select {
  -webkit-appearance: none;
}
.cms-custom-select-wrapper {
  position: relative;
}
.cms-custom-select {
  position: relative;
  background: #000;
  border: 1px solid #292929;
  display: inline-block;
  vertical-align: middle;
}
.cms-custom-select .cms-custom-select-inner {
  padding: 10px;
  color: #7f7f7f;
  font-size: 14px;
  height: 40px;
  padding-top: 8px;
  float: left;
  -webkit-transition: background 0.5 linear;
  -o-transition: background 0.5 linear;
  -moz-transition: background 0.5 linear;
  -ms-transition: background 0.5 linear;
  -kthtml-transition: background 0.5 linear;
  transition: background 0.5 linear;
  white-space: nowrap;
  overflow: hidden;
}
.cms-custom-select .cms-custom-select-tab {
  padding: 5px;
  height: 40px;
  width: 30px;
  float: right;
  background: url("/assets/img/custom-select-arrow-down.png") center center no-repeat #171717;
  -webkit-transition: background 0.5 linear;
  -o-transition: background 0.5 linear;
  -moz-transition: background 0.5 linear;
  -ms-transition: background 0.5 linear;
  -kthtml-transition: background 0.5 linear;
  transition: background 0.5 linear;
}
.cms-custom-select.disabled {
  opacity: 0.5;
}
.cms-custom-select.hover .cms-custom-select-inner {
  background-color: #171717;
}
.cms-custom-select.hover .cms-custom-select-tab {
  background-color: #1D1D1D;
}
.cms-custom-select.focus .cms-custom-select-tab {
  background-image: url("/assets/img/custom-select-arrow-up.png");
}
h1.title {
  margin-bottom: 20px;
  line-height: 40px;
}
.heading-line-1 {
  font-size: 36px;
  color: #b4a76a;
}
.heading-line-2 {
  font-size: 24px;
  font-weight: 700;
  color: #b4a76a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #b4a76a;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #b4a76a;
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: underline;
}
#content-inner {
  position: relative;
  z-index: 5;
  color: #7f7f7f;
  font-size: 16px;
  line-height: 24px;
}
#content-inner .block {
  margin-bottom: 30px;
}
#content-inner .block:last-child {
  margin-bottom: 0;
}
#content-inner p,
#content-inner li,
#content-inner td {
  color: #7f7f7f;
  font-size: 16px;
  line-height: 24px;
  text-shadow: 1px 1px 1px #000;
}
#content-inner a {
  color: #b4a76a;
}
#content-inner a:hover {
  text-decoration: none;
}
.content-box {
  position: relative;
  width: 100%;
  min-height: 505px;
  margin-top: 35px;
  margin-bottom: 35px;
  background-color: #0d0d0d;
}
.content-box .content-box-inner {
  padding: 80px 60px;
}
.feature-buckets {
  position: relative;
  margin: auto;
}
.feature-buckets .unit {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid #292929;
  width: 395px;
  height: 400px;
  background: #000;
}
.feature-buckets .unit.middle {
  margin: 0 30px !important;
}
.feature-buckets .unit .fb-bg-off,
.feature-buckets .unit .fb-bg-on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 997;
}
.feature-buckets .unit .fb-bg-on {
  z-index: 998;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -kthtml-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.feature-buckets .unit .fb-bg-on.show {
  opacity: 1;
}
.feature-buckets .unit a {
  position: relative;
  z-index: 999;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.feature-buckets .unit .fb-text {
  position: absolute;
  Bottom: 0;
  left: 0;
  padding: 7px;
  line-height: 40px;
  color: #fff;
  text-shadow: 2px 2px 2px #000;
}
.feature-buckets .unit .fb-text .fb-text-line-1 {
  font-size: 36px;
}
.feature-buckets .unit .fb-text .fb-text-line-2 {
  font-size: 48px;
  font-weight: 700;
}
#contact-form form {
  margin-top: 30px;
}
#contact-form .unit:first-child {
  padding-right: 50px;
}
.cms-contact-form .form-input {
  margin-bottom: 20px;
}
.cms-contact-form .form-input label {
  display: block;
  margin-bottom: 5px;
}
.cms-contact-form .form-input label.inline-block {
  display: inline-block !important;
  margin-left: 15px;
}
.cms-contact-form .form-input input[type="text"],
.cms-contact-form .form-input textarea {
  width: 100%;
}
.cms-contact-form .contact-form-message {
  margin-left: 15px;
  font-style: italic;
}
#church-locator {
  position: relative;
  background-color: #0d0d0d;
  padding-bottom: 20px;
}
#church-locator #cl-styles {
  display: none;
}
#church-locator #cl-map {
  position: relative;
  height: 300px;
  background: url("/assets/img/map-loading.gif") center center no-repeat #000000;
}
#church-locator #cl-map .gm-style {
  background: url("/assets/img/map-loading.gif") center center no-repeat #000000;
}
#church-locator #cl-results {
  position: relative;
  min-height: 360px;
  padding: 30px 30px 30px 0;
}
#church-locator #cl-results.loading {
  background: url("/assets/img/map-content-loading.gif") center center no-repeat;
}
#church-locator #cl-results .grid .unit {
  padding: 10px !important;
  -webkit-transition: background-color 0.4 linear;
  -o-transition: background-color 0.4 linear;
  -moz-transition: background-color 0.4 linear;
  -ms-transition: background-color 0.4 linear;
  -kthtml-transition: background-color 0.4 linear;
  transition: background-color 0.4 linear;
  cursor: pointer;
}
#church-locator #cl-results .grid .unit:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
#church-locator #cl-results .grid .unit.selected {
  background-color: rgba(255, 255, 255, 0.15);
}
#church-locator #cl-results .grid .unit label {
  display: inline-block;
  color: #b4a76a;
  font-size: 16px;
  font-weight: bold;
}
#church-locator #cl-results .grid .unit small {
  font-size: 11px;
}
#church-locator #cl-form {
  position: relative;
  background-color: #1f1f1f;
  border: 1px solid #292929;
  padding: 20px;
  color: #7f7f7f;
  z-index: 9999;
}
#church-locator #cl-form #cl-form-disable {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
#church-locator #cl-form.loading #cl-form-disable {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  cursor: wait;
  z-index: 99999;
}
#church-locator #cl-form .heading-line-1 {
  font-size: 30px;
}
#church-locator #cl-form form {
  display: block;
  position: relative;
  margin-top: 20px;
}
#church-locator #cl-form select {
  opacity: 0;
}
#church-locator #cl-form label {
  display: block;
  font-size: 13px;
  color: #7f7f7f;
  margin-bottom: 5px;
}
#church-locator #cl-form input,
#church-locator #cl-form select {
  width: 100%;
}
#church-locator #cl-form .unit:first-child {
  padding-left: 0;
}
#church-locator #cl-form .unit:last-child {
  padding-right: 0;
}
#church-locator #cl-form .unit {
  padding-top: 0;
}
#church-locator #cl-form input {
  -webkit-transition: opacity 0.2 linear;
  -o-transition: opacity 0.2 linear;
  -moz-transition: opacity 0.2 linear;
  -ms-transition: opacity 0.2 linear;
  -kthtml-transition: opacity 0.2 linear;
  transition: opacity 0.2 linear;
}
#church-locator #cl-form input[disabled] {
  opacity: 0.5;
}
#church-locator #cl-form .cl-field {
  position: relative;
}
#church-locator #cl-form .cl-field .cms-custom-select-wrapper {
  -webkit-transition: opacity 0.2 linear;
  -o-transition: opacity 0.2 linear;
  -moz-transition: opacity 0.2 linear;
  -ms-transition: opacity 0.2 linear;
  -kthtml-transition: opacity 0.2 linear;
  transition: opacity 0.2 linear;
}
#church-locator #cl-form .cl-field .cms-custom-select-wrapper .cms-custom-select[data-name='city'] .cms-custom-select-inner {
  text-overflow: ellipsis;
}
#church-locator #cl-form .cl-field.loading {
  background: url("/assets/img/field-loading.gif") center center no-repeat;
}
#church-locator #cl-form .cl-field.loading .cms-custom-select-wrapper {
  opacity: 0;
}
#church-locator #cl-form #cl-submit {
  -webkit-transition: opacity 0.5 linear;
  -o-transition: opacity 0.5 linear;
  -moz-transition: opacity 0.5 linear;
  -ms-transition: opacity 0.5 linear;
  -kthtml-transition: opacity 0.5 linear;
  transition: opacity 0.5 linear;
  margin-top: 10px;
}
#church-locator #cl-form #cl-submit.disabled {
  opacity: 0.5;
  cursor: default !important;
}
#church-locator #cl-form #cl-submit.disabled * {
  cursor: default !important;
}
#footer-social-buttons {
  margin-top: 20px;
}
#footer-social-buttons .footer-social-button {
  position: relative;
}
#footer-social-buttons .footer-social-button a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 10px 25px 3px;
  text-decoration: none;
  border: 3px solid #4c0303;
  background: #740b0b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #740b0b), color-stop(100%, #500101));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #740b0b 0%, #500101 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #740b0b 0%, #500101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#740b0b', endColorstr='#500101', GradientType=0);
  /* IE6-9 */
}
#footer-social-buttons .footer-social-button a:hover {
  background: #5e0909;
  /* Old browsers */
  background: -moz-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5e0909), color-stop(100%, #420101));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #5e0909 0%, #420101 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #5e0909 0%, #420101 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e0909', endColorstr='#420101', GradientType=0);
  /* IE6-9 */
}
#footer-social-buttons .footer-social-button a .fsb-icon {
  position: relative;
  float: right;
  top: 5px;
}
#footer-social-buttons .footer-social-button a .fsb-line-1 {
  font-size: 18px;
  color: #fff !important;
}
#footer-social-buttons .footer-social-button a .fsb-line-2 {
  font-size: 30px;
  font-weight: 700;
}
footer {
  padding: 10px 0;
}
footer #footer-left {
  padding-top: 25px;
}
footer #footer-left a {
  font-size: 14px;
  text-decoration: none;
  color: #7f7f7f !important;
}
footer #footer-left a:hover {
  text-decoration: underline !important;
}
/* AMSD ----------------------------- */
.amsd-wrapper {
  position: relative;
  /* Grid List ----------------------------- */
  /* Vertical List ----------------------------- */
  /* Listing Page All Views ----------------------------- */
  /* Profile Page All Views ----------------------------- */
  /* Listing & Profile Page All Views ----------------------------- */
}
.amsd-wrapper .no-photo {
  display: none;
}
.amsd-wrapper.amsd-layout-grid-list.amsd-view-listing .grid .unit {

  margin-bottom: 20px;
}
.amsd-wrapper.amsd-layout-grid-list.amsd-view-listing .grid .unit .amsd-item-profile-photo {
  position: relative;
}
.amsd-wrapper.amsd-layout-grid-list.amsd-view-listing .grid .unit .amsd-item-profile-photo a {
  display: block;
  width: 100%;
  height: 100%;
}
.amsd-wrapper.amsd-layout-grid-list.amsd-view-listing .grid .unit .amsd-item-profile-photo a img {
  width: 100%;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item,
.amsd-wrapper.amsd-view-profile .amsd-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item:last-child,
.amsd-wrapper.amsd-view-profile .amsd-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item .amsd-item-profile-photo,
.amsd-wrapper.amsd-view-profile .amsd-item .amsd-item-profile-photo {
  position: relative;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item .amsd-item-profile-photo a,
.amsd-wrapper.amsd-view-profile .amsd-item .amsd-item-profile-photo a {
  display: block;
  width: 100%;
  height: 100%;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item-text,
.amsd-wrapper.amsd-view-profile .amsd-item-text {
  margin: 20px 0;
  padding-left: 187px;
}
.amsd-wrapper.amsd-layout-vertical-list.amsd-view-listing .amsd-item-text .amsd-item-button,
.amsd-wrapper.amsd-view-profile .amsd-item-text .amsd-item-button {
  margin: 20px 0;
}
.amsd-wrapper.amsd-view-listing .amsd-item-profile-photo {
  margin-bottom: 15px;
}
.amsd-wrapper.amsd-view-profile .amsd-item-button {
  margin-top: 30px;
}
.amsd-wrapper.amsd-view-profile .amsd-item-profile-photo {
  width: 300px;
}
.amsd-wrapper.amsd-view-profile .amsd-item-profile-photo img {
  width: 100%;
}
.amsd-wrapper.amsd-view-profile .amsd-item-text {
  padding-left: 0;
}
.amsd-wrapper .amsd-item-title {
  font-size: 23px;
  color: #b4a76a;
}
.amsd-wrapper .amsd-item-title a {
  color: #b4a76a !important;
  text-decoration: none;
}
.amsd-wrapper .amsd-item-title a:hover {
  text-decoration: underline !important;
}
.amsd-wrapper .amsd-item-sub-title {
  font-size: 18px;
  color: #b4a76a;
}
.amsd-wrapper .amsd-item-meta {
  font-size: 18px;
  color: #7f7f7f;
}
.amsd-wrapper .amsd-item-meta a {
  color: #7f7f7f !important;
  text-decoration: none;
}
.amsd-wrapper .amsd-item-meta a:hover {
  text-decoration: underline !important;
}
#google-calendar-options {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
#google-calendar-options .google-calendar-option {
  display: inline-block;
  padding: 10px;
}
.gsc-control-cse *,
.gsc-control-cse *:before,
.gsc-control-cse *:after {
  box-sizing: content-box;
  text-shadow: 0px 0px 0px transparent !important;
}
