@charset "UTF-8";

/*!
Theme Name: Neto
Theme URI: https://www.cssigniter.com/themes/neto/
Author: CSSIgniter
Author URI: https://www.cssigniter.com/
Description: An E-Commerce theme for WordPress
Version: 1.10.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neto
Domain Path: /languages
*/

/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
.maxslider-slide {
    background-color: #000;
}

.foot .col-md-7 {
    text-align: center;
    width: 100% !important;
}

.hidden-xs-up {
    display: none !important;
}

.hidden-xl-down {
    display: none !important;
}

@-webkit-keyframes rot {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rot {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* -----------------------------------------
	01. General
----------------------------------------- */

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

* {
    box-sizing: inherit;
}

*::before,
*::after {
    box-sizing: inherit;
}

.row-table {
    display: table;
    width: calc(100% + 30px);
}

.row-table > [class^="col"] {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

/* Basic Typography
=================================== */

body {
    line-height: 1.714285714;
    font-size: 14px;
    background-color: #ffffff;
    color: #737373;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    color: #252525;
    margin: 0 0 15px;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    letter-spacing: -.01em;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p {
    margin: 0 0 15px;
}

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

a {
    -webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
    outline: none;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ddc476;
    outline: none;
    text-decoration: none;
}

a:active {
    outline: none;
}

.group::after {
    content: "";
    display: table;
    clear: both;
}

/* General Element Styling
=================================== */

/* Reset figure margin from normalize.css */

figure {
    margin: 0;
}

/* Lists */

ul,
ol {
    padding-left: 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

dl {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 0 15px;
}

/* Blockquotes */

blockquote {
    margin: 20px 0;
    padding: 0;
    border: 0;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
}

blockquote cite {
    display: block;
    font-style: italic;
    margin: 10px 0 0;
    opacity: .8;
    font-size: .85em;
}

blockquote cite::before {
    content: "\2013";
    margin-right: 5px;
}

/* Tables */

table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

table p:last-child {
    margin-bottom: 0;
}

.entry-content table,
.comment-content table {
    border-width: 1px 0 0 1px;
    margin-bottom: 24px;
}

.entry-content th,
.entry-content td,
.comment-content th,
.comment-content td {
    border-bottom: 1px solid #e6e6e6;
}

.entry-content th:first-child,
.entry-content td:first-child,
.comment-content th:first-child,
.comment-content td:first-child {
    padding-left: 0;
}

.entry-content caption,
.entry-content th,
.entry-content td,
.comment-content caption,
.comment-content th,
.comment-content td {
    font-weight: normal;
    text-align: left;
    padding: 5px;
    vertical-align: middle;
}

.entry-content th,
.comment-content th {
    color: #252525;
    border-width: 0 1px 1px 0;
}

.entry-content td,
.comment-content td {
    border-width: 0 1px 1px 0;
}

.table-styled table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    margin: 0 0 25px;
}

.table-styled table p:last-child {
    margin-bottom: 0;
}

.table-styled table th {
    background-color: #fafafa;
}

.table-styled table th,
.table-styled table td {
    padding: 0 10px;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.table-styled table th:last-child,
.table-styled table td:last-child {
    border-right: 0;
}

/* Code */

code,
kbd,
tt,
var,
samp,
pre {
    font-family: monospace, serif;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    font-style: normal;
}

pre {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Various */

address {
    font-style: normal;
    margin: 0 0 15px;
}

mark {
    background: none;
    color: inherit;
}

.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Embeds and iframes
=================================== */

embed,
iframe,
object,
video,
audio {
    margin-bottom: 15px;
    max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
    margin-bottom: 0;
}

#map *,
.map * {
    max-width: none !important;
}

/* General Form Styling
=================================== */

label {
    display: block;
    margin: 0 0 2px;
    font-weight: normal;
}

input,
textarea,
select {
    display: inline-block;
    font-size: inherit;
    width: 100%;
    max-width: 100%;
    height: 36px;
    padding: 6px 12px;
    box-shadow: none;
    line-height: normal;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    background-image: none;
    border-radius: 0;
    -webkit-transition: border-color .18s ease;
    transition: border-color .18s ease;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    outline: none;
    border-color: #252525;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-size: 9px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    max-width: 100%;
}

select::-ms-expand {
    background-color: transparent;
    border: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="search"] {
    /* Restoring box-sizing */
    box-sizing: border-box;
}

textarea {
    height: auto;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 0 0;
    line-height: normal;
    width: auto;
    height: auto;
}

fieldset {
    margin: 0 0 15px;
    padding: 0;
    border: 0;
    min-width: 0;
}

/* Placeholder text color */

::-webkit-input-placeholder {
    color: rgba(115, 115, 115, 0.5);
    font-weight: normal;
    opacity: 1;
}

:-moz-placeholder {
    color: rgba(115, 115, 115, 0.5);
    font-weight: normal;
    opacity: 1;
}

::-moz-placeholder {
    color: rgba(115, 115, 115, 0.5);
    font-weight: normal;
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(115, 115, 115, 0.5);
    font-weight: normal;
    opacity: 1;
}

/* Buttons
=================================== */

.btn,
.button,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
    display: inline-block;
    margin: 0;
    line-height: normal;
    border: 0;
    box-shadow: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: .18s background-color ease, color .18s ease, .18s border-color ease;
    transition: .18s background-color ease, color .18s ease, .18s border-color ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    width: auto;
    height: auto;
    background-image: none;
    text-transform: uppercase;
    padding: 11px 30px 10px;
    font-size: 12px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-weight: bold;
}

.btn:active,
.button:active,
.comment-reply-link:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
    outline: none;
}

.btn:hover,
.button:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
    background: #1b1b1b;
    color: #ffffff;
    text-decoration: none;
}

.btn:focus,
.button:focus,
.comment-reply-link:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
    outline: none;
}

.btn.disabled,
.btn[disabled],
.button.disabled,
.button[disabled],
.comment-reply-link.disabled,
.comment-reply-link[disabled],
input[type="submit"].disabled,
input[type="submit"][disabled],
input[type="reset"].disabled,
input[type="reset"][disabled],
button.disabled,
button[disabled] {
    cursor: not-allowed;
    opacity: .4;
}

.btn-wide {
    padding-left: 42px;
    padding-right: 42px;
}

.btn-border {
    border: 2px solid #d3b24d;
}

/* CI-Slider Overrides
=================================== */

.ci-slider {
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    border: 0;
}

.ci-slider .slides li:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000;
}

.ci-slider .slides > li:first-child {
    display: block;
    /* Display flexslider's first item no matter if its loading or not */
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.ci-slider.loading::before {
    border: 6px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.875);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.ci-slider.loading .slides > li:first-child {
    opacity: 1 !important;
    /* Remove the fade in/out animation when the slider loads */
}

.ci-direction-nav a {
    top: 50%;
    opacity: .7;
    line-height: normal;
}

.ci-direction-nav a:hover {
    color: #ffffff;
    opacity: 1;
}

/* Magnific Popup Overrides
=================================== */

.ci-vid-lightbox {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #252525;
    color: #ffffff;
    background-image: url(images/youtube.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;
}

.mfp-bg {
    background-color: #000000;
}

.mfp-preloader {
    color: #ffffff;
}

.mfp-preloader a {
    color: #ffffff;
}

.mfp-preloader a:hover {
    color: #ffffff;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
    border: 6px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.875);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
    background-color: transparent;
    text-indent: -999em;
    margin: 0 auto;
}

button.mfp-close,
button.mfp-arrow {
    border: 0;
    opacity: 1;
}

button.mfp-close:hover,
button.mfp-arrow:hover {
    background: none;
    border: 0;
}

.mfp-close-btn-in .mfp-close {
    color: #ffffff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #ffffff;
}

.mfp-arrow {
    line-height: .3;
}

.mfp-arrow:before,
.mfp-arrow:after {
    border: 0;
}

.mfp-arrow:after {
    font-size: 70px;
    color: #ffffff;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mpf-a {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mpf-a {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Text Alignment Helpers
=================================== */

.text-left {
    text-align: left;
}

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

.text-center {
    text-align: center;
}

.text-justified {
    text-align: justify;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */

.nav-bar {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-bar::after {
    content: "";
    display: table;
    clear: both;
}

.nav-bar li {
    position: relative;
}

.nav-bar > li {
    display: inline-block;
}

.nav-bar ul {
    position: absolute;
    z-index: 300;
    top: -999em;
}

.nav-bar li:hover > ul,
.nav-bar .sfHover > ul {
    top: auto;
    margin-left: -25px;
}

.nav-bar li li:hover > ul,
.nav-bar li .sfHover > ul {
    top: 0;
    left: 100%;
    margin-left: 10px;
}

.nav-bar li li li:hover > ul,
.nav-bar li li .sfHover > ul {
    top: 0;
    left: 100%;
}

.nav-bar a {
    display: block;
    white-space: nowrap;
}

.nav-bar a.sf-with-ul {
    padding-right: 15px;
    position: relative;
    /* Styling for navigation arrows  ---------- */
}

.nav-bar.sf-arrows .sf-with-ul:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 3px;
    margin-top: -8px;
    font-size: 8px;
}

.nav-bar.sf-arrows ul .sf-with-ul:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 0;
    margin-top: -6px;
    /* Styling for right facing arrows  ---------- */
}

/* Primary Navigation */

.navigation-main > li,
.navigation-header-secondary > li {
    margin-right: 15px;
}

.navigation-main a,
.navigation-header-secondary a {
    text-align: left;
    color: #737373;
    /* Global Menu Link Styles */
}

.navigation-main a:hover,
.navigation-main .sfHover > a,
.navigation-header-secondary a:hover,
.navigation-header-secondary .sfHover > a {
    text-decoration: none;
    /* First Level & Global Menu Link Hover Styles */
}

.navigation-main > li > a,
.navigation-header-secondary > li > a {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 0;
    /* First Level Menu Link Styles */
}

.navigation-main > li ul a,
.navigation-header-secondary > li ul a {
    padding: 6px 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 12px;
    /* All Other Menu Level Link Styles */
}

.navigation-main > li ul a:hover,
.navigation-main > li ul .sfHover > a,
.navigation-header-secondary > li ul a:hover,
.navigation-header-secondary > li ul .sfHover > a {
    color: #252525;
    border-bottom-color: #252525;
    /* All Other Level Menu Link Hover Styles */
}

.navigation-main > li > a:hover,
.navigation-main > li.sfHover > a,
.navigation-main > li.sfHover > a:active,
.navigation-main > li.current-menu-item > a,
.navigation-main > li.current-menu-ancestor > a,
.navigation-main > li.current-menu-parent > a,
.navigation-main > li.current > a,
.navigation-main > li.current_page_ancestor > a,
.navigation-main > li.current_page_item > a,
.navigation-header-secondary > li > a:hover,
.navigation-header-secondary > li.sfHover > a,
.navigation-header-secondary > li.sfHover > a:active,
.navigation-header-secondary > li.current-menu-item > a,
.navigation-header-secondary > li.current-menu-ancestor > a,
.navigation-header-secondary > li.current-menu-parent > a,
.navigation-header-secondary > li.current > a,
.navigation-header-secondary > li.current_page_ancestor > a,
.navigation-header-secondary > li.current_page_item > a {
    /* WordPress First Level Current/Ancestor Hover Page Styles */
}

.navigation-main ul,
.navigation-header-secondary ul {
    list-style: none;
    margin: 0;
    padding: 15px 25px 25px;
    min-width: 220px;
    background-color: #ffffff;
    border: 2px solid #252525;
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.05);
    /* All Lower Level Menu Container Styles */
}

.navigation-main .mega-menu > ul,
.navigation-header-secondary .mega-menu > ul {
    display: table;
    padding-left: 10px;
    padding-right: 10px;
}

.navigation-main .mega-menu > ul li,
.navigation-header-secondary .mega-menu > ul li {
    display: block;
}

.navigation-main .mega-menu > ul li:hover ul,
.navigation-main .mega-menu > ul li.sfHover ul,
.navigation-header-secondary .mega-menu > ul li:hover ul,
.navigation-header-secondary .mega-menu > ul li.sfHover ul {
    margin: 0;
}

.navigation-main .mega-menu > ul ul,
.navigation-header-secondary .mega-menu > ul ul {
    display: block !important;
    opacity: 1 !important;
    min-width: 180px;
    position: static;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.navigation-main .mega-menu > ul > li,
.navigation-header-secondary .mega-menu > ul > li {
    display: table-cell;
    padding: 0 15px;
}

.navigation-main .mega-menu > ul > li > a,
.navigation-header-secondary .mega-menu > ul > li > a {
    border-bottom: 0;
    font-weight: bold;
    font-size: 14px;
    color: #252525;
}

.navigation-main .mega-menu > ul > li > a:hover,
.navigation-header-secondary .mega-menu > ul > li > a:hover {
    color: #252525;
}

.navigation-main .mega-menu > ul a,
.navigation-header-secondary .mega-menu > ul a {
    white-space: normal;
}

.navigation-main .mega-menu > ul a.sf-with-ul::after,
.navigation-header-secondary .mega-menu > ul a.sf-with-ul::after {
    display: none;
}

/* Secondary Navigation */

.navigation-secondary {
    display: inline-block;
    height: 40px;
    font-size: 12px;
    vertical-align: top;
    margin-right: 5px;
}

.navigation-secondary li:hover > ul,
.navigation-secondary .sfHover > ul {
    right: 0;
    top: auto;
    margin-left: 0;
}

.navigation-secondary li li:hover > ul,
.navigation-secondary li .sfHover > ul {
    top: 0;
    left: auto;
    right: 100%;
    margin-left: 0;
}

.navigation-secondary li li li:hover > ul,
.navigation-secondary li li .sfHover > ul {
    top: 0;
    left: auto;
    right: 100%;
}

.navigation-secondary a {
    color: #ffffff;
}

.navigation-secondary > li {
    height: 100%;
}

.navigation-secondary > li > a {
    font-weight: bold;
    height: 100%;
    padding: 10px 6px;
    font-size: 11px;
}

.navigation-secondary > li a:hover,
.navigation-secondary > li .sfHover > a {
    border-bottom-color: #252525;
}

.navigation-secondary > li ul a {
    padding: 3px 0;
    border-bottom: 1px solid rgba(37, 37, 37, 0.15);
}

.navigation-secondary > li > ul {
    padding-top: 0;
}

.navigation-secondary ul {
    margin: 0;
    padding: 5px 10px 10px;
    list-style: none;
    text-align: left;
    min-width: 140px;
    background-color: #252525;
}

.navigation-secondary a.sf-with-ul {
    padding-right: 18px;
    position: relative;
}

.navigation-secondary.sf-arrows .sf-with-ul::after {
    right: 8px;
    margin-top: -7px;
    font-size: 7px;
}

/* Header Secondary Navigation */

.navigation-header-secondary > li > a {
    color: #252525;
}

/* Inline Navigation */

.nav-list-inline {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list-inline li {
    display: inline-block;
    margin-right: 20px;
}

.nav-list-inline li:last-child {
    margin-right: 0;
}

.footer .nav-list-inline {
    text-transform: uppercase;
    font-size: 11px;
}

/* -----------------------------------------
	03. Header
----------------------------------------- */

.mast-head {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #252525;
    -webkit-transition: padding .18s ease;
    transition: padding .18s ease;
    will-change: transform;
    z-index: 120;
}

.mast-head.is_stuck {
    z-index: 120;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.admin-bar .mast-head.is_stuck {
    top: 32px !important;
}

.site-logo {
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-size: 24px;
    letter-spacing: -.01em;
    font-weight: 700;

    position: absolute;
    top: 50%;
    width: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.site-logo a {
    color: #ffffff;
}

.site-tagline {
    line-height: normal;
    margin-bottom: 0;
    color: #ffffff;
}

.mast-head-right {
    text-align: right;
}

.mast-head-right > a {
    color: #ffffff;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 11px;
}

.mast-head-right > a:hover {
}

.head-cart {
    display: inline-block;
    position: relative;
}

.head-cart .widget {
    margin: 0;
}

.head-cart-wrap {
    display: none;
    position: absolute;
    top: 25px;
    right: -25px;
    background-color: #ffffff;
    width: 400px;
    z-index: 100;
    text-align: left;
    padding: 25px;
    border: 2px solid #252525;
}

.head-cart-wrap .widget-title {
    display: none;
}

.head-cart-wrap a {
    margin: 0;
}

.head-cart-toggle {
    color: #ffffff;
    margin-left: 15px;
}

.head-cart-toggle:hover,
.is-visible .head-cart-toggle {
    color: #f1f1f1;
}

.head-cart-toggle i {
    margin-right: 3px;
}

/* Head Search */

.mast-head-search {
    background-color: #252525;
    width: 100%;
    position: absolute;
    top: -400px;
    z-index: 101;
    height: 100%;
    -webkit-transition: top .18s ease;
    transition: top .18s ease;
}

.mast-head-search.head-search-open {
    top: 0;
}

.mast-head-search div {
    height: 100%;
}

.head-search-form {
    height: 100%;
    position: relative;
}

.head-search-input {
    height: 100%;
    background: none;
    color: #ffffff;
    border: 0;
    padding: 1px 0 3px;
    font-size: 18px;
}

.head-search-input::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

.head-search-input:-moz-placeholder {
    color: inherit;
    opacity: 0.7;
}

.head-search-input::-moz-placeholder {
    color: inherit;
    opacity: 0.7;
}

.head-search-input:-ms-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

.head-search-dismiss {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    font-size: 30px;
    line-height: 1;
    color: #ffffff;
}

.head-search-dismiss:hover {
    color: #ffffff;
}

.head-menu-secondary {
    background: #e6e6e6;
    padding: 15px 0;
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */

/* General Styles
=================================== */

.boxed #page {
    max-width: 1260px;
    margin: 0 auto;
}

.boxed .footer-revealing .footer-fixed {
    max-width: 1260px;
}

.main {
    background-color: #ffffff;
    padding: 65px 0;
}

.page-template-template-builder .main {
    padding: 0;
}

.page-section {
    padding: 65px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.page-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.page-section + .page-section {
    border-top: 0;
}

.page-section h3 {
    margin-bottom: 30px;
}

/* Hero Section
=================================== */

.page-hero {
    padding: 80px 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #ffffff;
    background-position: top center;
    background-repeat: no-repeat;
    color: #252525;
}

.page-hero-right {
    text-align: right;
}

.page-hero-title {
    width: 50%;
    color: currentColor;
}

.page-hero-center .page-hero-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-hero-right .page-hero-title {
    float: right;
    clear: both;
}

.page-hero-subtitle {
    margin: 0;
    width: 50%;
    opacity: .6;
}

.page-hero-center .page-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-hero-right .page-hero-subtitle {
    float: right;
    clear: both;
}

/* Entry Styles
=================================== */

.entry {
    margin: 0 0 50px;
}

.entry:only-of-type {
    margin: 0;
}

.entry-header {
    margin: 0 0 35px 100px;
}

.entry-full .entry-header {
    margin-left: 0;
}

.entry-sticky-notice {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 12px;
}

.entry-row::after {
    content: "";
    display: table;
    clear: both;
}

.entry-sidebar {
    float: left;
    width: 70px;
    margin-right: 30px;
}

.entry-main {
    float: left;
    width: calc(100% - 100px);
}

.entry-title {
    font-size: 24px;
}

.entry-title a {
    color: #252525;
}

.entry-title a:hover {
    color: #d3b24d;
}

.entry-meta {
    margin: -5px 0 0;
    font-size: 12px;
    text-transform: uppercase;
}

.entry-meta a {
    color: #252525;
}

.entry-meta a:hover {
    color: #d3b24d;
}

.entry-time {
    display: block;
    text-align: center;
    line-height: normal;
}

.entry-day {
    display: block;
    margin-bottom: 7px;
    font-size: 30px;
    color: #252525;
}

.entry-thumb {
    margin-bottom: 30px;
}

.entry-thumb.alignnone,
.entry-thumb.alignleft,
.entry-thumb.alignright,
.entry-thumb.aligncenter {
    margin-top: 0;
}

.entry-content {
    min-height: 34px;
}

.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

.entry-read-more {
    margin-top: 5px;
    display: inline-block;
    color: #252525;
    font-size: 16px;
}

.entry-read-more:hover {
    color: #d3b24d;
}

.entry-tags {
    margin: 15px 0 30px;
}

.entry-tags a {
    display: inline-block;
    background-color: #f1f1f1;
    border-radius: 2px;
    color: #737373;
    font-size: 12px;
    padding: 2px 14px;
    margin: 0 5px 5px 0;
    position: relative;
}

.entry-tags a:hover {
    color: #252525;
}

.entry-author {
    margin: 60px 0;
}

.entry-author::after {
    content: "";
    display: table;
    clear: both;
}

.entry-author-avatar {
    width: 90px;
    float: left;
    margin: 0 15px 0 0;
}

.entry-author-details {
    overflow: hidden;
}

.entry-related {
    margin: 45px 0;
}

.entry-item {
    margin: 0 0 30px;
}

.entry-item-thumb {
    margin: 0 0 15px;
}

.entry-item-time {
    font-size: 13px;
}

.entry-item-title {
    margin: 0;
}

.entry-item-title a {
    color: #252525;
}

.entry-item-title a:hover {
    color: #d3b24d;
}

/* Pagination
=================================== */

.pagination,
.posts-navigation,
.woocommerce-pagination,
.comments-pagination {
    margin: 55px 0 0;
    text-align: center;
}

.pagination ul,
.posts-navigation ul,
.woocommerce-pagination ul,
.comments-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination ul li,
.posts-navigation ul li,
.woocommerce-pagination ul li,
.comments-pagination ul li {
    display: inline-block;
}

.pagination a,
.pagination span,
.posts-navigation a,
.posts-navigation span,
.woocommerce-pagination a,
.woocommerce-pagination span,
.comments-pagination a,
.comments-pagination span {
    color: #737373;
    display: inline-block;
    font-size: 16px;
    margin: 0 1px;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-transition: background-color .18s ease, border-color .18s ease;
    transition: background-color .18s ease, border-color .18s ease;
}

.pagination a:not(.current):hover,
.pagination span:not(.current):hover,
.posts-navigation a:not(.current):hover,
.posts-navigation span:not(.current):hover,
.woocommerce-pagination a:not(.current):hover,
.woocommerce-pagination span:not(.current):hover,
.comments-pagination a:not(.current):hover,
.comments-pagination span:not(.current):hover {
    border-color: #e6e6e6;
}

.pagination a.current,
.pagination span.current,
.posts-navigation a.current,
.posts-navigation span.current,
.woocommerce-pagination a.current,
.woocommerce-pagination span.current,
.comments-pagination a.current,
.comments-pagination span.current {
    background-color: #f1f1f1;
    color: #252525;
}

.pagination a:hover,
.pagination .current,
.posts-navigation a:hover,
.posts-navigation .current,
.woocommerce-pagination a:hover,
.woocommerce-pagination .current,
.comments-pagination a:hover,
.comments-pagination .current {
    color: #252525;
}

.comments-pagination {
    margin: 30px 0;
    text-align: left;
}

.comments-pagination a,
.comments-pagination span {
    font-size: 12px;
    width: 28px;
    height: 28px;
    line-height: 24px;
}

.page-links {
    margin: 30px 0 15px;
}

.page-links a,
.page-links > span {
    color: #737373;
    display: inline-block;
    font-size: 12px;
    width: 28px;
    height: 28px;
    line-height: 24px;
    margin: 0 1px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #e6e6e6;
    -webkit-transition: background-color .18s ease, border-color .18s ease;
    transition: background-color .18s ease, border-color .18s ease;
}

.page-links > span {
    background-color: #f1f1f1;
}

.page-links .page-links-title {
    border: 0;
    width: auto;
    background: none;
}

.nav-links::after {
    content: "";
    display: table;
    clear: both;
}

.nav-links .nav-previous {
    float: left;
}

.nav-links .nav-next {
    float: right;
}

.post-navigation {
    text-align: center;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 15px 0;
    margin: 45px 0;
}

.post-navigation::after {
    content: "";
    display: table;
    clear: both;
}

.post-navigation .nav-previous {
    float: left;
    margin-right: 5px;
}

.post-navigation .nav-previous i {
    margin-right: 5px;
}

.post-navigation .nav-next {
    float: right;
}

.post-navigation .nav-next i {
    margin-left: 5px;
}

.post-navigation a {
    color: #737373;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    line-height: normal;
}

.post-navigation a:hover {
    color: #252525;
}

.post-navigation a i {
    font-weight: bold;
    font-size: 14px;
}

/* Items - Listings
=================================== */

.price ins {
    text-decoration: none;
}

.price del {
    opacity: .75;
    margin-right: 5px;
}

.item {
    position: relative;
    margin-bottom: 40px;
}

.item .price {
    display: block;
    font-size: 12px;
}

.item-thumb {
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.item-thumb img:first-of-type {
    position: relative;
    z-index: 10;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.item-thumb img:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 0;
}

.item-thumb:hover img:first-of-type {
    opacity: 0;
}

.item-thumb:hover img:only-of-type {
    opacity: 1;
}

.item-eyebrow {
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
}

.item-eyebrow a {
    color: #737373;
}

.item-eyebrow a:hover {
}

.item-title {
    margin: 0 0 2px;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.45;
    font-weight: normal;
}

.item-title a {
    color: #252525;
}

.item-title a:hover {
}

/* Product Slideshow
=================================== */

.row-slide-nav {
    height: 24px;
    position: absolute;
    top: 1px;
    right: 0;
    background-color: #ffffff;
    padding-left: 15px;
}

.slick-arrow {
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.slick-arrow.slick-disabled {
    opacity: .6;
    cursor: default;
}

.slick-arrow:first-child {
    margin-right: 10px;
}

.slick-slide {
    outline: 0;
}

/* Social Icons
=================================== */

.list-social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
}

.entry-content .list-social-icons {
    margin: 15px 0 0;
}

.list-social-icons li {
    display: inline-block;
    margin-right: 9px;
}

.list-social-icons li:last-child {
    margin-right: 0;
}

.pre-head .list-social-icons li {
    float: left;
    margin-right: 0;
}

.social-icon {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    color: #737373;
    opacity: .7;
}

.social-icon:hover {
    opacity: 1;
    color: #252525;
}

.pre-head .social-icon {
    color: #ffffff;
    opacity: 1;
}

.pre-head .social-icon:hover {
    color: #ffffff;
}

.entry-author .social-icon {
    font-size: 14px;
}

.list-credit-cards {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 26px;
}

.list-credit-cards li {
    display: inline-block;
    padding: 0 3px;
}

/* -----------------------------------------
	05. Footer
----------------------------------------- */

.footer {
    background-color: #ffffff;
}

.footer-widgets {
    padding: 75px 0 50px;
    background-color: #f9f9f9;
}

.footer-widgets .list-social-icons .social-icon {
    font-size: 32px;
}

.fa-facebook {
    color: #4267b2;
}

.fa-instagram {
    color: #fd1d1d;
}

.foot {
    padding: 40px 0;
    background-color: #252525;
    color: #ffffff;
}

.foot a {
    color: #ffffff;
}

.foot a:hover {
    color: #ffffff !important;
}

.foot .list-credit-cards {
    text-align: right;
}

.footer-instagram .widget {
    margin: 0;
    position: relative;
}

.footer-instagram .widget-title {
    display: none;
}

.footer-instagram .clear {
    background-color: #fff;
    position: absolute;
    line-height: normal;
    top: 50%;
    margin-top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 12px 32px;
    font-size: 14px;
}

.footer-instagram .clear a {
    display: block;
    color: #737373;
}

.footer-instagram .clear a:hover {
}

.footer-revealing .footer-fixed {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: -1;
}

.footer-cards {
    text-align: right;
}

/* -----------------------------------------
   06. Comments
----------------------------------------- */

#comments {
    margin: 40px 0 0;
}

#comment-list,
.commentlist {
    margin: 0;
    list-style: none;
    padding: 0;
}

#comment-list .comment,
.commentlist .comment {
    list-style: none;
}

#comment-list .comment-body,
.commentlist .comment-body {
    margin-bottom: 20px;
    padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body,
.commentlist > .comment:first-child > .comment-body {
    border-top: 0;
    padding-top: 0;
}

.comment-content ul,
.comment-content ol {
    margin-bottom: 15px;
}

.post-comments {
    margin: 0 0 45px;
}

.comment-author .avatar {
    width: 64px;
    height: 64px;
    float: left;
    margin: 0 15px 15px 0;
    overflow: visible;
}

.comment-content {
    overflow: hidden;
    zoom: 1;
    font-size: 13px;
}

.comment-metadata {
    font-size: 12px;
    margin: 0 0 5px;
}

.comment-reply-link {
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-left: 80px;
    height: auto;
    width: auto;
}

.bypostauthor > article .fn:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 2px 0 -2px;
    position: relative;
    top: -1px;
    font-size: 11px;
}

#cancel-comment-reply-link {
    font-size: 13px;
    font-weight: normal;
    margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(115, 115, 115, 0.8);
}

.comment-form-cookies-consent {
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 0;
}

.comment-form-cookies-consent [type="checkbox"] {
    margin: 3px 0 0;
}

.comment-form-cookies-consent label {
    display: inline-block;
    margin: 0 0 0 8px;
    text-transform: none;
    cursor: pointer;
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */

.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -410px;
    background-color: #ffffff;
    height: 100%;
    width: 340px;
    z-index: 150;
    box-shadow: 4px 0 7px rgba(0, 0, 0, 0.05);
    -webkit-transition: left .25s ease;
    transition: left .25s ease;
}

.admin-bar .sidebar-drawer {
    top: 33px;
}

.sidebar-drawer-header {
    background-color: #252525;
    text-align: right;
    height: 40px;
    padding: 8px 15px;
}

.sidebar-dismiss {
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

.sidebar-dismiss:hover {
    color: #ffffff;
}

.sidebar-drawer-content {
    padding: 40px;
    height: calc(100% - 45px);
    overflow-y: auto;
}

.sidebar-drawer-visible {
    left: 0;
}

.widget {
    margin: 0 0 50px;
    /* Nullify bottom margin for last elements in widgets and sidebars */
}

.widget::after {
    content: "";
    display: table;
    clear: both;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.footer-widgets .widget {
    margin-bottom: 30px;
}

.widget p:last-child {
    margin-bottom: 0;
}

.widget-title {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: -.01em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.widget-title::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 4px;
    background-image: -webkit-linear-gradient(left, transparent 20px, #e6e6e6 20px);
    background-image: linear-gradient(to right, transparent 20px, #e6e6e6 20px);
}

.widget-title label {
    text-transform: none;
    display: block;
    font-size: inherit;
    margin: 0;
    line-height: inherit;
    font-weight: inherit;
}

/* Sections
========================================= */

section.widget:last-child {
    margin-bottom: 0;
}

.section-header {
    position: relative;
    margin-bottom: 30px;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: -.025em;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    overflow-x: hidden;
    margin-bottom: 30px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-title::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 4px;
    background-image: -webkit-linear-gradient(left, transparent 20px, #e6e6e6 20px);
    background-image: linear-gradient(to right, transparent 20px, #e6e6e6 20px);
}

/* Callout Module
========================================= */

.module-callout {
    background-color: #252525;
    color: #ffffff;
    font-size: 16px;
    padding: 45px;
}

.module-callout-media {
    display: table;
    width: 100%;
}

.module-callout-content p:last-child {
    margin-bottom: 0;
}

.module-callout-media .module-callout-content {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    text-align: left;
}

.module-callout-media .module-callout-side {
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.module-callout-title {
    line-height: normal;
    margin: 0 0 5px;
    font-size: 30px;
    color: #d3b24d;
    letter-spacing: -.02em;
    font-weight: 400;
}

/* WIDGET: #List Widgets
========================================= */

.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul,
.widget_recent_entries ul,
.widget_product_categories ul,
.widget_layered_nav ul,
.widget_rating_filter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul ul,
.widget_product_categories ul ul,
.widget_layered_nav ul ul,
.widget_rating_filter ul ul {
    margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_product_categories li,
.widget_layered_nav li,
.widget_rating_filter li {
    line-height: normal;
    display: block;
    position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_nav_menu li a,
.widget_recent_entries li a,
.widget_product_categories li a,
.widget_layered_nav li a,
.widget_rating_filter li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #737373;
    border-bottom: 1px solid #e6e6e6;
}

.widget_meta li a:hover,
.widget_pages li a:hover,
.widget_categories li a:hover,
.widget_archive li a:hover,
.widget_nav_menu li a:hover,
.widget_recent_entries li a:hover,
.widget_product_categories li a:hover,
.widget_layered_nav li a:hover,
.widget_rating_filter li a:hover {
    color: #252525;
    border-bottom-color: #d3b24d;
}

.widget_meta li > .count,
.widget_meta li > .ci-count,
.widget_pages li > .count,
.widget_pages li > .ci-count,
.widget_categories li > .count,
.widget_categories li > .ci-count,
.widget_archive li > .count,
.widget_archive li > .ci-count,
.widget_nav_menu li > .count,
.widget_nav_menu li > .ci-count,
.widget_recent_entries li > .count,
.widget_recent_entries li > .ci-count,
.widget_product_categories li > .count,
.widget_product_categories li > .ci-count,
.widget_layered_nav li > .count,
.widget_layered_nav li > .ci-count,
.widget_rating_filter li > .count,
.widget_rating_filter li > .ci-count {
    position: absolute;
    right: 0;
    top: 7px;
    font-size: 11px;
    padding: 4px 3px;
}

.widget_recent_comments ul,
.widget_rss ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_recent_comments li,
.widget_rss li {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #e6e6e6;
}

.rss-date {
    display: block;
    font-size: 14px;
    padding: 2px 0;
}

/* WIDGET: #Tags
========================================= */

.tagcloud a {
    display: inline-block;
    margin: 0 5px 5px 0;
    background-color: #f1f1f1;
    border-radius: 2px;
    color: #737373;
    font-size: 12px !important;
    padding: 2px 10px;
    position: relative;
}

.tagcloud a:hover {
    color: #252525;
}

/* WIDGET: #Ads125
========================================= */

#ads125,
.ads125 {
    margin: 0;
    padding: 0;
    list-style: none;
}

#ads125 li,
.ads125 li {
    background: none;
    border: 0;
    float: left;
    margin: 0 15px 10px 0;
    padding: 0;
    max-width: 125px;
    height: auto;
}

/* WIDGET: #Search
========================================= */

.searchform > div {
    position: relative;
}

.searchform .searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
    line-height: 1;
}

/* WIDGET: #Flickr
========================================= */

.flickr_badge_image {
    float: left;
    margin: 0 15px 15px 0;
}

.flickr_badge_image a {
    display: block;
    line-height: 0;
}

/* WIDGET: #About
========================================= */

.widget-about .widget-about-avatar {
    margin: 0 0 25px;
}

.widget-about .widget-about-avatar img {
    height: auto;
}

.widget-about .widget-about-signature {
    margin: 20px 0 0;
}

.widget-about .widget-about-signature p {
    margin: 0;
}

.widget-about .widget-about-signature-img {
    color: #252525;
}

/* WIDGET: #Text Widget
========================================= */

.widget_text p:last-child {
    margin-bottom: 0;
}

/* WIDGET: #Twitter
========================================= */

.widget_ci_twitter_widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_ci_twitter_widget ul li {
    margin-bottom: 12px;
}

.widget_ci_twitter_widget ul li:first-child {
    padding-top: 0;
}

.widget_ci_twitter_widget .twitter-time {
    display: block;
    font-size: .85em;
}

/* WIDGET: #Calendar
================================================== */

#wp-calendar {
    width: 100%;
}

#wp-calendar a {
    font-weight: bold;
    font-style: italic;
}

#wp-calendar caption {
    text-align: left;
    margin-top: 10px;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
    padding: 9px;
}

#wp-calendar thead {
    font-size: 10px;
}

#wp-calendar thead th {
    background: rgba(0, 0, 0, 0.1);
    font-weight: bold;
    padding: 8px;
}

#wp-calendar tbody td {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 3px;
}

#wp-calendar tbody td:hover {
    background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
    background: none;
}

#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}

#wp-calendar tfoot #prev {
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 10px;
}

/* -----------------------------------------
	11. E-Commerce (WooCommerce)
----------------------------------------- */

/* General
========================================= */

.demo_store {
    position: fixed;
    bottom: 0;
    z-index: 150;
    width: 100%;
    background-color: #f1f1f1;
    border-top: 1px solid #e6e6e6;
    text-align: center;
    margin: 0;
    line-height: normal;
    padding: 6px 25px;
}

.entry-content .woocommerce::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-noreviews {
    padding: 14px 20px 14px 45px;
    background-color: #f1f1f1;
    margin-bottom: 35px;
    margin-left: 0;
    color: #252525;
    clear: both;
    border-left: 0.618em solid #a4ecd3;
    position: relative;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-noreviews::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 1.4em;
}

.woocommerce-message a:not(.button),
.woocommerce-error a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-noreviews a:not(.button) {
    border-bottom: 1px solid;
    color: #252525;
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-noreviews .button {
    float: right;
    padding: 5px 10px;
    line-height: normal;
    font-style: normal;
    font-weight: normal;
    color: inherit;
    background: none;
    position: relative;
    text-decoration: none;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.875em;
}

.woocommerce-message .button::after,
.woocommerce-error .button::after,
.woocommerce-info .button::after,
.woocommerce-noreviews .button::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.65em;
    display: inline-block;
    margin: 0 0 0 5px;
    position: relative;
    top: -2px;
}

.woocommerce-error {
    list-style: none;
    border-left-color: #ff786d;
}

.woocommerce-error li {
    display: block;
}

.woocommerce-error li:only-of-type:before {
    display: none;
}

.woocommerce-error li:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px 0 0;
}

.woocommerce-error:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f06a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.woocommerce-info {
    list-style: none;
    border-left-color: #54b5f7;
}

.woocommerce-info li {
    display: block;
}

.woocommerce-info:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.woocommerce-noreviews {
    padding-left: 20px;
    border-left-color: rgba(0, 0, 0, 0.15);
}

.woocommerce-noreviews:before {
    display: none;
}

.onsale {
    z-index: 20;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #252525;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    text-align: center;
    font-weight: bold;
    padding: 1px 10px;
}

/* Breadcrumps
========================================= */

.woocommerce-breadcrumb {
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
    font-size: 13px;
}

.woocommerce-breadcrumb a {
    color: #252525;
}

.woocommerce-breadcrumb a:hover {
    color: #d3b24d;
}

.woocommerce-breadcrumb > span {
    margin: 0 6px;
}

.woocommerce-page:not(.single-product) .woocommerce-breadcrumb {
    margin-left: 15px;
    margin-right: 15px;
}

/* Shop Page
========================================= */

.shop-actions {
    margin: 0 0 40px;
    line-height: normal;
}

.shop-actions::after {
    content: "";
    display: table;
    clear: both;
}

.shop-actions a {
    color: #252525;
}

.shop-actions .actions {
    margin-top: 2px;
    float: left;
}

.shop-actions .woocommerce-ordering {
    float: right;
    margin-top: -5px;
}

.shop-actions .woocommerce-result-count,
.shop-actions .product-number {
    display: inline-block;
    margin: 0;
}

.shop-actions .woocommerce-result-count {
    margin-right: 15px;
}

.shop-actions .product-number a {
    margin: 0 2px;
}

.shop-filter-toggle {
    margin-right: 15px;
}

.shop-filter-toggle i {
    margin-right: 3px;
    font-size: 14px;
}

.shop-filter-toggle::after {
    content: "|";
    opacity: .3;
    margin-left: 15px;
    font-size: 11px;
    position: relative;
    top: -1px;
}

.woocommerce-ordering {
    position: relative;
    margin: 0;
}

/* Product Page
========================================= */

.images {
    margin-bottom: 90px;
    position: relative;
}

.images::after {
    content: "";
    display: table;
    clear: both;
}

.images.woocommerce-product-gallery__wrapper {
    margin-bottom: 0;
}

.woocommerce-main-image {
    width: calc(100% - 100px);
    float: right;
}

.woocommerce-main-image:only-child {
    float: none;
}

.type-product .thumbnails {
    float: left;
    width: 70px;
}

.type-product .thumbnails a {
    display: block;
    margin-bottom: 20px;
}

.type-product .entry-summary {
    margin-bottom: 60px;
}

.entry-summary .product_title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -.01em;
}

.entry-summary .price {
    font-size: 16px;
    color: #252525;
    margin: -13px 0 20px;
}

.entry-summary .price del {
    opacity: .6;
    font-size: .8em;
    margin-right: 5px;
}

.entry-summary .stock {
    display: inline-block;
    background: #f8f8f8;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 10px 7px 25px;
    position: relative;
    line-height: normal;
}

.entry-summary .stock:before {
    position: absolute;
    top: 7px;
    left: 6px;
    font-size: 1.05em;
}

.entry-summary .in-stock {
    background-color: #a4ecd3;
    color: #435c50;
}

.entry-summary .in-stock:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.entry-summary .available-on-backorder:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.entry-summary .out-of-stock {
    background-color: #ff786d;
    color: #fff;
}

.entry-summary .out-of-stock:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.woocommerce-product-rating {
    margin: 55px 0 15px;
    line-height: normal;
}

.woocommerce-review-link {
    font-size: 12px;
    position: relative;
    top: -2px;
    margin-left: 5px;
    color: #737373;
}

.product_meta > span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.product_meta a {
    color: #252525;
}

.group_table td {
    padding-top: 8px;
    padding-bottom: 8px;
}

.group_table tr td:first-child {
    width: 100px;
}

.group_table .label {
    line-height: normal;
}

.group_table .label a {
    color: #252525;
}

.group_table .label a:hover {
    color: #d3b24d;
}

.group_table .price {
    color: #737373;
    font-size: 14px;
    font-weight: normal;
}

/* Add to cart
========================================= */

.quantity {
    display: inline-block;
    height: 45px;
    line-height: normal;
    margin-right: 10px;
}

.group_table .quantity {
    margin-right: 0;
    vertical-align: middle;
}

.qty {
    height: 100%;
    width: 60px;
    text-align: center;
    padding: 0;
    float: left;
    margin: 0;
    border: 1px solid #bbbbbb;
}

.qty:hover {
    border-color: #bbbbbb;
}

.entry-summary .qty {
    -moz-appearance: textfield !important;
}

.entry-summary .qty::-webkit-outer-spin-button,
.entry-summary .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.group_table .qty {
    width: 46px;
}

.qty-handle {
    float: left;
    height: 100%;
    width: 30px;
    color: #252525;
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    padding: 0;
    margin: 0;
    line-height: normal;
    vertical-align: top;
}

.qty-handle:hover {
    background-color: #f1f1f1;
    color: #252525;
}

.group_table .qty-handle {
    width: 20px;
}

.qty-minus {
    border-right: 0;
}

.qty-plus {
    border-left: 0;
}

.single_add_to_cart_button {
    height: 45px;
    vertical-align: top;
    padding: 13px 24px;
}

.product-type-external .single_add_to_cart_button {
    position: relative;
    padding-right: 30px;
}

.product-type-external .single_add_to_cart_button::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.entry-summary .cart {
    margin: 30px 0;
}

.entry-content .variations select {
    min-width: 200px;
    font-size: 13px;
}

.variations td {
    padding: 10px;
}

.variations td.label {
    text-transform: uppercase;
    font-size: 12px;
    line-height: normal;
}

.variations td.label label {
    margin: 0;
}

.woocommerce-variation-price {
    margin: 15px 0;
}

.reset_variations {
    float: right;
    color: #252525;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 2px;
}

.item-product .price {
    margin-bottom: 10px;
}

.item-product .button,
.item-product .add_to_cart_button,
.item-product .added_to_cart {
    height: auto;
    padding: 6px 12px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    border: 0;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.item-product .ajax_add_to_cart.loading {
    opacity: 0.5;
    padding-right: 2.618em;
    position: relative;
}

.item-product .ajax_add_to_cart.loading::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f110";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 7px;
    right: 10px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
}

.item-product .added_to_cart {
    color: #252525;
}

.item-product .added_to_cart::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
}

/* Star Ratings
========================================= */

.star-rating,
.wc-block-grid .star-rating {
    overflow: hidden;
    display: inline-block;
    position: relative;
    height: 1em;
    line-height: 1em;
    font-size: 12px;
    width: 78px;
    color: gold;
}

.star-rating:before,
.wc-block-grid .star-rating:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    float: left;
    top: 0;
    left: 0;
    letter-spacing: 2px;
    position: absolute;
}

.star-rating span,
.wc-block-grid .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span:before,
.wc-block-grid .star-rating span:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 0;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    color: gold;
}

