@charset "UTF-8";
/******************************************************************
Ultra Bones NG - Started from the Bones theme but now total Ultra
******************************************************************/
/*********************
UTILITIES IMPORT
All our of mixins, functions, and variables that we'll be using across the whole project.
*********************/
/*----------------------------------------------------------------*  Stylesheet: VARIABLES
\*----------------------------------------------------------------*/
/*
* Here is where we declare all our variables like colors, fonts,
* base values, and defaults. We want to make sure this file ONLY
* contains variables.
*/
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

/*----------------------------------------------------------------*  Stylesheet: FUNCTIONS
\*----------------------------------------------------------------*/
/*----------------------------------------------------------------*  Stylesheet: MIXINS
\*----------------------------------------------------------------*/
/*********************
BASE IMPORT
Core default styles of your project. Not much to usually add or change in here.
*********************/
/* normalize.css - reference: http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

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

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/**
 * UB: Stop iOS from ruining everything and causing link styling where there should not be any
 */
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q::before,
q::after {
  content: '';
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * 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;
}

/* ==========================================================================
  Lists
========================================================================== */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

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

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/* ==========================================================================
   Other Stuff
   ========================================================================== */
/* BORDER-BOX ALL THE THINGS! (http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/) */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}

.clearfix::before, .clearfix::after, .cf::before, .comment-respond::before, .cf::after, .comment-respond::after {
  content: "";
  display: table;
}

.clearfix::after, .cf::after, .comment-respond::after {
  clear: both;
}

/*----------------------------------------------------------------*  Stylesheet: CORE STYLESHEET
\*----------------------------------------------------------------*/
/* Just some initial base setup stuff that isn't normalize territory
 * but is core styling / fixes for the entire website
 */
/**
* CONTENTS
* base font sizes
* default bg colour
* link style defaults
* page layout / content block defaults
* images (responsive)
* video container
* list styles default (in entry-content)
*
*/
/* responsive layout and typography through using px -> rem -> em philosophy */
html {
  font-size: 13px;
  line-height: 1.4;
}

@media screen and (min-width: 481px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 990px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1220px) {
  html {
    font-size: 16px;
  }
}

/* end responsive layout / typography */
/*>== default background ======================== */
body {
  background: #2983d6;
}

/*>== link style defaults ============================ */
a, a:visited {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 133ms ease-in;
          transition: all 133ms ease-in;
}

a:hover {
  color: #1c1c1c;
}

a, a:active, a:hover, a:visited {
  outline: medium none;
}

a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*>== page layout / content block defaults ==================== */
.container,
.strip {
  position: relative;
}

/*>== images ==================== */
.entry-content img {
  /* make all images entered through editor responsive */
  display: block;
  max-width: 100%;
  height: auto;
}

/*>== video containers ======================== */
.entry-content video,
.entry-content object {
  max-width: 100%;
  height: auto;
}

.video-container {
  position: relative;
  padding-top: 30px;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*>== default list styles ==================== */
/* bullet list items */
.entry-content ul {
  list-style-type: none;
  margin: 1rem 0 1rem 0.7rem;
  padding: 0;
  overflow: hidden;
}

.entry-content ul li {
  display: block;
  margin: 0;
  padding: 0 0 0.375rem 2.95rem;
  position: relative;
  text-indent: -0.35rem;
}

.entry-content ul li::before {
  border-radius: 3px;
  background: #676767;
  content: "";
  display: inline-block;
  position: relative;
  width: 5px;
  height: 5px;
  left: -1rem;
  top: -0.2em;
  text-align: right;
}

/* numbered list items */
.entry-content ol {
  counter-reset: item;
  margin: 1rem 0 1rem 0.85rem;
  padding: 0;
  overflow: hidden;
}

.entry-content ol > li {
  display: block;
  padding: 0 0 0.5rem 2.5rem;
  position: relative;
  text-indent: -1.5rem;
}

.entry-content ol > li::before {
  content: counter(item);
  counter-increment: item;
  color: #676767;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 0;
  left: -0.75rem;
  width: 1.5rem;
  text-align: right;
}

/*----------------------------------------------------------------*  Stylesheet: TYPOGRAPHY
\*----------------------------------------------------------------*/
body {
  color: #FFFFFF;
  font-family: "Droid Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
  text-rendering: optimizeLegibility;
}

/*>== headings ======================= */
h1, .alpha, h2, .beta, .gamma, h4, .delta, h5, .epsilon, h6, .zeta {
  font-weight: 400;
  font-family: "Lobster Two", Times, serif;
}

h1 a, .alpha a, h2 a, .beta a, h3 a, .gamma a, h4 a, .delta a, h5 a, .epsilon a, h6 a, .delta a {
  text-decoration: none;
}

h1, .alpha {
  font-size: 3.75rem;
  line-height: 1;
  color: #FFFFFF;
  margin: 0 0 1rem;
  padding: 0;
}

h2, .beta {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  padding: 0;
}

h3, .gamma {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  padding: 0;
}

h4, .delta {
  font-size: 1.875rem;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  padding: 0;
}

h5, .epsilon {
  font-size: 1.563rem;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  padding: 0;
}

h6, .zeta {
  font-size: 0.5rem;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  padding: 0;
}

/*>== paragraph style defaults ============================ */
p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 1rem 0;
  padding: 0;
}

