body {
    margin: 0;
    position: relative;
}

body.coming-soon-active {
    height: 100vh;
    background-attachment: fixed;
}


button,
input,
select {
    line-height: 1;
    font-size: 14px;
    padding: 14;
    height: 40px;
}

/*
///////////////////////////////////////////////
        LOADER
//////////////////////////////////////////////
*/

/* Preloader style */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 999999999;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;

    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;

    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 99999999;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;

    -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);  /* IE 9 */
    transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;  
    transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
    display: none;
}
.no-js h1 {
    color: #222222;
}




/*
//////////////////////////////////////////////
        Top HEADER
/////////////////////////////////////////////
*/

#header-wrap {
    width: 100%;
    background-color: transparent;
    transition: background-color 1.5s, box-shadow 1.5s;
    z-index: 999;
}
#header-wrap.home-slider-enabled
{
    position: absolute;
    background-color: transparent;
}

header#masthead {
    max-width: 1170px;
    margin: auto;
    position: relative;
    z-index: 1;
}

header .logo {
    height: 60px;
    display: inline-block;
    transition: margin .3s;
}

header .masthead-icon, header .mobile-masthead-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 15px 0;
    font-size: 25px;
    cursor: pointer;
    color: #181818;
    transition: transform .3s, margin .3s;
}

header #masthead-cart-icon, header #mobile-masthead-cart-icon {
    float: right;
}

header #mobile-masthead-cart-icon {
    text-decoration: none;
    display: none;
}

header .header-icons-wrap {
    display: inline-block;
    overflow: hidden;
    float: right;
    margin-left: 30px;
}

header #top-menu-icon {
    float: right;
}

header #masthead-wishlist-icon a{
    text-decoration: none;
    font-size: 23px;
}

header #masthead-cart-icon .cart-items-count, header #masthead-wishlist-icon #wishlist-items-count,
header #mobile-masthead-cart-icon .cart-items-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 3px;
    box-sizing: content-box;
    background-color: #bff925;
    border-radius: 50%;
    position: relative;
    right: 30%;
    top: 20%;
    z-index: 9999999;
}


.bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-5px);}
    60% {-webkit-transform: translateY(-2px);}
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(-5px);}
    60% {-moz-transform: translateY(-2px);}
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(-5px);}
    60% {-o-transform: translateY(-2px);}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-2px);}
}


#header-wrap.header-sticky {
    position: fixed !important;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);

}

.header-sticky .logo, .header-sticky .masthead-icon,
.header-sticky .logo, .header-sticky .mobile-masthead-icon,
.header-sticky .horizontal-menu-header-1 nav#horizontal-site-navigation,
.horizontal-menu-header-2 nav#horizontal-site-navigation  {
    margin: 15px 0;
}

.logo img{
    max-width: 100%;
    max-height: 100%;
}


#site-navigation {
    width: auto;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #333;
    box-sizing: border-box;
    padding: 160px 5%;
    z-index: 99999;
    text-align: center;
    text-transform: uppercase;
    width: 445px;
    height: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform .3s;

}

#site-navigation ul#top-menu li,
#site-navigation div#top-menu ul li {
    display: block;
    float: none;
    border-bottom: 1px solid #383838;
    line-height: 70px;
}

#site-navigation ul#top-menu li:before,
#site-navigation div#top-menu ul li:before {
    content: '';
}

#site-navigation ul#top-menu, #site-navigation ul.sub-menu,
#site-navigation div#top-menu ul {
    padding: 0;
    margin: 0;
}

#site-navigation ul#top-menu li a, #site-navigation div#top-menu ul li a {
    display: block;
    color: #9e9e9e;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: color .3s;
    position: relative;
}

#site-navigation ul#top-menu li a:hover, #site-navigation div#top-menu ul li a:hover {
    color: #fff;
}

#site-navigation ul#top-menu ul.sub-menu li {
    border-bottom: 0;
    padding: 0;
    line-height: normal;
    padding-bottom: 5px;
}

#site-navigation ul#top-menu ul.sub-menu li:last-child {
    padding-bottom: 0;
}

#site-navigation ul#top-menu li.menu-item-has-children {
    line-height: normal;
    padding-bottom: 30px !important;
}

#site-navigation ul#top-menu li.menu-item-has-children ul.sub-menu li:first-child {
    padding-top: 10px;
}

#site-navigation ul#top-menu li.menu-item-has-children ul.sub-menu {
    display: none;
}

#site-navigation ul#top-menu li.menu-item-has-children > a {
    margin-top: 30px;
}

#site-navigation ul#top-menu li.menu-item-has-children > a:before {

    content: '\e61a';
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 2px;
}

#site-navigation ul#top-menu li.menu-item-has-children.menu-item-open > a:before {

    content: '\e622';
}

#site-navigation ul#top-menu li.current-menu-item > a {
    color: #fff;
}

nav#site-navigation #site-navigation-wrap {
    height: 100%;
}

nav#site-navigation #site-navigation-wrap .mCSB_scrollTools {
    right: -25px;
}

nav#site-navigation #site-navigation-wrap .mCSB_dragger_bar {
    width: 2px;
}

nav#site-navigation #top-menu-close {
    position: absolute;
    left: 5%;
    top: 30px;
    font-size: 20px;
    color: #ccc;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    transition: color .3s;
    z-index: 1;
}

nav#site-navigation #top-menu-close:hover {
    color: #fff;
}


#top-menu-mask {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background-color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

#top-menu-mask.is-active {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.3s;
}


/*
//////////////////////////////////////////////
        FOOTER
/////////////////////////////////////////////
*/

footer {
    margin-top: 30px;
}

footer div.site-info {
    line-height: 80px;
    text-align: center;
    background-color: #f4f4f4;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: #000;
}

footer div#footer-social-links-container {
    text-align: center;
}

footer ul#footer-social-links {
    margin: 0;
    line-height: 65px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer ul#footer-social-links li:before {
    content: '';
}

footer ul#footer-social-links li {
    display: inline-block;
    margin: 0 38px;

}

footer ul#footer-social-links li a {
    text-decoration: none;
    padding: 2px 0;
    transition: color .3s, border-bottom .3s;
}

footer #footer-social-links li a:hover {
    color: #252525;
}

/* *** TOP FOOTER *** */

.top-footer-wrap {
    margin: auto;
}

.top-footer-wrap .footer-widgets-wrap {
    margin: 50px 0px 60px 0px;
    overflow: hidden;
}

.top-footer-wrap .footer-widgets-wrap.full-width {
    margin: 50px 30px 60px 30px;
}

.top-footer-wrap .footer-widgets-wrap .footer-widget-container {
    margin-right: 30px;
    float: left;
}

.top-footer-wrap .footer-widgets-wrap .footer-widget-container:last-child {
    margin-right: 0;
}

.top-footer-wrap.fcol-1 .footer-widgets-wrap .footer-widget-container {
    width: 100%;
}

.top-footer-wrap.fcol-2 .footer-widgets-wrap .footer-widget-container {
    width: calc((100% - 30px)/2);
}

.top-footer-wrap.fcol-3 .footer-widgets-wrap .footer-widget-container {
    width: calc((100% - 60px)/3);
}

.top-footer-wrap.fcol-4 .footer-widgets-wrap .footer-widget-container {
    width: calc((100% - 90px)/4);
}

.top-footer-wrap.fcol-5 .footer-widgets-wrap .footer-widget-container {
    width: calc((100% - 120px)/5);
}


footer h2.widget-title {
    font-size: 16px;
    color: #666666;
}

footer .footer-widget-container ul {
    margin: 0;
}

footer .footer-widget-container a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    line-height: 200%;
}


/*
//////////////////////////////////////////////
        TEMPLATES
/////////////////////////////////////////////
*/


header.page-header {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    text-align: center;
    background-image: url('../images/entry-header-image.png');
    background-repeat: no-repeat;
    background-position: center center;
    overflow-wrap: break-word;
}

header.page-header.no-header
{
    height: 1px;
    overflow: hidden;
}

header.page-header .page-header-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header.page-header h1.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 35px;
    text-transform: uppercase;
    color: #252525;
    padding-bottom: 5px;
}

header.page-header p, header.page-header h1 {
    margin: 0;
}

header.page-header .page-path-container {
    display: block;
}

header.page-header ul#breadcrumbs {
    font-size: 18px;
    margin: 0;
    color: #696969;
}

header.page-header ul#breadcrumbs li {
    display: inline-block;
    margin: 0 3px;
}

header.page-header ul#breadcrumbs li:before {
    content: '';
}

header.page-header ul#breadcrumbs li a {
    text-decoration: none;
}

header.page-header ul#breadcrumbs .bread-current {
    font-weight: normal;
    color: #252525;
}

div.content-area {
    max-width: 1170px;
    margin: auto;
    margin-top: 65px;
}

div.content-area.full-width-layout
{
    max-width: none;
}

div.content-area #main, div.content-area aside#secondary {
    float: left;
    box-sizing: border-box;
}

div.content-area.with-sidebar #main, div.content-area #main {
    width: 74%
}

div.content-area.with-sidebar aside#secondary, div.content-area aside#secondary{
    padding-right: 30px;
    width: 26%;
}

div.content-area.with-sidebar aside#secondary{
    padding-right: 30px;
    width: 26%;
}

div.content-area.with-sidebar #main {
    width: 74%;
}

div.content-area.no-sidebar #main {
    width: 100%;
}

/*
///////////////////////////////////////////////
        SIDEBAR/WIDGETS
//////////////////////////////////////////////
*/

#secondary h2.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 0;
}

#secondary h2.widget-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #000;
    margin-top: 15px
}

section.widget {
    margin: 0 0 50px;
}

.search-field {
    line-height: 1;
    height: 50px;
    width: 100%;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

section.widget ul {
    margin: 0;
}

section.widget ul li {
    padding: 12px 0 12px 20px;
    border-bottom: 1px dotted #ccc;
    line-height: 150%;
}

section.widget ul li:before {
    content: "\f106";
    font-family: 'FontAwesome';
    margin-left: -14px;
}

section.widget ul li:first-child {
    padding-top: 0;
}

section.widget ul li:last-child {
    border-bottom: 0;
}

section.widget ul li ul li:first-child {
    padding-top: 12px;
}

section.widget ul li ul li:last-child {
    padding-bottom: 0;
}

section.widget ul li a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

section.widget ul li:before {
    content: '\f0da';
}


/*
///////////////////////////////////////////////
        BLOG SINGLE
//////////////////////////////////////////////
*/

#blog-single-extra {
    font-family: 'Montserrat', sans-serif;
    color: #999;
    margin: 25px 0 30px 0;
}

#blog-single-extra .extra-detail, #blog-single-extra .post-categories {
    color: #333;
    display: inline-block;
    margin: 0;
}

#blog-single-extra .post-categories li {
    display: inline-block;
}

#blog-single-extra .post-categories li:before {
    content: '';
}

#blog-single-extra .post-categories li a{
    color: #333;
    text-decoration: none;
}

#blog-single-extra .post-categories li a:after{
    content: ',';
}

#blog-single-extra .post-categories li:last-child a:after{
    content: '';
}

#blog-content-footer {
    margin: 35px 0;
    padding: 35px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Montserrat', sans-serif;
    color: #999;
}

#blog-content-footer .single-post-tags {
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

#blog-content-footer .single-post-tags a {
    text-decoration: none;
    color: #999;
    text-transform: capitalize;
    font-weight: normal;
}

#blog-content-footer .single-post-tags a:hover {
    color: #333;
}

#blog-content-footer .single-post-tags a:after {
    content: ',';
}

#blog-content-footer .single-post-tags a:last-child:after {
    content: '';
}

#blog-content-footer .single-post-tags a:hover:after {
    color: #999
}

#blog-content-footer .sharer-wrap {
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

#blog-content-footer .sharer-wrap .sharer-container {
    display: inline-block;
}

#blog-content-footer .sharer-wrap .sharer-container ul {
    margin: 0;
}

ul.sharer-links {
    display: inline-block;
    margin: 0 0 0 15px;
}

ul.sharer-links li {
    display: inline-block;
}

ul.sharer-links li:before {
    content: '';
}

ul.sharer-links li a {
    display: inline-block;
    padding: 0 10px;
    font-weight: bold;
    color: #999;
    font-size: 16px;
}

ul.sharer-links li a:hover {
    color: #333;
}

article.post {
    margin-bottom: 0;
    overflow: hidden;
}


div#comments h3#reply-title,
div#comments input[type="text"],
div#comments textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

div#comments h3#reply-title, div#comments h2.comments-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

div#comments h2.comments-title {
    margin-bottom: 40px;
}

div#comments .comment-notes {
    font-family: 'Playfair Display', serif;
    color: #a1a1a1;
    font-style: italic;
    margin: 5px 0 20px 0;
}

div#comments input[type="text"],
div#comments textarea {
    padding: 13px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    height: auto;
}

div#comments input[type="submit"] {
    height: 50px;
}

div#comments p.comment-form-author, div#comments p.comment-form-email {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

div#comments a#cancel-comment-reply-link {
    font-size: 10px;
    color: #cc0000;
    margin-left: 10px;
    text-decoration: none;
    transition: transform .2s;
    position: relative;
    display: inline-block;
}

div#comments a#cancel-comment-reply-link:before {
    content: '\f00d';
    font-family: 'FontAwesome';
    transform: translateX(100%);
    opacity: 0;
    transition: transform .2s, opacity .2s;
    position: absolute;
}

div#comments a#cancel-comment-reply-link:hover {
    transform: translateX(10px);
}

div#comments a#cancel-comment-reply-link:hover:before {
    transform: translateX(-150%);
    opacity: 1;
}

div#comments p.comment-form-author {
    padding-right: 15px;
}

div#comments p.comment-form-email {
    padding-left: 15px;
}

div#comments ol.comment-list {
    list-style: none;
    margin: 0;
}

div#comments ol.comment-list ul.children {
    margin-left: 100px;
}

div#comments ol.comment-list ul.children li:before {
    content: ''
}


div#comments ol.comment-list img {
    float: left;
    box-shadow: 2px 2px 2px #dfdfdf;
}

div#comments ol.comment-list div.comment-container {
    margin-bottom: 30px;
}

div#comments ol.comment-list div.comment-text-wrap {
    margin-left: 100px;
    padding: 18px;
    background-color: #efefef;
    position: relative;
}
div#comments ol.comment-list li.pingback div.comment-text-wrap
{
    margin-left: 0;
}

div#comments ol.comment-list li.comment div.comment-text-wrap:before {
    position: absolute;
    left: -13px;
    content: '';
    border-right: 20px solid #efefef;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 10px;
}

div#comments ol.comment-list div.comment-text-wrap cite,
div#comments ol.comment-list div.comment-text-wrap cite a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    font-style: normal;
    text-decoration: none;
    font-weight: normal;
}

div#comments ol.comment-list div.comment-text-wrap div.comment-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #a6a6a6;
}

div#comments ol.comment-list div.comment-text-wrap p {
    margin: 12px 0;
    color: #727272;
}

div#comments ol.comment-list div.comment-text-wrap a.comment-reply-link {
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #999;
    text-decoration: none;
    font-size: 12px;
}

div#comments ol.comment-list div.comment-text-wrap a.comment-reply-link:hover {
    color: #333;
}

div#comments ol.comment-list div.comment-text-wrap a.comment-reply-link:before {
    content: '\f112';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.blog-archive-post-extra>div, #blog-single-extra>div{
    display: inline-block;
}

.gallery .gallery-item {
    margin: 0;
}


/*
///////////////////////////////////////////////
        BLOG ARCHIVE
//////////////////////////////////////////////
*/

div.posts-grid {
    box-sizing: border-box;
}

div.content-area.with-sidebar article.blog-archive-post,
div.content-area.left-sidebar div.grid-layout article.blog-archive-post,
div.content-area.right-sidebar div.grid-layout article.blog-archive-post {
    width: calc((100% - 30px)/2);
    float: left;
    margin-bottom: 50px;
    box-sizing: border-box;
}

div.content-area.no-sidebar article.blog-archive-post,
div.content-area.no-sidebar div.grid-layout article.blog-archive-post {
    width: calc((100% - 60px)/3);
    float: left;
    margin-bottom: 50px;
    box-sizing: border-box;
}

div.content-area.no-sidebar article.sticky-post {
    background-color: #f7f7f7;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
}

article.blog-archive-post h2, article.blog-archive-post p {
    margin: 0;
}

article.blog-archive-post h2 {
    padding: 0 22px;
}

article.blog-archive-post h2 {
    margin-bottom: 10px;
}

article.blog-archive-post div.excerpt-wrap {
    padding: 40px 22px 0 22px;
}

article.blog-archive-post h2 a,
div.search-post-content h2 a,
div.link-container a {
    font-family: 'Montserrat', sans-serif;
    color: #181818;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    line-height: normal;
}

article.sticky-post h2 a {
    color: #cc0000;
}

div.search-post-content h2 {
    margin: 0;
}

div.search-post-content div#blog-single-extra {
    margin: 10px 0 20px 0;
}

article.search-result-posts div.post-thumbnail {
    box-sizing: border-box;
    padding-right: 40px;
    width: 45%;
    float: left;
    clear: left;
}

article.search-result-posts div.search-post-content {
    box-sizing: border-box;
    width: 55%;
    float: left;
}

article.search-result-posts div.search-post-content-only {
    width: 100%;
}

article.search-result-posts {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

article.search-result-posts:last-child {
    border-bottom: 0;

}

article.search-result-posts div#blog-single-extra {
    font-size: 12px;
}



div.link-container a {
    display: block;
    padding: 50px 22px;
    text-align: center;
    background-color: #eee;
    transition: background-color .5s;
    font-size: 10px;
    word-wrap: break-word;
}

div.link-container a img{
    display: block;
    margin: auto;
}

div.link-container a:hover {
    background-color: #eaeaea;
}

div.link-container {
    position: relative;
}

div.link-container a:before {
    content: '\f0c1';
    font-family: 'FontAwesome';
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 37px;
    margin: auto;
    color: #181818;
    position: absolute;
    top: 0;
    left: 0;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    padding-left: 2px;

}

article.blog-archive-post div.blog-archive-post-content {
    border: 1px solid #e5ecef;
    padding: 15px 0 45px 0;
    position: relative;
    overflow-wrap: break-word;
}

div.link-container iframe {
    width: 100%;
}

article.blog-archive-post div iframe {
    vertical-align: bottom;
}

#primary.grid-2-left article.blog-archive-post div.link-container iframe,
#primary.grid-2-right article.blog-archive-post div.link-container iframe,
#primary.no-sidebar article.blog-archive-post div.link-container iframe,
#primary.left-sidebar div.grid-layout article.blog-archive-post div.link-container iframe,
#primary.right-sidebar div.grid-layout article.blog-archive-post div.link-container iframe {
    height: 215px;
}

article.blog-archive-post div.post-thumbnail img {
    vertical-align: bottom;
    width: 100%;
}

article.blog-archive-post div.post-thumbnail{
    position: relative;
}

article.blog-archive-post div.post-thumbnail a span.mask{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(204, 204, 204, 0);
    transition: background-color .5s;
}

article.blog-archive-post div.post-thumbnail a:hover span.mask {
    background-color: rgba(204, 204, 204, 0.3);
}

article.blog-archive-post div.blog-archive-post-extra {
    border-top: 1px solid #e5ecef;
    border-bottom: 1px solid #e5ecef;
    padding: 10px 22px;
    font-family: 'Droid Serif', serif;
    font-size: 12px;
    font-style: italic;
    color: #696969;
}

article.blog-archive-post div.blog-archive-post-extra a {
    text-decoration: none;
}


ul.bxslider {
    margin: 0;
}

.bx-wrapper {
    border: 0;
    margin: 0;
    box-shadow: none;
}

.bx-wrapper img {
    width: 100%;
}

.bx-viewport {
    border: 0 !important;
    box-shadow: none !important;
    left: 0 !important;
}

.site-main ul.bxslider li:before {
    content: '';
}

div.bx-controls-direction a.bx-next,
div.bx-controls-direction a.bx-prev {
    text-indent: 0 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    background: #e5e5e5;
    color: #aaa;
    text-align: center;
    line-height: 32px;
    transition: background .3s, color .3s;
    top: auto !important;
    bottom: 15px;
    z-index: 9 !important;
}

.bx-controls-direction a.bx-prev {
    left: auto;
    right: 50px;
}

div.bx-controls-direction a.bx-next:hover,
div.bx-controls-direction a.bx-prev:hover {
    background: #181818;
    color: #fff;
}

.bx-controls-direction a.bx-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
}

.bx-controls-direction a.bx-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
}

div.blog-archive-link-content div.blog-archive-post-extra {
    border-top: 0;
}


div.blog-archive-post-extra .post-categories {
    color: #333;
    display: inline-block;
    margin: 0;
}

div.blog-archive-post-extra .post-categories li {
    display: inline-block;
}

div.blog-archive-post-extra .post-categories li:before {
    content: '';
}

div.blog-archive-post-extra .post-categories li a{
    text-decoration: none;
}

div.blog-archive-post-extra .post-categories li a:after{
    content: ',';
}

div.blog-archive-post-extra .post-categories li:last-child a:after{
    content: '';
}

article.blog-archive-post div.blog-archive-post-content a.more-link {
    text-decoration: none;
}

nav.posts-navigation div.nav-links .nav-previous {
    float: right;
    text-align: right;

}

nav.posts-navigation div.nav-links .nav-next {
    float: left;
    text-align: left;

}

nav.posts-navigation div.nav-links .nav-previous a,
nav.posts-navigation div.nav-links .nav-next a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: #181818;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    position: relative;
    transition: transform .2s;
    line-height: 40px;
    display: inline-block;
    padding: 0 15px;
}

nav.posts-navigation div.nav-links .nav-previous a {
    margin-right: -16px;
}

nav.posts-navigation div.nav-links .nav-next a {
    margin-left: -15px;
}

nav.posts-navigation div.nav-links .nav-previous a:after {
    content: '\f178';
    font-family: 'FontAwesome';
    transform: translateX(-200%);
    opacity: 0;
    transition: transform .2s, opacity .2s;
    position: absolute;
}

nav.posts-navigation div.nav-links .nav-previous a:hover {
    transform: translateX(-20px);
}

nav.posts-navigation div.nav-links .nav-previous a:hover:after {
    transform: translateX(50%);
    opacity: 1;
}


nav.posts-navigation div.nav-links .nav-next a:before {
    content: '\f177';
    font-family: 'FontAwesome';
    transform: translateX(100%);
    opacity: 0;
    transition: transform .2s, opacity .2s;
    position: absolute;
}

nav.posts-navigation div.nav-links .nav-next a:hover {
    transform: translateX(20px);
}

nav.posts-navigation div.nav-links .nav-next a:hover:before {
    transform: translateX(-150%);
    opacity: 1;
}

/* ***** BLOG PAGINATION ***** */


ul.page-numbers {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

ul.page-numbers li {
    display: inline-block;

}

ul.page-numbers li {
    display: inline-block;

}

ul.page-numbers li a, ul.page-numbers li span, div.post-page-numbers span {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    text-decoration: none;
    width: auto;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    transition: background .3s, color .3s;
}

div.post-page-numbers p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 40px;
}

div.post-page-numbers span {
    border: 1px solid transparent;
}

div.post-page-numbers p > span {
    border-color: #000;
}

div.post-page-numbers a:hover span {
    background-color: #efefef;
}

.site-main ul.page-numbers li:before {
    content: '';
}

ul.page-numbers li span.current {
    background: #333;
    color: #fff;
}

ul.page-numbers li a:hover {
    background: #333;
    color: #fff;
}

ul.page-numbers li a.prev {
    margin-right: 10px;
}

ul.page-numbers li a.next {
    margin-left: 10px;
}

ul.page-numbers li a.prev, ul.page-numbers li a.next {
    width: auto;
}

ul.page-numbers li a.prev:hover, ul.page-numbers li a.next:hover {
    color: #000;
    background: transparent;
}


/* ***** CHECKBOXES/RADIO BUTTONS ***** */


[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
}


[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    position: relative; 
    padding-left: 25px; 
    cursor: pointer;  
    margin-left: 0;
    padding-top: 4px;
}

[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; top: 5px;
    width: 16px; height: 16px; 
    border: 1px solid #dfdfdf;
    background: #f8f8f8;
}

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #333;
    position: absolute;
    top: 10px; left: 5px;
    font-size: 14px;
    color: #09ad7e;
    transition: all .2s;
}

[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after {
    opacity: 0; 
    transform: scale(0); 
}

[type="checkbox"]:checked + label:after,
[type="radio"]:checked + label:after {
    opacity: 1; 
    transform: scale(1);
}

[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before,
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after,
[type="radio"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label,
[type="radio"]:disabled + label {
    color: #aaa;
}


[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before,
[type="radio"]:checked:focus + label:before,
[type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted blue;
}

/*
///////////////////////////////////////////////
        Portfolio Single
//////////////////////////////////////////////
*/

.single-portfolio-item .post-thumbnail img{
    vertical-align: bottom;
}

#portfolio-single-info-wrap {
    width: 100%;
    background-color: #f7f7f7;
    overflow: hidden;
    margin-top: 50px;
    display: table;
}

#portfolio-single-info-wrap #info-content{
    width: 63%;
    box-sizing: border-box;
    padding: 40px 30px 30px 30px;
    border-right: 1px solid #dfdfdf;
    display: table-cell;
}

#portfolio-single-info-wrap #info-content h2{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;	
}

#portfolio-single-info-wrap #meta-content {
    width: 37%;
    box-sizing: border-box;
    padding: 60px 50px 100px 60px;
    display: table-cell;
    position: relative;
}

#portfolio-single-info-wrap a.button {
    display: inline-block;
    width: 100.1%;
    line-height: 75px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: background-color .3s
}

#portfolio-single-info-wrap a.button:hover {
    background-color: #181818;
}

#portfolio-single-info-wrap a.button i {
    margin-left: 10px;
}

#portfolio-data-table {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

#portfolio-data-table td.data-title {
    color: #999;
    width: 35%;
}

#portfolio-data-table td.data-value {
    padding-left: 10px;
}

#portfolio-data-table tr {
    padding: 0;
}

#portfolio-data-table td{
    padding: 8px 0;
    border-top: 0;
    border-bottom: 0;
}

#portfolio-data-table ul.sharer-links {
    margin: 0;
}

#portfolio-data-table ul.sharer-links li a {
    font-size: 14px;
    padding: 0 8px;
}


/*
///////////////////////////////////////////////
        TYPOGRAPHY
//////////////////////////////////////////////
*/

h1, h2, h3, h4, h5, h6, p {
    line-height: 1.5;
}

.site-main ul li:before {
    content: "\f106";
    font-family: 'FontAwesome';
    margin-left: -14px;
}
.sd-content ul li:before
{
    content: "";
}

blockquote{
    display:block;
    background: #f6f6f6;
    padding: 40px 140px 40px 40px;
    margin: 0;
    position: relative;

    /*Font*/
    font-family: Georgia, serif;
    font-size: 16px;
    color: #737373;
    text-align: justify;

    border-left: 5px solid #000;
    width: 100%;
    line-height: 200%;
    box-sizing: border-box;
}

.blog-archive-post blockquote {
    margin-bottom: 0;
    padding-right: 100px;
}

blockquote p {
    margin: 0;
}

blockquote::before{
    content: "\201D"; 
    font-size: 80px;
    color: #ccc;
    position: absolute;
    right: 50px;
    bottom:30px;
}

blockquote::after{
    /*Reset to make sure*/
    content: "";
}

blockquote a{
    text-decoration: none;
    background: #eee;
    cursor: pointer;
    padding: 0 3px;
    color: #c76c0c;
}

blockquote a:hover{
    color: #666;
}

blockquote em{
    font-style: italic;
}

table a:link {
    color: #444;
    font-weight: bold;
    text-decoration:none;
}
table a:visited {
    color: #999999;
    font-weight:bold;
    text-decoration:none;
}

table a:active,
table a:hover {
    color: #bd5a35;
    text-decoration:underline;
}

table {

}

table th {
    padding:11px 15px 12px 15px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    font-style: italic;
    background: #f6f6f6;
}

table th:first-child {
    text-align: left;
    padding-left:20px;
}

table tr {
    text-align: left;
    padding-left:20px;
}
table td:first-child {
    text-align: left;
    padding-left:20px;
    border-left: 0;
}
table td {
    padding:10px;
    border-top: 1px solid #ffffff;
    border-bottom:1px solid #eee;
}


/*
//////////////////////////////////////////////
        Page: CONTACT US
/////////////////////////////////////////////
*/

.wpcf7-form {
    max-width: 770px;
    margin: auto;
}

.wpcf7-form p {
    text-align: center;
}

.wpcf7-form p input[type="text"],
.wpcf7-form p input[type="email"],
.wpcf7-form p textarea {
    width: 100%;
    padding: 13px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #999;
}

.contact-form-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    line-height: 200%;
    margin-bottom: 50px;
}

div.vc_row .contact-form-title {
    margin-top: 0;
}

div.contact-info {
    text-align: center;
    padding: 30px 0;
    font-family: 'Montserrat', sans-serif;
    color: #787878;
}

div.contact-info p, div.contact-info h2 {
    margin:0;
    padding: 5px 0;
}

div.contact-info p:first-child {
    padding-bottom: 10px;
}

div.contact-info p i {
    font-size: 40px;
    color: #999;
    padding-bottom: 5px;
}

div.contact-info h2 {
    font-size: 15px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

div#contact-info-container {
    margin-bottom: 80px;
    padding-top: 50px;
}

div#contact-info-container.vc_row {
    padding-top: 80px;
}

div#contact-info-container div.panel-grid-cell:nth-child(even),
div#contact-info-container div.wpb_column:nth-child(even) {
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

div#contact-info-container div.panel-grid-cell:last-child,
div#contact-info-container div.wpb_column:last-child {
    border-right: 0;
}

/*
//////////////////////////////////////////////
        Page: 404 / Not Found
/////////////////////////////////////////////
*/

.error-404, .not-found {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background: url('../images/404_background.jpg');
    padding: 100px 0 0 0;
    height: 100vh;
    color: #252525;
}

.social-network-links a {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-color: #929292;
    color: #fff;
    margin: 0 3px;
    border-radius: 50%;
    line-height: 33px;
    transition: background-color .3s;
}

.social-network-links a:hover {
    background-color: #252525;
}

.error-404 .error-404-title {
    font-size: 220px;
    margin: 0;
    line-height: 200px;
    font-weight: bold;
    margin: 40px 0;
}

.error-404 .error-404-header .page-title {
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-top: 50px;
}

.error-404 .error-404-header .to-do {
    font-family: 'Droid Serif', serif;
    color: #696969;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.social-network-container .title {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
}

.not-found h1.page-title {
    font-size: 80px;
    line-height: 80px;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #252525;
}

.not-found input[type="search"] {
    width: 50%;
    background: transparent;
    border: 1px solid #aaa;
}

.not-found .social-network-container {
    margin-top: 50px;
}


/*
///////////////////////////////////////////////
        COMING SOON
//////////////////////////////////////////////
*/

.coming-soon-content-area {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    background-position: center center;
    background-attachment: fixed;
}

#timer-container div {
    display: inline-block;
    font-size: 13px;
    color: #252525;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 12px;
}

#timer-container div .number {
    display: block;
    font-weight: bold;
    font-size: 45px;
    letter-spacing: normal;
    width: 138px;
    height: 138px;
    border: 3px solid #8f8e8d;
    border-radius: 50%;
    line-height: 138px;
    margin-bottom: 15px;
    box-sizing: content-box;
    background-color: rgba(255, 255, 255, .3);
}

.coming-soon-header {
    padding-top: 80px;
    padding-right: 10%;
    padding-left: 10%;
    padding-bottom: 100px;
    font-family: 'Droid Serif', serif;
    color: #757575;
    font-size: 18px;
    font-style: italic;
} 

.coming-soon-header p {
    display: block;
}


.coming-soon-header h1,
.coming-soon-header h2,
.coming-soon-header h3,
.coming-soon-header h4, 
.coming-soon-header h5,
.coming-soon-header h6  {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    margin: 0;
    display: block;
    color: #252525;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 200%;
}

.coming-soon-header h1 {

}

.coming-soon-header .logo {
    margin: 0 0 30px 0;
}

.coming-soon-content-area .social-network-container {
    padding: 60px 0 0px 0;
}

.coming-soon-content-area .social-network-container p.title{
    font-weight: bold;
    color: #252525;
}

footer.transparent-footer .site-info {
    background-color: transparent;
}

footer.transparent-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
}


/*
///////////////////////////////////////////////
        WIDGETS
//////////////////////////////////////////////
*/

aside#secondary {
    font-family: 'Montserrat', sans-serif;
}

/* Calendar */

table#wp-calendar {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    box-sizing: border-box;
}

table#wp-calendar th, table#wp-calendar td {
    text-align: center;
}

table#wp-calendar td#today {
    background-color: #333;
    color: #fff;
}

table#wp-calendar td#prev a:hover {
    color: #333;
    text-decoration: none;
}

table#wp-calendar th:first-child, table#wp-calendar td:first-child {
    padding-left: 10px;
}

/* Tags */

.tagcloud a {
    display: inline-block;
    font-size: 13px !important;
    color: #999;
    text-decoration: none;
    padding: 7px 10px;
    border: 1px solid #ccc;
    margin-right: 6px;
    margin-bottom: 10px;
    transition: color .3s, border .3s, background-color .3s;
}

.tagcloud a:hover {
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
}

/* Drop down lists */

select {
    font-family: 'Montserrat', sans-serif;
    height: 50px;
    border: 0;
    background-color: #f6f6f6;
    color: #666666;
    padding: 0 40px 0 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-image: url('../images/select-arrow.png');
    background-repeat: no-repeat;
    background-position: center right 18px;
}

select::-ms-expand {
    display: none;
}

aside#secondary select {
    width: 100%
}

/* RSS */

.rssSummary, aside#secondary p {
    font-family: 'Droid Serif', serif;
}

.rssSummary {
    padding: 15px 0;
    font-style: italic;
    color: #999;
    line-height: 150%;
}

.rss-date {
    display: block;
    margin-top: 10px;
    color: #cc0000;
    font-size: 12px; 
}

/* Recent Posts */

.rpwe-ul .rpwe-li {
    padding-left: 0;
}

.rpwe-ul .rpwe-li:before {
    content: '';
}

.rpwe-img .rpwe-thumb {
    padding: 0 !important;
    border: 0 !important;
}

.rpwe-li h3.rpwe-title a {
    font-size: 11px !important;
    color: #333;
    font-weight: bold !important;
    text-transform: uppercase;
}


/*
///////////////////////////////////////////////
        HOME PAGE
//////////////////////////////////////////////
*/

#home-slider-area > .forcefullwidth_wrapper_tp_banner
{
    margin-top: -120px !important;
}
#home-slider-area {
    height: 100vh;
    width: 100%;
    position: relative;
}

#home-slider-area .bx-controls-direction a {
    bottom: 8%;
}

.home-slider {
    margin: 0;
}


.bx-viewport, .bx-wrapper{
    position:relative;
    width:100%;
    top:0;
    left:0;
}

.home-slider, .home-slider li{
    height: 100% !important;
}
.home-slider li{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-slider li:before {
    content: '';
}

.home-slider li .image-link {
    display: inline-block;
    max-height: 770px;
    overflow: hidden;
}

.home-slider-caption {
    padding: 15px 0;
    width: 900px;
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
}

.home-slider-caption div {
    display: block;
    float: left;
    padding: 0 10px;
    height: 50px;
    position: relative;
    box-sizing: border-box;
}

.home-slider-caption div:first-child {
    text-align: right;
    border-right: 1px solid #000;
    padding-right: 10px;
    width: 40%;
}

.home-slider-caption div:last-child {
    width: 60%;
}

.home-slider-caption div p {
    margin: 0;
    position: absolute;
}

.home-slider-caption div p.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #252525;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-slider-caption div p.read-more {
    bottom: 0;
    font-family: 'Droid Serif', serif;
    font-size: 14px;
    line-height: 14px;
    font-style: italic;
    color: #696969;
}

.home-slider-caption div p.read-more a {
    text-decoration: none;
}

.home-slider-caption div p.slide-number {
    right: 10px;
    font-family: 'Droid Serif', serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #252525;
}

.home-slider-caption div p.slide-category {
    right: 10px;
    bottom: 0;
    font-family: 'Droid Serif', serif;
    font-size: 14px;
    line-height: 14px;
    font-style: italic;
    color: #252525;
}

.home-slider-caption div p.slide-category a {
    text-decoration: none;
}

.porto-novo-clearfix:before, .porto-novo-clearfix:after {
    content: '';
    display: block;
    clear: both;
}

#home-slider-area .bx-wrapper {
    height: 100%;
}

#home-slider-area .bx-viewport {
    border: 0;
    background: transparent;
    box-shadow: none;
    left: 0;
    height: 100% !important;
}

#home-slider-area .bx-controls-direction a {
    text-indent: 0 !important;
    text-decoration: none;
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    top: unset;
    background: transparent !important;
}

#home-slider-area .bx-controls-direction a.bx-prev {
    left: 15%;
}

#home-slider-area .bx-controls-direction a.bx-next {
    right: 15%;
}

#home-slider-area .bx-controls-direction a:hover {
    color: #333;
    background: transparent !important;
}

#home-slider-area .bx-controls-direction a.bx-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
}

#home-slider-area .bx-controls-direction a.bx-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
}


/*========== BLOG SLIDER STYLE ==========*/

#home-slider-area.home-blog-slider {
    height: 600px;
}

#home-slider-area.home-blog-slider.boxed {
    max-width: 1170px;
    margin: auto;
}

#home-slider-area .blog-slider-caption-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .3s;
    transition-delay: .5s;
    background-color: rgba(0,0,0,.1);
}

#home-slider-area .blog-slider-caption-wrap {
    background-color: rgba(255,255,255,1);
    padding: 50px 20px;
    width: 45%;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: dashed 5px #efefef;
    outline-offset: -20px;
    

}

#home-slider-area .home-slider > li.slide_active .blog-slider-caption-mask {
    opacity: 1;
}

#home-slider-area .blog-slider-post-extra {
    font-style: italic;
}

#home-slider-area .blog-slider-post-extra div {
    display: inline-block;
}

#home-slider-area .blog-slider-post-extra div a {
    text-decoration: none;
}

#home-slider-area .blog-slider-caption-wrap .blog-slider-read-more a {
   text-decoration: none;
   font-family: 'Montserrat', sans-serif;
   position: relative;
   display: inline-block;
   text-transform: uppercase;
   font-size: 11px;
   padding: 15px 30px;
   color: #efefef;
   border-radius: 0px;
   background-color: #333;
   transition: background-color .3s, color .3s;
}

#home-slider-area .blog-slider-caption-wrap .blog-slider-read-more {
    margin-bottom: 0;
}

#home-slider-area .blog-slider-caption-wrap .blog-slider-read-more a:hover {
   background-color: #252525;
}

#home-slider-area .blog-slider-caption-wrap .blog-slider-post-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 0;

}

#home-slider-area .blog-slider-caption-wrap .blog-slider-post-extra:before {
    content: '';
    display: block;
    height: 2px;
    width: 40px;
    background-color: #b3daeb;
    margin: auto;
    margin-bottom: 10px;
}

#home-slider-area .blog-slider-caption-wrap .blog-slider-post-light-excerpt {
    font-family: 'Droid Serif', sans-serif;
    color: #999;
    margin: 30px;
}

#home-slider-area.home-blog-slider .bx-controls-direction a {
    bottom: 50%;
    color: #fff;
}

#home-slider-area.home-blog-slider .bx-controls-direction a.bx-prev {
    left: 1%;
}

#home-slider-area.home-blog-slider .bx-controls-direction a.bx-next {
    right: 1%;
}

#home-slider-area.home-blog-slider .bx-controls-direction a:hover {
    color: #fff;
    background: transparent !important;
}

#home-slider-area.home-blog-slider .bx-controls-direction a.bx-prev:before {
    content: "\e629";
    font-family: 'themify';
}

#home-slider-area.home-blog-slider .bx-controls-direction a.bx-next:before {
    content: "\e628";
    font-family: 'themify';
}


/* Content */

.page-builder-content {
    max-width: 1170px;
    margin: auto;
    padding-top: 65px;
}

.home-text-box .vc_column-inner > .wpb_wrapper {
    background-color: #f9f9f9;
    padding: 20px;
    height: 270px;
}

.home-text-box {
    margin-bottom: 35px;
    height: 270px;
}

.home-text-box h3, .big-home-text-box h3 {
    letter-spacing: 4px;
    color: #252525;
    font-size: 16px;
    margin: 0
}

.big-home-text-box .vc_column-inner > .wpb_wrapper {
    border: 10px solid #b3daeb;
}

.homepost {
    position: relative;
    cursor: pointer;
}

.homepost img {
    vertical-align: bottom;
}

.homepost a {
    opacity: 0;
    transition: opacity .3s;
}

.homepost:hover a, .homepost[data-class="no-attachment"] a {
    opacity: 1;
    text-decoration: none;
}
.homepost-caption {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 10px solid #b3daeb;
    background-color: rgba(255,255,255,.85);
    display: inline-block;
}

.homepost-caption h3 {
    letter-spacing: 3px;
    color: #252525;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
}

.homepost-caption h3:after {
    content: '';
    display: block;
    margin: auto;
    width: 30px;
    height: 3px;
    background-color: #252525;
    margin-top: 4px;
    margin-bottom: 3px;
}

.homepost[data-class="no-attachment"] .caption-info
{
    top: 45px;
    left: 10px;
    text-align: left;
    word-spacing: 300px;
}

.homepost[data-class="no-attachment"] .homepost-caption h3:before {
    content: '';
    display: block;
    margin: auto;
    width: 30px;
    height: 3px;
    background-color: #252525;
    margin-top: -10px;
    margin-bottom: 3px;
    position: absolute;
}
.homepost[data-class="no-attachment"] .homepost-caption h3:after
{
    display: none;
}
.homepost[data-class="no-attachment"] .homepost-caption
{
    background: #f5f5f5;
    border: none;
}
.homepost-desc
{
    font-style: italic;
    margin-right: 20px;
    font-size: 14px;
    color: #696969;
    position: absolute;
    bottom: 0;
    margin-right: 0;
    left: 10px;
    width: 65%;
}

.homepost-caption p {
    margin: 0;
    font-style: italic;
}

.homepost-caption .caption-info {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/*
///////////////////////////////////////////////
        ABOUT US
//////////////////////////////////////////////
*/

div.about-us-list-box {
    margin-bottom: 35px;
}

.about-us-list-box .textwidget,
.about-us-list-box .vc_column-inner > .wpb_wrapper {
    background-color: #f7f7f7;
    padding: 33px ;
}

.about-us-list-box .textwidget,
.about-us-list-box .vc_column-inner > .wpb_wrapper .wpb_text_column {
    margin-bottom: 0;
}

.about-us-list-box h1, .about-us-list-box h3 {
    color: #181818;
    margin: 0;
}

.about-us-list-box h1 {
    font-size: 72px;
    line-height: 72px;
    font-weight: bold;
}

.about-us-list-box h3 {
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 4px;
    padding: 10px 0 35px 0;
}

.about-us-list-box ul {
    margin: 0;
}

.about-us-list-box ul li:before {
    content: '';
}

.about-us-list-box ul li {
    line-height: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.about-us-list-box ul li:last-child {
    border-bottom: 0;
}

.about-us-skill-box .textwidget,
.about-us-skill-box .vc_column-inner > .wpb_wrapper {
    background-color: #f7f7f7;
    padding: 33px ;
    height: 270px;
    position: relative;
    transition: background-color .3s;
}

.about-us-skill-box {
    margin-bottom: 35px;
}

.about-us-skill-box p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #181818;
    position: absolute;
    bottom: 30px;
    transition: color .3s;
}

.about-us-skill-box h1 {
    font-family: 'Droid Serif', serif;
    font-size: 48px;
    line-height: 48px;
    color: #ccc;
    margin: 0;
    transition: color .3s;
}

.about-us-skill-box .textwidget:hover,
.about-us-skill-box .vc_column-inner > .wpb_wrapper:hover {
    background-color: #333;
}

.about-us-skill-box .textwidget:hover h1,
.about-us-skill-box .textwidget:hover p,
.about-us-skill-box .vc_column-inner > .wpb_wrapper:hover h1,
.about-us-skill-box .vc_column-inner > .wpb_wrapper:hover p {
    color: #fff;
}

.about-us-text-box h3 {
    font-weight: normal;
    font-size: 22px;
    line-height: 22px;
    color: #252525;
    letter-spacing: 4px;
}

.about-us-text-box p {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    line-height: 1.52;
}

.about-us-text-box h3:before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #252525;
    margin-bottom: 10px;
}


.about-us-text-box .textwidget,
.about-us-text-box .vc_column-inner > .wpb_wrapper {
    background-color: #f7f7f7;
    padding: 33px ;
    position: relative;
}

.about-us-list-box ul li {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
}

.team-showcase-container {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
}


.member-area {
    width: 100%;
    height: 370px;
    background-color: #f7f7f7;
    margin-bottom: 35px;
}

.member-area .member-photo {
    width: 370px;
    height: 370px;
    overflow: hidden;
    float: left;
}

.member-area .member-photo img {
    width: 100%;
}

.member-area .member-info {
    width: calc(100% - 370px);
    height: 100%;
    box-sizing: border-box;
    padding: 40px 70px;
    text-align: center;
    float: left;
    position: relative;
}

.member-area .member-info .member-name,
.member-area .member-info .member-field,
.member-area .member-info .member-description {
    margin: 0;
}

.member-area .member-info .member-name{
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #181818;
}

.member-area .member-info .member-field{
    color: #696969;
    font-style: italic;
}

.member-area .member-info .member-description {
    color: #696969;
    margin-top: 45px;
}

.member-area .member-info .member-social a {
    display: inline-block;
    padding: 5px;
    font-size: 18px;
    margin: 0 10px;
}

.member-area .member-info .member-social {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

ul.team-showcase-slider {
    margin: 0
}

ul.team-showcase-slider li:before {
    content: '';
}


/*
///////////////////////////////////////////////
        SHOP ARCHIVE
//////////////////////////////////////////////
*/

.product-title-container {
    position: relative;
}

.product-title-container h2 {
    margin-right: 40px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woocommerce #respond input#submit, .woocommerce a.button, 
.woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, 
.woocommerce button.button.alt, .woocommerce input.button.alt,

.woocommerce #respond input#submit.disabled, .woocommerce a.button.disabled, 
.woocommerce button.button.disabled, .woocommerce input.button.disabled,
.woocommerce #respond input#submit.alt.disabled, .woocommerce a.button.alt.disabled, 
.woocommerce button.button.alt.disabled, .woocommerce input.button.alt.disabled {
    background-color: #333;
    line-height: 40px;
    height: 40px;
    text-transform: uppercase;
    padding: 0 40px;
    background-color: #333;
    font-size: 10px;
    color: #fff;
    border-radius: 0;
    transition: background-color .3s, color .3s;
}


.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, 
.woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,

.woocommerce #respond input#submit.disabled:hover, .woocommerce a.button.disabled:hover, 
.woocommerce button.button.disabled:hover, .woocommerce input.button.disabled:hover,
.woocommerce #respond input#submit.alt.disabled:hover, .woocommerce a.button.alt.disabled:hover, 
.woocommerce button.button.alt.disabled:hover, .woocommerce input.button.alt.disabled:hover {
    background-color: #181818;
    color: #fff;
}


.woocommerce #respond input#submit:active, .woocommerce a.button:active, 
.woocommerce button.button:active, .woocommerce input.button:active,
.woocommerce #respond input#submit.alt:active, .woocommerce a.button.alt:active, 
.woocommerce button.button.alt:active, .woocommerce input.button.alt:active,

.woocommerce #respond input#submit.disabled:active, .woocommerce a.button.disabled:active, 
.woocommerce button.button.disabled:active, .woocommerce input.button.disabled:active,
.woocommerce #respond input#submit.alt.disabled:active, .woocommerce a.button.alt.disabled:active, 
.woocommerce button.button.alt.disabled:active, .woocommerce input.button.alt.disabled:active {
    top: 0;
}

.wc-mini-cart {
    position: absolute;
    right: 30px;
    width: 370px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    padding: 30px 22px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    border: 1px solid #d1d5db;
    transition: opacity .3s, transform .3s, visibility .3s;
}

#masthead-cart-icon:hover .wc-mini-cart {
    visibility:visible;
    opacity: 1;
    transform: translateY(0%);
}

.wc-mini-cart dl.variation {
    display: none;
}

.wc-mini-cart ul.cart_list {
    max-height: 360px;
}

.ul.cart_list, ul.product_list_widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-mini-cart ul.cart_list .mCSB_scrollTools {
    right: -15px;
}

.wc-mini-cart ul.cart_list .mCSB_dragger_bar {
    width: 2px;
}

ul.cart_list li img, ul.product_list_widget li img {
    float: left !important;
    width: 85px !important;
    margin-right: 8px;
    margin-left: 0 !important;
}

ul.cart_list li a, ul.product_list_widget li a {
    display: block;
    font-weight: bold;
    line-height: 120%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #252525;
}

ul.cart_list li span.quantity, 
ul.product_list_widget li span.quantity {
    display: block;
    font-weight: bold;
    line-height: 120%;
    text-align: left;
    color: #999;
    margin-top: 5px;
}

ul.cart_list li span.quantity span.amount, 
ul.product_list_widget li span.quantity span.amount {
    color: #99cc00;
}

ul.cart_list li a.remove, 
ul.product_list_widget li a.remove,
.woocommerce table.shop_table td.product-remove a {
    position: absolute;
    right: 0px;
    overflow: hidden;
    color: transparent !important;
    border-radius: 0;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    line-height: 1;
}

ul.cart_list li a.remove:hover, 
ul.product_list_widget li a.remove:hover,
.woocommerce table.shop_table td.product-remove a:hover {
    background: transparent;
}

ul.cart_list li a.remove:hover:before, 
ul.product_list_widget li a.remove:hover:before,
.woocommerce table.shop_table td.product-remove a:hover:before {
    color: #cc0000;
}

ul.cart_list li a.remove:before, 
ul.product_list_widget li a.remove:before,
.woocommerce table.shop_table td.product-remove a:before {
    content: '\f014';
    font-family: 'FontAwesome';
    color: #252525;
    display: inline-block;
    width: 20px;
    text-align: center;
    transition: color .3s;
}

ul.cart_list li, ul.product_list_widget li {
    padding: 20px 0 !important;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

ul.cart_list li:before, ul.product_list_widget li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
}

ul.cart_list li.empty, ul.product_list_widget li.empty {
    padding: 0 !important;
    border: 0;
    background-color: #f7f7f7;
}

ul.cart_list li:first-child, 
ul.product_list_widget li:first-child {
    padding-top: 0 !important;
}

.wc-mini-cart p.total {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.wc-mini-cart p.total strong {
    float: left;
    font-weight: normal;
}

.wc-mini-cart p.total span.amount {
    float: right;
}

.wc-mini-cart p.total .woocommerce-Price-currencySymbol {
    font-size: 10px;
    font-weight: 400;
    position: relative;
    top: -5px;
}

.wc-mini-cart p.buttons {
    clear: both;
    margin-bottom: 0;
}

.wc-mini-cart p.buttons a {
    float: left;
    line-height: 45px;
    height: 49px;
    width: 150px;
    box-sizing: border-box;
    background: transparent;
    border: 2px solid #181818;
    color: #181818;
    transition: background .3s, color .3s, border-color .3s;
}

.wc-mini-cart p.buttons a.checkout {
    float: right;
}

.wc-mini-cart .form-top-arrow {
    left: auto;
    right: 30px;
}


div.product-thumbnail-wrap {
    position: relative;
    overflow: hidden;
}

div.product-thumbnail-wrap .see-more {
    position: absolute;
    padding: 5px 10px;
    background-color: rgba(255,255,255,.8);
    right: 0;
    color: #999;
    transition: transform .3s;
}

div.product-thumbnail-wrap:hover .see-more {
    transform: translateY(-100%);
}

ul.products li.product a.button {
   width: 100%;
   text-align: center;
}

.woocommerce ul.products li.product a img {
    margin: 0;
}

div.archive-product-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.7);
    text-align: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
}

div.archive-product-buttons-wrap {
    display: inline-block;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

div.archive-product-buttons {
    text-align: center;
    font-size: 18px;
}

div.archive-product-buttons .yith-wcwl-add-button a{
    border: none;
}

div.archive-product-buttons .yith-wcwl-add-to-wishlist {
    display: inline-block;
    margin-top: 0px;
}

div.yith-wcwl-add-to-wishlist > div {
    text-align: left;
}

div.yith-wcwl-add-button > a i {
    margin-right: 0;
    line-height: 38px;
}

div.yith-wcwl-add-button > a {
    border: none;
}

div.yith-wcwl-add-button > a.yith-wcwl-add-to-wishlist {
   position: absolute;
   top: 0;
   right: 0;
}

div.yith-wcwl-add-button > a:hover {
   background: transparent;
   color: #000;
}

div.archive-product-buttons a {
    line-height: 18px;
    display: block;
    float: left;
    padding: 8px 10px;
    background-color: #fff;
    transition: background-color .3s, color .3s;
}

div.archive-product-buttons a:hover {
    background-color: #333;
    color: #fff;
}

div.product-thumbnail-wrap:hover div.archive-product-caption {
    visibility: visible;
    opacity: 1;
}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    font-family: 'Montserrat', sans-serif;
    margin: 0 30px 30px 0;
    width: calc((100% - 60px)/3);
}

.woocommerce.columns-2 ul.products li.product {
    width: calc((100% - 30px)/2);
}

.woocommerce.columns-3 ul.products li.product {
    width: calc((100% - 60px)/3);
}

.woocommerce.columns-4 ul.products li.product {
    width: calc((100% - 90px)/4);
}

.woocommerce.columns-5 ul.products li.product {
    width: calc((100% - 120px)/5);
}

.woocommerce.columns-6 ul.products li.product {
    width: calc((100% - 150px)/6);
}

.woocommerce.columns-6 ul.products li.product .archive-product-buttons span:last-child,
.woocommerce.columns-5 ul.products li.product .archive-product-buttons span:last-child {
    display: none;
}

.woocommerce ul.products li.last, .woocommerce-page ul.products li.last {
    margin-right: 0;
}

.woocommerce ul.products li:before, .woocommerce-page ul.products li:before {
    content: '';
}

.woocommerce ul.products li.product h3 {
    text-align: center;
    color: #a6a6a6;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color .3s;
}

.woocommerce ul.products li.product:hover h3 {
    color: #252525;
}

.woocommerce .products .star-rating {
    margin: 0 auto;
    color: #333;
}

.woocommerce ul.products li.product .price {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    text-align: left;
}

.woocommerce ul.products li.product .price .amount {
    color: #99cc00;
}

.woocommerce ul.products li.product .price del .amount {
    color: #a6a6a6;
}

.woocommerce ul.products li.product .price del {
    display: inline-block;
}

.woocommerce ul.products li.product .onsale {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    top: 11px;
}

.woocommerce span.onsale {
    background-color: #333;
    border-radius: 0;
    font-weight: normal;
    font-size: 10px;
    text-transform: uppercase;
    min-height: unset;
    min-width: unset;
    line-height: 30px;
    padding: 0 12px;
    box-sizing: border-box;
    transform: rotate(-90deg);
}


.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
    font-family: 'Montserrat', sans-serif;
}

.woocommerce .woocommerce-result-count {
    color: #b0b0b0;
}

form.woocommerce-ordering select {
    height: auto;
    background-color: transparent;
}

form.woocommerce-ordering {
    z-index: 0;
}

.woocommerce .products ul, .woocommerce ul.products {
    padding-top: 30px;
}


.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.woocommerce nav.woocommerce-pagination ul li {
    border-right: 0;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    line-height: 35px;
    width: 35px;
    height: 35px;
    padding: 0;
    color: #000;
    transition: background .3s;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #333;
    color: #fff;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: .1em;
    color: #ccc;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #d5d5d5;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #333;
    border-radius: 0;
    top: -.4em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #333;
}

.wc-mini-cart #respond input#submit, 
.wc-mini-cart a.button, 
.wc-mini-cart button.button, 
.wc-mini-cart input.button {
    line-height: 35px;
    background: #333;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    transition: background .3s;
    font-size: 12px;
    text-decoration: none;
}

.wc-mini-cart #respond input#submit:hover, 
.wc-mini-cart a.button:hover, 
.wc-mini-cart button.button:hover, 
.wc-mini-cart input.button:hover {
    background: #181818;
    color: #fff;
}

.woocommerce .woocommerce-message:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 21px;
    line-height: 20px;
}

.woocommerce .woocommerce-info:before {
    content: '\f05a';
    font-family: 'FontAwesome';
    font-size: 21px;
    line-height: 21px;
}

.woocommerce .woocommerce-error:before {
    content: '\f071';
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 23px;
}

.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {
    border-top: 0;
    border-left: 3px solid #181818;
    font-family: 'Montserrat', sans-serif;
    line-height: 34px;
    padding: 1em 2em 1em 4.5em!important;
}

.woocommerce ul li:before, 
ul.sharer-links li:before {
    content: '';
}

.woocommerce .woocommerce-error a, .woocommerce .woocommerce-info a, .woocommerce .woocommerce-message a {
    text-decoration: none;
    color: #999;
}

.woocommerce .woocommerce-error a:hover, 
.woocommerce .woocommerce-info a:hover, 
.woocommerce .woocommerce-message a:hover {
    color: #181818;
}

.woocommerce .woocommerce-error .button, 
.woocommerce .woocommerce-info .button, 
.woocommerce .woocommerce-message .button {
    text-transform: uppercase;
    font-weight: normal;
    color: #181818;
    font-size: 10px;
    padding: 0 15px;
    line-height: 30px;
    height: 34px;
    background-color: transparent;
    border-radius: 0;
    border: 2px solid #181818;
    transition: background-color .3s, color .3s, border-color .3s;
}

.woocommerce .woocommerce-error .button:hover, 
.woocommerce .woocommerce-info .button:hover, 
.woocommerce .woocommerce-message .button:hover {
    background-color: #181818;
    color: #fff;
}

/* ***** WHISHLIST ***** */

div.yith-wcwl-add-to-wishlist {
    text-align: center;
    font-size: 12px;
    margin: 0;
}

div.summary div.yith-wcwl-add-to-wishlist div {
    text-align: right;
}


/* ***** SINGLE PRODUCT NAV ***** */

div.product-nav-wrap {
    position: absolute;
    right: 0;
    top: 0;
}

nav.single-product-nav span {
    margin: ri;
}

nav.single-product-nav span a {
    display: inline-block;
    width: 44px;
    line-height: 60px;
    text-align: center;
    background-color: #e9e9e9;
    transition: background-color .3s, color .3s;
}

nav.single-product-nav span.nav-previous a {
    margin-right: 10px;
}

nav.single-product-nav span a:hover {
    background-color: #333;
    color: #fff;
}


/* Product Filter */

.woof_container {
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.woof_container:last-child {
    border-bottom: 0;
}

.woof_container h4 {
    text-transform: uppercase;
}

section.widget ul.woof_list li:before {
    content: '';
}

ul.woof_list {
    padding-left: 0;
}

ul.woof_list_color {
    padding-left: 3px;
}

.woof_list li {
    margin: 0 !important;
    padding: 8px 0 8px 0 !important;
    position: relative;
}

.woof_childs_list_opener span.woof_is_closed,
.woof_childs_list_opener span.woof_is_opened {
    background: none !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
    height: 44px;
    line-height: 44px;
}

.woof_childs_list_opener span.woof_is_closed:before {
    content: '\e61a';
    font-family: 'themify';
    color: #333;
}

.woof_childs_list_opener span.woof_is_opened:before {
    content: '\e622';
    font-family: 'themify';
    color: #333;
}

section.widget ul.woof_list_color li {
    display: inline-block;
    border-bottom: 0;
}

.woof_color_term {
    width: 22px;
    height: 22px;
    border: 0;
    padding: 0px;
    background-clip: content-box;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.woof_color_term.checked {
    border: 0;
    outline: 1px solid #333;
    outline-offset: 2px;
}

/* ***** WOOF LABELS ***** */

section.widget ul.woof_list_label li {
    padding: 0 !important;
    border-bottom: 0;
}

section.widget ul.woof_list_label li .woof_label_count {
    display: none;
}

section.widget .woof_list_label .woof_label_term {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    width: auto;
    min-width: 30px;
    height: auto;
    line-height: 25px;
    padding: 0 7px;
    border: 0;
    margin-right: 8px;
    box-sizing: border-box;
}

section.widget .woof_list_label li .woof_label_term:hover, 
section.widget .woof_list_label li .woof_label_term.checked {
    background-color: #333;
}

.woof_list label {
    padding-top: 3px !important;
}

.tax-product_cat .term-description {
    display: none;
}


/*
///////////////////////////////////////////////
        SHOP CART
//////////////////////////////////////////////
*/

.woocommerce table.shop_table {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    border: 0; 
    margin: 0; 
    background-color: #f9f9f9;
    border-radius: 0; 
}

.woocommerce table.shop_table th {
    font-weight: normal;
    font-style: normal;
    color: #252525;
    letter-spacing: 1px;
    background-color: transparent;
}

.woocommerce table.shop_table td.product-remove a {
    position: relative;
    margin: auto;
}

.woocommerce-cart table.cart img {
    width: 85px;
}

.woocommerce table.shop_table td {
    font-weight: bold;
    border-top: 0;
}

.woocommerce table.shop_table td.product-price {
    color: #99cc00;
}

.woocommerce table.shop_table td.product-quantity div.quantity input {
    padding: 0;
    line-height: 40px;
    width: 80px;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: 1px solid #ccc;
}

.woocommerce table.shop_table td.product-name a {
    color: #666666;
    letter-spacing: 1px;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: #252525;
    text-decoration: none;
}

.woocommerce table.shop_table td.actions {
    background-color: transparent;
    border-bottom: 0;
}

.woocommerce table.shop_table td.actions input[type="submit"] {
    border-radius: 0;
    background: transparent;
    color: #333;
    transition: background-color .3s, border-color .3s, color .3s;
}

.woocommerce table.shop_table td.actions input[type="submit"]:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce .cart .button, .woocommerce .cart input.button
{
    line-height: 40px;
    margin-right: 2px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    margin: 0;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce .cart .button, .woocommerce .cart input.button
{
    padding: 0 20px;
}

.woocommerce-cart table.cart td.actions .coupon .button {
    border-left: 0;
}

.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
    padding: 0 20px;
}


.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    margin: auto;
}

.woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
    text-align: center;
    color: #252525;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    margin-top: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
    width: 50%;
    border-top: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals tr td {
    text-align: right;
    border-top: 0;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td, 
.woocommerce table.shop_table tbody:first-child tr:first-child th {
    border-top: 1px solid #eee; 
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, 
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    background-color: transparent;
    border: 2px solid #181818;
    color: #181818;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 14px;
    padding: 0 12px;
    line-height: 50px;
    height: 54px;
    transition: background-color .3s, color .3s, border-color .3s;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, 
.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
    background-color: #181818;
    color: #fff;
}

dl.variation {
    color: #999;
}

.woocommerce td.product-name dl.variation dd {
    margin: 0 5px;
}

.woocommerce td.product-name dl.variation dt {
    margin: 0px 5px 0px 0;
}

dl.variation dt p, dl.variation dd p {
    margin: 0;
}

.quantity-container .quantity-change-box button {
    padding: 0;
}

/* ***** WHISHLIST ***** */

table.wishlist_table {

}

table.wishlist_table div.archive-product-buttons {
    font-size: 13px;
    position: static;
    transform: translateX(0);
}

table.wishlist_table div.archive-product-buttons a.add_to_wishlist {
    display: none !important;
}

table.wishlist_table div.archive-product-buttons a {
    text-decoration: none;
}

table.wishlist_table thead th.product-price, 
table.wishlist_table thead th.product-stock-stauts {
    text-align: center;
}

table.wishlist_table.cart a.remove:hover {
    background-color: transparent !important;
}

div.wishlist-title {
    display: none;
}

/*
///////////////////////////////////////////////
        SHOP CHECKOUT
//////////////////////////////////////////////
*/

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 0;
    border-radius: 0;
    background-color: #f7f6f7;
}

.woocommerce form.checkout_coupon input.input-text, 
.woocommerce form.login input.input-text, 
.woocommerce form.register input.input-text {
    border: 1px solid #ccc;
    line-height: 38px !important;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    background-color: #f6f6f6;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce form .form-row input.input-text {
    line-height: 50px;
    height: 50px;
}

.woocommerce form .form-row textarea {
    min-height: 300px;
    padding: 14px 20px;
}

.woocommerce form {
    font-family: 'Montserrat', sans-serif;
}

.select2-container .select2-choice {
    border: 0;
    line-height: 50px;
    background-color: #f6f6f6;
    padding-left: 20px; 
    padding-right: 40px;
    background-image: url('../images/select-arrow.png');
    background-repeat: no-repeat;
    background-position: center right 18px;
    border-radius: 0;
}

.select2-drop-active, .select2-drop {
    border: 1px solid #ccc;
}

.select2-search {
    padding: 0;
}

.woocommerce form #billing_company_field, .woocommerce form #billing_country_field {
    padding-bottom: 30px;
    border-bottom: 1px solid #dfdfdf;
}

.woocommerce form .form-row {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, 
.woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 49%;
}

.select2-container .select2-choice .select2-arrow {
    display: none;
}

div.woocommerce-billing-fields h3, div.woocommerce-shipping-fields h3, #order_review_heading {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #252525;
}

.woocommerce-checkout-review-order-table {
    width: 48% !important;
    float: left;
}

.woocommerce-checkout-payment {
    width: 48%;
    float: right;
}

.woocommerce-checkout-review-order-table td.product-total {
    color: #99cc00;
}

.woocommerce-checkout-review-order-table tfoot th, .woocommerce-checkout-review-order-table tfoot td {
    border-top: 0 !important;
}

#order_review_heading {
    margin-top: 40px;
}

#add_payment_method #payment, .woocommerce-checkout #payment {
    background-color: #f9f9f9;
    border-radius: 0;
}

#add_payment_method #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #eee;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    line-height: 40px;
    padding: 0 20px;
}

p.cart-empty, p.return-to-shop {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

p.return-to-shop a {
    line-height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 0;
}

p.return-to-shop a:hover {
    background-color: #181818;
}

.woocommerce form .form-row .input-checkbox { 
    position: static; 
} 


/*
///////////////////////////////////////////////
        SHOP SINGLE
//////////////////////////////////////////////
*/

.woocommerce #content div.product div.thumbnails a, 
.woocommerce div.product div.thumbnails a, 
.woocommerce-page #content div.product div.thumbnails a, 
.woocommerce-page div.product div.thumbnails a {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0px;
    display: block;
}

div.product span.onsale {
    font-family: 'Montserrat', sans-serif;
    left: auto;
    top: 10px;
    right: 51.5%;
    z-index: 1;

}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, 
.woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 49%;
    position: relative;
    overflow: hidden;
}

div.product div.images {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row wrap;
}

div.product div.images .bx-wrapper {
    padding: 45px 0;
    height: 100%;
}

div.product div.images .bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #eee;
    background-color: #a6a6a6 !important;
}

div.product div.images .bx-wrapper .bx-controls-direction a:hover {
    background-color: #4c4c4c !important;
    color: #ccc;
}

div.product div.images .bx-wrapper .bx-controls-direction a.disabled {
    display: block;
    opacity: .5;
}

div.product div.images .bx-wrapper .bx-controls-direction a.disabled:hover {
    background-color: #a6a6a6 !important;
    color: #eee;
}

div.product div.images .bx-wrapper .bx-controls-direction a.bx-prev:before {
    content: '\f106';
    font-family: 'FontAwesome';
}

div.product div.images .bx-wrapper .bx-controls-direction a.bx-prev {
    top: 16px !important;
    left: 50%;
    transform: translateX(-50%);
}

div.product div.images .bx-wrapper .bx-controls-direction a.bx-next {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

div.product div.images .bx-wrapper .bx-controls-direction a.bx-next:before {
    content: '\f107';
    font-family: 'FontAwesome';
}

div.product figure > .woocommerce-product-gallery__image {
    width: calc(100% - 100px) !important;
    float: right !important;
}

div.product figure > .woocommerce-product-gallery__image.full {
    width: 100% !important;
}

div.product figure {
    width: 100% !important;
    overflow: hidden;
}

.woocommerce div.product div.images div.thumbnails {
    padding-top: 0;
}

div.product div.images .thumbnails-container {
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

div.product div.images .flex-viewport {
    width: 100%;
}

div.product div.images .thumbnails, div.product div.images .thumbnails div {
    display: block !important;
    overflow: hidden;
}


button.pswp__button--arrow--left:active, button.pswp__button--arrow--right:active {
    position: absolute;
    top: 50%;
}


div.product div.summary {
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

div.product div.summary h1.product_title {
    font-size: 20px;
    line-height: 20px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-right: 100px;
}

.woocommerce div.product .woocommerce-product-rating {
    line-height: 100%;
}

.woocommerce .woocommerce-product-rating .star-rating {
    margin: 0 25px 0 0;
}

.woocommerce div.product .woocommerce-product-rating a.woocommerce-review-link {
    font-family: 'Droid Serif', serif;
    text-decoration: none;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #99cc00;
    font-weight: bold;
    font-size: 22px;
}

.woocommerce div.product p.price del, .woocommerce div.product span.price del {
    opacity: 1;
    color: #a6a6a6;
    margin-right: 10px;
}

div.product div[itemprop="description"] {
    padding: 20px 0 40px 0;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
}

div.product div[itemprop="description"] p {
    margin: 0;
    font-family: 'Droid Serif', serif;
}

div.product div.summary div.single-product-nav {
    position: absolute;
    right: 0;
}

div.product div.summary div.single-product-nav span {
    display: inline-block;
    width: 45px;
    height: 60px;
    background-color: #e9e9e9;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color .3s, color .3s;
}

div.product div.summary div.single-product-nav span:hover {
    background-color: #333;
    color: #fff;
}

div.product div.summary select {
    background-color: transparent;
    border: 1px solid #d6d6d6;
    height: 40px !important;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce div.product form.cart .variations td, 
.woocommerce div.product form.cart .variations th {
    line-height: 40px;
}

.quantity-wrap {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.quantity-wrap span {
    display: inline-block;
}

.quantity-wrap .quantity-change-box {
    border: 1px solid #d6d6d6;
}

.quantity-wrap .quantity-label {
    color: #000;
}

.quantity-wrap .quantity-label:after, table.variations .label:after {
    content: '*';
    color: #cc0000;
    margin-left: 5px;
}

.quantity-wrap .quantity-change-box button {
    line-height: 38px;
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
    width: 20%;
    box-sizing: border-box;
}

.quantity-wrap .quantity-change-box button:active {
    top: 0;
}

.quantity-wrap .quantity-change-box button:hover {
    background-color: #d6d6d6;
}



.quantity-wrap .quantity-change-box span {
    width: 60%;
    float: left;
}

.quantity-wrap .quantity-change-box span input {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    line-height: 38px;
}

.quantity-wrap .quantity-change-box span input[type=number]::-webkit-inner-spin-button,
.quantity-wrap .quantity-change-box span input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

.quantity-wrap .quantity-change-box button.quantity-minus {
    border-right: 1px solid #d6d6d6;
    float: left;
}

.quantity-wrap .quantity-change-box button.quantity-plus {
    border-left: 1px solid #d6d6d6;
    float: right;
}

.quantity-wrap td {
    padding: 0;
    border-bottom: 0;
}

.quantity-wrap td.quantity-label {
    width: 20%;
}

.quantity-container {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
}

table.variations td.label {
    width: 20%;
    text-transform: uppercase;
    font-weight: normal;
}

table.variations td.value {
    padding-right: 0;
}

table.variations td.value select {
    width: 100%;
}

table.variations .reset_variations {
    display: none !important;
}

.woocommerce div.product form.cart .variations label {
    font-weight: normal;
    color: #000;
}


table.variations {
    margin-top: 10px;
}

div.product div.summary .sharer-container {
    display: inline-block;
}

div.product div.summary .sharer-container ul.sharer-links {
    margin-left: 0;
}

div.product div.summary .sharer-wrap {
    margin-top: 10px;
}

div.product div.summary .product_meta a {
    text-decoration: none;
    color: #999;
}

div.product div.summary .product_meta a:hover {
    color: #181818;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    font-family: 'Montserrat', sans-serif;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    line-height: 50px;
    z-index: 2;
    margin: 0;
    background-color: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 0;
    color: #ccc;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: #f5f5f5;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before {
    background-color: #000;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after, 
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
    border-bottom-right-radius: 0;
    width: 0;
    height: 0;
    bottom: 0;
    margin-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background-color: transparent;
    left: 0;
    border: 0;
}

div.product div.related h2 {
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 40px;
    background-color: #fff;
    margin: 18px 0;
}

div.product div.related .title-container:after {
    content: '';
    display: block;
    height: 1px;
    background-color: #d6d6d6;
    position: relative;
    bottom: 38px;
    z-index: -1;
}

div.product div.related ul.products li {
    width: calc((100% - 90px)/4);
}

.woocommerce #reviews #comments ol.commentlist {
    padding: 20px 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin-left: 100px;
    padding: 22px 18px 18px 18px;
    background-color: #efefef;
    position: relative;
    border-radius: 0;
    border: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text div[itemprop="description"] {
    padding: 0; 
    border: 0; 
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 12px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time {
    color: #a6a6a6;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
    color: #252525;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
    font-size: 11px;
    line-height: 12px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text:before {
    position: absolute;
    left: -13px;
    content: '';
    border-right: 20px solid #efefef;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 10px;
}


.woocommerce #content div.product #reviews .comment img, .woocommerce div.product #reviews .comment img, 
.woocommerce-page #content div.product #reviews .comment img, 
.woocommerce-page div.product #reviews .comment img {
    float: left;
}


.woocommerce #review_form #respond textarea {
    padding: 13px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce #content div.product .woocommerce-tabs h2,
.woocommerce #content div.product .woocommerce-tabs h3 {
    color: #252525;
    text-transform: uppercase;
    font-size: 14px;
}

.availability-wrap {
    margin-bottom: 20px;
}

.availability-wrap span {
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
}

.availability-wrap span span {
    display: inline-block;
    margin: 0;
    color: #99cc00;
}

.availability-wrap span.only-left {
    padding-right: 35px;
    margin-right: 35px;
    border-right: 1px solid #999;
}

.availability-wrap span.only-left:before {
    content: '\f24d';
    font-family: 'FontAwesome';
    display: inline-block;
    margin-right: 12px;
}

.after-add-to-cart-button {
    display: inline-block;
    float: left;
    line-height: 38px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    border: 1px solid #333;
    color: #888;
    box-sizing: border-box;
    width: 40px;
    margin-left: 10px;
    transition: background-color .3s, color .3s;
    margin-top: 0px;
}

.after-add-to-cart-button:hover {
    background-color: #333;
    color: #fff;
}

div.summary.entry-summary  p.in-stock,
div.summary.entry-summary  p.out-of-stock {
    display: none !important;
}

/*
WPD custom styles
*/
body.wpd-customization-page.opt-wpd-special-customization-page div.content-area
{
    margin-top: 0;
}
body.wpd-customization-page.opt-wpd-special-customization-page .site-footer
{
    display: none;
}
body.wpd-customization-page.opt-wpd-special-customization-page .hentry, body.wpd-customization-page.opt-wpd-special-customization-page .entry-footer
{
    margin: 0;
}
/*
///////////////////////////////////////////////
        RESPONSIVE STYLES
//////////////////////////////////////////////
*/

@media (max-width: 1099px) {
    div.product div.images .woocommerce-main-image {
        width: calc(100% - 85px);
    }
}

@media (max-width: 1024px) {

   /* header.horizontal-menu-header-1 nav#horizontal-site-navigation,
    header.horizontal-menu-header-2 nav#horizontal-site-navigation {
        display: none;
    }*/

    header.horizontal-menu-header-1 nav#horizontal-site-navigation,
    header.horizontal-menu-header-2 nav#horizontal-site-navigation,
    header.horizontal-menu-header-3 nav#horizontal-site-navigation,
    header.horizontal-menu-header-4 nav#horizontal-site-navigation {
        display: none;
    }

    /*header.horizontal-menu-header-1 #top-menu-icon,
    header.horizontal-menu-header-2 #top-menu-icon {
        display: inline-block;
    }*/

    header.horizontal-menu-header-1 #top-menu-icon,
    header.horizontal-menu-header-2 #top-menu-icon,
    header.horizontal-menu-header-3 #top-menu-icon,
    header.horizontal-menu-header-4 #top-menu-icon {
        display: inline-block;
    }

    header#masthead {
        padding: 0 3%;
    }

    header .masthead-icon {
        right: 3%;
    }

    div.content-area {
        padding: 0 5%;
    }

    header #mobile-masthead-cart-icon {
        display: inline-block;
    }

    header #masthead-cart-icon {
        display: none;
    }

    header #masthead-cart-icon, header #mobile-masthead-cart-icon {
        right: 70px;
    }

    /* Home Page */

    .page-builder-content {
        padding-left: 3%;
        padding-right: 3%;
    }

    /* Blog */

    div.content-area.no-sidebar article.blog-archive-post,
    div.content-area.with-sidebar article.blog-archive-post {
        width: calc((100% - 31px)/2);
    }

    div.content-area.with-sidebar aside#secondary {
        padding-right: 30px;
        width: 30%;
    }

    div.content-area.with-sidebar #main {
        width: 70%;
    }

    /* Widgets */

    table#wp-calendar {
        font-size: 10px;
    }

    table#wp-calendar th {
        padding: 5px 10px 5px 10px;
    }

    table#wp-calendar td {
        padding: 5px;
    }

    /* Portfolio */

    .portfolio-container-2c .portfolio-item {
        height: 310px;
    }

    .portfolio-container-3c .portfolio-item {
        height: 210px;
    }

    .portfolio-container-2c .portfolio-item .caption,
    .portfolio-container-3c .portfolio-item .caption {
        bottom: 0;
    }

    .portfolio-container-2c .portfolio-item a:hover img,
    .portfolio-container-3c .portfolio-item a:hover img {
        top: 0;
    }

    #portfolio-single-info-wrap #meta-content {
        width: 40%;
        padding: 60px 40px 100px 40px;
    }

    #portfolio-single-info-wrap #info-content {
        width: 60%;
    }

    div.about-us-text-box {
        margin-bottom: 35px;
    }

    .member-area .member-photo {
        display: none;
    }

    .member-area .member-info {
        width: 100%;
    }

    /* Shop archive */

    div.archive-product-buttons {
        transform: translateY(-100%) translateX(-50%);
    }

    /* Shop single */

    table.variations td.label, .quantity-wrap td.quantity-label {
        width: 27%;
    }

    .woocommerce.columns-5 ul.products li.product,
    .woocommerce.columns-6 ul.products li.product {
        width: calc((100% - 90px)/4);
    }

    .woocommerce ul.products li.product .archive-product-buttons span:last-child {
        display: none;
    }

    div#comments ol.comment-list img {
        float: none;
    }

    div#comments ol.comment-list div.comment-text-wrap {
        margin-left: 0;
        margin-top: 25px;
    }

    div#comments ol.comment-list div.comment-text-wrap:before {
        position: absolute;
        left: 10px;
        content: '';
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 20px solid transparent;
        border-bottom: 20px solid #efefef;
        top: -33px;
    }

    /* Top footer */

    footer .top-footer-wrap {
        max-width: 100% !important;
    }

    .top-footer-wrap .footer-widgets-wrap.full-width, .top-footer-wrap .footer-widgets-wrap {
        margin-left: 4%;
        margin-right: 4%;
    }

    .top-footer-wrap .footer-widgets-wrap .footer-widget-container {
        width: calc((100% - 30px)/2) !important;
    }

    .top-footer-wrap .footer-widgets-wrap .footer-widget-container:nth-child(even) {
        margin-right: 0;
    }

}

@media (max-width: 1023px) {
     div.product div.images .woocommerce-main-image {
        width: calc(100% - 100px);
    }
}

@media (max-width: 780px) {

    html.porto-novo-first-tag {
        margin-top: 0 !important;
    }

    /* Home Page */

    header.page-header {
        background-size: cover;
    }

    header.page-header h1.page-title {
        padding-left: 5%;
        padding-right: 5%;
    }

    div.content-area {
        display: flex;
        flex-direction: column;
    }

    div.content-area #main {
        order: 1;
        width: 100% !important;
    }

    div.content-area aside#secondary {
        order: 2;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 30px;
    }

    .portfolio-container-2c .portfolio-item,
    .portfolio-container-3c .portfolio-item {
        width: calc((100% - 60px)/2);
    }

    #portfolio-single-info-wrap {
        display: block;
    }

    #portfolio-single-info-wrap #info-content {
        display: block;
        width: 100%;
        border-right: 0;
    }

    #portfolio-single-info-wrap #meta-content {
        display: block;
        width: 100%;
        border-top: 1px solid #dfdfdf;
    }

    /* Contact us */

    div#contact-info-container div.panel-grid-cell:nth-child(even),
    div#contact-info-container div.wpb_column:nth-child(even) {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    div#contact-info-container div.panel-grid-cell:last-child,
    div#contact-info-container div.wpb_column:last-child {
        border-bottom: 0;
    }

    div#contact-info-container div.panel-grid-cell {
        margin-bottom: 0 !important;
    }

    footer div.site-info {
        line-height: 150%;
        padding: 30px 3%;
    }

    .vc_column_container {
        width: 100%;
    }

    /* Shop single */

    .woocommerce #content div.product div.images, .woocommerce div.product div.images, 
    .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
        width: 100%;
    }

    div.product div.related ul.products li {
        width: calc((100% - 30px)/2);
    }

    div.product div.related ul.products li:nth-child(2) {
        margin-right: 0;
    }

    .woocommerce div.product div.images a {
        width: 100%;
    }

    div.product span.onsale {
        right: 1%;
    }

    /* Shop Checkout */

    .woocommerce-checkout-review-order-table {
        width: 100% !important;
    }

    .woocommerce-checkout-payment {
        width: 100%;
        margin-top: 30px;
    }


    /* Cart */

    .woocommerce-cart table.cart td.actions .coupon .button {
        border-left: 1px solid #d3ced2
    }

    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
        padding-left: 0;
    }

    /* Shop Archive */

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: calc((100% - 30px)/2);
    }

    .woocommerce ul.products li.product:nth-child(even), 
    .woocommerce-page ul.products li.product:nth-child(even) {
        margin-right: 0;
    }

    .woocommerce.columns-3 ul.products li.product,
    .woocommerce.columns-4 ul.products li.product,
    .woocommerce.columns-5 ul.products li.product,
    .woocommerce.columns-6 ul.products li.product {
        width: calc((100% - 30px)/2);
    }

    .woocommerce ul.products li.product .archive-product-buttons span:last-child,
    .woocommerce.columns-5 ul.products li.product .archive-product-buttons span:last-child,
    .woocommerce.columns-6 ul.products li.product .archive-product-buttons span:last-child {
        display: inline;
    }

    /* Blog Slider */

    #home-slider-area.home-blog-slider {
        height: 500px;
    }

    #home-slider-area .blog-slider-caption-wrap .blog-slider-post-light-excerpt {
        display: none;
    }

    #home-slider-area .blog-slider-caption-wrap {
        width: 55%;
    }

}

@media (max-width: 760px) {
    body.coming-soon-active {
        height: auto;
    }

    body.coming-soon-active .social-network-container {
        padding-bottom: 140px;
    }

    div#comments ol.comment-list ul.children {
        margin-left: 1.5em;
    }

}

@media (max-width: 739px) {
    div.product div.images .woocommerce-main-image {
        width: calc(100% - 95px);
    }
}

@media (max-width: 640px) {

    #home-slider-area .bx-controls-direction a {
        top: 50% !important;
        bottom: unset;
    }

    #home-slider-area .bx-controls-direction a.bx-prev {
        left: 0;
    }

    #home-slider-area .bx-controls-direction a.bx-next {
        right: 0;
    }

    article.search-result-posts div.post-thumbnail {
        display: none;
    }

    article.search-result-posts div.search-post-content {
        width: 100%;
    }

    .error-404 .error-404-title {
        font-size: 200px;
        line-height: 200px;
    }

    .woocommerce.columns-3 ul.products li.product,
    .woocommerce.columns-4 ul.products li.product,
    .woocommerce.columns-5 ul.products li.product,
    .woocommerce.columns-6 ul.products li.product {
        width: 100%;
    }
}

@media (max-width: 520px) {
     div.product div.images .woocommerce-main-image {
        width: calc(100% - 85px);
    }
}


@media (max-width: 500px) {

    #site-navigation {
        width: 100%;
        padding: 160px 10%;
    }

    header.page-header h1.page-title {
        font-size: 28px;
    }

    #home-slider-area {
        display: none;
    }

    .page-builder-content {
        padding-top: 120px;
    }

    div.content-area.no-sidebar article.blog-archive-post {
        width: 100%;
    }

    .portfolio-container-2c .portfolio-item,
    .portfolio-container-3c .portfolio-item {
        width: 100%;
        margin: 0 0 30px 0;
    }

    div.content-area.with-sidebar article.blog-archive-post,
    div.content-area.no-sidebar article.blog-archive-post {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .not-found h1.page-title {
        font-size: 50px;
    }

    .not-found input[type="search"] {
        width: 80%;
    }

    .vc_row {
        margin-left: -10px; 
        margin-right: -10px; 
    }

    .vc_column_container>.vc_column-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Shop archive */

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin: 0 0 30px 0;
        width: 100%;
    }

    /* Shop single */

    div.product div.related ul.products li {
        width: 100%;
        margin-right: 0;
    }

    /* Top footer */

    .top-footer-wrap .footer-widgets-wrap .footer-widget-container {
        width: 100% !important;
        margin-right: 0;
    }

}

@media (max-width: 384px) {

    header #masthead-cart-icon, header #mobile-masthead-cart-icon {
        right: 50px;
    }

    .member-area .member-info .member-social a {
        font-size: 13px;
        margin: 0 5px;
    }

    .error-404 .error-404-title {
        font-size: 100px;
        line-height: 100px;
    }

    #filters li {
        display: block;
    }

    footer ul#footer-social-links li {
        display: block;
        margin: 0;
    }

    .vc_row {
        margin-left: -8px; 
        margin-right: -8px; 
    }

    .vc_column_container>.vc_column-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    div.team-showcase-container {
        display: none;
    }

    .woocommerce ul.products li.product .archive-product-buttons span:last-child, 
    .woocommerce.columns-5 ul.products li.product .archive-product-buttons span:last-child,
    .woocommerce.columns-6 ul.products li.product .archive-product-buttons span:last-child{
        display: none;
    }

}

@media (max-width: 379px) {
    div.product div.images .woocommerce-main-image {
        width: calc(100% - 65px);
    }
}

@media (max-width: 279px) {
    div.product div.images .woocommerce-main-image {
        width: calc(100% - 60px);
    }
}


@media (max-width: 250px) {

    header.page-header h1.page-title {
        font-size: 22px;
    }

    header #masthead-cart-icon, header #mobile-masthead-cart-icon {
        right: 45px;
    }


    .portfolio-container-2c .portfolio-item,
    .portfolio-container-3c .portfolio-item {
        height: 180px;
    }

    .portfolio-container-2c .portfolio-item .caption h3 {
        font-size: 12px;
    }

    .portfolio-container-2c .portfolio-item .caption h4 {
        font-size: 10px;
    }

    .vc_row {
        margin-left: -5px; 
        margin-right: -5px; 
    }

    .vc_column_container>.vc_column-inner {
        padding-left: 5px;
        padding-right: 5px;
    }

    html {
        overflow-x: hidden;
    }
}

@media screen and (min-width: 240px) {
    html {
        margin-top: 0 !important;
    }
}



@media ( max-height: 768px ) {
    #site-navigation {
        padding: 90px 5%;
    }
}

@media ( max-height: 680px ) {
    #site-navigation {
        padding: 90px 10%;
    }

}

@media ( max-height: 580px ) {
    #site-navigation {
        padding: 90px 10%;
    }
}

@media ( max-height: 375px ) {
    #site-navigation {
        padding: 50px 10%;
    }
}