/* Tabs
========================================= */

.woocommerce-tabs {
    margin-bottom: 60px;
}

.wc-tabs {
    display: block;
    margin: 0;
    padding: 0;
}

.wc-tabs li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.wc-tabs li.active a {
    color: #252525;
}

.wc-tabs a {
    display: block;
    padding: 0;
    margin: 0 25px 0 0;
    color: #737373;
    text-transform: uppercase;
    background-color: #ffffff;
    font-size: 12px;
    letter-spacing: -.01em;
}

.woocommerce-Tabs-panel {
    padding: 30px 0;
}

.woocommerce-Tabs-panel > p:last-child,
.woocommerce-Tabs-panel > table:last-child {
    margin-bottom: 0;
}

.shop_attributes {
    vertical-align: top;
}

.shop_attributes th,
.shop_attributes td {
    vertical-align: top;
}

.shop_attributes p {
    margin-bottom: 0;
}

/* Reviews */

.woocommerce-Reviews #comments {
    margin: 0 0 30px;
}

.woocommerce-Reviews li {
    margin-bottom: 20px;
}

.woocommerce-Reviews .avatar {
    width: 64px;
    height: 64px;
    float: left;
    margin: 0 15px 15px 0;
    overflow: visible;
}

.woocommerce-Reviews .description {
    overflow: hidden;
}

