﻿@charset "UTF-8";
/**
 * Theme Name: FFWS
 * File Description:Main CSS file of the template
 *
 * TABLE OF CONTENTS
 * 0) Fonts
 * 1) Typography
     - basic tags
     - header tags
     - paragraphs
     - links
     - block quotes
     - misc
     - lists
     - tables

 * 2) Layout
     - scroll to top
     - page wrapper
     - boxed layout
     - header-top
     - social icons
     - logo
     - search box

 * 3) Footer
     - footer
     - subfooter

 * 4) Content Blocks (blog, news, aricles, events, etc)

 * 5) Components
     - buttons
     - links
     - forms
     - badges
     - pager
     - breadcrumb
     - tabs
     - pills
     - collapse
     - progress bars
     - circular progress bars
     - alerts
     - announcements
     - modals
     - popups
     - images and overlays
     - responsive iFrame
     - audio wrapper
     - scroll spy
     - bullets

 * 6) Navigations
     - hamburger menu color
     - first level menu
     - arrows for parent menu
     - first level menu items
     - first level menu items on hover/focus
     - first level menu items when opened
     - second level menu item
     - second level menu items on focus/hover and when opened
     - second level menu items arrow when there is a sub menu
     - third level menu
     - third level menu items on focus/hover and when opened
     - mega menu
     - mega menu items
     - mega menu menu items on focus/hover and when opened
     - drop down animations
     - side navigation pills


      
 * 8) Master Slider

 * 9) Search

 * 10 Spacing
    - margins
    - padding
    - borders
    - separaters
    - visibility
 

/* 0 Fonts
----------------------------------------------------------------------------- */
@import url("https://use.typekit.net/kli8odt.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,600,600i,700,700i");
/*=== MEDIA QUERY ===*/
/* 1 Typography
----------------------------------------------------------------------------- */
/*--------basic tags------------*/
html {
  height: 100%; }

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #53565A;
  background-color: #fff;
  font-weight: 400; }

body.full-height,
body.full-height .page-wrapper {
  background-color: #fafafa;
  min-height: 100%; }

/*-------- header tags------------*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: "adobe-garamond-pro"; }

h1 {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 15px;
  color: #A72B2A;
  font-family: "adobe-garamond-pro"; }

h2 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 10px;
  /*text-transform: uppercase;*/
  color: #000;
  font-family: "adobe-garamond-pro";
  font-weight: normal; }

h3 {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #A72B2A;
  font-family: "adobe-garamond-pro";
  /*text-transform: uppercase;*/ }
  h3:hover {
    color: #000; }

h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px; }

h5 {
  font-size: 18px;
  line-height: 22px; }

h6 {
  font-size: 16px;
  line-height: 20px; }

h1.background,
h2.background,
h3.background {
  position: relative;
  z-index: 1;
  color: #000; }
  h1.background:before,
  h2.background:before,
  h3.background:before {
    border-top: 1px solid #000;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1; }
  h1.background:after,
  h2.background:after,
  h3.background:after {
    border-top: 1px solid #000;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1; }
  h1.background span,
  h2.background span,
  h3.background span {
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background: #fff;
    padding: 0 15px; }

h2.title {
  font-size: 28px;
  line-height: 26px;
  text-transform: none;
  font-family: "adobe-garamond-pro";
  letter-spacing: normal; }

h3.heading-sec {
  font-weight: 700;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 4px; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit; }

.section {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px; }

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px; }
  h2 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 8px; }
  h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px; }
  h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: #7a7a7a;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px; }
  h5 {
    font-size: 13px;
    line-height: 18px; }
  h6 {
    font-size: 12px;
    line-height: 17px; } }

/*--------paragraphs------------*/
p {
  margin-bottom: 20px; }