/*p*/
.featured-text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  color: #FFCC00;
  font-weight: 700;
}

/*>== misc typography =================== */
blockquote {
  background: #F9F9F9;
  border-left: 10px solid #CCCCCC;
  margin: 1.5rem 0 1.5rem 0;
  padding: 1rem 10px;
  quotes: "“" "”" "‘" "’";
}

blockquote p:last-child {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-indent: -1rem;
  margin: 0.5rem 0 0 0;
  padding: 0 0 0 1.125rem !important;
}

blockquote p:last-child::before {
  content: "\2014";
  padding-right: 0.5em;
}

blockquote p:first-child {
  /* undo last child stuff above */
}

/* ADD BIG QUOTE AT THE START OF QUOTE
blockquote::before {
  color: #CCCCCC;
  content: "\201C";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}*/
/*********************
LAYOUT IMPORT
These are overall layout components, usually entire sections that will have "parts" in them
*********************/
/*----------------------------------------------------------------*  Stylesheet: BOURBON NEAT GRIDS
\*----------------------------------------------------------------*/
.section-container,
.content-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
}

.section-container::after,
.content-container::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 1280px) {
  .section-container,
  .content-container {
    padding-left: 0;
  }
}

/* add padding around content containers so it doesn't touch edges in mobile */
.primary-content,
.secondary-content {
  padding: 1em;
}

@media (min-width: 1280px) {
  .primary-content,
  .secondary-content {
    padding: 0;
  }
}

