<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    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

----------------------------------------------------------------
&gt;&gt;&gt; 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 - Projects
19.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: "";
}

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

label {
  font-weight: inherit;
}

strong {
  font-weight: 600;
}

span.required {
  color: #e11f31;
}

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

/* -- Vertical Alignment */
.vertical-align {
  display: flex;
  flex-direction: row;
}

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

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

body.page-template-default .content-area .container,
body.page-template-page-right-sidebar-php .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;
}

.wpb_row {
  overflow: hidden;
}

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

.overflow-visible {
  overflow: visible;
}

/* -- Boxed */

.boxed #wrapper, 
.boxed .footer, 
.boxed .footercontainer {
    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;
}

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

.cg-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  top: 50%;
  margin-top: -20px;
}

.cg-folding-cube .cg-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); 
}

.cg-folding-cube .cg-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-animation: cg-foldCubeAngle 2.4s infinite linear both;
  animation: cg-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.cg-folding-cube .cg-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.cg-folding-cube .cg-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.cg-folding-cube .cg-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.cg-folding-cube .cg-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.cg-folding-cube .cg-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; 
}
.cg-folding-cube .cg-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes cg-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes cg-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}




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

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

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

.text-logo a {
  font-size: 30px;
  text-transform: uppercase;
  color: #111;
}

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

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

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

.cg-header-fixed-wrapper .cg-primary-menu {
  padding: 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 .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%;
}

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

.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;
}

.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 &gt; li {
  display: inline-block;
  /*position: relative;*/
  padding: 16px 0px;
  margin-right: 20px;
  margin-left: 20px;
  border-top: 3px solid transparent;
}

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

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

.cg-primary-menu .menu &gt; li a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  right: -20px;
  top: calc(50% - 15px);
  border-radius: 50%;
  background: #fff;
  opacity: 0.15;
}

.cg-primary-menu .menu &gt; li .cg-submenu-ddown a:before {
  display: none;
}

.cg-header-fixed .menu &gt; li {
  display: inline-block;
  padding: 0px 10px;
}

.cg-primary-menu .menu &gt; li &gt; a {
  display: block;
  position: relative;
  color: #fff;
  font-weight: 700;
}

.cg-header-fixed .cg-primary-menu .menu &gt; li &gt; a {
  color: #222;
}

.cg-primary-menu .menu &gt; li:hover {
  border-color: #24A3D8;
}

.cg-primary-menu .menu &gt; li .cg-submenu-ddown {
  background-color: #24A3D8;
}

.cg-primary-menu .menu &gt; li .cg-submenu-ddown .container &gt; ul &gt; li a, 
.cg-submenu-ddown .container &gt; ul &gt; li &gt; a {
  color: #fff;
}

.cg-header-fixed .menu &gt; li.menu-item-has-children &gt; a:after,
.cg-primary-menu .menu &gt; li.menu-item-has-children &gt; a:after {
  content: "\f0dd";
  font-family: FontAwesome;
  font-size: 10px;
  margin-left: 8px;
  font-weight: 400;
  position: relative;
  top: -3px;
}                 

.cg-submenu-ddown {
  margin-left: -25px;
}

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

