/******************************************************************
Mixins & Constants Stylesheet
******************************************************************/
/*********************
TRANSITIONS
*********************/
/*********************
ROTATE
*********************/
/*********************
TRANSLATE
*********************/
/*********************
SCALE
*********************/
/*********************
RATIOS
*********************/
/*********************
OPACITY
*********************/
/*********************
DELAY ANIMATION
*********************/
/* ------------------------------------
   DURATIONS
--------------------------------------- */
.fadeIn,
.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeInDown {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: 0.5s linear;
  -moz-transition: 0.5s linear;
  -ms-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  -transition: 0.5s linear;
  transition: 0.5s linear; }

/* ------------------------------------
   FADE IN RIGHT 
--------------------------------------- */
.fadeInRight {
  -webkit-transform: translate3d(25px, 0, 0);
  -moz-transform: translate3d(25px, 0, 0);
  -ms-transform: translate3d(25px, 0, 0);
  -o-transform: translate3d(25px, 0, 0);
  -transform: translate3d(25px, 0, 0);
  transform: 25px, 0, 0; }

/* ------------------------------------
   FADE IN LEFT 
--------------------------------------- */
.fadeInLeft {
  -webkit-transform: translate3d(-25px, 0, 0);
  -moz-transform: translate3d(-25px, 0, 0);
  -ms-transform: translate3d(-25px, 0, 0);
  -o-transform: translate3d(-25px, 0, 0);
  -transform: translate3d(-25px, 0, 0);
  transform: -25px, 0, 0; }

/* ------------------------------------
   FADE IN UP 
--------------------------------------- */
.fadeInUp {
  -webkit-transform: translate3d(0, 40px, 0);
  -moz-transform: translate3d(0, 40px, 0);
  -ms-transform: translate3d(0, 40px, 0);
  -o-transform: translate3d(0, 40px, 0);
  -transform: translate3d(0, 40px, 0);
  transform: 0, 40px, 0; }

/* ------------------------------------
   FADE IN DOWN 
--------------------------------------- */
.fadeInDown {
  -webkit-transform: translate3d(0, -40px, 0);
  -moz-transform: translate3d(0, -40px, 0);
  -ms-transform: translate3d(0, -40px, 0);
  -o-transform: translate3d(0, -40px, 0);
  -transform: translate3d(0, -40px, 0);
  transform: 0, -40px, 0; }

/* ------------------------------------
   IN-VIEW Final State
--------------------------------------- */
.in-view {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -transform: translate3d(0, 0, 0);
  transform: 0, 0, 0; }

/* ------------------------------------
   DELAYED ANIMATIONS
--------------------------------------- */
@-webkit-keyframes threeUpContent {
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0%); } }

@keyframes threeUpContent {
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0%); } }

/* ------------------------------------
   DRAW OUT (FOR DRAWING LINES)
--------------------------------------- */
.drawOut {
  width: 0;
  opacity: 0;
  filter: alpha(opacity=0); }

.drawOut.in-view {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: 2s ease-in-out;
  -moz-transition: 2s ease-in-out;
  -ms-transition: 2s ease-in-out;
  -o-transition: 2s ease-in-out;
  -transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  width: 100%;
  max-width: 150px; }

html, body {
  height: 100%; }

body {
  padding: 0;
  margin: 0;
  color: #212322;
  font-size: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  background-color: #ffffff;
  font-family: "stevie-sans", sans-serif; }