@media screen and (max-width: 399px) {
  .primary-content-aside {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .primary-content-aside:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .primary-content-aside {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .primary-content-aside:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .primary-content-aside {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 65.43062%;
  }
  .primary-content-aside:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .primary-content-aside {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .primary-content-aside:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 399px) {
  .secondary-content {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .secondary-content:last-child {
    margin-right: 0;
  }
  .secondary-content:nth-child(1n) {
    margin-right: 0;
  }
  .secondary-content:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .secondary-content {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .secondary-content:last-child {
    margin-right: 0;
  }
  .secondary-content:nth-child(1n) {
    margin-right: 0;
  }
  .secondary-content:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .secondary-content {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 30.86124%;
  }
  .secondary-content:last-child {
    margin-right: 0;
  }
  .secondary-content:nth-child(3n) {
    margin-right: 0;
  }
  .secondary-content:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 990px) {
  .secondary-content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .secondary-content:last-child {
    margin-right: 0;
  }
  .secondary-content:nth-child(3n) {
    margin-right: 0;
  }
  .secondary-content:nth-child(3n+1) {
    clear: left;
  }
}

/*----------------------------------------------------------------*  #STRIPS
\*----------------------------------------------------------------*/
/*----------------------------------------------------------------*  #NAVIGATION
\*----------------------------------------------------------------*/
/*>== main navigation =================== */
.nav-main {
  display: none;
}

/*>== mobile navigation =================== */
.nav-mobile:not(.mm-menu) {
  display: none;
}

.page-header .menu-button {
  display: block;
  float: right;
  padding-top: 18px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-right: 12px;
}

@media (min-width: 768px) {
  /*********************************************************/
  .page-header .menu-button {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
  /*>== main navigation =================== */
  .nav-main {
    display: block;
    position: relative;
    width: 100%;
    clear: both;
  }
  .menu-main {
    background-color: transparent;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .menu-main > li {
    display: inline-block;
    position: relative;
    margin: 0 5px 0 0;
  }
  .menu-main > li > a {
    color: #fff;
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    padding: 21px 16px;
    border-top: 2px solid #1f6fb9;
  }
  .menu-main > li > a:hover {
    border-top: 2px solid #fff;
  }
  .menu-main > .current-menu-item > a,
  .menu-main > .current_page_item > a,
  .menu-main > .current_page_parent > a,
  .menu-main > .current_page_ancestor > a {
    border-top: 2px solid #fff;
    background: #2983d6;
  }
  /*>== main nav - drop down styles ==================================== */
  .menu-main .parent_menu_item:hover > a {
    /* insert styling to show active parent menu item */
  }
  .menu-main li:hover ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .menu-main ul {
    background: #73c8ff;
    position: absolute;
    left: 0;
    top: 15px;
    /* used for amount menu slides up/down from */
    min-width: 180px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s linear;
            transition: all 0.25s linear;
    z-index: 150;
  }
  .menu-main ul li {
    float: none;
    position: relative;
  }
  .menu-main ul li a {
    font-size: 0.75rem;
    padding: 4px 16px;
    width: 100%;
    display: inline-block;
    -webkit-transition: none;
            transition: none;
  }
  .menu-main ul li a:hover,
  .menu-main ul .current-menu-item > a,
  .menu-main ul .current_page_item > a,
  .menu-main ul .current_page_parent > a,
  .menu-main ul .current_page_ancestor > a {
    color: #666666;
  }
}

@media (min-width: 768px) {
  /*********************************************************/
  /*>== tertiary nav ======================== */
  .nav-tertiary {
    display: block;
    float: right;
    margin-left: 25px;
  }
  .nav-tertiary ul {
    margin: 0;
  }
  .nav-tertiary li {
    display: inline-block;
  }
  .nav-tertiary li:first-of-type::before {
    display: none;
  }
  .nav-tertiary li::before {
    color: #717171;
    content: "|";
    font-size: 1rem;
    padding-right: 0.3rem;
    vertical-align: 1px;
  }
  .nav-tertiary li a {
    padding: 0.5rem 0.3rem;
  }
}

/*----------------------------------------------------------------*  #HEADER
\*----------------------------------------------------------------*/
.page-header {
  height: 100px;
  background: #1f6fb9;
  border-bottom: 1px solid #175a98;
  margin-bottom: 4px;
}

.upper-header {
  height: 40px;
  background: #444;
  border-bottom: 1px solid #444;
}

.upper-header .section-container {
  height: 100%;
}

.upper-header a {
  color: #aaa;
}

.upper-header a:hover {
  color: #f4f4f4;
}

.trucks {
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid #555;
  height: 100%;
  padding: 10px;
}

.main-logo {
  position: relative;
}

.main-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-logo img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.menu-link {
  padding: 8px 10px;
  border-right: 1px solid #555;
  border-left: 1px solid #555;
  height: 100%;
  display: inline-block;
}

.social-group {
  float: right;
  height: 100%;
}

.social-group .social-wrap {
  float: left;
  height: 100%;
  border-right: 1px solid #555;
  padding: 10px 10px;
}

.social-group .social-wrap:first-of-type {
  border-left: 1px solid #555;
}

.social-group .magnific-text {
  margin-left: 20px;
}

.social-group .menu {
  font-size: 14px;
}

.social-group a {
  font-size: 18px;
  color: #aaa;
}

.social-group a:hover {
  color: #f4f4f4;
}

.banner {
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

/*----------------------------------------------------------------*  #FOOTER
\*----------------------------------------------------------------*/
.page-footer {
  background: #1f6fb9;
  color: #fff;
  min-height: 220px;
  margin-top: 60px;
  position: relative;
  border-top: 1px solid #175a98;
  padding-bottom: 40px;
}

.copyright {
  display: block;
  font-size: 14px;
  float: left;
}

.lower-footer {
  font-size: 14px;
  background: #444;
  min-height: 30px;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 5px;
  display: block;
  height: 40px;
}

.credit {
  float: right;
  font-size: 14px;
  text-align: right;
}

.credit a {
  color: #fff;
}

.footer-col {
  padding-top: 20px;
  text-align: center;
}

@media screen and (max-width: 399px) {
  .footer-col {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .footer-col:last-child {
    margin-right: 0;
  }
  .footer-col:nth-child(1n) {
    margin-right: 0;
  }
  .footer-col:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .footer-col {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .footer-col:last-child {
    margin-right: 0;
  }
  .footer-col:nth-child(1n) {
    margin-right: 0;
  }
  .footer-col:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .footer-col {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 30.86124%;
  }
  .footer-col:last-child {
    margin-right: 0;
  }
  .footer-col:nth-child(3n) {
    margin-right: 0;
  }
  .footer-col:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 990px) {
  .footer-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .footer-col:last-child {
    margin-right: 0;
  }
  .footer-col:nth-child(3n) {
    margin-right: 0;
  }
  .footer-col:nth-child(3n+1) {
    clear: left;
  }
}

@media (min-width: 768px) {
  .footer-col {
    text-align: left;
  }
}

.tripadviser {
  padding-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .tripadviser {
    margin-bottom: 0;
  }
}

#CDSRATINGWIDGET482 {
  margin: 0 auto;
}

/*********************
COMPONENT IMPORT
The various components and modules that make up your project.
*********************/
/*-------------------------------------------------*  #BUTTONS
\*-------------------------------------------------*/
.link-button {
  display: inline-block;
  margin: 1rem 0 1.75rem 0;
  text-align: center;
}

.link-button a {
  background-color: #333;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transition: all 333ms ease;
          transition: all 333ms ease;
}

.link-button a:hover {
  /* hover styles */
  background-color: #1c1c1c;
}

/*----------------------------------------------------------------*  #ICONS
\*----------------------------------------------------------------*/
@font-face {
  font-family: 'icomoon';
  src: url("/wp-content/themes/jeffersfryzz/library/fonts/icomoon.eot?fvydk9");
  src: url("/wp-content/themes/jeffersfryzz/library/fonts/icomoon.eot?fvydk9#iefix") format("embedded-opentype"), url("/wp-content/themes/jeffersfryzz/library/fonts/icomoon.ttf?fvydk9") format("truetype"), url("/wp-content/themes/jeffersfryzz/library/fonts/icomoon.woff?fvydk9") format("woff"), url("/wp-content/themes/jeffersfryzz/library/fonts/icomoon.svg?fvydk9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-spoon-knife:before {
  content: "\e903";
}

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

.icon-instagram:before {
  content: "\e901";
}

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

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

/*----------------------------------------------------------------*
  #FORMS
*----------------------------------------------------------------*/
/*>== forms ========================= */
fieldset {
  border: none;
}

/*
// FORM PLACEHOLDER STYLING
input::-webkit-input-placeholder { color: $white; font-style: italic; }
input::-moz-placeholder { color: $white; opacity: 1; font-style: italic; }
input:-ms-input-placeholder { color: $white; font-style: italic; }
*/
.gform_body .gfield_select {
  width: 85%;
  color: #757575;
  padding: 5px 0;
}

body .entry-content .gform_wrapper input.medium, body .entry-content .gform_wrapper textarea.medium, body .gform_wrapper input.medium, body .gform_wrapper textarea.medium {
  width: 85%;
  color: #757575;
  padding: 5px 0;
}

body .entry-content .gform_wrapper .validation_error, body .entry-content .gform_wrapper .validation_message, body .gform_wrapper .validation_error, body .gform_wrapper .validation_message {
  color: #000;
}

.gform_wrapper {
  margin-top: 30px;
}

.button {
  border: 1px solid #333;
  color: #1f6fb9;
  background: #fff;
  padding: 5px 10px;
}

.button:hover {
  background: #1f6fb9;
  color: #fff;
}

/*----------------------------------------------------------------*  Stylesheet: POST & WP GENERATED STYLING
\*----------------------------------------------------------------*/
/**
 * CONTENTS
 *
 * MISC WP STUFF ------- #wp-misc
 * images size classes
 * alignment classes (floating stuff)
 * captions
 * galleries
 * wp page/post/comment nav
 *
 * WIDGETS DEFAULTS ------ #widgets
 *
 * COMMENTS LAYOUT ------- #comments
 *
 * COMMENTS FORMS ------- #form-comments
 *
 */
/*-------------------------------------------------*  MISC WP STUFF - #wp-misc
\*-------------------------------------------------*/
/* resize images to fit the main content area. */
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* once display is big enough let users float content */
@media (min-width: 768px) {
  .entry-content .alignleft,
  .entry-content img.alignleft {
    display: inline;
    float: left;
    margin: 0.625rem 1.875rem 1rem 0;
  }
  .entry-content .alignright,
  .entry-content img.alignright {
    display: inline;
    float: right;
    margin: 0.625rem 0 1rem 1.875rem;
  }
  .entry-content .aligncenter,
  .entry-content img.aligncenter {
    clear: both;
    display: block;
    margin: 0.625rem auto 1rem auto;
  }
}

/*>== caption styling ========================= */
.wp-caption {
  background: #eee;
  max-width: 100%;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.wp-caption img {
  margin: 0;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  font-size: 0.85em;
  line-height: 1.2;
  text-align: left;
  padding: 0.75rem 0.75rem;
  text-transform: uppercase;
}

/*>== galleries ============================== */
figure.gallery-item {
  float: left;
  margin: 0 1em 1em 0;
  position: relative;
}

figure.gallery-item a img {
  border: 4px solid #bbb;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

figure.gallery-item a:hover img {
  border-color: #ccc;
}

figure.gallery-item figcaption {
  display: none;
}

/*>== post & comment navigation ========================== */
/* post navigation */
.wp-prev-next {
  clear: both;
  list-style: none;
  margin: 20px 0 20px 0;
}

.wp-prev-next .prev-link {
  float: left;
  width: 49%;
}

.wp-prev-next .next-link {
  float: right;
  width: 49%;
  text-align: right;
}

.wp-prev-next .nav-divider {
  float: left;
}

/* comment navigation */
.comment-navigation {
  clear: both;
  margin: 20px 0 20px 0;
}

.comment-nav-prev {
  float: left;
  width: 50%;
}

.comment-nav-next {
  float: right;
  width: 50%;
  text-align: right;
}

/*------------------------------------------------------------*
  WIDGET DEFAULTS - #widgets
*-------------------------------------------------------------*/
.widget {
  margin: 20px 0;
  padding: 0;
}

.widget img {
  max-width: 100%;
  height: auto;
}

.widgettitle {
  border-bottom: 2px solid #444;
}

/*-------------------------------------------------*  COMMENT LAYOUT STYLES - #comments
\*-------------------------------------------------*/
/* h3 comment title */
.comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}

.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}

.comment .comment-author {
  padding: 7px;
  border: 0;
}

.comment .vcard {
  margin-left: 50px;
}

.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}

.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}

.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}

.comment .vcard time a:hover {
  text-decoration: underline;
}

.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}

.comment[class*=depth-] {
  margin-top: 1.1em;
}

.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}

.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}

.comment.odd {
  background-color: white;
}

.comment.even {
  background: #f8f9fa;
}

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/*------------------------------------------------*
  COMMENT FORM STYLES - #form-comments
*-------------------------------------------------*/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

.comment-reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

.logged-in-as a {
  color: #5c6b80;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
.comment-form .submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
.comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
.form-allowed-tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

.hover-tile-outer {
  background-position: top;
  background-size: cover;
  background-color: beige;
  border: 1px solid #1f6fb9;
  cursor: pointer;
  height: 250px;
  margin-bottom: 1.4;
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .hover-tile-outer {
    width: 80%;
    margin: 0 auto;
  }
}

.hover-tile-outer .hover-tile-container {
  height: 250px;
  overflow: hidden;
}

.hover-tile-outer .hover-tile-container:hover > .hover-tile {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.hover-tile-outer .hover-tile {
  -webkit-transition: all, 0.2s ease-in-out;
  transition: all, 0.2s ease-in-out;
  background: inherit;
  color: white;
  height: inherit;
  overflow: hidden;
  padding: 1.5em;
}

.hover-tile-outer .hover-tile-hidden {
  background: rgba(0, 0, 0, 0.5);
}

.hover-tile-outer .hover-tile-hidden p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.hover-tile-outer .hover-tile-hidden h4 {
  margin: 0 0 0.5em 0;
}

#instafeed a {
  margin-bottom: 25px;
}

@media screen and (max-width: 399px) {
  #instafeed a {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  #instafeed a:last-child {
    margin-right: 0;
  }
  #instafeed a:nth-child(1n) {
    margin-right: 0;
  }
  #instafeed a:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  #instafeed a {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 47.58542%;
  }
  #instafeed a:last-child {
    margin-right: 0;
  }
  #instafeed a:nth-child(2n) {
    margin-right: 0;
  }
  #instafeed a:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  #instafeed a {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 22.316%;
  }
  #instafeed a:last-child {
    margin-right: 0;
  }
  #instafeed a:nth-child(4n) {
    margin-right: 0;
  }
  #instafeed a:nth-child(4n+1) {
    clear: left;
  }
}