.woocommerce-Reviews .meta {
    margin: 0 0 10px;
    font-size: inherit;
}

.woocommerce-Reviews .star-rating {
    float: right;
}

.comment-form-rating a {
    display: inline-block;
    position: relative;
    width: 15px;
    text-indent: -9999px;
    margin-right: 10px;
    border: none;
    color: gold;
}

.comment-form-rating a:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 1em;
    opacity: 1;
    display: inline-block;
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.comment-form-rating a.active:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.comment-form-rating .star-2 {
    width: 30px;
}

.comment-form-rating .star-2::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.comment-form-rating .star-2.active::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.comment-form-rating .star-3 {
    width: 45px;
}

.comment-form-rating .star-3::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.comment-form-rating .star-3.active::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.comment-form-rating .star-4 {
    width: 60px;
}

.comment-form-rating .star-4::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.comment-form-rating .star-4.active::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.comment-form-rating .star-5 {
    width: 75px;
}

.comment-form-rating .star-5::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.comment-form-rating .star-5.active::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.up-sells {
    margin-bottom: 70px;
}

/* Cart Page
========================================= */

.shop_table td {
    padding: 10px 5px;
}

.shop_table.cart {
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    border-right: 0;
}

.shop_table.cart th,
.shop_table.cart td {
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.shop_table.cart th {
    background-color: #fafafa;
}

.shop_table .product-remove {
    text-align: center;
}

.shop_table .remove {
    font-size: 24px;
    color: #252525;
}

.shop_table .product-thumbnail {
    text-align: center;
}

.shop_table .product-thumbnail img {
    width: 60px;
}

.shop_table .product-name a {
    color: #252525;
}

.shop_table .product-name a:hover {
    color: #d3b24d;
}

.shop_table .product-quantity {
    text-align: center;
}

.shop_table .product-subtotal .woocommerce-Price-amount {
    color: #252525;
    font-weight: bold;
}

.shop_table .coupon {
    width: 280px;
    position: relative;
    float: left;
    height: 36px;
}

.shop_table .coupon label {
    display: none;
}

.shop_table .coupon button[type="submit"] {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    font-size: 11px;
    padding: 5px 14px;
}

.shop_table button[name="update_cart"] {
    float: right;
}

.cart-collaterals {
    margin-top: 50px;
}

.cart-collaterals .shop_table {
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    border-right: 0;
}

.cart-collaterals .shop_table th,
.cart-collaterals .shop_table td {
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.cart-collaterals .shop_table th {
    background-color: #fafafa;
    line-height: normal;
    width: 25%;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    font-size: 14px;
    padding: 18px 15px;
}

.woocommerce-remove-coupon {
    margin-left: 5px;
    color: #252525;
}

#shipping_method {
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
}

.shipping label {
    display: inline-block;
    margin-left: 5px;
}

.shipping input[type="radio"] {
    display: inline-block;
}

.woocommerce-shipping-calculator [type="submit"] {
    font-size: 11px;
    padding: 7px 12px;
    width: 100%;
}

.woocommerce-shipping-calculator p {
    margin: 0 0 5px;
}

.woocommerce-shipping-calculator select {
    width: 100%;
}

.shipping-calculator-button {
    color: #252525;
    font-size: 12px;
}

.shipping-calculator-button::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 3px;
}