.cg-header-fixed .menu &gt; li .cg-submenu-ddown, 
.cg-primary-menu .menu &gt; li .cg-submenu-ddown {
  display: none;
  position: absolute;
  z-index: 1000;
  width: 210px;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cg-primary-menu .menu &gt; li .cg-submenu-ddown .container &gt; ul &gt; li a,
.cg-submenu-ddown .container &gt; ul &gt; li &gt; a {
  padding: 6px 0px;
  font-size: 13px;
  line-height: 1.4em;
  display: block;
  padding: 12px 25px;
  border-bottom: 1px solid #1592c6;
  transition: 0.1s all ease-in-out;
}

.cg-primary-menu .menu &gt; li.current-menu-item &gt; a,
.cg-primary-menu .menu &gt; li.current-menu-ancestor &gt; a {
  /* opacity: 0.75; */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cg-primary-menu .menu &gt; li .cg-submenu-ddown .container &gt; ul .menu-item-has-children &gt; a:after {
  content: "\f10a";
  font-family: 'Ionicons';
  font-size: 10px;
  position: absolute;
  top: 13px;
  right: 18px;
  background-color: transparent;
}

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

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

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

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

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

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

.cg-primary-menu .menu &gt; li.menu-full-width .cg-submenu-ddown .container ul .menu-item-has-children .cg-submenu ul li:last-child a,
.cg-header-fixed .menu &gt; 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 &gt; ul &gt; li:first-child, .cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container &gt; ul &gt; 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 &gt; a li a {
  opacity: 1;
}

.cg-primary-menu .menu &gt; li &gt; 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: #24a3d8;
  text-align: center;
  color: #FFF;
}

.cg-primary-menu-below-wrapper {
  background: #323946;
}

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

.cg-header-fixed .cg-primary-menu .menu &gt; li a:before { 
  display: none; 
}

.cg-primary-menu .menu &gt; li.menu-full-width .cg-submenu-ddown .container &gt; ul &gt; li:hover a,
.cg-primary-menu .menu &gt; li.menu-full-width .cg-submenu-ddown .container &gt; ul &gt; li a:hover {
  background-color: transparent;
}

.cg-primary-menu .menu &gt; li.menu-full-width .cg-submenu-ddown .container &gt; ul &gt; li a:before {
  display: none;
}


/*-------------------------------------------------------------------------*/
/*  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: 18px 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 &gt; li &gt; a {
  line-height: 72px; 
}

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

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

.cg-announcements {
  padding: 6px 0px;
  font-size: 15px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #eee;
}

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

.lfo_todays_date_widget_class {
  display: inline-block;
}

.lfo_todays_date_widget_class h4 {
  display: none;
}


/*-------------------------------------------------------------------------*/
/*  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;
  border-radius: 2px;
}

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

.rightnav input.search-field {
  margin-left: 35px;
  width: 235px;
}

.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: 2;
  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;
  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: 8px;
  right: 45px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

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

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

.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: 75px;
  text-align: left;
  position: relative;
  top: calc(50% - 20px);
}

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

.cg-menu-below .cg-extras .cg-header-details h4 {
  margin: 0px 0px -2px;
  font-size: 15px;
  line-height: 1.4em;
  font-family: inherit;
  font-weight: 400;
}

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

.cg-menu-below .cg-extras .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;
}

/* -- 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: 20px 10px 20px 0px;
  top: -1px;
  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;
}

.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 .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-size: 20px !important; /* Required to over-write inline font size */
}

.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: 45px 0px;
  position: relative;
}

.cg-hero-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background-size: cover;
  background-position: center center;
}

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

.header-wrapper h1.cg-page-title {
  margin: 0px;
}

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

/* -- Call to Action Button */

.cta-button a {
  display: inline-block;
  vertical-align: middle;
  /* border-radius: 2em; */
  border-radius: 2px;
  background-color: #6FC400;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
  color: #FFF;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  padding: 0.85em 2.2em;
}

.cta-button a:after {
  content: "\f125";
  font-family: 'Ionicons';
  margin-left: 12px;
  font-size: 12px;
  position: relative;
  top: -1px;
}

.header-wrapper .cta-button a:hover,
.cg-header-fixed .cta-button a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #64b001;
}

/* -- Call to Action within Fixed Header */

.cg-header-fixed .cta-button {
  line-height: 72px;
}

.cg-header-fixed .cta-button a {
  font-size: 17px;
  padding: 0.75em 1.3em;
  position: relative;
  top: -2px;
}

.cg-header-fixed .cta-button a:after {
  margin-left: 9px;
  font-size: 9px;
}


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

.breadcrumbs-wrapper {
  padding: 0px;
  border-bottom: 1px solid #eee;
  line-height: 50px;
}

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

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

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

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

.breadcrumbs-wrapper a:last-child:after {
  content: none;
}

.content-area p.cg-share {
  text-align: right;
  margin-bottom: 0px;
}