::selection {
  background-color: #212322;
  color: #ffffff; }

p {
  color: #212322;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 20px 0; }

.title {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.25;
  font-weight: 700;
  font-family: "stevie-sans", sans-serif;
  position: relative;
  z-index: 5; }

.page-title {
  font-weight: 700;
  margin: 0; }

.subtitle {
  font-family: "stevie-sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin: 0 0 20px 0;
  letter-spacing: 0.05rem;
  line-height: 1; }

h1, h2, h3, h4, h5 {
  color: #212322;
  font-family: "stevie-sans", sans-serif;
  margin: 20px 0; }

h1 {
  font-size: 3rem;
  font-weight: normal; }

a, a:active, a:focus {
  color: #d7ad65;
  text-decoration: none;
  cursor: pointer;
  outline: none !important; }

.button {
  position: relative;
  display: inline-block;
  font-family: "stevie-sans", sans-serif;
  padding: 14px 20px;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  margin-top: 10px;
  color: #d7ad65;
  border: 1px solid #d7ad65;
  z-index: 2;
  text-transform: uppercase;
  background: transparent; }

p a,
strong a {
  font-weight: 700;
  border-bottom: 1px solid #212322; }

.anchor {
  position: absolute;
  top: -150px; }

hr {
  width: 100%;
  height: 1px;
  display: block;
  border: 0;
  box-shadow: none;
  background-color: #212322; }

ul {
  margin: 25px;
  padding: 0 20px; }
  ul li {
    margin: 10px 0; }

.sticky {
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -transition: 0.3s;
  transition: 0.3s; }
  .sticky.stuck {
    position: fixed; }

.lightgray ul li,
.darkgray ul li,
.orange ul li {
  color: #ffffff; }

@media screen and (min-width: 768px) {
  .button {
    padding: 16px 30px;
    font-size: 1rem; } }

@media screen and (min-width: 1024px) {
  body, p {
    font-size: 1rem; }
  a,
  .button {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -transition: 0.3s;
    transition: 0.3s; }
  p a:hover,
  strong a:hover {
    border-color: transparent; }
  .button:hover {
    background-color: #d7ad65;
    color: #ffffff; } }

@media screen and (min-width: 1280px) {
  body, p {
    font-size: 1.125rem; }
  .title {
    font-size: 2.25rem; }
  .button {
    margin-top: 20px; } }

@media screen and (min-width: 1440px) {
  .title {
    font-size: 2.5rem; } }

.site-header {
  position: fixed;
  width: 100%;
  height: auto;
  background-color: #212322;
  z-index: 99; }
  .site-header .row {
    margin: 0 auto; }
  .site-header .logo {
    width: 200px;
    height: 48px;
    margin: 10px 20px 10px; }

#typetosearch {
  position: absolute;
  top: 15px;
  right: 80px;
  border: 0;
  color: #d7ad65;
  padding: 10px 0; }
  #typetosearch img {
    height: 22px; }

@media screen and (min-width: 768px) {
  .site-header {
    padding: 0 50px; }
    .site-header .row {
      margin: 10px auto; }
    .site-header .logo {
      margin: 10px 0; }
  #typetosearch {
    top: 10px;
    right: 80px; } }

@media screen and (min-width: 1024px) {
  .site-header .logo {
    position: relative;
    top: -10px;
    margin: 0;
    width: 250px;
    height: 60px; }
  #typetosearch {
    width: auto;
    padding: 15px 0;
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 0;
    border: 0;
    top: 0;
    right: 0;
    position: relative;
    background-color: transparent; }
    #typetosearch:hover {
      cursor: pointer;
      color: #d7ad65;
      background-color: transparent;
      border: 0; } }

@media screen and (min-width: 1280px) {
  .site-header .row {
    padding: 0; }
  #typetosearch {
    padding: 20px 0; } }

.site-footer {
  display: block;
  background-color: #212322;
  margin-top: 0;
  padding-bottom: 80px; }
  .site-footer .row {
    margin: 0 auto;
    padding: 20px; }
  .site-footer p, .site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #ffffff; }
  .site-footer p, .site-footer a {
    font-size: 0.8rem;
    font-weight: normal; }
  .site-footer p {
    margin: 10px 0; }
  .site-footer h4 {
    margin: 20px 0 0 0; }
  .site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .site-footer ul li {
      margin: 0; }
      .site-footer ul li a {
        border-bottom: 1px solid #d7ad65; }
  .site-footer .logo {
    text-align: left; }
    .site-footer .logo img {
      width: 170px;
      height: 43px;
      display: inline-block;
      margin: 20px 0; }
  .site-footer .copy {
    font-size: 0.7rem;
    display: block;
    text-align: left; }
  .site-footer .social-share-links {
    text-align: left;
    margin: 20px 0 0 0; }
    .site-footer .social-share-links a {
      margin: 0 5px 0 0;
      border: 0;
      color: #ffffff; }
    .site-footer .social-share-links i {
      font-size: 1.25rem;
      padding: 5px; }
  .site-footer .sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -transition: 0.3s;
    transition: 0.3s; }
    .site-footer .sticky-footer .row {
      padding: 12px 20px 20px; }
    .site-footer .sticky-footer .right,
    .site-footer .sticky-footer .left {
      float: left;
      margin: 0 0 10px 0;
      clear: both; }
    .site-footer .sticky-footer h4 {
      margin: 0;
      font-size: 0.875rem;
      letter-spacing: 0.05rem;
      text-transform: normal !important; }
      .site-footer .sticky-footer h4 a {
        font-size: 0.875rem;
        font-weight: 700;
        border-bottom: 1px solid #ffffff; }
        .site-footer .sticky-footer h4 a:hover {
          color: #ffffff;
          border-color: transparent; }

#todayshours {
  font-weight: 400;
  display: inline-block;
  width: auto; }

@media screen and (min-width: 768px) {
  .site-footer {
    padding: 20px 50px 60px 50px; }
    .site-footer .row {
      padding: 0; }
    .site-footer .sticky-footer .row {
      display: table; }
    .site-footer .sticky-footer .left,
    .site-footer .sticky-footer .right {
      clear: none;
      margin: 0; }
    .site-footer .sticky-footer .right {
      float: right; }
    .site-footer .sticky-footer span {
      display: block;
      width: 40%; }
      .site-footer .sticky-footer span.left {
        text-align: left; }
      .site-footer .sticky-footer span.right {
        text-align: right; }
    .site-footer .sticky-footer .row {
      display: table; } }

@media screen and (min-width: 1024px) {
  .site-footer {
    margin-top: 0;
    padding: 20px 50px 100px 50px; }
    .site-footer .row {
      padding: 0; }
    .site-footer h4 {
      margin: 44px 0 10px 0; }
    .site-footer a {
      padding: 0; }
      .site-footer a:hover {
        color: #d7ad65; }
    .site-footer .logo {
      text-align: left; }
      .site-footer .logo img {
        width: 200px;
        height: 50px; }
    .site-footer ul li a:hover {
      border-color: transparent; }
    .site-footer .social-share-links {
      text-align: right;
      margin: 20px 0 0 0; }
      .site-footer .social-share-links a {
        margin: 0 0 0 10px; }
      .site-footer .social-share-links i {
        font-size: 1rem;
        padding: 0; }
    .site-footer .sticky-footer .row {
      padding: 16px 50px 20px; }
    .site-footer .sticky-footer h4 a {
      font-size: 1.125rem; }
    .site-footer .sticky-footer .right h4 {
      margin: 5px 0 0 0; }
  #todayshours {
    width: auto; } }

@media screen and (min-width: 1280px) {
  .site-footer {
    padding: 20px 50px 100px 50px; }
    .site-footer .row {
      padding: 0; }
    .site-footer .social-share-links a {
      margin: 0 0 0 10px; }
    .site-footer .social-share-links i {
      font-size: 1.25rem; }
    .site-footer .sticky-footer .row {
      padding: 20px 50px; } }

@media screen and (min-width: 1440px) {
  .site-footer .social-share-links {
    margin: 41px 0 0 0; }
    .site-footer .social-share-links i {
      font-size: 1.5rem; } }

@media screen and (min-width: 1540px) {
  .site-footer .sticky-footer .row {
    padding: 20px 0; } }

.menu-toggle {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  outline: none;
  cursor: pointer;
  display: inline-block;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 35px;
  padding: 0 15px;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  position: absolute;
  z-index: 25; }
  .menu-toggle:hover {
    background-color: transparent; }
  .menu-toggle span {
    width: 40px;
    display: block;
    position: absolute;
    height: 1px;
    background: #d7ad65;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }
    .menu-toggle span:nth-child(1) {
      top: 4px; }
    .menu-toggle span:nth-child(2) {
      top: 14px; }
    .menu-toggle span:nth-child(3) {
      top: 24px; }

.toggled .menu-toggle span:nth-child(1) {
  width: 0%;
  left: 50%; }

.toggled .menu-toggle span:nth-child(2), .toggled .menu-toggle span:nth-child(3) {
  top: 14px; }

.toggled .menu-toggle span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.toggled .menu-toggle span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.menu {
  list-style: none;
  margin: 0;
  padding: 0; }
  .menu li {
    display: inline-block;
    margin: 0;
    padding: 0; }

.main-navigation .menu {
  text-align: center;
  display: none;
  margin: 0 auto; }
  .main-navigation .menu li {
    display: block; }
    .main-navigation .menu li a {
      display: block;
      font-family: "stevie-sans", sans-serif;
      padding: 10px;
      color: #d7ad65;
      font-weight: 700;
      font-size: 1.125rem; }
    .main-navigation .menu li .sub-menu {
      display: none;
      margin: 0 0 20px 0;
      padding: 0; }
      .main-navigation .menu li .sub-menu li {
        margin: 5px 0; }
      .main-navigation .menu li .sub-menu a {
        font-weight: 300;
        font-size: 1rem;
        padding: 0; }
    .main-navigation .menu li.focus .sub-menu {
      display: block; }

.main-navigation.toggled .menu {
  display: block; }

@media screen and (min-width: 768px) {
  .menu-toggle {
    right: 0; } }

@media screen and (min-width: 1024px) {
  .menu-toggle {
    display: none; }
  .main-navigation {
    width: auto;
    float: right;
    position: relative;
    text-align: right;
    padding-bottom: 0; }
    .main-navigation .menu-main-menu-container {
      display: inline-block;
      position: relative;
      vertical-align: top;
      right: 20px; }
    .main-navigation .menu {
      display: flex;
      float: right;
      text-align: right; }
      .main-navigation .menu li {
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        position: relative; }
        .main-navigation .menu li a {
          padding: 15px;
          font-weight: 700;
          font-size: 1rem;
          color: #ffffff; }
          .main-navigation .menu li a:hover {
            color: #d7ad65; }
        .main-navigation .menu li .sub-menu {
          display: none;
          top: 110%;
          text-align: center;
          position: absolute;
          top: 100%;
          width: 260px;
          left: 50%;
          margin: 0;
          padding: 0 0 10px 0;
          background-color: #d7ad65;
          z-index: 99;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          opacity: 0;
          filter: alpha(opacity=0);
          -webkit-transition: 0.3s;
          -moz-transition: 0.3s;
          -ms-transition: 0.3s;
          -o-transition: 0.3s;
          -transition: 0.3s;
          transition: 0.3s; }
          .main-navigation .menu li .sub-menu li {
            display: block;
            text-align: left;
            margin: 0; }
          .main-navigation .menu li .sub-menu a {
            color: #ffffff;
            display: inline-block;
            clear: both;
            padding: 0;
            margin: 10px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #ffffff; }
            .main-navigation .menu li .sub-menu a:hover {
              border-color: transparent; }
          .main-navigation .menu li .sub-menu::before {
            display: block;
            content: " ";
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 8px solid #d7ad65;
            border-left: 10px solid transparent;
            position: relative;
            top: -16px;
            margin: 0 auto; }
        .main-navigation .menu li:hover {
          overflow: visible; }
          .main-navigation .menu li:hover .sub-menu {
            display: block;
            top: 100%;
            margin-bottom: 0;
            opacity: 1;
            filter: alpha(opacity=100); } }

@media screen and (min-width: 1280px) {
  .main-navigation .menu li a {
    font-size: 1.125rem;
    padding: 20px; } }

#utility {
  text-align: center; }
  #utility .menu li {
    margin: 10px 10px 0 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 0.8; }
    #utility .menu li.fa {
      -webkit-font-smoothing: auto; }
    #utility .menu li.fa-shopping-cart::before {
      color: #ffffff;
      margin: 0 8px 0 0;
      font-size: 0.9rem;
      font-weight: normal;
      -webkit-font-smoothing: antialiased; }
  #utility .menu-utility-menu-container {
    text-align: left;
    padding: 0 20px; }
  #utility .quick-cart {
    position: absolute;
    top: 32px;
    right: 20px;
    font-size: 0.875rem;
    font-weight: 700; }
  #utility .social-links {
    position: absolute;
    top: 32px;
    right: 105px; }
    #utility .social-links .fa {
      font-size: 1rem;
      margin-left: 8px; }

@media screen and (min-width: 370px) {
  #utility {
    text-align: right; }
    #utility .menu-utility-menu-container {
      text-align: right; }
    #utility .menu li {
      margin: 10px 0 10px 10px;
      font-size: 0.75rem; }
    #utility .quick-cart,
    #utility .social-links {
      position: relative;
      top: 0;
      right: 0;
      display: inline-block;
      margin-right: 20px;
      font-size: 0.75rem; } }

@media screen and (min-width: 410px) {
  #utility .menu li {
    margin: 10px 0 10px 15px;
    font-size: 0.8rem; }
  #utility .quick-cart,
  #utility .social-links {
    font-size: 0.8rem; } }

@media screen and (min-width: 768px) {
  #utility {
    text-align: right; }
    #utility .menu-utility-menu-container {
      display: inline-block;
      vertical-align: middle; }
    #utility .menu li {
      padding: 10px 0;
      margin: 0 0 0 20px;
      font-size: 0.9rem; }
    #utility a {
      color: #ffffff; }
    #utility .social-links {
      margin-right: 0; }
      #utility .social-links .fa {
        padding: 5px;
        margin-left: 0;
        font-size: 1rem; }
    #utility .quick-cart {
      margin: 0 0 0 25px;
      display: inline-block;
      vertical-align: middle;
      background-color: transparent; }
      #utility .quick-cart a {
        color: #ffffff;
        font-weight: 700;
        font-size: 0.9rem; }
    #utility .innerlayer {
      display: inline-block; }
      #utility .innerlayer a.social-twitter,
      #utility .innerlayer a.social-facebook,
      #utility .innerlayer a.social-instagram {
        margin-left: 20px; } }

@media screen and (min-width: 1024px) {
  #utility .quick-cart {
    margin: 0 0 0 20px; }
  #utility a {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -transition: 0.3s;
    transition: 0.3s; }
    #utility a:hover {
      color: #d7ad65; } }

@media screen and (min-width: 1280px) {
  #utilitly {
    font-size: 0.875rem; }
  p.social-share-links {
    font-size: 1.125rem;
    margin: 15px 0; } }

/* FLEXSLIDER - Customized */
/* Resets */
.flex-container a:hover,
.flex-slider a:hover {
  outline: none; }

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Base Styles */
.flexslider {
  margin: 0;
  padding: 0;
  position: relative;
  zoom: 1; }
  .flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden; }
  .flexslider li {
    zoom: 1; }
  .flexslider .slides {
    zoom: 1; }
    .flexslider .slides img {
      width: 100%;
      height: auto;
      display: block;
      -moz-user-select: none; }
    .flexslider .slides::after {
      content: " ";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }

html[xmlns] .flexslider .slides {
  display: block; }

.no-js .flexslider .slides > li:first-child {
  display: block; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
  -transition: 1s ease;
  transition: 1s ease; }

.flex-pauseplay span {
  text-transform: capitalize; }

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  right: 10px;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #212322; }