.shipping-calculator-form {
    width: 100%;
}

.order-total td,
.order-total th {
    font-size: 16px;
    font-weight: bold;
    color: #252525;
}

.variation {
    margin: 0;
    font-size: 12px;
}

.variation dt,
.variation dd,
.variation p {
    font-weight: normal;
    display: inline-block;
    margin: 0;
}

.variation dd {
    margin-right: 3px;
}

.backorder_notification {
    font-size: 12px;
}

/* Checkout Page
========================================= */

.woocommerce-checkout .woocommerce-info {
    margin-bottom: 20px;
}

.woocommerce-checkout .login {
    margin-bottom: 30px;
}

.woocommerce-checkout .login::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-checkout .login .form-row-last {
    margin-right: 0;
}

.woocommerce-checkout .login .button {
    font-size: 12px;
    padding: 8px 16px;
}

.woocommerce-checkout .login label[for="rememberme"] {
    display: inline-block;
    margin-left: 10px;
}

.woocommerce-checkout .checkout_coupon {
    margin-bottom: 30px;
}

#customer-details {
    margin: 0 0 25px;
}

.woocommerce-billing-fields p,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields p,
.woocommerce-shipping-fields h3 {
    margin: 0 0 15px;
}

.woocommerce-billing-fields .input-text,
.woocommerce-shipping-fields .input-text {
    width: 100%;
}

