/*
    Author: CommerceGurus
    Author URI: http://www.commercegurus.com
    License: GNU General Public License version 3.0
    License URI: http://www.gnu.org/licenses/gpl-3.0.html

----------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
 1.0 - Resets
 2.0 - Header
 3.0 - Logo
 4.0 - Top Bar
 5.0 - Search
 6.0 - Header Widgets
 7.0 - Mobile Menu
 8.0 - Page Heading
 9.0 - Breadcrumbs and Sharing
10.0 - Sidebar and Widgets
11.0 - Blog
12.0 - Comments
13.0 - Forms
14.0 - Styleguide
15.0 - WooCommerce
16.0 - Owl Carousel
17.0 - LayerSlider
18.0 - Footer

*/

/*-------------------------------------------------------------------------*/
/*  1.0  Resets
/*-------------------------------------------------------------------------*/

*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased; /* Safari */
}

body {
  line-height: 1.5em;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

strong, b {
    font-weight: bolder;
}

a {
  transition: all 0.2s ease 0s;
  outline: 0;
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
  text-decoration: none;
}

a:hover {
  transition: all 0.2s ease 0s;
}

a, a:hover {
  text-decoration: none;
}

a:hover, a:active {
  outline: 0;
}

a img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

body abbr[title] {
  text-decoration: none;
}

cite {
  font-style: normal;
}

span.quote {
  font-family: "Times New Roman", Georgia, serif;
  margin: 0px 4px;
}

label {
  font-weight: inherit;
}

span.required {
  color: #e11f31;
}

/* -- Accessibility */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  margin: 0;
}

/* -- Containers */

#cg-page-wrap {
  background-color: #fff;
}

.page-container {
  position: relative;
  top: -33px;
  margin-bottom: -33px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* -- Vertical Alignment */

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.vertical-align {
  display: flex;
  flex-direction: row;
}

.vertical-align > [class^="col-"],
.vertical-align > [class*=" col-"] {
  display: flex;
  align-items: center;
}

.vc_row.vc_row-flex .container,
.vc_row.vc_row-flex .container > .vc_column_container {
  display: flex;
}

/* -- Reset container when within template with sidebar */

body.page-template-default .content-area .container,
body.page-template-page-right-sidebar-php .content-area .container,
body.single-post .content-area .container,
body.blog .content-area .container,
body.archive .content-area .container {
  width: auto;
  padding: 0px;
  margin: 0px -15px;
}

body.page-template-page-full-width .content-area .entry-content .container {
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}

.cg-section .wpb_row .vc_column_container.vc_col-sm-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.cg-section > .vc_row, .container > .vc_row {
  margin-left: 0;
  margin-right: 0;
}

.wpb_row {
  overflow: hidden;
  clear: both;
}

.overflow-visible {
  overflow: visible;
}

/* -- Boxed */

.boxed #wrapper, 
.boxed .footer, 
.boxed .footercontainer,
.boxed .second-footer {
  max-width: 1170px;
  margin: 0px auto;
}

.boxed #cg-page-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: -1px;
}

body.boxed #main-wrapper {
  overflow: hidden;
  max-width: 1170px;
  margin: 0px auto;
  background-color: #fff;
}


/* -- Page Loader */

.no-js #loader { 
  display: none;  
}

.js #loader { 
  display: block; 
  position: absolute; 
  left: 100px; 
  top: 0; 
}

.cg-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0px auto;
  top: 50%;
  margin-top: -20px;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #feca00;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/*-------------------------------------------------------------------------*/
/*  2.0  Header
/*-------------------------------------------------------------------------*/

/* -- Hide Mobile Menu */
#mobile-menu {
  display: none !important; 
}

p.setup-message {
  margin: 0px;
  padding: 0px 0px;
  font-size: 15px;
  color: #fff;
}

.cg-header-fixed .text-logo {
  padding: 0;
}

.text-logo a {
  font-size: 36px;
  color: #111;
  line-height: 1em !important;
  text-transform: uppercase;
  position: relative;
  top: 5px;
}

.cg-header-fixed-wrapper .text-logo a {
  line-height: 72px;
}

.cg-primary-menu {
  position: relative;
  z-index: 3;
}

.cg-header-fixed-wrapper .cg-wp-menu-wrapper {
  max-width: 1100px;
}

.cg-header-fixed-wrapper .cg-primary-menu {
  padding: 0px 15px 0px 20px;
}

.cg-header-fixed .cg-primary-menu .container {
  padding: 0px;
}

.row.margin-auto {
  margin: 0px;
  position: relative;
}

.container.width-auto {
  max-width: inherit;
  width: inherit;
  position: relative;
}

.cg-header-fixed-wrapper.cg-is-fixed .container.width-auto {
  margin: 0px 0px;
}

.cg-header-fixed-wrapper.cg-is-fixed .text-logo h1 {
  font-size: 24px;
}

.cg-header-fixed-wrapper.cg-is-fixed {
  position: fixed;    
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  transition: 0.8s all ease-in-out;
}

.cg-primary-menu-below-wrapper .container {
  position: relative;
}

.cg-primary-menu-below-wrapper.cg-primary-menu-center .container {
  text-align: center;
  width: auto;
}

.cg-menu-below .leftnav {
  margin: 0px;
  width: 20%;
}

.cg-menu-below .leftnav.text-logo {
  min-height: 60px;
  padding-bottom: 20px;
}

.leftnav {
  float: left;
  margin-right: 20px;
}

.cg-header-fixed .leftnav.text-logo {
  line-height: 72px;
}

.leftnav.logo {
  padding-top: 0px;
}

.leftnav a:hover {
  text-decoration: none;
  color: inherit;
}

.cg-transparent-header .midnav {
  width: 78%; 
  float: left;
}

.cg-transparent-header .midnav ul {
  padding: 0px;
  width: 100%;
}

.cg-transparent-header .midnav .cg-primary-menu li {
  -webkit-transition: padding-top 250ms ease-in-out;
  transition: padding-top 250ms ease-in-out;
  display: inline-block;
  margin-left: 2%;
  padding: 0px;
}

.cg-transparent-header .midnav li .cg-menu-ul li {
  padding: 0px;
  line-height: 1em;
  border: none;
  display: block;
}

.cg-transparent-header .midnav li .cg-menu-ul {
  line-height: inherit;
}

.cg-transparent-header .midnav li a:hover {
  text-decoration: none;
}

.rightnav {
  width: 80%;
  float: right;
  text-align: right;
  z-index: 2;
}

.cg-header-fixed-wrapper .rightnav {
  width: auto;
}

.cg-menu-center .cg-logo-inner-cart-wrap .container {
  width: auto;
}

.cg-primary-menu-left {
  clear: both;
}

.cg-header-fixed-wrapper {
  position: fixed;
  top: -3000px;
}

.cg-header-fixed-wrapper.cg-is-fixed {
  top: 0px;
}

.cg-primary-menu .menu {
  clear: both;
}

.cg-header-fixed .menu {
  clear: none;
  text-align: right;
}

.cg-header-fixed .menu ul {
  text-align: left;
}

.cg-header-fixed .menu, .cg-primary-menu .menu {
  box-sizing: border-box;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.cg-primary-menu-below-wrapper .menu > li {
  display: inline-block;
  margin-right: -5px;
}

.cg-primary-menu-below-wrapper .menu > li.right {
  float: right;
  margin-right: 0px;
}

.cg-primary-menu-below-wrapper .menu > li.secondary > a {
  background-color: #474747;
}

.cg-primary-menu-below-wrapper .menu > li.download a,
.cg-primary-menu-below-wrapper .menu > li.arrow a {
  padding-left: 38px;
}

.cg-primary-menu-below-wrapper .menu > li.download a span:before,
.cg-primary-menu-below-wrapper .menu > li.arrow a span:before {
  font-family: 'Ionicons';
  position: absolute;
  left: 20px;
  font-weight: 300;
}

.cg-primary-menu-below-wrapper .menu > li.download a span:before {
  content: "\f41f";
}

.cg-primary-menu-below-wrapper .menu > li.arrow a span:before {
  content: "\f498";
}

.cg-header-fixed .menu > li.right.arrow {
  float: right;
}

.cg-primary-menu .menu > li:first-child {
  margin-left: 0px;
}

.cg-primary-menu .menu > li:hover {
  border-color: #111;
}

.cg-primary-menu .menu > li > a span:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  right: 0px;
  top: calc(50% - 14px);
  background: #fff;
  opacity: 0.07;
}

.cg-primary-menu .menu > li.no-divider:after {
  display: none;
}

.cg-primary-menu .menu > li > a:before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  height: 3px;
  width: 100%;
  background: #FFC815 none repeat scroll 0% 0%;
  transform-origin: 0px 0px 0px;
  transform: scaleX(0) translateZ(0px);
  transition: all 0.5s cubic-bezier(0.125, 0.75, 0.415, 1) 0s;
  z-index: 1;
}

.cg-primary-menu .menu > li > a:hover:before,
.cg-primary-menu .menu > li:hover > a:before {
  transform: scaleX(1) translateZ(0px);
}

.cg-header-fixed .menu > li {
  display: inline-block;
  margin: 0px 0px 0px 26px;
}

.cg-header-fixed .menu > li.menu-item-has-children {
  margin-right: 10px;
}

.cg-primary-menu .menu > li > a {
  display: block;
  position: relative;
  color: #fff;
  padding: 20px 20px;
}

.cg-primary-menu .menu > li.menu-item-has-children > a {
  padding-right: 34px;
}

.cg-header-fixed .menu > li.menu-item-has-children > a:after,
.cg-primary-menu .menu > li.menu-item-has-children > a:after {
  content: "\f3d0";
  font-family: 'Ionicons';
  position: absolute;
  font-size: 10px;
  margin-left: 7px;
  font-weight: 300;
}                 

.cg-submenu-ddown {
  background-color: #fff;
}

.menu-full-width .cg-submenu-ddown {
  margin-left: 0px;
}