@media screen and (min-width: 990px) {
  #instafeed a {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  #instafeed a:last-child {
    margin-right: 0;
  }
  #instafeed a:nth-child(4n) {
    margin-right: 0;
  }
  #instafeed a:nth-child(4n+1) {
    clear: left;
  }
}

/*********************
PAGE STYLE IMPORT
If you have pages with specific styles, put those here. But you should be using modules in most cases.
*********************/
/*----------------------------------------------------------------*  #HOME
\*----------------------------------------------------------------*/
.large-logo {
  margin: 50px auto;
  max-width: 100%;
  width: 600px;
}

.img-cta {
  margin-bottom: 10px;
}

@media screen and (max-width: 399px) {
  .img-cta {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .img-cta:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .img-cta {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .img-cta:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .img-cta {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 30.86124%;
  }
  .img-cta:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .img-cta {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .img-cta:last-child {
    margin-right: 0;
  }
}

.hero-board {
  background: url("/wp-content/themes/jeffersfryzz/library/images/board.png") 50%;
  background-size: cover;
  min-height: 300px;
  padding: 10px;
  color: #bbb;
  font-family: 'Handlee', cursive;
}

.hero-board p {
  font-size: 21px;
  padding: 30px 0 30px 30px;
}

@media screen and (max-width: 399px) {
  .hero-board p {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .hero-board p:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .hero-board p {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .hero-board p:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .hero-board p {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 65.43062%;
  }
  .hero-board p:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .hero-board p {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .hero-board p:last-child {
    margin-right: 0;
  }
}

.hero-board p a {
  color: #1f6fb9;
}

.classic {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 30px;
}

@media screen and (max-width: 399px) {
  .classic {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  .classic:last-child {
    margin-right: 0;
  }
  .classic:nth-child(1n) {
    margin-right: 0;
  }
  .classic:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .classic {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .classic:last-child {
    margin-right: 0;
  }
  .classic:nth-child(1n) {
    margin-right: 0;
  }
  .classic:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 769px) and (max-width: 989px) {
  .classic {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 30.86124%;
  }
  .classic:last-child {
    margin-right: 0;
  }
  .classic:nth-child(3n) {
    margin-right: 0;
  }
  .classic:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 990px) {
  .classic {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .classic:last-child {
    margin-right: 0;
  }
  .classic:nth-child(3n) {
    margin-right: 0;
  }
  .classic:nth-child(3n+1) {
    clear: left;
  }
}

.classic img {
  display: inline-block;
  max-width: 100%;
}

/*----------------------------------------------------------------*  #BLOG
\*----------------------------------------------------------------*/
.banner .section-container {
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}

.page-title {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*********************
VENDOR IMPORT
Somebody else did the CSS, put it here so you can blame them if the code ain't good.
*********************/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

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

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

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

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

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

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*>== Resets Bones List Styles ====================== */
.entry-content .gform_wrapper, .gform_wrapper {
  /*>== END Resets Bones List Styles =================== */
  /*>== Required GFORMS styles ======================== */
  /*>== END Required GFORMS styles ==================== */
  /*>== Setup styles for lable position================= */
  /*>== Add Form sizing ============================== */
  /*>== END Add Form sizing ======================== */
  /*>== Error Styles =============================== */
  /*>== END Error Styles ============================ */
  /*>== Project specific styling here ===============*/
}

.entry-content .gform_wrapper ul, .gform_wrapper ul {
  margin: 0;
}

.entry-content .gform_wrapper ul li, .gform_wrapper ul li {
  padding-left: 0;
  text-indent: 0;
}

.entry-content .gform_wrapper ul li:before, .gform_wrapper ul li:before {
  content: "";
  display: none;
}

.entry-content .gform_wrapper .gform_validation_container, .gform_wrapper .gform_validation_container {
  display: none;
}

.entry-content .gform_wrapper .hidden_label > .gfield_label, .gform_wrapper .hidden_label > .gfield_label {
  display: none;
}

.entry-content .gform_wrapper .field_sublabel_below, .gform_wrapper .field_sublabel_below {
  margin-bottom: 5px;
}

.entry-content .gform_wrapper .field_sublabel_below input, .gform_wrapper .field_sublabel_below input {
  margin-top: 3px;
}

.entry-content .gform_wrapper input.large, .entry-content .gform_wrapper textarea.large, .gform_wrapper input.large, .gform_wrapper textarea.large {
  width: 100%;
}

.entry-content .gform_wrapper input.medium, .entry-content .gform_wrapper textarea.medium, .gform_wrapper input.medium, .gform_wrapper textarea.medium {
  width: 75%;
}

.entry-content .gform_wrapper .validation_error, .entry-content .gform_wrapper .validation_message, .gform_wrapper .validation_error, .gform_wrapper .validation_message {
  color: #E44E3C;
  font-size: 14px;
}

.entry-content .gform_wrapper .gfield_error input, .gform_wrapper .gfield_error input {
  background: #E44E3C;
  border: #E44E3C;
}

/*>== END .gform_body ========================== */
.tribe-events-calendar {
  background: #f4f4f4;
}

.entry-content ul.tribe-events-sub-nav li {
  padding: 0 0 0 5px;
}

.entry-content ul.tribe-events-sub-nav li::before {
  height: 0;
}

.tribe-events-style-full {
  color: #333;
}

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-panels,
.mm-panels > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}

.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel.mm-highest {
  z-index: 1;
}

.mm-panels,
.mm-panels > .mm-panel {
  background: inherit;
  border-color: inherit;
}

.mm-panels > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.mm-panels > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}

.mm-panels > .mm-panel:before, .mm-panels > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}

.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}

.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}

.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mm-navbar > * {
  display: block;
  padding: 10px 0;
}

.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}

.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}

.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0;
}

.mm-panel .mm-navbar {
  display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}

.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}

.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}