/* PREV NEXT DIRECTION NAV */
.flex-direction-nav a {
  display: block;
  margin: 0;
  padding: 10px 40px;
  font-size: 42px;
  position: absolute;
  top: 45%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: #212322;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  .flex-direction-nav a:hover {
    color: #d7ad65; }

.flex-direction-nav .flex-prev {
  left: 0; }

.flex-direction-nav .flex-next {
  right: 0; }

.flex-direction-nav .flex-disabled {
  display: none; }

/* CONTROL/DOT NAV */
.flex-control-nav {
  width: auto;
  height: auto;
  position: relative;
  float: right;
  z-index: 10;
  padding: 0; }
  .flex-control-nav li {
    display: block;
    margin: 15px 0;
    vertical-align: middle; }
    .flex-control-nav li a {
      width: 12px;
      height: 12px;
      display: block;
      border: 1px solid #212322;
      background-color: transparent;
      cursor: pointer;
      text-indent: -9999px; }
      .flex-control-nav li a:hover, .flex-control-nav li a.flex-active {
        background-color: #212322; }

/* Preload images */
body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(33, 35, 34, 0.8);
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }
  .lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none; }
  .lightbox a img {
    border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  /* Background color behind image.
	This is visible during transitions. */
  background-color: #ffffff; }
  .lb-outerContainer::after {
    content: "";
    display: table;
    clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url("images/loading.gif") no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }
  .lb-nav a {
    outline: none;
    background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }
    .lb-nav a.lb-prev {
      width: 50%;
      left: 0;
      float: left;
      background: url("images/prev.png") left 48% no-repeat;
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: opacity 0.6s;
      -moz-transition: opacity 0.6s;
      -ms-transition: opacity 0.6s;
      -o-transition: opacity 0.6s;
      -transition: opacity 0.6s;
      transition: opacity 0.6s; }
      .lb-nav a.lb-prev:hover {
        opacity: 1;
        filter: alpha(opacity=100); }
    .lb-nav a.lb-next {
      width: 50%;
      right: 0;
      float: right;
      background: url("images/next.png") right 48% no-repeat;
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: opacity 0.6s;
      -moz-transition: opacity 0.6s;
      -ms-transition: opacity 0.6s;
      -o-transition: opacity 0.6s;
      -transition: opacity 0.6s;
      transition: opacity 0.6s; }
      .lb-nav a.lb-next:hover {
        opacity: 1;
        filter: alpha(opacity=100); }

.lb-container > .nav {
  left: 0; }

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-dataContainer {
  margin: 0 auto;
  *zoom: 1;
  width: 100%;
  padding: 10px 0; }
  .lb-dataContainer::after {
    content: "";
    display: table;
    clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ffffff; }
  .lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em; }
  .lb-data .lb-number {
    display: block;
    clear: left;
    color: #ffffff; }
  .lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url("images/close.png") top right no-repeat;
    text-align: right;
    outline: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
    transition: opacity 0.2s; }
    .lb-data .lb-close:hover {
      cursor: pointer;
      opacity: 1;
      filter: alpha(opacity=100); }

#page {
  overflow-x: hidden; }

.row {
  width: 100%;
  margin: 10px auto;
  clear: both;
  position: relative; }

.table {
  display: table;
  width: 100%;
  height: 100%; }
  .table .table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative; }

.inner-row {
  display: inline-block;
  width: 100%; }

.left {
  float: left; }

.right {
  float: right; }

.row-header {
  text-align: center; }

.bgimage {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

section {
  position: relative; }

.quarter,
.onethird,
.half,
.twothirds {
  width: 100%; }

@media screen and (min-width: 1024px) {
  .row {
    max-width: 1440px; }
  .quarter {
    width: 25%; }
  .onethird {
    width: 33%; }
  .half {
    width: 50%; }
  .twothirds {
    width: 66.67%; }
  .row-header {
    max-width: 50%;
    margin: 0 auto; } }

.white {
  background-color: #ffffff; }
  .white p, .white h1, .white h2, .white h3, .white h4, .white h5, .white a, .white .title, .white .subtitle {
    color: #212322; }
  .white p a,
  .white strong a {
    border-color: #212322; }
  .white .button {
    border: 1px solid #d7ad65;
    color: #d7ad65; }

.orange {
  background-color: #d7ad65; }
  .orange p, .orange h1, .orange h2, .orange h3, .orange h4, .orange h5, .orange a, .orange .title, .orange .subtitle {
    color: #ffffff; }
  .orange p a,
  .orange strong a {
    border-color: #ffffff; }
  .orange hr {
    background-color: #ffffff; }
  .orange .button {
    border: 1px solid #212322;
    color: #212322; }
  .orange .flex-control-nav li a {
    border-color: #ffffff; }
    .orange .flex-control-nav li a:hover, .orange .flex-control-nav li a.flex-active {
      background-color: #ffffff; }

.white .flex-control-nav li a {
  border-color: #212322; }
  .white .flex-control-nav li a:hover, .white .flex-control-nav li a.flex-active {
    background-color: #212322; }

.white hr {
  background-color: #212322; }

.lightgray {
  background-color: #5696b2; }
  .lightgray p, .lightgray h1, .lightgray h2, .lightgray h3, .lightgray h4, .lightgray h5, .lightgray a, .lightgray .title, .lightgray .subtitle {
    color: #ffffff; }
  .lightgray p a,
  .lightgray strong a {
    border-color: #ffffff; }
  .lightgray .button {
    border: 1px solid #ffffff;
    color: #ffffff; }
  .lightgray hr {
    background-color: #ffffff; }

.darkgray {
  background-color: #84cbb4; }
  .darkgray p, .darkgray h1, .darkgray h2, .darkgray h3, .darkgray h4, .darkgray h5, .darkgray a, .darkgray .title, .darkgray .subtitle {
    color: #212322; }
  .darkgray hr {
    background-color: #212322; }
  .darkgray .button {
    border: 1px solid #212322;
    color: #212322; }

@media screen and (min-width: 1024px) {
  .white p a:hover,
  .white strong a:hover,
  .orange p a:hover,
  .orange strong a:hover,
  .lightgray p a:hover,
  .lightgray strong a:hover,
  .darkgray p a:hover,
  .darkgray strong a:hover {
    border-color: transparent; }
  .white .button:hover {
    background-color: #d7ad65;
    color: #ffffff; }
  .orange .button:hover {
    background-color: #212322;
    color: #d7ad65; }
  .lightgray .button:hover {
    background-color: #ffffff;
    color: #5696b2; }
  .darkgray .button:hover {
    background-color: #212322;
    color: #84cbb4; } }

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select {
  padding: 10px 20px !important;
  border: 1px solid #212322;
  border-radius: 0;
  color: #212322;
  background-color: transparent;
  outline: none !important;
  width: 100% !important; }

select {
  -webkit-appearance: none;
  background: url("images/arrow-down-black.png") no-repeat right 20px center;
  background-size: 14px auto; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  display: inline-block;
  width: auto;
  clear: both;
  text-align: center;
  border: 1px solid #d7ad65;
  color: #d7ad65;
  background-color: transparent;
  border-radius: 0;
  letter-spacing: 0.2rem;
  font-family: "stevie-sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 12px 25px 10px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  -transition: 0.4s;
  transition: 0.4s;
  outline: none !important; }
  button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    color: #ffffff;
    border-color: #d7ad65;
    background-color: #d7ad65; }

.gform_wrapper {
  padding: 0 20px; }
  .gform_wrapper .gfield_required {
    color: #d7ad65 !important; }
  .gform_wrapper .gfield_required {
    color: #d7ad65; }
  .gform_wrapper .top_label div.ginput_container {
    margin-top: 12px; }
  .gform_wrapper .top_label .gfield_label {
    font-family: "stevie-sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem; }
  .gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
  .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox] {
    margin-top: 0 !important;
    margin-right: 6px !important; }
  .gform_wrapper.gf_browser_chrome .gfield_radio li input,
  .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
    margin-right: 6px !important; }
  .gform_wrapper .gfield_time_hour,
  .gform_wrapper .gfield_time_minute {
    max-width: 50% !important; }
    .gform_wrapper .gfield_time_hour input,
    .gform_wrapper .gfield_time_hour input[type="number"],
    .gform_wrapper .gfield_time_minute input,
    .gform_wrapper .gfield_time_minute input[type="number"] {
      width: 100% !important;
      min-width: 100%; }
  .gform_wrapper .gfield_time_hour i {
    display: none !important; }
  .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
    margin: 5px auto; }
  .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    font-family: "stevie-sans", sans-serif;
    text-transform: uppercase; }
  .gform_wrapper li.field_sublabel_below .ginput_complex {
    margin-top: 0 !important; }
  .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 10px 20px !important; }
  .gform_wrapper div.validation_error {
    color: #212322 !important;
    font-size: 1.25rem;
    font-family: "stevie-sans", sans-serif;
    font-weight: normal;
    border-top: 0 !important;
    border-bottom: 0 !important;
    padding: 0; }
  .gform_wrapper li.gfield.gfield_error {
    border-top: 0 !important;
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important; }
  .gform_wrapper li.gfield_error div.ginput_complex.ginput_container label,
  .gform_wrapper li.gfield_error .gfield_label {
    color: #212322 !important; }
  .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  .gform_wrapper li.gfield_error textarea {
    border-color: #d7ad65 !important; }
  .gform_wrapper .validation_message {
    display: none; }
  .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
    margin-top: 8px !important; }
  .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0 !important; }

#gform_fields_1 #field_1_1,
#gform_fields_1 #field_1_2 {
  width: 100%; }

#gform_fields_1 #field_1_13 {
  float: left; }

#gform_fields_1 .gform_footer {
  display: inline-block !important;
  margin: 20px 0 0 !important; }

#typetosearchform {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 35, 34, 0.9);
  padding: 150px 20px 50px 20px;
  z-index: 101; }
  #typetosearchform .search-form {
    display: inline-block;
    width: 100%; }
    #typetosearchform .search-form label,
    #typetosearchform .search-form .search-field,
    #typetosearchform .search-form .search-submit {
      display: block;
      vertical-align: top;
      position: relative;
      height: 50px;
      border: 0; }
    #typetosearchform .search-form label {
      width: 80%;
      height: auto;
      float: left; }
    #typetosearchform .search-form .search-field {
      float: left;
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff !important;
      padding: 10px 0 !important;
      background-color: transparent;
      border-bottom: 3px solid #ffffff;
      -webkit-appearance: none; }
      #typetosearchform .search-form .search-field:focus, #typetosearchform .search-form .search-field::selected {
        background-color: transparent; }
    #typetosearchform .search-form .search-submit {
      float: right;
      width: 10%;
      background: url("images/search.svg") no-repeat center center;
      background-size: 100%;
      clear: none; }
      #typetosearchform .search-form .search-submit:hover {
        background-color: transparent; }
    #typetosearchform .search-form ::-webkit-input-placeholder {
      color: #ffffff; }
    #typetosearchform .search-form ::-moz-placeholder {
      color: #ffffff; }
    #typetosearchform .search-form :-ms-input-placeholder {
      color: #ffffff; }
    #typetosearchform .search-form :-moz-placeholder {
      color: #ffffff; }
    #typetosearchform .search-form input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0px 1000px #212322 inset;
      -webkit-text-fill-color: #ffffff; }
    #typetosearchform .search-form input:-moz-autofill {
      -moz-box-shadow: 0 0 0px 1000px #212322 inset;
      -moz-text-fill-color: #ffffff; }
    #typetosearchform .search-form input:-ms-autofill {
      -ms-box-shadow: 0 0 0px 1000px #212322 inset;
      -ms-text-fill-color: #ffffff; }

.gform_wrapper.gf_browser_chrome .gfield_time_ampm select {
  max-width: 100% !important;
  min-width: 100% !important; }

.gform_wrapper .gfield_time_hour {
  margin-right: 10px !important; }

.gform_wrapper .gfield_time_ampm {
  max-width: 100% !important; }
  .gform_wrapper .gfield_time_ampm select {
    min-width: 100% !important; }

.gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label,
.gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  width: auto !important; }

.lightgray input[type="text"], .lightgray input[type="email"], .lightgray input[type="url"], .lightgray input[type="password"], .lightgray input[type="search"], .lightgray input[type="number"], .lightgray input[type="tel"], .lightgray input[type="range"], .lightgray input[type="date"], .lightgray input[type="month"], .lightgray input[type="week"], .lightgray input[type="time"], .lightgray input[type="datetime"], .lightgray input[type="datetime-local"], .lightgray input[type="color"], .lightgray textarea, .lightgray select,
.orange input[type="text"],
.orange input[type="email"],
.orange input[type="url"],
.orange input[type="password"],
.orange input[type="search"],
.orange input[type="number"],
.orange input[type="tel"],
.orange input[type="range"],
.orange input[type="date"],
.orange input[type="month"],
.orange input[type="week"],
.orange input[type="time"],
.orange input[type="datetime"],
.orange input[type="datetime-local"],
.orange input[type="color"],
.orange textarea,
.orange select {
  border-color: #ffffff;
  color: #ffffff; }

.lightgray button:hover,
.lightgray input[type="button"]:hover,
.lightgray input[type="reset"]:hover,
.lightgray input[type="submit"]:hover,
.orange button:hover,
.orange input[type="button"]:hover,
.orange input[type="reset"]:hover,
.orange input[type="submit"]:hover {
  border-color: #ffffff; }

.lightgray select,
.orange select {
  background: url("images/arrow-down-white.png") no-repeat right 20px center;
  background-size: 14px auto; }

@media only screen and (min-width: 321px) {
  .gform_wrapper .gfield_time_ampm,
  .gform_wrapper .gfield_time_hour {
    max-width: 100%; } }

@media screen and (max-width: 736px) and (orientation: landscape) {
  #typetosearchform {
    padding: 80px 50px 50px 50px; }
  .search-form label,
  .search-form .search-field,
  .search-form .search-submit {
    height: 70px; }
  .search-form .search-submit {
    width: 8%; } }

@media screen and (min-width: 768px) {
  #typetosearchform {
    padding: 150px 50px 50px 50px; }
    #typetosearchform .search-form .search-submit {
      width: 10%;
      float: right; }
    #typetosearchform .search-form label {
      width: 85%; }
    #typetosearchform .search-form label,
    #typetosearchform .search-form .search-field,
    #typetosearchform .search-form .search-submit {
      height: 100px; } }

@media screen and (min-width: 1024px) {
  #typetosearchform .search-form .search-field {
    font-size: 3.5rem; }
  #typetosearchform .search-form label,
  #typetosearchform .search-form .search-field,
  #typetosearchform .search-form .search-submit {
    height: 150px; }
  #typetosearchform .search-form .search-submit {
    width: 10%; }
  .gform_wrapper {
    padding: 0; }
    .gform_wrapper li.field_sublabel_below .ginput_complex {
      margin-top: 8px !important; }
    .gform_wrapper.gf_browser_chrome select {
      padding: 10px 20px !important;
      -webkit-appearance: none; }
    .gform_wrapper ul.gform_fields li.gfield {
      padding: 0 10px !important;
      width: 50%;
      display: inline-block;
      vertical-align: top; }
    .gform_wrapper .gform_footer {
      padding: 0 10px !important;
      margin: 25px auto; }
    .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first,
    .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last,
    .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {
      padding-top: 0 !important; } }

@media screen and (min-width: 1280px) {
  #typetosearchform {
    padding: 150px; }
    #typetosearchform .search-form .search-field {
      font-size: 4.5rem; }
    #typetosearchform .search-form .search-submit {
      width: 12%; } }

.entry-meta {
  text-transform: uppercase;
  font-size: 1rem; }

h2.entry-title {
  font-size: 1.25rem;
  margin: 0; }
  h2.entry-title a {
    border-bottom: 1px solid #d7ad65; }
    h2.entry-title a:hover {
      border-color: transparent; }

.entry-title {
  font-weight: 700; }

.post-wrapper {
  max-width: 800px;
  margin: 0 0 50px 0; }

.entry-content {
  width: 100%;
  margin: 50px 0; }

.hfeed .site-main {
  padding: 0 20px; }

.hfeed .row {
  margin: 0 auto; }

.hfeed .hentry {
  margin: 50px 0; }
  .hfeed .hentry .entry-content {
    margin: 0; }

.search .site-main,
.blog .site-main,
.single .site-main {
  margin: 0 auto; }

.single .site-main {
  padding: 0 20px; }

.single .entry-content {
  margin: 0; }

.single h1 {
  font-size: 1.5rem; }

.single .hentry {
  margin: 50px 0; }

.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 50px 0;
  padding: 0 20px; }

@media screen and (min-width: 768px) {
  .single .site-main {
    padding: 0; }
  .single .hentry,
  .single #secondary {
    margin: 50px; } }

@media screen and (min-width: 1024px) {
  .single .site-main {
    padding: 0 50px; }
  .single .hentry {
    margin: 40px 0 0 50px; }
  .single #secondary {
    margin: 40px 0 0 0; }
  h2.entry-title {
    font-size: 1.675rem; }
  .hfeed .site-main {
    padding: 0 50px; }
  .hfeed .hentry {
    margin: 50px 0 0 50px; }
  .hfeed.search-results .type-tribe_events {
    padding: 0; }
  .site-main .posts-navigation,
  .site-main .post-navigation {
    margin: 0 0 50px 0;
    padding: 0 50px; } }

.tribe-bar-views-select,
.tribe-bar-date-filter,
.label-tribe-bar-search,
.tribe-events-list-separator-month,
.tribe-bar-disabled #tribe-bar-form label {
  display: none !important; }

#tribe-events-content {
  padding: 0 30px; }
  #tribe-events-content.tribe-events-list {
    padding: 0 20px !important; }
    #tribe-events-content.tribe-events-list .tribe-events-event-meta {
      background: transparent; }
    #tribe-events-content.tribe-events-list .tribe-events-venue-details,
    #tribe-events-content.tribe-events-list .tribe-events-ical {
      display: none; }
  #tribe-events-content ul.tribe-events-sub-nav {
    height: auto;
    padding: 0; }
    #tribe-events-content ul.tribe-events-sub-nav li {
      width: 50%;
      margin: 0 !important; }
      #tribe-events-content ul.tribe-events-sub-nav li a {
        font-weight: 700; }
      #tribe-events-content ul.tribe-events-sub-nav li.tribe-events-nav-left {
        float: left; }
      #tribe-events-content ul.tribe-events-sub-nav li.tribe-events-nav-right {
        text-align: right;
        float: right; }
  #tribe-events-content .tribe-events-abbr {
    text-decoration: none; }
  #tribe-events-content h1 {
    font-size: 1.65rem;
    font-family: "stevie-sans", sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin: 0; }

.tribe-events-back {
  margin: 20px 0; }
  .tribe-events-back a {
    border-bottom: 0; }

#tribe-events-pg-template {
  padding: 0 20px; }

#tribe-events-content-wrapper .row {
  margin: 0 auto; }

.tribe-events-list .type-tribe_events h5 {
  margin: 20px 0 0;
  font-size: 1rem; }

.tribe-events-list .type-tribe_events .tribe-events-list-event-title {
  margin: 10px 0; }

h2.tribe-events-page-title {
  text-align: left;
  margin: 0;
  background-color: #d7ad65;
  padding: 15px 20px;
  line-height: 1; }

.tribe-events-user-recurrence-toggle {
  display: block;
  font-size: 0.9rem;
  text-align: left;
  margin: 25px 0;
  font-family: "stevie-sans", sans-serif; }
  .tribe-events-user-recurrence-toggle input {
    margin-right: 10px; }