.cg-header-fixed .menu > li .cg-submenu-ddown, 
.cg-primary-menu .menu > li .cg-submenu-ddown {
  display: none;
  position: absolute;
  z-index: 1000;
  width: 210px;
  box-sizing: border-box;
  box-shadow: 0px 4px 12px -3px #808080;
  margin-top: 40px;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
  
.cg-header-fixed .menu > li:hover .cg-submenu-ddown, 
.cg-primary-menu .menu > li:hover .cg-submenu-ddown {
  margin-top: 0px;
  opacity: 1;

}

.cg-header-fixed .menu > li .cg-submenu-ddown {
  margin-top: -3px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown li, 
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown li {
  margin-left: 0px;
  margin-right: 0px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li a:hover,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li a:hover,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li:hover a {
  background: transparent;
  border-color: transparent;
}

.cg-primary-menu.cg-primary-menu-center .menu > li .cg-submenu-ddown,
.cg-primary-menu.cg-primary-menu-left .menu > li .cg-submenu-ddown {
  top: 100%;
}

.cg-header-fixed .menu > li .cg-submenu-ddown:before,
.cg-primary-menu .menu > li .cg-submenu-ddown:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -15px;
  z-index: -1;
}

.cg-header-fixed .menu > li .cg-submenu-ddown ul,
.cg-primary-menu .menu > li .cg-submenu-ddown ul {
  padding: 0px;
  list-style: none;
}

.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item-title ul {
  padding-right: 0px;
  margin-top: 23px;
}

.cg-primary-menu.cg-primary-menu-center .menu > li .cg-submenu-ddown ul {
  text-align: left;
}

.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item a,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item a,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item ul li.image-item a,
.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item ul li.image-item a {
  font-size: 0;
}

.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item ul li.image-item a img,
.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item ul li.image-item a img {
  margin-top: 12px;
}

.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item a:hover img,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item a:hover img,
.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item-title a:hover img,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item-title a:hover img {
  opacity: 0.9;
}

.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item li a,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item li a {
  font-size: inherit;
}

.cg-header-fixed .menu > li .cg-submenu-ddown ul li.image-item:before,
.cg-primary-menu .menu > li .cg-submenu-ddown ul li.image-item:before {
  display: none;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container,
.cg-primary-menu .menu > li .cg-submenu-ddown .container {
  max-width: 100%;
  padding: 0px;
}

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li a,
.cg-submenu-ddown .container > ul > li > a,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li a {
  padding: 6px 0px;
  font-size: 13px;
  line-height: 1.4em;
  display: block;
  padding: 14px 20px 12px 20px;
  border-bottom: 1px solid #f4f4f4;
  transition: 0.1s all ease-in-out;
  color: #333;
  margin-top: -1px;
  position: relative; 
}

.menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  margin-top: 1px;
}

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li:last-child a {
  border: none;
}

.cg-primary-menu .menu > li.current-menu-item:hover > a,
.cg-primary-menu .menu > li.current-menu-ancestor:hover > a {
  opacity: 1; 
}

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li:hover > a,
.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul > li:hover > a,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li > a:hover,
.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul > li > a:hover,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children > a:hover:after {
  opacity: 1;
  background-color: #1592c6;
  transition: 0.1s all ease-in-out;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children {
  position: relative;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children > a,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children > a {
  position: relative;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  position: absolute;
  left: 210px;
  background-color: #111;
  top: 0px;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu li,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu li {
  background: #fff;
  width: 210px;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children:hover > .cg-submenu,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children:hover > .cg-submenu {
  display: block;
}

.cg-header-fixed .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown {
  width: 100%;
  left: 0;
  background: #fff;
  padding: 15px 25px 0px 25px;
}

/* -- 5 Columns */
.cg-primary-menu .menu > li.menu-full-width.col-5 .cg-submenu-ddown .container > ul > li:nth-of-type(5n+1) {
  margin-left: 0px;
  clear: both;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li {
  width: 18.297%;
}

/* -- 4 Columns */
.cg-header-fixed .menu > li.menu-full-width.col-4 .cg-submenu-ddown,
.cg-primary-menu .menu > li.menu-full-width.col-4 .cg-submenu-ddown {
  width: 80%;
  left: auto;
}

.cg-header-fixed .menu > li.menu-full-width.col-4 .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu > li.menu-full-width.col-4 .cg-submenu-ddown .container > ul > li {
    width: 23.3%;
}

.cg-primary-menu .menu > li.menu-full-width.col-4 .cg-submenu-ddown .container > ul > li:nth-of-type(4n+1) {
  margin-left: 0px;
  clear: both;
}

/* -- 3 Columns */
.cg-header-fixed .menu > li.menu-full-width.col-3 .cg-submenu-ddown,
.cg-primary-menu .menu > li.menu-full-width.col-3 .cg-submenu-ddown {
  width: 60%;
  left: auto;
}

.cg-header-fixed .menu > li.menu-full-width.col-3 .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu > li.menu-full-width.col-3 .cg-submenu-ddown .container > ul > li {
  width: 31.9%;
}

.cg-primary-menu .menu > li.menu-full-width.col-3 .cg-submenu-ddown .container > ul > li:nth-of-type(3n+1) {
  margin-left: 0px;
  clear: both;
}

/* -- 2 Columns */
.cg-header-fixed .menu > li.menu-full-width.col-2 .cg-submenu-ddown,
.cg-primary-menu .menu > li.menu-full-width.col-2 .cg-submenu-ddown {
  width: 50%;
  left: auto;
}

.cg-header-fixed .menu > li.menu-full-width.col-2 .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu > li.menu-full-width.col-2 .cg-submenu-ddown .container > ul > li {
    width: 48.9%;
}

.cg-primary-menu .menu > li.menu-full-width.col-2 .cg-submenu-ddown .container > ul > li:nth-of-type(2n+1) {
  margin-left: 0px;
  clear: both;
}

.menu-full-width .cg-menu-ul {
  padding: 20px 25px 25px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li:hover > a:after,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li:hover > a:after {
  width: 100%; 
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item a {
  padding: 0px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item a:after,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item a:after {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:after,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:after {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:hover,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:hover {
  text-decoration: none;
  color: #111;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:before,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li > a:before {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li a {
  padding: 2px 0px;
  border: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item-title a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item-title a {
  padding: 0px 0px;
  text-align: center;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li.image-item-title a:after {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu {
  display: block;
  position: relative;
  left: auto;
  border: none;
  background: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.title,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.title {
  margin-top: 12px;
  margin-bottom: 4px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.title a:after,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.title a:after {
  display: none;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li {
  background: none;
  width: auto;
  padding: 1px 0px;
  margin: 0px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.image-item,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li.image-item {
  margin-top: -5px;
  border: none;
  padding: 0px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul {
  margin: 3px 0 3px 0px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul li:before,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul li:before {
  line-height: 17px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul li a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul > li .cg-submenu ul li ul li a {
  padding: 1px 0px;
  font-size: 14px;
}

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children > a:after {
  content: "\f3d3";
  font-family: 'Ionicons';
  font-size: 11px;
  position: absolute;
  top: 14px;
  right: 18px;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children li > a,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children li > a {
  opacity: 0.8;
}

.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children li > a:hover,
.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children li > a:hover {
  background-color: transparent;
}

.cg-header-fixed .menu .menu-full-width .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-left: 2.127659574468085%;
}

.cg-header-fixed .menu .menu-full-width .cg-submenu-ddown .container > ul > li,
.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li {
  float: left;
}

.cg-header-fixed .menu .menu-full-width .cg-submenu-ddown .container > ul > li img,
.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li img {
  margin-bottom: 10px;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

.cg-header-fixed .menu .menu-full-width .cg-submenu-ddown .container > ul > li:first-child,
.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li:first-child {
  margin-left: 0;
}

.cg-header-fixed .menu > li:nth-last-child(1) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li:nth-last-child(1) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-header-fixed .menu > li:nth-last-child(2) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li:nth-last-child(2) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  right: auto;
  left: 210px;
}

.cg-header-fixed .menu > li.menu-full-width:nth-last-child(1) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li.menu-full-width:nth-last-child(1) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-header-fixed .menu > li.menu-full-width:nth-last-child(2) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu,
.cg-primary-menu .menu > li.menu-full-width:nth-last-child(2) .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  left: auto;
  right: auto;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container ul .menu-item-has-children .cg-submenu ul li:last-child a,
.cg-header-fixed .menu > li.menu-full-width .cg-submenu-ddown .container ul .menu-item-has-children .cg-submenu ul li:last-child a {
  border-bottom: none;
}

.cg-header-fixed .menu .menu-full-width .cg-submenu-ddown .container > ul > li:first-child, .cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li {
  padding-bottom: 15px;
}

.cg-header-fixed {
  height: 72px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
}

.cg-wp-menu-wrapper .menu li a:hover {
  text-decoration: none;
}

.cg-header-fixed .cg-wp-menu-wrapper .menu li:hover a li a
.cg-wp-menu-wrapper .menu li li a:hover,
.cg-wp-menu-wrapper .menu li:hover > a li a {
  opacity: 1;
}

.cg-primary-menu .menu > li > a strong {
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  position: relative;
  top: -2px;
  margin-right: 0.6em;
  padding: 1px 3px;
  border-radius: 2px;
  background-color: #111;
  text-align: center;
  color: #FFF;
}

.cg-primary-menu-below-wrapper ul.menu {
  background: #292929;
  position: relative;
  z-index: 2;
}

.cg-menu-below {
  position: relative;
}

.cg-header-fixed .cg-primary-menu .menu > li:after { 
  display: none; 
}

/* -- WPML Language Switcher within the menu -- */

li.menu-item-language ul {
  display: none;
}

li.menu-item-language:hover ul {
  display: block;
  position: absolute;
  width: 210px;
  padding: 0;
  box-shadow: 0px 4px 12px -3px #808080;
}

li.menu-item-language ul li {
  list-style: none;
}

li.menu-item-language ul li a {
  background-color: #fff;
  padding: 10px 20px;
  display: block;
}


/*-------------------------------------------------------------------------*/
/*  3.0  Logo
/*-------------------------------------------------------------------------*/

.cg-menu-default .logo, .cg-menu-below .logo {
  white-space: nowrap;
  float: left;
}

.cg-menu-default .logo img, 
.cg-menu-below .logo img {
  vertical-align: middle;
}

.cg-header-fixed-wrapper.cg-is-fixed .logo {
  white-space: nowrap;
  float: left;
  margin-left: -5px;
}

.cg-header-fixed-wrapper.cg-is-fixed .logo img {
  vertical-align: middle;
  max-height: 72px;
  padding: 20px 0px;
}

@media (min-width: 1100px) { 
  .cg-header-fixed-wrapper.cg-is-fixed .logo {
    margin-right: 20px;
  }
}

.helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cg-header-fixed-wrapper.cg-is-fixed .logo a {
  display: inline-block;
}

.cg-header-fixed .cg-primary-menu .menu > li > a {
  line-height: 72px; 
  padding: 0px;
}

.cg-header-fixed-wrapper.cg-is-fixed .logo h1 a {
    font-weight: 400;
    font-size: 22px;
}

/*-------------------------------------------------------------------------*/
/*  4.0  Top Bar
/*-------------------------------------------------------------------------*/

.cg-announcements {
  padding: 8px 0px 8px 0px;
  font-size: 14px;
  background-color: #444;
  color: #fff;
}

.cg-announcements a:hover {
  opacity: 0.7;
}

.top-bar-right {
  text-align: right;
}

.cg-announcements i {
  margin-right: 4px;
}

.cg-announcements ul {
  margin: 0px;
  padding: 0px;
}

.cg-announcements ul li {
  display: inline;
  list-style: none;
  margin-right: 25px;
}

.cg-announcements .top-bar-right ul li {
  margin-right: 0px;
  margin-left: 25px;
}

.cg-announcements ul li a:before {
  position: relative;
  top: -1px;
}

/* Basic WPML Styling */

.lang_sel_click {
    float: right;
}

.lang_sel_click ul {
    padding: 0px;
    margin: 0px;
    float: left;
}

.lang_sel_click ul li {
    display: inline;
    margin-left: 15px;
}

/* -- WPML -- */

body #lang_sel_list {
    margin-top: 5px;
    height: auto;
    font-family: inherit;
}

body #lang_sel_list ul li a {
    background: transparent;
    font-size: 15px;
    margin-left: 10px;
}

body #lang_sel_list li {
    display: inline-block;
    float: none;
}

body #lang_sel_list img.iclflag {
    top: -1px;
    left: -3px;
}


/*-------------------------------------------------------------------------*/
/*  5.0  Search
/*-------------------------------------------------------------------------*/

.search-form,
form.woocommerce-product-search {
  position: relative;
}

.search-form label {
  width: 100%;
}

section.no-results p {
  margin-bottom: 20px;
}

input.search-field {
  background: #FFF none repeat scroll 0% 0%;
  padding: 16px 14px 16px 12px;
  border: 1px solid #EEE;
  width: 100%;
  line-height: normal;
  height: 50px;
}

input.search-field:focus {
  border-color: #ccc;
}

.rightnav input.search-field {
  margin-left: 25px;
  width: 275px;
}

.site-search label {
  margin-bottom: 0px;
}

.search-form:before,
.woocommerce-product-search:before {
  display: block;
  content: "\f2f5";
  position: absolute;
  top: 16px;
  right: 18px;
  font-weight: 400;
  font-family: "Ionicons";
  z-index: 0;
  color: #111;
  margin-top: -4px;
  color: #999;
  font-size: 17px;
}

.rightnav .search-form:before {
  top: 5px;
  right: 13px;
}

.search-form input.search-submit,
.woocommerce-product-search input[type="submit"] {
  position: absolute;
  border: none;
  z-index: 2;
  background: transparent;
  top: 0px;
  right: 0px;
  padding: 14px 24px;
  text-indent: -9999px;
  height: 50px;
}

.rightnav .site-search input.search-submit {
  top: calc(50% - 25px);
}


/* -- Mobile Search */

.activate-mobile-search {
  position: absolute;
  top: 0px;
  right: 45px;
  padding: 0px 10px;
  cursor: pointer;
  z-index: 2;
}

.mobile-search-reveal .activate-mobile-search {
  padding: 10px;
}

.activate-mobile-search i {
  font-size: 18px;
  position: relative;
}

.activate-mobile-search i.ion-close-round {
  font-size: 14px;
  right: -25px;
}

.mobile-search-reveal {
  padding-top: 10px;
  border-radius: 2px;
  display: none; /* Initially */
  position: relative;
  z-index: 10;
}

.mobile-search-reveal .widget_product_search input.search-field {
  border: none;
  font-size: 16px;
  padding: 6px 12px;
  line-height: inherit;
  height: auto;
}

.mobile-search-reveal input.search-submit {
  display: none;
}

.mobile-search-reveal h4 {
  display: none;
}

.mobile-search-reveal .search-form:before {
  display: none;
}


/*-------------------------------------------------------------------------*/
/*  6.0  Header Widgets
/*-------------------------------------------------------------------------*/

.rightnav .extra {
  float: right;
}

.cg-header-details {
  text-align: left;
  margin-left: 22px;
  text-align: left;
  border-left: 1px solid #eee;
  padding-left: 22px;
  vertical-align: middle;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.cg-menu-below .cg-extras .cg-header-details {
  line-height: 1.5em;
  font-size: 14px;
  float: right;
}

.cg-menu-below .cg-extras .cg-header-details ul {
  padding: 0px;
}

.cg-menu-below .cg-extras .cg-header-details ul li {
  list-style: none;
}

.cg-extras .cg-header-details h4,
.mobile-header-details .cg-header-details.tick h4 {
  margin: 0px 0px 0px;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: bolder;
  font-family: inherit;
  text-transform: none;
}

.cg-extras .cg-header-details.tick h4 span:before,
.mobile-header-details .cg-header-details.tick h4 span:before {
  content: "\f375";
  font-family: 'Ionicons';
  margin-right: 6px;
}

.cg-menu-below .cg-extras .cg-header-details h4 i {
  color: #24A3D8;
}

.cg-menu-below .cg-extras .cg-header-details i,
.mobile-header-details .cg-header-details i {
  position: absolute;
  line-height: inherit;
  color: #24A3D8;
  font-size: 35px;
  left: -42px;
  top: 3px;
}

.cg-menu-below .cg-extras .cg-header-details a {
  color: inherit;
}

.mobile-header-details {
  display: none;
}

/* -- Icon specific position tweaks */

.cg-menu-below .cg-extras .cg-header-details i.ion-ios-location-outline {
  left: -35px;
}

.cg-menu-below .cg-extras .cg-header-details i.ion-ios-telephone-outline {
  left: -37px;
  top: 5px;
}


/*-------------------------------------------------------------------------*/
/*  7.0  Mobile Menu        
/*-------------------------------------------------------------------------*/

a.meanmenu-reveal {
  display: none;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  position: absolute;
  padding: 0px 10px 0px 0px;
  top: 0px;
  right: 15px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  z-index: 99;
  margin-top: 18px;
}

.mean-container a.meanmenu-reveal:focus {
  outline: none;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #111;
  height: 2px;
  margin-top: 4px;
  transition: all 500ms ease-in-out;
  width: 16px;
}

.mean-container a.meanmenu-reveal.meanclose span:nth-of-type(n+1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: 10px;
}

.mean-container a.meanmenu-reveal.meanclose span:nth-of-type(n+2) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-top: -2px;
}

.mean-container a.meanmenu-reveal.meanclose span:nth-of-type(n+3){
  opacity: 0;
}

.mean-container a.meanmenu-reveal span:before {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
}
.mean-container a.meanmenu-reveal.meanclose span:nth-of-type(n+2) {
  margin-top: -6px;
}

.mean-container .mean-nav {
  width: 100%; 
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 1);
}

.mean-container .mean-nav ul {
  padding: 0px;
  margin: 0;
  list-style-type: none;
  width: 100%;
  overflow: hidden;
  clear: both;
}

.mean-container .mean-nav ul li {
  position: relative;
  border-top: 1px solid #eee;
  clear: both;
  overflow: hidden;
}

.mean-container .mean-nav ul.sub-menu li {
  border: none;
}

.mean-container .mean-nav ul.sub-menu {
  margin-top: 0px;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 0.8em 18px 0.65em 0px;
  font-size: 15px;
  margin: 0;
  text-align: left;
  color: #333;
  font-weight: 400;
  text-decoration: none;    
}

.mean-container .mean-nav ul li li a {
  width: 85%;
  font-size: 14px;
  padding: 0.3em 7.5% 0.3em 15px;
  border-top: none;
  opacity: 0.7;
  text-shadow: none;
  visibility: visible;
  font-weight: 400;
}

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 0.0em 7.5% 0.8em 35px;
  font-weight: 400;
}

.mean-container .mean-nav ul li li li li a {
  width: 70%;
  padding: 0.8em 15% 0.65em 45px;
  font-weight: 400;
}

.mean-container .mean-nav ul li li li li li a {
  width: 65%;
  padding: 0.8em 22.5% 0.65em 55px;
  font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 18px;
  padding: 10px 0px 12px 12px;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 2;
  border: none;
  font-weight: 300;
}

.mean-container .mean-nav ul ul.sub-menu a.mean-expand {
  top: -6px;
}

.mean-container .mean-nav ul li a strong {
  display: none;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-bar, 
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 1000;
}

.mean-remove {
  display: none;
}


/*-------------------------------------------------------------------------*/
/*  8.0  Page Heading
/*-------------------------------------------------------------------------*/

.header-wrapper {
  padding: 155px 0px 125px 0px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Reduced for WooCommerce */
body.woocommerce-page .header-wrapper {
  padding: 100px 0px 70px 0px;
}

.cg-hero-bg {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 110%;
  background-color: #777;
  background-size: cover;
  background-position: center center;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  z-index: -1;
}

.header-wrapper .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.header-wrapper h1.cg-page-title {
  margin: 0px;
  text-align: center;
  color: #fff;
  padding: 0% 10%;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

/* If Heading Aligned Left is set */

.cg-heading-align-left .header-wrapper h1.cg-page-title {
  padding: 0%;
  text-align: left;
}

.header-wrapper .cta-button {
  width: 100%;
  text-align: right;
}


/*-------------------------------------------------------------------------*/
/*  9.0  Breadcrumbs and Sharing
/*-------------------------------------------------------------------------*/

.breadcrumbs-wrapper {
  padding: 0px;
  background: #f3f3f3;
  padding: 32px 0px 12px 0px;
  font-size: 14px;
  border-bottom-right-radius: 17px;
  margin-top: -17px;
  z-index: 1;
  position: relative;
}

.breadcrumbs-wrapper p {
  margin-bottom: 0px;
  font-size: 14px;
}

.breadcrumbs-wrapper p.sub-title {
  color: #999;
  margin-bottom: 0px;
  line-height: 1.6em;
}

.breadcrumbs-wrapper a {
  text-decoration: none;
  outline: none;
  margin-right: 10px;
  position: relative;
  color: #111;
}

.breadcrumbs-wrapper a:after {
  content: "\f125";
  font-family: 'Ionicons';
  font-style: normal;
  margin-left: 12px;
  font-size: 9px;
  color: #ccc;
  position: relative;
}

.content-area p.cg-share {
  text-align: right;
  margin-bottom: 0px;
  line-height: 1.6em;
  padding: 15px 0px;
}

.cg-share span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 0px 0px;
  float: right;
  top: -1px;
}

.cg-share span:before {
  content: "\f3ac";
  font-family: 'Ionicons';
  font-style: normal;
  margin-right: 12px;
  font-size: 12px;
  position: relative;
  top: -1px;
  -moz-osx-font-smoothing: grayscale;
}

/* Share Dropdown */

.breadcrumbs-wrapper a.dropdown-toggle:after {
  display: none;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.content-area .cg-share ul {
  padding: 0px;
  margin-right: -1px;
  margin-top: 10px;
}

.content-area .cg-share ul li {
  list-style: none;
}

.content-area .cg-share a {
  margin: 0px;
}

.content-area .cg-share a:after {
  display: none;
}

.cg-share .dropdown-menu {
  border-radius: 0px;
  margin: 5px -1px 0px 0px;
  padding: 0px;
}

.cg-share .dropdown-menu > li > a {
  font-weight: inherit;
  font-size: 14px;
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
  margin: 0px;
}

.cg-share .dropdown-menu > li > a:hover {
  border-color: #eee;
}

.cg-share .dropdown-menu > li:last-child > a {
  border: none;
}

.cg-share .dropdown-menu > li > a:hover {
  background-color: transparent;
}

.cg-share .dropdown-menu > li > a:before {
  font-family: 'Ionicons';
  width: 20px;
  display: inline-block;
}

.cg-share .dropdown-menu > li > a.facebook:hover:before,
.cg-share .dropdown-menu > li > a.twitter:hover:before,
.cg-share .dropdown-menu > li > a.linkedin:hover:before,
.cg-share .dropdown-menu > li > a.googleplus:hover:before,
.cg-share .dropdown-menu > li > a.pinterest:hover:before {
  color: #fff;
}

/* Facebook */
.cg-share .dropdown-menu > li > a.facebook:before {
  content: "\f231";
  color: #3b589c;
  text-indent: 3px;
}

.cg-share .dropdown-menu > li > a.facebook:hover {
  background-color: #3b589c;
  border-color: #3b589c;
  color: #fff;
}

/* Twitter */
.cg-share .dropdown-menu > li > a.twitter:before {
  content: "\f243";
  color: #22abf4;
  text-indent: -1px;
}

.cg-share .dropdown-menu > li > a.twitter:hover {
  background-color: #22abf4;
  border-color: #22abf4;
  color: #fff;
}


/* LinkedIn */
.cg-share .dropdown-menu > li > a.linkedin:before {
  content: "\f239";
  color: #1276ba;
}

.cg-share .dropdown-menu > li > a.linkedin:hover {
  background-color: #1276ba;
  border-color: #1276ba;
  color: #fff;
}

/* Google+ */
.cg-share .dropdown-menu > li > a.googleplus:before {
  content: "\f235";
  color: #d94d33;
}

.cg-share .dropdown-menu > li > a.googleplus:hover {
  background-color: #d94d33;
  border-color: #d94d33;
  color: #fff;
}

/* Pinterest */
.cg-share .dropdown-menu > li > a.pinterest:before {
  content: "\f2b1";
  color: #c52322;
}

.cg-share .dropdown-menu > li > a.pinterest:hover {
  background-color: #c52322;
  border-color: #c52322;
  color: #fff;
}


/* Email */
.cg-share .dropdown-menu > li > a.email-link:before {
  content: "\f422";
  color: #222;
  font-size: 15px;
  position: relative;
  top: 1px;
  text-indent: 1px;
}

.cg-share .dropdown-menu > li > a.email-link:hover {
  background-color: #f6f6f6;
  border-color: #e9e9e9;
  color: #222;
}

.cg-share .dropdown-menu > li > a.email-link:hover:before {
  color: #222;
}

/*-------------------------------------------------------------------------*/
/*  10.0  Sidebar and Widgets
/*-------------------------------------------------------------------------*/


#secondary h4.widget-title {
  margin-bottom: 18px;
  border-top: 2px solid #222;
  margin-top: 0px;
}

#secondary h4.widget-title span {
  display: inline-block;
  padding-top: 20px;
}

#secondary ul li,
.first-footer ul li {
  line-height: 1.4em;
  margin-bottom: 7px;
}

.first-footer ul.border {
  border-right: 1px dotted rgba(255, 255, 255, 0.15);
}

#secondary ul li a {
  color: #111;
  opacity: 0.85;
  transition: all 0.3s ease-in-out 0s;
  padding-bottom: 1px;
}

#secondary ul li a:hover {
  opacity: 1;
  text-decoration: none;
}

#secondary aside {
  margin-bottom: 40px;
}

#secondary aside.widget.button {
  margin-bottom: 15px;
}

/* Subscribe Widget */

.widget.boxed {
  padding: 23px 23px 18px 23px;
  background-color: #f5f5f5;
}

#secondary .widget.boxed h4.widget-title {
  border: none;
  margin-bottom: 10px;
}

#secondary .widget.boxed h4.widget-title span {
  padding-top: 0px;
}

#secondary .widget.boxed p {
  line-height: 1.6em;
}

body #subscribe-email input {
  width: 100%;
  padding: 8px 10px;
}

.jetpack_subscription_widget input[type="submit"] {
  width: 100%;
  border-radius: 0px;
  margin-top: -5px;
  background-color: #333;
  color: #fff;
}

.jetpack_subscription_widget input[type="submit"]:hover {
  background-color: #111;
}

#secondary ul,
#secondary p {
  font-size: 15px;
}

.textwidget p {
  line-height: 1.55em;
}

.textwidget a.pdf {
  display: inline-block;
  padding-left: 26px;
  background: url(../images/icons/pdf.png) no-repeat 0px 3px;
  margin-top: 5px;
}

.widget.boxed.document {
  background: url(../images/icons/document-bg.png) no-repeat bottom right;
}

.widget img.testimonial-pic {
  max-width: 42px;
  float: right;
  margin: 5px 0px 10px 15px;
}

.widget blockquote {
  margin: 0px 0px 0.8em;
  padding: 0px 1em 0px 1.7em;
  position: relative;
  border: none;
  font-size: 15px;
  line-height: 1.55em;
}

.widget blockquote:before {
  position: absolute;
  top: 0.55em;
  left: 0px;
  font-size: 34px;
  color: #CECECE;
  padding-left: 0px;
  content: "“";
  line-height: 0.1em;
  font-family: Georgia;
}

.widget blockquote:after {
  font-size: 34px;
  color: #CECECE;
  right: 0px;
  bottom: 1px;
  content: "”";
  position: absolute;
  line-height: 0.1em;
  font-family: Georgia;
}

.widget cite {
  font-size: 15px;
  line-height: 1.5em;
  display: inline-block;
  opacity: 0.5;
  margin-bottom: 10px;
}

.textwidget img {
  margin: 5px 0px;
}

.sidebar {
  display: flex;
}

.sidebar #secondary {
  padding-right: 28px;
  padding-bottom: 25px;
  border-right: 1px solid #e2e2e2;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sidebar #secondary iframe {
  width: 100% !important; /* Needed so Twitter widget doesn't break */
}

.sidebar.right #secondary {
  padding-right: 0px;
  padding-left: 28px;
  border-left: 1px solid #e2e2e2;
  border-right: none;
}

.sidebar ul {
  padding: 0px;
  margin-bottom: 0px;
}

.sidebar ul li, .first-footer ul li, 
.second-footer ul li {
  list-style: none;
  position: relative;
}

.second-footer ul {
  margin-bottom: -5px;
}

.sidebar ul.sub-menu, 
.sidebar ul.children, 
.first-footer ul.children, 
.first-footer ul.sub-menu {
  margin: 5px 0px 15px 12px;
}

.sidebar ul.sub-menu li, 
.sidebar ul.children li, 
.first-footer ul.children li, 
.first-footer ul.sub-menu li {
  font-size: 13px;
  padding-left: 0px;
}

.sidebar #secondary ul.sub-menu li a, 
.sidebar #secondary ul.children li a, 
.first-footer ul.children li a, 
.first-footer ul.sub-menu li a {
  opacity: 0.55;
}

.sidebar #secondary ul.sub-menu li a:hover,
.sidebar #secondary ul.children li a:hover,
.first-footer ul.children li a:hover,
.first-footer ul.sub-menu li a:hover {
  opacity: 1;
}

.sidebar ul.sub-menu li:before,
.sidebar ul.children li:before,
.first-footer ul.children li:before,
.first-footer ul.sub-menu li:before {
  display: none;
}

.widget_pages ul li,
.widget_meta ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_nav_menu ul li,
.first-footer ul.list li {
  padding-left: 15px;
}

#secondary .widget_categories ul li,
.widget_categories ul li,
.first-footer ul.list li {
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.first-footer ul.list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.first-footer ul.list li:last-child {
  border: none;
}

.widget_categories ul li:last-child {
  border: none;
  margin-bottom: 0px;
}

.widget_pages ul li:before,
.widget_meta ul li:before,
.widget_archive ul li:before,
.widget_categories ul li:before,
.widget_nav_menu ul li:before,
.first-footer ul.list li:before {
  margin-right: 8px;
  position: absolute;
  top: 9px;
  left: 0px;
  content: "";
  width: 5px;
  height: 5px;
  background: #999;
  text-indent: -999px;
}

.first-footer ul.list li:before {
  top: 7px;
}

.content-area .widget_pages ul li:before {
  display: none;
}

.widget_recent_comments ul li,
.widget_recent_entries ul li,
#secondary .widget_recent_entries ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-left: 0px;
}

#secondary .widget_recent_entries ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#secondary ul li:last-child {
  border: none;
  padding-bottom: 0px;
}

#secondary .widget_recent_entries ul li a,
#secondary .widget_recent_entries ul li a:hover {
  border: none;
  opacity: 1;
}

.first-footer .widget_recent_comments ul li,
.first-footer .widget_recent_entries ul li {
  border-color: rgba(255, 255, 255, 0.1);
}


.first-footer .widget_recent_entries ul li:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

body .first-footer .widget_recent_entries ul li span.post-date {
  display: block;
  font-size: 0.85em;
  opacity: 0.6;
  margin-top: 1px;
}


.first-footer h4.widget-title {
  margin-bottom: 20px;
}


/* -- Newsletter Widget */

#secondary .widget_mc4wp_widget {
  padding: 22px 22px 0px;
  border: 3px double #eee;
}

.mc4wp-form {
  position: relative;
}

body .mc4wp-form label{
  display: none;
}

.container .mc4wp-form input[type="submit"] {
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 50px;
  font-size: 16px;
  border-radius: 0px;
}

.mc4wp-form input[type="email"] {
  width: 100%;
  height: 50px;
}

/* Instagram Widget */

#secondary ul.instagram-pics li {
  float: left;
  margin: 0% 1% 1% 0%;
  margin: 0px 1% 2%;
  max-width: 30%;
}

#secondary ul.instagram-pics li img {
  width: 100%;
}