.mm-listview > li {
  position: relative;
}

.mm-listview > li, .mm-listview > li:after,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before {
  border-color: inherit;
}

.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}

.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}

.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}

.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px;
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px;
}

.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0;
}

.mm-listview .mm-inset > li {
  padding: 5px 0;
}

.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}

.mm-listview .mm-spacer {
  padding-top: 40px;
}

.mm-listview .mm-spacer > .mm-next {
  top: 40px;
}

.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px;
}

.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}

.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-navbar .mm-btn:before, .mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
  tap-highlight-color: rgba(255, 255, 255, 0.5);
}

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}

.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}

/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-opened {
  overflow: hidden;
  position: relative;
}

html.mm-opened body {
  overflow: hidden;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}

/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-autoheight {
  max-height: 80%;
}

.mm-menu.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}

.mm-menu.mm-measureheight > .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}

/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}

em.mm-counter + a.mm-next {
  width: 90px;
}

em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}

em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}

.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}

.mm-nosubresults > .mm-counter {
  display: none;
}

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}

.mm-hasdividers .mm-fixeddivider {
  display: block;
}

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}

/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-slideout {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left;
  transition-property: transform, left;
}

.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit;
}

.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px;
}

.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3;
}

/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0;
}

.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none;
}

.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none;
}

