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

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

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

body {
  line-height: 1.5em;
}

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

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

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

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

strong, b {
    font-weight: bolder;
}

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

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

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

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

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

a img {
  border: 0;
}

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

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

cite {
  font-style: normal;
}

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

label {
  font-weight: inherit;
}

span.required {
  color: #e11f31;
}

.ls-one {
  letter-spacing: 1px;
}

/* -- Accessibility */

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

/* -- Containers */

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

.page-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  clear: both;
}

#primary {
  position: relative;
  z-index: 2;
}

/* -- Vertical Alignment */

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

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

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

.wpb_row.vc_row-flex {
  overflow: visible;
}

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

.vc_row-flex .vc_column_container>.vc_column-inner {
  display: flex;
}

.shadow .vc_column-inner > .wpb_wrapper {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

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

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

body.page-template-page-full-width .content-area .entry-content .container {
  position: relative;
}

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

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

.overlap {
  position: relative;
  z-index: 10;
}

.overflow-visible {
  overflow: visible;
}

.vc_row .container {
  padding: 0px;
}

/* -- Boxed */

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

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

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

/* -- Page Loader */

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

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

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

.spinner {
  margin: 0px auto;
  width: 70px;
  text-align: center;
  top: 50%;
  position: relative;
  margin-top: -9px;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #e2e2e2;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/*-------------------------------------------------------------------------*/
/*  2.0  Header
/*-------------------------------------------------------------------------*/

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

p.setup-message {
  margin: 0px;
  padding: 0px 0px;
  font-size: 15px;
  color: #333;
  text-align: right;
  line-height: 102px;
}

.text-logo {
  line-height: 102px;
}

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

.fixed-menu .text-logo,
.fixed-menu p.setup-message {
  line-height: 78px;
}

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

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

.cg-logo-left {
  position: relative;
}

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

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

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

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

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

.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;
  z-index: 2;
}

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

.cg-primary-menu > .cg-main-menu {
  text-align: right;
}

.cg-primary-menu > .cg-main-menu .menu ul {
  text-align: left;
}

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

.menu > li.right {
  float: right;
  margin-right: 0px;
  margin-left: 27px;
}

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

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

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

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

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

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

.cg-primary-menu .menu > li.button {
  padding: inherit;
  border-radius: 0px;
  font-size: inherit;
}

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

.cg-primary-menu .menu > li a {
  position: relative;
}

.cg-primary-menu .menu > li a span {
  position: relative;
}

.cg-primary-menu .menu > li a span:before {
  border-bottom: 2px solid;
  border-color: inherit;
  bottom: -4px;
  content: "";
  height: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: 0.24s all cubic-bezier(0.48, -0.01, 0.27, 1.21);
  transition: 0.24s all cubic-bezier(0.48, -0.01, 0.27, 1.21);
  -webkit-transform: translateZ(0) scaleX(0);
  transform: translateZ(0) scaleX(0);
  will-change: opacity, transform;
  width: 100%;
}

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

.cg-primary-menu .menu > li {
  margin-right: 18px;
}

.cg-primary-menu .menu > li > a {
  display: block;
  position: relative;
  color: #337ab7;
}

.cg-primary-menu .menu > li.right.button {
  margin-left: 7px;
  margin-right: 0px;
  padding: 0px;
}

.cg-primary-menu .menu > li.button a:before {
  display: none;
}

.menu > li.button > a span {
  padding: 8px 20px;
  background-color: transparent;
  border: 4px solid #ededed;
  transition: border 300ms ease-out;
  position: relative;
  top: -1px;
}

.menu > li.button > a:hover span {
  border-color: #ccc;
}

.menu > li.button > a span:before {
  display: none;
}

.menu > li.button.arrow > a span:after  {
  font-family: ionicons;
  margin-left: 8px;
  content: "\f30f";
  font-size: 14px;
}

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

.cg-primary-menu .menu > li.menu-item-has-children > a:after {
  content: "\f0dd";
  font-family: FontAwesome;
  position: absolute;
  font-size: 10px;
  margin-left: 5px;
  margin-top: -3px;
  font-weight: normal;
} 

.cg-primary-menu .menu > li.menu-item-has-children > a:before {
  opacity: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #222 transparent;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -12px;
}  

.cg-primary-menu .menu > li.menu-item-has-children:hover > a:before {
  opacity: 1;
}          

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

.cg-primary-menu .menu > li .cg-submenu-ddown {
  display: none;
  position: absolute;
  z-index: 1000;
  width: 210px;
  box-sizing: border-box;
  opacity: 0;
}

.cg-primary-menu .menu > li .cg-submenu-ddown {
  margin-left: -20px;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown {
  box-shadow: none;
}

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

.cg-submenu-ddown {
  z-index: 1000 !important;
}
   
.cg-primary-menu .menu > li:hover .cg-submenu-ddown {
  margin-top: 0px;
  opacity: 1;
}

.cg-primary-menu .menu > li.secondary:hover > a {
  opacity: 1;
}

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

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

.cg-primary-menu.cg-primary-menu-left .menu > li.menu-full-width .cg-submenu-ddown {
  margin: 0px;
  box-shadow: none;
}

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu li a {
  padding: 4px 20px;
  display: block;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu li a {
  padding: 3px 0px;
  display: block;
  color: #fff;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown ul {
  padding: 0px;
}

.menu > li.menu-full-width .cg-submenu-ddown {
  padding: 45px 0px 0px 0px;
  z-index: -2;
  background: #222;
  visibility: hidden;
}

.menu > li.menu-full-width .cg-submenu-ddown h2,
.menu > li.menu-full-width .cg-submenu-ddown h3,
.menu > li.menu-full-width .cg-submenu-ddown h4 {
  margin-top: 0px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.4em;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p {
  margin-bottom: 20px;
  line-height: 1.55em;
  color: #fff;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p.with-icon,
.mean-container .mean-nav ul li p.with-icon {
  margin-bottom: -4px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 11px;
  padding-left: 45px;
  position: relative;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p.with-icon i,
.mean-container .mean-nav ul li p.with-icon i {
  font-family: 'Ionicons';
  position: absolute;
  left: 0px;
  font-size: 36px;
  top: 3px;
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p.with-icon i.ion-ios-location-outline {
  margin-left: 6px;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p.with-icon i.ion-ios-telephone-outline {
  margin-left: 4px;
}

body .menu > li.menu-full-width .cg-submenu-ddown li p small {
  font-size: 90%;
}

.cg-primary-menu .menu > li.menu-full-width:hover .cg-submenu-ddown {
  z-index: -1;
  visibility: visible;
  transition: visibility 0s linear 0.2s, -webkit-transform 0.4s ease 0.2s;
  transition: transform 0.4s ease 0.2s, visibility 0s linear 0.2s;
  transition: transform 0.4s ease 0.2s, visibility 0s linear 0.2s, -webkit-transform 0.4s ease 0.2s;    
}

.menu > li.menu-full-width:hover .cg-submenu-ddown li {
  font-size: 0px;
}

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

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

.cg-primary-menu .menu > li .cg-submenu-ddown ul {
  padding: 12px 0px;
}

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

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

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

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

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

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

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

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

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li > a,
.cg-submenu-ddown .container > ul > li > a {
  padding: 7px 20px;
  font-size: 15px;
  line-height: 1.4em;
  display: block;
  transition: 0.1s all ease-in-out;
  color: #333;
}

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

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

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

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  position: absolute;
  left: 205px;
  background-color: #fff;
  top: 0px;
  margin-top: -12px;
}

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

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  display: none;
  width: 210px;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  display: block;
  width: auto;
  left: auto;
  background-color: transparent;
  box-shadow: none;
  margin: auto;
  position: inherit;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown {
  width: 100%;
  left: 0;
}

.cg-primary-menu .menu > li.menu-full-width .cg-submenu-ddown .container {
  padding: 0px 15px;
}

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

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

/* -- 4 Columns */
.cg-primary-menu .menu > li.menu-full-width.col-4 .cg-submenu-ddown {
  width: 100%;
  left: 0px;
}

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

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

/* -- 3 Columns */
.cg-primary-menu .menu > li.menu-full-width.col-3 .cg-submenu-ddown {
  width: 100%;
  left: 0px;
}

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

body .cg-primary-menu .menu > li.menu-full-width.col-3 .cg-submenu-ddown .container > ul > li:nth-of-type(2n) {
  padding: 0px 60px;
}

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

/* -- 2 Columns */
.cg-primary-menu .menu > li.menu-full-width.col-2 .cg-submenu-ddown {
  width: 100%;
  left: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children > a:after {
  content: "\f105";
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 11px;
  position: absolute;
  top: 6px;
  right: 20px;
}

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

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

.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li img {
  margin-bottom: 10px;
  -webkit-backface-visibility: hidden;
  width: 100%;
  opacity: 0.85;
  transition: all 200ms ease-in-out;
}

.cg-primary-menu .menu .menu-full-width .cg-submenu-ddown .container > ul > li a:hover img {
  opacity: 1;
}

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

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

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

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

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

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

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

.cg-primary-menu .menu > li.icon a {
  position: absolute;
  top: 0px;
  padding: 0px 5px;
}

.cg-primary-menu .menu > li.icon a span:before {
  display: none;
}

.cg-primary-menu .menu > li.icon a span {
  font-size: 0px;
}

.cg-primary-menu .menu > li.icon a:focus {
  outline: none;
}

#wrapper {
  padding-top: 102px; /* dynamic */
}

.cg-menu-below {
  position: absolute; /* Changes to fixed if sticky nav is enabled */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  box-sizing: border-box;
}

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

/* -- Default Menu -- */

body:not(.wpb-js-composer) .rightnav ul.menu > li > a {
  line-height: 102px;
}

body:not(.wpb-js-composer) .cg-submenu-ddown {
  background: #222;
}

body:not(.wpb-js-composer) .cg-primary-menu .menu > li .cg-submenu-ddown .container > ul > li > a, 
body:not(.wpb-js-composer) .cg-submenu-ddown .container > ul > li > a,
body:not(.wpb-js-composer) .cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu li a {
  color: #eee;
}

body:not(.wpb-js-composer) .cg-primary-menu .menu > li .cg-submenu-ddown .container > ul .menu-item-has-children .cg-submenu {
  background-color: #222;
}

/* -- WPML within the Navigation Menu -- */

.cg-primary-menu .menu > li.menu-item-language {
  float: none;
  margin-left: 0px;
  position: relative;
}

.cg-primary-menu .menu > li.menu-item-language img,
.mean-container .mean-bar li.menu-item-language img  {
  position: relative;
  top: 1px;
  margin-right: 6px;
}

.cg-primary-menu .menu > li.menu-item-language ul.sub-menu {
  display: none;
  width: 210px;
  padding: 12px 0px;
}

.cg-primary-menu .menu > li.menu-item-language ul.sub-menu li {
  list-style: none;
}

.cg-primary-menu .menu > li.menu-item-language ul.sub-menu li a {
  display: block;
  padding: 7px 20px;
  line-height: 1.4em;
}

.cg-primary-menu .menu > li.menu-item-language ul.sub-menu li img {
  position: relative;
  top: -1px;
  margin-right: 8px;
}

.cg-primary-menu .menu > li.menu-item-language:hover ul {
  display: block;
  position: absolute;
}

.cg-primary-menu .menu > li.menu-item-language .cg-menu-ul {
  width: 210px;
  background-color: #111;
}


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

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

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

.cg-announcements {
  font-size: 15px;
  background-color: #444;
  color: #fff;
  line-height: 1.5em;
}

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

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

.cg-announcements .textwidget {
  padding: 9px 0px 8px 0px;
  font-weight: 400;
}

.cg-announcements .top-bar-right .textwidget {
  float: right;
}

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

.cg-announcements ul li {
  display: inline;
  list-style: none;
  font-weight: 400;
  font-size: 13px;
}

.cg-announcements ul li a {
  display: inline-block;
  padding: 10px 11px;
}

.cg-announcements ul li a:hover {
  background-color: #cb4937;
}

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

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

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

.mobile-search-reveal input.search-field,
.mobile-search-reveal input.search-field:focus {
  border: none;
  background-color: transparent;
  padding: 0px;
  box-shadow: none;
  font-size: 26px;
}

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

.mobile-search-reveal input.search-field::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}

.mobile-search-reveal input::-moz-placeholder {
  color: #333;
  opacity: 1;
}

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

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

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


/* -- Mobile Search */

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

.mobile-search i {
  position: relative;
  top: 3px;
}

.mobile-reveal {
  display: none;
  top: 0px;
  width: 100%;
  padding-top: 15px;
}

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

.mobile-reveal i {
  position: absolute;
  top: 17px;
  right: -13px;
  font-size: 16px;
}

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

.mobile-search-reveal .activate-mobile-search {
  position: absolute;
  right: 15px;
  cursor: pointer;
  z-index: 2;
}

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

.activate-mobile-search.close {
  opacity: 1;
  text-shadow: none;
  right: 20px;
  transition: all 200ms ease-in-out;
}

.activate-mobile-search.close:hover {
  opacity: 1;
}

.mobile-search-reveal {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0px;
  z-index: 100;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
}

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

.leftnav,
.rightnav {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.search-active .leftnav {
  opacity: 0.03;
}

.search-active .rightnav {
  opacity: 0.08;
}

.search-active .mobile-search-reveal {
  opacity: 1;
  visibility: visible;
}

body.admin-bar .cg-menu-below {
  top: 32px;
}

.cg-menu-below,
.fixed .cg-menu-below,
.cg-menu-below .container.width-auto,
.fixed .cg-menu-below .container.width-auto {
  transition: all 0.5s;
}

.cg-menu-below ul.menu {
  margin-bottom: 0px;
}

.cg-menu-below .menu > li > a, 
.cg-menu-below .leftnav a {
  transition: all 0.5s;
}

.fixed .cg-menu-below input.search-field {
  height: 76px;
}

.fixed .site-search,
.fixed .activate-mobile-search.close {
  line-height: 76px;
}

.leftnav .cg-main-logo img {
      transition: all 0.5s;
}

/*-------------------------------------------------------------------------*/
/*  6.0  Mobile Menu        
/*-------------------------------------------------------------------------*/

a.meanmenu-reveal {
  display: none;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  position: absolute;
  padding: 0px 10px 0px 0px;
  top: 0px;
  right: 15px;
  cursor: pointer;
  transform: translateY(50%);
  margin-top: -11px;
}

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

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

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

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

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

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

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

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

.mean-container .mean-nav ul li,
.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li {
  position: relative;
  border-top: 1px solid #eee;
  clear: both;
  overflow: hidden;
}

.mean-container .mean-nav ul li.activate-mobile-search {
  display: none;
}

.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li li {
  border: none;
}

.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,
.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li a {
  display: block;
  padding: 10px 18px 10px 0px;
  font-size: 16px;
  margin: 0;
  text-align: left;
  color: #333;
  font-weight: 300;
  text-decoration: none;    
}

.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li a.mean-expand {
  padding: 12px 9px 12px 12px;
  text-align: right;
  top: -2px;
}

.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li.text a {
  padding: 0px;
}

.mean-container .mean-nav ul li li a,
.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li li a {
  font-size: 15px;
  padding: 0em 0% 0.7em 15px;
  border-top: none;
  text-shadow: none;
  visibility: visible;
  font-weight: 300;
  color: #666;
}

.mean-container .mean-nav ul li.menu-full-width.menu-item-has-children li li a {
  padding-bottom: 0.3em;
}

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

.mean-container .mean-nav ul li li li a {
  padding: 0.0em 7.5% 0.2em 30px;
  font-size: 14px;
}

.mean-container .mean-nav .menu-full-width h3,
.mean-container .mean-nav .menu-full-width h4,
.mean-container .mean-nav .menu-full-width h5,
.mean-container .mean-nav .menu-full-width h6,
.mean-container .mean-nav .menu-full-width h6 a {
  margin-top: 0px;
  margin-bottom: 5px;
  padding-bottom: 0px;
}

.mean-container .mean-nav .menu-full-width h2 {
  margin: 10px 0px 0px 0px;
}

.mean-container .mean-nav .menu-full-width h2,
.mean-container .mean-nav .menu-full-width h3,
.mean-container .mean-nav .menu-full-width h4 {
  font-size: 20px;
}

.mean-container .mean-nav .menu-full-width img {
  margin-top: 15px;
}

.mean-container .mean-nav .menu-full-width h4 {
  margin-top: 15px;
}

.mean-container .mean-nav .menu-full-width p {
  font-size: 16px;
  color: #333;
  line-height: 1.6em;
}

.mean-container .mean-nav .menu-full-width p br {
  display: none;
}

.mean-container .mean-nav .menu-full-width p small {
  display: block;
  opacity: 0.65;
}

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

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

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

.mean-container .mean-nav ul li li a.mean-expand {
  top: -15px;
}

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

.mean-nav .cg-submenu-ddown .container {
  padding: 0px;
  width: auto;
}

.mean-nav .cg-submenu-ddown .container ul li {
  border: none; 
}

.mean-container .mean-nav ul li.menu-full-width li {
  font-size: 0px;
}

.mean-container .mean-nav ul li.menu-full-width li a.arrow {
  display: inline-block;
  width: auto;
  float: none;
  padding: 0px;
}

.mean-container .mean-nav ul ul {
  margin-bottom: 7px;
}


/*-------------------------------------------------------------------------*/
/*  7.0  Page Heading
/*-------------------------------------------------------------------------*/

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

body:not(.wpb-js-composer) .header-wrapper {
  display: none;
}

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

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

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

.header-wrapper h1.cg-page-title {
  margin: 0px;
  color: #fff;
  position: relative;
  z-index: 3;
}

.header-wrapper .cg-page-text {
  margin-top: 10px;
}

.header-wrapper p.secondary {
  margin-bottom: 0.55em;
  font-size: 22px;
  color: #fff;
  line-height: 1.55em;
}

.header-wrapper .entry-header {
  width: 100%;
}

body.single-post .header-wrapper .entry-header {
  width: 80%;
}

.cg-heading-align-center .entry-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body:not(.wpb-js-composer) .cg-heading-align-center .entry-header {
  text-align: left;
}

.header-wrapper p a {
  display: inline-block;
  padding: 0.35em 28px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  border: 4px solid #fff;
  letter-spacing: 0.65px;
  margin-top: 10px;
}

.header-wrapper p a:hover {
  opacity: 0.75;
  color: #fff;
}

.header-wrapper .cg-page-text p {
  line-height: 1.7em;
  margin: 0.1em 0em 0.7em 0em;
}

.header-wrapper .cg-page-text .posted-on {
  opacity: 0.75;
  display: block;
  margin-bottom: -0.7em;
}

body.search-results .header-wrapper h1.cg-page-title {
  max-width: 100%;
}

/*-------------------------------------------------------------------------*/
/*  8.0  Breadcrumbs and Sharing
/*-------------------------------------------------------------------------*/

.breadcrumbs-wrapper {
  position: relative;
  padding: 30px 0px 30px 0px;
  font-size: 14px;
  font-weight: 300;
}

.breadcrumbs-wrapper p.sub-title {
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.breadcrumbs-wrapper span.breadcrumb_last {
  color: #999;
}

.breadcrumbs-wrapper p.sub-title a:hover {
  opacity: 1;
}

.breadcrumbs-wrapper a:after {
  content: "/";
  font-style: normal;
  margin-left: 12px;
  position: relative;
  top: -1px;
  color: #ccc;
}

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

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

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

/* Share Dropdown */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Google+ */
.cg-share .dropdown-menu > li > a.googleplus:before {
  content: "\f0d5";
  font-family: "FontAwesome";
  color: #d94d33;
  font-size: 11px;
}

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

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

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

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

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

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

/*-------------------------------------------------------------------------*/
/*  9.0  Sidebar and Widgets
/*-------------------------------------------------------------------------*/

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

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

#secondary ul.children,
#secondary ul.sub-menu {
  margin: 12px 0px 15px 0px;
}

.widget.widget_nav_menu ul.children,
.widget.widget_nav_menu ul.sub-menu,
.widget.widget_pages ul.children,
#secondary .widget.widget_pages ul.children,
#secondary .widget.widget_pages ul.sub-menu,
#secondary .widget_nav_menu ul.sub-menu,
.widget_nav_menu ul.sub-menu,
.widget_pages ul.children,
.widget.widget_pages ul.sub-menu,
.widget.widget_nav_menu ul.sub-menu  {
  margin-left: 15px;
}

.widget_nav_menu ul.sub-menu,
.widget_pages ul.children {
  margin-left: 15px;
  margin-top: 8px;
}

.widget li.activate-mobile-search,
.widget_nav_menu li.activate-mobile-search {
  display: none;
}

.widget .menu > li.right,
.widget_nav_menu .menu > li.right {
  float: none;
  margin-left: 0px;
}

#secondary ul.children li,
#secondary ul.sub-menu li {
  font-size: 15px;
  margin-bottom: 2px;
}

abbr[title] {
  border-color: #ccc;
}

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

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

/* Sticky Sidebar Feature */

#secondary aside.sticky {
  margin-bottom: 0px;
}

body.logged-in #secondary aside.sticky.is_stuck {
  margin-top: 30px;
}

/* Featured Widget */

.widget.boxed {
  border: 2px solid #eee;
  padding: 16px 20px 12px 15px;
  line-height: 1.45em;
}

.widget.icon .textwidget {
  position: relative;
  padding-left: 42px;
}

.widget.boxed small {
  opacity: 0.7;
  display: block;
}

.widget.icon .textwidget i {
  position: absolute;
  top: 4px;
  left: 5px;
  font-size: 24px;
}

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

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

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

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

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

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

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

.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-weight: 400;
  margin-bottom: 10px;
}

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

.sidebar {
  display: flex;
}

.sidebar #secondary {
  webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sidebar.right-sidebar #secondary .advanced-sidebar-menu ul li a {
  border-right: none;
  border-left: 3px solid #f5f5f5;
  padding-left: 18px;
}

.hidden-title .sidebar {
  margin-top: 30px;
}

#secondary h4.widget-title {
  position: relative;
  margin-top: 0px;
  margin-bottom: 15px;
}

.sidebar #secondary .textwidget img {
  width: 100%;
  margin: 0px;
}

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

.sidebar ul,
.below-main-content ul {
  padding: 0px;
  margin-bottom: 0px;
}

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

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

.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_categories ul li:last-child {
  border: none;
  margin-bottom: 0px;
}

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

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

.widget_recent_comments ul li,
.widget_recent_entries ul li,
#secondary .widget_recent_entries ul li {
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
}

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

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

.first-footer .widget_recent_comments ul li,
.first-footer .widget_recent_entries ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
}

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

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

.first-footer h4 {
  margin-top: 0px;
  margin-bottom: 18px;
}


/* -- Newsletter Widget */

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

.mc4wp-form {
  position: relative;
}

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

.first-footer .mc4wp-form input[type="submit"] {
  border: none;
  position: absolute;
  line-height: 0px;
  top: 2px;
  right: 2px;
  height: 41px;
  font-size: 15px;
  color: #111;
  text-indent: -9999px;
  background-color: transparent;
  z-index: 1;
}

.first-footer .mc4wp-form {
  position: relative;
  margin-bottom: 28px;
}

.first-footer .mc4wp-form:after {
  position: absolute;
  content: "\f101";
  font-family: 'FontAwesome';
  z-index: 0;
  font-size: 20px;
  top: 13px;
  right: 15px;
  color: #555;
  text-indent: 0px;
}

.mc4wp-form input[type="email"] {
  width: 100%;
  height: 50px;
  border: 3px solid #5a6164;
}

.mc4wp-form input[type="email"]:focus {
  border: 3px solid #5a6164;
  outline: none;
  box-shadow: none;
}

.first-footer .fa {
  font-size: 24px;
  margin-right: 12px;
}

/* -- Tags Widget */

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

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

/* -- 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;
  padding: 5px 0px;
  color: #888;
}

#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 */

#secondary .widget_recent_entries ul {
  margin-right: 10px;
}

body .widget span.post-date {
  display: block;
  font-size: 14px;
  margin-top: 2px;
}


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

.widget_rss .rss-date {
  font-size: 14px;
  opacity: 0.5;
  display: block;
}

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

/* -- Counts */

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


/* -- Widget Buttons */

.widget.button {
  padding: 0px;
}

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

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

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

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

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

/* -- Popular Posts */

#secondary ul.wpp-list li {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  padding-top: 2px;
}

body .wpp-thumbnail {
  max-width: 65px;
  margin-right: 15px;
  margin-top: 3px;
  margin-bottom: 5px;
}

body .post-stats {
  font-size: 14px;
  font-weight: inherit;
  text-transform: capitalize;
  margin-top: 2px;
}

/* -- Selects */

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

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

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

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

.widget_sp_image img {
  width: 100% !important;
}

#secondary .widget_sp_image-description p {
  font-size: 14px;
  line-height: 1.6em;
  margin-top: 12px;
}

/* -- Advanced Sidebar Menu Widget */

#secondary .advanced-sidebar-menu h4.widget-title {
  padding-bottom: 0px;
}

.sidebar .advanced-sidebar-menu h4.widget-title:after {
  display: none;
}

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

#secondary .advanced-sidebar-menu ul li.current_page_item > a,
#secondary .advanced-sidebar-menu ul li.current_page_item > a:hover {
  background-color: #f1f1f1;
  border-color: #e01e26;
}

.sidebar.right-sidebar #secondary .advanced-sidebar-menu ul li > a:hover {
  border-color: #e01e26;
}

#secondary .advanced-sidebar-menu ul > li > a:hover {
  background-color: #f1f1f1;
}

#secondary .advanced-sidebar-menu ul li a:hover {
  color: #e01e26;
}

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

#secondary .advanced-sidebar-menu ul li a {
  color: #343434;
  padding: 13px 12px 13px 16px;
  display: block;
  background: #f5f5f5;
  border-right: 3px solid #f5f5f5;
  margin-bottom: 2px;
  text-align: left;
  position: relative;
  transition: all 0.25s ease-in-out;
}

#secondary .advanced-sidebar-menu ul li a {
  display: block;
}

#secondary .advanced-sidebar-menu ul > li > a:hover,
.sidebar.right-sidebar #secondary .advanced-sidebar-menu ul > li > a:hover {
  border-color: #ccc;
}

#secondary .advanced-sidebar-menu ul.children {
  margin: -2px 0px 2px 0px;
}

#secondary .advanced-sidebar-menu ul ul.children li a {
  margin: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}

/* -- Sidebar Features */

.sidebar #secondary aside.widget.feature {
  text-align: left;
  background: #F7F7F7;
  border: 1px solid #f7f7f7;
  padding: 12px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}

.sidebar #secondary aside.widget.feature:hover {
  border-color: #eee;
}

.sidebar #secondary aside.widget.feature.first {
  margin-top: -32px;
}

.sidebar #secondary > aside.widget.feature.last {
  margin-bottom: 50px;
}

.sidebar .widget.feature .textwidget {
  display: table;
}

.widget.feature .image {
  display: table-cell;
  max-width: 100px;
}

.sidebar #secondary .widget.feature .image img {
  margin: 0px;
  max-width: 95px;
  width: auto;
  padding-right: 13px;
}

.sidebar #secondary .widget.feature a {
  color: #333;
  font-weight: 400;
}

.sidebar #secondary .widget.feature a small {
  color: #888;
  font-weight: 300;
}

.widget.feature .text {
  display: table-cell;
  font-size: 16px;
  line-height: 1.2em;
  vertical-align: top;
  position: relative;
  top: -2px;
}

.widget.feature .text small {
  display: block;
  margin-top: 4px;
}

/*-------------------------------------------------------------------------*/
/*  10.0  Blog
/*-------------------------------------------------------------------------*/

body.blog .site-main,
body.archive .site-main,
body.single-post .site-main {
  padding-right: 30px;
}

body.blog .site-main.grid-news,
body.archive .site-main.grid-news {
  padding-right: inherit;
}

body.blog .site-main.with-left-sidebar,
body.archive .site-main.with-left-sidebar,
body.single-post .site-main.with-left-sidebar,
.pagination-with-left-sidebar {
  padding-right: 0px;
  padding-left: 30px;
}

body.search-results .cg-blog-layout article {
  padding: 0px;
  margin-bottom: 40px;
  border: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}

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

.cg-blog-layout article.type-post {
  padding: 45px;
  border: 2px solid #f2f2f2;
  margin-bottom: 40px;
}

.cg-blog-layout article.type-post:last-child {
  margin-bottom: 0px;
}

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

.cg-blog-article .image {
  margin: 0px -47px 0px -47px;
}

.cg-blog-article .image img {
  width: 100%;
  margin-top: -47px;
  margin-bottom: 30px;
}

.content-area .cg-blog-article h2,
.content-area .cg-blog-article p {
  margin-bottom: 12px;
}

.content-area .cg-blog-article h2 {
  font-size: 36px;
  line-height: 1.25em;
}

/* -- Title */

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

.content-area h2.entry-title a {
  color: #111;
  display: block;
  margin-right: 10px;
}

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

/* -- Meta */

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

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

.blog-meta span {
  position: relative;
}

.cg-blog-article footer,
body.single footer.entry-meta {
  font-size: 14px;
  color: #999;
  clear: both;
}

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

.default-blog:last-child footer,
.search-results .cg-blog-article:last-child footer {
  border-bottom: none;
}

body.single footer.entry-meta {
  margin: 0px;
  padding: 14px 0px 0px 0px;
  border: none;
}

body.single footer.entry-meta a {
  color: inherit;
  text-transform: capitalize;
}

/* -- Categories & Tags */

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

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

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

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

.blog-meta span.cg-blog-date:after, 
.blog-meta span.cg-blog-author:after {
  position: absolute;
  opacity: 0.4;
  content: "";
  width: 1px;
  height: 20px;
  background: #ccc;
  top: 0px;
  margin-left: 13px;
}

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

/* -- Post Navigation */

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

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

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

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

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

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

/* -- Author Details */

.author-info {
  border: 4px solid #ededed;
  padding: 25px 30px;
  margin-top: 40px;
}

.author-info-inner {
  display: table;
  width: 100%;
}

.author-avatar,
.author-description {
  display: table-cell;
  vertical-align: top;
}

.author-avatar img {
  margin: 3px 20px 0px 0px;
}

.author-avatar { 
  width: 95px; 
}

.content-area .author-description p {
  margin-bottom: 0px;
  color: #666;
}

.content-area .author-description p strong {
  color: #333;
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}

/* -- Page Navigation */

.pagination-wrapper {
  min-height: 50px;
}

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

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

.content-area .blog-pagination ul li.dots {
  position: relative;
  top: 3px;
}

.content-area .blog-pagination ul li a {
  display: inline-block;
  padding: 8px 0px;
  color: inherit;
  color: #333;
}

nav#image-navigation {
    margin: 40px 0;
}

/* -- Related Posts (Jetpack) */

.related-wrapper {
  background-color: #f6f6f6;
  margin-top: 60px;
  margin-bottom: -56px;
  position: relative;
  padding: 50px 0px 20px 0px;
}

body #jp-relatedposts {
  margin: 0px 5px 0px -15px;
  margin-top: 0em;
  padding-top: 0em;
}

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

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
  font-weight: inherit;
}

body #jp-relatedposts .jp-relatedposts-items p {
  font-size: 16px;
}

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

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
  display: none;
}

body #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{
  opacity: 1;
}

body #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
  font-size: 16px;
  letter-spacing: 0px;
  margin-top: 16px;
  line-height: 1.5em;
}

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

body #jp-relatedposts h3.jp-relatedposts-headline {
  display: none;
}

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span.jp-relatedposts-post-title {
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 5px;
}

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover,
body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
  text-decoration: none;
}

body #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
  padding-right: 0px;
}

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
  width: 20%;
  padding: 0px 15px;
}

body #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4), 
body #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
  clear: none;
}

/* Grid Layout */

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

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

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

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

.content-area .grid-news h2 {
  font-size: 22px;
  line-height: 1.35em;
}

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

.content-area .grid-news .news-summary {
  background: #fff;
  position: relative;
  z-index: 2;
  padding-top: 2px;
  padding-bottom: 30px;
  border-top: 3px solid transparent;
}

.content-area .grid-news .entry-header {
  position: relative;
}

.content-area .news-summary p {
  padding-top: 14px;
  margin-bottom: 6px;
  font-size: 15px;
}

.content-area .grid-news .date {
  color: #777;
  font-size: 14px;
  display: inline-block;
  position: relative;
  margin-bottom: 0px;
}

.content-area .grid-news article {
  margin-bottom: 65px;
  border: none;
}

/* First paragraph on a blog post stylng */

body.single-post #primary article.type-post .entry-content > p:first-child {
    font-size: 1.3em;
    line-height: 1.55em;
    margin-right: 10px;
}

body.single-post #primary article.type-post .entry-content > p:first-of-type:first-letter {
  float: left;
  font-size: 3.45em;
  font-weight: 700;
  line-height: 50px;
  margin: 8px 10px -5px 0
}

/*-------------------------------------------------------------------------*/
/*  11.0  Comments
/*-------------------------------------------------------------------------*/

.comments-wrapper {
  border-top: 1px solid #eee;
  margin-top: 55px;
}

.comments-area {
  margin: 55px 0% 55px 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: 30px;
  text-align: center;
  font-weight: inherit;
}

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

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

.comment-author a {
  color: inherit;
}

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

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

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

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

.comment-list .reply {
  margin-top: 20px;
}

.comment-list .reply a {
  background-color: #ccc;
  color: #fff;
  border-radius: 15px;
  padding: 5px 15px 3px 15px;
  font-size: 14px;
}

.comment-list .reply a:hover {
  background-color: #999;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-form textarea {
  max-height: 150px;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

.content-area .comment-form p.comment-subscription-form:last-child {
  margin-bottom: 0px;
}

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

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

.woocommerce .comment-form label {
  margin-top: 3px;
}

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

.comment-form #submit {
  margin-top: 8px;
}

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


/*-------------------------------------------------------------------------*/
/*  12.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"] {
  border: none;
  padding: 10px 20px;
  transition: all 0.15s ease-in 0s;
  font-size: 15px;
}

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

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

.wpcf7-form input[type="submit"] {
  width: auto;
}

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

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

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

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

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

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

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

/* -- Button Style -- */

.below-main-content .button a,
.entry-content a.more-link,
#respond input#submit,
.wpcf7-form input[type="submit"],
.content-area a.main-button {
  display: inline-block;
  padding: 0.8em 28px;
  font-size: 15px;
  font-weight: 500;
  border: 4px solid #ededed;
  text-align: center;
  line-height: 1.4em;
  background-color: transparent;
}

.below-main-content .button a:hover,
.entry-content a.more-link:hover,
#respond input#submit:hover,
.wpcf7-form input[type="submit"]:hover,
.content-area a.main-button:hover {
  border-color: #ccc;
}

body .content-area a.main-button {
  border-color: #ddd;
}

.entry-content a.more-link {
  margin-top: 20px;
  margin-bottom: -10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* -- Spacing */

body.page-template-default article.type-page {
  padding-left: 0px;
  padding-right: 0px;
}

body.page-template-default .content {
  padding-bottom: 50px;
}

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

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

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

/* -- Headings */

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

.content-area .wpb_wrapper > h2:first-child,
.content-area .wpb_wrapper > h3:first-child,
.content-area .wpb_wrapper > h4:first-child,
.content-area .wpb_wrapper > h5:first-child,
.content-area .wpb_wrapper > h6:first-child {
  margin-top: 0px;
}

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

#primary article.type-page .entry-content .wpb_wrapper > h5:first-child {
    margin-top: 0px;
}

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

.content-area h3.vc_custom_heading {
  margin-top: 0px;
}

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

h6 {
  margin-top: 5px;
}

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

/* -- Links */

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

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

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

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

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

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

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

.content-area a.email:before {
  font-family: 'Ionicons';
  content: "\f422";
  margin-right: 12px;
  position: relative;
  top: 6px;
  font-size: 28px;
  font-weight: inherit;
}

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

/* -- Blockquotes */

.content-area blockquote {
  padding: 30px 30px 30px 70px;
  border-left: none;
  margin: 30px 0px;
  background-color: #f5f5f5;
  position: relative;
  
}

.content-area blockquote:before {
  color: #124a81;
  content: "\201C";
  font-size: 3.3em;
  position: absolute;
  left: 30px;
  top: 53px;
  line-height: 0.1em;
  font-family: "Times New Roman";
}

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

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

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


/* -- HR Rule */

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

.separator.small {
  width: 42px;
}

.separator.small.left {
  margin: 0px;
}

/* -- 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 ul li {
  margin-bottom: 3px;
}

.content-area ul.tick {
  padding-left: 0px;
}

.content-area ul.tick li {
  position: relative;
  padding-left: 25px;
  list-style: none;
  margin-bottom: 7px;
  line-height: 1.45em;
}

.content-area ul.tick li:before {
  font-family: "Ionicons";
  content: "\f3fe";
  position: absolute;
  left: 0px;
}

.content-area h4.tick:before {
  font-family: "Ionicons";
  content: "\f3fe";
  top: 1px;
  margin-right: 10px;
  position: relative;
}

.content-area article.post ul.dividers li {
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid #eee;
}

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

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

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

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

.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: disc; 
  padding-top: 0%;
  margin-bottom: 0.8em;
}

dd {
  margin-bottom: 12px;
}

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

/* -- Images & Captions */

body .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, 
body .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
  border-radius: 2px;
}

.content-area ul.display-posts-listing li a.image {
  position: relative;
  display: block;
}

body .wpb_single_image .vc_figure a.vc_single_image-wrapper:after,
.content-area ul.display-posts-listing li a.image:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.1);
  position: absolute;
  top: 0px;
  transition: all 0.2s ease 0s;
  opacity: 0;
}

body .wpb_single_image .vc_figure a.vc_single_image-wrapper.vc_box_rounded:after {
  border-radius: 4px;
}

body:not(.home) .wpb_single_image .vc_figure a.vc_single_image-wrapper:hover:after,
.content-area ul.display-posts-listing li a.image:hover:after {
  opacity: 1;
}

.wpb_wrapper.vc_figure {
  position: relative;
}

.gallery-caption {
  display: inline-block; 
  font-size: 14px;
  margin-top: 15px;
}

#gallery-1 {
  margin: 0px -10px;
}

#gallery-1 .gallery-item {
  padding: 0px 10px;
}

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

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

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

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

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

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

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

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

.wpb_single_image .vc_figure {
  position: relative;
}

.content-area .entry-content p.wp-caption-text,
.content-area .wpb_single_image .vc_figure-caption {
  padding: 12px 0px;
  width: 100%;
  font-size: 14px;
  line-height: 1.55em;
  margin: 0px;
  color: #888;
  border-bottom: 2px solid #eee;
}

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

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

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

/* Zoom effect */

.wpb_single_image.zoom {
  overflow: hidden;
}

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

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

.wpb_single_image.zoom a {
  display: block;
}

/* Gallery */

body #gallery-1 img {
  padding: 3px;
  border: 1px solid #eee;
}

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

/* -- Data Table Style */

.content-area table.data {
  border: none;
  margin: 0px;
}

.content-area table.data th,
.content-area table.data td {
  padding: 0.7em 1em 0.7em 0em;
  border-bottom-color: #eee;
  border-right: none;
  font-weight: inherit;
}

.content-area table.data th {
  background-color: transparent;
  font-size: 28px;
}

.content-area table.data td {
  font-size: 18px;
}


/* -- Pre, Code and KPD */

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

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

/* -- Buttons */

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

/* -- VC Posts Grid -- */

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

/* -- Tabs */

body .vc_tta.vc_general .vc_tta-tab > a {
  padding: 9px 16px;
}

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

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

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

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab > a {
  background-color: transparent;
  border: 1px solid #e2e2e2;
  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 > a {
  background: #f7f7f7;
  border-color: #f7f7f7;
}

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

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

body .vc_tta.vc_general .vc_tta-tab {
  border: 1px solid #e2e2e2;
  border-bottom: none;
  margin-bottom: -1px;
}

body .vc_tta.vc_general .vc_tta-tab.vc_active {
  border-bottom: 1px solid #fff;
}

body .vc_tta.vc_general .vc_tta-panels-container {
  margin-top: -1px;
  border: 1px solid #e2e2e2;
}

body .vc_tta.vc_general.vc_tta-pageable .vc_tta-panels-container {
  border: none;
}

body .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-title > a {
  color: inherit;
}

body .vc_tta.vc_general .vc_tta-tab {
  margin-bottom: 0px;
}

body .vc_tta.vc_general .vc_tta-panels-container {
  margin-top: -1px;
  border: 1px solid #e2e2e2;
  overflow: hidden;
}

/* Accordion */

body .vc_tta.vc_general.vc_tta-accordion .vc_tta-panels-container {
  border: none;
  margin: 0px;
}

body .vc_tta.vc_general .vc_tta-panel-title > a {
  line-height: 1.4em;
  padding: 12px 20px;
}

.vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
  border: 1px solid #eee;
}

.vc_tta.vc_general .vc_tta-panel .vc_tta-panel-body {
  border: 1px solid #eee;
  margin-top: -1px;
}

.content-area .vc_tta-accordion h4 {
  font-size: 16px;
  letter-spacing: 0px;
}

body .vc_tta .vc_tta-controls-icon {
  height: 10px;
  width: 10px;
}

body .vc_tta.vc_tta-accordion .vc_tta-panel-title {
  font-weight: 400;
}

body .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading:focus, 
body .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: #fafafa;
}

body .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
  right: 16px;
}

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

.content-area .vc_tta-accordion h5 {
  margin: 0px;
}

.content-area .vc_tta-accordion h6 {
  margin-bottom: 7px;
}

body .vc_tta.vc_general .vc_tta-panel.vc_active:last-child {
  padding-bottom: 16px;
}

/* -- Pretty Photo Lightbox */

body div.pp_default .pp_details {
  position: inherit;
}

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;
  position: absolute;
  font-size: 0px;
  top: 12px;
  right: 35px;
  z-index: 100000;
}

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 #eee;
  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 {
  margin-bottom: 10px;
  line-height: 1.6em;
}

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

body .vc_toggle_size_md.vc_toggle_default .vc_toggle_title {
  padding-left: 0px;
  padding-top: 27px;
  transition: all 0.2s ease 0s;
}

body .vc_toggle_size_md.vc_toggle_default .vc_toggle_content {
  padding-left: 0px;
  padding-top: 8px;
}

body .content-area .vc_toggle_title {
  padding-right: 45px;
}

body .content-area .vc_toggle_title h4 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0px;
  position: relative;
  top: 2px;
}

body .vc_toggle_size_md.vc_toggle_default .vc_toggle_icon {
  right: 4px;
  left: auto !important;
  visibility: hidden;
  margin-top: 13px;
}

body .vc_toggle_size_md.vc_toggle_default .vc_toggle_icon:before {
  height: 16px;
  width: 2px;
  border: none;
  visibility: visible;
}

body .vc_toggle_size_md.vc_toggle_default .vc_toggle_icon:after {
  width: 16px;
  height: 2px;
  border: none;
  visibility: visible;
}

body .vc_toggle_size_md.vc_toggle_default.vc_toggle_active .vc_toggle_icon:before {
  visibility: hidden;
}

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

/* -- 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 .owl-wrapper-outer {
  overflow: hidden;
  padding-bottom: 5px;
}

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

/* -- 404 Page */

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

/* -- Homepage Shadow Features -- */

.shadow .vc_column-inner > .wpb_wrapper {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: all 0.3s ease-in-out 0s;
}

.shadow:hover .vc_column-inner > .wpb_wrapper {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

.shadow h5 {
  padding: 0px 0px 5px;
}

a.simple-arrow:after {
  content: "\f0da";
  font-family: FontAwesome;
  margin-left: 7px;
  font-size: 14px;
}

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

.content-area h5.weight-light {
  font-weight: lighter;
}

/* -- Homepage Image Cards */

.wpb_single_image.image-card a.vc_single_image-wrapper {
  display: block;
  transition: transform .4s,-webkit-transform .4s;
}

.wpb_single_image.image-card a.vc_single_image-wrapper img {
  display: block;
}

.image-card a, 
.image-card img {
  display: block;
  position: relative;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s,-webkit-transform .4s;
  width: 100%;
}

.image-card a:hover {
  -webkit-transform: translateY(-.5rem);
  transform: translateY(-.5rem);
  transition: transform .4s,-webkit-transform .4s;
}

/* -- Homepage - Featured Row */

.content-area .entry-content .feature-row p {
  font-size: 15px;
  line-height: 1.55em;
}

/* -- Homepage - Latest Blog Posts */

.content-area ul.display-posts-listing {
  list-style: none;
  display: table;
  margin: 0px -15px;
  padding: 0px;
}

.content-area ul.display-posts-listing li {
  display: table-cell;
  padding: 0px 15px;
  vertical-align: top;
}

.content-area ul.display-posts-listing li {
  width: 33.33333%;
}

.content-area .grid-of-two ul.display-posts-listing li {
  width: 50%;
}

.content-area .grid-of-three ul.display-posts-listing li {
  width: 33.33333%;
}

.content-area .grid-of-four ul.display-posts-listing li {
  width: 25%;
}

.content-area .grid-of-five ul.display-posts-listing li {
  width: 20%;
}

.content-area .grid-of-six ul.display-posts-listing li {
  width: 16.666%;
}

.content-area ul.display-posts-listing li img {
  display: block;
}

.content-area ul.display-posts-listing li a.title {
  display: block;
  font-size: 22px;
  line-height: 1.45em;
  margin-top: 15px;
  margin-bottom: 2px;
}

.content-area ul.display-posts-listing li span.excerpt {
  color: #777;
  font-size: 15px;
  line-height: 1.5em;
  display: block;
}

.content-area ul.display-posts-listing li .excerpt-dash {
  display: none;
}

/* -- Homepage and Inside Pages - Hero image with gradient overlay */

.cg-overlay {
  position: relative;
}

.vc_row.cg-overlay:before {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000 25%, rgba(49,62,72,0) 100%);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.7;
  display: block;
}

.vc_row.cg-overlay .vc_column-inner {
  position: relative;
  z-index: 2;
}

/* -- Homepage Request a Call Back */

.request-callback div.wpcf7 {
  padding: 20px 30px 30px 30px;
}

.content-area .entry-content .request-callback .wpb_text_column p {
  padding: 0px 20px;
  font-size: 18px;
  line-height: 1.6em;
}

.request-callback .wpb_text_column p a {
  text-decoration: underline;
}

.request-callback .wpb_text_column p a:hover {
  opacity: 0.75;
}

.request-callback .divider {
  position: relative;
  display: table;
  margin: 0px auto;
}

.request-callback .divider:before, .request-callback .divider:after {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 18px;
  transition: all .2s ease-in-out;
}

.request-callback .divider:before {
  left: -52px;
}

.request-callback .divider:after {
  right: -48px;
}

/* -- Homepage Icon Row -- */

.icon-row .container {
  padding: 0px;
}

.icon-row .wpb_wrapper {
  background: #fff;
  border-radius: 3px;
}

/* -- Staff Member Feature -- */

.content-area .staff-member h5 {
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.content-area .staff-member p {
  margin-bottom: 15px;
}

/* -- Features with Shadow outline -- */

.shadow .wpb_wrapper .wpb_text_column {
  padding: 0px 20px;
}

.image-shadow {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
}


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

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

body.woocommerce .cg-hero-bg {
    background-image: none !important;
}

body.page-template-page-woocommerce-full-width .header-wrapper .overlay {
    background-image: none;
}

.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;
  padding-top: 5px;
}

/* -- Widgets */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.price_slider_wrapper {
  margin-top: 25px;
}

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

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

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

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

/* -- Product Card */

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

.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: 16px;
  font-weight: 400;
}

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: 14px;
  font-weight: inherit;
}

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-size: 14px;
  margin: 0px 2px;
  padding: 12px 18px;
}

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

body.woocommerce .widget .star-rating:before,
body.woocommerce .widget .star-rating span:before {
  top: 2px;
}

.woocommerce .widget_rating_filter ul li .star-rating {
  top: 3px;
}

.woocommerce .summary .woocommerce-product-rating .star-rating {
  margin-top: 8px;
}

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: 50px;
  text-align: inherit;
}

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

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

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


/* -- Product Details */

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

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

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;
  border-radius: 0px;
  margin-right: 5px;
}

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

.woocommerce div.product form.cart .button,
.woocommerce .quantity .qty {
  border-radius: 0px;
}

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

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

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

/* -- Product Tabs */

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

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

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

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

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

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


/* -- Product Reviews */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.woocommerce #respond input#submit, 
body.woocommerce a.button, .woocommerce button.button, 
body.woocommerce input.button {
  font-weight: 400;
  margin-top: 0.5em;
  border-radius: 0px;
  text-transform: none;
  font-family: inherit;
  letter-spacing: 0px;
}

.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 */

body .woocommerce-message {
    padding: 1em 2em 0.5em 3.5em !important;
}

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

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

.woocommerce-cart table.cart td.actions .coupon .input-text::-webkit-input-placeholder {
  line-height: 1.4em;
}

.woocommerce table.shop_table td.actions {
  border: none;
  padding-left: 0px;
  padding-right: 0px;
}

.woocommerce table.shop_table .quantity .qty {
  height: auto;
}

.woocommerce table.shop_table .quantity input.qty {
  padding: 5px 0px;
  font-size: 15px;
}

.woocommerce-page table.cart td.actions .input-text {
  width: auto;
  padding: 7px;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background-color: #f2f2f2;
}

/* -- Cart Totals */

.content-area .cart_totals h2,
.content-area .cross-sells h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 24px;
}

.woocommerce .cart-collaterals, 
.woocommerce-page .cart-collaterals {
  margin-bottom: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals tr td, 
.woocommerce-cart .cart-collaterals .cart_totals tr th {
  margin-top: 0px;
  border-bottom: none;
  padding-left: 10px;
}

.woocommerce-cart .cart-collaterals .cart_totals table {
  border: 1px solid #eee;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  font-weight: bolder;
}

.content-area .cart-collaterals p {
  margin-bottom: 0px;
}

.woocommerce ul#shipping_method li {
  font-size: 15px;
  padding: 0px;
  text-indent: 0px;
}

.woocommerce ul#shipping_method li input {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.content-area .cart-collaterals table a.shipping-calculator-button {
  font-size: 15px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 17px 0px;
  font-size: 20px;
  font-weight: 400;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  opacity: 0.9;
}

section.shipping-calculator-form {
  margin: 10px 10px 10px 0px;
}

.woocommerce section.shipping-calculator-form button.button {
  margin-top: 0.5em;
  font-size: 15px;
}

.woocommerce form .form-row {
  padding: 3px 0px;
}

body .select2-container .select2-choice {
  border-color: #e2e2e2;
  border-radius: 0px;
}

/* -- Empty Cart */

.content-area .entry-content p.return-to-shop {
  margin-bottom: 5em;
}

.woocommerce p.return-to-shop a.button {
  font-weight: inherit;
}


/* -- Checkout */

form.checkout label {
  margin-bottom: 0px;
}

.woocommerce form .form-row input.input-text#billing_address_1,
.woocommerce form .form-row input.input-text#shipping_address_1 {
  margin-bottom: -10px;
}

.woocommerce-shipping-fields h3#ship-to-different-address {
  position: relative;
  padding-left: 25px;
  line-height: 32px;
  margin-bottom: 24px;
  position: relative;
  top: 3px;
}

.woocommerce-shipping-fields h3#ship-to-different-address input.input-checkbox {
  position: absolute;
  top: 6px;
  left: 0px;
}

.content-area a.select2-choice:hover {
  border-bottom-color: inherit;
}

body .woocommerce table.shop_table tfoot td,
body .woocommerce table.shop_table tbody th,
body .woocommerce table.shop_table tbody th {
    font-weight: bolder;
}

body .woocommerce form .form-row .required {
    font-weight: normal;
}

body .woocommerce #payment #place_order, 
body .woocommerce-page #payment #place_order {
    border-radius: 0px;
}

/* -- My Account */

.woocommerce-account .content-area h2 {
  margin-top: 0px;
  margin-bottom: 15px;
}

.woocommerce form.login, 
.woocommerce form.register {
  margin-top: 1.5em;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
  padding: 25px;
  border-radius: 2px;
  border-color: #e2e2e2;
}

.woocommerce form.register {
  border: none;
  background-color: #f6f6f6;
}

.woocommerce form.login input.button,
.woocommerce form.register input.button {
  margin: 10px 10px 10px 0px;
}

.woocommerce-account .addresses .title h3 {
  margin-top: 0em;
}

.col2-set.addresses {
  margin-top: 40px;
  margin-bottom: 40px;
}

.content-area .entry-content p.myaccount_user {
  margin-bottom: 40px;
}

.woocommerce-account .addresses .title .edit {
  margin-top: 6px;
}

.woocommerce form .form-row .select2-container {
  border: 1px solid #e2e2e2;
}

.select2-container .select2-choice {
  font-weight: inherit;
}

.woocommerce input.button {
  font-weight: 400;
}

.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
  line-height: 1.3em;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, 
.woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 48%;
}

body.woocommerce-account .content {
  padding-bottom: 40px;
}

.woocommerce-account .content-area .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0px;
}

.woocommerce-account .content-area .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #111;
}

body .woocommerce table.my_account_orders {
  font-size: inherit;
}

body .woocommerce a.button {
  font-weight: 400;
}


/* -- Checkout */

.checkout_coupon p {
  margin-bottom: 0px;
}

.woocommerce-shipping-fields h3#ship-to-different-address label.checkbox {
  margin-top: 0px;
}

.woocommerce-checkout .content-area h3 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.woocommerce-checkout .content-area h3#order_review_heading {
  margin-top: 40px;
}

.woocommerce table.woocommerce-checkout-review-order-table th {
  vertical-align: middle;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot td {
  border-top: none;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  border-top: none;
  font-weight: 600;
}

.woocommerce-checkout #payment {
  background: #f5f5f5;
  padding: 5px 20px;
  margin-bottom: 50px;
  border-radius: 0px;
}

.woocommerce-checkout #payment div.payment_box {
  background-color: #fff;
}

.woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid #fff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-color: #e2e2e2;
  padding-left: 0px;
  padding-right: 0px;
  margin: 0.8em;
}

.woocommerce form legend {
  padding-bottom: 10px;
  font-weight: 400;
  margin-top: 30px;
}

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

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    font-size: 20px;
    padding: 20px 30px;
}

/* -- Confirmation */

.woocommerce-order-received .woocommerce {
  margin-bottom: 50px;
}

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

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

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

.woocommerce table.shop_table strong.product-quantity {
  font-weight: inherit;
}

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

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

.wpb_layerslider_element.wpb_content_element {
  margin: 0px;
}

.ls-l {
 z-index: 2;
}

.slider-button:hover { 
  border-color: rgba(255, 255, 255, 1) !important; /* Required */
}

/* LayerSlider 6 */

.wpb_layerslider_element.ls-overflow-visible .ls-inner {
  z-index: 1;
}

.wpb_layerslider_element.ls-overflow-visible .ls-inner:before {
  z-index: 35 !important;
}

/* VC5 */

.content-area .ls-overflow-visible {
  overflow: hidden !important;
}

.ls-wrapper:hover .slider-button {
  border-color: rgba(255, 255, 255, 1) !important; /* Required */
}

.wpb_row.slider-features {
  z-index: 30;
}

body .ls-inner:before {
  z-index: 1;
  display: none;
}

body .ls-layers:before {
  content: "";
  width: 85%;
  height: 100%;
  background: linear-gradient(to right, #000 20%, rgba(0,0,0,0) 100%);
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  opacity: 0.85;
  display: block;
  width: 100%;
}

/*-------------------------------------------------------------------------*/
/*  18.0  Footer
/*-------------------------------------------------------------------------*/

/* -- Below Main Content -- */

.below-main-content {
  padding: 45px 0px 45px 0px;
  background: #fff;
  border-top: 1px solid #eee;
}

.below-main-content h5 {
  font-size: 24px;
  line-height: 1.4em;
  margin: 0px;
}

.below-main-content .textwidget {
  display: table;
  width: 100%;
}

.below-main-content .text,
.below-main-content .button {
  display: table-cell;
  vertical-align: middle;
}

.below-main-content .text { 
  width: 75%; 
}

.below-main-content .button {
  text-align: right;
  min-width: 25%;
  padding-left: 20px;
}

.below-main-content .button a {
  width: 100%;
}

/* -- First Footer -- */

.first-footer {
  padding: 55px 0px 10px 0px;
  position: relative;
  z-index: 2;
  font-size: 15px;
}

.first-footer .inner-widget-wrap {
  padding-bottom: 30px;
}

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

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

/* -- Latest News Widget -- */

.first-footer .widget_recent_entries ul {
  margin-right: 20px;
}

.second-footer {
  font-size: 14px;
  padding: 35px 0px 30px 0px;
}

.second-footer .row {
  display: table;
  width: 100%;
  margin: 0px;
}

.second-footer .row .widget_text {
  display: table-cell;
  vertical-align: middle;
  float: none;
  padding: 0px;
}

.second-footer p {
  line-height: 1.55em;
  margin-bottom: 0px;
}

.second-footer img.logo {
  max-height: 41px;
  margin: 0px;
  float: right;
}

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

.second-footer h4.widget-title {
  margin-bottom: 15px;
  font-family: inherit;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

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

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

.first-footer ul,
.second-footer ul {
  padding: 0px;
  margin: 0px;
}

.second-footer .widget-first.inner-widget-wrap {
  padding-left: 0px;
}

.second-footer .inner-widget-wrap {
  padding-left: 16px;
}

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

.first-footer ul li a,
.second-footer ul li a {
  opacity: 1;
}

.second-footer ul li a {
  display: inline-block;
}

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

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

.second-footer hr {
  margin: 1.6em 0em 1.2em 0em;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* -- Back to Top */

.cd-top {
  display: inline-block;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: -40px;
  right: 15px;
  z-index: 1001;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  background: #fff;
  border-radius: 50%;
}

.cd-top:before {
  text-indent: 0;
  font-family: 'Ionicons';
  content: "\f366";
  color: #222;
  font-size: 24px;
  position: absolute;
  right: 17px;
  top: 12px;
}

.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: 27px;
  visibility: visible;
  opacity: 1;
}

.preview-blue {
  background-color: #4a74c0;
}

.preview-green {
  background-color: #00c96d;
}

.preview-red {
  background-color: #f14e41;
}

.structured-meta {
  display: none;
}

.entry-header .author-meta {
  display: none;
}

/*-------------------------------------------------------------------------*/
/*  18.0  Portfolio
/*-------------------------------------------------------------------------*/

/* -- 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: 35px;
  margin-bottom: 21px;
  font-size: 14px;
}

#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 -27px 55px -15px;
}

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

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

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

.project-item .project-container {
  display: block;
  text-align: center;
  color: #222;
  padding-top: 20px;
  font-size: 16px;
}

.project-item .item-with-padding a {
  display: block;
  transition: all 0.2s ease 0s;
}

.project-item .item-with-padding a img {
  transition: all 0.2s ease 0s;
}

.project-item .item-with-padding a:hover img {
  opacity: 0.8;
}

.project-item .item-with-padding a:hover .project-container .title {
  color: #e01e26;
}

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

.project-item .project-container .title {
  font-size: 20px;
  font-weight: bolder;
}

.project-item .project-container .tags {
  font-size: 14px;
  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 .prev-next {
  border-top: 1px solid #eee;
  margin-top: 20px;
}

.prev-next {
  border-top: 1px solid #eee;
  padding: 25px 0px 22px 0px;
}

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

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


/* -- Projects Single Page -- */

body.single-project .cg-primary-menu-below-wrapper .menu > li.current_page_parent > a {
  color: inherit;
}

body.single-project .wpb_single_image .vc_figure,
body.single-project .wpb_single_image .vc_single_image-wrapper,
body.single-project .wpb_single_image img {
  width: 100%;
}

body.single-project .breadcrumbs-wrapper {
  margin-top: -12px;
}

body.single-project .cg-hero-bg {
  background: none !important;
}

body.single-project .header-wrapper .overlay {
  opacity: 0.8;
}

body.single-project .header-wrapper {
  padding-top: 60px;
  padding-bottom: 105px;
}

.projects-container {
  padding-top: 10px;
}

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

.projects-container .prev-next .container {
  padding: 0px 15px;
}

.prev-next a {
  color: #222;
  display: block;
}

.page-container .prev-next a:hover {
  color: #e01e26;
}

.prev-next a span {
  display: block;
  font-size: 14px;
  margin-bottom: -2px;
  color: #999;
}

.prev-next .next-posts {
  padding-right: 35px;
  position: relative;
}

.prev-next .prev-posts {
  padding-left: 35px;
  position: relative;
}

.prev-next .prev-posts a {
  position: relative;
}

.prev-next .prev-posts a:before {
  font-family: 'Ionicons';
  content: "\f2ca";
  font-size: 22px;
  position: absolute;
  left: -35px;
  color: #ccc;
  top: 10px;
}

.prev-next .next-posts a:after {
  font-family: 'Ionicons';
  content: "\f30f";
  font-size: 22px;
  position: absolute;
  right: 0px;
  top: 10px;
  color: #ccc;
}

body.post-type-archive-portfolio .cg-primary-menu-below-wrapper .menu > li.current_page_parent > a,
body.single-portfolio .cg-primary-menu-below-wrapper .menu > li.current_page_parent > a {
  color: inherit;
}

.post-type-archive-portfolio .breadcrumbs-wrapper {
  border-bottom: 1px solid #eee;
}

.single-portfolio .entry-content .container {
  padding: 0px;
  width: auto;
}

.prev-next .container {
  padding: 0px 30px;
}

.pc100.wpb_single_image .vc_single_image-wrapper,
.pc100.wpb_single_image .vc_figure,
.pc100.wpb_single_image img {
  width: 100%;
}