.cg-share span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  top: 1px;
  padding: 0px 25px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid transparent;
  float: right;
}

.cg-share span.opened {
  border-bottom-color: #fff;
}

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

.share-wrapper {
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.share-wrapper a {
  font-size: 16px;
  color: #999;
  line-height: 46px;
  width: 48px;
  display: inline-block;
  border-left: 1px solid #eee;
  float: left;
  transition: all 0.5s ease 0s;
}

.share-wrapper a:last-child {
  border-right: 1px solid #eee;
}

.share-wrapper a:hover {
  background-color: #f6f6f6;
}

.share-wrapper a .fa-google-plus {
  position: relative;
  top: 2px;
}

.share-wrapper .fa-linkedin {
  font-size: 18px;
}

.share-wrapper .ion-printer {
  font-size: 18px;
  position: relative;
  top: 1px;
}

.cg-share-tools {
  text-align: center;
  display: table; margin: 0 auto;
}

.share-wrapper {
  display: none;
}

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

#secondary {
  margin-bottom: 50px;
}

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

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

.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: 35px;
}

.widget.boxed {
  padding: 20px 20px 15px 20px;
  border: 1px solid #eee;
  border-radius: 2px;
}

#secondary aside:first-child h4.widget-title {
  padding-top: 0px;
  border: none;
  margin-top: 0px;
}

#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 #secondary {
  padding-right: 15px;
}

.sidebar.right #secondary {
  padding-right: 0px;
  padding-left: 15px;
}

.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 {
  padding-left: 15px;
}

.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 {
  margin-right: 8px;
  position: absolute;
  top: 8px;
  left: 0px;
  content: "";
  width: 5px;
  height: 5px;
  background: #999;
  border-radius: 50%;
  text-indent: -999px;
}

.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 dotted rgba(0, 0, 0, 0.15);
  padding-top: 5px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  padding-left: 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.15);
}

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

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

.first-footer .widget_recent_entries ul li:first-child {
  padding-top: 0px;
  margin-top: -3px;
}

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


/* -- Newsletter Widget */

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

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

.widget_mc4wp_widget input[type="submit"] {
  border: none;
  font-size: 13px;
}

/* -- Tags Widget */

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

.widget_tag_cloud a:hover,
.widget_product_tag_cloud a:hover {
  background-color: #f1f1f1;
  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;
}

/* -- Selects */

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

.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-radius: 3px;
  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: 12px 35px 12px 15px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #222;
  position: relative;
  font-size: 17px;
  line-height: 1.35em;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}

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

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

.right .advanced-sidebar-menu ul li a:after {
  display: none;
}

.right .advanced-sidebar-menu ul li a:before {
  content: "\f124";
  font-family: 'Ionicons';
  font-size: 11px;
  color: #e2e2e2;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease-in-out 0s;
}

.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_item.has_children &gt; a:before, 
.sidebar.right #secondary .advanced-sidebar-menu ul li.current_page_ancestor &gt; 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,
#secondary ul.product-categories {
  border-top: 1px solid #eee;
}

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

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

#secondary .advanced-sidebar-menu ul.child-sidebar-menu {
  border-radius: 2px;
}

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

.advanced-sidebar-menu ul li a:after,
.product-categories li a:after {
  content: "\f125";
  font-family: 'Ionicons';
  font-size: 11px;
  color: #e2e2e2;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease-in-out 0s;
}

.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 &gt; a,
#secondary .advanced-sidebar-menu ul li.current_page_item &gt; a:hover,
#secondary .advanced-sidebar-menu ul li.current_page_ancestor &gt; a,
#secondary .advanced-sidebar-menu ul li.current_page_ancestor &gt; a:hover,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent &gt; a,
.sidebar #secondary .widget_product_categories li.current-cat-parent &gt; a,
.sidebar #secondary .widget_product_categories li.current-cat &gt; a {
  background-color: #f7f7f7;
  border-color: #eee;
}