.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}

.mm-close:after {
  content: 'x';
}

.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left;
}

.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px;
}

.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px;
}

.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline;
}

.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px;
}

.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0;
}

.mm-navbar-top-1 {
  top: 0px;
}

.mm-hasnavbar-top-1 .mm-panels {
  top: 40px;
}

.mm-navbar-top-2 {
  top: 40px;
}

.mm-hasnavbar-top-2 .mm-panels {
  top: 80px;
}

.mm-navbar-top-3 {
  top: 80px;
}

.mm-hasnavbar-top-3 .mm-panels {
  top: 120px;
}

.mm-navbar-top-4 {
  top: 120px;
}

.mm-hasnavbar-top-4 .mm-panels {
  top: 160px;
}

.mm-navbar-bottom-1 {
  bottom: 0px;
}

.mm-hasnavbar-bottom-1 .mm-panels {
  bottom: 40px;
}

.mm-navbar-bottom-2 {
  bottom: 40px;
}

.mm-hasnavbar-bottom-2 .mm-panels {
  bottom: 80px;
}

.mm-navbar-bottom-3 {
  bottom: 80px;
}

.mm-hasnavbar-bottom-3 .mm-panels {
  bottom: 120px;
}

.mm-navbar-bottom-4 {
  bottom: 120px;
}