.events-archive .entry-content,
.events-archive .entry-header {
  width: 100%; }

.tribe-events-button {
  border: 1px solid #d7ad65;
  padding: 16px 30px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 1rem; }
  .tribe-events-button:hover {
    background-color: #d7ad65;
    color: #ffffff; }

/* LIST VIEW STUFF */
.tribe-events-loop {
  max-width: 800px; }

.tribe-events-list-separator-month {
  background-color: #d7ad65;
  text-align: left;
  font-weight: 700; }

.tribe-events-day .tribe-events-day-time-slot .type-tribe_events {
  margin-left: 0; }

.tribe-events-list-separator-month {
  margin: 30px 0;
  display: inline-block;
  padding: 10px 50px;
  width: auto;
  background-color: #212322;
  color: #d7ad65; }

.type-tribe_events {
  margin: 0 0 40px 0;
  padding: 0; }
  .type-tribe_events h2 a {
    border-bottom: 1px solid #d7ad65; }
    .type-tribe_events h2 a:hover {
      border-color: transparent; }
  .type-tribe_events .list-date {
    font-weight: 700;
    font-size: 0.875rem; }
  .type-tribe_events .tribe-events-title {
    margin: 10px 0; }

.tribe-events-loop .tribe-events-event-meta {
  font-size: 1rem;
  text-transform: uppercase; }

.tribe-events-divider {
  padding: 0 10px; }

.tribe-events-tooltip.recurring-info-tooltip {
  width: 0;
  max-width: 0;
  height: 0;
  overflow: hidden !important;
  z-index: 50;
  padding: 0;
  border: 0; }

/* --------- */
/* MINI CALENDAR WIDGET */
.tribe-mini-calendar-grid-wrapper,
.tribe-mini-calendar-list-wrapper {
  margin: 0 !important;
  padding: 20px; }
  .tribe-mini-calendar-grid-wrapper .tribe-events-duration,
  .tribe-mini-calendar-list-wrapper .tribe-events-duration {
    font-size: 0.875rem; }

.tribe-mini-calendar-no-event,
.tribe-events-has-events a {
  padding: 10px 5px !important; }

.tribe-events-has-events a {
  border-bottom: 1px solid #d7ad65; }
  .tribe-events-has-events a:hover {
    border-bottom: 1px solid #ffffff; }

.tribe-events-has-events .tribe-mini-calendar-day-link:before {
  background: #d7ad65 !important; }

.tribe-mini-calendar-nav {
  border: 0 !important;
  background-color: #212322;
  color: #ffffff; }
  .tribe-mini-calendar-nav .tribe-mini-calendar-nav-link {
    padding: 10px 5px !important; }
  .tribe-mini-calendar-nav span {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 10px !important; }

.tribe-mini-calendar td, .tribe-mini-calendar th {
  border: 0 !important; }

.tribe-mini-calendar td {
  vertical-align: bottom !important; }

.tribe-mini-calendar th {
  color: #212322;
  padding: 10px 5px !important;
  border-bottom: 1px solid #1d1a19 !important; }

/* -------------------- */
/* SINGLE EVENT PAGE */
.tribe-events-single .event-content-wrapper {
  padding: 0 50px;
  max-width: 800px; }
  .tribe-events-single .event-content-wrapper h1.tribe-events-single-event-title {
    margin: 0;
    font-weight: 700; }
  .tribe-events-single .event-content-wrapper .subtitle {
    display: inline-block; }

.tribe-events-single a {
  border-bottom: 1px solid #d7ad65; }
  .tribe-events-single a:hover {
    border-color: transparent; }

.single-tribe_events .hentry {
  max-width: 1024px;
  margin: 0 auto; }

.single-tribe_events #tribe-events-header {
  display: none; }

.single-tribe_events .tribe-events-event-image {
  padding: 20px;
  margin-bottom: 0; }

.single-tribe_events .tribe-events-event-meta {
  margin: 50px 0; }

.single-tribe_events .tribe-events-cal-links {
  margin: 20px 0; }
  .single-tribe_events .tribe-events-cal-links a {
    display: inline-block;
    border: 1px solid #d7ad65;
    padding: 16px 30px;
    margin: 10px 10px 10px 0;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05rem; }

.single-tribe_events .tribe-events-schedule h2 {
  font-size: 1rem; }

.tribe-events-meta {
  display: flex; }
  .tribe-events-meta .tribe-events-single-section-title {
    margin-top: 0; }
  .tribe-events-meta .layer {
    padding: 50px; }
  .tribe-events-meta a {
    border-color: #212322;
    font-weight: 700; }

.tribe-events-event-meta {
  background: #84cbb4;
  padding: 20px;
  margin: 20px 0; }
  .tribe-events-event-meta:first-child {
    border-top: 0; }
  .tribe-events-event-meta a {
    color: #1d1a19;
    font-weight: 700;
    border-color: #1d1a19; }
  .tribe-events-event-meta dt, .tribe-events-event-meta dd {
    display: block; }
  .tribe-events-event-meta dd {
    margin: 0; }
    .tribe-events-event-meta dd.tribe-events-event-categories a {
      display: inline-block;
      border: 1px solid #1d1a19;
      padding: 16px 30px;
      margin: 5px 10px 0 0;
      text-transform: uppercase;
      font-size: 1rem;
      letter-spacing: 0.05rem; }
  .tribe-events-event-meta dt {
    margin: 20px 0 0;
    font-size: 0.9rem; }
  .tribe-events-event-meta address.tribe-events-address {
    font-style: normal; }
  .tribe-events-event-meta dl {
    padding-bottom: 40px; }
  .tribe-events-event-meta h3 {
    margin: 0; }

/* NOTICES */
.tribe-events-notices {
  background: #5696b2;
  border: 1px solid #5696b2;
  color: #ffffff;
  padding: 20px;
  border-radius: 0;
  text-shadow: none;
  font-family: "stevie-sans", sans-serif;
  font-size: 1.25rem;
  margin: 20px 0 0; }

.tribe-mini-calendar-nav #ajax-loading-mini {
  width: 50px;
  height: 50px;
  top: 3px !important;
  left: 0 !important;
  right: 0;
  margin: 0 auto !important; }

@media screen and (min-width: 1024px) {
  #tribe-events-pg-template {
    padding: 0 50px; }
  #tribe-events-content {
    padding: 0 30px; }
    #tribe-events-content.tribe-events-list .type-tribe_events {
      padding: 20px 0px 20px 0px; }
  .tribe-events-back {
    margin: 20px; }
  #tribe-events-content {
    max-width: 1440px;
    margin: 10px auto;
    width: 100%; }
    #tribe-events-content h1 {
      font-size: 1.875rem; }
  .tribe-mini-calendar-grid-wrapper {
    width: 33.3333%;
    float: left;
    clear: none;
    padding-right: 0; }
  .tribe-mini-calendar-list-wrapper {
    float: left;
    clear: none;
    width: 66.6667%; }
  .tribe-mini-calendar-no-event a,
  .tribe-events-has-events a {
    padding: 5px !important; }
  ul.event-categories a:hover {
    color: #ffffff;
    background-color: #d7ad65; }
  .tribe-events-notices {
    padding: 20px; }
  .type-tribe_events {
    padding: 20px 80px 20px 20px;
    margin: 0; }
  .single-tribe_events .tribe-events-event-meta {
    font-size: 1rem; }
  .tribe-events-event-meta dl {
    padding: 0 20px 0 0; }
  .tribe-events-event-meta dd.tribe-events-event-categories a {
    font-weight: normal; }
  .tribe-events-event-meta dd.tribe-events-event-categories a:hover {
    background: #1d1a19;
    color: #84cbb4; } }

@media screen and (min-width: 1280px) {
  .tribe-mini-calendar-grid-wrapper,
  .tribe-mini-calendar-list-wrapper {
    padding: 40px 0 40px 40px; }
  .tribe-mini-calendar-nav span {
    font-size: 1.5rem; }
  #tribe-events-content h1 {
    font-size: 2.875rem; }
  .single-tribe_events .tribe-events-event-image,
  .type-tribe_events,
  .tribe-events-notices,
  .tribe-events-event-meta {
    padding: 40px; }
  .tribe-events-loop .type-tribe_events {
    padding: 0 40px 40px 40px; }
  .tribe-events-back {
    margin: 20px 40px; } }

#sidebar h2 {
  margin-top: 0;
  font-size: 1.125rem;
  background-color: #212322;
  color: #ffffff;
  text-align: center;
  padding: 10px 30px; }

#secondary {
  margin: 20px 0; }

.list-categories {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list-categories li {
    display: inline-block;
    padding: 6px 4px;
    margin: 0; }
    .list-categories li a {
      display: block;
      padding: 6px 14px;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.05rem;
      border: 1px solid #d7ad65;
      background-color: #ffffff; }
      .list-categories li a:hover {
        background-color: #d7ad65;
        color: #ffffff; }

@media screen and (min-width: 768px) and (orientation: portrait) {
  #secondary {
    margin: 40px 30px; } }

@media screen and (min-width: 1024px) {
  #secondary {
    margin: 50px 0; } }

@media screen and (min-width: 1280px) {
  #sidebar h2 {
    font-size: 1.5rem; }
  .list-categories li a {
    padding: 10px 16px;
    font-size: 0.875rem; } }

.fiftyfifty {
  display: table; }
  .fiftyfifty .copyarea {
    padding: 20px; }
  .fiftyfifty .image-side {
    padding: 20px; }
    .fiftyfifty .image-side img {
      display: block;
      width: 100%; }

@media screen and (min-width: 1024px) {
  .fiftyfifty .leftside,
  .fiftyfifty .rightside {
    display: block;
    width: calc(50% - 5px); }
  .fiftyfifty .copyarea {
    width: 80%; }
  .fiftyfifty .copyarea,
  .fiftyfifty .image-side {
    padding: 20px; } }

.fullwidth .copyarea {
  padding: 50px 20px;
  text-align: left; }
  .fullwidth .copyarea ul li {
    color: #ffffff; }

.fullwidth .title {
  margin: 0 0 10px 0; }

@media screen and (min-width: 768px) and (orientation: portrait) {
  .fullwidth .copyarea {
    padding: 50px; } }

@media screen and (min-width: 1024px) {
  .fullwidth .copyarea {
    padding: 100px 0;
    width: 80%;
    max-width: 800px;
    margin: 0 auto; } }

#hero {
  position: relative;
  height: 100vh;
  width: 100%; }
  #hero .slider,
  #hero .slides,
  #hero .slide,
  #hero .layer,
  #hero .image-scale {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  #hero .slide {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%; }
  #hero video {
    min-width: 100%;
    min-height: 100%;
    width: auto !important;
    position: absolute;
    z-index: 1;
    top: 50% !important;
    left: 50% !important;
    height: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; }
  #hero .slide {
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    filter: alpha(opacity=0); }
    #hero .slide .image-scale {
      -webkit-transition: 1s cubic-bezier(0.28, 0, 0.18, 1);
      -moz-transition: 1s cubic-bezier(0.28, 0, 0.18, 1);
      transition: 1s cubic-bezier(0.28, 0, 0.18, 1); }
      #hero .slide .image-scale div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-transition: transform 14s cubic-bezier(0.28, 0, 0.18, 1);
        -moz-transition: transform 14s cubic-bezier(0.28, 0, 0.18, 1);
        transition: transform 14s cubic-bezier(0.28, 0, 0.18, 1); }
    #hero .slide.active {
      opacity: 1;
      filter: alpha(opacity=100); }
      #hero .slide.active .image-scale div {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    #hero .slide .layer {
      background: rgba(33, 35, 34, 0.5);
      z-index: 10; }
    #hero .slide .row {
      margin: 0 auto; }
      #hero .slide .row .copylayer {
        text-align: left;
        padding: 50px 20px; }
        #hero .slide .row .copylayer .title {
          color: #ffffff;
          font-size: 2rem; }

@supports (-ms-ime-align: auto) {
  #hero video {
    width: 100% !important;
    height: auto;
    object-fit: none; } }

@media screen and (min-width: 768px) {
  #hero .slide .row .copylayer {
    width: 70%;
    padding: 50px; }
    #hero .slide .row .copylayer .title {
      font-size: 3rem; } }

@media screen and (min-width: 1024px) {
  #hero .slide .row .copylayer {
    padding: 100px 50px;
    width: auto;
    max-width: 50%;
    float: left; }
    #hero .slide .row .copylayer .title {
      font-size: 3.25rem; } }

@media screen and (min-width: 1280px) {
  #hero .slide .row .copylayer .title {
    font-size: 4.25rem; } }

.pagetitle {
  display: table;
  width: 100%;
  background-size: cover;
  background-position: top center; }
  .pagetitle .page-title,
  .pagetitle .subtitle {
    color: #ffffff; }
  .pagetitle .page-title {
    font-size: 1.65rem;
    line-height: 1.25; }
  .pagetitle .subtitle {
    font-size: 1rem; }
  .pagetitle .layer {
    display: table-cell;
    text-align: center;
    position: relative;
    vertical-align: middle;
    padding: 20px;
    background: rgba(33, 35, 34, 0.35); }

@media screen and (min-width: 1024px) {
  .pagetitle {
    height: 300px; }
    .pagetitle .page-title {
      font-size: 3rem; }
    .pagetitle .layer {
      padding: 50px; } }

@media screen and (min-width: 1280px) {
  .pagetitle {
    height: 450px; }
    .pagetitle .row {
      max-width: 1400px; }
    .pagetitle .page-title {
      font-size: 4rem; }
    .pagetitle .subtitle {
      font-size: 1.125rem; } }

.quotes {
  display: flex;
  padding: 50px 20px; }
  .quotes .slider {
    display: inline-block;
    width: 100%;
    position: relative; }
  .quotes ul.slides {
    width: calc(100% - 50px); }
  .quotes .title {
    font-size: 2rem; }
  .quotes h4 {
    font-style: italic;
    font-weight: 400;
    margin: 45px 0 0 0; }

@media screen and (min-width: 768px) and (orientation: portrait) {
  .quotes {
    padding: 50px; }
    .quotes ul.slides {
      width: calc(100% - 100px); } }

@media screen and (min-width: 1024px) {
  .quotes {
    padding: 50px; }
    .quotes .title {
      font-size: 2.5rem; }
    .quotes ul.slides {
      width: 100%; } }

@media screen and (min-width: 1024px) {
  .quotes {
    padding: 100px 50px; }
    .quotes .slider {
      display: block;
      width: 80%;
      margin: 0 auto;
      max-width: 1440px;
      position: relative; }
    .quotes .copylayer,
    .quotes ul.slides {
      width: 100%;
      max-width: 800px;
      margin: 0 auto; } }

.threeblock {
  display: table; }
  .threeblock .largeside,
  .threeblock .smallside {
    display: block;
    width: 100%; }
    .threeblock .largeside .button,
    .threeblock .smallside .button {
      margin-top: 20px; }
  .threeblock .copylayer {
    position: relative;
    padding: 40px 20px;
    text-align: center; }
  .threeblock .largeside {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 20px; }
    .threeblock .largeside .copylayer {
      padding: 40px 20px;
      width: auto; }
  .threeblock .top,
  .threeblock .bottom {
    display: block;
    width: 100%;
    float: left;
    clear: both;
    margin: 10px 0 0; }

@media screen and (min-width: 768px) and (orientation: portrait) {
  .threeblock .largeside {
    padding: 50px 0;
    margin: 0; }
    .threeblock .largeside .copylayer {
      width: 60%;
      margin: 0 auto; }
  .threeblock .smallside {
    margin: 5px 0; }
    .threeblock .smallside .top,
    .threeblock .smallside .bottom {
      width: calc(50% - 5px);
      clear: none;
      margin: 5px 0 10px; }
    .threeblock .smallside .top {
      float: left; }
    .threeblock .smallside .bottom {
      float: right; }
    .threeblock .smallside .copylayer {
      width: 100%; } }

@media screen and (min-width: 1024px) {
  .threeblock .largeside,
  .threeblock .smallside {
    width: calc(50% - 5px);
    height: 100%;
    margin: 0; }
  .threeblock .copylayer {
    padding: 50px;
    text-align: left; }
  .threeblock .largeside {
    padding: 0; }
    .threeblock .largeside .copylayer {
      padding: 50px;
      max-width: 80%; }
  .threeblock .smallside .top,
  .threeblock .smallside .bottom {
    margin: 0; }
  .threeblock .top {
    border-bottom: 5px solid #ffffff; }
  .threeblock .bottom {
    border-top: 5px solid #ffffff; } }

.twoblock {
  display: table; }
  .twoblock .copylayer {
    position: relative;
    padding: 50px;
    text-align: center; }
  .twoblock .leftside,
  .twoblock .rightside {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 20px;
    margin: 10px 0; }

@media screen and (min-width: 768px) and (orientation: portrait) {
  .twoblock .leftside,
  .twoblock .rightside {
    padding: 50px 0;
    margin: 10px 0; }
  .twoblock .copylayer {
    display: block;
    width: 60%;
    margin: 0 auto; } }

@media screen and (min-width: 1024px) {
  .twoblock .leftside,
  .twoblock .rightside {
    width: calc(50% - 5px);
    padding: 0; }
  .twoblock .leftside {
    float: left; }
  .twoblock .rightside {
    float: right; }
  .twoblock .copylayer {
    display: inline-block;
    width: 80%;
    text-align: left; } }

#page-id-1342 .fullwidth .copyarea {
  text-align: center; }

.woocommerce .pagetitle {
  display: none !important; }

.woocommerce #content div.product div.summary {
  padding: 0 20px; }

.woocommerce .woocommerce-breadcrumb {
  padding: 20px;
  margin: 0; }
  .woocommerce .woocommerce-breadcrumb a {
    color: #d7ad65; }

.woocommerce .woocommerce-products-header {
  padding: 0 20px;
  margin-bottom: 20px;
  background-color: #5696b2; }
  .woocommerce .woocommerce-products-header h1 {
    color: #ffffff;
    font-size: 1.5rem; }
  .woocommerce .woocommerce-products-header p {
    color: #ffffff; }
  .woocommerce .woocommerce-products-header form select {
    border: 1px solid #ffffff;
    color: #ffffff; }

.woocommerce .woocommerce-result-count {
  clear: both;
  display: inline-block;
  margin: 0 20px; }

.woocommerce .woocommerce-ordering {
  margin: 20px;
  display: block;
  float: left; }
  .woocommerce .woocommerce-ordering .orderby {
    font-family: "stevie-sans", sans-serif;
    font-size: 1.125rem;
    -webkit-appearance: none;
    background: url("images/arrow-down-black.png") no-repeat right 20px center;
    background-size: 14px auto; }

.woocommerce .woocommerce-pagination {
  margin: 50px 0; }
  .woocommerce .woocommerce-pagination ul li a,
  .woocommerce .woocommerce-pagination ul li span {
    font-size: 1.25rem; }
  .woocommerce .woocommerce-pagination ul.page-numbers {
    border: 0; }
    .woocommerce .woocommerce-pagination ul.page-numbers li {
      border-right: 0; }
      .woocommerce .woocommerce-pagination ul.page-numbers li .current {
        background: none;
        color: #212322; }

.woocommerce div.product {
  padding: 0 20px; }
  .woocommerce div.product hr {
    margin: 40px 20px; }
  .woocommerce div.product .product_title {
    font-size: 2rem;
    line-height: 1.4; }
  .woocommerce div.product p.price {
    color: #d7ad65; }
  .woocommerce div.product form.cart div.quantity {
    margin: 20px 10px 0 0; }
  .woocommerce div.product form.cart .button {
    clear: none;
    margin: 20px 0 0 0; }
  .woocommerce div.product div.images {
    margin-bottom: 50px; }

.woocommerce ul.products li.product .button {
  display: none; }

.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  font-family: "stevie-sans", sans-serif; }

.woocommerce ul.products li.product .woocommerce-LoopProduct-link .price {
  color: #d7ad65;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  margin-bottom: 0; }

.woocommerce .product .summary .product-category {
  text-transform: uppercase; }

.woocommerce .product section.related {
  padding: 0;
  clear: both;
  border-top: 1px solid #1d1a19; }
  .woocommerce .product section.related h2 {
    margin: 20px 0;
    text-transform: capitalize; }
  .woocommerce .product section.related .products ul,
  .woocommerce .product section.related ul.products {
    margin: 0;
    padding: 0; }

.woocommerce button.button.alt {
  background-color: #ffffff;
  border: 1px solid #d7ad65;
  color: #d7ad65;
  font-family: "stevie-sans", sans-serif;
  border-radius: 0;
  font-weight: normal; }

.woocommerce a.button,
.woocommerce input.button,
.woocommerce button.button,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  position: relative;
  display: inline-block;
  font-family: "stevie-sans", sans-serif;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
  margin-top: 10px;
  color: #d7ad65;
  border: 1px solid #d7ad65;
  z-index: 2;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0; }

.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: #1d1a19;
  color: #ffffff;
  border: 1px solid #1d1a19;
  font-family: "stevie-sans", sans-serif; }

.woocommerce input.button:disabled[disabled] {
  padding: 14px 30px; }

.woocommerce form .form-row {
  margin: 0; }
  .woocommerce form .form-row abbr.required {
    color: #1d1a19;
    border-bottom: none;
    text-decoration: none; }
  .woocommerce form .form-row select,
  .woocommerce form .form-row input.input-text {
    font-size: 1rem;
    font-family: "stevie-sans", sans-serif; }
  .woocommerce form .form-row.woocommerce-invalid input.input-text {
    border-color: #1d1a19; }

.woocommerce table.shop_table {
  border-radius: 0; }
  .woocommerce table.shop_table td {
    border-top: 0;
    padding: 5px 20px; }
  .woocommerce table.shop_table td.product-name a {
    font-weight: 700; }

.woocommerce a.remove {
  color: #d7ad65 !important; }
  .woocommerce a.remove:hover {
    color: #ffffff !important;
    background: #d7ad65 !important; }

.woocommerce .quantity {
  position: relative;
  width: 180px; }
  .woocommerce .quantity .qty {
    width: 180px !important;
    padding: 10px !important; }
  .woocommerce .quantity .btn {
    display: none; }
  .woocommerce .quantity input[type="number"] {
    position: relative;
    z-index: 2;
    -webkit-appearance: textfield !important;
    line-height: 1.5; }
  .woocommerce .quantity input[type="number"]::-webkit-inner-spin-button,
  .woocommerce .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .woocommerce .quantity .quantity-button {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    color: #1d1a19;
    border: 1px solid #1d1a19;
    background-color: #ffffff;
    padding: 8px 10px;
    width: 45px;
    text-align: center;
    z-index: 15;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -transition: 0.3s;
    transition: 0.3s; }
    .woocommerce .quantity .quantity-button:hover {
      background-color: #1d1a19;
      color: #ffffff;
      cursor: pointer; }
  .woocommerce .quantity .quantity-up {
    right: 0; }
  .woocommerce .quantity .quantity-down {
    left: 0; }

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: block; }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    margin: 20px auto;
    width: 50%;
    padding: 0 20px; }

a.added_to_cart.wc-forward {
  padding: 0 10px;
  text-transform: capitalize; }

a.added_to_cart.wc-forward:hover {
  color: #5696b2; }

.woocommerce-cart .copyarea {
  width: 100%;
  max-width: 1440px;
  padding: 50px 20px; }
  .woocommerce-cart .copyarea .cart-collaterals {
    padding: 0 20px; }
    .woocommerce-cart .copyarea .cart-collaterals h2 {
      font-size: 1.5rem;
      text-transform: capitalize; }
    .woocommerce-cart .copyarea .cart-collaterals .cart_totals tr th {
      vertical-align: middle; }

.woocommerce-cart table.cart td.actions .coupon .input-text {
  border-color: #1d1a19;
  color: #1d1a19;
  width: 47% !important;
  padding: 13px 20px !important; }

.woocommerce-cart table.cart td.actions .coupon .button {
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
  clear: none; }

.woocommerce-checkout .fullwidth .copyarea ul li {
  color: #1d1a19; }

.woocommerce-checkout .woocommerce-thankyou-order-received,
.woocommerce-checkout .woocommerce-thankyou-order-details {
  background-color: #84cbb4;
  padding: 20px;
  margin: 0 auto; }

.woocommerce-checkout ul.order_details li {
  width: 100%;
  border-right: 0; }

.woocommerce-checkout .woocommerce-customer-details address {
  border-radius: 0; }

.woocommerce-account .copyarea {
  width: 100%;
  max-width: 100%;
  padding: 50px 0; }

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% - 20px);
  padding: 20px;
  margin: 10px auto;
  float: none; }

.woocommerce-account .woocommerce-MyAccount-navigation {
  background-color: #5696b2; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
      color: #ffffff;
      border-bottom: 1px solid #ffffff;
      border-color: #ffffff;
      font-weight: 700;
      text-transform: capitalize; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
        border-color: transparent; }
    .woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout {
      margin-top: 50px; }

.woocommerce-account .woocommerce-MyAccount-content {
  background-color: #84cbb4; }
  .woocommerce-account .woocommerce-MyAccount-content h3 {
    font-weight: 700;
    font-size: 3rem;
    margin: 0;
    text-transform: capitalize; }
  .woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 24px;
    font-weight: normal;
    margin: 10px 0;
    padding: 0; }
    .woocommerce-account .woocommerce-MyAccount-content p input.button {
      color: #1d1a19;
      border: 1px solid #1d1a19;
      background-color: #84cbb4;
      font-weight: normal;
      font-size: 1.125rem;
      border-radius: 0;
      margin-top: 20px;
      padding: 16px 30px; }
      .woocommerce-account .woocommerce-MyAccount-content p input.button:hover {
        background-color: #1d1a19;
        color: #84cbb4;
        border: 1px solid #1d1a19; }
    .woocommerce-account .woocommerce-MyAccount-content p a {
      color: #1d1a19;
      border-color: #1d1a19;
      font-weight: 700; }
      .woocommerce-account .woocommerce-MyAccount-content p a:hover {
        border-color: transparent; }
  .woocommerce-account .woocommerce-MyAccount-content p.woocommerce-form-row {
    color: #1d1a19; }
    .woocommerce-account .woocommerce-MyAccount-content p.woocommerce-form-row span.required {
      color: #1d1a19; }
    .woocommerce-account .woocommerce-MyAccount-content p.woocommerce-form-row input.woocommerce-Input {
      border: 1px solid #1d1a19;
      color: #1d1a19; }
  .woocommerce-account .woocommerce-MyAccount-content label {
    padding: 10px 0;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize; }
  .woocommerce-account .woocommerce-MyAccount-content fieldset {
    border: none;
    padding: 0;
    margin: 40px 0 0; }
    .woocommerce-account .woocommerce-MyAccount-content fieldset legend {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: capitalize; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    margin: 0;
    border-top-color: #1d1a19;
    background-color: #84cbb4;
    color: #1d1a19; }
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before {
      color: #1d1a19; }
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .woocommerce-Button.button,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button {
      border-color: #1d1a19;
      color: #1d1a19;
      padding: 16px 30px;
      font-size: 1.125rem;
      font-weight: normal; }
      .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .woocommerce-Button.button:hover,
      .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button:hover {
        color: #84cbb4; }

ul.woocommerce-error {
  border-top-color: #d7ad65; }
  ul.woocommerce-error li {
    color: #1d1a19 !important;
    margin: 0; }
  ul.woocommerce-error::before {
    color: #d7ad65; }

h2.login {
  padding: 0 25px; }

.white a,
.white p a {
  color: #d7ad65;
  border-color: #d7ad65; }

.white a:hover,
.white p a:hover {
  color: #1d1a19; }

.woocommerce-info {
  border-top-color: #d7ad65; }

.woocommerce-info::before {
  color: #d7ad65; }

.woocommerce-account .addresses {
  padding: 40px 0; }
  .woocommerce-account .addresses a {
    color: #1d1a19;
    border-bottom: 1px solid #1d1a19; }
  .woocommerce-account .addresses a:hover {
    border-color: transparent; }
  .woocommerce-account .addresses .title h3 {
    text-transform: capitalize;
    font-size: 1.5rem; }
  .woocommerce-account .addresses .title .edit {
    float: left;
    clear: both;
    font-size: 1.125rem; }

.woocommerce-account span.select2.select2-container.select2-container--default {
  padding: 10px 0;
  border-color: #1d1a19;
  -webkit-appearance: none;
  background: url("images/arrow-down-black.png") no-repeat right 20px center;
  background-size: 14px auto; }

.woocommerce-account .select2-container--default .select2-selection--single {
  border: 1px solid #1d1a19;
  color: #1d1a19; }
  .woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1d1a19; }

.woocommerce-message {
  border-top-color: #d7ad65; }

.woocommerce-message::before {
  color: #d7ad65; }

.woocommerce-checkout #order_review_heading {
  font-size: 1.5rem;
  margin: 0 20px 20px; }

.woocommerce-checkout .fullwidth .copyarea {
  max-width: 1440px;
  width: 100%; }

.woocommerce-checkout form.checkout ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff; }

.woocommerce-checkout form.checkout ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff; }

.woocommerce-checkout form.checkout :-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff; }

.woocommerce-checkout form.checkout :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff; }

.woocommerce-checkout form.checkout #customer_details {
  margin-bottom: 25px; }
  .woocommerce-checkout form.checkout #customer_details label {
    text-transform: capitalize;
    margin-top: 10px; }
  .woocommerce-checkout form.checkout #customer_details input {
    margin: 10px 0 0; }
  .woocommerce-checkout form.checkout #customer_details textarea {
    margin: 10px 0 0; }
  .woocommerce-checkout form.checkout #customer_details .col-1,
  .woocommerce-checkout form.checkout #customer_details .col-2 {
    padding: 20px; }
    .woocommerce-checkout form.checkout #customer_details .col-1 label,
    .woocommerce-checkout form.checkout #customer_details .col-2 label {
      text-transform: capitalize;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.3; }
    .woocommerce-checkout form.checkout #customer_details .col-1 h3,
    .woocommerce-checkout form.checkout #customer_details .col-2 h3 {
      margin: 0 0 20px 0;
      color: #1d1a19;
      font-size: 1.5rem; }
  .woocommerce-checkout form.checkout #customer_details .col-1 {
    background-color: #5696b2; }
    .woocommerce-checkout form.checkout #customer_details .col-1 abbr.required {
      color: #ffffff !important; }
    .woocommerce-checkout form.checkout #customer_details .col-1 label {
      color: #ffffff; }
    .woocommerce-checkout form.checkout #customer_details .col-1 h3 {
      color: #ffffff; }
    .woocommerce-checkout form.checkout #customer_details .col-1 input,
    .woocommerce-checkout form.checkout #customer_details .col-1 select,
    .woocommerce-checkout form.checkout #customer_details .col-1 textarea {
      margin: 5px 0 0;
      border-color: #ffffff;
      color: #ffffff; }
    .woocommerce-checkout form.checkout #customer_details .col-1 span.select2.select2-container.select2-container--default {
      border-color: #ffffff; }
    .woocommerce-checkout form.checkout #customer_details .col-1 .select2-container--default .select2-selection--single {
      border: 1px solid #ffffff;
      color: #ffffff; }
      .woocommerce-checkout form.checkout #customer_details .col-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
        background: url("images/arrow-down-white.png") no-repeat right 20px center;
        background-size: 14px auto;
        color: #ffffff; }
  .woocommerce-checkout form.checkout #customer_details .col-2 {
    background-color: #84cbb4; }
    .woocommerce-checkout form.checkout #customer_details .col-2 span.select2.select2-container.select2-container--default {
      border-color: #1d1a19; }
    .woocommerce-checkout form.checkout #customer_details .col-2 .select2-container--default .select2-selection--single {
      border: 1px solid #1d1a19;
      color: #1d1a19; }
      .woocommerce-checkout form.checkout #customer_details .col-2 .select2-container--default .select2-selection--single .select2-selection__rendered {
        background: url("images/arrow-down-white.png") no-repeat right 20px center;
        background-size: 14px auto;
        color: #1d1a19; }

.woocommerce-checkout form.checkout h3 {
  text-transform: capitalize; }

.woocommerce-checkout .woocommerce-info {
  display: none; }

.woocommerce-checkout span.select2.select2-container.select2-container--default {
  padding: 10px 0;
  -webkit-appearance: none;
  background-size: 14px auto; }

.select2-container .select2-selection--single {
  background-color: transparent;
  border-radius: 0;
  height: 42px;
  outline: none; }
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    line-height: 40px;
    font-size: 1rem;
    font-family: "stevie-sans", sans-serif; }
  .select2-container .select2-selection--single .select2-selection__arrow {
    display: none; }

#payment label {
  color: #1d1a19; }

div#order_review {
  padding: 0 20px; }

@media screen and (min-width: 768px) {
  .woocommerce .woocommerce-ordering {
    margin: 0 20px;
    float: right; }
    .woocommerce .woocommerce-ordering .orderby {
      padding: 6px 14px !important;
      font-size: 0.875rem; }
  .woocommerce .product section.related {
    padding: 0 20px; }
    .woocommerce .product section.related .products ul,
    .woocommerce .product section.related ul.products {
      padding: 0; }
  .woocommerce ul.products {
    display: block; }
    .woocommerce ul.products li.product {
      margin: 0;
      padding: 20px !important;
      width: 33%;
      float: none;
      display: inline-block;
      vertical-align: top;
      text-align: center; }
      .woocommerce ul.products li.product:nth-child(2n+1) {
        clear: left; }
      .woocommerce ul.products li.product a img {
        width: auto;
        margin: 0 auto 10px;
        max-height: 200px; }
      .woocommerce ul.products li.product .button {
        display: inline-block; }
  .woocommerce table.shop_table td {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 50% !important; }
  .woocommerce-cart table.cart td.actions .coupon .button {
    padding-left: 30px;
    padding-right: 30px; }
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: block; }
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
      margin: 20px;
      width: calc(50% - 40px);
      float: left;
      padding: 0; }
  .woocommerce-checkout ul.order_details li {
    width: auto;
    border-right: 1px solid #1d1a19; } }

@media screen and (min-width: 1024px) {
  #page-id-1342 .fullwidth .copyarea {
    text-align: left; }
  .woocommerce .woocommerce-ordering {
    float: right;
    position: relative;
    top: -10px;
    margin: 0 50px 0 0; }
  .woocommerce .woocommerce-result-count {
    margin: 0 0 20px 50px; }
  .woocommerce .woocommerce-breadcrumb {
    padding: 20px 50px; }
  .woocommerce #content div.summary {
    padding: 0; }
  .woocommerce div.product {
    padding: 0 50px; }
    .woocommerce div.product hr {
      margin: 50px 0; }
    .woocommerce div.product .product-title {
      font-size: 2.5rem; }
  .woocommerce .woocommerce-products-header {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    padding: 0 50px;
    background-color: #5696b2; }
    .woocommerce .woocommerce-products-header h1 {
      float: left;
      width: auto; }
  .woocommerce .product section.related {
    padding: 0; }
    .woocommerce .product section.related h2 {
      margin: 50px 0 20px; }
  .woocommerce .products ul,
  .woocommerce ul.products {
    margin: 0;
    padding: 0 50px;
    display: block; }
  .woocommerce ul.products li.product .button {
    display: inline-block; }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    display: inline-block;
    float: none;
    vertical-align: top;
    margin: 0 40px 80px 0;
    width: calc(25% - 45px); }
    .woocommerce ul.products li.product:nth-child(2n+1),
    .woocommerce-page ul.products li.product:nth-child(2n+1) {
      clear: none; }
  .woocommerce-account .addresses .title h3,
  .woocommerce-account .woocommerce-MyAccount-content fieldset legend {
    font-size: 2.5rem; }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: calc(25% - 10px); }
  .woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 75%; }
  .woocommerce-checkout #order_review_heading {
    font-size: 2.5rem;
    margin: 0 50px 20px; }
  .woocommerce-checkout .fullwidth .copyarea {
    padding: 50px; }
  .woocommerce-checkout form.checkout #customer_details .col-1,
  .woocommerce-checkout form.checkout #customer_details .col-2 {
    padding: 50px; }
    .woocommerce-checkout form.checkout #customer_details .col-1 h3,
    .woocommerce-checkout form.checkout #customer_details .col-2 h3 {
      font-size: 2.5rem; }
  .woocommerce-cart .copyarea {
    padding: 50px; }
    .woocommerce-cart .copyarea .cart-collaterals {
      padding: 0 50px; }
      .woocommerce-cart .copyarea .cart-collaterals h2 {
        font-size: 2.5rem; }
  div#order_review {
    padding: 0 50px; }
  .woocommerce-checkout .woocommerce-thankyou-order-received {
    padding: 40px 40px 10px; }
  .woocommerce-checkout .woocommerce-thankyou-order-details {
    padding: 10px 40px 40px; } }

@media screen and (min-width: 1280px) {
  .woocommerce div.product .product_title {
    font-size: 2.5rem; }
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 {
    font-size: 1.25rem; }
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link .price {
    font-size: 1rem; }
  .woocommerce ul.products li.product a img {
    max-height: 100%; }
  .woocommerce ul.products li.product .button {
    padding: 14px 30px; }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 50px; } }

.error-404 .options-404 {
  margin-top: 50px;
  margin-bottom: 50px; }
  .error-404 .options-404 .columns {
    padding: 5px; }
    .error-404 .options-404 .columns .layer {
      padding: 20px; }
  .error-404 .options-404 h2.widgettitle {
    margin-top: 0; }

.error-404 ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .error-404 ul li {
    margin: 20px 0; }

.error-404 a {
  font-weight: 700;
  border-bottom: 1px solid; }

.error-404 form label {
  float: left;
  width: calc(100% - 50px);
  clear: none; }

.error-404 .search-field:focus {
  border-color: #d7ad65; }

.error-404 .search-submit {
  float: right;
  width: 45px;
  height: 46px;
  background: #1d1a19 url("images/search.svg") no-repeat center center;
  background-size: 70%;
  clear: none;
  border: 0; }
  .error-404 .search-submit:hover {
    background-color: #d7ad65; }

@media screen and (min-width: 768px) {
  .error-404 .options-404 {
    display: flex; }
    .error-404 .options-404 .columns .layer {
      padding: 50px; }
  .error-404 ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .error-404 a:hover {
    border-bottom-color: transparent; } }