.woocommerce-billing-fields abbr,
.woocommerce-shipping-fields abbr {
    text-decoration: none;
    border: none;
}

.woocommerce-billing-fields label.checkbox,
.woocommerce-shipping-fields label.checkbox {
    display: inline-block;
    margin-right: 5px;
    margin-top: 0;
}

.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields textarea {
    min-height: 130px;
}

.select2-container .select2-selection--single {
    border-radius: 0;
    border-color: #e6e6e6;
    height: 36px;
}

.select2-search__field {
    height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

#ship-to-different-address {
    margin-bottom: 12px;
}

#ship-to-different-address label {
    font-weight: 700;
}

#ship-to-different-address [type="checkbox"] {
    margin: 0 8px 0 0;
}

#ship-to-different-address .woocommerce-form__label-for-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#order_review_heading {
    padding-top: 35px;
    margin-top: 20px;
    border-top: 2px solid #bbbbbb;
}

#order_review .shop_table td,
#order_review .shop_table th,
.order_details td,
.order_details th {
    text-align: right;
    padding-left: 0;
    padding-right: 0;
}

#order_review .shop_table .product-total,
.order_details .product-total {
    text-align: right;
}

#order_review .shop_table .woocommerce-Price-amount,
#order_review .shop_table .shipping,
.order_details .woocommerce-Price-amount,
.order_details .shipping {
    color: #252525;
}

#order_review .shop_table .product-name,
.order_details .product-name {
    text-align: left;
}

#order_review .shop_table .product-quantity,
.order_details .product-quantity {
    font-weight: normal;
}

#order_review .shop_table tfoot tr,
.order_details tfoot tr {
    border: 0;
}

#order_review .shop_table tfoot td,
#order_review .shop_table tfoot th,
.order_details tfoot td,
.order_details tfoot th {
    padding: 9px 0 0;
    text-align: right;
    border: 0;
}

.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.payment_methods li {
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
}

.payment_methods li.woocommerce-info {
    padding: 14px 20px 14px 45px;
}

.payment_methods label {
    display: inline-block;
    margin: 0 0 0 5px;
}

.payment_method_paypal img {
    width: 100px;
    margin: -2px 15px 0;
}

.about_paypal {
    font-size: 12px;
}

.payment_box {
    padding: 15px;
    border: 1px solid #e6e6e6;
    margin: 5px 0 0;
}

.payment_box p {
    margin: 0;
}

.place-order .terms {
    display: inline-block;
    margin-left: 20px;
}

.place-order label[for="terms"] {
    display: inline-block;
    margin-right: 5px;
}

/* Order Received Page
========================================= */

.woocommerce-order-received .customer_details {
    padding: 25px;
    border: 1px solid #e6e6e6;
}

.woocommerce-order-received .customer_details td,
.woocommerce-order-received .customer_details th {
    border: 0;
    padding: 0;
}

.woocommerce-thankyou-order-details,
.wc-bacs-bank-details {
    list-style: none;
    margin: 15px 0;
    padding: 25px;
    border: 1px solid #e6e6e6;
}

.woocommerce-thankyou-order-details::after,
.wc-bacs-bank-details::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-thankyou-order-details li,
.wc-bacs-bank-details li {
    margin-bottom: 10px;
}

.woocommerce-thankyou-order-details li strong,
.wc-bacs-bank-details li strong {
    display: block;
    color: #252525;
}

#wc-bacs-bank-details-heading {
    margin-top: 30px;
}

#wc-bacs-bank-details-heading + h3 {
    font-size: 14px;
}

.wc-bacs-bank-details {
    margin-bottom: 30px;
}

/* My Account - General
========================================= */

.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
    display: block;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    color: #252525;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover {
    color: #d3b24d;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 5px;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    font-weight: bold;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a:after {
    content: "";
}

/* My Account - Orders
========================================= */

.woocommerce-MyAccount-content mark {
    color: #252525;
}

.woocommerce-MyAccount-orders .button.view {
    font-size: 12px;
    padding: 8px 16px;
}

/* My Account - Downloads
========================================= */

.woocommerce-MyAccount-downloads .download-file {
    width: 50%;
}

.woocommerce-MyAccount-downloads .download-file a {
    color: #252525;
}

.woocommerce-MyAccount-downloads .download-file a:hover {
    color: #d3b24d;
}

.woocommerce-MyAccount-downloads .woocommerce-Button.download {
    font-size: 12px;
    padding: 8px 16px;
}

/* My Account - Details
========================================= */

.woocommerce-EditAccountForm fieldset {
    padding: 25px;
    border: 2px solid #e6e6e6;
}

.woocommerce-EditAccountForm legend {
    padding: 0 15px;
}

/* My Account - Addresses
========================================= */

.woocommerce-Addresses {
    margin-left: -15px;
    margin-right: -15px;
}

.woocommerce-Addresses::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-Address {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 100%;
}

.woocommerce-Address-title {
    position: relative;
}

.woocommerce-Address-title a {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    color: #252525;
}

.woocommerce-Address-title a:hover {
    color: #d3b24d;
}

/* My Account - Login
========================================= */

.wc-form-login {
    max-width: 480px;
    margin: 0 auto;
    padding: 50px;
    border: 2px solid #e6e6e6;
}

.wc-form-login input[type="submit"] {
    display: block;
    width: 100%;
    margin: 25px 0 15px;
}

.wc-form-login.with-register {
    max-width: 680px;
}

.inline input {
    margin-right: 5px;
}

.woocommerce-LostPassword {
    margin: 0;
    font-size: 16px;
}

/* WIDGET: WooCommerce Price Range
========================================= */

.price_slider {
    position: relative;
    text-align: left;
    height: 6px;
    width: 100%;
    width: calc(100% - 14px);
    margin: 0 auto 20px;
    background: #e6e6e6;
}

.price_slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    background: silver;
    height: 6px;
    cursor: pointer;
}

.price_slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 16px;
    border-radius: 3px;
    height: 25px;
    margin-top: -10px;
    margin-left: -7px;
    cursor: pointer;
    outline: none;
    background-color: #252525;
    -ms-touch-action: none;
    touch-action: none;
}

.price_slider .ui-slider-handle:active {
    outline: none;
}

.price_slider .ui-slider-handle:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #FFF;
    line-height: 1;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -6px;
    opacity: .8;
}

.price_slider_wrapper .price_slider_amount {
    position: relative;
}

.price_slider_wrapper .price_label {
    position: absolute;
    right: 0;
    top: 0;
}

.price_slider_wrapper button {
    font-size: 11px;
    padding: 7px 12px;
}

/* WIDGET: WooCommerce Products
========================================= */

.product_list_widget {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product_list_widget li {
    margin-bottom: 15px;
    position: relative;
}

.product_list_widget li::after {
    content: "";
    display: table;
    clear: both;
}

.product_list_widget li img {
    width: 70px;
}

.product_list_widget .product-thumb {
    float: left;
    margin-right: 15px;
}

.product_list_widget .product-content {
    overflow: hidden;
}

.product_list_widget .product-title {
    line-height: 1.3;
    display: block;
    color: #000;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 10px;
}

.product_list_widget .product-title:hover {
    color: #000;
}

.product_list_widget .star-rating {
    display: block;
    margin: 5px 0 0;
}

.product_list_widget .reviewer {
    display: block;
}

.product_list_widget .woocommerce-Price-amount {
    font-size: 12px;
}

.product_list_widget ins {
    text-decoration: none;
}

.product_list_widget .remove {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 14px;
    background-color: #252525;
    color: #ffffff;
}

/* WIDGET: WooCommerce Cart Widget
========================================= */

.widget_shopping_cart .total {
    display: block;
    font-size: 14px;
    color: #252525;
    margin: 20px 0;
}

.widget_shopping_cart .buttons {
    display: block;
}

.widget_shopping_cart .buttons::after {
    content: "";
    display: table;
    clear: both;
}

.widget_shopping_cart .buttons .button {
    width: 49.5%;
    float: left;
    margin: 0 1% 0 0;
    padding-left: 10px;
    padding-right: 10px;
}

.widget_shopping_cart .buttons .button:last-child {
    margin-right: 0;
}

.widget_shopping_cart li.empty {
    margin: 0;
}

.header .widget_shopping_cart li.empty {
    text-align: center;
    border: 2px solid #e6e6e6;
    padding: 25px;
}

/* WIDGET: WooCommerce Layered Nav Widget
========================================= */

.widget_layered_nav_filters ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_layered_nav_filters li {
    display: inline-block;
    margin: 0 5px 5px 0;
}

.widget_layered_nav_filters a {
    display: inline-block;
    background-color: #f1f1f1;
    border-radius: 2px;
    color: #737373;
    font-size: 12px;
    padding: 2px 10px;
    position: relative;
}

.widget_layered_nav_filters a::before {
    content: "\00d7";
    margin-right: 5px;
    font-size: 14px;
}

.widget_layered_nav_filters a:hover::before {
    color: #ff786d;
}

.widget_layered_nav li.chosen a::before {
    content: "\00d7";
    margin-right: 5px;
    font-size: 14px;
}

.widget_layered_nav li.chosen a:hover::before {
    color: #ff786d;
}

/* -----------------------------------------
 WooCommerce Blocks
----------------------------------------- */

/* BLOCK: Product Listings
========================================= */

.wc-block-grid__products {
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    padding: 0;
    list-style: none;
}

.wc-block-grid__products::after {
    content: "";
    display: table;
    clear: both;
}

.wc-block-grid .wc-block-grid__product {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 50%;
}

li.wc-block-grid__product {
    border: 0;
    list-style: none;
    margin: 0 0 30px;
    text-align: center;
    position: relative;
}

li.wc-block-grid__product img {
    display: block;
    margin: 0 auto 15px;
}

li.wc-block-grid__product .wc-block-grid__product-onsale {
    z-index: 10;
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 13px;
    text-align: center;
    background-color: #252525;
    padding: 3px 12px;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    margin: 0;
}

li.wc-block-grid__product .wc-block-grid__product-link {
    display: block;
    text-decoration: none;
    color: currentColor;
}

li.wc-block-grid__product .wc-block-grid__product-link:hover {
    color: #d3b24d;
}

li.wc-block-grid__product .wc-block-grid__product-title {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 5px;
}

li.wc-block-grid__product .wc-block-grid__product-title a {
    color: currentColor;
}

li.wc-block-grid__product .wc-block-grid__product-title a:hover {
    color: #d3b24d;
}

li.wc-block-grid__product .wc-block-grid__product-price {
    font-size: 14px;
    margin: 0 0 15px;
}

li.wc-block-grid__product .wc-block-grid__product-price .wc-block-grid__product-price__regular {
    display: inline-block;
    margin: 0 4px 0 0;
    color: currentColor;
    font-size: inherit;
    letter-spacing: 0;
    opacity: .65;
}

li.wc-block-grid__product .wc-block-grid__product-price .wc-block-grid__product-price__value {
    letter-spacing: 0;
    font-weight: normal;
    display: inline-block;
    font-size: inherit;
}

li.wc-block-grid__product .button,
li.wc-block-grid__product .add_to_cart_button {
    display: inline-block;
    margin: 0;
    line-height: normal;
    border: 0;
    box-shadow: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: .18s background-color ease, color .18s ease, .18s border-color ease;
    transition: .18s background-color ease, color .18s ease, .18s border-color ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    width: auto;
    height: auto;
    background-image: none;
    text-transform: uppercase;
    padding: 11px 30px 10px;
    font-size: 12px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 16px;
}

li.wc-block-grid__product .button:active,
li.wc-block-grid__product .add_to_cart_button:active {
    outline: none;
}

li.wc-block-grid__product .button:hover,
li.wc-block-grid__product .add_to_cart_button:hover {
    background: #1b1b1b;
    color: #ffffff;
    text-decoration: none;
}

li.wc-block-grid__product .button:focus,
li.wc-block-grid__product .add_to_cart_button:focus {
    outline: none;
}

li.wc-block-grid__product .button.disabled,
li.wc-block-grid__product .button[disabled],
li.wc-block-grid__product .add_to_cart_button.disabled,
li.wc-block-grid__product .add_to_cart_button[disabled] {
    cursor: not-allowed;
    opacity: .4;
}

li.wc-block-grid__product .button.loading,
li.wc-block-grid__product .add_to_cart_button.loading {
    opacity: 0.5;
    padding-right: 2.618em;
}

li.wc-block-grid__product .button.loading::after,
li.wc-block-grid__product .add_to_cart_button.loading::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f110";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 11px;
    -webkit-animation: rot .8s infinite linear;
    animation: rot .8s infinite linear;
}

li.wc-block-grid__product .added_to_cart {
    padding: 7px 13px 5px;
    font-size: 13px;
    position: relative;
    text-decoration: none;
    color: #737373;
    background: none;
}

li.wc-block-grid__product .added::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 5px;
}

li.wc-block-grid__product .wc-block-grid__product-rating {
    display: block;
    margin: -10px auto 15px;
}

li.wc-block-grid__product .wc-block-grid__product-rating .wc-block-grid__product-rating__stars {
    width: auto;
    height: auto;
    line-height: normal;
    font-size: inherit;
    position: static;
}

/* BLOCK: Sort Select Element
========================================= */

.wc-block-sort-select {
    margin-bottom: 20px;
}

.wc-block-sort-select .wc-block-sort-select__select {
    width: auto;
    display: inline-block;
    height: auto;
}

.wc-block-product-sort-select {
    text-align: right;
}

/* BLOCK: Products Block Pagination
========================================= */

.wc-block-pagination {
    text-align: center;
    margin: 0;
}

.wc-block-pagination .wc-block-pagination-page {
    cursor: pointer;
    display: inline-block;
    padding: 12px 19px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 3px;
    border: 2px solid #e6e6e6;
    color: #737373;
    background: none;
}

.wc-block-pagination .wc-block-pagination-page.wc-block-pagination-page--active,
.wc-block-pagination .wc-block-pagination-page:hover {
    border-color: #e6e6e6;
}

/* BLOCK: Reviews
========================================= */

.wc-block-review-sort-select {
    text-align: left;
}

.wc-block-review-list {
    padding: 0;
    margin: 0;
}

.wc-block-review-list .wc-block-review-list-item__item {
    margin-bottom: 20px;
}

.wc-block-review-list .wc-block-review-list-item__rating__stars {
    height: 1em;
    width: 80px;
    line-height: normal;
    font-size: 12px;
    vertical-align: baseline;
    font-family: FontAwesome;
}

.wc-block-review-list .wc-block-review-list-item__rating__stars:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    float: left;
    top: 0;
    left: 0;
    letter-spacing: 2px;
    position: absolute;
}

.wc-block-review-list .wc-block-review-list-item__rating__stars span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.wc-block-review-list .wc-block-review-list-item__rating__stars span:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 0;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    color: gold;
}

.wc-block-review-list .wc-block-review-list-item__info {
    margin-bottom: 10px;
}

.wc-block-review-list .wc-block-review-list-item__text {
    font-size: 14px;
    line-height: 1.65;
}

.wc-block-review-list .wc-block-review-list-item__published-date {
    color: #737373;
}

/* BLOCK: Search
========================================= */

.wc-block-product-search__fields {
    position: relative;
}

.wc-block-product-search__fields .wc-block-product-search__button {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
}

.wc-block-product-search__fields .wc-block-product-search__button:hover {
    background: none !important;
    box-shadow: none !important;
    border: 0;
}

/* BLOCK: Product Categories
========================================= */

.wc-block-product-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.wc-block-product-categories-list ul {
    margin-left: 15px;
}

.wc-block-product-categories-list li {
    line-height: normal;
    display: block;
    position: relative;
}

.wc-block-product-categories-list li a {
    display: block;
    color: #737373;
    padding: 11px 30px 11px 0;
    border-bottom: 1px solid #e6e6e6;
}

.wc-block-product-categories-list li a:hover {
    color: #d3b24d;
}

.wc-block-product-categories-list li .wc-block-product-categories-list-item-count {
    position: absolute;
    right: 0;
    top: 11px;
}

/* BLOCK: Attribute Filters
========================================= */

.wp-block-woocommerce-attribute-filter h3 {
    line-height: normal;
    font-size: 18px;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list {
    font-size: 14px;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list li {
    text-decoration: none;
    line-height: normal;
    display: block;
    position: relative;
    margin: 0;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list [type="checkbox"] {
    display: none;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list [type="checkbox"]:checked + label {
    font-weight: 500;
    color: #d3b24d;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list [type="checkbox"]:checked + label::before {
    content: "\00d7";
    margin-right: 5px;
    font-size: 14px;
    color: #ff786d;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: #737373;
    padding: 11px 0;
    border-bottom: 1px solid #e6e6e6;
    margin: 0;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list label:hover {
    color: #d3b24d;
}

.wc-block-attribute-filter .wc-block-attribute-filter-list .wc-block-attribute-filter-list-count {
    float: none;
    margin-left: auto;
}

/* BLOCK: Active Filters
========================================= */

.wp-block-woocommerce-active-filters > h3 {
    line-height: normal;
    font-size: 18px;
}

.wc-block-active-filters .wc-block-active-filters__clear-all {
    font-size: 12px;
    padding: 8px 16px;
    margin-top: 10px;
}

.wc-block-active-filters .wc-block-active-filters-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wc-block-active-filters .wc-block-active-filters-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0;
    color: #737373;
    font-size: 13px;
    padding: 7px 10px;
    margin: 0 5px 5px 0;
    position: relative;
    line-height: 1;
}

.wc-block-active-filters .wc-block-active-filters-list button {
    position: relative;
    cursor: pointer;
    color: #ff786d;
    width: 16px;
    margin-top: -14px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-right: 5px;
}

.wc-block-active-filters .wc-block-active-filters-list button::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    line-height: 1;
    font-weight: bold;
    background: #ff786d;
    color: #ffffff;
    content: "\00d7";
    margin-right: 5px;
    font-size: 14px;
}

/* BLOCK: Filter by Price
========================================= */

.wp-block-woocommerce-price-filter h3 {
    line-height: normal;
    font-size: 18px;
}

.wc-block-price-filter .wc-block-price-filter__range-input-wrapper .wc-block-price-filter__range-input-progress {
    --range-color: #e6e6e6;
}

.wc-block-price-filter .wc-block-price-filter__controls .wc-block-price-filter__amount {
    border-radius: 0;
    height: auto;
    padding: 7px 14px;
    text-align: center;
    margin-top: 10px;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-thumb {
    background-color: transparent;
    background-position: 0 0;
    width: 26px;
    height: 21px;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='52' height='42'%3E%3Cdefs%3E%3Cpath id='a' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath id='b' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M24.3176 8.9423l-8.4163-6.1432c-1.706-1.2285-3.6395-1.8988-5.6867-1.787h-.1137c-4.8906.335-8.985 4.356-9.0987 9.2706C.8885 15.644 5.2102 20 10.6696 20h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M9 6v9m3-9v9'/%3E%3Cg fill-rule='nonzero' transform='translate(1 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23a'/%3E%3Cuse stroke='%23000' xlink:href='%23a'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M9 27v9m3-9v9'/%3E%3Cg%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M27.6824 8.9423l8.4163-6.1432c1.706-1.2285 3.6395-1.8988 5.6867-1.787h.1137c4.8906.335 8.985 4.356 9.0987 9.2706C51.1115 15.644 46.7898 20 41.3304 20h-.1137c-1.8197 0-3.6395-.6702-5.118-1.787l-8.4163-6.255c-.9099-.8935-.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M43 6v9m-3-9v9'/%3E%3C/g%3E%3Cg%3E%3Cg fill-rule='nonzero' transform='matrix(-1 0 0 1 51 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23b'/%3E%3Cuse stroke='%23000' xlink:href='%23b'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M43 27v9m-3-9v9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: -6px 0 0 0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-thumb:hover {
    background-position-y: 0;
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-thumb {
    background-color: transparent;
    background-position: 0 0;
    width: 26px;
    height: 21px;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='52' height='42'%3E%3Cdefs%3E%3Cpath id='a' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath id='b' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M24.3176 8.9423l-8.4163-6.1432c-1.706-1.2285-3.6395-1.8988-5.6867-1.787h-.1137c-4.8906.335-8.985 4.356-9.0987 9.2706C.8885 15.644 5.2102 20 10.6696 20h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M9 6v9m3-9v9'/%3E%3Cg fill-rule='nonzero' transform='translate(1 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23a'/%3E%3Cuse stroke='%23000' xlink:href='%23a'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M9 27v9m3-9v9'/%3E%3Cg%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M27.6824 8.9423l8.4163-6.1432c1.706-1.2285 3.6395-1.8988 5.6867-1.787h.1137c4.8906.335 8.985 4.356 9.0987 9.2706C51.1115 15.644 46.7898 20 41.3304 20h-.1137c-1.8197 0-3.6395-.6702-5.118-1.787l-8.4163-6.255c-.9099-.8935-.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M43 6v9m-3-9v9'/%3E%3C/g%3E%3Cg%3E%3Cg fill-rule='nonzero' transform='matrix(-1 0 0 1 51 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23b'/%3E%3Cuse stroke='%23000' xlink:href='%23b'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M43 27v9m-3-9v9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-thumb:hover {
    background-position-y: 0;
    filter: none;
    transform: scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb {
    background-color: transparent;
    background-position: 0 0;
    width: 26px;
    height: 21px;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='52' height='42'%3E%3Cdefs%3E%3Cpath id='a' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath id='b' d='M23.3176 7.9423l-8.4163-6.1432C13.1953.5706 11.2618-.0997 9.2146.0121h-.1137C4.2103.347.1159 4.368.0022 9.2827-.1115 14.644 4.2102 19 9.6696 19h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M24.3176 8.9423l-8.4163-6.1432c-1.706-1.2285-3.6395-1.8988-5.6867-1.787h-.1137c-4.8906.335-8.985 4.356-9.0987 9.2706C.8885 15.644 5.2102 20 10.6696 20h.1137c1.8197 0 3.6395-.6702 5.118-1.787l8.4163-6.255c.9099-.8935.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M9 6v9m3-9v9'/%3E%3Cg fill-rule='nonzero' transform='translate(1 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23a'/%3E%3Cuse stroke='%23000' xlink:href='%23a'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M9 27v9m3-9v9'/%3E%3Cg%3E%3Cpath fill='%23FFF' fill-rule='nonzero' stroke='%23000' d='M27.6824 8.9423l8.4163-6.1432c1.706-1.2285 3.6395-1.8988 5.6867-1.787h.1137c4.8906.335 8.985 4.356 9.0987 9.2706C51.1115 15.644 46.7898 20 41.3304 20h-.1137c-1.8197 0-3.6395-.6702-5.118-1.787l-8.4163-6.255c-.9099-.8935-.9099-2.2338 0-3.0157z'/%3E%3Cpath stroke='%23B8B8B8' d='M43 6v9m-3-9v9'/%3E%3C/g%3E%3Cg%3E%3Cg fill-rule='nonzero' transform='matrix(-1 0 0 1 51 22)'%3E%3Cuse fill='%23F8F3F7' stroke='%23FFF' stroke-opacity='.75' stroke-width='3' xlink:href='%23b'/%3E%3Cuse stroke='%23000' xlink:href='%23b'/%3E%3C/g%3E%3Cpath stroke='%23000' d='M43 27v9m-3-9v9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb:hover {
    background-position-y: 0;
    filter: none;
    transform: scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input:focus::-webkit-slider-thumb {
    background-position-y: 0;
    -webkit-filter: none;
    filter: none;
}

.wc-block-price-filter .wc-block-price-filter__range-input:focus::-moz-range-thumb {
    background-position-y: 0;
    filter: none;
}

.wc-block-price-filter .wc-block-price-filter__range-input:focus::-ms-thumb {
    background-position-y: 0;
    filter: none;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */

/* WordPress Galleries
=================================== */

.gallery {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 15px;
}

.gallery::after {
    content: "";
    display: table;
    clear: both;
}

.gallery-item {
    margin-bottom: 10px;
}

.gallery-item img {
    width: 100%;
    max-width: 100%;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-columns-1 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 50%;
}

.gallery-columns-3 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 25%;
}

.gallery-columns-5 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 20%;
}

.gallery-columns-6 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    float: left;
    width: 11.11111%;
}

.gallery-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 0 5px;
    max-height: 50%;
    opacity: 0;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: calc(100% - 10px);
    -webkit-transition: opacity .18s ease;
    transition: opacity .18s ease;
}

.gallery-caption::before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* WordPress Classes
=================================== */

/* Alignment */

.alignnone {
    margin: 5px 0 20px;
}

p .alignnone {
    margin-bottom: 0;
}

.aligncenter {
    display: block;
    margin: 7px auto;
}

.alignright {
    float: right;
    margin: 7px 0 7px 24px;
}

.alignleft {
    float: left;
    margin: 7px 24px 7px 0;
}

/* Captions */

.wp-caption {
    max-width: 100%;
    margin-bottom: 15px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text {
    font-size: 12px;
    line-height: 17px;
    margin: 3px 0 5px;
    padding: 5px 0 0;
    text-align: left;
    font-style: italic;
}

.sticky {
    /* Provide sticky styles */
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */

.mobile-nav-trigger {
    text-transform: uppercase;
}

.mobile-nav-trigger i {
    margin-right: 5px;
}

#mobilemenu {
    display: none;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */

/* Jetpack Sharing */

.sharedaddy {
    margin-top: 30px;
}

/* WP Instagram */

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

.widget .instagram-pics {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget .instagram-pics::after {
    content: "";
    display: table;
    clear: both;
}

.widget .instagram-pics li {
    border-bottom: 0;
    padding: 0;
    float: left;
    width: 33.33333333333%;
}

.widget .instagram-pics li a {
    display: block;
    color: #737373;
}

/* Quick View Woo */

.item-product .quickviewwoo-button-before-price,
.item-product .quickviewwoo-button-before-rating {
    margin: 6px 0 8px;
}

.item-product .quickviewwoo-button-before-title {
    margin-bottom: 10px;
}

.item-product .quickviewwoo-button-before-thumbnail {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
}

/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */

@media (min-width: 544px) {
    .hidden-sm-up {
        display: none !important;
    }

    .group_table .stock {
        margin-left: 5px;
    }

    .woocommerce-billing-fields,
    .woocommerce-shipping-fields {
        margin-left: -15px;
        margin-right: -15px;
    }

    .woocommerce-billing-fields::after,
    .woocommerce-shipping-fields::after {
        content: "";
        display: table;
        clear: both;
    }

    .woocommerce-billing-fields p,
    .woocommerce-billing-fields h3,
    .woocommerce-shipping-fields p,
    .woocommerce-shipping-fields h3 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 100%;
    }

    .woocommerce-billing-fields .form-row-first,
    .woocommerce-billing-fields .form-row-last,
    .woocommerce-shipping-fields .form-row-first,
    .woocommerce-shipping-fields .form-row-last {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .place-order {
        text-align: right;
    }

    .neto-grid .elementor-section.elementor-section-boxed > .elementor-container {
        width: 546px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }

    .woocommerce .col2-set {
        margin-left: -15px;
        margin-right: -15px;
    }

    .woocommerce .col2-set::after {
        content: "";
        display: table;
        clear: both;
    }

    .woocommerce .col2-set .col-1,
    .woocommerce .col2-set .col-2 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .cart-collaterals {
        margin-left: -15px;
        margin-right: -15px;
    }

    .cart-collaterals::after {
        content: "";
        display: table;
        clear: both;
    }

    .cart-collaterals .cross-sells {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 66.66667%;
    }

    .cart-collaterals .cart_totals {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 33.33333%;
        float: right;
    }

    .woocommerce-checkout .login .form-row-first,
    .woocommerce-checkout .login .form-row-last {
        float: left;
        width: 49%;
        margin-right: 2%;
    }

    .woocommerce-thankyou-order-details li,
    .wc-bacs-bank-details li {
        float: left;
        width: 25%;
        margin: 0;
    }

    .woocommerce-MyAccount-navigation {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 25%;
        padding-left: 0;
    }

    .woocommerce-MyAccount-content {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 75%;
        padding-right: 0;
    }

    .woocommerce-Address {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .wc-block-grid.has-2-columns .wc-block-grid__product {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .wc-block-grid.has-3-columns .wc-block-grid__product {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .wc-block-grid.has-4-columns .wc-block-grid__product {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 50%;
    }

    .neto-grid .elementor-section.elementor-section-boxed > .elementor-container {
        width: 690px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }

    .woocommerce-MyAccount-content {
        padding-left: 45px;
    }

    .wc-block-grid.has-3-columns .wc-block-grid__product {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 33.33333%;
    }

    .wc-block-grid.has-4-columns .wc-block-grid__product {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        width: 25%;
    }

    .neto-grid .elementor-section.elementor-section-boxed > .elementor-container {
        width: 910px;
        max-width: 100%;
    }

    .mobile-nav-trigger {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hidden-xl-up {
        display: none !important;
    }

    .main > .container > .row > [class^="col-xl-9"] {
        padding-right: 45px;
    }

    .main > .container > .row > [class~="push-xl-3"] {
        padding-right: 15px;
        padding-left: 45px;
    }

    .neto-grid .elementor-section.elementor-section-boxed > .elementor-container {
        width: 1140px;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important;
    }

    .comment-author .avatar {
        display: none;
    }

    .gallery-columns-7 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 20%;
    }

    .gallery-columns-8 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 20%;
    }

    .gallery-columns-9 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 20%;
    }

    #mobilemenu {
        display: block;
    }

    .pre-head .list-social-icons {
        display: none;
    }

    .mast-head-stick.is_stuck {
        position: relative !important;
        box-shadow: none;
    }

    .header .stuck {
        display: none !important;
    }

    .sidebar:not(.sidebar-drawer) {
        padding: 0;
        margin-top: 60px;
    }

    .page-hero {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }

    #comment-list ol,
    .commentlist ol {
        margin: 0;
        padding: 0;
    }

    .comment-reply-link {
        margin: 0;
    }

    .woocommerce-message {
        padding-bottom: 45px;
    }

    .woocommerce-message .button {
        float: none;
        position: absolute;
        display: block;
        padding: 0;
        left: 45px;
        bottom: 15px;
        margin: 0;
    }

    .shop-actions .actions {
        float: none;
        width: 100%;
        margin: 0 0 25px;
    }

    .shop-actions .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    .shop-actions .woocommerce-ordering select {
        width: 100%;
    }

    .woocommerce-Reviews .avatar {
        display: none;
    }

    .cart-collaterals .cart_totals {
        clear: both;
    }

    .wc-form-login .login {
        margin-bottom: 30px;
    }

    .gallery-columns-5 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 25%;
    }

    .gallery-columns-6 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 25%;
    }

    .gallery-columns-7 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 25%;
    }

    .gallery-columns-8 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 25%;
    }

    .gallery-columns-9 .gallery-item {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        float: left;
        width: 25%;
    }

    .row-table {
        display: block;
        width: auto;
    }

    .row-table [class^="col"] {
        display: block;
    }

    .pre-head,
    .pre-head-right {
        height: auto;
        text-align: center;
    }

    .navigation-secondary {
        height: auto;
        margin: 0;
    }

    .site-logo,
    .site-tagline {
        text-align: center;
        width: auto;
        max-width: 300px;
        position: static;
        transform: none;
    }

    .mast-head-right {
        text-align: center;
        margin-top: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .mast-head-right a {
        margin: 0 8px;
    }

    .mast-head-right > a {
        font-size: 15px;
    }

    .mast-head-right .mobile-nav-trigger {
        display: block;
        margin-left: auto;
    }

    .head-cart-toggle {
        margin: 0 8px;
    }

    .head-cart-wrap {
        right: auto;
        left: 0;
    }

    .entry-sidebar {
        float: none;
        width: auto;
        margin: 0 0 30px;
    }

    .entry-main {
        float: none;
        width: auto;
    }

    .entry-header {
        margin: 0 0 5px;
    }

    .entry-time {
        text-align: left;
    }

    .entry-day {
        display: inline;
        margin: 0;
        font-size: 14px;
    }

    .entry-month {
        display: inline-block;
    }

    .footer .nav-list-inline,
    .footer .list-credit-cards {
        display: block;
        margin: 0;
        text-align: center;
    }

    .footer .nav-list-inline li,
    .footer .list-credit-cards li {
        margin: 0 5px 5px;
    }

    .footer-widgets {
        padding: 50px 0 25px;
    }

    .footer-cards {
        text-align: center;
        margin-top: 5px;
    }

    .type-product .images {
        margin-bottom: 30px;
    }

    .entry-summary .woocommerce-product-rating {
        margin: 15px 0;
    }

    .wc-tabs {
        text-align: left;
    }

    .wc-tabs li {
        display: block;
        margin-bottom: 5px;
    }

    .page-section {
        padding: 45px 0;
    }

    .page-hero-title {
        width: 100%;
        float: none;
    }

    .page-hero-subtitle {
        width: 100%;
        float: none;
    }

    .cart-collaterals .cross-sells .row [class^="col"]:last-child {
        display: none;
    }

    .shop-actions .woocommerce-result-count {
        display: block;
        margin: 10px 0;
    }

    .woocommerce-MyAccount-navigation {
        margin-bottom: 40px;
    }

    /* Visual Composer */
    .vc_general.vc_tta.vc_tta-tabs .vc_tta-panel {
        margin-top: -1px;
    }

    .vc_general.vc_tta.vc_tta-tabs .vc_tta-panel-title > a {
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 14px;
        color: #252525;
        border: 1px solid #e6e6e6;
        -webkit-transition: border-color .18s ease;
        transition: border-color .18s ease;
    }

    .vc_general.vc_tta.vc_tta-tabs .vc_tta-panel-body {
        padding: 20px !important;
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
    }

    .vc_general.vc_tta.vc_tta-tabs .vc_tta-panel:last-child .vc_tta-panel-body {
        border-bottom: 1px solid #e6e6e6;
    }

    .vc_general.vc_tta.vc_tta-tabs .vc_tta-panels {
        border: 0 !important;
        border-left: 0;
        margin-left: -1px;
        z-index: 0;
    }

    .woocommerce-main-image:only-child {
        width: 100%;
    }

    .woocommerce-main-image:only-child img {
        width: 100%;
    }
}

@media (max-width: 543px) {
    .hidden-xs-down {
        display: none !important;
    }

    input,
    textarea,
    select {
        width: 100%;
    }

    .group_table .stock {
        display: block;
        margin-top: 2px;
    }

    .shop_table .product-thumbnail {
        display: none;
    }

    .shop_table .product-price {
        display: none;
    }

    .shop_table .coupon {
        display: block;
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }

    .place-order .terms {
        margin: 5px 0 0;
        display: block;
    }

    .head-cart {
        position: static;
    }

    .head-cart-wrap {
        width: 100%;
    }

    .item-title {
        font-size: 14px;
    }

    .woocommerce-main-image {
        width: calc(100% - 85px);
    }

    .shop-filter-toggle {
        display: block;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .shop-filter-toggle::after {
        display: none;
    }

    .sidebar-drawer-content {
        padding: 20px;
    }

    .sidebar-drawer-visible {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .woocommerce-main-image {
        float: none;
        width: 100%;
        margin: 0 0 15px;
        display: block;
    }

    .type-product .thumbnails {
        float: none;
        width: 100%;
    }

    .type-product .thumbnails::after {
        content: "";
        display: table;
        clear: both;
    }

    .type-product .thumbnails > div {
        width: calc(25% - 10px);
        display: inline-block;
        margin-right: 10px;
        vertical-align: top;
    }

    .type-product .thumbnails > div:nth-child(4n) {
        margin-right: 0;
    }
}

h1, h2, h3, h4, h5, h6, .entry-content th, .comment-content th, .navigation-main > li > a, .navigation-header-secondary > li > a, .footer .nav-list-inline, .mast-head-right > a, .entry-sticky-notice, .entry-item-title, .item-title, .widget-title, .section-title, .module-callout-title, .product_meta > span, .wc-tabs a, .woocommerce-thankyou-order-details li strong, .wc-bacs-bank-details li strong, .woocommerce-EditAccountForm legend, .product_list_widget .product-title, .widget_shopping_cart .total {
    font-family: 'Roboto' !important;
}

.navigation-main > li > a, .navigation-header-secondary > li > a {
    font-size: 15px;
}

.navigation-main > li > a, .navigation-header-secondary > li > a, .footer .nav-list-inline {
    font-weight: 700;
}

.mast-head-right > a {
    font-size: 15px;
}

.mast-head-right > a:hover {
    color: #fff;
}