.mm-hasnavbar-bottom-4 .mm-panels {
  bottom: 160px;
}

.mm-navbar-size-2 {
  height: 80px;
}

.mm-navbar-size-3 {
  height: 120px;
}

.mm-navbar-size-4 {
  height: 160px;
}

.mm-navbar-content-2 > * {
  width: 50%;
}

.mm-navbar-content-3 > * {
  width: 33.33%;
}

.mm-navbar-content-4 > * {
  width: 25%;
}

.mm-navbar-content-5 > * {
  width: 20%;
}

.mm-navbar-content-6 > * {
  width: 16.67%;
}

/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}

.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px;
}

.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px;
}

.mm-search input::-ms-clear {
  display: none;
}

.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mm-panel.mm-hassearch {
  padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}

.mm-noresults .mm-noresultsmsg {
  display: block;
}

.mm-noresults .mm-indexer {
  display: none !important;
}

li.mm-nosubresults > a.mm-next {
  display: none;
}

li.mm-nosubresults > a.mm-next + a,
li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}

.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}

.mm-indexer ~ .mm-panel.mm-hasindexer {
  margin-right: 20px;
}

.mm-hasindexer .mm-indexer {
  right: 0;
}

.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}

.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}

li.mm-vertical label.mm-toggle, li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}