#secondary .advanced-sidebar-menu ul li.current_page_item &gt; a:after,
#secondary .advanced-sidebar-menu ul li.current_page_ancestor &gt; a:after,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent &gt; a:after,
.sidebar #secondary .widget_product_categories li.current-cat-parent &gt; a:after,
.sidebar #secondary .widget_product_categories li.current-cat &gt; a:after {
  color: #999;
}

.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 {
  margin-right: 8px;
  position: absolute;
  top: 6px;
  left: 15px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  text-indent: -999px;
  border: 1px solid #999;
}

.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;
  border-bottom: 1px solid #eee;
}

.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: 14px;
  background-color: #f7f7f7;
  border-top: none;
  border-bottom: none;
  opacity: 1;
  padding: 0px 35px 12px 30px;
  color: #666;
}

.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: #222;
}

.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: 13px;
}

.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 &gt; a,
.sidebar #secondary .advanced-sidebar-menu ul li.current_page_ancestor &gt; a,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent &gt; a,
.sidebar #secondary .widget_product_categories li.current-cat-parent &gt; a {
  padding-bottom: 5px;
  border-top: none;
  border-bottom: none;
}

.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 &gt; a {
  padding-bottom: 12px;
}

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

.advanced-sidebar-menu ul li.current_page_item.has_children &gt; a:after,
.advanced-sidebar-menu ul li.current_page_ancestor &gt; a:after,
.sidebar #secondary .widget_product_categories li.current-cat.cat-parent &gt; a:after,
.sidebar #secondary .widget_product_categories li.current-cat-parent &gt; a:after {
  color: #111;
  content: "\f123";
  margin-top: -7px;
  right: 13px;
}

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


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

.cg-blog-layout article {
  margin-bottom: 60px;
}

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

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

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

/* -- Sticky Post */

article.sticky {
  padding: 27px;
  border: 1px solid #e2e2e2;
}

/* -- Title */

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

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

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

/* -- Meta */

.blog-meta {
  padding: 11px 0px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 2em;
  font-size: 14px;
  color: #999;
}

body.single .blog-meta {
  border-top: none;
}

.blog-meta span {
  margin-right: 25px;
  position: relative;
}

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

body.single footer.entry-meta {
  margin-top: 55px;
}


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

/* -- Categories &amp; Tags */

.cg-blog-article footer a {
  color: #999;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.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: 25px;
}

.cg-blog-article footer span.categories:before,
.cg-blog-article footer span.cat-links:before,
body.single footer span.categories:before,
body.single footer span.cat-links:before {
  content: "\f434";
  font-family: 'Ionicons';
  margin-right: 6px;
  font-size: 15px;
  position: relative;
  top: 1px;
}

.cg-blog-article footer span.tags:before,
.cg-blog-article footer span.tags-links:before,
body.single footer span.tags:before,
body.single footer span.tags-links:before  {
  content: "\f48c";
  font-family: 'Ionicons';
  margin-right: 9px;
  font-size: 17px;
  position: relative;
  top: 2px;
}

.blog-meta span.cg-blog-author:after {
  position: absolute;
  opacity: 0.4;
  content: "";
  width: 5px;
  height: 5px;
  background: #999;
  border-radius: 50%;
  top: 8px;
  margin-left: 8px;
}

.blog-meta span.comments {
  margin-right: 0px;
  float: right;
}

.blog-meta span.comments:before {
  margin-right: 8px;
  font-size: 16px;
  content: "\f3fb";
  font-family: 'Ionicons';
  position: relative;
  top: 1px;
}


/* -- 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 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.1s ease-in 0s;
}

/* -- Page Navigation */

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

.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: 15px;
  color: inherit;
  border-radius: 2px;
}

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


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

.comments-area {
  background: #f7f7f7;
  padding: 40px;
  margin: 2% 0% 35px 0%;
}

.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 &gt; li {
  list-style-type: none;
  margin-bottom: 6%;
  padding-bottom: 6%;
  border-bottom: 1px dotted #C2C9D0;
}

.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 {
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.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 h3.comment-reply-title {
  font-size: 22px;
}

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

.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 &gt; li {
  list-style-type: none;
  margin-bottom: 6%;
  padding-bottom: 6%;
  border-bottom: 1px dotted #C2C9D0;
}

.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;
}

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

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

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

.comment-form label {
  display: inline-block;
  float: left;
  margin-bottom: 10px;
  margin-top: 7px;
}

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

.comment-form #submit {
  margin-top: 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;
  background: transparent;
  color: #fff;
  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%;
  border-radius: 2px;
}

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

.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;
}

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

/* -- Spacing */

.content {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

/* -- Headings */

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

.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 {
  padding-bottom: 2px;
  border-bottom: 2px solid #6BC3F0;
  transition: all 0.2s ease 0s;
}

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

.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 0px 0px;
    border-left: none;
}

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


/* -- HR Rule */

hr {
  border-top: 1px dotted #ccc;
  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: circle; 
  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 &amp; 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;
  padding-bottom: 0px;
  border-bottom: none;
}

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

img.alignright, .wp-caption.alignright {
  float: right;
  margin: 5px 0px 20px 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%;
}

.content-area .entry-content p.wp-caption-text,
.content-area .wpb_single_image .vc_figure-caption {
  color: #999;
  padding: 10px 10px 12px 0px;
  background: #f6f6f6;
  font-size: 0.85em;
  padding-left: 40px;
  position: relative;
  text-align: left;
  line-height: 1.45em;
  margin-top: 0px;
}

.content-area .entry-content p.wp-caption-text:before,
.content-area .wpb_single_image .vc_figure-caption:before {
  content: "\f3f5";
  font-family: 'ionicons';
  position: absolute;
  top: 11px;
  left: 15px;
  font-size: 20px;
}

.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 {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

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

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

/* -- Tabs */

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab &gt; a:hover {
  background: transparent;
}

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 &gt; a {
  background-color: transparent;
  border: 1px solid #eee;
  border-bottom: none;
}

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 &gt; a {
  background: #f7f7f7;
  border-color: #f7f7f7;
}

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 &gt; 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;
}


/* -- Testimonial - 'Join' rope-like feature which connects them */
/* Add 'testimonial' class to outer column, use raw html vc shortcode and use &lt;div class="join_top"&gt;&lt;/div&gt; */

.testimonial {
  position: relative;
}

.join_top, .join_bottom {
  height: 2px;
  background: #e2e2e2;
  width: 60px;
  position: absolute;
  z-index: 2;
}

.join_top {
  top: 20px;
  right: -30px;
}

.join_bottom {
  bottom: 55px;
  right: -30px;
}

.join_top:before,
.join_top:after,
.join_bottom:before,
.join_bottom:after {
  content: "";
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  border: 1px solid rgb(204, 204, 204);
  width: 8px;
  height: 8px;
}

.join_top:before,
.join_bottom:before {
  left: -7px;
  top: -3px;
}

.join_top:after,
.join_bottom:after {
  right: -7px;
  top: -3px;
}

/* -- Down Arrow */

.down_arrow {
  text-align: center;
  font-size: 34px;
  color: #24A3D8;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  line-height: 74px;
  position: absolute;
  left: 50%;
  margin-left: -35px;
}

/* -- 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,
.vc_row.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%;
}

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

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

.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;
}

.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: 5px 0px 4px 0px;
  letter-spacing: 0.05em;
}

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

.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 .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 .products ul, .woocommerce ul.products {
  margin-bottom: 0px;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
  width: 30.75%;
}

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

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

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

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

body.woocommerce span.onsale {
  min-width: 3.736em;
  background-color: #6FC400;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  text-transform: uppercase;
}

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

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

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

body.woocommerce-page ul.products li.product .button {
  margin-top: 0em;
  font-weight: 700;
  font-size: 13px;
  margin: 0px 2px;
  text-transform: uppercase;
  padding: 12px 18px;
}

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

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

body.woocommerce-page 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: 30px;
}

body.woocommerce nav.woocommerce-pagination ul li a,
body.woocommerce nav.woocommerce-pagination ul li span.current {
  border: 1px solid #e2e2e2;
  background: transparent;
  border-radius: 2px;
  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: 12px;
  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 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 {
  display: block;
  line-height: 1.6em;
  margin-bottom: 5px;
}

/* -- 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;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.03em;
  border: none;
}

.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 #respond p.comment-form-rating {
  overflow: hidden;
}

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

.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 #review_form #respond p.comment-form-comment {
  overflow: hidden;
  margin: 0px 0px 18px 0px;
}

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

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

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

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

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: 7px;
}

.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 .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;
  border-left: 1px solid #e2e2e2;
}

.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;
  text-transform: uppercase;
}

.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;
}


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

.woocommerce-shipping-fields h3#ship-to-different-address input.input-checkbox {
  position: absolute;
  top: 7px;
  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%;
}


/* -- 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 th {
  border-top: none;
  font-weight: 600;
}

.woocommerce-checkout #payment {
  background: #f5f5f5;
  border-radius: 2px;
  padding: 20px;
}

.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;
}
.woocommerce form legend {
  padding-bottom: 10px;
  font-weight: 400;
  margin-top: 30px;
}

.woocommerce-account .entry-content a {
  border: none;
}

/* -- Confirmation */

.woocommerce-order-received .content-area h2 {
  font-size: 24px;
}

.woocommerce table.shop_table thead th {
  text-transform: uppercase;
  font-size: 15px;
  border-top: 1px solid #e2e2e2;
}

.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  border-top: none;
  font-weight: 400;
  vertical-align: middle;
}

.woocommerce table.shop_table strong.product-quantity {
  font-size: 13px;
  position: relative;
  top: -1px;
}

.woocommerce table.shop_table.customer_details tbody th {
  border-top: none;
}

.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-nav-prev,
.ls-nav-next {
  background-color: rgba(0, 0, 0, 0.35);
  height: 130px;
  width: 35px;
  font-size: 14px;
  line-height: 130px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -65px;
  margin-left: -60px;
  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: 0px;
  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: 130px;
  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;
}


/*-------------------------------------------------------------------------*/
/*  18.0  Projects
/*-------------------------------------------------------------------------*/

/* -- Isotope filtering */

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/* -- Isotope transitions */

.isotope,
.isotope .isotope-item {
  transition-duration: 0.8s;
}

.isotope {
  transition-property: height;
}

.isotope .isotope-item {
  transition-property: transform, opacity;
}

/* -- Disable isotope transitions */

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  transition-duration: 0s;
}


/* -- Projects - Filters */

#filters {
  padding: 0px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

#filters li {
  list-style: none;
  display: inline-block;
}

#filters li a {
  margin: 0px 8px;
  color: #999;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
}

#filters li a:focus {
  outline: none;
}

#filters li a:hover {
  color: #222;
}

#filters li a.selected {
  color: #111;
  padding-bottom: 2px;
  border-bottom: 1px solid #e2e2e2;
}


/* -- Main Project Landing Cards */

#project {
  margin: 0px -15px 30px -15px;
}

.item-with-padding {
  margin: 15px;
}

.project-item img {
  width: 100%;
}

.project-item .item-with-padding {
  position: relative;
}

.project-item .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  background-color: transparent;
  border-radius: 2px;
  opacity: 0.8;
  transition: all 300ms ease-in-out 0s;
}

.project-item .project-container {
  color: #FFF;
  bottom: 0px;
  left: 0px;
  padding: 30px 30px 15px 30px;
  position: absolute;
}

.project-item .project-container {
  opacity: 0;
  transition: all 300ms ease-in-out 0s;
}

.project-item .project-container .title,
.project-item .project-container .tags {
  transition: all 300ms ease-in-out 0s;
}

.project-item:hover .project-container .title {
  transform: translate(0px, -15px);
  transition: all 300ms ease-in-out 0s;
}

.project-item:hover .project-container .tags {
  transform: translate(0px, -15px);
  transition: all 100ms ease-in-out 0s;
}

.project-item .project-container .title {
  font-size: 22px;
}

.project-item .project-container .tags {
  font-size: 15px;
  opacity: 0.7;
}

.project-item:hover .project-container {
    opacity: 1;
}

.project-item .project-container span {
  display: block;
}

.project-item a:hover .overlay {
  background-color: #111;
}


/* -- Define Projects Landing Grid */

#project.project-three-cols .grid-sizer {
  width: 33%;
}

/* Other sizes */

#project.project-two-cols .grid-sizer {
  width: 50%;
}

#project.project-four-cols .grid-sizer {
  width: 25%;
}

/* -- Single Project Page */

.projects-container .entry-content .container {
  padding: 0px;
}

.projects-container .entry-content {
  padding-top: 40px;
}

.projects-container .cg-hero-bg {
  background-image: none !important;
}

.projects-container .prev-next {
  border-top: 1px solid #eee;
  margin-top: 20px;
}

.projects-container .prev-next a {
  color: inherit;
}

.projects-container .prev-next .prev-posts {
  border-right: 1px solid #eee;
}

.projects-container .prev-next .next-posts {
  text-align: right;
}

.projects-container .prev-next .prev-posts,
.projects-container .prev-next .next-posts {
  padding-top: 25px;
  padding-bottom: 25px; 
  font-weight: bolder;
}

.projects-container .wpb_single_image .vc_figure img {
  border-radius: 2px;
}

.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.col-height {
  display: table-cell;
  float: none;
  height: 100%;
  vertical-align: top;
}


/*-------------------------------------------------------------------------*/
/*  19.0  Footer
/*-------------------------------------------------------------------------*/

.first-footer {
  font-size: 15px;
  padding: 40px 0px 35px 0px;
}

.second-footer {
  font-size: 15px;
}

.second-footer .divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0px 15px 25px 15px;
}

.first-footer hr {
  margin: 0px;
  border-color: rgba(255,255,255,0.15);
  margin: 1.3em 0em 1.1em 0em;
}

.first-footer .textwidget, .second-footer .textwidget {
  line-height: 1.55em;
}

.first-footer a.theme-buy {
  text-align: center;
  display: block;
  padding: 15px 0px;
  background: #2e3036;
  font-size: 17px;
  border-radius: 2px;
  margin: 1em 0em;
}

.first-footer a.theme-buy:hover {
  background-color: #1b1d20;
}

.first-footer .mc4wp-form {
  position: relative;
  margin-top: 15px;
}

.first-footer .mc4wp-form p {
  margin-bottom: 0px;
}

.first-footer .mc4wp-form input {
  font-size: 15px;
  border: none;
  height: 45px;
}

.first-footer .mc4wp-form input[type="email"] {
  width: 97%;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.first-footer .mc4wp-form input[type="submit"] {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 45px;
  border-radius: 0px;
  font-family: inherit;
  text-transform: capitalize;
  padding: 0px 15px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.first-footer ul,
.second-footer ul {
  padding: 0px;
  margin: 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;
}

.first-footer ul li a:hover,
.second-footer ul li a:hover {
  text-decoration: none;
}

.footer {
  font-size: 13px;
  padding: 15px 0px 20px 0px;
}


/* -- Social Icons */

.second-footer ul.inline li a:before {
  font-family: 'FontAwesome';
  margin-right: 8px;
  font-size: 0.8em;
}

.second-footer ul.inline li.facebook a:before {
  content: "\f082";
}

.second-footer ul.inline li.twitter a:before {
  content: "\f099";
}

.second-footer ul.inline li.linkedin a:before {
  content: "\f0e1";
  position: relative;
  top: -1px;
}

.second-footer ul.inline li.google-plus a:before {
  content: "\f0d5";
}

/* -- 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;
  visibility: hidden;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.cd-top:before {
  text-indent: 0;
  font-family: 'Ionicons';
  content: "\f3d8";
  color: #222;
  font-size: 20px;
  position: absolute;
  right: 14px;
  top: 8px;
}

.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;
}</pre></body></html>