.null-instagram-feed p.clear {
  clear: both;
  padding-top: 10px;
}

.null-instagram-feed p.clear a {
 font-size: 0.9em;
}

/* -- Tags Widget */

.widget_tag_cloud a,
.widget_product_tag_cloud a {
  display: inline-block;
  border: 1px solid #F2F2F2;
  color: inherit;
  margin: 2px 0px;
  font-size: 13px !important;
  opacity: 0.8;
  padding: 3px 9px;
}

.widget_tag_cloud a:hover,
.widget_product_tag_cloud a:hover {
  background-color: #f6f6f6;
  opacity: 1;
}

.first-footer .widget_tag_cloud a,
.first-footer .widget_product_tag_cloud a {
  background-color: #333;
}

.first-footer .widget_tag_cloud a:hover,
.first-footer .widget_product_tag_cloud a:hover {
  background-color: #222;
}

/* -- Calendar Widget */

#calendar_wrap table {
  width: 100%;
  font-size: 15px;
  margin-top: 10px;
  background: #fff;
  color: #222;
}

#calendar_wrap table caption {
  color: #fff;
  text-align: center;
}

#calendar_wrap table th,
#calendar_wrap table td {
  text-align: center;
}

#calendar_wrap table thead th {
  background-color: #f6f6f6;
  font-weight: 600;
  padding: 5px 0px;
}

#calendar_wrap table thead,
#calendar_wrap table tbody,
#calendar_wrap table tfoot {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

#calendar_wrap table tfoot {
  border-bottom: 1px solid #eee;
}

#calendar_wrap table tfoot td#prev {
  text-align: left;
  padding: 4px 12px;
}

#calendar_wrap table tfoot td#next {
  text-align: right;
  padding: 6px 10px;
}

#calendar_wrap table tfoot a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
}

.first-footer #calendar_wrap a {
  color: inherit;
}

#calendar_wrap table a:hover {
  text-decoration: none;
}

/* -- Recent Posts Widget */

body .widget span.post-date {
  display: block;
  font-size: 13px;
  opacity: 0.5;
  margin-top: 1px;
}


/* -- RSS Widget */

.widget_rss h4 img {
  position: relative;
  top: -1px;
  margin-right: 6px;
}

.widget_rss h4 a {
  color: inherit;
}

#secondary .widget_rss ul li,
.widget_rss ul li {
  margin-bottom: 25px;
}

.widget_rss ul li:before {
  display: none;
}

#secondary .widget_rss ul li a,
.widget_rss ul li a {
  opacity: 1;
  color: inherit;
  font-weight: 600;
}

.first-footer .widget_rss ul li a,
.second-footer .widget_rss ul li a {
  color: inherit;
  opacity: 1;
  font-weight: 600;
}

.widget_rss .rss-date {
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.5;
  display: block;
  margin-top: 2px;
}

.widget_rss .rssSummary,
.widget_rss cite {
  line-height: 1.5em;
  margin: 5px 0px 5px 0px;
  font-size: 13px;
}

/* -- Counts */

.widget_archive span.count,
.widget_categories span.count {
  font-size: 0.7em;
  margin-left: 5px;
  position: relative;
  top: -1px;
  opacity: 0.4;
}


/* -- Widget Buttons */

.widget.button {
  padding: 0px;
}

.widget.button a {
  background: #fdc900;
  border: 2px solid #fdc900;
  color: #111;
  display: block;
  padding: 12px 15px;
}

.widget.invert a {
  background: transparent;
  border: 2px solid #fdc900;
}

.widget.button a:hover {
  opacity: 0.8;
}

.widget.button.icon a {
  padding-left: 38px;
}

.widget.button.icon i {
  position: absolute;
  left: 15px;
  margin-left: 15px;
  font-size: 20px;
}

.sidebar.right .widget.button.icon i {
  left: 43px;
}


/* -- Selects */

.widget select,
.widget_categories select {
  max-width: 100%;
  width: 100%;
}

select,
.widget select,
.wpcf7-form select,
.widget_categories select,
.first-footer select,
.woocommerce .woocommerce-ordering select,
section.shipping-calculator-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #fff url("../images/icons/dropdown.png") right 0.5em center no-repeat;
  background-size: 12px 8px;
  border-radius: 0px;
  border: 1px solid #e2e2e2;
  padding: 0.33em 2em 0.33em 8px;
  max-width: 100%;
  text-indent: 0.01px;
  text-overflow: '';    
  margin-bottom: 5px;
  font-weight: inherit;
  width: 100%;
  font-size: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS */
  .widget select,
  .wpcf7-form select,
  .widget_categories select,
  .first-footer select,
  .woocommerce .woocommerce-ordering select,
  section.shipping-calculator-form select {
    padding-right: 0px;
    background-image: none;
  }
}

.wpcf7-form select {
  font-weight: inherit;
  font-size: inherit;
  padding-top: 0.55em;
  padding-bottom: 0.55em;
  margin-top: 6px;
  border-radius: 2px;
}

/* -- Advanced Sidebar Menu Widget */

.advanced-sidebar-menu,
#secondary ul.product-categories {
  border-bottom: 1px solid #eee;
  font-size: 15px;
  margin-top: 10px;
}

.advanced-sidebar-menu {
  margin-top: 7px;
}

#secondary .advanced-sidebar-menu ul li,
#secondary ul.product-categories li {
  margin-bottom: 0px;
}

#secondary .advanced-sidebar-menu ul li a,
#secondary ul.product-categories li a {
  display: block;
  padding: 13px 35px 12px 0px;
  border-top: 1px solid #eee;
  color: #888;
  position: relative;
  line-height: 1.35em;
  opacity: 1;
  font-size: 14px;
  font-weight: inherit;
}

/* -- If Right Sidebar is active, flip the arrow */

.right #secondary .advanced-sidebar-menu ul li a {
  padding: 12px 15px 12px 35px;
}


.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_item.has_children > a:before, 
.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_ancestor > a:before {
  margin-top: -7px;
}

.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a:before, 
.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a:before {
  margin-top: 1px;
  left: 35px;
}

.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a, 
.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a {
  padding-left: 50px;
}

/* -- End Right Sidebar */

#secondary .advanced-sidebar-menu ul.children,
#secondary ul.product-categories li ul.children {
  border-top: none;
  margin-bottom: 7px;
}

#secondary ul.product-categories li ul.children {
  margin: 0px;
}

#secondary .advanced-sidebar-menu ul li:before {
  display: none;
}

.advanced-sidebar-menu ul li a:hover:after,
.sidebar #secondary .widget_product_categories li a:hover:after {
  color: #999;
}

#secondary .advanced-sidebar-menu ul li.current_page_item > a,
#secondary .advanced-sidebar-menu ul li.current_page_item > a:hover,
#secondary .advanced-sidebar-menu ul li.current_page_ancestor > a,
#secondary .advanced-sidebar-menu ul li.current_page_ancestor > a:hover,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent > a,
.sidebar #secondary .widget_product_categories li.current-cat-parent > a,
.sidebar #secondary .widget_product_categories li.current-cat > a {
  color: #111;
}

.sidebar .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a:before,
.sidebar .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a:before,
.sidebar #secondary .widget_product_categories ul.children li a:before {
  position: absolute;
  top: 1px;
  left: 0px;
  font-family: 'Ionicons';
  content: "\f30f";
  font-size: 11px;
}

.advanced-sidebar-menu ul li.current_page_item.has_children ul.children,
.advanced-sidebar-menu ul li.current_page_ancestor ul.children,
.sidebar #secondary .widget_product_categories ul.children {
  margin: 0px;
  border: none;
}

.sidebar #secondary .widget_product_categories ul.children {
  display: none;
}

.sidebar #secondary .widget_product_categories li.current-cat.cat-parent ul.children,
.sidebar #secondary .widget_product_categories li.current-cat-parent ul.children {
  display: block;
}

.sidebar #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a,
.sidebar #secondary .widget_product_categories ul.children li a {
  font-size: 13px;
  border-top: none;
  border-bottom: none;
  opacity: 1;
  padding: 0px 35px 10px 16px;
  color: #888;
}

.sidebar #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li.current_page_item a, 
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li.current_page_item a {
  color: #111;
}

.sidebar #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a:after,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a:after,
.sidebar #secondary .widget_product_categories ul.children li a:after {
  display: none;
}

.sidebar .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li:nth-child(1) a:before,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li:nth-child(1) a:before,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent ul.children li:nth-child(1) a:before,
.sidebar #secondary .widget_product_categories li.current-cat-parent ul.children li:nth-child(1) a:before {
  top: 6px;
}

.sidebar .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li:nth-child(1) a,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li:nth-child(1) a,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent ul.children li:nth-child(1) a,
.sidebar #secondary .widget_product_categories li.current-cat-parent ul.children li:nth-child(1) a {
  padding-top: 6px !important;
}

.sidebar #secondary .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a:hover,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor ul.children li a:hover,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent ul.children li a:hover,
.sidebar #secondary .widget_product_categories li.current-cat-parent ul.children li a:hover {
  color: #222;
}

.sidebar #secondary .advanced-sidebar-menu ul li.current_page_item.has_children > a,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor > a,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent > a,
.sidebar #secondary .widget_product_categories li.current-cat-parent > a {
  padding-bottom: 8px;
}

.sidebar .advanced-sidebar-menu ul li.current_page_item.has_children ul.children li a:after {
  display: none;
}

.advanced-sidebar-menu .sidebar ul.children li:last-of-type > a {
  padding-bottom: 12px;
}

.advanced-sidebar-menu ul li.current_page_item > a:hover {
  opacity: 0.9;
}

#secondary .advanced-sidebar-menu ul li a:hover,
.sidebar #secondary .widget_product_categories li a:hover {
  text-decoration: none;
  color: #111;
}


/*-------------------------------------------------------------------------*/
/*  11.0  Blog
/*-------------------------------------------------------------------------*/


body.search-results .cg-blog-layout article {
  margin-bottom: 30px;
} 

.cg-blog-article .image img {
  margin-bottom: 30px;
}

.cg-blog-article .image img {
  width: 100%;
}

.single-post .cg-blog-article .image {
  margin: 15px 0px 30px 0px;
}

.entry-content iframe {
  max-width: 100%;
}

/* -- Sticky Post */

article.sticky {
  padding: 27px;
  border: 1px solid #e2e2e2;
  margin-bottom: 50px;
}

/* -- Title */

.content-area h2.entry-title {
  margin-top: 0px;
}

.content-area h2.entry-title a {
  color: #111;
  letter-spacing: -0.01em;
  display: block;
}

h2.entry-title a:hover {
  text-decoration: none;
}

/* -- Meta */

.blog-meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #999;
}

body.single .blog-meta {
  border-top: none;
  margin-bottom: 25px;
}

.blog-meta span {
  position: relative;
}

.cg-blog-article footer,
body.single footer.entry-meta {
  border-bottom: 1px solid #e2e2e2;
  margin-top: 35px;
  padding-bottom: 50px;
  font-size: 13px;
  color: #999;
  clear: both;
}

.search-results .cg-blog-article footer {
  margin-top: 0px;
  padding-bottom: 35px;
}

.default-blog:last-child footer {
  border-bottom: none;
}

body.single footer.entry-meta {
  margin-top: 30px;
  padding-bottom: 30px;
}


body.single footer.entry-meta a {
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

/* -- Categories & Tags */

.cg-blog-article footer a {
  color: #999;
}

.cg-blog-article footer span.categories,
.cg-blog-article footer span.cat-links,
body.single footer span.categories,
body.single footer span.cat-links {
  margin-right: 11px;
}

.cg-blog-article footer span.tags a:first-child,
.cg-blog-article footer span.tags-links a:first-child,
body.single footer span.tags a:first-child,
body.single footer span.tags-links a:first-child {
  border-left: 1px solid #e2e2e2;
  padding-left: 15px;
}

.blog-meta span.cg-blog-date, 
.blog-meta span.cg-blog-author {
  padding-right: 25px;
}

.blog-meta span.cg-blog-date:after, 
.blog-meta span.cg-blog-author:after {
  position: absolute;
  opacity: 0.4;
  content: "";
  width: 4px;
  height: 4px;
  background: #999;
  top: 6px;
  margin-left: 11px;
}

.blog-meta span.cg-blog-author:after {
  margin-left: 8px;
}


/* -- Post Navigation */

.post-navigation {
  overflow: hidden;
  padding: 30px 0px;
  line-height: 1.25em;
}

.nav-previous {
  width: 45%;
  float: left;
  position: relative;
  padding-left: 22px;
}

.nav-previous span.meta-nav {
  position: absolute;
  left: 0px;
}

.nav-next {
  width: 45%;
  float: right;
  text-align: right;
  position: relative;
  padding-right: 22px;
}

.nav-next span.meta-nav {
  position: absolute;
  top: 0px;
  right: 0px;
}

.post-navigation a {
  transition: all 0.1s ease-in 0s;
}

/* -- Page Navigation */

.content-area .blog-pagination {
  overflow: hidden;
  margin-bottom: 55px;
}

.content-area .blog-pagination ul {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.content-area .blog-pagination ul li {
  list-style: none;
  float: left;
  margin-right: 5px;
}

.content-area .blog-pagination ul li a {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 14px;
  color: inherit;
}

.blog-pagination ul li.active a {
  border-color: #333;
  background-color: #f7f7f7;
}

.content-area .blog-pagination ul li a:hover {
  border-color: #111;
}

/* -- Infinite Scroll */

body.infinite-scroll .blog-pagination {
  display: none;
}

body .infinite-loader .spinner {
  margin: 0px auto;
  display: block;

}

body .infinite-loader {
  margin: 35px 0px 70px 0px;
}

body #infinite-handle {
  margin-top: 15px;
  margin-bottom: 70px;
  clear: both;
}

body #infinite-handle span {
  padding: 12px 26px 10px 26px;
  font-size: inherit;
  display: block;
  text-align: center;
  transition: all 0.15s ease 0s;
  color: #111;
  border: 2px solid #111;
  background-color: transparent;
}

body #infinite-handle span:hover {
  background-color: #111;
  color: #fff;
}

body #infinite-handle span button:after {
  content: "\f3b1";
  font-family: 'Ionicons';
  margin-left: 10px;
}


/* -- Related Posts (Jetpack) */

body #jp-relatedposts {
  margin-bottom: -10px;
}

body #jp-relatedposts h3.jp-relatedposts-headline {
  font-size: inherit;
}

body #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
body #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img {
  margin-bottom: 8px;
}

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
  margin-top: -5px;
}

/* -- Dropcap style */

.single-post .dropcap {
  float: left;
  padding: 0px;
  position: relative;
  height: 75px;
  font-weight: 700;
  font-size: 92px;
  line-height: 0.9;
  margin: 0px 12px 0px -5px;
}

/* -- Youtube embed */

.embed-youtube {
  padding: 10px 10px 3px 10px;
  background-color: #f5f5f5;
  display: block;
}

.embed-youtube iframe {
  width: 100%;
}


/* Grid Layout */

.grid-news {
  margin: 0px -15px;
  overflow: hidden;
}

.col-lg-9 .grid-news {
  margin: 0px -7.5px;
}

.grid-news .col-lg-4:nth-of-type(3n+1) {
  clear: both;
}

.grid-news .col-lg-6:nth-of-type(2n+1) {
  clear: both;
}

.grid-news article.type-post {
  padding-bottom: 40px;
}

.content-area .grid-news .image {
  margin-bottom: 20px;
}

.content-area .grid-news h2 {
  font-size: 24px;
  line-height: 1.45em;
  margin-bottom: 10px;
}

.content-area .grid-news .blog-meta {
  padding: 0px 0px 11px 0px;
  border: none;
  margin: 0px;
}

.content-area .grid-news .blog-pagination {
  clear: both;
  margin-left: 15px;
  margin-right: 15px;
}


/*-------------------------------------------------------------------------*/
/*  12.0  Comments
/*-------------------------------------------------------------------------*/

.comments-area {
  background: #f7f7f7;
  padding: 40px;
  margin: 20px 0% 45px 0%;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.comments-area pre {
  background: #fff;
}

.content-area .comments-area p.logged-in-as {
  margin-bottom: 1.5em;
}

.content-area .comments-area table, 
.content-area .comments-area table td, 
.content-area .comments-area table th {
   border-color: #c7d4dc;
}

.content-area .comments-area table th {
  background-color: #edf4f8;
}

.comments-area h2.comments-title {
  margin-bottom: 35px;
  margin-top: 15px;
  text-align: center;
}

.comment-list > li {
  list-style-type: none;
  margin-bottom: 6%;
  padding-bottom: 6%;
  border-bottom: 1px solid #e2e2e2;
}

.comment-author {
  font-size: 20px;
}

.comment-author a {
  color: inherit;
}

.bypostauthor .comment-author .says:after {
  content: "AUTHOR";
  font-size: 14px;
  background: #333;
  padding: 2px 5px;
  margin-left: 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  position: relative;
  top: -2px;
  font-weight: 400;
}

.comment-metadata {
  margin-top: 2px;
  margin-bottom: 8px;
}

.comment-metadata span.edit-link {
  margin-left: 5px;
}

.comment-list li.comment {
  padding-left: 85px;
  position: relative;
}

.comment-list .reply a {
  color: #848A96;
}

.content-area .comment-respond {
  margin-top: 20px;
}

.content-area .comment-respond a#cancel-comment-reply-link {
  margin-left: 10px;
}

.content-area .comment-respond h3.comment-reply-title {
  font-size: 22px;
}

.comment-list .avatar {
  position: absolute;
  top: 5px;
  left: 0px;
  vertical-align: top;
  width: 60px;
  image-rendering: -webkit-optimize-contrast;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.content-area .comments-area ol.comment-list ul,
.content-area .comments-area ol.comment-list ol {
  background: none;
  padding: 0px;
}

.comments-area ol.comment-list {
  margin-bottom: 2em;
}

.content-area .comments-area ol.comment-list ul.children li {
  list-style: none;
}

.content-area .comments-area ol.comment-list ul.children li {
  margin: 4% 0%;
}

.content-area .comments-area ol.comment-list ul.children ul {
  margin: 6% 0%;
}

.content-area .comments-area ol.comment-list ul.children ul li {
  margin-bottom: 8%;
}

.content-area .comments-area ol.comment-list {
  list-style: none;
  background: none;
  padding: 0%;
}

.comment-list {
  margin: 0px;
  counter-reset: li;
}

.content-area h3.comment-reply-title {
  margin-top: 0px;
}

.comment-form input, .comment-form textarea {
  width: 80%;
  float: right;
}

body.woocommerce #review_form #respond textarea {
  width: 80%;
  min-height: 100px;
}

.woocommerce #review_form #respond p.comment-form-rating {
  overflow: hidden;
}

.woocommerce #review_form #respond p.comment-form-comment {
  overflow: hidden;
  margin: 0px 0px 18px 0px;
}

.woocommerce #review_form #respond p.comment-subscription-form {
  position: relative;
}

.woocommerce #review_form #respond p.comment-subscription-form label {
  float: none;
}

.woocommerce .comment-form p.comment-subscription-form input {
  margin-right: 5px;
  top: -1px;
  position: relative;
}

.woocommerce #review_form #respond p.form-submit {
  margin-bottom: 30px;
}

input#wp-comment-cookies-consent {
  float: none;
  margin: 2px 8px 0 0;
}

p.comment-form-cookies-consent {
    margin-top: 15px;
}

.content-area .comment-form p.comment-subscription-form {
  position: relative;
  padding-left: 26px;
  margin-bottom: -10px;
  overflow: hidden;
}

.comment-form p.comment-subscription-form input {
  float: none;
  width: auto;
  position: absolute;
  left: 0px;
  top: 9px;
}

.comment-form input.submit {
  float: none;
  width: auto;
  margin-left: 20%;
}

.content-area .comment-form p.comment-notes {
  margin-bottom: 30px;
}

.content-area .comment-form p.comment-form-comment {
  margin-bottom: 12px;
  overflow: hidden;
}

.content-area .comment-form p {
  margin-bottom: 3px;
}

.comment-form-author, .comment-form-email, .comment-form-url {
  display: inline-block;
  width: 100%;
}

.comment-form label {
  margin-bottom: 10px;
  margin-top: 7px;
}

.form-submit {
  display: inline-block;
  margin: 0px;
  width: 100%;
}

.comment-form #submit {
  margin-top: 1em;
  margin-bottom: 2em;
}

body #respond input#submit:hover {
  opacity: 0.9;
}

/*-------------------------------------------------------------------------*/
/*  13.0  Forms
/*-------------------------------------------------------------------------*/

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #555;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid #e2e2e2;
  transition: all 0.15s ease 0s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus {
  border: solid 1px #ccc;
  outline: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

button, input[type="button"], input[type="submit"], .button {
  border: none;
  padding: 10px 20px;
  transition: all 0.15s ease-in 0s;
  border-radius: 2px;
  font-size: 15px;
}

.wpcf7-form input, .wpcf7-form textarea {
  margin-top: 4px;
  width: 100%;
}

.wpcf7-form textarea {
  height: 236px;
}

input[type=checkbox] {
  width: auto !important;
  position: relative;
  top: -1px;
}

span.wpcf7-list-item {
  margin: 0 0.5em 0 0;
}

.wpcf7-form input[type="submit"] {
  font-size: inherit;
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
  position: relative;
  z-index: 2;
}

.wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
}

body span.wpcf7-not-valid-tip {
  font-size: 15px;
  margin-top: 2px;
}

body div.wpcf7-response-output {
  margin: 2em 0em;
  padding: 0.6em 0.9em;
  font-size: 15px;
  background: #F7E700;
  border-radius: 2px;
  line-height: 1.5em;
}

body div.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #398F14;
  color: #fff;
}

.wpcf7-form span.hint {
  font-size: 0.8em;
  margin-left: 10px;
  opacity: 0.5;
  display: inline-block;
  margin-bottom: -4px;
}

.content-area .entry-content p.with-icon {
  min-height: 50px;
  padding-left: 58px;
  position: relative;
}

.content-area .entry-content p.with-icon i {
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 52px;
  content: "\f3fe";
  font-family: 'Ionicons';
}

.content-area .entry-content p iframe {
  width: 100%;
}

/* --------------------------------------------------------------
13.1 Gravity Forms
-------------------------------------------------------------- */

body .gform_wrapper .gsection .gfield_label, 
body .gform_wrapper span.gform_description,
body .gform_wrapper h2.gsection_title, 
body .gform_wrapper h3.gform_title {
  font-weight: inherit;
}