li.mm-vertical label.mm-toggle {
  top: 5px;
}

li.mm-vertical label.mm-check {
  top: 5px;
}

label.mm-toggle, label.mm-check {
  right: 20px;
}

label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}

label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}

a.mm-next + label.mm-toggle, a.mm-next + label.mm-check {
  right: 60px;
}

a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span, a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}

a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}

a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}

em.mm-counter + a.mm-next + label.mm-toggle, em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}

em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span, em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}

/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}

.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}

/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1;
}

.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}

.mm-menu.mm-fullscreen.mm-top, .mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}

/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li
.mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li
.mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}

/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}

.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}

.mm-menu.mm-pageshadow.mm-next:after, .mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}

.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu.mm-right {
  left: auto;
  right: 0;
}

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}

/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}

.mm-menu.mm-front {
  z-index: 1;
}

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top, .mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}

/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-navbar > *,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before, .mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-navbar .mm-btn:before, .mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  tap-highlight-color: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}

.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-navbar > *,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-navbar .mm-btn:before, .mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  tap-highlight-color: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}

.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both;
}

.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative;
}

.mm-menu.mm-tileview .mm-listview > li:after,
.mm-menu .mm-tileview.mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1;
}

.mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%;
}

.mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%;
}

.mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%;
}

.mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%;
}

.mm-menu.mm-tileview .mm-listview > li > a,
.mm-menu.mm-tileview .mm-listview > li > span,
.mm-menu .mm-tileview.mm-listview > li > a,
.mm-menu .mm-tileview.mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
}

.mm-menu.mm-tileview .mm-listview > li > .mm-next,
.mm-menu .mm-tileview.mm-listview > li > .mm-next {
  width: auto;
}

.mm-menu.mm-tileview .mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
  content: none;
  display: none;
}

.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0;
}

.mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none;
}

.mm-menu.mm-tileview .mm-listview {
  margin: 0;
}

/*********************
EXTRAS IMPORT
Stuff to dump at the end of your main CSS file.
*********************/
/*>== helper classes ===================== */
.aligncenter {
  text-align: center;
}

@media (min-width: 768px) {
  .alignleft {
    display: block;
    float: left;
  }
  .alignright {
    display: block;
    float: right;
  }
}

.textblock {
  overflow: hidden;
  width: auto;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
  padding: 0;
  clear: both;
}

.hr {
  background-color: #ccc;
  height: 1px;
  margin: 1rem 0;
  clear: both;
}

/*>== visibility helper classes (source: HTML5 Boilerplate) ===================== */
.hidden {
  display: none !important;
  visibility: hidden;
}

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

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/* ==========================================================================
  Print styles.
  Inlined to avoid the additional HTTP request:
  http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
    http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
  * Don't show links that are fragment identifiers,
  * or use the `javascript:` pseudo protocol
  */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
  * Printing Tables:
  * http://css-discuss.incutio.com/wiki/Printing_Tables
  */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */