/*
 Theme Name:   Saga Maps Pro
 Theme URI:    http://sagacom.com
 Description:  Displays locations on a map.
 Author:       Taylor Quinn
 Author URI:   http://sagacom.com
 Version:      1.0.0
 Tags:         mobile-first, responsive-layout, accessibility-ready, google material design
 Text Domain:  saga-maps-pro
*/
/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
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 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents 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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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; }

/**
 * Addresses 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
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
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 {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
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.
 * 4. Improves appearance and consistency in all browsers.
 */
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.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
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; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * 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.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
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; }

/* # Defaults
---------------------------------------------------------------------------------------------------- */
/* ## Typographical Elements
--------------------------------------------- */
html {
  font-size: 62.5%;
  /* 10px browser default */ }

html, body {
  height: 100%; }

body {
  background-color: #eee;
  color: #707070;
  font-family: "Roboto", "Helvetica", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
  /* Chrome fix */ }
  @media only screen and (max-width: 768px) {
    body {
      font-size: 18px; } }
  body > div {
    font-size: 2rem; }
    @media only screen and (max-width: 768px) {
      body > div {
        font-size: 1.8rem; } }

a {
  color: #d71737;
  text-decoration: none; }
  a:hover, a:focus {
    color: #a9122b;
    text-decoration: none;
    outline: none; }
  a img {
    border: 1px solid #d71737; }

p {
  margin: 1.5em 0 0 0;
  padding: 0;
  line-height: 1.5; }

hr {
  border: 0;
  border-collapse: collapse;
  border-top: 1px solid #eee;
  clear: both;
  margin: 1em 0; }

b,
strong {
  font-weight: 700; }

blockquote,
cite,
em,
i {
  font-style: italic; }

/* ## Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 10px; }

h1 {
  font-size: 48px;
  font-size: 4.8rem; }
  h1.page-title {
    font-family: "Roboto", "Helvetica", Arial, sans-serif;
    text-align: center; }

h2 {
  font-size: 36px;
  font-size: 3.6rem; }

h3 {
  font-size: 28px;
  font-size: 2.8rem; }

h4 {
  font-size: 24px;
  font-size: 2.4rem; }

h5 {
  font-size: 20px;
  font-size: 2rem; }

h6 {
  font-size: 18px;
  font-size: 1.8rem; }

/* ## Objects
--------------------------------------------- */
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%; }

img {
  height: auto; }

figure {
  margin: 0; }

/* ## Forms
--------------------------------------------- */
button > .glyphicon {
  padding: 0.5em; }

#map-filters-toggle:focus {
  color: #fff;
  outline: none; }

/* Button*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
  background-color: #d71737;
  color: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  min-height: 36px;
  min-width: 88px;
  line-height: 36px;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  outline: none;
  border: 0;
  padding: 0 18px;
  margin: 6px 0 6px 8px;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  font-style: inherit;
  font-variant: inherit;
  font-family: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  letter-spacing: 0.5px; }

.btn:hover,
button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
button:focus,
input:focus[type="button"],
input:focus[type="reset"],
input:focus[type="submit"],
.button:focus {
  background-color: #a9122b;
  color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3); }

.onoffswitch {
  position: relative;
  width: 48px;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }
  .onoffswitch input {
    margin-top: 14px;
    margin-bottom: -14px; }
  .onoffswitch .onoffswitch-checkbox {
    display: block;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
    /* Good browsers */
    opacity: 0; }
  .onoffswitch .onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 24px;
    padding: 0;
    line-height: 24px;
    border: 2px solid #999999;
    border-radius: 24px;
    background-color: #EEEEEE;
    transition: background-color 0.3s ease-in; }
  .onoffswitch .onoffswitch-label:before {
    content: "";
    display: block;
    width: 24px;
    margin: 0px;
    height: 24px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    border: 2px solid #999999;
    border-radius: 24px;
    transition: all 0.3s ease-in 0s; }
  .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #d71737; }
  .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #d71737; }
  .onoffswitch .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; }

/* # Layouts
---------------------------------------------------------------------------------------------------- */
/*
||
|| Containers
||
*/
@media only screen and (max-width: 992px) {
  .page-wrap {
    min-height: 100%;
    /* equal to footer height */
    margin-bottom: -72px; }
  .page-wrap:after {
    content: "";
    display: block; } }

.site-content {
  background-color: #fff;
  min-height: 70vh; }

.site-main-single {
  min-height: 100%;
  min-height: calc(100vh - 72px);
  background: #fff;
  box-shadow: 0px 0px 143px rgba(0, 0, 0, 0.1); }

.site-main-single:after {
  content: "";
  display: block; }

@media only screen and (max-width: 480px) {
  .thick-wrapper {
    padding: 0 2em; } }

@media only screen and (max-width: 768px) {
  .thick-wrapper {
    padding: 0 2em; } }

@media only screen and (max-width: 992px) {
  .thick-wrapper {
    padding: 0 3em; } }

@media only screen and (max-width: 1200px) {
  .thick-wrapper {
    padding: 0 3em; } }

@media only screen and (max-width: 480px) {
  .page-template-template-suggested-reading .thick-wrapper {
    padding: 0 2em; } }

@media only screen and (max-width: 768px) {
  .page-template-template-suggested-reading .thick-wrapper {
    padding: 0 2em; } }

@media only screen and (max-width: 992px) {
  .page-template-template-suggested-reading .thick-wrapper {
    padding: 0 3em; } }

@media only screen and (max-width: 1200px) {
  .page-template-template-suggested-reading .thick-wrapper {
    padding: 0 3em; } }

.backdrop-fade {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: transparent;
  z-index: 801; }

/* # Header
---------------------------------------------------------------------------------------------------- */
.page-header {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 1em 3em 0 3em;
  border-bottom: 3px solid #eee; }

/* # Site Navigation
---------------------------------------------------------------------------------------------------- */
/* ## Primary Navigation
--------------------------------------------- */
.navbar {
  margin-bottom: 0;
  background: #d71737;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 800;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

a.navbar-brand {
  font-size: 22px;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  height: auto;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

a.navbar-brand:hover {
  color: #fff; }

.navbar-toggle {
  padding: 5px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #eee;
  color: #eee;
  text-transform: uppercase; }

.navbar-header {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .navbar-header {
      width: auto; } }

.navbar-nav {
  margin: 0;
  width: 100%; }
  .navbar-nav li {
    float: none; }
  @media screen and (min-width: 992px) {
    .navbar-nav {
      width: auto;
      float: right; }
      .navbar-nav li {
        float: left; } }

@media only screen and (max-width: 480px) {
  #maps-pro-navbar-collapse {
    background: rgba(0, 0, 0, 0.05); } }

#maps-pro-navbar-collapse .navbar-nav li a {
  font-size: 22px;
  font-size: 2.2rem;
  color: #fff;
  text-decoration: none;
  padding: 1em; }
  @media only screen and (max-width: 480px) {
    #maps-pro-navbar-collapse .navbar-nav li a {
      font-size: 20px;
      font-weight: 600; } }

#maps-pro-navbar-collapse .navbar-nav li a:focus {
  background: rgba(0, 0, 0, 0.085);
  text-decoration: none; }

#maps-pro-navbar-collapse .navbar-nav li a:hover {
  background: rgba(0, 0, 0, 0.085);
  text-decoration: none; }

#maps-pro-navbar-collapse .navbar-nav li.current-menu-item a {
  background: rgba(0, 0, 0, 0.085); }

.navbar-collapse {
  padding: 0; }

.menu-link {
  display: none; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.menu-icon-wrapper {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  pointer-events: none;
  transition: 0.1s;
  float: right; }
  @media screen and (device-aspect-ratio: 40 / 71) {
    .menu-icon-wrapper {
      background-image: url("/wp-content/themes/saga-maps-pro/img/menu.png"); } }
  @media screen and (min-width: 992px) {
    .menu-icon-wrapper {
      display: none !important;
      background-image: none !important; } }
  .menu-icon-wrapper button {
    box-shadow: none; }
  @media screen and (min-width: 992px) {
    .menu-icon-wrapper {
      display: none;
      opacity: 0;
      /* make things invisible upon start */ } }

@media screen and (device-aspect-ratio: 40 / 71) {
  .menu-icon-wrapper svg {
    display: none; } }

.menu-icon-wrapper.scaled {
  transform: scale(0.5); }

.menu-icon-wrapper svg {
  position: absolute;
  top: -33px;
  left: -33px; }

.menu-icon-wrapper svg path {
  stroke: #fff;
  stroke-width: 35pt;
  stroke-linecap: square;
  fill: transparent; }

.menu-icon-wrapper .menu-icon-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  margin: 0;
  padding: 0; }

.menu-icon-wrapper svg {
  transform: scale(0.1);
  transform-origin: 0 0; }

.headless .navbar-nav {
  width: 100%;
  text-align: center; }
  .headless .navbar-nav li {
    float: unset;
    clear: none;
    display: inline-block;
    text-align: center; }

.pagination {
  padding: 1em 2em 2em 2em; }
  @media only screen and (max-width: 768px) {
    .pagination {
      padding: 1em 0.25em; } }
  .pagination .page-numbers {
    padding: 0.15em 0.5em; }
  .pagination .current {
    color: #fff;
    background: #d71737;
    padding: 0.15em 0.5em; }

/* # Content
---------------------------------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/*
||
|| Google Maps
||
*/
.lightbox {
  display: inline-block;
  width: 100%;
  width: 100vw;
  height: 100vh;
  background: #000;
  position: absolute;
  top: 0;
  left: -100vw;
  z-index: 0; }
  .lightbox .lbInfo {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 800px; }
  .lightbox .glyphicon-remove {
    position: absolute;
    color: #fff;
    top: 1em;
    right: 1em; }
  .lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase; }
  .lightbox .prev {
    left: 1em; }
  .lightbox .next {
    right: 1.5em; }

.lightbox.active {
  left: 0;
  z-index: 999; }

.glyphicon-remove {
  padding: 0.5em; }

.interactive-map {
  opacity: 0; }

.static-map {
  width: 100%;
  height: auto; }

/*
** Map Filter Panel
*/
.navigation-panel {
  width: 100vw;
  height: 100vh;
  display: inline-block;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  left: -100vw;
  background: #fff;
  top: 0;
  padding-top: 62px;
  z-index: 99; }
  @media screen and (min-width: 992px) {
    .navigation-panel {
      width: 30vw;
      left: 70vw;
      top: 0;
      padding-top: 66px;
      z-index: 10; } }
  .navigation-panel .sort-guides {
    position: fixed;
    display: inline-block;
    overflow-y: scroll;
    height: 50px;
    width: 100%;
    background: #fff; }
    .navigation-panel .sort-guides .sort-button.active, .navigation-panel .sort-guides .geo-button.active {
      background: #333; }
  .navigation-panel .guides {
    padding-bottom: 100px; }
    .navigation-panel .guides .guide {
      padding: 1em 1em 0 1em;
      border-bottom: 4px solid #ddd;
      display: inline-block;
      width: 100%; }
      .navigation-panel .guides .guide h3 {
        margin: 0;
        font-size: 20px; }
      .navigation-panel .guides .guide .image-holder {
        display: inline-block;
        background: #000;
        background-size: 70px;
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        margin: 0.25em 0.5em 0 0; }
        .navigation-panel .guides .guide .image-holder img {
          width: 100px; }
      .navigation-panel .guides .guide span {
        font-size: 14px;
        display: table; }
      .navigation-panel .guides .guide span.distance {
        display: table-cell; }
        .navigation-panel .guides .guide span.distance:after {
          content: "(not approx via directions)";
          font-size: 12px;
          margin-left: 7px;
          vertical-align: middle; }
      .navigation-panel .guides .guide div.extra-actions {
        float: left;
        width: 100%;
        padding: 0.5em 0 1em 0; }
        .navigation-panel .guides .guide div.extra-actions a.directions, .navigation-panel .guides .guide div.extra-actions a.more {
          font-size: 14px;
          background: #d51c3c;
          font-weight: 600;
          padding: 0.5em 1em;
          border-radius: 2px;
          text-transform: uppercase;
          color: #fff;
          margin-right: 1em; }
  .navigation-panel .guide.active {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dddddd+0,efefef+100 */
    background: #dddddd;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #dddddd 0%, #efefef 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #dddddd 0%, #efefef 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #dddddd 0%, #efefef 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#efefef', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */ }
  .navigation-panel .promotion {
    background: #eee;
    position: fixed;
    bottom: 0;
    left: -100vw;
    width: 100vw;
    border-top: 4px solid #dddd;
    display: inline-block; }
    .navigation-panel .promotion:hover {
      background: #fff; }
    @media (min-width: 992px) {
      .navigation-panel .promotion {
        width: 30vw;
        left: 70vw; } }
    .navigation-panel .promotion .button {
      margin: auto;
      font-size: 12px;
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      opacity: 0; }
  .navigation-panel .promo-image {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 35%;
    padding-left: 0.5em; }
  .navigation-panel .promo-widget {
    position: relative;
    padding: 0.5em 0;
    font-size: 14px; }
    .navigation-panel .promo-widget a {
      display: table;
      width: 100%;
      height: auto;
      position: relative; }
  .navigation-panel .promo-logo {
    width: 110px;
    border: none;
    text-align: left;
    vertical-align: middle; }
  .navigation-panel .promo-widget p {
    margin: 0;
    line-height: 1; }
  .navigation-panel .promo-condition {
    font-size: 12px;
    color: #333;
    display: none; }
  .navigation-panel .promo-offer {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 1em; }

.navigation-panel.open {
  left: 0; }
  .navigation-panel.open .promotion {
    left: 0; }

.map-filters {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  display: block;
  -webkit-transition: left 0s;
  /* Safari */
  transition: left 0s;
  -webkit-transition: opacity 1s;
  /* Safari */
  transition: opacity 1s; }
  .map-filters .map-filter-form {
    margin: auto;
    height: auto;
    max-width: 100vw;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 1em;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.33); }
    @media (min-width: 992px) {
      .map-filters .map-filter-form {
        width: 600px; } }
    .map-filters .map-filter-form .close-panel {
      padding: 0;
      color: #333;
      -webkit-box-shadow: none;
      box-shadow: none;
      background: none;
      position: absolute;
      top: 0;
      right: 0;
      min-width: unset;
      min-height: unset;
      font-size: 1em;
      margin: 0; }
      .map-filters .map-filter-form .close-panel:hover {
        background: none; }
    .map-filters .map-filter-form ul.filter-section {
      margin: 0;
      padding: 0 0 1em 0;
      display: inline-block;
      text-align: center;
      width: 100%; }
      .map-filters .map-filter-form ul.filter-section li {
        padding: 0.5em;
        display: inline-block; }
        .map-filters .map-filter-form ul.filter-section li img {
          margin: auto;
          position: relative;
          text-align: center;
          display: block; }
      .map-filters .map-filter-form ul.filter-section label {
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px; }
    .map-filters .map-filter-form .filter-buttons {
      width: auto;
      display: table;
      margin: auto;
      position: relative; }
    .map-filters .map-filter-form .ui-state-default, .map-filters .map-filter-form .ui-widget-content .ui-state-default, .map-filters .map-filter-form .ui-widget-header .ui-state-default {
      height: 1.4em;
      width: 1.4em;
      border-radius: 50%;
      top: -0.3em;
      background: #d71737;
      border: 2px #333 solid; }
    .map-filters .map-filter-form .ui-slider-range {
      background: #d71737; }
    .map-filters .map-filter-form .ui-slider {
      height: 0.8em;
      border: none;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#353535+0,4f4f4f+100 */
      background: #353535;
      /* Old browsers */
      background: -moz-linear-gradient(top, #353535 0%, #4f4f4f 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, #353535 0%, #4f4f4f 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom, #353535 0%, #4f4f4f 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#4f4f4f', GradientType=0);
      /* IE6-9 */
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      box-shadow: 0pt 1pt 5pt #000; }

.map-filters.hide-filters {
  left: -100vw;
  opacity: 0; }

.hero {
  background: rgba(0, 0, 0, 0.8);
  color: #ebebeb;
  text-align: center;
  width: 100%;
  display: table; }

.hero-container {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%; }
  .hero-container .hero-wrap {
    width: 450px;
    margin: auto; }
    @media only screen and (max-width: 1200px) {
      .hero-container .hero-wrap {
        width: 450px; } }
    @media only screen and (max-width: 992px) {
      .hero-container .hero-wrap {
        width: 450px; } }
    @media only screen and (max-width: 768px) {
      .hero-container .hero-wrap {
        width: 95%;
        padding: 2.5%; } }
  .hero-container h1 {
    width: 100%;
    clear: both; }
    @media only screen and (max-width: 768px) {
      .hero-container h1 {
        font-size: 46px;
        font-size: 4.6rem; } }
  .hero-container p {
    font-size: 2em; }

.hero-toggle {
  float: right;
  clear: both;
  background: none;
  color: #ebebeb;
  border: none;
  padding: 0px; }

.interactive-map {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background: #F5F8F8;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3); }
  @media (min-width: 992px) {
    .interactive-map {
      width: 70vw; } }
  .interactive-map #map-offer {
    background: #d51c3c;
    color: #fff;
    font-size: 12px;
    padding: 0.5em 1em;
    border-radius: 20px;
    margin: 2em 1%;
    width: 98%;
    text-align: center; }

.event-icon-date {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 48px !important;
  height: 48px !important; }

.page-template-template-map ul.events-group {
  padding: 0.5em 0 0 0;
  font-size: 1.25em;
  font-weight: 500; }
  @media only screen and (max-width: 768px) {
    .page-template-template-map ul.events-group {
      color: #fff;
      font-size: 1em; } }
  .page-template-template-map ul.events-group li {
    display: inline-block;
    list-style-type: none;
    border-top: 2px dotted #ddd;
    padding: 1em 0 0.5em 0;
    margin: 0;
    width: 100%; }
    .page-template-template-map ul.events-group li span {
      float: left;
      display: inline-block;
      width: auto; }
      @media only screen and (max-width: 768px) {
        .page-template-template-map ul.events-group li span {
          width: 100%; } }
    .page-template-template-map ul.events-group li .event-details {
      display: inline-block;
      width: 100%; }
      .page-template-template-map ul.events-group li .event-details .sub-thumb {
        float: left;
        margin-right: 1em; }
      @media only screen and (max-width: 480px) {
        .page-template-template-map ul.events-group li .event-details .event-date {
          width: 100%; } }
      .page-template-template-map ul.events-group li .event-details .event-title {
        padding: 0 1em;
        font-weight: 400; }
        @media only screen and (max-width: 480px) {
          .page-template-template-map ul.events-group li .event-details .event-title {
            padding: 0; } }
      @media only screen and (max-width: 480px) {
        .page-template-template-map ul.events-group li .event-details .map-button {
          float: left; } }
    .page-template-template-map ul.events-group li .event-actions {
      margin-top: 0.5em;
      display: inline-block;
      float: left;
      width: 100%; }
  .page-template-template-map ul.events-group li:first-child {
    border-top: none; }

.page-template-template-map .location-image {
  margin: 1em 0;
  width: 100%; }

.page-template-template-map .location-details {
  float: left;
  display: inline-block;
  margin: 1em 0;
  position: relative; }
  .page-template-template-map .location-details span, .page-template-template-map .location-details .event-next {
    width: 100%;
    float: left; }
  .page-template-template-map .location-details .location-title {
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1; }
  .page-template-template-map .location-details .location-address {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0.25em 0; }
  .page-template-template-map .location-details .event-whenwhere {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
    line-height: 1.5; }
  .page-template-template-map .location-details .location-description {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0.25em 0; }
  .page-template-template-map .location-details .location-event {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 1.25em;
    font-weight: 400; }
  .page-template-template-map .location-details ul.event-next {
    border-top: 2px #e8e8e8 dotted;
    padding-top: 1em;
    list-style-type: none;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 0;
    display: inline-block; }
  .page-template-template-map .location-details .location-actions {
    display: inline-block;
    width: 100%; }
    .page-template-template-map .location-details .location-actions .map-button {
      padding: 0.5em 0.5em 0.5em 0;
      font-size: 18px;
      font-size: 1.8rem;
      margin-right: 2em;
      font-weight: 500; }

/* Base Map Styles */
.ui-loader {
  display: none; }

.tool-bar {
  display: inline-block; }

.location-details li.event-group-header {
  padding: 0 !important;
  font-size: 24px; }
  .location-details li.event-group-header p.location-title {
    padding: 0px;
    margin-bottom: 0.25em; }

.location-event {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 1.25em;
  font-weight: 400; }
  .location-event ul.events-list, .location-event ul.events-group {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0; }
    .location-event ul.events-list li, .location-event ul.events-group li {
      list-style-type: none;
      font-size: 1em;
      border-top: 2px #ddd dotted; }
      .location-event ul.events-list li .location-title, .location-event ul.events-group li .location-title {
        font-weight: 500;
        font-size: 1.25em; }
      .location-event ul.events-list li .calendar-date, .location-event ul.events-group li .calendar-date {
        font-weight: 500;
        padding: 0.5em;
        margin: 0.5em;
        font-size: 1.25em; }
      .location-event ul.events-list li ul, .location-event ul.events-group li ul {
        padding: 0; }
        .location-event ul.events-list li ul li, .location-event ul.events-group li ul li {
          font-size: 0.85em;
          border-top: none;
          padding: 0; }
    .location-event ul.events-list li:first-child, .location-event ul.events-group li:first-child {
      border: none; }
    .location-event ul.events-list li.sub-events, .location-event ul.events-group li.sub-events {
      font-size: 1em; }

.mobile-info {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: absolute;
  top: 0;
  left: -100vw;
  z-index: 99;
  font-size: 1.25em;
  padding-top: 50px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0.7+100 */ }
  .mobile-info .close-button {
    padding: 0;
    color: #333;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    position: relative;
    float: right;
    min-width: unset;
    min-height: unset;
    font-size: 1em;
    margin: 0; }
  .mobile-info .mobile-image {
    width: auto;
    height: auto;
    display: block;
    margin: 1em auto; }
  .mobile-info li.event-group-header {
    padding: 0;
    font-size: 24px; }
    .mobile-info li.event-group-header p.location-title {
      padding: 0;
      margin-bottom: 0.25em; }

.mobile-details {
  position: relative;
  display: inline-block;
  color: #000;
  z-index: 100;
  padding: 0 1em; }
  .mobile-details .location-title, .mobile-details .location-event, .mobile-details .location-description, .mobile-details .location-actions {
    display: block;
    width: 100%;
    position: relative;
    z-index: 10; }
  .mobile-details .location-title {
    font-family: "Roboto", "Helvetica", Arial, sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    text-shadow: 1px 1px 8px #000;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.25em; }
  .mobile-details .event-whenwhere, .mobile-details .location-address {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.1; }
  .mobile-details .location-description {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.1; }
  .mobile-details .location-actions {
    display: inline-block; }
    .mobile-details .location-actions a {
      display: inline-block;
      padding: 0.25em 0.25em 0.25em 0;
      font-weight: 500;
      margin-right: 1em;
      font-size: 20px;
      font-size: 2rem; }

.infoWindow {
  width: 525px; }

.infoWindow .button {
  font-size: 1.4em; }

.infoWindow .button {
  background: #ddd;
  padding: 5px 10px;
  margin-right: 10px;
  display: block;
  color: #333; }

.infoWindow h3 {
  font-size: 3em;
  margin: 0;
  padding: 5px 0px; }

.infoWindow img {
  margin-right: 20px; }

.info-address {
  font-size: 1.4em;
  display: inline-block;
  width: 65%;
  float: left; }

.info-address span.address {
  float: left; }

.info-address span.city, .info-address span.state, .info-address span.zip {
  float: left; }

.info-address span.city {
  clear: left; }

.info-excerpt p {
  font-size: 1.2em; }

.info-no-img {
  clear: left;
  float: left; }

/* MEDIA QUERIES */
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .infoWindow {
    width: 100%; }
  .infoWindow h3 {
    font-size: 1.25em; }
  .infoWindow img {
    height: auto; }
  .infoWindow p {
    width: auto;
    font-size: 1em;
    margin: 0; }
  .infoWindow .button {
    font-size: 1em;
    margin-top: 8px; }
  .info-address span {
    float: none;
    clear: none !important; }
  .info-address span.city {
    clear: none; }
  .info-excerpt p {
    font-size: 1em; }
  .mobile-bg-image {
    display: inline-block;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    opacity: 0.75;
    top: 0; } }

/*
||
|| Hero
||
*/
.home.page-template-landing-page-php {
  background-image: unset;
  background: #000; }

.homepage-hero {
  width: 100%;
  max-width: 800px;
  color: #fff;
  position: relative;
  margin: auto;
  text-align: center;
  z-index: 99;
  padding-bottom: 2em;
  height: auto; }
  .homepage-hero .homepage-hero-message {
    width: 100%; }
    .homepage-hero .homepage-hero-message h1, .homepage-hero .homepage-hero-message h2, .homepage-hero .homepage-hero-message h3 {
      margin: 0.5em 0 0 0; }

.hero-wrap {
  display: inline-block;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  left: 0;
  bottom: 0;
  opacity: 1; }
  .hero-wrap .hero-message {
    margin: auto;
    height: auto;
    max-width: 600px;
    position: relative;
    background: #fff;
    padding: 2em;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.33); }
    .hero-wrap .hero-message a img {
      border: none; }
    .hero-wrap .hero-message .hero-toggle {
      color: #707070;
      border: none;
      padding: 0.5em;
      right: 0;
      top: 0; }
    .hero-wrap .hero-message h1 {
      font-size: 32px;
      margin: 0; }
    .hero-wrap .hero-message p {
      margin: 0.5em 0; }
    .hero-wrap .hero-message .btn {
      margin-top: 0.5em;
      text-transform: capitalize; }

.hero-wrap.hero-hidden {
  -webkit-transition: opacity 1s;
  /* Safari */
  transition: opacity 1s;
  opacity: 0;
  pointer-events: none;
  z-index: 0; }

/* ## Locations
--------------------------------------------- */
.single-saga_locations .entry-header, .single-saga_events .entry-header {
  padding: 0 2em; }
  .single-saga_locations .entry-header ul, .single-saga_events .entry-header ul {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-top: 1em;
    padding-left: 0; }
    .single-saga_locations .entry-header ul li, .single-saga_events .entry-header ul li {
      list-style-type: none; }
      .single-saga_locations .entry-header ul li a, .single-saga_events .entry-header ul li a {
        font-size: 18px;
        font-size: 1.8rem;
        border: none;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px; }

.single-saga_locations .entry-content, .single-saga_events .entry-content {
  padding: 2em; }
  @media only screen and (max-width: 1200px) {
    .single-saga_locations .entry-content, .single-saga_events .entry-content {
      padding: 2em; } }
  @media only screen and (max-width: 992px) {
    .single-saga_locations .entry-content, .single-saga_events .entry-content {
      padding: 2em; } }
  @media only screen and (max-width: 768px) {
    .single-saga_locations .entry-content, .single-saga_events .entry-content {
      padding: 1em; } }
  @media only screen and (max-width: 480px) {
    .single-saga_locations .entry-content, .single-saga_events .entry-content {
      padding: 1em; } }
  .single-saga_locations .entry-content img.attachment-feature, .single-saga_events .entry-content img.attachment-feature {
    border-radius: 8px; }
  .single-saga_locations .entry-content .summary, .single-saga_events .entry-content .summary {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 1em 0; }
    .single-saga_locations .entry-content .summary .button, .single-saga_events .entry-content .summary .button {
      margin: 1em 0 0 0; }

.single-saga_locations .single-map, .single-saga_events .single-map {
  width: 100%;
  height: 360px; }

.single-saga_locations .small-map, .single-saga_events .small-map {
  width: 100%;
  height: 250px; }

/*
** Events
*/
.single-saga_events .entry-content img.attachment-medium.size-medium.wp-post-image {
  width: 300px;
  float: left;
  margin: 0 1em 1em 0;
  border-radius: 9px; }

.single-saga_events .entry-content .event--details {
  font-weight: bold; }
  .single-saga_events .entry-content .event--details .event--location {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.3; }
  .single-saga_events .entry-content .event--details .button {
    margin-left: 0; }

.single-saga_events .entry-content p:first-of-type {
  clear: both; }

.archive .event-content h2 {
  margin: 0;
  font-weight: bold; }

.archive .event-content .button {
  margin: 0 1em 0 0; }

/*
||
|| Search Bar, Form, & Results Page
||
*/
.failure-notice {
  display: inline-block;
  width: 100%;
  padding-bottom: 1em;
  border-bottom: 2px solid #ddd;
  margin-bottom: 4em; }
  .failure-notice p {
    text-align: center;
    font-size: 2em;
    font-weight: 300;
    font-style: italic;
    padding: 1em;
    margin: 0;
    color: #999; }

#sorry-no-content {
  padding: 4em 20em; }

/* ## 404 Error Page
----------------------------------------- */
.error-404 .page-content {
  background-color: #fff;
  background-image: url("./img/santa-claus-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding: 700px 100px 200px; }
  @media only screen and (max-width: 768px) {
    .error-404 .page-content {
      padding: 226px 10px 50px; } }

/*
||
|| Single Post & Pages
||
*/
.no-img .embed-youtube {
  margin-left: -15px;
  margin-bottom: -5px; }

.single-saga_location section {
  padding: 0 0 1em 0; }

.post .image-holder {
  position: relative;
  display: inline-block;
  margin-bottom: 3em; }
  @media only screen and (max-width: 992px) {
    .post .image-holder {
      height: 600px; } }
  @media only screen and (max-width: 768px) {
    .post .image-holder {
      height: 280px; } }

.post .entry-header {
  position: absolute;
  bottom: 0px;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */ }
  @media only screen and (max-width: 480px) {
    .post .entry-header {
      padding: 12em 3em 1em 1em; } }

.post .entry-header h1 {
  color: #d71737;
  text-shadow: 0px 0px 40px #000;
  padding: 0 0.5em;
  line-height: 0; }

.post ul.entry-meta {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .post ul.entry-meta span.glyphicon {
    margin-right: 9px;
    vertical-align: middle; }
  .post ul.entry-meta li {
    float: left;
    display: inline-block;
    border-right: 2px solid #ddd;
    color: #fff;
    width: auto;
    margin: 0.4em;
    padding: 0.4em 1em;
    line-height: 1em;
    font-size: 1.2em;
    text-align: center;
    font-weight: 300; }
    @media only screen and (max-width: 768px) {
      .post ul.entry-meta li {
        font-size: 1em; } }
  .post ul.entry-meta ul {
    padding: 1em;
    display: inline; }
    @media only screen and (max-width: 992px) {
      .post ul.entry-meta ul {
        display: inline;
        float: left;
        clear: left;
        padding: 0em 0.5em; } }
    .post ul.entry-meta ul li {
      display: inline-block;
      margin: 0.4em;
      padding: 0.4em 0em;
      line-height: 1em;
      border: none; }
      @media only screen and (max-width: 992px) {
        .post ul.entry-meta ul li {
          display: inline;
          width: auto;
          padding: 0em; } }

.post .no-img {
  margin-bottom: 0em;
  height: auto; }
  .post .no-img .entry-header {
    position: relative;
    padding: 1em 0.25em;
    background: #000; }
    .post .no-img .entry-header h1 {
      padding-bottom: 0.5em; }
  .post .no-img .entry-meta {
    display: inline-block; }

.post .entry-content p {
  font-weight: 300;
  padding-bottom: 1em; }

@media only screen and (max-width: 992px) {
  .post .entry-content {
    padding: 0 1em 1em 3em; } }

@media only screen and (max-width: 768px) {
  .post .entry-content {
    padding: 0 1em 0em 1em; } }

.post .entry-content ul {
  font-size: 1.4em;
  font-weight: 300; }

.post aside {
  padding: 0em 3em 0em 3em; }
  @media only screen and (max-width: 768px) {
    .post aside {
      padding: 0em 2em 0em 2em; } }

.map-image {
  text-align: center; }
  .map-image a.map-link {
    display: inline-block;
    margin: 3em 3em 1em 3em; }

.gallery-fade {
  overflow: hidden;
  height: 390px;
  width: 100%;
  display: inline-block;
  opacity: 0;
  animation-name: gal;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  position: relative;
  border-bottom: 4px solid #eee; }
  @media only screen and (max-width: 768px) {
    .gallery-fade {
      height: auto;
      margin-bottom: 1em; } }
  .gallery-fade .overlay {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+49,0.23+100 */
    background: -moz-linear-gradient(top, transparent 0%, transparent 49%, rgba(0, 0, 0, 0.23) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, transparent 49%, rgba(0, 0, 0, 0.23) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, transparent 49%, rgba(0, 0, 0, 0.23) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#3b000000', GradientType=0);
    /* IE6-9 */
    height: 50px;
    display: block;
    width: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 0px; }
  .gallery-fade .tiled-gallery {
    margin: 0; }

.format-video .no-img .entry-header {
  background: none;
  padding: 0.5 1em; }
  .format-video .no-img .entry-header h1 {
    text-shadow: none; }
  .format-video .no-img .entry-header ul.entry-meta li {
    color: #707070; }

@keyframes gal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.lb {
  display: inline; }
  @media only screen and (max-width: 480px) {
    .lb {
      display: block; } }

section.features p {
  margin-top: 1em;
  font-size: 1.2em; }

section.feature-img {
  display: inline-block;
  margin-bottom: 2em; }
  @media only screen and (max-width: 480px) {
    section.feature-img {
      margin-bottom: 0em; } }
  section.feature-img img {
    width: 100%;
    height: auto; }

.archive-list .promo-widget {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 1em auto 1em;
  padding-bottom: 2em;
  border-bottom: 2px dotted #eee; }
  .archive-list .promo-widget .promo-image {
    width: 120px;
    margin: auto; }
    .archive-list .promo-widget .promo-image img {
      border: none;
      border-radius: 4px; }
  .archive-list .promo-widget .promo-offer {
    text-align: center;
    font-size: 16px;
    margin: 10px 0; }
    .archive-list .promo-widget .promo-offer p {
      margin: 0; }
    .archive-list .promo-widget .promo-offer span.promo-condition {
      font-size: 12px; }
  .archive-list .promo-widget a.button {
    text-align: center;
    clear: both;
    float: unset;
    margin: auto;
    display: table; }

.page-template-template-offer .page-header h1.page-title {
  text-align: center; }

.page-template-template-offer .prm-content {
  padding: 0 2em;
  width: 100%;
  text-align: center;
  margin: auto; }
  .page-template-template-offer .prm-content p {
    border: 3px dashed #ccc;
    padding: 1em;
    font-size: 1.25em;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-radius: 8px; }
  .page-template-template-offer .prm-content .prm-locations {
    padding-bottom: 2em;
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center; }
  .page-template-template-offer .prm-content .searchZip {
    display: none; }
  .page-template-template-offer .prm-content .searchZip.show-search {
    display: inline-block; }
    .page-template-template-offer .prm-content .searchZip.show-search input {
      top: 3px;
      position: relative;
      padding: 5px 10px; }

.embed-youtube iframe {
  width: 100%; }

/* Homepage Video Hero
-----------------------------------------*/
.bg-video {
  border-right: none;
  border-left: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #000; }
  .bg-video:before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99; }
  .bg-video:after {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+43,000000+100&0+85,0.65+100 */
    background: -moz-linear-gradient(top, transparent 43%, transparent 85%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 43%, transparent 85%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 43%, transparent 85%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */ }

.video-container {
  position: relative;
  overflow: hidden; }

.video-container .filter {
  display: none; }
  @media only screen and (min-width: 768px) {
    .video-container .filter {
      z-index: 100;
      position: absolute;
      background: rgba(0, 0, 0, 0.7);
      width: 100%;
      height: 100%;
      display: block; } }

.video-container video {
  position: absolute;
  z-index: 0;
  bottom: 0; }

.video-container video.fillWidth {
  width: 100%; }

.poster {
  min-height: 500px; }

#header-content {
  text-align: center;
  position: relative;
  z-index: 999; }

/* # Archive
---------------------------------------------------------------------------------------------------- */
.archive img.entry-img {
  width: 100%;
  height: auto; }

.pagination {
  display: inline-block;
  font-size: 1.4em;
  text-align: center;
  position: relative;
  width: 100%; }
  .pagination .screen-reader-text {
    display: none; }

.archive h2.entry-title {
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal; }

.archive .archive-list {
  padding: 1em; }
  @media only screen and (max-width: 992px) {
    .archive .archive-list {
      padding: 1em; } }
  @media only screen and (max-width: 768px) {
    .archive .archive-list {
      padding: 0em; } }
  .archive .archive-list .single-post {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 2px dotted #eee; }
    .archive .archive-list .single-post img {
      border-radius: 5px;
      border: 0;
      box-shadow: 3px 3px 0 #ddd;
      transform: scale(1); }
    .archive .archive-list .single-post:hover img {
      -webkit-transition: all ease-out 500ms;
      -moz-transition: all ease-out 500ms;
      -o-transition: all ease-out 500ms;
      transition: all ease-out 500ms;
      transform: scale(1.1);
      box-shadow: 3px 3px 0 #ddd; }
    .archive .archive-list .single-post .more-actions {
      margin-top: 1em; }
      .archive .archive-list .single-post .more-actions .inline-button {
        margin: 0.5em 1em 0.5em 0; }

/* # Sidebars
---------------------------------------------------------------------------------------------------- */
aside {
  padding: 1em;
  display: inline-block;
  width: 100%; }

.post-type-archive-saga_location aside {
  padding: 0em 2em; }

.widget_categories {
  background: none !important;
  border: none !important; }
  .widget_categories h3 {
    padding: 1em 1em 0em 1em; }
  .widget_categories ul {
    list-style-type: none;
    padding-top: 1em; }
    .widget_categories ul li {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .widget_categories ul li a {
        text-decoration: underline;
        font-size: 1.5em; }

.widget {
  display: inline-block;
  background: #f7f7f7;
  margin-bottom: 1em;
  padding-bottom: 1em;
  width: 100%;
  margin-top: 0; }
  .widget p {
    font-size: 1.2em; }
  .widget .widget-header {
    text-align: center;
    background: #eee;
    color: #000;
    padding: 1em;
    margin-bottom: 1em; }
  .widget .widget-content {
    padding: 1em 2em 2em 2em; }
    .widget .widget-content ul {
      display: inline-block;
      list-style-type: none;
      margin: 0;
      padding: 0;
      width: 100%; }
      .widget .widget-content ul li {
        font-size: 1.4em;
        text-align: center; }
      .widget .widget-content ul .profile-image,
      .widget .widget-content ul .profile-name {
        text-align: center;
        float: none;
        display: inline-block;
        width: 100%; }
      .widget .widget-content ul .profile-image img {
        border-radius: 50%; }
      .widget .widget-content ul .profile-name {
        margin: 1em 0; }
        .widget .widget-content ul .profile-name a {
          font-size: 1.4em; }
      .widget .widget-content ul .phone-number,
      .widget .widget-content ul .email-address,
      .widget .widget-content ul .website-url {
        margin-bottom: 0.5em; }
      .widget .widget-content ul .description {
        font-size: 1em; }
      .widget .widget-content ul a span.glyphicon {
        padding-right: 0.5em; }

.widget-location {
  padding-bottom: 3em; }
  .widget-location .widget-list {
    border-top: 3px solid #eee;
    padding-top: 2em;
    padding-bottom: 1em; }
  .widget-location h4 {
    padding: 0em 1em 1em 1em;
    text-align: center; }
  .widget-location h5 {
    padding: 0em 0em 1em 0em;
    font-size: 1.4em; }
    @media (max-width: 768px) {
      .widget-location h5 {
        font-size: 1.2em; } }
  .widget-location h5 span {
    color: #d71737; }
  .widget-location picture img {
    width: 100%;
    height: auto; }
  .widget-location ul {
    padding: 0em;
    font-size: 1em;
    margin: 0em;
    list-style-type: none; }
    .widget-location ul li {
      padding: 0;
      margin: 0; }
      .widget-location ul li span {
        margin-right: 5px;
        text-transform: uppercase; }
  .widget-location footer.entry-footer {
    border-top: none; }

div.filter-tools .flat-invert {
  background: none;
  color: #000;
  border: none; }
  @media screen and (min-width: 768px) {
    div.filter-tools .flat-invert {
      background: #d71737;
      color: #fff; } }

@media screen and (min-width: 768px) {
  div.filter-tools .filter-toggle {
    position: relative;
    display: inline-block;
    width: 100%; }
  div.filter-tools h3 {
    font-weight: 300;
    margin-right: 1em;
    margin-top: 0.2em;
    font-size: 1.2em; }
  div.filter-tools button {
    margin: 1em auto;
    position: relative;
    border: none;
    padding: 0.5em 1em;
    display: block; }
  div.filter-tools svg {
    color: #fff; } }

.filter-menu {
  display: block;
  width: 100%;
  padding: 0em 3em;
  overflow: hidden; }
  .filter-menu .filter-section label {
    width: 100%;
    text-align: center; }
  .filter-menu .ui-state-default, .filter-menu .ui-widget-content .ui-state-default, .filter-menu .ui-widget-header .ui-state-default {
    height: 1.4em;
    width: 1.4em;
    border-radius: 50%;
    top: -0.3em;
    background: #d71737;
    border: 2px #FF8A65 solid; }
  .filter-menu .ui-slider-range {
    background: #d71737; }
  .filter-menu .ui-slider {
    height: 0.8em;
    border: none;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#353535+0,4f4f4f+100 */
    background: #353535;
    /* Old browsers */
    background: -moz-linear-gradient(top, #353535 0%, #4f4f4f 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #353535 0%, #4f4f4f 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #353535 0%, #4f4f4f 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#353535', endColorstr='#4f4f4f',GradientType=0 );
    /* IE6-9 */
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px; }

.filter-menu.open {
  padding: 0em 3em 3em 3em; }

.widget-faq {
  padding: 0em 3em 3em 0em; }
  .widget-faq ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
    .widget-faq ul li {
      list-style-type: none;
      padding: 1em 0;
      margin: 1em 0;
      border-bottom: 4px solid #eee; }
      .widget-faq ul li p {
        font-size: 1em; }
      .widget-faq ul li h4 {
        font-size: 1.2em; }

#ziplist h3 {
  text-align: center;
  margin: 2em 0 1em 0; }

#ziplist label {
  font-size: 1.4em;
  font-weight: 400;
  color: #707070;
  width: 78%;
  margin-left: 1em;
  float: left;
  text-align: left; }

#ziplist input[type="checkbox"] {
  float: left;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

#ziplist input[type="checkbox"]:checked {
  background-image: url("/wp-content/themes/saga-clarksville-real-estate/img/checked.png");
  border: none;
  background-size: 100%;
  background-repeat: no-repeat; }

#ziplist .single-zip {
  display: inline-block;
  width: 100%;
  margin: 0.5em 0em; }

.reading-widget {
  margin-top: 2em;
  text-align: left; }
  .reading-widget h4 {
    font-size: 1.2em;
    text-align: left; }
  .reading-widget p {
    font-size: 1em;
    text-align: left; }
  .reading-widget li {
    border-bottom: 2px #ddd solid;
    margin-bottom: 1em;
    padding-bottom: 1em; }

.widget #native-title {
  color: #d71737; }

/* # Widgets
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  aside {
    padding: 1em 0; } }

@media only screen and (max-width: 768px) {
  aside {
    padding: 0; } }

input.search-field {
  padding: 5%; }

.event-widget .event-list-item {
  padding: 1em 0;
  border-bottom: 2px dotted #eee; }
  .event-widget .event-list-item h3.widget-title {
    font-weight: 500;
    font-size: 1em; }
  .event-widget .event-list-item h3.entry-title {
    font-family: "Roboto", "Helvetica", Arial, sans-serif;
    font-weight: 500;
    font-size: 1em; }

.widget {
  padding: 10%;
  margin-bottom: 15%;
  font-size: 1.25em; }
  @media only screen and (max-width: 992px) {
    .widget {
      margin-bottom: 1em; } }
  @media only screen and (max-width: 768px) {
    .widget {
      margin-bottom: 1em; } }
  .widget ul {
    list-style-type: none;
    padding-left: 0px; }

.dynamic-categories-class {
  background: none; }
  .dynamic-categories-class h3 {
    font-family: "Roboto", "Helvetica", Arial, sans-serif;
    color: #d71737;
    text-align: center;
    font-size: 56px; }
  .dynamic-categories-class ul {
    border-top: 2px dotted #eee;
    padding: 0;
    margin-top: 0.5em; }
    .dynamic-categories-class ul li {
      border-bottom: 2px dotted #eee;
      padding: 0.5em; }
      .dynamic-categories-class ul li a {
        width: 100%;
        display: inline-block;
        vertical-align: middle; }
        @media only screen and (max-width: 768px) {
          .dynamic-categories-class ul li a {
            text-align: center; } }
      .dynamic-categories-class ul li a:hover .term-count {
        background: #d71737;
        color: #fff; }
      .dynamic-categories-class ul li span {
        float: left; }
        @media only screen and (max-width: 768px) {
          .dynamic-categories-class ul li span {
            float: none; } }
      .dynamic-categories-class ul li .term-count {
        float: right;
        background: #777;
        color: #fff;
        width: 32px;
        height: 32px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        padding-top: 5px;
        border-radius: 50%;
        margin: 4px 15px; }
        @media only screen and (max-width: 1200px) {
          .dynamic-categories-class ul li .term-count {
            display: none; } }

/**
 * AddToCalendar Blue Style
 * http://addtocalendar.com
 */
/* Base */
.addtocalendar var {
  display: none; }

.addtocalendar {
  position: relative;
  display: inline-block;
  background: transparent !important; }

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer; }

.atcb-link:focus ~ ul,
.atcb-link:active ~ ul,
.atcb-list:hover {
  visibility: visible; }

.atcb-list {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 170px;
  z-index: 900; }

.atcb-list,
.atcb-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff; }

.atcb-item {
  float: none;
  text-align: left; }

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block; }

.atcb-item.hover,
.atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none; }

/* Blue */
.atc-style-blue .atcb-link,
.atc-style-blue .atcb-link:hover,
.atc-style-blue .atcb-link:active,
.atc-style-blue .atcb-link:focus {
  margin: 0;
  padding: 7px 25px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  line-height: 20px;
  vertical-align: middle;
  background: #4281f4;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.13) inset;
  border-radius: 4px;
  zoom: 1; }

.atc-style-blue .atcb-list {
  width: 170px;
  border: 1px solid #bababa;
  border-radius: 2px;
  box-shadow: 0 0 5px #AAA; }

.atc-style-blue .atcb-list,
.atc-style-blue .atcb-item {
  background: #fff;
  color: #000; }

.atc-style-blue .atcb-item,
.atc-style-blue .atcb-item-link {
  line-height: 1.3em;
  vertical-align: middle;
  zoom: 1; }

.atc-style-blue .atcb-item-link,
.atc-style-blue .atcb-item-link:hover,
.atc-style-blue .atcb-item-link:active,
.atc-style-blue .atcb-item-link:focus {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  padding: 5px 15px; }

.atc-style-blue .atcb-item-link:hover,
.atc-style-blue .atcb-item-link:active,
.atc-style-blue .atcb-item-link:focus {
  color: #fff; }

.atc-style-blue .atcb-item.hover,
.atc-style-blue .atcb-item:hover {
  background: #4281f4; }

/* ## Site Footer
--------------------------------------------- */
.site-footer {
  position: relative;
  width: 100%; }

.site-footer, .page-wrap:after {
  height: 72px; }
  @media only screen and (max-width: 768px) {
    .site-footer, .page-wrap:after {
      height: 50px; } }

@media only screen and (max-width: 768px) {
  .home .site-footer {
    display: none; } }

@media only screen and (max-width: 768px) {
  .page-template-template-map .page-wrap:after {
    height: 0px; } }

.site-footer {
  z-index: 1;
  background: #111;
  padding: 1em;
  display: block;
  height: auto;
  margin: 0;
  bottom: 0;
  position: relative; }
  .site-footer ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0px; }
    .site-footer ul li {
      display: inline;
      margin: 1em 0.5em;
      padding: 0.25em; }
      @media only screen and (max-width: 768px) {
        .site-footer ul li {
          font-size: 1.2em;
          text-align: center;
          width: 100%;
          display: inline-block;
          margin: 0; } }

@media only screen and (max-width: 768px) {
  .page-template-template-map .menu {
    display: none; } }

@media only screen and (max-width: 768px) {
  .copyright {
    width: 100%;
    text-align: center;
    display: block; } }

.footer-info {
  margin-top: 25px; }
  @media only screen and (max-width: 768px) {
    .footer-info {
      height: 50px; } }

/* # Plugins
---------------------------------------------------------------------------------------------------- */
/* ## Gravity Forms
--------------------------------------------- */
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    bottom: -200px; }
  100% {
    opacity: 1;
    bottom: 0; } }

.page-template-landing-page .homepage-form-module {
  max-width: 740px;
  margin: 0 auto 3em auto;
  padding: 1em;
  position: relative;
  border-radius: 6px;
  background-color: #ebebeb;
  background: -moz-linear-gradient(top, #fff 0%, #ebebeb 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fff 0%, #ebebeb 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fff 0%, #ebebeb 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$white, endColorstr=$gray--lightest, GradientType=0);
  /* IE6-9 */
  z-index: 999; }
  @media screen and (min-width: 992px) {
    .page-template-landing-page .homepage-form-module {
      padding: 2em; } }

.gform_confirmation_message {
  font-size: 32px;
  padding: 2em; }

.page-template-template-contact .gform_wrapper {
  padding: 0; }

.gform_wrapper h1, .gform_wrapper h2, .gform_wrapper h3, .gform_wrapper h4, .gform_wrapper h5, .gform_wrapper h6, .gform_wrapper p {
  font-family: "Roboto", "Helvetica", Arial, sans-serif; }

.gform_wrapper #form-map {
  width: 100%;
  height: 350px;
  border: 3px solid #e2e2e2;
  border-radius: 6px; }

.gform_wrapper #pac-input {
  padding: 0.5em;
  border-radius: 0;
  font-size: 20px;
  font-size: 2rem; }
  @media only screen and (max-width: 768px) {
    .gform_wrapper #pac-input {
      font-size: 20px;
      font-size: 2rem; } }

.gform_wrapper .gform_page {
  padding: 1em 0; }

.gform_wrapper .gform_page_fields {
  display: inline-block;
  width: 100%; }

.gform_wrapper .validation_error {
  font-size: 18px;
  font-size: 1.8rem;
  font-size: 20px;
  font-size: 2rem;
  padding: 1.5em 0 0 1.1em;
  color: #d71737;
  font-style: italic; }

.gform_wrapper .gform_heading {
  padding-bottom: 0;
  text-align: center; }
  .gform_wrapper .gform_heading h1, .gform_wrapper .gform_heading h2, .gform_wrapper .gform_heading h3, .gform_wrapper .gform_heading h4 {
    margin: 0; }

.gform_wrapper .gsection_title {
  font-size: 18px;
  font-size: 1.8rem;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 1em;
  font-weight: 400;
  color: #707070; }

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title {
  margin: 0;
  padding-bottom: 1em;
  font-weight: 400; }

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar {
  border: 1px solid #999;
  color: #fff;
  text-align: right;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  margin: 0 1.5em; }
  .gform_wrapper .gf_progressbar_wrapper .gf_progressbar span {
    padding-right: 1em; }
  .gform_wrapper .gf_progressbar_wrapper .gf_progressbar .gf_progressbar_percentage {
    padding: 0.25em; }
  .gform_wrapper .gf_progressbar_wrapper .gf_progressbar .percentbar_0 {
    color: #d71737;
    text-align: left; }
    .gform_wrapper .gf_progressbar_wrapper .gf_progressbar .percentbar_0 span {
      padding-left: 1em; }

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar_percentage {
  background: #c62828;
  /* Old browsers */
  background: -moz-linear-gradient(left, #c62828 0%, #d71737 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #c62828 0%, #d71737 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #c62828 0%, #d71737 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62828', endColorstr='#d71737', GradientType=1);
  /* IE6-9 */ }

.gform_wrapper .gform_body ul {
  margin: 0;
  padding: 0;
  width: 100%; }
  .gform_wrapper .gform_body ul li.gfield_html p {
    font-size: 0.8em;
    line-height: 1.5; }
  .gform_wrapper .gform_body ul li {
    padding: 0;
    margin-bottom: 1em;
    font-size: 20px;
    font-size: 2rem;
    list-style-type: none;
    clear: both;
    display: block; }
    @media only screen and (max-width: 768px) {
      .gform_wrapper .gform_body ul li {
        font-size: 20px;
        font-size: 2rem; } }
    .gform_wrapper .gform_body ul li .clear-multi div {
      width: 30%;
      margin-right: 3%;
      float: left; }
    .gform_wrapper .gform_body ul li .clear-multi label {
      font-size: 0.8em;
      font-weight: 400;
      color: #a9a9a9; }
    .gform_wrapper .gform_body ul li .clear-multi div:hover label {
      color: #d71737; }
    .gform_wrapper .gform_body ul li .clear-multi input {
      float: left; }
    .gform_wrapper .gform_body ul li .clear-multi i {
      float: right;
      font-style: normal;
      vertical-align: middle;
      padding-top: 15px;
      width: 10%;
      text-align: center; }
    .gform_wrapper .gform_body ul li .clear-multi .gfield_time_hour input {
      width: 90%; }
  .gform_wrapper .gform_body ul li.collapse {
    display: none; }
  .gform_wrapper .gform_body ul li.collapse.in {
    display: block; }
  .gform_wrapper .gform_body ul .clear-multi div:last-child, .gform_wrapper .gform_body ul .clear-multi div:first-child {
    width: 33%;
    margin-right: 0; }
  .gform_wrapper .gform_body ul select {
    background: #e2e2e2;
    color: #7b7b7b;
    border: 0.5em solid #e2e2e2;
    border-radius: unset;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
  .gform_wrapper .gform_body ul img {
    float: left; }
  .gform_wrapper .gform_body ul textarea {
    border: none;
    border-bottom: 2px #EAEAEA solid;
    resize: none;
    width: 100%;
    min-height: 50px;
    padding: 0.5em;
    background: #e2e2e2;
    border-radius: 6px;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25); }
  .gform_wrapper .gform_body ul .noscroll {
    overflow: hidden; }

.gform_wrapper .gform_body .clear-section {
  clear: both; }

.gform_wrapper .gform_body div.instruction {
  color: #a9a9a9; }

.gform_wrapper .gform_body div.gfield_description, .gform_wrapper .gform_body div.instruction {
  padding: 0.4em 0;
  font-size: 0.8em; }

.gform_wrapper .gform_body li.gfield:focus div.gfield_description, .gform_wrapper .gform_body li.gfield:hover div.gfield_description {
  opacity: 1;
  color: #d71737; }

.gform_wrapper .gform_body .ginput_container_address {
  margin: 1em 0; }

.gform_wrapper .gform_body .top_label .gfield_label, .gform_wrapper .gform_body .ginput_container_address label, .gform_wrapper .gform_body .address_state {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.gform_wrapper .gform_body .gfield_description {
  opacity: 0;
  font-style: italic; }

.gform_wrapper .gform_body input, .gform_wrapper .gform_body select {
  padding: 0.5em;
  border: none; }

.gform_wrapper .gform_body input, .gform_wrapper .gform_body input[type="text"] {
  border-bottom: 2px #EAEAEA solid;
  width: 100%;
  font-weight: 400;
  background: #e2e2e2;
  border-radius: 6px;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25); }

.gform_wrapper .gform_body input[type="radio"] {
  appearance: radio !important;
  webkit-appearance: radio !important;
  moz-appearance: radio !important; }

.gform_wrapper .gform_body ul.gfield_checkbox li {
  display: inline-block; }
  .gform_wrapper .gform_body ul.gfield_checkbox li label {
    font-size: 0.8em;
    font-weight: 400;
    color: #707070;
    margin-left: 0.5em; }
  .gform_wrapper .gform_body ul.gfield_checkbox li input[type="checkbox"] {
    box-shadow: unset;
    border: unset;
    width: auto; }

.gform_wrapper .gform_body img.ui-datepicker-trigger {
  width: 8%;
  height: auto;
  padding-right: 2%;
  padding-top: 0;
  vertical-align: middle;
  color: #d71737; }

.gform_wrapper .gform_body .datepicker {
  width: 92%; }

.gform_wrapper .gform_body input.datepicker.datepicker_with_icon {
  margin-right: 0; }

.gform_wrapper .gform_body select {
  margin-bottom: 1em;
  border-radius: 0;
  width: 100%;
  color: #a9a9a9;
  color: #333; }

.gform_wrapper .gform_body select.small {
  width: auto;
  padding-right: 1em; }

.gform_wrapper .gform_body .ginput_container_select {
  float: left;
  width: 100%; }

.gform_wrapper .gform_body input:focus {
  border-bottom: 4px #d71737 solid;
  margin-bottom: -2px; }

.gform_wrapper .gform_body .inputfile {
  display: inline-block;
  width: 100%; }

.gform_wrapper input[type="submit"], .gform_wrapper input[type="button"] {
  background: #d71737;
  border: none;
  font-size: 18px;
  font-size: 1.8rem;
  font-size: 20px;
  font-size: 2rem;
  text-transform: unset;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: 4px;
  color: #fff; }

.gform_wrapper .gform_page_footer {
  display: block;
  width: 100%;
  text-align: center; }

.gform_wrapper input.gform_next_button, .gform_wrapper input.gform_previous_button, .gform_wrapper input.gform_button {
  width: auto;
  display: inline;
  margin: 0;
  position: relative; }

.gform_wrapper li.gfield_error input {
  border-bottom: 4px solid #d71737;
  margin-bottom: -2px; }

.gform_wrapper .gfield_description.validation_message {
  opacity: 1;
  color: #d71737; }

body .gform_wrapper .gform_validation_container {
    display: none;
}

.hiddendiv {
  display: none;
  white-space: pre-wrap;
  width: 100%;
  min-height: 50px;
  word-wrap: break-word;
  font-size: 1.2em; }

::-webkit-input-placeholder {
  font-weight: 400; }

:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 400; }

::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 400; }

:-ms-input-placeholder {
  font-weight: 400; }

.page-template-template-form .entry-content {
  padding: 0 3em 3em 3em; }
  @media only screen and (max-width: 992px) {
    .page-template-template-form .entry-content {
      padding: 0 2em 2em 2em; } }
  @media only screen and (max-width: 768px) {
    .page-template-template-form .entry-content {
      padding: 0 1em 2em 1em; } }

.ginput_complex.ginput_container.ginput_container_post_image input {
  display: none; }

.ginput_complex.ginput_container.ginput_container_post_image label {
  display: inline-block;
  float: left;
  background: none;
  padding: 0.5em 1em;
  margin: 0;
  background: #d71737;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -webkit-transition: all 500ms ease-out 0ms;
  -moz-transition: all 500ms ease-out 0ms;
  -o-transition: all 500ms ease-out 0ms;
  transition: all 500ms ease-out 0ms; }
  .ginput_complex.ginput_container.ginput_container_post_image label svg {
    display: inline;
    fill: #fff;
    vertical-align: middle;
    -webkit-transition: all 500ms ease-out 0ms;
    -moz-transition: all 500ms ease-out 0ms;
    -o-transition: all 500ms ease-out 0ms;
    transition: all 500ms ease-out 0ms; }
  .ginput_complex.ginput_container.ginput_container_post_image label span {
    padding-left: 0.5em;
    display: inline;
    font-weight: 500; }

.ginput_complex.ginput_container.ginput_container_post_image label.has-file {
  background: #d71737;
  color: #fff;
  -webkit-transition: all 500ms ease-out 0ms;
  -moz-transition: all 500ms ease-out 0ms;
  -o-transition: all 500ms ease-out 0ms;
  transition: all 500ms ease-out 0ms; }
  .ginput_complex.ginput_container.ginput_container_post_image label.has-file svg {
    display: inline;
    fill: #fff;
    vertical-align: middle;
    -webkit-transition: all 500ms ease-out 0ms;
    -moz-transition: all 500ms ease-out 0ms;
    -o-transition: all 500ms ease-out 0ms;
    transition: all 500ms ease-out 0ms; }
  .ginput_complex.ginput_container.ginput_container_post_image label.has-file span {
    padding-left: 0.5em;
    display: inline;
    font-weight: 400; }

/*# sourceMappingURL=style.css.map */