p.dropcap::first-letter {
  font-family: "adobe-jenson-pro-display", 'Times New Roman',serif;
  display: block;
  float: left;
  font-size: 70px;
  line-height: 51px;
  margin: -1px 8px -2px 0;
  color: #71A1A4; }

/*--------links------------*/
a {
  color: #A72B2A;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

a:hover {
  color: #000;
  text-decoration: none; }

a:focus, a:active {
  outline: none;
  color: #000;
  text-decoration: none; }

/*--------block quotes------------*/
blockquote {
  border-left: none;
  display: block;
  margin: 20px auto 20px;
  font-size: 16px;
  position: relative;
  padding: 10px 10px 10px 0px;
  margin-left: 40px; }

blockquote:after {
  content: "“";
  width: 25px;
  height: 25px;
  line-height: 64px;
  font-size: 64px;
  font-family: "PT Serif", serif;
  position: absolute;
  top: 12px;
  left: -45px; }

.blockquote:before {
  font-family: "PT Serif", serif;
  content: "“";
  font-size: 40px; }

blockquote.inline {
  padding: 0; }

blockquote.inline p {
  width: 60%;
  display: inline-block;
  margin: 0; }

blockquote.inline footer {
  width: 37%;
  display: inline-block;
  padding-left: 5px; }

blockquote.inline:after {
  top: 0; }

/*--------misc------------*/
.no-trans * {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

img {
  /*display: block;*/
  max-width: 100%;
  height: auto; }

.mark {
  background-color: #000;
  color: #ffffff; }

pre {
  padding: 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.text-muted {
  color: #999999; }

.text-default {
  color: #000; }

.well {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #f3f3f3;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05); }

/*--------lists------------*/
ul {
  list-style: square; }

.list-icons,
.list {
  list-style: none;
  padding: 0; }

.list-icons li,
.list li {
  padding: 5px 0; }

.list-icons li i {
  width: 25px;
  text-align: center; }

.list li .vertical-divider {
  padding-right: 15px;
  position: relative; }

.list li .vertical-divider:after {
  position: absolute;
  content: "";
  height: 60%;
  width: 1px;
  background-color: #CECECE;
  right: 9px;
  top: 5px; }

.list-inline {
  margin-top: 9px;
  margin-bottom: 8px; }

/*--------tables------------*/
.table:not(.table-bordered) {
  border-bottom: 2px solid #f3f3f3; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #000;
  background-color: #000;
  color: #fff; }

.table-bordered {
  border-color: #000; }

tbody {
  background-color: #ffffff; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px 15px;
  border-top: 1px solid #f3f3f3; }

.table-striped tbody {
  background-color: #fafafa; }

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f1f1f1; }

.table-striped.table > tbody > tr > td {
  border-color: #e8e8e8; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border-color: #f3f3f3; }

.dl-horizontal dd {
  margin-bottom: 10px; }

.dark .table:not(.table-bordered) {
  border-bottom: 2px solid #515151; }

.dark .table > thead > tr > th {
  border-bottom: 1px solid #27272a;
  background-color: #27272a;
  color: #cdcdcd; }

.dark tbody {
  background-color: transparent; }

.dark .table > thead > tr > th,
.dark .table > tbody > tr > th,
.dark .table > tfoot > tr > th,
.dark .table > thead > tr > td,
.dark .table > tbody > tr > td,
.dark .table > tfoot > tr > td {
  border-top: 1px solid #515151; }

.dark .table-hover > tbody > tr:hover {
  background-color: #27272a; }

/*1*/
/*  Layout
----------------------------------------------------------------------------- */
/*--------scroll to top------------*/
.scrollToTop {
  color: #ffffff;
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  background-color: #000;
  z-index: 1005;
  display: none; }

.scrollToTop i {
  line-height: 50px;
  font-size: 24px; }

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
  .scrollToTop {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4); }
  .scrollToTop i {
    line-height: 40px;
    font-size: 20px; } }

/*--------page wrapper------------*/
/* adds a wider container than bootstrap's default of 1170*/
@media (min-width: 1400px) {
  .container {
    width: 1380px; } }

.page-wrapper {
  background-color: #fff; }

/*--------boxed layout------------*/
.boxed .page-wrapper {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px #cacaca;
  box-shadow: 0px 0px 10px #cacaca; }

.pattern-1 {
  background-image: url("/assets/site/SiteImages/pattern-1.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-4 .page-wrapper,
.pattern-5 .page-wrapper,
.pattern-6 .page-wrapper,
.pattern-7 .page-wrapper,
.pattern-8 .page-wrapper,
.pattern-9 .page-wrapper {
  -webkit-box-shadow: none;
  box-shadow: none; }

.pattern-2 {
  background-image: url("/assets/site/SiteImages/pattern-2.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-3 {
  background-image: url("/assets/site/SiteImages/pattern-3.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-4 {
  background-image: url("/assets/site/SiteImages/pattern-4.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-5 {
  background-image: url("/assets/site/SiteImages/pattern-5.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-6 {
  background-image: url("/assets/site/SiteImages/pattern-6.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-7 {
  background-image: url("/assets/site/SiteImages/pattern-7.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-8 {
  background-image: url("/assets/site/SiteImages/pattern-8.png");
  background-repeat: repeat;
  background-position: 0 0; }

.pattern-9 {
  background-image: url("/assets/site/SiteImages/pattern-9.png");
  background-repeat: repeat;
  background-position: 0 0; }

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .boxed .page-wrapper {
    width: 750px; } }

/* Medium devices (desktops, tablets, 992px and up) */
@media (min-width: 992px) {
  .boxed .page-wrapper {
    width: 970px; } }

/* Large devices (Large desktops 1200px and up) */
@media (min-width: 1200px) {
  .boxed .page-wrapper {
    width: 1170px; } }

/*--------header-top------------*/
.header-top {
  background-color: #000;
  line-height: 15px;
  /*border-bottom: 1px solid #dadada;
	-webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03) inset;
	box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03) inset;*/ }

.header-top-links {
  list-style: none;
  font-size: 0;
  margin: 0;
  margin-left: -80px; }

.header-top-links li {
  display: inline-block;
  padding: 0 15px 0 0; }

.header-top-links li:last-child {
  display: inline-block;
  padding: 0 25px 0 0; }
  @media screen and (max-width: 767px) {
    .header-top-links li:last-child {
      padding: 0; } }

.header-top-first .header-top-links {
  margin-left: 0px; }

.header-top-links li a {
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 14px 10px 14px 10px;
  color: #fff;
  text-transform: uppercase;
  background: transparent; }

.header-top-links li a:hover {
  color: #fff;
  text-decoration: none;
  background: #000; }

.header-top.banner {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: none; }

/*--------social icons------------*/
.social-links {
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 20px 0 20px 0; }

.social-links li {
  display: inline-block;
  margin: 0 2px 2px 0; }

.social-links li a {
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  font-size: 20px;
  background: #e84c3d;
  border: 1px solid #e84c3d;
  color: #ffffff; }

.social-links.large li a {
  width: 60px;
  height: 60px;
  font-size: 24px; }

.social-links.radius-5px li a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.social-links.circle li a {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%; }

.social-links li a:hover {
  background-color: transparent;
  border-color: #cd3c2e;
  color: #cd3c2e; }

.social-links li a i {
  line-height: 44px; }

.social-links.large li a i {
  line-height: 60px; }

.header-top .social-links {
  margin: 0; }

.header-top .social-links li {
  padding: 7px 5px 7px;
  background: #000;
  /*#404041;*/
  border-right: 3px solid #000;
  margin: 0; }

.header-top .social-links li:hover {
  background-color: #fafafa; }

.header-top .social-links li a {
  font-size: 16px; }

.header-top .social-links li:last-child {
  border-right: none; }

.header-top .social-links li a {
  border: none;
  width: 25px;
  height: 30px;
  color: #fff;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li a:hover {
  color: #cd3c2e; }

.header-top .social-links li a i {
  line-height: 30px; }

.footer-content .social-links {
  margin: 20px 0; }

.footer-content .social-links li {
  margin: 0 5px 5px 0; }

.footer-content .social-links li a {
  color: #fff;
  background-color: transparent;
  border-color: #fff; }

.footer-content .social-links li a:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666; }

.social-links li.twitter a:hover,
.colored.social-links li.twitter a {
  background-color: #55acee;
  border-color: #55acee;
  color: #ffffff; }

.social-links li.skype a:hover,
.colored.social-links li.skype a {
  background-color: #00aff0;
  border-color: #00aff0;
  color: #ffffff; }

.social-links li.linkedin a:hover,
.colored.social-links li.linkedin a {
  background-color: #0976b4;
  border-color: #0976b4;
  color: #ffffff; }

.social-links li.googleplus a:hover,
.colored.social-links li.googleplus a {
  background-color: #dd4b39;
  border-color: #dd4b39;
  color: #ffffff; }

.social-links li.youtube a:hover,
.colored.social-links li.youtube a {
  background-color: #b31217;
  border-color: #b31217;
  color: #ffffff; }

.social-links li.flickr a:hover,
.colored.social-links li.flickr a {
  background-color: #ff0084;
  border-color: #ff0084;
  color: #ffffff; }

.social-links li.facebook a:hover,
.colored.social-links li.facebook a {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #ffffff; }

.social-links li.pinterest a:hover,
.colored.social-links li.pinterest a {
  background-color: #cb2027;
  border-color: #cb2027;
  color: #ffffff; }

.social-links li.instagram a:hover,
.colored.social-links li.instagram a {
  background-color: #517fa4;
  border-color: #517fa4;
  color: #ffffff; }

.social-links li.vimeo a:hover,
.colored.social-links li.vimeo a {
  background-color: #aad450;
  border-color: #aad450;
  color: #ffffff; }

.social-links li.tumblr a:hover,
.colored.social-links li.tumblr a {
  background-color: #32506d;
  border-color: #32506d;
  color: #ffffff; }

.social-links li.soundcloud a:hover,
.colored.social-links li.soundcloud a {
  background-color: #ff3a00;
  border-color: #ff3a00;
  color: #ffffff; }

.social-links li.foursquare a:hover,
.colored.social-links li.foursquare a {
  background-color: #0072b1;
  border-color: #0072b1;
  color: #ffffff; }

.social-links li.dribbble a:hover,
.colored.social-links li.dribbble a {
  background-color: #ea4c89;
  border-color: #ea4c89;
  color: #ffffff; }

.social-links li.behance a:hover,
.colored.social-links li.behance a {
  background-color: #053eff;
  border-color: #053eff;
  color: #ffffff; }

.social-links li.vine a:hover,
.colored.social-links li.vine a {
  background-color: #00a478;
  border-color: #00a478;
  color: #ffffff; }

.social-links li.stumbleupon a:hover,
.colored.social-links li.stumbleupon a {
  background-color: #f74425;
  border-color: #f74425;
  color: #ffffff; }

.header-top .social-links li.twitter a:hover {
  color: #55acee;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.skype a:hover {
  color: #00aff0;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.linkedin a:hover {
  color: #0976b4;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.googleplus a:hover {
  color: #dd4b39;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.youtube a:hover {
  color: #b31217;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.flickr a:hover {
  color: #ff0084;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.facebook a:hover {
  color: #3b5998;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.pinterest a:hover {
  color: #cb2027;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.instagram a:hover {
  color: #517fa4;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.vimeo a:hover {
  color: #aad450;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.tumblr a:hover {
  color: #32506d;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.soundcloud a:hover {
  color: #ff3a00;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.foursquare a:hover {
  color: #0072b1;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.dribbble a:hover {
  color: #ea4c89;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.behance a:hover {
  color: #053eff;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.vine a:hover {
  color: #00a478;
  background-color: transparent;
  border-color: transparent; }

.header-top .social-links li.stumbleupon a:hover {
  color: #f74425;
  background-color: transparent;
  border-color: transparent; }

.social-links .dropdown > button {
  padding: 6px 15px 5px;
  font-size: 16px;
  color: #999999;
  text-align: center;
  min-width: 0;
  margin: 0;
  background-color: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.social-links .dropdown > button i {
  width: 15px; }

.social-links .dropdown.open > button > i:before {
  content: "\f00d";
  color: #e84c3d; }

.social-links .dropdown-menu {
  z-index: 103;
  padding: 0px;
  min-width: 290px;
  margin-top: 1px;
  font-size: 0;
  box-shadow: none;
  background-color: #fafafa; }

.social-links .dropdown-menu li a,
.social-links .dropdown-menu li a i {
  padding: 0; }

/*-------logo------------*/
.logo img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  max-height: 100px; }

@media (max-width: 991px) {
  .logo img,
  .header-small .logo img {
    margin: 0 auto; } }

@media (max-width: 767px) {
  .logo img,
  .header-small .logo img {
    margin: 20px 0;
    height: 70px; } }

.site-slogan {
  font-size: 13px;
  font-style: italic;
  color: #999999; }

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
  .logo {
    height: 90px;
    margin: 0 auto; }
  .logo-row {
    border-bottom: 4px solid #000;
    background-color: #fff; }
  .logo-container {
    border-right: 3px solid #000;
    font-size: 25px;
    color: white; }
  .logo a {
    color: white; }
  .logo a:hover {
    color: #000;
    text-decoration: none; } }

/* page banner*/
.pageBanner {
  background-color: #fff; }

.pageBannerImage {
  height: 400px; }
  @media screen and (max-width: 580px) {
    .pageBannerImage img {
      max-width: unset !important; } }
  .pageBannerImage .pageBannerOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1.0; }
    .pageBannerImage .pageBannerOverlay h1 {
      color: #fff;
      font-size: 84px;
      font-weight: 500;
      margin-top: -25px; }
      @media screen and (max-width: 767px) {
        .pageBannerImage .pageBannerOverlay h1 {
          font-size: 55px; } }
      @media screen and (max-width: 580px) {
        .pageBannerImage .pageBannerOverlay h1 {
          font-size: 45px; } }
  @media screen and (max-width: 767px) {
    .pageBannerImage {
      height: 450px; } }
  @media screen and (max-width: 580px) {
    .pageBannerImage {
      height: 350px; } }

/*-------search box------------*/
sew_searchBox {
  height: 35px; }

label {
  font-weight: normal;
  font-size: 12px; }

.form-control {
  border-radius: 0;
  margin: 0 0 5px 0; }

.form-control:focus {
  border-color: #000;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(160, 115, 37, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(160, 115, 37, 0.6); }

/*2*/
/* Footer
----------------------------------------------------------------------------- */
/*--------footer------------*/
.footer {
  font-size: 14px;
  color: #EAEAEA;
  padding: 30px 0;
  background-color: #000;
  border-top: 1px solid #b38431; }

.footer a {
  color: #EAEAEA; }

.footer a:hover {
  color: #000;
  text-decoration: none; }

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif; }

.footer h2 {
  font-size: 24px;
  margin-bottom: 30px; }

.footer h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px; }

.footer .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff; }

.footer-links ul li {
  padding-bottom: 10px; }

.footer h3::first-letter {
  /*border-bottom: 5px solid $skin-color;*/ }

/*--------subfooter------------*/
.subfooter {
  padding-top: 30px;
  font-size: 12px;
  color: #EAEAEA; }

.subfooter p {
  margin: 0; }

.subfooter a {
  color: #EAEAEA; }

.subfooter a:hover {
  color: #000;
  text-decoration: none; }

@media (min-width: 768px) {
  .footer-teaser {
    padding-right: 40px; } }

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /* subfooter */
  .subfooter {
    text-align: center; } }

.footer .form-control {
  background: #363636;
  color: #c3c3c3;
  border-color: #525252; }

.rc-anchor {
  border-radius: 0px; }

/*3*/
/*=== 21. CAROUSEL ===*/
.imageCarousel {
  margin-bottom: 10px; }
  .imageCarousel .carousel-control {
    display: none; }
  .imageCarousel .carousel-indicators {
    display: none; }
  .imageCarousel .carousel-control.left, .imageCarousel .carousel-control.right {
    background-image: none; }
  .imageCarousel .image-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 10px 5px 10px 5px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); }
    @media (max-width: 479px) {
      .imageCarousel .image-caption {
        display: none; } }
    .imageCarousel .image-caption p {
      margin-bottom: 8px;
      margin-top: 8px; }

.imageCarousel .media {
  margin-bottom: 10px; }
  @media (max-width: 479px) {
    .imageCarousel .media .imageSlider {
      width: 100%;
      padding: 0 0 15px 0; } }
  @media (min-width: 480px) {
    .imageCarousel .media .imageSlider {
      width: 100%;
      padding: 0 0 15px 0; } }
  @media (min-width: 768px) {
    .imageCarousel .media .imageSlider {
      width: 100%;
      padding: 0 0 15px 0; } }
  @media (min-width: 992px) {
    .imageCarousel .media .imageSlider {
      width: 100%;
      padding: 0 0 0 0; } }
  .imageCarousel .media .imageSlider #carousel {
    margin-bottom: 10px; }
    .imageCarousel .media .imageSlider #carousel .item img {
      width: 100%; }
  .imageCarousel .media .imageSlider .thumb-carousel .thumb {
    width: 31.5%;
    cursor: pointer;
    float: left;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 479px) {
      .imageCarousel .media .imageSlider .thumb-carousel .thumb {
        margin-right: 2.75%; } }
    @media (min-width: 480px) {
      .imageCarousel .media .imageSlider .thumb-carousel .thumb {
        margin-right: 2.75%; } }
    @media (min-width: 768px) {
      .imageCarousel .media .imageSlider .thumb-carousel .thumb {
        margin-right: 2.75%; } }
    @media (min-width: 992px) {
      .imageCarousel .media .imageSlider .thumb-carousel .thumb {
        margin-right: 2.75%;
        margin-bottom: 10px; } }
    .imageCarousel .media .imageSlider .thumb-carousel .thumb img {
      width: 100%; }
    .imageCarousel .media .imageSlider .thumb-carousel .thumb:last-child {
      margin-right: 0; }
    .imageCarousel .media .imageSlider .thumb-carousel .thumb:hover {
      opacity: .8; }
  .imageCarousel .media .imageSlider .thumb-carousel .carousel-control {
    display: none; }

/* Content Blocks
----------------------------------------------------------------------------- */
.content-pod-section .pod-thumbnail {
  margin-bottom: 10px; }

/*--------articles------------*/
.article-detail-wrapper .carousel-indicators,
.article-detail-wrapper .carousel-control,
.article-detail-wrapper .thumb-carousel {
  display: none; }

.ArticlesPodWrapper .content-pod-section {
  border: 1px solid #eee;
  color: #000;
  background-color: #fff;
  min-height: 435px; }

.ArticlesPodWrapper .content-pod-section .pod-text {
  padding: 10px 20px; }

/*--------awards------------*/
/*--------base------------*/
/*--------business------------*/
.business-detail-wrapper .carousel-indicators,
.business-detail-wrapper .carousel-control,
.business-detail-wrapper .thumb-carousel {
  display: none; }

.businessPodWrapper .content-pod-text h3 {
  display: none; }

.businessPodWrapper .content-pod-section {
  border: 1px solid #eee;
  color: #000;
  background-color: #fff;
  position: relative;
  margin-bottom: 20px; }

.businessPodWrapper .content-pod-section h3 {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase; }

/*--------clubs------------*/
.ClubsPodWrapper .content-pod-section .pod-details,
.ClubsListWrapper .content-listing-section .listing-details {
  font-size: smaller; }

.ClubsPodWrapper .content-pod-section .pod-featuring,
.ClubsListWrapper .content-listing-section .listing-featuring {
  display: none; }

.pod-joinLink {
  float: left;
  width: 50%; }

.pod-detailLink {
  width: 50%; }

/*--------documents------------*/
/*--------employee opps------------*/
/*--------events------------*/
.event-detail-wrapper .carousel-indicators,
.event-detail-wrapper .carousel-control,
.event-detail-wrapper .thumb-carousel {
  display: none; }

.EventsListWrapper .content-listing-section .listing-image-caption {
  display: none; }

.EventsPodWrapper .content-pod-section {
  border: 1px solid #eee;
  color: #000;
  background-color: #fff;
  min-height: 490px; }

.EventsPodWrapper .content-pod-section .pod-text {
  padding: 10px 20px; }

.EventsPodWrapper .content-pod-section .pod-date {
  font-size: smaller;
  font-weight: bold;
  padding-bottom: 10px; }

/*--------faqs------------*/
.faq-detail-wrapper .carousel-indicators,
.faq-detail-wrapper .carousel-control,
.faq-detail-wrapper .thumb-carousel {
  display: none; }

.FAQsTabWrapper .panel-title p {
  margin: 0; }

/*--------images------------*/
/* for masonry layout*/
@media screen and (max-width: 480px) {
  #grid2[data-columns]::before {
    content: '1 .column.size-1of1'; } }

@media screen and (min-width: 769px) {
  #grid2[data-columns]::before {
    content: '2 .column.size-1of2'; } }

#grid2,
#grid4 {
  padding-right: 0;
  padding-left: 0; }

.column {
  float: left;
  padding-right: 15px;
  padding-left: 15px; }

.size-1of2 {
  width: 50%; }

.size-1of1 {
  width: 100%; }

.size-1of4 {
  width: 25%; }

@media screen and (max-width: 480px) {
  #grid4[data-columns]::before {
    content: '1 .column.size-1of1'; } }

@media screen and (min-width: 481px) and (max-width: 768px) {
  #grid4[data-columns]::before {
    content: '2 .column.size-1of2'; } }

@media screen and (min-width: 769px) {
  #grid4[data-columns]::before {
    content: '4 .column.size-1of4'; } }

.imagesPodWrapper .content-pod-section .pod-text .pod-name {
  display: none; }

.imagesPodWrapper .content-pod-section .pod-caption {
  padding-top: 10px;
  font-size: 13px;
  line-height: 14px; }
  .imagesPodWrapper .content-pod-section .pod-caption p {
    margin-bottom: 5px; }

.imagesPodWrapper .content-pod-section .pod-subcaption {
  font-size: 12px;
  line-height: 13px; }

/*--------media------------*/
/*--------news------------*/
/*--------pods------------*/
.PromoPodWrapper .content-pod-section {
  border: 1px solid #eee;
  color: #000;
  background-color: #fff; }

.PromoPodWrapper .content-pod-section .pod-text {
  padding: 10px 20px; }

.PromoPodWrapper .content-pod-section .pod-thumbnail {
  margin: 20px 20px 0 20px; }

.PodsPodWrapper .content-pod-section .pod-icon {
  color: #000;
  font-size: 30px;
  float: left;
  width: 50px;
  padding-top: 10px; }

.left-nav-promo .PromoPodWrapper .content-pod-section .pod-text {
  padding: 0; }

.left-nav-promo .PromoPodWrapper .content-pod-section .pod-thumbnail {
  margin: 0px; }

.left-nav-promo .PromoPodWrapper .content-pod-section {
  border: none; }

.PodsPodWrapper .content-pod-section .pod-text h2 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 2px;
  color: #A72B2A;
  font-family: "adobe-garamond-pro"; }

/* -----------products -----------------*/
.product-detail-wrapper .imageCarousel .media .imageSlider .image-caption {
  position: unset;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: unset;
  padding: unset;
  color: unset;
  background: unset;
  text-align: center;
  padding: 10px 0;
  line-height: 15px;
  font-weight: 700; }
  .product-detail-wrapper .imageCarousel .media .imageSlider .image-caption p {
    font-size: 13px; }

.product-detail-wrapper .imageCarousel .media .imageSlider #carousel img {
  width: unset; }

.product-detail-wrapper .imageCarousel .media .imageSlider .carousel-inner {
  min-height: 480px; }
  .product-detail-wrapper .imageCarousel .media .imageSlider .carousel-inner img {
    margin: 0 auto !important;
    max-height: 400px; }

.product-detail-wrapper .imageCarousel .media .imageSlider .thumb-carousel {
  height: 125px; }
  .product-detail-wrapper .imageCarousel .media .imageSlider .thumb-carousel img {
    margin: 0 auto !important;
    max-height: 125px;
    width: unset; }
  .product-detail-wrapper .imageCarousel .media .imageSlider .thumb-carousel .thumb {
    width: 31%;
    text-align: center; }

.product-detail-wrapper .imageCarousel .media .thumbInstructions {
  text-align: center;
  padding: 10px 0; }
  .product-detail-wrapper .imageCarousel .media .thumbInstructions p {
    font-size: 12px; }

.productsPodWrapper .content-pod-section .pod-thumbnail img,
.productsListWrapper .content-listing-section .listing-thumbnail img {
  margin: 30px auto 20px auto;
  height: unset !important;
  width: unset !important; }

.productsListWrapper .content-listing-section .listing-documentLink,
.productsPodWrapper .content-pod-section .pod-documentLink {
  display: none; }

/*--------recipes------------*/
.recipe-detail-wrapper .carousel-indicators,
.recipe-detail-wrapper .carousel-control,
.recipe-detail-wrapper .thumb-carousel {
  display: none; }

.recipeDetailTeaser p {
  font-size: 21px;
  line-height: 28px;
  font-weight: 200;
  padding-top: 30px; }

.recipesListWrapper .content-listing-section .listing-image-caption {
  display: none; }

.recipesPodWrapper .content-pod-section .pod-source > span {
  font-weight: bold; }

/*--------reviews------------*/
/*--------services------------*/
.servicesListWrapper .services-icon {
  display: none; }

.servicesHomeListWrapper .content-homelist-section .homelist-icon {
  text-align: center;
  padding-top: 20px; }

.servicesHomeListWrapper .content-homelist-section .homelist-icon i {
  color: #fff;
  width: 80px;
  line-height: 80px;
  height: 80px;
  font-size: 34px;
  background-color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: inline-block; }

.servicesHomeListWrapper .content-homelist-section .homelist-text > h4 {
  color: #000;
  font-weight: 600; }

/*--------team members------------*/
.team-detail-wrapper .carousel-indicators,
.team-detail-wrapper .carousel-control,
.team-detail-wrapper .thumb-carousel {
  display: none; }

.teamMembersPodWrapper .content-pod-section {
  /*/border: 1px solid #eee;
color: #000;
background-color: #fff;
position: relative;
margin-bottom: 20px;*/ }

.teamMembersPodWrapper .content-pod-section .pod-text {
  /* padding: 10px 20px;*/ }

.teamMembersPodWrapper .social-btn li a, .teamMembersListingWrapper .social-btn li a {
  font-size: 14px;
  text-transform: uppercase;
  display: unset; }

.teamMembersPodWrapper .social-btn li a, .teamMembersListingWrapper .social-btn li a, .teamMembersPodWrapper a, .teamMembersListingWrapper a {
  text-decoration: none; }

.teamMembersPodWrapper .social-btn li a i {
  color: #7a7a7a;
  border: 2px solid #7a7a7a; }

.teamMembersPodWrapper .social-btn li i, .teamMembersListWrapper .social-btn li i {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 5px;
  color: #7a7a7a;
  border: 2px solid #7a7a7a; }

.teamMembersPodWrapper .pod-detailLink, .teamMembersListWrapper .listing-detailLink {
  display: none; }

/*--------vdieos------------*/
.pod-player {
  margin-bottom: 10px; }

/*--------misc------------*/
.divider hr {
  display: block;
  position: relative;
  padding: 0;
  margin: 8px auto;
  height: 0;
  width: 100%;
  max-height: 0;
  font-size: 1px;
  line-height: 0;
  clear: both;
  border: none;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #ffffff; }

/*4*/
/* Components
----------------------------------------------------------------------------- */
/*--------buttons------------*/
.btn {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  min-width: 160px;
  text-align: center;
  border-radius: 0;
  text-transform: uppercase;
  margin: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none; }

.btn.btn-lg {
  padding: 17px 12px;
  font-size: 18px;
  min-width: 210px; }

.btn.btn-sm {
  padding: 8px;
  font-size: 12px;
  min-width: 105px; }

.btn.radius {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px; }

.moving {
  -webkit-animation: moving 1.7s ease-out infinite;
  -moz-animation: moving 1.7s ease-out infinite;
  -ms-animation: moving 1.7s ease-out infinite;
  -o-animation: moving 1.7s ease-out infinite;
  animation: moving 1.7s ease-out infinite;
  position: relative;
  top: -30px;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.btn-remove {
  font-size: 10px;
  padding: 3px 15px;
  min-width: 0; }

@-webkit-keyframes moving {
  0% {
    top: -30px; }
  60% {
    top: 0px; } }

@keyframes moving {
  0% {
    top: -30px; }
  60% {
    top: 0px; } }

/* Search  Button */
.btn-search {
  color: #ffffff;
  background-color: #000;
  border-color: #000;
  margin-top: 0;
  min-width: 50px;
  height: 35px;
  border-radius: 0;
  min-width: unset;
  padding-top: 7px; }

.btn-search:hover,
.btn-search:focus,
.btn-search:active,
.btn-search.active,
.open .dropdown-toggle.btn-search {
  color: #ffffff;
  background-color: #000;
  border-color: #000; }

.btn-search:active,
.btn-search.active,
.open .dropdown-toggle.btn-search {
  background-image: none; }

.btn-search.disabled,
.btn-search[disabled],
fieldset[disabled] .btn-search,
.btn-search.disabled:hover,
.btn-search[disabled]:hover,
fieldset[disabled] .btn-search:hover,
.btn-search.disabled:focus,
.btn-search[disabled]:focus,
fieldset[disabled] .btn-search:focus,
.btn-search.disabled:active,
.btn-search[disabled]:active,
fieldset[disabled] .btn-search:active,
.btn-search.disabled.active,
.btn-search[disabled].active,
fieldset[disabled] .btn-search.active {
  background-color: #f0ad4e;
  border-color: #ed9c28; }

/* Gray Buttons */
.btn-gray {
  color: #ffffff;
  background-color: #aaa897;
  border-color: #aaa897; }

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active,
.open .dropdown-toggle.btn-gray {
  color: #ffffff;
  background-color: #b03623;
  border-color: #b03623; }

/* Red Buttons */
.btn-red {
  color: #fff;
  background-color: #A72B2A;
  border-color: #A72B2A; }

.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active,
.open .dropdown-toggle.btn-light-gray {
  color: #ffffff;
  background-color: #aaa897;
  border-color: #aaa897; }

/* Light Gray Buttons */
.btn-light-gray {
  color: #333333;
  background-color: #fafafa;
  border-color: #f3f3f3; }

.btn-light-gray:hover,
.btn-light-gray:focus,
.btn-light-gray:active,
.btn-light-gray.active,
.open .dropdown-toggle.btn-light-gray {
  color: #ffffff;
  background-color: #e84c3d;
  border-color: #e84c3d; }

.default-bg .btn-light-gray {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff; }

.default-bg .btn-light-gray:hover,
.default-bg .btn-light-gray:focus,
.default-bg .btn-light-gray:active,
.default-bg .btn-light-gray.active,
.default-bg .open .dropdown-toggle.btn-light-gray {
  color: #333333;
  background-color: #fafafa;
  border-color: #fafafa; }

/* The color of default buttons is the color of current color scheme */
.btn-default {
  background-color: #000;
  color: #ffffff !important;
  border-color: #000; }

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #ffffff !important;
  background-color: #000;
  border-color: #000; }

.default-bg .btn-default {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: transparent; }

.default-bg .btn-default:hover,
.default-bg .btn-default:focus,
.default-bg .btn-default:active,
.default-bg .btn-default.active,
.default-bg .open .dropdown-toggle.btn-default {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: transparent; }

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default {
  background-color: #000;
  border-color: #000;
  opacity: 0.7;
  filter: alpha(opacity=70); }

/* Button with transparent bg */
.btn-white {
  background-color: transparent;
  color: #000;
  border: 1px solid #aaa897; }

.footer .btn-white,
.subfooter .btn-white {
  color: inherit; }

.footer .btn-white:hover,
.subfooter .btn-white:hover {
  color: #ffffff; }

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
  color: #ffffff;
  background-color: #000;
  border-color: #000; }

.default-bg .btn-white {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff; }

.default-bg .btn-white:hover,
.default-bg .btn-white:focus,
.default-bg .btn-white:active,
.default-bg .btn-white.active,
.default-bg .open .dropdown-toggle.btn-white {
  color: #333333;
  background-color: #fafafa;
  border-color: #fafafa; }

.footer-content .btn-white {
  color: #999999;
  background-color: transparent;
  border-color: #555; }

.btn-default .badge {
  color: #666666;
  background-color: #ffffff;
  border: none; }

/*Button background transitions*/
.btn-hvr {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.hvr-sweep-to-right:before,
.hvr-sweep-to-left:before,
.hvr-sweep-to-bottom:before,
.hvr-sweep-to-top:before,
.hvr-bounce-to-right:before,
.hvr-bounce-to-left:before,
.hvr-bounce-to-bottom:before,
.hvr-bounce-to-top:before,
.hvr-radial-out:before,
.hvr-rectangle-out:before,
.hvr-shutter-out-horizontal:before,
.hvr-shutter-out-vertical:before {
  background: #000; }

.hvr-radial-in:before,
.hvr-rectangle-in:before,
.hvr-shutter-in-horizontal:before,
.hvr-shutter-in-vertical:before {
  background: #fafafa; }

/*--------links------------*/
.link {
  padding-right: 23px;
  position: relative;
  display: inline-block;
  text-align: right; }

.link:hover {
  text-decoration: none; }

.link:hover span {
  text-decoration: underline; }

.link:after {
  content: "\f178";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 2px; }

.link-light {
  color: #ffffff;
  text-decoration: none !important; }

.link-light:hover {
  color: #ffffff;
  text-decoration: underline !important; }

.link-dark {
  color: #333333;
  text-decoration: none !important; }

.link-dark:hover {
  color: #333333;
  text-decoration: underline !important; }

#footer:not(.light) .link-dark {
  color: #cdcdcd; }

#footer:not(.light) .link-dark:hover {
  color: #cdcdcd; }

/*--------forms------------*/
form {
  margin: 0 0 0 0; }

textarea {
  resize: vertical; }

.sidebar form {
  margin: 5px 0 20px 0; }

.form-control {
  border-radius: 0;
  background: #ffffff;
  height: 40px;
  padding-right: 30px;
  border-color: #acacac;
  color: #666666;
  position: relative;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); }

.form-control:focus {
  border-color: #666666;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); }

select.form-control {
  padding-right: 5px; }

.form-control::-moz-placeholder {
  color: inherit; }

.form-control:-ms-input-placeholder {
  color: inherit; }

.form-control::-webkit-input-placeholder {
  color: inherit; }

.input-group-addon {
  background-color: #cacaca;
  border-color: #acacac;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.form-list > div {
  padding: 7px 15px;
  border-bottom: 1px solid #dddddd;
  background-color: #f3f3f3;
  margin: 6px 0;
  display: block; }

fieldset {
  padding: 10px 25px;
  margin: 15px 0px;
  border: 1px solid #dddddd;
  /*background-color: #fafafa;*/ }

fieldset legend {
  display: block;
  width: auto;
  padding: 3px 10px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: inherit;
  color: #333;
  border: 1px solid #ddd;
  background-color: #ffffff; }

fieldset .form-control,
fieldset .form-control:focus {
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
  border-color: #f3f3f3; }

/*--------badges------------*/
.badge {
  padding: 2px 4px 3px;
  font-size: 10px;
  margin-left: 12px;
  top: -2px;
  position: relative;
  font-weight: 400;
  border-radius: 2px;
  background-color: transparent;
  color: inherit;
  border: 1px solid #666666; }

.dropdown .badge {
  background-color: transparent;
  color: inherit;
  position: absolute;
  right: 25px;
  top: 14px; }

.mega-menu .menu > li > a .badge {
  position: absolute;
  right: 10px;
  top: 9px; }

.dropdown .active > a > .badge,
.dropdown a:hover .badge,
.dropdown .open > a > .badge {
  border-color: #e84c3d; }

.dark .dropdown .active > a > .badge,
.dark .dropdown a:hover .badge,
.dark .dropdown .open > a > .badge {
  border-color: #3d3d3d !important; }

@media (max-width: 767px) {
  .dropdown .badge {
    right: 50px;
    top: 15px; } }

/* Forms in all backgrounds */
.dark-bg .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #000000;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
  color: #999999; }

.dark-bg .input-group-addon {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #000000; }

.dark-bg .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25); }

.gray-bg .form-control,
.header-top-dropdown .form-control,
#footer.light .form-control {
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
  border-color: #f1f1f1;
  background-color: #ffffff; }

.gray-bg .form-control:focus,
.header-top-dropdown .form-control:focus,
#footer.light .form-control:focus {
  border-color: #cacaca;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09); }

.dark .header-top-dropdown .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #333;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
  color: #cdcdcd; }

.dark .header-top-dropdown form i {
  color: #cdcdcd; }

.dark .header-top-dropdown .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25); }

.gray-bg .input-group-addon {
  background-color: #ececec;
  border: 1px solid #f1f1f1; }

.default-bg .form-control {
  border-color: #e84c3d;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.35);
  color: #ffffff; }

.default-bg .form-control:focus {
  border-color: #e84c3d;
  background-color: rgba(0, 0, 0, 0.25); }

.default-bg .input-group-addon {
  background-color: #000;
  border-color: #e84c3d;
  color: #ffffff; }

.default-bg select.form-control,
.dark-bg select.form-control {
  color: #666666; }

footer:not(.light) .footer-content .form-control {
  /*	border-color: #292929;
	/*background-color: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.55);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.55);*/ }

footer:not(.light) .footer-content .form-control:focus {
  /*background-color: rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.55);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.55);*/ }

footer:not(.light) .footer-content .input-group-addon {
  /*background-color: rgba(0, 0, 0, 0.5);*/
  border: transparent; }

select.form-control {
  -webkit-appearance: menulist; }

select[multiple].form-control {
  -webkit-appearance: listbox; }

/* Validation states */
.has-success .form-control,
.has-success .form-control:focus {
  border-color: #3c763d; }

.has-warning .form-control,
.has-warning .form-control:focus {
  border-color: #8a6d3b; }

.has-error .form-control,
.has-error .form-control:focus {
  border-color: #a94442; }

.default-bg .has-success .form-control,
.default-bg .has-warning .form-control,
.default-bg .has-error .form-control,
.default-bg .has-success .form-control:focus,
.default-bg .has-warning .form-control:focus,
.default-bg .has-error .form-control:focus {
  border-color: #ffffff;
  color: #ffffff; }

.default-bg .has-success .form-control-feedback,
.default-bg .has-warning .form-control-feedback,
.default-bg .has-error .form-control-feedback,
.default-bg .has-success .control-label,
.default-bg .has-warning .control-label,
.default-bg .has-error .control-label {
  color: #ffffff; }

.has-success .form-control,
.has-warning .form-control,
.has-error .form-control {
  -webkit-box-shadow: none;
  box-shadow: none; }

.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none; }

.has-error .error {
  font-weight: 700;
  margin-bottom: 5px;
  display: block; }

/* forms with icons */
label ~ .form-control-feedback {
  top: 25px; }

.form-control-feedback {
  width: 40px;
  height: 40px;
  line-height: 42px !important;
  top: 0; }

/* Disabled forms */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  opacity: 0.5;
  filter: alpha(opacity=50); }

/*--------pager------------*/
ul.pagination,
ul.pager {
  margin: 20px 0 40px;
  text-align: left; }

ul.pagination li {
  padding: 0;
  margin: 0 5px 0 0;
  border-bottom: none;
  font-size: 12px;
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

ul.pagination li > a,
.pagination > li:first-child > a,
.pagination > li:last-child > a,
ul.pager li > a {
  padding: 10px 15px;
  border: 1px solid #f3f3f3;
  line-height: 1;
  background-color: #fafafa;
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #666666; }

ul.pagination li > a:hover {
  background-color: transparent;
  color: #ffffff;
  background-color: #e84c3d;
  border-color: #e84c3d; }

ul.pagination li.active a,
.pagination > .active > a:hover,
.pagination > .active > a:focus {
  color: #ffffff;
  background-color: #e84c3d;
  border-color: #e84c3d;
  line-height: 1; }

ul.pagination li > a:focus {
  background: none; }

/*--------breadcrumb------------*/
.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  font-size: 13px;
  padding: 8px 0; }

/*--------tabs------------*/
.panel-body {
  padding: 30px 50px 30px 50px; }

.nav-tabs {
  -webkit-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.04);
  box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #f0f0f0;
  margin-top: 15px; }

.nav-tabs > li > a {
  font-size: 13px;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 12px 25px;
  position: relative;
  color: #666666; }

.nav-tabs > li > a:hover {
  border-color: #f0f0f0 #f0f0f0 #ebebeb;
  background-color: #fafafa; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #666666;
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
  border-bottom-color: transparent; }

.nav-tabs > li.active > a:after {
  width: 3px;
  content: "";
  background-color: #e84c3d;
  height: 103%;
  position: absolute;
  left: 0;
  top: 0; }

.tab-content {
  border: 1px solid #f0f0f0;
  padding: 20px;
  border-top: none;
  position: relative;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  background-color: #fafafa;
  margin-bottom: 15px; }

.tab-content h1 {
  font-size: 34px; }

.tab-content:after {
  width: 3px;
  content: "";
  background-color: #e84c3d;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.tab-content.clear-style {
  border: none;
  padding: 10px 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent; }

.tab-content.clear-style:after {
  width: 0;
  background-color: transparent;
  height: 100%; }

/* Small devices (tablets, smartphones) */
@media (min-width: 481px) and (max-width: 767px) {
  .nav-tabs > li > a {
    padding: 12px 10px;
    font-size: 11px;
    margin-right: 0; } }

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
  .nav-tabs {
    background-color: #999999; }
  .nav-tabs > li {
    float: none; }
  .nav-tabs > li a {
    color: #ffffff;
    margin-right: 0;
    border-bottom: 1px solid #8f8f8f; }
  .nav-tabs > li > a:hover {
    color: #666666; }
  .nav-tabs > li > a:hover:after {
    width: 3px;
    content: "";
    background-color: #e84c3d;
    height: 102%;
    position: absolute;
    left: 0;
    top: 0; } }

/* Horizontal tabs version 2 */
.tabs-style-2 .nav-tabs {
  border-bottom: 1px solid #000; }

.tabs-style-2 .nav-tabs > li.active > a,
.tabs-style-2 .nav-tabs > li.active > a:hover,
.tabs-style-2 .nav-tabs > li.active > a:focus,
.tabs-style-2 .nav-tabs > li > a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #000;
  background-color: #000;
  color: #ffffff; }

.tabs-style-2 .nav-tabs > li.active > a:after {
  width: 0;
  height: 0;
  background-color: transparent; }

.tabs-style-2 .tab-content {
  border: none;
  padding: 20px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent; }

.tabs-style-2 .tab-content:after {
  width: 0px;
  background-color: transparent;
  height: 0; }

.tabs-style-2 .nav-tabs > li > a:hover:after {
  width: 0;
  background-color: transparent;
  height: 0; }

/* vertical tabs */
.vertical {
  margin: 20px 0; }

.vertical.hc-tabs {
  margin: 40px 0; }

.vertical .nav-tabs,
.vertical .tab-content {
  display: table-cell;
  margin: 0;
  vertical-align: top; }

.vertical .nav-tabs {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-color: transparent;
  background-color: #999999; }

.vertical .nav-tabs > li {
  float: none; }

.vertical .nav-tabs > li a {
  margin: 0;
  padding: 15px 40px;
  white-space: nowrap;
  color: #ffffff;
  border-bottom: 1px solid #8f8f8f; }

.vertical .nav-tabs > li > a:hover {
  border-color: #f0f0f0 #f0f0f0 #ebebeb;
  border-right-color: transparent;
  color: #666666;
  z-index: 2; }

.vertical .nav-tabs > li > a:hover:after {
  width: 3px;
  content: "";
  background-color: #e84c3d;
  height: 102%;
  position: absolute;
  left: 0;
  top: 0; }

.vertical .nav-tabs > li.active > a,
.vertical .nav-tabs > li.active > a:hover,
.vertical .nav-tabs > li.active > a:focus {
  -webkit-box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.04);
  border-right-color: transparent;
  border-bottom-color: #f0f0f0;
  color: #666666;
  z-index: 2;
  width: 101%; }

.vertical .tab-content {
  border-top: 1px solid #f0f0f0;
  -webkit-box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.04);
  box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.04);
  left: -1px;
  z-index: 1;
  padding: 20px 30px; }

.vertical .tab-content:after {
  background-color: transparent; }

.arrow {
  display: block;
  position: relative; }

.arrow i {
  font-size: 96px;
  top: -62px;
  position: absolute;
  line-height: 1;
  z-index: 2;
  left: 50%;
  margin-left: -27px; }

.arrow i:before {
  color: #fafafa;
  text-shadow: 0px -1px 1px #E9E9E9; }

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
  .vertical .nav-tabs,
  .vertical .tab-content {
    display: block; } }

/* hc-tabs */
.hc-tabs .hc-tabs-top img {
  display: none; }

.footer-content .nav-pills > li > a {
  padding: 4px 0px;
  border-color: transparent;
  color: #999999;
  font-weight: 400; }

.footer-content .nav-pills > li:last-child > a {
  border-bottom: none; }

.footer-content .nav-pills > li.active > a,
.footer-content .nav-pills > li.active > a:focus,
.footer-content .nav-pills > li > a:focus {
  color: #999999;
  background-color: transparent;
  border-color: transparent; }

.footer-content .nav-pills > li.active > a:hover,
.footer-content .nav-pills > li > a:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: transparent; }

.footer-content .nav-pills.nav-stacked > li > a:after {
  top: 3px; }

.footer-content .nav-pills.nav-stacked > li > a:after,
.footer-content .nav-pills > li.active > a:after,
.footer-content .nav-pills > li.active > a:hover:after,
.footer-content .nav-pills > li.active > a:focus:after,
.footer-content .nav-pills > li > a:hover:after,
.footer-content .nav-pills > li > a:focus:after {
  color: #999999; }

.light .footer-content .nav-pills > li > a,
.light .footer-content .nav-pills > li.active > a,
.light .footer-content .nav-pills > li.active > a:focus,
.light .footer-content .nav-pills > li > a:focus {
  color: #666666; }

.light .footer-content .nav-pills > li.active > a:hover,
.light .footer-content .nav-pills > li > a:hover {
  color: #000; }

.light .footer-content .nav-pills.nav-stacked > li > a:after,
.light .footer-content .nav-pills > li.active > a:after,
.light .footer-content .nav-pills > li.active > a:hover:after,
.light .footer-content .nav-pills > li.active > a:focus:after,
.light .footer-content .nav-pills > li > a:hover:after,
.light .footer-content .nav-pills > li > a:focus:after {
  color: #666666; }

.nav-pills > .active > a > .badge {
  color: #000;
  background-color: #ffffff;
  border-color: #000; }

/* Process pills */
.process .nav-pills > li + li {
  margin-left: 60px;
  position: relative; }

.process .nav-pills > li + li:after {
  font-family: "FontAwesome";
  content: "\f101";
  position: absolute;
  top: 10px;
  left: -35px;
  width: 10px;
  background-color: #ffffff; }

/*--------collapse------------*/
.panel-group .panel {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: none; }

.panel-default > .panel-heading {
  padding: 0;
  outline: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: 1px solid #f0f0f0;
  border-top: none;
  background-color: #fafafa; }

.panel-heading a {
  font-weight: 400;
  padding: 12px 35px 12px 15px;
  display: inline-block;
  width: 100%;
  background-color: #000;
  color: #ffffff;
  position: relative;
  text-decoration: none; }

.panel-dark .panel-heading a,
.panel-dark .panel-heading a:hover {
  background-color: #333333; }

.panel-transparent .panel-default > .panel-heading,
.panel-transparent .panel-default > .panel-heading + .panel-collapse > .panel-body {
  background-color: transparent;
  color: inherit; }

.panel-transparent .panel-heading a {
  border: 1px solid #f1f1f1; }

.panel-transparent .panel-heading a.collapsed {
  color: inherit;
  background-color: transparent; }

.panel-heading a.collapsed {
  color: #ffffff;
  background-color: #999999; }

.panel-heading a:after {
  font-family: "FontAwesome";
  content: "\f147";
  position: absolute;
  right: 15px;
  font-size: 14px;
  font-weight: 300;
  top: 50%;
  line-height: 1;
  margin-top: -7px; }

.panel-heading a.collapsed:after {
  content: "\f196"; }

.panel-heading a:hover,
.panel-transparent .panel-heading a:hover {
  text-decoration: none;
  background-color: #000;
  color: #ffffff; }

.panel-title a i {
  padding-right: 10px;
  font-size: 20px; }

/*--------progress bars------------*/
.progress {
  margin-bottom: 25px;
  background-color: #f1f1f1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 30px; }

.progress-bar {
  padding: 6px 0 5px 0;
  text-align: left; }

.progress-bar-default {
  background-color: #e84c3d; }

.progress-bar-gray {
  background-color: #999999; }

.progress-bar-dark {
  background-color: #333333; }

.gray-bg .progress {
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1); }

.progress-bar span {
  position: relative;
  left: 15px; }

/*--------circular progress bars------------*/
.knob-container {
  margin: 10px;
  position: relative;
  display: inline-block; }

.knob-container canvas {
  width: 132px;
  height: 132px;
  margin: 0 auto; }

.knob-text {
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  margin-top: -14px; }

/* Large devices (Large desktops 1200px and up) */
@media (min-width: 1200px) {
  .knob-container canvas {
    width: 169px;
    height: 169px; } }

/*--------alerts------------*/
.alert {
  margin: 20px 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  position: relative;
  padding-left: 70px;
  overflow: hidden;
  z-index: 1;
  border: none; }

.alert:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 50px;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 2; }

.alert-success {
  color: #2a5f2b;
  background-color: #bcdab0; }

.alert-info {
  color: #1a4e68;
  background-color: #c6e8fa; }

.alert-warning {
  color: #72582b;
  background-color: #f7f0ce; }

.alert:after {
  font-family: "FontAwesome";
  position: absolute;
  top: 10px;
  left: 17px;
  color: #ffffff;
  font-size: 20px;
  z-index: 3; }

.alert.alert-success:after {
  content: "\f00c"; }

.alert.alert-info:after {
  content: "\f05a"; }

.alert.alert-warning:after {
  content: "\f071"; }

.alert.alert-danger:after {
  content: "\f00d"; }

.close {
  font-size: 28px;
  font-weight: normal;
  filter: alpha(opacity=40);
  opacity: 0.4; }

/*--------announcments------------*/
.announcement {
  font-size: 13px; }

.announcement .alert {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 5px 0;
  position: relative; }

.announcement .alert:before {
  background-color: transparent; }

.announcement .alert .close {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  margin-top: -14px;
  text-shadow: none;
  opacity: 0.7;
  filter: alpha(opacity=70); }

.announcement .alert .close:hover,
.announcement .alert .close:focus {
  color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100); }

.announcement p:last-child {
  margin-bottom: 0; }

.announcement h2,
.announcement h3,
.announcement h4 {
  margin-top: 5px;
  margin-bottom: 0px;
  font-weight: 500; }

/*--------modals------------*/
.modal-open .page-wrapper {
  -webkit-filter: blur(3px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px); }

.modal-content {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.modal-content .modal-header {
  background-color: #f8f1de; }

.modal-content .modal-title {
  font-size: 24px;
  color: #000; }

.modal-footer .btn {
  margin: 0; }

/* Large devices (Large desktops 1200px and up) */
@media (min-width: 1200px) {
  .modal-lg {
    width: 1140px; } }

/*--------popups------------*/
.mfp-zoom-out-cur .page-wrapper {
  -webkit-filter: blur(3px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px); }

.mfp-bg {
  opacity: 0.6;
  filter: alpha(opacity=60); }

.mfp-figure:after {
  background-color: #ffffff; }

/*--------images and overlays------------*/
.image-caption {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  z-index: 10;
  padding: 10px 5px 10px 5px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); }
  @media (max-width: 479px) {
    .image-caption {
      display: none; } }
  .image-caption p {
    margin-bottom: 8px;
    margin-top: 8px; }

.image-caption-overlay {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  z-index: 10;
  padding: 10px 5px 10px 5px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); }
  @media (max-width: 479px) {
    .image-caption-overlay {
      display: none; } }
  .image-caption-overlay p {
    margin-bottom: 8px;
    margin-top: 8px; }

.fixed-image {
  background-position: center center;
  background-repeat: no-repeat;
  height: 400px; }

.no-touch .fixed-image {
  background-attachment: fixed; }

.fixed-image {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.overlay-container {
  position: relative;
  display: block;
  overflow: hidden; }

.overlay {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: -1px;
  background-color: rgba(241, 241, 241, 0.85);
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s; }

.overlay a {
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 26px;
  color: #000;
  background-color: #ffffff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px; }

.overlay span {
  position: absolute;
  display: block;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #000000;
  font-style: italic; }

.overlay-links {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  font-size: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-transition: all 0.25s linear 0.05s;
  -o-transition: all 0.25s linear 0.05s;
  transition: all 0.25s linear 0.05s; }

.overlay-links a {
  position: static;
  margin-top: 0;
  margin-left: 0; }

.overlay-links a + a {
  left: 50px;
  color: #ffffff;
  background-color: #000; }

.overlay a:hover {
  color: #ffffff;
  background-color: #333333;
  text-decoration: none; }

.overlay i {
  line-height: 50px; }

.box-style-1 .overlay i {
  font-size: 26px;
  margin: 0; }

a.overlay {
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer; }

a.overlay:hover {
  text-decoration: none; }

.listing-item a.overlay {
  -webkit-transition: linear 0.25s;
  -o-transition: linear 0.25s;
  transition: linear 0.25s;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.listing-item a.overlay:hover {
  text-decoration: none; }

a.overlay i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 40px;
  line-height: 42px;
  color: #000;
  margin-top: -22px;
  margin-left: -18px;
  text-align: center; }

a.overlay.small i {
  font-size: 18px;
  line-height: 1;
  margin-top: -8px;
  margin-left: -8px; }

.overlay .social-links {
  margin: 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center; }

.overlay .social-links li {
  margin: 0 auto; }

.overlay .social-links li a {
  margin: 2px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  position: static; }

.overlay .social-links li a:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  text-decoration: none; }

.overlay .social-links li a i {
  line-height: 38px;
  font-size: 24px;
  margin: 0; }

.overlay-container:hover .overlay,
.overlay-container:hover .overlay-links {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

/*--------responsive vimeo------------*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*--------responsive vinovisit------------*/
.embed-vinovisit {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 1000px; }

.embed-vinovisit iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*--------audio wrapper------------*/
.audio-wrapper iframe {
  width: 100%;
  border: none;
  margin-bottom: 20px; }

/*-------- scroll spy------------*/
.scroll-spy {
  position: relative; }

/*-------- bullets ------------*/
.list-fa-check {
  list-style: none;
  margin-left: 45px;
  padding-left: 20px;
  text-indent: -12px; }

.list-fa-check li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin: 0 5px 0 -15px;
  color: #98012e; }

/*--------google maps------------*/
#map-canvas {
  height: 450px; }

.sidebar #map-canvas {
  height: 350px; }

#map-canvas img {
  max-width: inherit; }

#map_container {
  position: relative; }

#dvMap {
  height: 0;
  overflow: hidden;
  position: relative;
  min-height: 600px; }

@media (min-width: 768px) and (max-width: 991px) {
  #dvMap {
    min-height: 400px; } }

@media (min-width: 992px) and (max-width: 1100px) {
  #dvMap {
    min-height: 600px; } }

@media (max-width: 767px) {
  #dvMap {
    min-height: 300px; } }

.twitter-share-button[style] {
  vertical-align: text-bottom !important;
  margin-top: 5px; }

.social-networking-buttons-wrapper {
  margin: 10px 0 20px 0; }

.twitter-button-wrapper {
  padding-top: 3px;
  padding-right: 5px; }

.facebook-button-wrapper {
  padding-top: 4px;
  padding-right: 5px; }

/*5*/
/* Navigations
----------------------------------------------------------------------------- */
/*--------hamburger menu color------------*/
.navbar-toggle {
  margin-top: -65px; }

a.navbar-toggle {
  color: #000;
  font-size: 25px;
  line-height: 70px; }

/*adds rules to nav bar above 767*/
@media (min-width: 768px) {
  .mainnavbar {
    border-top: 1px solid #d5c496;
    border-bottom: 1px solid #d5c496; } }

/*--------firt level menu------------*/
.navbar {
  min-height: unset;
  border-bottom: none; }

.navbar.navbar-default {
  border-radius: 0;
  margin: 12px 0 5px;
  background-color: #fff;
  border: none; }

.header {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  background-color: #ffffff; }

/*.header-small .navbar.navbar-default {
    margin: 6px 0 5px;
}
    */
.navbar-default .navbar-nav > li > a {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: normal;
  padding: 25px 18px 7px 18px;
  z-index: 102;
  border: 1px solid transparent;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-family: "Montserrat", sans-serif;
  display: inline-block; }
  .navbar-default .navbar-nav > li > a:hover {
    color: #A72B2A; }

/*small screens */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 15px;
    padding: 0 8px 4px 8px; } }

@media (min-width: 992px) and (max-width: 1100px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 13px;
    padding: 17px 5px 5px 5px; } }

@media (min-width: 1101px) and (max-width: 1200px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 13px;
    padding: 17px 5px 5px 5px; } }

@media (min-width: 1201px) and (max-width: 1399px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 17px;
    padding: 15px 12px 7px 12px; } }

/*--------arrows for parent menu items------------*/
.dropdown > a:after {
  font-family: 'FontAwesome';
  content: "\f107";
  right: 10px;
  top: 15px;
  margin-left: 0;
  visibility: visible;
  color: #464743; }

@media (min-width: 768px) {
  .navbar .navbar-nav {
    display: inline-block;
    float: none;
    vertical-align: top; }
  /*centers nav*/
  .navbar .navbar-collapse {
    text-align: center; }
  /* separator*/
  /* .navbar-default .navbar-nav > li:after {
        content: "|";
    }*/
  /* remove separator last chiled*/
  .navbar-default .navbar-nav > li:last-child::after {
    content: ""; } }

/*--------first level menu items on hover/focus------------*/
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  color: #A72B2A;
  background-color: transparent; }

/*--------first level menu items when opened------------*/
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #000;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: -1px -1px 0px rgba(0, 0, 0, 0.03);
  box-shadow: -1px -1px 0px rgba(0, 0, 0, 0.03); }

/*--------second level menu ------------*/
.dropdown-menu {
  min-width: 240px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 0;
  margin: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f1f1;
  z-index: 105;
  border-top: 3px solid #000 !important;
  border-bottom: 3px solid #000 !important; }
  .dropdown-menu .divider {
    margin: 0; }

.dropdown-menu > li > a {
  padding: 12px 20px;
  font-size: 14px;
  color: #A72B2A;
  border-bottom: 1px solid #f1f1f1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  text-transform: uppercase; }

/*--------second level menu items on focus/hover and when opened------------*/
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu .menu > .active > a,
.dropdown-menu .menu > .active > a:hover,
.dropdown-menu .menu > .active > a:focus {
  background-color: #ffffff;
  color: #000;
  border-color: #f1f1f1; }

/*--------second level menu items arrow when there is a sub menu------------*/
.dropdown-menu .dropdown > a:after {
  content: "\f105";
  position: absolute;
  right: 8px;
  top: 15px;
  margin-left: 0;
  visibility: visible;
  color: #000; }

@media (max-width: 767px) {
  .dropdown-menu .dropdown > a:after {
    content: "\f107";
    position: absolute;
    right: 8px;
    top: 8px;
    margin-left: 0;
    visibility: visible;
    color: #000; } }

.sub-menu {
  min-width: 240px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 0;
  margin: 0;
  background-color: #fafafa;
  /*-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f1f1;*/
  z-index: 101; }

.sub-menu > li > a, .sub-menu > li > a:hover {
  padding: 12px 60px;
  display: block;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid #f1f1f1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  text-decoration: none; }

.sub-menu > li {
  display: block; }

/*--------third level menu items on focus/hover and when opened------------*/
.sub-menu .third-menu > li > a:hover,
.sub-menu .third-menu > li > a:focus,
.sub-menu .third-menu > .active > a,
.sub-menu .third-menu > .active > a:hover,
.sub-menu .third-menu > .active > a:focus,
.sub-menu .third-menu .menu > .active > a,
.sub-menu .third-menu .menu > .active > a:hover,
.sub-menu .third-menu .menu > .active > a:focus {
  background-color: #ffffff;
  color: #000;
  border-color: #f1f1f1; }

/*--------third  level menu------------*/
.dropdown-menu .dropdown-menu {
  top: -1px;
  left: 100% !important;
  padding-top: 0;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #f1f1f1; }

/*--------mega menu------------*/
.mega-menu.dropdown {
  position: static; }

.mega-menu .dropdown-menu {
  left: 0;
  top: 96%;
  width: 100%;
  padding: 20px 30px; }

/*--------mega menu items------------*/
.mega-menu .menu {
  list-style: none;
  padding: 0;
  margin: 0; }

.mega-menu h4.title {
  margin: 10px 0 5px;
  font-size: 14px;
  text-transform: uppercase; }

.mega-menu .menu > li > a {
  padding: 5px 0;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid #f1f1f1;
  display: block;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  position: relative; }

.mega-menu .menu > li > a i,
.dropdown-menu > li > a i {
  padding-right: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.mega-menu .menu > li:last-child > a {
  border-bottom: none !important; }

.mega-menu .menu > li > a:hover i,
.dropdown-menu > li > a:hover i {
  padding-left: 5px; }

/*--------mega menu menu items on focus/hover and when opened------------*/
.mega-menu .menu > li > a:hover,
.mega-menu .menu > li > a:focus {
  background-color: #ffffff;
  color: #000;
  border-color: #f1f1f1;
  text-decoration: none; }

/*--------dropdown animations------------*/
.animated.main-navigation .open .dropdown-menu,
#offcanvas.animated .open .dropdown-menu,
.open .dropdown-animation {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDownSmall;
  animation-name: fadeInDownSmall; }

.open .dropdown-animation {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s; }

.animated.main-navigation .dropdown-menu .open .dropdown-menu,
#offcanvas.animated .dropdown-menu .open .dropdown-menu {
  -webkit-animation-name: fadeInLeftSmall;
  animation-name: fadeInLeftSmall; }

.animated.main-navigation .dropdown-menu .open .dropdown-menu.to-left,
#offcanvas.animated.offcanvas-right .dropdown-menu .open .dropdown-menu {
  -webkit-animation-name: fadeInRightSmall;
  animation-name: fadeInRightSmall; }

/*--------side navigation pills------------*/
.nav-pills > li > a {
  border-radius: 0;
  padding: 5px 0px;
  border: 1px solid transparent;
  color: #000;
  font-size: 14px;
  text-transform: uppercase; }

.nav-pills > li > ul > li > a {
  color: #000; }

ul.nav-stacked ul.nav-stacked > li > a {
  padding-left: 15px; }

ul.nav-stacked ul.nav-stacked ul.nav-stacked > li > a {
  padding-left: 30px; }

.nav-pills.nav-stacked > li + li {
  margin-left: 0; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li > ul > li.active > a,
.nav-pills > li > a:focus {
  border: 1px solid transparent;
  color: #000;
  background-color: transparent; }

.nav-pills > li > a:hover,
.nav-pills > li.active > a:hover,
.nav-pills > li > ul > li.active > a:hover,
.nav-pills > li > ul > li.active > a:focus,
.nav-pills > li > ul > li > a:hover,
.nav-pills > li > ul > li > a:focus {
  border: 1px solid transparent;
  color: #000;
  background-color: transparent; }

.nav-pills.nav-stacked > li > a:after {
  font-family: "FontAwesome";
  content: "";
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 5px;
  color: #d1d1d1;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.nav-pills.nav-stacked > li.placeholder > a::after {
  content: "\f106"; }

.nav-pills.nav-stacked > li.placeholder > a.collapse::after {
  content: "\f106"; }

.nav-pills.nav-stacked > li.placeholder > a.collapsed::after {
  content: "\f107"; }

/*.nav-pills > li.active > a:after {
    content: "\f107";
}*/
.nav-pills > li.active > a:hover:after,
.nav-pills > li.active > a:focus:after,
.nav-pills > li > a:hover:after,
.nav-pills > li > a:focus:after {
  color: #000;
  /*right: 10px;*/ }

/*6*/
/* 8 Main Slideshow
----------------------------------------------------------------------------- */
#masterslider h1,
#masterslider h2,
#masterslider h3,
#masterslider h4,
#masterslider h5,
#masterslider h6,
#masterslider p {
  color: #fff;
  padding: 10px;
  display: block;
  opacity: 1; }

#masterslider h1 {
  font-size: 32px;
  line-height: 36px;
  text-transform: unset;
  font-family: "Montserrat", sans-serif;
  font-weight: 700; }

#masterslider h2 {
  font-size: 28px;
  line-height: 31px;
  text-transform: unset;
  font-family: "Montserrat", sans-serif;
  font-weight: 700; }

#masterslider h3 {
  font-size: 25px;
  line-height: 28px;
  text-transform: unset;
  font-family: "adobe-garamond-pro"; }

#masterslider h4 {
  font-size: 22px;
  line-height: 25px;
  text-transform: unset;
  font-family: "adobe-garamond-pro"; }

#masterslider h5 {
  font-size: 19px;
  line-height: 22px;
  text-transform: unset; }

#masterslider h6 {
  font-size: 16px;
  line-height: 19px;
  text-transform: unset; }

#masterslider p {
  font-size: 14px;
  line-height: 17px;
  text-transform: unset; }

/*8*/
/* 9 Search Results
----------------------------------------------------------------------------- */
.searchResults h2 {
  font-size: 28px;
  line-height: 31px;
  text-transform: unset;
  font-family: "adobe-garamond-pro"; }

.searchResults p {
  margin-bottom: 0; }

#SearchBox1 input[type=button] {
  border: 0;
  color: #5d2551;
  font-size: 13px;
  cursor: pointer;
  font-weight: 400;
  padding: 2px 6px 2px 6px;
  position: relative;
  background: #fff;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  outline: 0;
  margin-top: 1px;
  margin-left: 1px; }

#SearchBox1 input[type=text] {
  padding-left: 5px;
  outline: 0;
  width: 155px; }

.paging a {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  min-width: 160px;
  text-align: center;
  border-radius: 0;
  text-transform: uppercase;
  margin: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #000;
  color: #fff; }

.search-categories h4 {
  text-transform: unset;
  font-size: 14px; }

.search-categories label {
  color: #000;
  vertical-align: baseline;
  padding-top: 5px; }

.search-categories input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  bottom: 2px;
  margin-right: 5px; }

/*9*/
/*  Spacing
----------------------------------------------------------------------------- */
/*--------margins------------*/
.space-10 {
  width: 100%;
  height: 10px;
  clear: both; }

.space-20 {
  width: 100%;
  height: 20px;
  clear: both; }

.space-30 {
  width: 100%;
  height: 30px;
  clear: both; }

.space-40 {
  width: 100%;
  height: 40px;
  clear: both; }

.space-50 {
  width: 100%;
  height: 50px;
  clear: both; }

.space-60 {
  width: 100%;
  height: 60px;
  clear: both; }

.space-70 {
  width: 100%;
  height: 70px;
  clear: both; }

.space-80 {
  width: 100%;
  height: 80px;
  clear: both; }

.space-90 {
  width: 100%;
  height: 90px;
  clear: both; }

.space-100 {
  width: 100%;
  height: 100px;
  clear: both; }

.margin-btm-20 {
  margin-bottom: 20px; }

.margin-btm-40 {
  margin-bottom: 40px; }

.margin-top-20 {
  margin-top: 20px; }

.margin-top-40 {
  margin-top: 40px; }

.margin-clear {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/*--------padding------------*/
.padding-40 {
  padding: 40px 0; }

.no-padding {
  padding: 0px; }

.pl-5 {
  padding-left: 5px; }

.pl-10 {
  padding-left: 10px; }

.pl-20 {
  padding-left: 20px; }

.pr-5 {
  padding-right: 5px; }

.pr-10 {
  padding-right: 10px; }

.pr-20 {
  padding-right: 20px; }

.padding-top-clear {
  padding-top: 0 !important; }

.padding-bottom-clear {
  padding-bottom: 0 !important; }

.padding-clear {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

/*--------borders------------*/
.border-clear {
  border: none !important; }

.circle {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%; }

/*--------separators------------*/
.separator {
  display: block;
  width: 60px;
  height: 5px;
  margin: 15px auto 15px;
  background-color: #cccccc;
  position: relative;
  border: 1px solid #cccccc; }

.separator:after {
  width: 30px;
  height: 5px;
  background: #333333;
  position: absolute;
  top: -1px;
  left: -1px;
  content: ""; }

.separator-2 {
  display: block;
  width: 30px;
  height: 5px;
  margin: 15px 0 15px;
  background-color: #cccccc;
  position: relative; }

.separator-2.right {
  margin-left: auto; }

.sidebar .separator {
  width: 30px;
  height: 5px;
  margin: 15px 0 20px;
  background-color: #666666;
  border-color: #666666; }

.sidebar .separator:after {
  content: "";
  background-color: transparent; }

.dark-bg .separator-2 {
  background-color: #999999; }

.default-bg .separator-2 {
  background-color: #ebebeb; }

/*--------visibility------------*/
.object-non-visible {
  opacity: 0;
  filter: alpha(opacity=0); }

.object-visible,
.touch .object-non-visible {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important; }

#user-tools {
  font-family: "Montserrat",sans-serif;
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  float: right;
  z-index: 200;
  position: relative;
  width: 450px; }
  @media screen and (max-width: 767px) {
    #user-tools {
      width: auto;
      float: none; } }

/* Modal Cart*/
.v65-widgetModalCart-dropdown {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
  display: none;
  line-height: normal;
  position: absolute;
  right: 0;
  text-align: left;
  top: 3em;
  width: 282px;
  padding: 10px;
  z-index: 300; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-dropdown {
      width: 96%;
      top: 4em;
      margin-right: 8px; }
      .v65-widgetModalCart-dropdown :hover {
        background: #fff !important; } }

.v65-widgetModalCart-viewCartButton,
.v65-widgetModalCart-closeButton {
  text-align: right;
  margin-bottom: 20px; }

.v65-widgetModalCart-viewCartButton {
  display: inline; }

.v65-widgetModalCart-viewCartButton a,
.v65-widgetModalCart-closeButton a {
  display: inline-block;
  line-height: 0em;
  height: 24px;
  padding: 12px 15px 12px 15px;
  font-size: 0.8em;
  text-decoration: none;
  background: #bcbcbc;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  vertical-align: middle;
  font-size: 0.8em;
  height: 2em;
  color: #fff; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-viewCartButton a,
    .v65-widgetModalCart-closeButton a {
      width: 100%;
      text-align: center;
      padding-top: 20px;
      padding-bottom: 20px; } }

.v65-widgetModalCart-viewCartButton a:hover,
.v65-widgetModalCart-closeButton a:hover {
  background: #000 !important;
  text-decoration: none;
  color: #fff !important; }

.v65-widgetModalCart-checkOutButton {
  display: inline-block; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-checkOutButton {
      display: inline; } }

.v65-widgetModalCart-checkOutButton a {
  display: inline-block;
  line-height: 0em;
  height: 24px;
  padding: 12px 15px 12px 15px;
  font-size: 0.8em;
  text-decoration: none;
  background: #000;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  vertical-align: middle;
  font-size: 0.8em;
  height: 2em;
  color: #fff; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-checkOutButton a {
      width: 100%;
      text-align: center;
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 15px; } }

.v65-widgetModalCart-checkOutButton a:hover {
  background: #000 !important;
  text-decoration: none;
  color: #fff !important; }

.v65-widgetModalCart-itemSummary {
  margin-bottom: 1em;
  width: 267px;
  font-size: .917em; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummary {
      width: 100%;
      top: 4em; } }

.v65-widgetModalCart-itemSummaryHeader {
  border-bottom: 1px solid #ccc !important;
  border-top: 1px solid #ccc !important;
  padding: 8px 0 8px 0;
  font-size: 0.917em; }

.v65-widgetModalCart-items {
  font-size: .8em;
  padding: 5px 0 5px 0; }

.v65-widgetModalCart-itemSummaryQuantity {
  float: left;
  width: 25px;
  text-align: center; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummaryQuantity {
      width: 12%; } }

.v65-widgetModalCart-itemSummaryItem {
  float: left;
  width: 40px;
  text-align: center; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummaryItem {
      width: 12%; } }

.v65-widgetModalCart-itemSummaryDescription {
  float: left;
  width: 105px; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummaryDescription {
      width: 39%; } }

.v65-widgetModalCart-itemSummaryDescription a strong,
.v65-widgetModalCart-itemSummaryDescription a {
  font-weight: normal;
  color: #000; }

.v65-widgetModalCart-itemSummaryDescription a strong:hover {
  color: #fff; }

.v65-widgetModalCart-itemSummaryPrice {
  float: left;
  width: 30px;
  text-align: right; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummaryPrice {
      width: 17%; } }

.v65-widgetModalCart-itemSummaryTotal {
  float: left;
  width: 50px;
  text-align: right; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummaryTotal {
      width: 18%; } }

.v65-widgetModalCart-itemSummarySubTotal {
  width: 267px;
  line-height: 14px;
  font-size: .8em;
  padding: 8px 0 8px 0;
  border-bottom: 1px solid #ccc !important;
  border-top: 1px solid #ccc !important; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummarySubTotal {
      width: 100%;
      top: 4em; } }

.v65-widgetModalCart-itemSummarySubTotalLabel {
  float: left;
  width: 205px;
  text-align: right; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummarySubTotalLabel {
      width: 80%; } }

.v65-widgetModalCart-itemSummarySubTotalValue {
  float: left;
  width: 50px;
  text-align: right; }
  @media screen and (max-width: 580px) {
    .v65-widgetModalCart-itemSummarySubTotalValue {
      width: 18%; } }

.v65-widgetModalCart-itemMessageBottom {
  margin-bottom: 40px; }

.v65-widgetModalCart-BottomButtons {
  text-align: right;
  margin-bottom: 1em; }

.v65-widgetModalCart-itemMessageBottom a {
  color: #fff; }

.v65-widgetModalCart-itemMessageBottom a:hover {
  color: #000 !important; }

.v65-widgetModalCart-itemMessageBottom a::before {
  font-family: 'FontAwesome';
  content: "\f06a\00a0 "; }

/* clearing */
.group:before, .group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }

/* header buttons */
#v65-modalCart {
  float: left;
  width: auto;
  position: static;
  min-width: 190px; }
  @media screen and (max-width: 767px) {
    #v65-modalCart {
      float: unset;
      width: unset; } }

#v65-modalLogin {
  float: left;
  width: auto; }
  @media screen and (max-width: 767px) {
    #v65-modalLogin {
      float: unset;
      width: unset; } }

.v65-widgetModalCart-status {
  float: left;
  margin-top: 15px;
  width: auto; }
  .v65-widgetModalCart-status a::before {
    font-family: 'FontAwesome';
    content: "\f07a\00a0\00a0 "; }
  .v65-widgetModalCart-status a {
    margin: 1px 0;
    padding: 14px 10px 12px 10px;
    text-decoration: none;
    color: #fff;
    width: auto; }
  .v65-widgetModalCart-status a span {
    font-weight: bold; }
  .v65-widgetModalCart-status a:focus {
    text-decoration: underline; }
  .v65-widgetModalCart-status :hover {
    text-decoration: none;
    color: #fff;
    background: #000; }
    @media screen and (max-width: 450px) {
      .v65-widgetModalCart-status :hover {
        background: unset;
        color: #A9A19B; } }
  @media screen and (max-width: 767px) {
    .v65-widgetModalCart-status {
      width: 40%;
      float: left;
      text-align: center;
      height: 30px;
      margin-bottom: 5px; }
      .v65-widgetModalCart-status a {
        padding: 13px 4px 13px 4px; } }

.v65-widgetLogin-editProfile, .v65-widgetLogin-yourAccount {
  margin-top: 15px;
  border-right: 1px solid #666;
  float: left;
  width: auto; }
  .v65-widgetLogin-editProfile a, .v65-widgetLogin-yourAccount a {
    width: auto;
    margin: 1px 0px 1px 0px;
    padding: 14px 10px 12px 10px;
    color: #fff; }
  .v65-widgetLogin-editProfile :hover, .v65-widgetLogin-yourAccount :hover {
    background: #000;
    color: #fff;
    text-decoration: none; }
    @media screen and (max-width: 450px) {
      .v65-widgetLogin-editProfile :hover, .v65-widgetLogin-yourAccount :hover {
        background: unset;
        color: #A9A19B; } }
  .v65-widgetLogin-editProfile a::before, .v65-widgetLogin-yourAccount a::before {
    font-family: 'FontAwesome';
    content: "\f007\00a0\00a0 "; }
  @media screen and (max-width: 767px) {
    .v65-widgetLogin-editProfile, .v65-widgetLogin-yourAccount {
      width: 35%;
      float: left;
      text-align: center;
      height: 30px;
      margin-bottom: 5px; }
      .v65-widgetLogin-editProfile a, .v65-widgetLogin-yourAccount a {
        padding: 15px 4px 15px 4px; } }

.v65-widgetLogin-logout, .v65-widgetLogin-login {
  float: left;
  margin-top: 15px;
  text-align: center;
  border-right: 1px solid #666;
  width: auto; }
  .v65-widgetLogin-logout a, .v65-widgetLogin-login a {
    width: auto;
    margin: 1px 0px 1px 0px;
    padding: 14px 10px 12px 10px;
    color: #fff; }
  .v65-widgetLogin-logout :hover, .v65-widgetLogin-login :hover {
    background: #000;
    color: #fff;
    text-decoration: none; }
    @media screen and (max-width: 450px) {
      .v65-widgetLogin-logout :hover, .v65-widgetLogin-login :hover {
        background: unset;
        color: #A9A19B; } }
  @media screen and (max-width: 767px) {
    .v65-widgetLogin-logout, .v65-widgetLogin-login {
      width: 25%;
      text-align: center;
      height: 30px;
      margin-bottom: 5px; }
      .v65-widgetLogin-logout a, .v65-widgetLogin-login a {
        padding: 15px 4px 15px 4px; } }

.v65-widgetLogin-login a::before {
  font-family: 'FontAwesome';
  content: "\f090\00a0\00a0 "; }

.v65-widgetLogin-logout a::before {
  font-family: 'FontAwesome';
  content: "\f08b\00a0\00a0 "; }