body .gform_wrapper .top_label .gfield_label {
  margin-bottom: 10px;
  font-weight: 400;
}

body .content-area .gform_wrapper label.gfield_label + div.ginput_container {
  margin-top: 0em;
  margin-bottom: 12px;
}

body .gform_wrapper h3.gform_title {
  margin-top: 0px;
}

body .gform_wrapper.gf_browser_gecko select {
  padding-left: 5px;
  font-size: 16px;
}

body .gform_wrapper input[type="email"], 
body .gform_wrapper input[type="number"], 
body .gform_wrapper input[type="password"], 
body .gform_wrapper input[type="tel"], 
body .gform_wrapper input[type="text"], 
body .gform_wrapper input[type="url"],
body .gform_wrapper textarea {
  padding: 6px 8px;
}

body .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"] {
  font-size: 16px;
  margin-top: 0px;
}

body .gform_wrapper.gf_browser_gecko .gfield_checkbox li input, 
body .gform_wrapper.gf_browser_gecko .gfield_checkbox li input[type="checkbox"], 
body .gform_wrapper.gf_browser_gecko .gfield_radio li input[type="radio"] {
  margin-top: 6px;
  margin-left: 0px;
  margin-right: 10px;
}

body .gform_wrapper .gfield_checkbox li, 
body .gform_wrapper .gfield_radio li {
  margin-bottom: 6px;
}

body .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label, 
body .gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label {
  font-weight: 400;
}

/*-------------------------------------------------------------------------*/
/*  14.0  Styleguide
/*-------------------------------------------------------------------------*/

/* -- Spacing */

.content {
  padding-top: 40px;
}

article.type-post {
  padding-bottom: 50px;
}

body.single article.type-post {
  padding-bottom: 20px;
}

.content-area p {
  margin-bottom: 22px;
}

/* -- Headings */

.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5 {
  margin: 1.4em 0px 0.6em;
  position: relative;
}

.content-area h4 {
  margin-bottom: 0.45em;
}

.content-area h4.feature {
  margin-bottom: 3px;
}

.content-area h5 {
  margin-top: 1em;
}

.content-area h2.vc_custom_heading {
  margin-top: 0.2em;
}

.content-area p.vc_custom_heading {
  margin-bottom: 0.1em;
}

h6 {
  margin-top: 5px;
}

.lighter-weight {
  font-weight: 300 !important;
}

/* -- Links */

.entry-content a,
.cg-blog-article footer a:hover {
  transition: all 0.2s ease 0s;
}

body.home .wpb_text_column p a {
  padding-bottom: 1px;
  border-bottom: 1px solid #e2e2e2;
}

body.home .wpb_text_column p a.more-link {
    border: 2px solid;
    padding: 7px 18px;
}

.content-area h3 a {
  display: inline-block;
  border-bottom: 1px solid #EDEDED;
  text-decoration: none;
}

.entry-content a.more-link {
  display: inline-block;
  border: 2px solid;
  padding: 7px 18px;
  font-size: 14px;
  margin-top: 10px;
  color: inherit;
  position: relative;
  z-index: 0;
}

.entry-content a.more-link.large {
  padding: 10px 28px;
  font-size: 18px;
}

.entry-content a.more-link:after {
  content: "\f3d6";
  font-family: 'Ionicons';
  margin-left: 10px;
  font-size: 17px;
  position: relative;
  top: 1px;
}

.entry-content a.more-link:before {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease 0s;
  width: 0%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #111;
}

.entry-content a.more-link:hover:before {
  width: 100%;
}

.content-area h1 a, .content-area h2 a, .content-area h4 a, .content-area h5 a {
  border: none;
  color: #343E47;
}

.content-area .wpb_raw_html h3 a {
  color: #343E47;
  border: none;
}

.content-area .wpb_raw_html h3 i {
  margin: 0px 4px;
}

.content-area h6 a {
  color: #343E47;
}

.content-area a.email {
  word-wrap: break-word; 
}

.content-area a.email:before {
  font-family: 'FontAwesome';
  content: "\f003";
  margin-right: 8px;
  font-size: 0.85em;
  position: relative;
  top: -1px;
}

.entry-content .mejs-container a {
  padding-bottom: auto;
  border: none;
}

/* -- Blockquotes */

.content-area .entry-content blockquote {
  padding: 27px 0px;
  border-top: 4px solid #343E47;
  border-bottom: 1px solid #343E47;
  border-left: none;
  margin: 30px 0px;
  
}

.content-area .entry-content blockquote p {
  font-size: 1.1em;
  line-height: 1.6em;
}

.content-area blockquote.pull-left {
    float: left;
    width: 40%;
    margin: 10px 40px 20px 0px;
    border-left: none;
}

.content-area blockquote.pull-right {
    float: right;
    width: 40%;
    margin: 7px 0 20px 45px;
    border-right: none;
}


/* -- HR Rule */

hr {
  border-top: 1px solid #e2e2e2;
  height: 1px;
  margin: 2.5em 0px 2em 0px;
}

.separator.small {
  width: 80px;
  margin: 0px auto;
}

/* -- Lists */

.content-area ol {
  padding-left: 18px;
}

.content-area ol ol {
  padding-left: 30px;
  margin: 10px 0px;
}

.content-area ul, .content-area ol {
  margin: 0 0 4% 0;
  padding: 10px 0px 15px 18px;
}

.content-area .widget ul {
  padding-left: 20px;
}

.content-area .widget ul li {
  margin-bottom: 8px;
  padding-left: 10px;
}

.content-area .widget ul ul.children {
  margin: 2% 0%;
  font-size: 15px;
}

.content-area .widget ul ul.children li {
  margin-bottom: 2px;
}

.content-area .widget h2 {
  margin-top: 0px;
}

.content-area .entry-content .widget a {
  border-bottom-width: 1px;
}

.content-area .post-content ol { 
  margin-left: 25px; 
}

.content-area ul ul, 
.content-area ul ol, 
.content-area ol ul, 
.content-area ol ol {
  padding: 0 0 0 4%;
  margin: 1% 0 1% 0;
}

.content-area ul { 
  list-style-type: square; 
  padding-top: 0%;
  margin-bottom: 0.8em;
}

dd {
  margin-bottom: 12px;
}


body .vc_tta-color-grey.vc_tta-style-flat:not(.vc_tta-o-no-fill) .vc_tta-panel-body {
  color: inherit;
}

/* -- Images & Captions */

.gallery-caption {
  display: inline-block; 
}

.wpb_single_image .vc_figure {
  max-width: 100%;
}

body .wpb_single_image .vc_figure .vc_single_image-wrapper {
  margin-bottom: 0px;
}

img.alignleft, .wp-caption.alignleft {
  float: left;
  margin: 5px 20px 28px 0px;
}

img.alignright, .wp-caption.alignright {
  float: right;
  margin: 5px 0px 15px 20px;
}

.wp-caption.aligncenter {
  margin: 20px auto 20px auto;
}

img.aligncenter {
  margin: 15px 0px 30px 0px;
}

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

.wp-caption img {
  width: 100%;
  border-top-right-radius: 7px;
}

.content-area .entry-content p.wp-caption-text,
.content-area .wpb_single_image .vc_figure-caption {
  color: #fff;
  padding: 15px;
  background: #222;
  position: relative;
  text-align: center;
  line-height: 1.45em;
  border-bottom-left-radius: 7px;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.wpb_single_image .vc_figure {
  margin-top: 8px;
}

.content-area .entry-content p.wp-caption-text a {
  border: none;
}

.wpb_single_image .vc_figure img {
  margin-top: -3px;
}

.grayscale img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.entry-attachment {
  margin: 20px 0px;
}

/* Zoom effect */

.wpb_single_image.zoom {
  overflow: hidden;
}

.wpb_single_image.zoom img {
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.wpb_single_image.zoom:hover img {
  transform: scale(1.05);
}

.wpb_single_image.zoom a {
  display: block;
}


/* -- Tables */

.content-area table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  border: 1px solid #e2e2e2;
  width: 100%;
  margin: 10px 0px 30px 0px;
  background: #fff;
}

.content-area table a {
  border: none;
}

.content-area table a:hover {
  text-decoration: underline;
}

.content-area table td, 
.content-area table th { 
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  padding: .5em 1em
}

.content-area table th {
  background-color: #f7f7f7;
  color: #000;
  text-align: left;
  vertical-align: bottom
}

.content-area table td {
  background-color: transparent
}


/* -- Pre, Code and KPD */

pre {
  border-radius: 0px;
  border: none;
  background: #f5f5f5;
  padding: 20px;
  position: relative;
}

code, kbd {
  font-size: 75%;
  border-radius: 0px;
}

/* -- Buttons */

body .vc_btn3.vc_btn3-size-sm {
  font-size: 13px;
}

/* -- VC Posts Grid -- */

.cg-section .vc_grid .vc_row {
    margin: 0px;
}

/* -- Tabs */

.vc_tta.vc_general .vc_tta-tab > a {
  font-size: 18px;
}

.vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab > a {
  color: #999;
}

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab > a:hover {
  background: transparent;
  color: #111;
}

body .vc_tta.vc_tta-spacing-1 .vc_tta-tab {
  margin-right: 2px;
}

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab > a,
body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab>a {
  background-color: transparent;
  border: 1px solid #e2e2e2;
  border-bottom: none;
}

body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels,
body .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels,
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab.vc_active > a {
  background: #f7f7f7;
  border-color: #f7f7f7;
}

body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab.vc_active > a,
body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab.vc_active > a:focus {
  background-color: #f7f7f7;
  color: #111;
}

body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab>a:hover {
  background: transparent;
}

body.wpb-js-composer .vc_tta.vc_tta-spacing-1 .vc_tta-tab {
  margin-right: 3px;
}

body.wpb-js-composer .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels {
  border: none;
}

body.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-body {
  padding: 20px;
}

body .vc_tta.vc_general .vc_tta-panel-body {
  padding-top: 24px;
  padding-bottom: 24px;
}

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab.vc_active > a {
  color: inherit;
}

/* -- Pretty Photo Lightbox */

body div.pp_default .pp_content_container .pp_left,
body div.pp_default .pp_content_container .pp_right,
div.pp_default .pp_close {
  background: none;
}

body div.pp_default .pp_top,
body .pp_bottom,
body a.pp_next,
body a.pp_previous {
  display: none;
}

body .pp_content {
  height: auto !important;
}

body .pp_gallery,
body div.pp_default .pp_expand,
div.pp_default .pp_loaderIcon,
body div.ppt {
  display: none !important;
}

body div.pp_default .pp_close {
  background: none;
  float: right;
  position: relative;
  font-size: 0px;
}

div.pp_default .pp_close:after {
  content: "\f12a";
  font-family: 'Ionicons';
  font-size: 14px;
  float: right;
  color: #fff;
  text-indent: 0px;
}

body a.pp_close {
  text-indent: 0px;
}

div.pp_overlay {
  opacity: 0.85 !important;
}

/* -- FAQs */

body .vc_toggle_title {
  border-top: 1px solid #e2e2e2;
  padding-top: 12px;
}

body .vc_toggle {
  margin-bottom: 13px;
}

body .vc_toggle_content {
  margin-top: 0.4em;
  margin-bottom: 15px;
}

body .vc_toggle_size_md .vc_toggle_icon {
  margin-top: 8px;
}

.content-area .entry-content .vc_toggle_content p {
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 1.5em;
}

body .vc_toggle_color_grey .vc_toggle_icon {
  background-color: #ccc;
}

body .vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon:before, 
body .vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon:after {
  background-color: #ccc;
}

body .vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon {
  border-color: #ccc;
}

/* -- Map */

.content-area .wpb_gmaps_widget .wpb_wrapper {
  padding: 0px;
  background: transparent;
}

.content-area .entry-content .wpb_gmaps_widget p {
  font-size: 1em;
}

/* -- Logos */

.cg-logos .row .owl-carousel {
  padding-bottom: 2px;
}

.cg-logos .row .item {
  border: 1px solid #eee;
  padding: 30px 25px;
}

/* -- 404 Page */

.error-404.not-found {
  min-height: 300px;
}

/* -- Request a Call Back Feature */

.shadow {
  box-shadow: 0px 0px 0px 1px rgba(30, 49, 62, 0.11), 0px 0px 25px rgba(0, 49, 62, 0.11);
}

.shadow:after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 5px;
  height: 8.5em;
  background: transparent linear-gradient(to top, #FFF 2em, rgba(255, 255, 255, 0)) repeat scroll 0% 0%;
}


/* -- Download Feature */

.download.wpb_column .vc_column-inner {
  position: relative;
}

.download.wpb_column .vc_column-inner > .wpb_wrapper {
  border: 1px solid #eee;
  padding: 0px 25px 20px 80px;
  transition: all 0.2s ease 0s;
}

.download.wpb_column .vc_column-inner > .wpb_wrapper:hover {
  border-color: #ccc;
  background-color: #f9f9f9;
}

.download.wpb_column i { 
  position: absolute;
  font-size: 48px;
  left: 45px;
  top: 35px;
}

.content-area .download.wpb_column h4 a {
  padding-bottom: 2px;
  background: linear-gradient(#FFF, #FFF) no-repeat scroll 0px 87% / 0.05em 1px, linear-gradient(#FFF, #FFF) no-repeat scroll 100% 87% / 0.05em 1px, transparent linear-gradient(#333332, #333332) repeat-x scroll 0px 87% / 1px 1px;
  text-shadow: 0.03em 0px #FFF, -0.03em 0px #FFF, 0px 0.03em #FFF, 0px -0.03em #FFF, 0.06em 0px #FFF, -0.06em 0px #FFF, 0.09em 0px #FFF, -0.09em 0px #FFF, 0.12em 0px #FFF, -0.12em 0px #FFF, 0.15em 0px #FFF, -0.15em 0px #FFF;
}

.content-area .entry-content .download.wpb_column p {
  margin-bottom: 5px;
}

/*-------------------------------------------------------------------------*/
/*  15.0  WooCommerce
/*-------------------------------------------------------------------------*/

.cg-shop-main {
  padding-top: 50px;
}

.page-template-page-woocommerce-full-width .cta-button {
  display: none;
}

.woocommerce .woocommerce-ordering, 
.woocommerce .woocommerce-result-count {
  margin: 0px 0px 5px 0px;
  font-size: 15px;
  color: #999;
}

.woocommerce .woocommerce-result-count {
  margin-bottom: 15px;
}

body.woocommerce .woocommerce-ordering {
  position: relative;
  top: -8px;
}

.woocommerce .products ul, 
.woocommerce ul.products {
  margin-left: -2px;
  margin-right: -4px;
}

/* -- Widgets */

.widget.woocommerce {
  margin-bottom: 50px;
}

#secondary .widget_product_categories h4.widget-title {
  margin-top: 0px;
  margin-bottom: 20px;
}

.widget.woocommerce .amount {
  color: #24A3D8;
  font-weight: 400;
}

.widget.woocommerce ins {
  text-decoration: none;
}

.widget.woocommerce ul.product_list_widget li a {
  font-weight: 400;
}

.widget.woocommerce ul.product_list_widget li .star-rating {
  font-size: 12px;
  margin: 3px 0px 5px 0px;
  letter-spacing: 0.05em;
}

.woocommerce ul.product_list_widget li img {
  margin-left: 10px;
  width: 62px;
}

#secondary .widget.woocommerce ul.product_list_widget li {
  border-top: 1px solid #eee;
  padding-top: 12px;
  padding-bottom: 7px;
}

.widget.woocommerce ul.product_list_widget li del,
.widget.woocommerce ul.product_list_widget li del span.amount {
  color: #999;
  margin-right: 1px;
}

.woocommerce .widget_layered_nav ul li .count {
  font-size: 0.8em;
  margin-left: 3px;
  color: #999;
}

.woocommerce .widget_shopping_cart .cart_list li.empty {
  padding-left: 0em;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, 
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  top: 11px;
}

.woocommerce .widget_shopping_cart .cart_list li, 
.woocommerce.widget_shopping_cart .cart_list li {
  font-size: 14px;
}

.woocommerce .widget_shopping_cart .total, 
.woocommerce.widget_shopping_cart .total {
  padding: 8px 0px 0px;
}

.woocommerce .widget_shopping_cart .total strong, 
.woocommerce.widget_shopping_cart .total strong {
  font-weight: 400;
}

.woocommerce .widget_shopping_cart .total .amount,
.woocommerce.widget_shopping_cart .total .amount {
  color: inherit;
}

.price_slider_wrapper {
  margin-top: 25px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #eee;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #ccc;
  width: 0.6em;
  height: 0.6em;
  top: -0.1em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 0.3em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  margin-top: 3px;
  font-size: 1em;
}

/* -- Product Card */

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  padding-top: 0;
  line-height: 1.5em;
  padding-bottom: 0px;
  font-family: inherit;
  font-weight: inherit;
}

.woocommerce .products ul, .woocommerce ul.products {
  margin-bottom: 0px;
  padding-top: 10px;
}

/*
body.woocommerce-page ul.products li.product {
  width: 30.75%;
}
*/


.woocommerce ul.products li.product a img {
  margin-bottom: 0.5em;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: all 0.2s ease 0s;
}

.woocommerce ul.products li.product a:hover img {
  border-color: #24A3D8;
}

.woocommerce ul.products li.product h3 {
  padding: 0px;
  margin: 16px 2px 2px 2px;
  line-height: 1.4em;
  font-size: 16px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price {
  font-size: 1em;
  overflow: hidden;
  margin-left: 2px;
}

.woocommerce span.onsale {
  min-width: 3.736em;
  background-color: #6FC400;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: inherit;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .price {
  color: inherit;
}

.woocommerce ul.products li.product .price del {
  color: #777;
}

.woocommerce ul.products li.product .button {
  margin-top: 0em;
  font-size: 14px;
  margin: 0px 2px;
  padding: 12px 18px;
}

.woocommerce ul.products li.product .star-rating {
  font-size: 0.7em;
  margin-top: 0.4em;
  margin-bottom: 0.3em;
  margin-left: 2px;
  letter-spacing: 0.06em;
  line-height: 0.85em;
}

.woocommerce ul.products li.product .price del {
  float: left;
  margin-right: 7px;
}

.woocommerce ul.products li.product .price ins {
  float: left;
  font-weight: 400;
}

.woocommerce a.added_to_cart {
  border-bottom: 2px solid;
  margin-left: 5px;
  font-size: 15px;
  line-height: 1.4em;
  position: relative;
  top: -2px;
}

.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after {
  position: relative;
  font-size: 12px;
  margin-left: 10px;
  vertical-align: middle;
  top: -1px;
  right: auto;
}

/* -- Star Rating */

body .woocommerce .star-rating {
  font-family: inherit;
}

.woocommerce .star-rating span:before {
  color: #ee9e13;
}

.woocommerce .star-rating:before {
  content: "☆☆☆☆☆";
}

.woocommerce .star-rating span:before {
  content: "★★★★★";
}

body.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

body.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0px 2px;
}

.woocommerce p.stars a {
  color: #999;
}

.woocommerce p.stars a.star-1:after, 
.woocommerce p.stars a.star-2:after, 
.woocommerce p.stars a.star-3:after, 
.woocommerce p.stars a.star-4:after, 
.woocommerce p.stars a.star-5:after {
  font-family: inherit;
}

.woocommerce p.stars a.star-1:after {
  content: "☆";
}

.woocommerce p.stars a.star-2:after {
  content: "☆☆";
}

.woocommerce p.stars a.star-3:after {
  content: "☆☆☆";
}

.woocommerce p.stars a.star-4:after {
  content: "☆☆☆☆";
}

.woocommerce p.stars a.star-5:after {
  content: "☆☆☆☆☆";
}

.woocommerce p.stars a.star-1.active:after, .woocommerce p.stars a.star-1:hover:after {
  content: "★";
  color: #ee9e13;
}

.woocommerce p.stars a.star-2.active:after, .woocommerce p.stars a.star-2:hover:after {
  content: "★★";
  color: #ee9e13;
}

.woocommerce p.stars a.star-3.active:after, .woocommerce p.stars a.star-3:hover:after {
  content: "★★★";
  color: #ee9e13;
}

.woocommerce p.stars a.star-4.active:after, .woocommerce p.stars a.star-4:hover:after {
  content: "★★★★";
  color: #ee9e13;
}

.woocommerce p.stars a.star-5.active:after, .woocommerce p.stars a.star-5:hover:after {
  content: "★★★★★";
  color: #ee9e13;
}

/* -- Products Pagination */

.woocommerce nav.woocommerce-pagination {
  margin-bottom: 50px;
}

body.woocommerce nav.woocommerce-pagination ul li a,
body.woocommerce nav.woocommerce-pagination ul li span.current {
  border: 1px solid #e2e2e2;
  background: transparent;
  padding: 15px 12px;
  font-size: 15px;
}

body.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover {
  color: inherit;
  background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background-color: transparent;
  border-color: #999;
}


/* -- Product Details */

.woocommerce .woocommerce-product-rating .star-rating {
  margin-top: 0.6em;
  letter-spacing: 0.055em;
}

.woocommerce div.product .product_title {
  font-size: 32px;
  margin-bottom: 5px;
  line-height: 1.3em;
}

body.woocommerce div.product .woocommerce-product-rating {
  font-size: 0.85em;
  margin-bottom: 0.15em;
  margin-top: -8px;
}

.woocommerce div.product div.images .thumbnails a,
.woocommerce div.product div.images .thumbnails img {
  width: 60px;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: #f5f5f5;
  margin: 0px;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
  outline: 0;
}

.woocommerce div.product a.woocommerce-review-link {
  position: relative;
  color: inherit;
  top: 1px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

body.woocommerce div.product form.cart {
  margin-top: 1.5em;
}

.woocommerce div.product form.cart .button {
  width: 75%;
  height: 60px;
  padding: 0px;
  font-weight: 400;
  font-size: 24px;
  text-transform: capitalize;
  border-radius: 2px;
  margin-left: 1.2%;
  margin-top: 0px;
}

.woocommerce div.product form.cart .button:focus {
  outline: none;
}

.woocommerce button.button.alt:hover {
  opacity: 0.9;
}

.woocommerce .quantity .qty {
  width: 3em;
  text-align: center;
  height: 60px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
}

.woocommerce .quantity .qty:focus {
  border-color: #ccc;
}

.product_meta {
  font-size: 13px;
  padding-top: 15px;
  border-top: 1px dotted #e2e2e2;
}

.product_meta span {
  line-height: 1.6em;
  margin-bottom: 5px;
  margin-right: 10px;
}

body.woocommerce-page div.product div.thumbnails a.first {
  clear: inherit;
}

body.woocommerce-page div.product div.thumbnails a.last {
  margin-right: 3.8%;
}

body.woocommerce div.product div.images .flex-control-thumbs {
  margin: 10px -5px;
}

body.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 0px 5px;
  margin-bottom: 10px;
}

/* -- Product Tabs */

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0px;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li {
  margin-right: 5px;
  border-color: #e2e2e2;
  background-color: #f7f7f7;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  border-color: #e2e2e2;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 400;
  font-size: 14px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  visibility: hidden;
}


/* -- Product Reviews */

.woocommerce div.product .woocommerce-tabs p.woocommerce-noreviews {
  margin-top: -10px;
  margin-bottom: 30px;
}

.woocommerce div.product p.price {
  margin-right: 7px;
  padding-top: 3px;
  padding-bottom: 5px;
}

.woocommerce div.product p.price del {
  margin-right: 6px;
  font-size: 18px;
  color: #777;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
  font-weight: 400;
}

.woocommerce #review_form p.stars {
  font-size: 13px;
  padding-top: 6px;
}

.woocommerce #review_form p.stars span {
  position: relative;
  top: 6px;
  left: 0px;
  width: 80%;
  float: right;
}

.woocommerce p.comment-form-comment {
  clear: both;
}

.woocommerce #reviews #comments h2,
.woocommerce #reviews h3 {
  margin-bottom: 20px;
}

.woocommerce #reviews h3.comment-reply-title {
  margin-bottom: 10px;
}

.woocommerce #reviews #comments ol.commentlist {
  margin-bottom: 20px;
}

.woocommerce #reviews #comments ol.commentlist .description {
  margin: 10px 0px 20px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 48px;
  border-radius: 3px;
  padding: 0px;
  border: none;
  background-color: transparent;
}

body.woocommerce .panel {
  box-shadow: none;
}

.woocommerce div.product form.cart .variations select {
  font-size: 15px;
}

.woocommerce div.product form.cart .variations .label {
  color: #333;
  font-size: 14px;
}

.woocommerce div.product form.cart .variations .label label {
  padding-top: 4px;
}

body.woocommerce table.shop_attributes td, 
body.woocommerce table.shop_attributes th,
body.woocommerce table.shop_attributes td p {
  font-size: 15px;
}

body.woocommerce table.shop_attributes th {
  font-weight: bolder;
}

body.woocommerce #respond .comment-reply-title {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
}

body.woocommerce #respond input#submit, 
body.woocommerce a.button, .woocommerce button.button, 
body.woocommerce input.button {
  font-weight: 400;
  margin-top: 1.2em;
}

.woocommerce-tabs h2, .related h2, .upsells h2, .woocommerce #reviews h3 {
  font-size: 22px;
  margin-top: 0px;
  line-height: 1.5em;
}

.related h2, .upsells h2 {
  margin-bottom: 25px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 60px;
  border-radius: 2px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  margin-bottom: 0em;
  margin-top: 0px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
  font-weight: normal;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  font-size: 15px;
  line-height: 1.5em;
  margin-top: 10px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
  font-size: 13px;
  margin-top: 3px;
  line-height: 0.9em;
  letter-spacing: 0.05em;
}

/* -- Messages */

.woocommerce .woocommerce-message .button {
  margin-top: 0px;
}

.woocommerce .woocommerce-info {
  padding-left: 1.5em !important;
}

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


/* -- Product Lightbox */

div.pp_woocommerce .pp_content_container {
  padding-bottom: 7px;
}

.pp_nav p.currentTextHolder {
  position: relative;
  top: -6px;
}

div.pp_woocommerce .pp_close {
  text-indent: -9999px;
}

/* -- Cart Items */

.woocommerce table.shop_table {
  border-radius: 0px;
  border: none;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  border: none;
  vertical-align: middle;
}

.woocommerce table.shop_table tr.cart-subtotal td {
  font-weight: 400;
}

.woocommerce table.shop_table th {
  border-bottom: 1px solid #e2e2e2;
  font-weight: 400;
}

.woocommerce table.shop_table .product-remove {
  border-left: 1px solid #e2e2e2;
}

.woocommerce table.shop_table .product-subtotal {
  border-right: 1px solid #e2e2e2;
  text-align: right;
  padding-right: 18px;
}

.woocommerce .cart .button {
  font-weight: 400;
}

.woocommerce a.remove:hover {
  background: transparent;
  color: red !important;
  text-decoration: none;
  opacity: 0.8;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid #e2e2e2;
  padding: 20px 12px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  padding: 9px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text::-webkit-input-placeholder {
  line-height: 1.4em;
}

.woocommerce table.shop_table td.actions {
  border: none;
  padding-left: 0px;
  padding-right: 0px;
}

.woocommerce table.shop_table .quantity .qty {
  height: auto;
}

.woocommerce table.shop_table .quantity input.qty {
  padding: 5px 0px;
  font-size: 15px;
}

.woocommerce-page table.cart td.actions .input-text {
  width: auto;
  padding: 7px;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background-color: #f2f2f2;
}

/* -- Cart Totals */

.content-area .cart_totals h2,
.content-area .cross-sells h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 24px;
}

.woocommerce .cart-collaterals, 
.woocommerce-page .cart-collaterals {
  margin-bottom: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals tr td, 
.woocommerce-cart .cart-collaterals .cart_totals tr th {
  margin-top: 0px;
  border-bottom: none;
  padding-left: 10px;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  font-weight: 400;
}

.woocommerce-cart .cart-collaterals .cart_totals table {
  border: 1px solid #eee;
}

.content-area .cart-collaterals p {
  margin-bottom: 0px;
}

.woocommerce ul#shipping_method li {
  font-size: 15px;
  padding: 0px;
  text-indent: 0px;
}

.woocommerce ul#shipping_method li input {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.content-area .cart-collaterals table a.shipping-calculator-button {
  font-size: 15px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 17px 0px;
  font-size: 20px;
  font-weight: 400;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.9;
}

section.shipping-calculator-form {
  margin: 10px 10px 10px 0px;
}

.woocommerce section.shipping-calculator-form button.button {
  margin-top: 0.5em;
  font-size: 15px;
}

.woocommerce form .form-row {
  padding: 3px 0px;
}

body .select2-container .select2-choice {
  border-color: #e2e2e2;
  border-radius: 0px;
}

/* -- Empty Cart */

.content-area .entry-content p.return-to-shop {
  margin-bottom: 5em;
}

.woocommerce p.return-to-shop a.button {
  font-weight: inherit;
}


/* -- Checkout */

form.checkout label {
  margin-bottom: 0px;
}

.woocommerce form .form-row input.input-text#billing_address_1,
.woocommerce form .form-row input.input-text#shipping_address_1 {
  margin-bottom: -10px;
}

.woocommerce-shipping-fields h3#ship-to-different-address {
  position: relative;
  padding-left: 25px;
  line-height: 32px;
  margin-bottom: 28px;
  position: relative;
  top: 5px;
}

.woocommerce-shipping-fields h3#ship-to-different-address input.input-checkbox {
  position: absolute;
  top: 6px;
  left: 0px;
}

.content-area a.select2-choice:hover {
  border-bottom-color: inherit;
}

/* -- My Account */

.woocommerce-account .content-area h2 {
  margin-top: 0px;
  margin-bottom: 15px;
}

.woocommerce form.login, 
.woocommerce form.register {
  margin-top: 1.5em;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
  padding: 25px;
  border-radius: 2px;
  border-color: #e2e2e2;
}

.woocommerce form.register {
  border: none;
  background-color: #f6f6f6;
}

.woocommerce form.login input.button,
.woocommerce form.register input.button {
  margin: 10px 10px 10px 0px;
}

.woocommerce-account .addresses .title h3 {
  margin-top: 0em;
}

.col2-set.addresses {
  margin-top: 40px;
  margin-bottom: 40px;
}

.content-area .entry-content p.myaccount_user {
  margin-bottom: 40px;
}

.woocommerce-account .addresses .title .edit {
  margin-top: 6px;
}

.woocommerce form .form-row .select2-container {
  border: 1px solid #e2e2e2;
}

.select2-container .select2-choice {
  font-weight: inherit;
}

.woocommerce input.button {
  font-weight: 400;
}

.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
  line-height: 1.3em;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, 
.woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 48%;
}

body.woocommerce-account .content {
  padding-bottom: 40px;
}

.woocommerce-account .content-area .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0px;
}

.woocommerce-account .content-area .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #111;
}

body .woocommerce table.my_account_orders {
  font-size: inherit;
}

body .woocommerce a.button {
  font-weight: 400;
}


/* -- Checkout */

.checkout_coupon p {
  margin-bottom: 0px;
}

.woocommerce-shipping-fields h3#ship-to-different-address label.checkbox {
  margin-top: 0px;
}

.woocommerce-checkout .content-area h3 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.woocommerce-checkout .content-area h3#order_review_heading {
  margin-top: 40px;
}

.woocommerce table.woocommerce-checkout-review-order-table th {
  vertical-align: middle;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot td {
  border-top: none;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  border-top: none;
  font-weight: 600;
}

.woocommerce-checkout #payment {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 0px;
}

.woocommerce-checkout #payment div.payment_box {
  background-color: #fff;
}

.woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid #fff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-color: #e2e2e2;
  padding-left: 0px;
  padding-right: 0px;
  margin: 0.8em;
}

.woocommerce form legend {
  padding-bottom: 10px;
  font-weight: 400;
  margin-top: 30px;
}

.woocommerce-account .entry-content a {
  border: none;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    font-size: 20px;
    padding: 20px 30px;
}

/* -- Confirmation */

.woocommerce-order-received .woocommerce {
  margin-bottom: 50px;
}

.woocommerce-order-received .content-area h2 {
  font-size: 24px;
}

.woocommerce table.shop_table thead th {
  font-size: 15px;
  border-top: 1px solid #e2e2e2;
}

.woocommerce-order-received .woocommerce table.shop_table tfoot td,
.woocommerce-order-received .woocommerce table.shop_table tfoot th {
  border-top: none;
  font-weight: bolder;
  vertical-align: middle;
}

.woocommerce table.shop_table strong.product-quantity {
  font-weight: inherit;
}

.woocommerce table.shop_table.customer_details tbody th {
  border-top: none;
  font-weight: bolder;
}

.woocommerce .order_details {
  padding-left: 0px;
  margin-top: 1.5em;
}

/*-------------------------------------------------------------------------*/
/*  16.0  Owl Carousel
/*-------------------------------------------------------------------------*/

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel {
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; 
}

.owl-carousel .owl-item {
    padding-left: 15px;
    padding-right: 15px;
    float: left;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


/*-------------------------------------------------------------------------*/
/*  17.0  LayerSlider
/*-------------------------------------------------------------------------*/

.ls-slide a:hover {
  opacity: 0.9;
}

.ls-slide .slider-button:hover {
  border: 2px solid #fff !important; /* Important required */
}

.ls-nav-prev,
.ls-nav-next {
  background-color: rgba(0, 0, 0, 0.35);
  height: 50px;
  width: 50px;
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -25px;
  margin-left: -65px;
  z-index: 10;
  transition: all .3s ease-in-out !important;
  cursor: pointer;
}

.ls-wp-container:hover .ls-nav-prev {
  margin-left: 0px;
}

.ls-wp-container:hover .ls-nav-next {
  margin-right: 0px;
}

.ls-nav-prev:hover,
.ls-nav-next:hover {
  background-color: rgba(0, 0, 0, 1);
}

.ls-nav-next {
  left: auto;
  right: 10px;
  margin-left: 0px;
  margin-right: -65px;
}

.ls-nav-prev:after,
.ls-nav-next:after {
  position: absolute;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  content: "\f3d2";
  font-family: 'Ionicons';
  line-height: 50px;
  text-align: center;
  display: block;
  font-size: 22px;
}

.ls-nav-next:after {
  content: "\f3d3";
}

body .ls-noskin .ls-nav-prev,
body .ls-noskin .ls-nav-next {
  visibility: visible;
  display: block;
  z-index: 40;
}

/* LS5 */

.content-area .ls-overflow-visible {
  overflow: hidden !important;
}


/*-------------------------------------------------------------------------*/
/*  18.0  Footer
/*-------------------------------------------------------------------------*/

.first-footer {
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.first-footer .textwidget img {
  margin-bottom: 20px;
  height: auto;
  width: 100%;
  display: block;
}

.first-footer .widget_categories ul li:before {
  top: 7px;
}

.second-footer {
  font-size: 14px;
  padding: 20px 0px 15px 0px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}

.second-footer p {
  margin: 0;
}

.first-footer .textwidget, .second-footer .textwidget {
  line-height: 1.55em;
}

.first-footer ul,
.second-footer ul {
  padding: 0px;
  margin: 0px;
}

.first-footer ul {
  margin-top: 1px;
}

.first-footer .col-lg-3,
.first-footer .col-lg-4 {
  display: flex;
}

.first-footer i {
  font-size: 36px;
  position: relative;
  top: 3px;
}

.first-footer hr {
  border-top: 1px solid rgba(255,255,255,0.06);
  height: 1px;
  margin: 0em;
  margin-top: 12px;
  margin-bottom: 18px;
}

.first-footer .textwidget span {
  font-size: 1.3em;
  word-wrap: break-word;
}

.first-footer small {
  font-size: 1em;
  opacity: 0.65;
  position: relative;
  display: block;
  margin-bottom: -5px;
}

.first-footer .inner-widget-wrap {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 30px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.first-footer .col-lg-3:last-child .inner-widget-wrap,
.first-footer .col-lg-4:last-child .inner-widget-wrap {
  border: none;
  padding-right: 0px;
}

.second-footer ul.inline li {
  display: inline;
  margin-right: 20px;
}

.second-footer ul.inline.right {
  text-align: right;
}

.second-footer ul.inline.right li {
  margin-right: 0px;
  margin-left: 20px;
}

.first-footer ul li,
.second-footer ul li {
  list-style: none;
}

.first-footer ul li a,
.second-footer ul li a {
  opacity: 1;
}

.second-footer ul li a {
  display: inline-block;
}

.first-footer ul li a:hover,
.second-footer ul li a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.footer {
  font-size: 13px;
  padding: 15px 0px 20px 0px;
  text-align: center;
}


/* -- Social Icons */

.second-footer ul.inline li.facebook,
.second-footer ul.inline li.twitter,
.second-footer ul.inline li.linkedin,
.second-footer ul.inline li.google-plus {
  margin-left: 35px;
}

.second-footer ul.inline li a:before {
  font-family: 'Ionicons';
  margin-right: 8px;
  position: absolute;
  left: -18px;
  top: -2px;
}

.second-footer ul.inline li.facebook a:before {
  content: "\f231";
  color: #3b589c;
  left: -14px;
}

.second-footer ul.inline li.twitter a:before {
  content: "\f243";
  color: #22abf4;
}

.second-footer ul.inline li.linkedin a:before {
  content: "\f239";
  color: #1276ba;
}

.second-footer ul.inline li.google-plus a:before {
  content: "\f235";
  color: #d94d33;
}

.second-footer ul.inline li.youtube a:before {
  content: "\f24d";
  color: #d20c0c;
}

.second-footer ul.inline li.instagram a:before {
  content: "\f351";
  color: #17558c;
}
/* -- Back to Top */

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: -40px;
  right: 15px;
  z-index: 5;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #fff;
  border: 2px solid #222;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  margin: 10px;
  border-radius: 50%;
}

.cd-top:before {
  text-indent: 0;
  font-family: 'Ionicons';
  content: "\f3d8";
  color: #222;
  font-size: 18px;
  position: absolute;
  right: 12px;
  top: 5px;
}

.cd-top.cd-is-visible, 
.cd-top.cd-fade-out, 
.no-touch .cd-top:hover {
  transition: all 0.3s ease-in-out 0s;
}

.cd-top.cd-is-visible {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
}

/* BBPress */

body.bbpress .entry-content a {
  padding: 0px;
  border: none;
}

body.bbpress button {
  background-color: #111;
}

.structured-metadata {
  display: none;
}

.entry-header .author-meta {
  display: none;
}

.single .author-meta {
    display: none;
}