
/*import vendors*/
@import url(vendors/normalize.css);
@import url(vendors/bootstrap.min.css);
@import url(vendors/evara-font.css);
@import url(vendors/uicons-regular-straight.css);
/*import plugins*/
@import url(plugins/jquery-ui.css);
@import url(plugins/magnific-popup.css);
@import url(plugins/select2.min.css);
@import url(plugins/slick.css);
@import url(plugins/perfect-scrollbar.css);


:root {
    --color-forest: #22392e;
    --color-forest-deep: #3d5c4d;
    --color-green: #046963;
    --color-sage: #8ba88e;
    --color-sage-muted: #c5d4c8;
    --color-cream: #fdfcf7;
    --color-cream-alt: #f9e6c1;
    --color-section-sage: #e8eeea;
    --color-pill-bg: #e4ecf0;
    --color-text: #1a2f28;
    --color-white: #fff;
    --white: #fff;
    --white-color: #fff;
    --color-muted: #60766b;
    --color-brown: #ac6c53;
    --color-black: #202f38;
    --bs-secondary-color: rgba(33, 37, 41, 0.75);
    --font-serif: "Playfair Display", serif;
    --body-font: "DM Sans", serif;
    --font-sans: "Montserrat", system-ui, sans-serif;
    --transition: 0.25s ease;
}

/*RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  
}

thead {
    font-weight: 600;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
p{
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 1rem;
    
}
.txt_muted_para p{
    color: var(--color-muted);
}
body {
    font-family: var(--body-font);
    color: var(--color-text);
    background: var(--color-cream);
    padding-top: 72px;
}

.font-serif {
    font-family: var(--font-serif);
}
ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

a {
    color: #507468;
}

a:hover {
    color: #046963;
}

/*--- Common Classes---------------------*/

::-moz-selection {
    background: #507468;
    /* WebKit/Blink Browsers */
    color: #fff;
}

::selection {
    background: #507468;
    /* WebKit/Blink Browsers */
    color: #fff;
}

::-moz-selection {
    background: #507468;
    /* Gecko Browsers */
    color: #fff;
}

::-webkit-input-placeholder {
    color: #838383;
}

:-ms-input-placeholder {
    color: #838383;
}

::-ms-input-placeholder {
    color: #838383;
}

::placeholder {
    color: #838383;
}

.fix {
    overflow: hidden;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.section {
    float: left;
    width: 100%;
}

.f-right {
    float: right;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.bg-img {
    background-position: center center;
    background-size: cover;
}

.position-relative {
    position: relative;
}

.height-100vh {
    height: 100vh !important;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bg-grey-9 {
    background-color: #f4f5f9;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}

.img-hover-scale img {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.img-hover-scale:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.hover-up {
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.hover-up:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.text-brand {
    color: #507468 !important;
}

.text-primary {
    color: #AC6C53 !important;
}

.text-warning {
    color: #ffb300 !important;
}

.text-danger {
    color: #ff3551 !important;
}

.text-success {
    color: #3ed092 !important;
}

.text-info {
    color: #18a1b7 !important;
}

.text-grey-4 {
    color: #90908e !important;
}

.text-muted2 {
    color: #606063 !important;
}

.text-7 {
    color: #AC6C53 !important;
}

.text-8 {
    color: #708572 !important;
}

.text-grey-5,
.text-grey-5 a,
.text-hover-grey-5:hover {
    color: #a2a2a2 !important;
}

.bg-brand {
    background-color: #507468 !important;
}

.bg-primary {
    background-color: #3f81eb !important;
}

.bg-warning {
    background-color: #ffb300 !important;
}

.bg-danger {
    background-color: #ff3551 !important;
}

.bg-success {
    background-color: #3ed092 !important;
}

.bg-info {
    background-color: #18a1b7 !important;
}

.bg-grey-4 {
    background-color: #90908e !important;
}

.bg-1 {
    background-color: #fddde4 !important;
}

.bg-2 {
    background-color: #cdebbc !important;
}

.bg-3 {
    background-color: #d1e8f2 !important;
}

.bg-4 {
    background-color: #cdd4f8 !important;
}

.bg-5 {
    background-color: #f6dbf6 !important;
}

.bg-6 {
    background-color: #fff2e5 !important;
}
.bg-white{
    background-color: #fff !important;
}

.flex-horizontal-center {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.h-500 {
    min-height: 500px;
}

.border {
    border: 1px solid #e2e9e1 !important;
}

.box-shadow-outer-6 {
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.box-shadow-outer-6:hover {
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}

.box-shadow-outer-7 {
    -webkit-box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
    box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
}

.box-shadow-outer-7:hover {
    -webkit-box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
    box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
}

.box-shadow-outer-3,
.box-hover-shadow-outer-3:hover {
    -webkit-box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
    box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
}

/*****************************
*********  BORDER  *****
******************************/

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-dotted {
    border-style: dotted !important;
}

.border-solid {
    border-style: solid !important;
}

.border-double {
    border-style: double !important;
}

.border-dashed {
    border-style: dashed !important;
}

.border-brand {
    border-color: #507468 !important;
}

.border-muted {
    border-color: #f7f8f9;
}

.section-border {
    border-top: 1px solid #e6e9ec;
    border-bottom: 1px solid #e6e9ec;
}

.border-color-1 {
    border-color: #e0dede;
}

a,
button,
img,
input,
span,
h4 {
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

@-webkit-keyframes slideleft {
    10% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        right: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    90% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        right: 100%;
    }
}

@keyframes slideleft {
    10% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        right: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    90% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        right: 100%;
    }
}

[data-loader='spinner'] {
    width: 35px;
    height: 35px;
    display: inline-block;
    -webkit-animation: spinner 1.2s infinite ease-in-out;
    animation: spinner 1.2s infinite ease-in-out;
    background: url(../imgs/favicon.svg);
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@-webkit-keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.8);
        box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.8);
    }
    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }
}

@keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.8);
        box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.8);
    }
    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }
}

@-webkit-keyframes shadow-pulse-big {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
        box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes shadow-pulse-big {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
        box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.jump {
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-animation: jump .5s linear alternate infinite;
    animation: jump .5s linear alternate infinite;
}

/*TYPOGRAPHY*/


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Alta_caption", sans-serif;
    color: #222222;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}


p:last-child {
    margin-bottom: 0;
}

a,
button {
    text-decoration: none;
    cursor: pointer;
}

b {
    font-weight: 500;
}

strong,
.fw-600 {
    font-weight: 600;
}

.fw-900 {
    font-weight: 900;
}

.fw-300 {
    font-weight: 300;
}

.section-title {
    font-weight: 600;
}

.section-title.style-1 {
    position: relative;
    border-bottom: 1px solid #e2e9e1;
    padding-bottom: 10px;
    font-size: 16px;
}

.section-title.style-1::after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #507468;
}

.section-title span {
    color: #AC6C53;
    font-family: "Alta_caption", sans-serif;
}
h1.section-title {
  font-size: 46px;
}
h3.section-title {
    font-size: 46px;
}

h5.widget-title {
    font-size: 18px;
    font-weight: 600;
}

.text-body {
    color: #4f5d77 !important;
}

.font-xxs {
    font-size: 12px;
}

.font-xs {
    font-size: 13px;
}

.font-sm {
    font-size: 14px;
}

.font-md {
    font-size: 15px;
}

.font-lg {
    font-size: 17px;
}

.font-xl {
    font-size: 19px;
}

.font-xxl {
    font-size: 58px;
}

.text-style-1 {
    position: relative;
}

.text-style-1::after {
    content: "";
    background-color: #ffdabf;
    height: 20%;
    width: 110%;
    display: block;
    position: absolute;
    bottom: 20%;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.text-style-1:hover::after {
    height: 30%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.fw-700 {
    font-weight: 700;
}

/*COMPONENTS -> BUTTONS*/

.btn-default {
    color: #fff;
    background-color: #507468;
    border-radius: 50px;
    padding: 13px 28px;
}

.btn-default i {
    font-weight: 400;
    font-size: 12px;
    margin-left: 10px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.btn-default:hover i {
    margin-left: 15px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.btn-lg {
    padding: 13px 28px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px !important;
    font-size: 12px;
}

.btn-md {
    padding: 10px 24px !important;
    font-size: 12px;
}

.btn-outline {
    background-color: transparent !important;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:hover {
    color: white;
}

.btn-shadow-brand {
    -webkit-box-shadow: 0 2px 6px 0 rgba(88, 151, 251, 0.16);
    box-shadow: 0 2px 6px 0 rgba(88, 151, 251, 0.16);
    border: 1px solid #f7f8f9;
}

.btn-shadow-brand:hover {
    border: 1px solid #507468;
}

.btn-brand {
    background-color: #507468;
    border-color: #507468;
}

button.submit,
button[type='submit'] {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 40px;
    color: #ffffff;
    border: none;
    background-color: #507468;
    border: 1px solid #046963;
    border-radius: 5px;
}

button.submit:hover,
button[type='submit']:hover {
    background-color: #046963 !important;
}

.btn-brand:hover {
    background-color: #046963 !important;
}

.btn-login {
    font-weight: 13px;
}

.btn-login .btn {
    min-width: unset;
}

.btn-login li {
    margin: 0px 5px 0;
    display: inline-block;
}

.btn-login li a {
    border-radius: 5px;
    padding: 15px 25px;
    color: #fff;
    display: block;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
}
.single-product form.cart input[type="number"]{
    width: 9em;
    height: 55px;
}
.btn,
.button {
    display: inline-block;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #046963;
    background-color: #507468;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
}

.btn:hover,
.button:hover {
    background-color: #046963;
}

.btn.btn-sm,
.button.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
    text-transform: none;
    line-height: 1.8;
}

.btn.btn-rounded,
.button.btn-rounded {
    border-radius: 50px;
}

.btn.btn-secondary,
.button.btn-secondary {
    background-color: #41506b;
    border-color: #41506b;
}

.btn.btn-facebook,
.button.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
}

.btn.btn-google,
.button.btn-google {
    background: #d85040;
    border-color: #d85040;
}

.btn.btn-brush,
.button.btn-brush {
    background-color: transparent;
    color: #507468;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    
}

.btn.btn-brush i,
.button.btn-brush i {
    margin: 3px 0 0 5px;
}

.btn.btn-brush.btn-brush-1,
.button.btn-brush.btn-brush-1 {
    background-image: url(../imgs/theme/btn-brush-bg-1.png);
}

.btn.btn-brush.btn-brush-2,
.button.btn-brush.btn-brush-2 {
    background-image: url(../imgs/theme/btn-brush-bg-2.png);
}

.btn.btn-brush.btn-brush-3,
.button.btn-brush.btn-brush-3 {
    background-image: url(../imgs/theme/btn-brush-bg-3.png);
}

.comments-area .btn-reply {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comments-area .btn-reply i {
    margin-left: 5px;
    font-size: 12px;
}

.tags .btn,
.tags .button {
    border-radius: 4px;
    float: left;
}

/*COMPONENTS -> FORM*/

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}

input {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 13px;
    color: #161c27;
    width: 100%;
}

input:focus {
    background: transparent;
    border: 1px solid #88c1be;
}

input.square {
    border-radius: 0;
}

select {
    width: 100%;
    background: transparent;
    border: 0px solid #f4f5f9;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 13px;
    color: #161c27;
}

option {
    background: #fff;
    border: 0px solid #626262;
    padding-left: 10px;
    font-size: 13px;
}

textarea {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 10px 10px 20px;
    font-size: 13px;
    color: #161c27;
    width: 100%;
    min-height: 200px;
}

textarea:focus {
    background: transparent;
    border: 1px solid #88c1be;
}

.select2-container--default .select2-selection--single {
    /*background-color: #fff;*/
    /*border-bottom: 3px solid #414648;*/
    border-radius: 0;
    border-right: 0;
    height: 45px;
    padding: var(--form--spacing-unit) !important;
    padding-top: 0px !important;
    border-top: 0;
    border-left: 0;
    font-weight: bold;
    border: 1px solid var(--form--border-color) !important;
    border-radius: var(--form--border-radius) !important;
    margin: 0 2px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    font-size: 16px;
    padding: 0;
    letter-spacing: -0.5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 12px;
    right: 15px;
    width: 20px;
}

.custom_select {
    position: relative;
    width: 100%;
}

.custom_select .select2-container {
    max-width: 155px;
}

.custom_select .nice-select {
    width: 100%;
    margin-bottom: 1rem;
}

.custom_select .select2-container--default .select2-selection--single {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    height: 45px;
    line-height: 45px;
    padding-left: 20px;
    font-size: 13px;
    color: #1a1a1a;
}

.custom_select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    font-size: 13px;
    color: #1a1a1a;
    padding-left: 0;
}

.custom_select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px;
    right: 14px;
}

.select2-dropdown {
    border: 1px solid #eef0ee;
    border-radius: 0 0 4px 4px;
    padding: 15px;
    min-width: 220px;
}

.select2-dropdown .select2-search--dropdown {
    padding: 0;
}

.select2-dropdown .select2-search--dropdown .select2-search__field {
    border: 1px solid #507468;
    margin-bottom: 15px;
    border-radius: 5px;
    height: 40px;
    padding-left: 20px;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__options::-webkit-scrollbar {
    width: 16px;
    background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: #F4F4F4;
    height: 8px;
    background-clip: padding-box;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    background-color: #d1d1d1;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-button {
    display: none;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #ececec;
    color: unset;
}

.select2-container {
    max-width: 135px;
}

/*contact form*/

.contact-from-area .contact-form-style button {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 40px;
    color: #ffffff;
    border: none;
    background-color: #507468;
    border: 1px solid #046963;
    border-radius: 5px;
}

.contact-from-area .contact-form-style button:hover {
    background-color: #046963 !important;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    background: #fff;
    border: 1px solid #e2e9e1;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 13px;
    color: #1a1a1a;
    width: 100%;
}

.form-group input:focus {
    background: transparent;
    border-color: #e2e9e1;
}

label {
    margin-bottom: 5px;
}

.custome-radio .form-check-label,
.custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
}

.custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
    color: #687188;
    padding: 0;
    vertical-align: middle;
}

.custome-checkbox .form-check-label::before {
    content: "";
    border: 2px solid #ced4da;
    height: 17px;
    width: 17px;
    margin: 0px 8px 0 0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
}

.custome-checkbox .form-check-label span {
    vertical-align: middle;
}

.custome-checkbox input[type="checkbox"]:checked+.form-check-label::after {
    opacity: 1;
}

.custome-checkbox input[type="checkbox"]+.form-check-label::after {
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 3px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
}

.custome-radio .form-check-input,
.custome-checkbox .form-check-input {
    display: none;
}

.login_footer {
    margin-bottom: 20px;
    margin-top: 5px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.custome-checkbox input[type="checkbox"]:checked+.form-check-label::before {
    background-color: #507468;
    border-color: #507468;
}

.custome-checkbox input[type="checkbox"]:checked+.form-check-label::after {
    opacity: 1;
}

.divider-text-center {
    text-align: center;
    position: relative;
}

.divider-text-center::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid #ddd;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.divider-text-center span {
    background-color: #fff;
    padding: 0 15px;
    position: relative;
    text-transform: uppercase;
}

.login_wrap {
    border-color: #e2e9e1;
    border-style: solid;
    border-width: 1px;
}

/*comment*/

.comments-area {
    background: transparent;
    border-top: 1px solid #e2e9e1;
    padding: 45px 0;
    margin-top: 50px;
}

.comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px;
}

.comments-area a {
    color: #2a2a2a;
}

.comments-area .comment-list {
    padding-bottom: 48px;
}

.comments-area .comment-list:last-child {
    padding-bottom: 0px;
}

.comments-area .comment-list.left-padding {
    padding-left: 25px;
}

.comments-area .comment-list .single-comment {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
}

.comments-area .comment-list .single-comment:not(:last-child) {
    border-bottom: 1px solid #e2e9e1;
}

.comments-area .thumb {
    margin-right: 20px;
}

.comments-area .thumb img {
    width: 70px;
    border-radius: 50%;
}

.comments-area .date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 0;
    margin-left: 20px;
}

.comments-area .comment {
    margin-bottom: 10px;
    color: #777777;
    font-size: 15px;
}

.comments-area .btn-reply {
    background-color: transparent;
    color: #888888;
    padding: 5px 18px;
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.comments-area.style-2 {
    border: 0;
    margin-top: 0;
    padding: 25px 0;
}

.comments-area h4 {
    margin-bottom: 35px;
    color: #2a2a2a;
    font-size: 18px;
}

.comment-form .email {
    padding-right: 0px;
}

.form-control {
    border: 1px solid #f0e9ff;
    border-radius: 5px;
    height: 48px;
    padding-left: 18px;
    font-size: 14px;
    background: transparent;
}


.form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    font-weight: 300;
    color: #999999;
    color: #777777;
}

.form-control:-ms-input-placeholder {
    font-weight: 300;
    color: #999999;
    color: #777777;
}

.form-control::-ms-input-placeholder {
    font-weight: 300;
    color: #999999;
    color: #777777;
}

.form-control::placeholder {
    font-weight: 300;
    color: #999999;
    color: #777777;
}

.nice-select .list {
    width: 100%;
}

.button-contactForm {
    background: #507468;
    color: #fff;
    border-color: #507468;
    padding: 12px 25px;
}

.search-form form {
    position: relative;
}

.search-form form input {
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-form form button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    border: none;
    font-size: 14px;
    height: 100%;
    padding: 0 14px;
    background-color: transparent;
    color: #242424;
}

/*COMPONENTS -> SLIDER*/

.single-animation-wrap.slick-active .slider-animated-1 h1 {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h2 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h3 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h4 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 span {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 p {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 a.btn {
    -webkit-animation-delay: 2.0s;
    animation-delay: 2.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1.slider-product-price {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.single-animation-wrap.slick-active .slider-animated-1 .single-slider-img img {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap,
.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap-2 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.hero-slider-1 {
    height: 500px;
}

/*.hero-slider-1 img {
    max-height: 500px;
}*/

.hero-slider-1 .single-slider-img-1 {
    height: 500px;
    position: relative;
}

.hero-slider-1 .single-slider-img-1 .slider-1-1 {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-2 {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-3 {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.hero-slider-1.style-2 {
    height: 490px;
}

.hero-slider-1.style-2 .slider-1-height-2 {
    height: 490px;
    position: relative;
}

.hero-slider-1.style-2 .hero-slider-content-2 {
    padding-left: 300px;
    padding-top: 100px;
}

.hero-slider-1.style-2 .single-slider-img {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 80px;
}

.hero-slider-1.style-2 .single-slider-img img {
    max-width: 550px;
}

.hero-slider-1.style-2.dot-style-1.dot-style-1-position-1 ul {
    bottom: 30px;
}

.hero-slider-1.style-3 {
    position: relative;
    height: unset;
}

.hero-slider-1.style-3 img {
    max-height: 620px;
}

.hero-slider-1.style-3 .slider-1-height-3 {
    height: 542px;
}

.hero-slider-1.style-3 .slider-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hero-slider-1.style-3 .hero-slider-content-2 {
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    padding-left: 60px;
}

.hero-slider-1.style-3 .hero-slider-content-2 h1 {
    font-size: 50px;
}

.hero-slider-1.style-3 .hero-slider-content-2 h2 {
    font-size: 38px;
    line-height: 1.2;
}

.hero-slider-1.style-3 .hero-slider-content-2 h4 {
    font-size: 18px;
    margin: 0 0 7px 0;
}

.hero-slider-1.style-3 .hero-slider-content-2 p {
    font-size: 14px;
}

.hero-slider-1.style-3 .hero-slider-content-2 .btn-default {
    color: #fff;
    background-color: #ffb300;
    border-radius: 50px;
    padding: 10px 19px;
    font-size: 13px;
}

.hero-slider-1.style-3.dot-style-1.dot-style-1-position-1 ul {
    bottom: 10px;
}

.hero-slider-1.style-4.dot-style-1.dot-style-1-position-1 ul {
    bottom: 10px;
}

.hero-slider-content-2 h1 {
    font-size: 58px;
    line-height: 64px;
    margin: 0 0 0px;
}

.hero-slider-content-2 h2 {
    font-size: 46px;
    line-height: 54px;
    margin: 0 0 10px 0px;
}

.hero-slider-content-2 h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1;
}

.hero-slider-content-2 h4 {
    font-size: 24px;
    margin: 0 0 18px;
}

.hero-slider-content-2 p {
    font-size: 18px;
    line-height: 36px;
    margin: 7px 0 22px;
    width: 74%;
}

.hero-slider-content-2 span {
    display: block;
    font-size: 15px;
    line-height: 1;
}

.single-slider-img {
    position: relative;
}

.dot-style-1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dot-style-1 ul li {
    margin: 0 3px;
}

.dot-style-1 ul li button {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    border: 1px solid;
    padding: 0;
    font-size: 0px;
    border-color: #c1c1c1;
    background: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.dot-style-1 ul li button:hover {
    background: #c1c1c1;
}

.dot-style-1 ul li.slick-active button {
    background: #507468;
    border-color: #507468;
}

.dot-style-1.dot-style-1-position-1 ul {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -15px;
}

.dot-style-1.dot-style-1-center ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dot-style-1.dot-style-1-mt1 ul {
    margin-top: 30px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.slider-arrow .slider-btn {
    cursor: pointer;
    background: #e8f6ea;
    width: 45px;
    height: 45px;
    position: absolute;
    display: block;
    z-index: 100;
    border-radius: 50%;
    border: 1px solid #cce7d0;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-align: center;
    line-height: 45px;
    font-size: 14px;
    color: #507468;
}

.slider-arrow .slider-btn.slider-prev {
    left: 20px;
}

.slider-arrow .slider-btn.slider-prev i {
    margin-right: 2px;
}

.slider-arrow .slider-btn.slider-next {
    right: 20px;
}

.slider-arrow .slider-btn.slider-next i {
    margin-left: 2px;
}

.slider-arrow .slider-btn:hover {
    background-color: #507468;
    color: #fff;
    border-color: #507468;
}

.slider-arrow.slider-arrow-2 .slider-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
}

.slider-arrow.slider-arrow-3 .slider-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    margin-top: -15px;
}

.slider-arrow.style-3 .slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #dcdeed;
    line-height: 40px;
    font-size: 12px;
    margin-top: -20px;
}

.home-slide-cover {
    position: relative;
    padding: 0 30px;
}

.home-slide-cover .slider-arrow {
    left: 0;
}

.home-slide-cover .hero-slider-content-2 {
    padding-left: 50px;
}

/*Carausel*/

.carausel-6-columns-cover .carausel-6-columns {
    overflow: hidden;
    margin: 0 -12px;
}

.carausel-6-columns-cover .carausel-6-columns .card-1 {
    margin-right: 12px;
    margin-left: 12px;
}

.carausel-6-columns-cover .product-img {
    border: 1px solid #cce7d0;
}

.carausel-6-columns-cover .slider-arrow {
    top: -50px;
}

.carausel-6-columns-cover .slider-arrow .slider-btn.slider-next {
    right: 0;
}

.carausel-6-columns-cover .slider-arrow .slider-btn.slider-prev {
    right: 40px;
    left: unset;
}

.carausel-6-columns-cover.arrow-center .slider-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -50px;
}

.carausel-6-columns-cover.arrow-center .slider-arrow .slider-btn.slider-next {
    right: -30px;
}

.carausel-6-columns-cover.arrow-center .slider-arrow .slider-btn.slider-prev {
    left: -30px;
}

.carausel-6-columns-cover.arrow-center .slider-arrow.slider-arrow-3 {
    margin-top: 0;
}

.carausel-4-columns-cover .carausel-4-columns {
    overflow: hidden;
    margin: 0 -12px;
}

.carausel-4-columns-cover .carausel-4-columns .product-cart-wrap {
    margin-right: 12px;
    margin-left: 12px;
}

.carausel-4-columns-cover .carausel-4-columns-arrow {
    margin-top: -100px;
}

.bg-grey-10 {
    background-color: #d0f3ec;
}

/*.home-slider {
    background-image: url(../imgs/theme/hero-mask-bg-1.png);
    background-size: cover;
}*/
.hero-slider-1 img{
    width: 100%;
    height: 600px;
}
.home-slider .slider-arrow {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.home-slider:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

/*COMPONENTS -> CARD*/

.card-1 {
    position: relative;
    background: #fff;
    text-align: center;
    border: 1px solid #cce7d0;
    border-radius: 20px;
}

.card-1 figure {
    overflow: hidden;
    margin: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-1 figure img {
    border-radius: 10px;
}

.card-1 h5 {
    margin: 20px 0;
}

.card-1 h5 a {
    color: #4f5d77;
}

.card-1:hover a {
    color: #507468;
}

.hero-card {
    width: 100%;
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.hero-card:hover {
    border: 1px solid #507468;
}

.hero-card .hero-card-icon {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero-card .hero-card-icon.icon-left {
    width: 135px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.hero-card .hero-card-icon.icon-left-2 {
    width: 265px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.hero-card .hero-card-icon i {
    font-size: 25px;
    color: #6143f7;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e2e9e1;
    border-radius: .25rem;
}

.card .card-header {
    padding: 1rem;
    margin-bottom: 0;
    background-color: #f7f8f9;
    border-bottom: 1px solid #e2e9e1;
}

.border-radius {
    border-radius: 4px;
}

/*COMPONENTS -> TABS*/

.nav-tabs {
    margin-bottom: 25px;
    border: 0;
}

.nav-tabs .nav-link {
    background-color: #eeeeee;
    font-size: 15px;
    margin: 0 10px;
    margin-left: 10px;
    color: #444;
    border-radius: 4px;
    padding: 15px 24px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 0;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    
    font-weight: 600;
    line-height: 1;
}

.nav-tabs .nav-link.active {
    color: #507468;
    background-color: #fde1bd;
}

.nav-tabs .nav-link:hover {
    color: #507468;
    background-color: #fde1bd;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.nav-tabs .nav-link:first-child {
    margin-left: 0 !important;
}

.nav-tabs.no-border {
    border: none;
}

.nav-tabs.right .nav-item:last-child .nav-link {
    margin-right: 0;
}

.nav.right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.dashboard-menu {
    border: 1px solid #e2e9e1;
    border-radius: 5px;
    overflow: hidden;
}

.dashboard-menu ul {
    padding: 0;
    margin: 0;
}

.dashboard-menu ul li {
    position: relative;
}

.dashboard-menu ul li a {
    font-size: 14px;
    color: #242424;
    padding: 15px 30px;
}

.dashboard-menu ul li a i {
    color: #90908e;
    font-size: 12px;
}

.dashboard-menu ul li a.active {
    color: #fff;
    background-color: #507468;
}

.dashboard-menu ul li a.active i {
    color: #fff;
}

.dashboard-menu ul li:not(:last-child) {
    border-bottom: 1px solid #e2e9e1;
}

.tab-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tab-header .view-more {
    
    font-size: 13px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid #cce7d0;
    margin-bottom: 20px;
}

.tab-header .view-more i {
    margin-left: 5px;
    margin-top: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.tab-header .view-more:hover i {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/*COMPONENTS -> MISC*/

/*Countdown*/

.deals-countdown .countdown-section {
    position: relative;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    padding: 20px 5px 15px 5px;
    margin-left: .8rem;
    margin-right: .8rem;
    background-color: #507468;
    border-radius: 4px;
    border: none;
    margin-bottom: 2rem;
}

.deals-countdown .countdown-section .countdown-amount {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.deals-countdown .countdown-section .countdown-period {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -20px;
    display: block;
    font-weight: 400;
    color: #90908e;
    text-transform: uppercase;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deals-countdown .countdown-section:not(:last-child)::after {
    color: #1a1a1a;
    content: ':';
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    left: 100%;
    margin-left: 12px;
    margin-top: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.img-grey-hover {
    opacity: .5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.img-grey-hover:hover {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.brand-logo img {
    width: auto;
    display: inline-block;
    padding: 10px 0;
}

/*Heading tab*/

.heading-tab {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*page loading*/

.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: .6s;
    transition: .6s;
    margin: 0 auto;
}

.preloader img.jump {
    max-height: 100px;
}

/*custom amine*/

.loader,
.bar {
    width: 100px;
    height: 20px;
}

.bar {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: #507468;
    opacity: 0;
    border-radius: 10px;
    -webkit-animation: slideleft 3s ease-in-out infinite;
    animation: slideleft 3s ease-in-out infinite;
}

.bar1::before {
    -webkit-animation-delay: 0.00s;
    animation-delay: 0.00s;
}

.bar1::after {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.bar2::before {
    -webkit-animation-delay: 0.60s;
    animation-delay: 0.60s;
}

.bar2::after {
    -webkit-animation-delay: 0.90s;
    animation-delay: 0.90s;
}

.bar3::before {
    -webkit-animation-delay: 1.20s;
    animation-delay: 1.20s;
}

.bar3::after {
    -webkit-animation-delay: 1.50s;
    animation-delay: 1.50s;
}

/*page header*/

.page-header .page-title {
    font-weight: 900;
    font-size: 4rem;
}

.page-header.breadcrumb-wrap {
    padding: 20px;
    background-color: #f7f8f9;
}

.page-header .breadcrumb {
    display: inline-block;
    padding: 0;
    text-transform: capitalize;
    color: #6e6e6e;
    font-size: 0.875rem;
    background: none;
    margin: 0;
    border-radius: 0;
}

.page-header .breadcrumb span {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.page-header .breadcrumb span::before {
    content: "\f111";
    font-family: "uicons-regular-straight" !important;
    display: inline-block;
    font-size: 9px;
}

/*****************************
*********  SOCIAL NETWORKS  **********
******************************/

.text-center.social-icons ul {
    display: inline-block;
}

.social-icons li {
    float: left;
    list-style: none;
    font-size: 16px;
      padding-right: 8px;
}

.social-icons li a {
    float: left;
    font-size: 16px;
    text-align: center;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    border: 0;
    background: 0 0;
    color: #333;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.dark .social-icons li a {
    color: #fff;
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
    color: #fff !important;
    border: 0;
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover,
.social-icons.social-icons-colored .social-snapchat a,
.social-icons.social-icons-colored-hover .social-snapchat a:hover {
    background-color: #faa33d;
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
    background-color: #5d82d1;
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
    background-color: #40bff5;
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
    background-color: #35c6ea;
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
    background-color: #008dde;
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
    background-color: #ef4e41;
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
    background-color: #e53d00;
}

.social-icons.social-icons-colored .social-gplus a,
.social-icons.social-icons-colored-hover .social-gplus a:hover {
    background-color: #d68400;
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
    background-color: #ff5c30;
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
    background-color: #f34320;
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
    background-color: #e13138;
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
    background-color: #eb5e4c;
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
    background-color: #9acf4f;
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
    background-color: #f7659c;
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
    background-color: #13c1f3;
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
    background-color: #45ad76;
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
    background-color: #238cc8;
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
    background-color: #2592c3;
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
    background-color: #ffb21d;
}

.social-icons.social-icons-colored .social-delicious a,
.social-icons.social-icons-colored-hover .social-delicious a:hover {
    background-color: #377bda;
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
    background-color: #1879fd;
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
    background-color: #17a3eb;
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
    background-color: #ff7e30;
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
    background-color: #6a8a7b;
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
    background-color: #ab47ac;
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
    background-color: #ff48a3;
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
    background-color: #75788d;
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
    background-color: #ff9233;
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
    background-color: #426d9b;
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
    background-color: #ea3d23;
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
    background-color: #3f91cb;
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
    background-color: #ff8e2e;
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
    background-color: #1a8e8c;
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
    background-color: #b3b5b8;
}

.social-icons.social-icons-border li a {
    border: 1px solid #d7d7d7;
    background: 0 0;
    color: #333;
}

.dark .social-icons.social-icons-border li a {
    border: 1px solid #333 !important;
}

.dark .social-icons li a .social-icons.social-icons-dark li a {
    background: #888;
    color: #fff;
}

.social-icons.social-icons-light li a {
    background: #fff;
    color: #333;
    border: 1px solid #e2e9e1;
}

.social-icons.social-icons-rounded li a {
    border-radius: 50%;
}

.social-icons.social-icons-square li a {
    border-radius: 0;
}

.social-icons.social-icons-xs li a {
    height: 20px;
    width: 20px;
    line-height: 20px;
    font-size: 12px;
}

.social-icons.social-icons-sm li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 13px;
}

.social-icons.social-icons-md li a {
    height: 38px;
    width: 38px;
    line-height: 38px;
    font-size: 16px;
}

.social-icons.social-icons-lg li a {
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 18px;
}

.social-icons.social-icons-xl li a {
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 18px;
}

.dark .social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
    background-color: #1f1f1f;
}

.social-icons li:hover i {
    -webkit-animation: toTopFromBottom .2s forwards;
    animation: toTopFromBottom .2s forwards;
}

/*Map*/

.leaflet-map {
    height: 350px;
    width: 100%;
}

/*table*/

table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    vertical-align: middle;
}

table td,
table th {
    padding: 10px 20px;
    border: 1px solid #e2e9e1;
    vertical-align: middle;
}

table thead>tr>th {
    vertical-align: middle;
    border-bottom: 0;
}

table p {
    margin-bottom: 0;
}

table.clean td,
table.clean th {
    border: 0;
    border-top: 1px solid #e2e9e1;
}

table .product-thumbnail img {
    max-width: 80px !important;
}

/*divider*/

.divider {
    position: relative;
    overflow: hidden;
    height: 4px;
    z-index: 9;
}

.divider.center_icon {
    text-align: center;
    height: auto;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 0;
    border-top: 1px solid #e2e9e1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.divider::before {
    margin-top: -1px;
}

.divider::after {
    margin-top: 1px;
}

.divider i {
    background-color: #fff;
    color: #aaa;
    position: relative;
    z-index: 1;
    font-size: 20px;
    padding: 0 20px;
    line-height: 1;
}

.bg-square {
    position: absolute;
    left: auto;
    top: 150px;
    right: 0%;
    bottom: auto;
    width: 100%;
    height: 100%;
    max-height: 70%;
    max-width: 45%;
    min-width: 300px;
    background-color: #f3fbf5;
    z-index: -1;
    max-height: 1200px;
}

.mobile-promotion {
    display: none;
}

.bg-green {
    background-color: #cee8e0;
}

/*modal*/

.custom-modal .modal-dialog {
    max-width: 800px !important;
    border-radius: 0px;
    overflow: hidden;
    border: 0;
    margin: auto;
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.custom-modal .modal-dialog .modal-content {
    border-radius: 0;
    padding: 0;
}

.custom-modal .modal-dialog .btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
}

/*COMPONENTS -> BANNERS*/

.banner-left-icon {
    position: relative;
    background: #fff;
}

.banner-left-icon:hover .banner-icon {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.banner-left-icon .banner-icon {
    max-width: 60px;
    margin-right: 20px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.banner-left-icon .banner-text h3 {
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-left-icon .banner-text p {
    margin-bottom: 0;
    color: #90908e;
}

.banner-left-icon.style-2 {
    position: relative;
    border: 1px solid #e2e9e1;
    padding: 20px;
}

.banner-img {
    position: relative;
    clear: both;
}

.banner-img:hover img {
    opacity: 0.9;
}

.banner-img.banner-1 .banner-text {
    top: 30%;
}

.banner-img.banner-1.home-3 {
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 348px;
}

.banner-img.banner-2 .banner-text {
    right: 10px;
}

.banner-img .banner-text {
    position: absolute;
    top: 50%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px 30px;
}

.banner-img .banner-text span {
    color: #90908e;
}

.banner-img .banner-text h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-img .banner-text:hover h4 {
    margin-left: 5px;
}

.banner-img .banner-text a i {
    margin-left: 5px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 10px;
}

.banner-img .banner-text a:hover i {
    margin-left: 10px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.banner-img.style-2 {
    border: 1px solid #e2e9e1;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 338px;
}

.banner-img.style-2 h4 {
    color: #fff;
}

.banner-big .btn {
    background: #507468 !important;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    padding: 10px 22px;
    border: 0;
}

.banner-big .btn:hover {
    background: #046963 !important;
}

/*Deal banners*/

.deal {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 50px;
    background-color: #f5f6f9;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 420px;
}

.deal>div {
    width: 100%;
}

.deal h2 {
    color: #ff3551;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.deal h5 {
    color: #242424;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 20px;
    max-width: 240px;
}

.deal .deal-content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.deal .product-title {
    max-width: 240px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.23;
}

.deal .product-title a {
    color: #1a1a1a;
}

.deal .product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ff3551;
}

.deal .product-price .new-price {
    font-weight: 400;
    letter-spacing: -.01em;
    margin-right: 10px;
}

.deal .product-price .old-price {
    color: #cccccc;
    text-decoration: line-through;
}

.deal .btn {
    background: none;
    border: 2px solid #507468;
    color: #507468;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 24px;
}

.deal .btn i {
    margin-left: 5px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 12px;
}

.deal .btn:hover i {
    margin-left: 10px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.deal .deal-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
    margin-left: -12px;
    margin-bottom: 20px;
}

.banner-bg {
    background-position: center;
    background-size: cover;
    padding: 50px;
}

.banner-features {
    text-align: center;
    padding: 25px 15px;
    border-radius: 4px;
    /*border: 1px solid #cce7d0;
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);*/
}
.banner-features img{
    filter: grayscale(100%);
}
.banner-features:hover img{
    filter: grayscale(0);
}
.banner-features:hover {
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}

.banner-features img {
    display: block;
    text-align: center;
    margin: 0px auto 15px;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
}

.banner-features h4 {
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 12px 15px;
    line-height: 1;
    border-radius: 4px;
    color: #1d2020;
}
.features-outer {
    position: relative;
    background: #ffffff;
    z-index: 1;
}

.feature-block-two {
    position: relative;
    margin-bottom: 30px;
}
.feature-block-two .inner {
    position: relative;
    text-align: center;
}
.feature-block-two .inner:before {
    position: absolute;
    right: -15px;
    top: 50%;
    margin-top: -50px;
    height: 100px;
    border-right: 1px solid #e4e1d5;
    content: "";
}
.feature-block-two .inner:hover img{
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}
.feature-block-two:last-child .inner:before {
    display: none;
}
.feature-block-two .inner img{
    width:80px;
    height:80px;
    filter: grayscale(100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.feature-block-two .inner:hover img{
    filter: grayscale(0%);
}
.feature-block-two h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #AC6C53;
    font-weight: 600;
    padding-top:10px;
}

/*Page > About*/

.hero-2 {
    padding: 100px 0 100px;
    min-height: 550px;
}

.parallax-wrapper {
    position: absolute;
    z-index: 3;
    width: 100%;
}

.parallax-wrapper .parallax-img-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.parallax-wrapper .parallax-img-area .parallax-img {
    position: absolute;
    z-index: 2;
    text-align: right;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-1 {
    right: 0;
    width: 52%;
    z-index: 2;
    top: 100px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-2 {
    right: 220px;
    width: 52%;
    top: 40px;
    z-index: 3;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-3 {
    opacity: 0.1 !important;
    left: -210px;
    width: 320px;
    top: 193px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-4 {
    opacity: 0.08 !important;
    width: 180px;
    left: 50%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-5 {
    right: 0;
    width: 12%;
    z-index: 2;
    opacity: 0.3;
    bottom: 20%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-6 {
    width: 25%;
    z-index: 3;
    opacity: 0.2;
    bottom: 0;
    left: -150px;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-7 {
    opacity: 0.2 !important;
    width: 16%;
    top: 10%;
    left: 10%;
}

.parallax-wrapper .parallax-img-area .parallax-img.img-8 {
    opacity: 0.2 !important;
    width: 10%;
    bottom: 40%;
    left: 50%;
}

.hero-content {
    position: absolute;
    z-index: 4;
    width: 100%;
}

.hero-content h1 {
    line-height: 1.1;
}

.about-count {
    z-index: 100;
    position: relative;
    margin-bottom: -100px;
}

.about-count .achievements-grid {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column-gap: 80px;
    -ms-grid-columns: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.about-count .w-layout-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}

.about-count .achievement-wrapper {
    text-align: center;
}

.about-count .achievement-number {
    margin-bottom: 8px;
    color: #1f2559;
    font-size: 3rem;
    line-height: 1.042em;
    font-weight: 800;
}

.about-count .achievement-text {
    max-width: 110px;
    margin: 0 auto;
}

.hero-card-icon {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero-card-icon.icon-left {
    width: 165px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.single-content>ol {
    list-style-type: decimal;
    margin-bottom: 30px;
    padding-left: 1em;
}

.single-content>ol li:not(:last-child) {
    margin-bottom: 16px;
}

.single-content>ol ol {
    list-style-type: lower-alpha;
    margin: 20px 0 30px;
    padding-left: 25px;
}

.single-content>ol ol ol {
    list-style-type: lower-roman;
}

/*page 404*/

.page-404 {
    background-color: #fff;
}

.page-404 img {
    max-width: 300px;
}

.page-404 img.logo {
    max-width: 150px;
}

/*SHOP*/

.product-cart-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    overflow: hidden;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
}

.product-cart-wrap:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.product-cart-wrap .product-img-action-wrap {
    position: relative;
    background-color: #fff;
    padding: 10px 12px;
    overflow: hidden;
    max-height: 320px;
}

.product-cart-wrap .product-img-action-wrap .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.product-cart-wrap .product-img-action-wrap .product-img a {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
    width: 100%;
    border-radius: 10px;
}

.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.product-cart-wrap .product-action-1 {
    position: absolute;
    right: 2%;
    bottom: 2%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    /*opacity: 0;
    visibility: hidden;*/
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    z-index: 9;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before{
    font-size: 25px;
}
.product-action-1 .tinvwl_add_to_wishlist-text{
    display: none;
}


.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list::before {
  content: "\e908";
}
.product-cart-wrap .product-action-1.show {
    visibility: visible;
    opacity: 1;
    bottom: 26px;
    left: unset;
    right: 20px;
    bottom: 15px;
    top: unset;
    -webkit-transform: none;
    transform: none;
}

.product-cart-wrap .product-action-1 button,
.product-cart-wrap .product-action-1 a.action-btn {
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 50px;
    background-color: #e8f6ea;
    text-align: center;
    margin-right: 3px;
    position: relative;
    display: inline-block;
    border: 1px solid #cce7d0;
}

.product-cart-wrap .product-action-1 button.small,
.product-cart-wrap .product-action-1 a.action-btn.small {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.product-cart-wrap .product-action-1 button.small i,
.product-cart-wrap .product-action-1 a.action-btn.small i {
    font-size: 12px;
}

.product-cart-wrap .product-action-1 button:after,
.product-cart-wrap .product-action-1 a.action-btn:after {
    bottom: 100%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #ffffff;
    background-color: #507468;
    content: attr(aria-label);
    line-height: 1.3;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
}

.product-cart-wrap .product-action-1 button:before,
.product-cart-wrap .product-action-1 a.action-btn:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    border: 7px solid transparent;
    border-top-color: #507468;
    z-index: 9;
    margin-bottom: -13px;
    transition-delay: .1s;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
}

.product-cart-wrap .product-action-1 button:last-child,
.product-cart-wrap .product-action-1 a.action-btn:last-child {
    margin-right: 0;
}

.product-cart-wrap .product-action-1 button i,
.product-cart-wrap .product-action-1 a.action-btn i {
    font-size: 15px;
    margin-left: 1px;
}

.product-cart-wrap .product-action-1 button:hover,
.product-cart-wrap .product-action-1 a.action-btn:hover {
    background-color: #507468;
    border: 1px solid transparent;
}

.product-cart-wrap .product-action-1 button:hover:after,
.product-cart-wrap .product-action-1 a.action-btn:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover:before,
.product-cart-wrap .product-action-1 a.action-btn:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover i,
.product-cart-wrap .product-action-1 a.action-btn:hover i {
    color: #fff;
}

.product-cart-wrap .product-badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-badges.product-badges-mrg {
    margin: 0 0 10px;
}

.product-cart-wrap .product-badges.product-badges-position {
    position: absolute;
    left: 20px;
    top: 19px;
    z-index: 9;
}

.product-cart-wrap .product-badges span {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    border-radius: 40px;
    color: #fff;
    padding: 5px 10px;
}

.product-cart-wrap .product-badges span:last-child {
    margin-right: 0px;
}

.product-cart-wrap .product-badges span.hot {
    background-color: #ff75a0;
}

.product-cart-wrap .product-badges span.new {
    background-color: #99bbad;
}

.product-cart-wrap .product-badges span.sale {
    background-color: #a1cae2;
}

.product-cart-wrap .product-badges span.best {
    background-color: #ffab73;
}

.product-cart-wrap .product-content-wrap {
    padding: 0 20px 15px 20px;
}

.product-cart-wrap .product-content-wrap .product-category {
    margin-bottom: 5px;
}

.product-cart-wrap .product-content-wrap .product-category a {
    color: #AC6C53;
    font-size: 12px;
}

.product-cart-wrap .product-content-wrap .product-category a:hover {
    color: #507468;
}

.product-cart-wrap .product-content-wrap h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-cart-wrap .product-content-wrap h2 a {
    color: #1a1a1a;
}

.product-cart-wrap .product-content-wrap h2 a:hover {
    color: #507468;
}

.product-cart-wrap .product-content-wrap .product-price {
    padding-top: 5px;
}

.product-cart-wrap .product-content-wrap .product-price span {
    font-size: 18px;
    font-weight: bold;
    color: #507468;
}

.product-cart-wrap .product-content-wrap .product-price span.new-price {
    color: #507468;
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 14px;
    font-weight: 400;
    color: #90908e;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.product-cart-wrap .product-content-wrap .rating-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-content-wrap .rating-result>span {
    display: block;
    overflow: hidden;
    margin-left: 5px;
}

.product-cart-wrap .product-content-wrap .rating-result::before {
    font-family: "uicons-regular-straight" !important;
    font-size: 11px;
    letter-spacing: 2px;
    content: '\f225' '\f225' '\f225' '\f225' '\f225';
    color: #ffb300;
}

.product-cart-wrap .product-content-wrap .add-to-cart {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 5px;
    background-color: #f5f5f5;
    text-align: center;
    display: block;
    color: #1a1a1a;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    font-weight: 300;
}

.product-cart-wrap .product-content-wrap .add-to-cart:hover {
    background-color: #507468;
    color: #fff;
}

.product-cart-wrap .product-content-wrap .add-to-cart img {
    width: 20px;
    display: inline-block;
    margin-top: 11px;
}

.product-cart-wrap .product-stock .status-bar {
    background-color: #ededed;
    margin: 0px 0 10px;
    border-radius: 5px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar {
    background-image: linear-gradient(235deg, #507468 0%, #77ccfd 100%);
    border-radius: 4px;
    height: 8px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
    width: 33.333333333333%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
    width: 10%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
    width: 40%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
    width: 6.6666666666667%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
    width: 42.857142857143%;
}

.product-cart-wrap .product-stock .product-stock-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-cart-wrap .product-stock .product-stock-status .sold {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 20px;
}

.product-cart-wrap .product-stock .product-stock-status .available {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span {
    font-size: 15px;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.label {
    color: #1a1a1a;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.value {
    font-weight: 700;
    color: #333;
}

.product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
    opacity: 1;
    visibility: visible;
}

.product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
    opacity: 1;
    visibility: visible;
}

.product-cart-wrap:hover .product-img-zoom a img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}

.product-cart-wrap.small {
    border: 0;
    text-align: center;
}

.product-cart-wrap.small .rating-result {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-cart-wrap.small .product-content-wrap {
    padding: 5px 15px 0 15px;
}

.product-cart-wrap.small .product-price {
    padding-top: 0;
}

.product-cart-wrap.small:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-cart-wrap.small h2 {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
}

.product-cart-wrap.small .product-badges span {
    font-size: 10px;
}

.product-list-small article:not(:last-child) {
    margin-bottom: 20px;
}

.product-list-small .title-small {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-list-small .title-small a {
    color: #1a1a1a;
}

.product-list-small .product-price {
    color: #507468;
    font-size: 16px;
    font-weight: 500;
}

.product-list-small .product-price span.old-price {
    font-size: 14px;
    font-weight: 400;
    color: #90908e;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.range .list-group-item {
    position: relative;
    display: block;
    padding: 0;
    background: none;
    border: 0;
}

.range .checkbox {
    font-size: 0.8em;
}

.range .price-filter {
    display: block;
    margin-top: 20px;
}

.range #slider-range {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: 4px;
    border-radius: 0px;
    background: #507468;
    color: #507468;
}

.range #slider-range .ui-slider-range {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #222;
    border-radius: 0px;
    border: none;
}

.range .ui-slider-handle.ui-state-default.ui-corner-all {
    width: 14px;
    height: 14px;
    line-height: 10px;
    background: #507468;
    border: none;
    border-radius: 100%;
    top: -5px;
}

.range .label-input {
    margin-top: 15px;
}

.range .label-input span {
    margin-right: 5px;
    color: #282828;
}

.range .label-input input {
    border: none;
    margin: 0;
    height: unset;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    padding-left: 0;
}

.range .check-box-list {
    margin-top: 15px;
}

.range .check-box-list li {
    margin-bottom: 5px;
}

.range .check-box-list li:last-child {
    margin: 0;
}

.range .check-box-list li label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
}

.range .check-box-list li label input {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.range .check-box-list .count {
    margin-left: 5px;
    color: #666;
}

.btn.btn-small {
    line-height: 1;
    padding: 10px 15px;
    min-width: unset;
    display: table;
    border-radius: 3px;
}

.product-sidebar .single-post {
    position: relative;
}

.product-sidebar .single-post:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
}

.product-sidebar .single-post .content {
    padding-left: 95px;
}

.product-sidebar .single-post i {
    font-size: 12px;
}

.product-sidebar .image {
    height: 80px;
    width: 80px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
}

.shop-product-fillter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 30px;
}

.shop-product-fillter.style-2 {
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e9e1;
}

.shop-product-fillter .sort-by-product-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shop-product-fillter .sort-by-product-area .sort-by-cover {
    position: relative;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f7f8f9;
    border: 1px solid #f7f8f9;
    color: #777;
    padding: 9px 16px;
    border-radius: 26px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
    border: 1px solid #e2e9e1;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by {
    margin-right: 5px;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by i {
    margin-right: 10px;
    font-size: 14px;
    color: #ababab;
    position: relative;
    top: 2px;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by span {
    font-size: 13px;
    font-weight: 500;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span {
    font-size: 13px;
    font-weight: 500;
    color: #4f5d77;
}

.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span i {
    font-size: 15px;
    color: #4f5d77;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.sort-by-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    right: 0;
    padding: 16px 0 21px;
    background: #fff;
    border: 0;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    min-width: 100%;
    -webkit-box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
    box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
    color: #4f5d77;
    font-weight: 500;
}

.sort-by-dropdown.show {
    opacity: 1;
    visibility: visible;
}

.sort-by-dropdown ul li {
    display: block;
}

.sort-by-dropdown ul li a {
    font-weight: 500;
    font-size: 13px;
    padding: 5px 30px;
    display: block;
    position: relative;
    color: #4f5d77;
}

.sort-by-dropdown ul li a.active::before {
    content: "\f143";
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 12px;
    color: #507468;
    font-family: 'uicons-regular-straight' !important;
    font-weight: 900;
}

.sort-by-dropdown ul li a.active:hover::before {
    color: #fff;
}

.sort-by-dropdown ul li a:hover {
    background-color: #507468;
    color: #ffffff;
}

/*Product list*/

.product-list {
    position: relative;
}

.product-list .product-cart-wrap {
    border: 0;
    border-radius: 0;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-list .product-cart-wrap:not(:last-child) {
    margin-bottom: 30px;
}

.product-list .product-cart-wrap:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-list .product-cart-wrap:hover .product-img {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.product-list .product-cart-wrap .product-badges.product-badges-position {
    left: 30px;
    top: 28px;
}

.product-list .product-cart-wrap .product-img-action-wrap {
    max-width: 33%;
    position: relative;
}

.product-list .product-cart-wrap .product-img-action-wrap .product-img {
    border: 1px solid #e2e9e1;
    border-radius: 10px;
}

.product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner {
    overflow: hidden;
    padding: 10px;
}

.product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner a img {
    height: auto;
}

.product-list .product-cart-wrap h2 {
    font-size: 22px;
}

.product-list .product-cart-wrap .product-content-wrap .product-action-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    bottom: unset;
    padding: 0 20px;
    margin-top: 20px;
}

.product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn {
    border: none;
    width: auto;
    border-radius: 50px;
    background-color: #507468;
    color: #fff;
    text-align: center;
    margin-right: 0;
    position: relative;
    display: inline-block;
    padding: 0px 23px;
    height: 44px;
    font-weight: 500;
}

.product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn i {
    margin-right: 8px;
    color: #fff;
}

/*PRODUCT DETAILS*/

.detail-gallery {
    position: relative;
}

.detail-gallery .zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.slider-nav-thumbnails .slick-slide {
    opacity: 0.5;
    position: relative;
}

.slider-nav-thumbnails .slick-slide.slick-current {
    opacity: 1;
}

.slider-nav-thumbnails .slick-slide.slick-current::before {
    border-bottom: 5px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -6px;
    width: 0;
}

.slider-nav-thumbnails .slick-slide.slick-current img {
    border: 2px solid #a2d2c9;
}

.slider-nav-thumbnails div.slick-slide {
    margin: 0 3px;
}

.slider-nav-thumbnails button.slick-arrow {
    margin: 0;
}

.slider-nav-thumbnails .slick-prev {
    left: 0;
}

.slider-nav-thumbnails .slick-next {
    right: 0;
}

.slider-nav-thumbnails .slick-prev,
.slider-nav-thumbnails .slick-next {
    font-size: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-rate {
    background-image: url("../imgs/theme/rating-stars.png");
    background-position: 0 -12px;
    background-repeat: repeat-x;
    height: 12px;
    width: 60px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.product-rating {
    height: 12px;
    background-repeat: repeat-x;
    background-image: url("../imgs/theme/rating-stars.png");
    background-position: 0 0;
}

.detail-info .product-price ins {
    font-size: 30px;
    text-decoration: none;
    font-weight: 600;
}

.detail-info .product-price ins span.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
}

.detail-info .product-meta {
    border-top: 1px solid #e2e9e1;
    padding-top: 15px;
}

.list-filter {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-filter li {
    display: inline-block;
}

.list-filter li a {
    color: #555;
    display: block;
    min-width: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.color-filter.list-filter a span {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 40px;
}

.color-filter.list-filter a span.product-color-white {
    border: 1px solid #ddd;
}

.color-filter.list-filter li.active a::before {
    content: "";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: -3px;
    background: #4cd964;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.size-filter.list-filter a {
    border-radius: 4px;
    padding: 0 7px;
    background: #fff;
}

.size-filter.list-filter li a {
    border: 1px solid #e5e5e5;
    color: #555;
    height: 30px;
    line-height: 30px;
    min-width: 30px;
    text-align: center;
    text-transform: uppercase;
}

.size-filter.list-filter li a:hover,
.size-filter.list-filter li.active a {
    color: #fff;
    background-color: #507468;
    border-color: #507468;
}

.detail-qty {
    max-width: 80px !important;
    padding: 9px 20px !important;
    position: relative;
    width: 100%;
    border-radius: 4px;
}

.detail-qty>a {
    font-size: 16px;
    position: absolute;
    right: 8px;
    color: #707070;
}

.detail-qty>a:hover {
    color: #507468;
}

.detail-qty>a.qty-up {
    top: 0;
}

.detail-qty>a.qty-down {
    bottom: 0;
}

.attr-detail .select-box select {
    height: 40px;
    width: 100%;
}

.attr-detail.attr-brand {
    margin-top: 23px;
}

.attr-detail.attr-brand .select-box {
    display: block;
    margin-bottom: 20px;
}

.attr-detail.attr-color table {
    margin-bottom: 15px;
}

.detail-extralink input[type="number"]{
    height: 39px;
}
.detail-extralink {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.detail-qty {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 42px;

    padding: 0 6px;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.detail-qty .qty-down i,
.detail-qty .qty-up i{
    color: #111;
}
.detail-qty .qty-down,
.detail-qty .qty-up {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 36px;

    padding: 0;

    border: 0;
    background-color: inherit !important;
    background: transparent;

    color: #555;

    cursor: pointer;
}

.detail-qty .qty-down:hover,
.detail-qty .qty-up:hover {
    color: #078c83;
}


/* Quantity input */

.detail-qty .qty-val {
    display: block;

    width: 35px !important;
    height: 36px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    text-align: center;

    font-size: 14px;
    color: #333;

    box-shadow: none !important;
    outline: none !important;
}


/* Remove number arrows */

.detail-qty .qty-val::-webkit-inner-spin-button,
.detail-qty .qty-val::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.detail-qty .qty-val {
    -moz-appearance: textfield;
}


/* Add button */

.product-extra-link2 .button-add-to-cart {
    height: 42px;

    padding: 0 20px;

    border: 0;
    border-radius: 3px;

    background: #b36f52;

    color: #fff;

    cursor: pointer;
}

.product-extra-link2 .button-add-to-cart:hover {
    background: var(--color-green) !important;
    background-color: var(--color-green) !important;
}

.product-extra-link2 .button-add-to-cart.loading {
    opacity: .6;
    pointer-events: none;
}
/*.detail-extralink>div {
    display: inline-block;
    vertical-align: top;
}

.detail-extralink .detail-qty {
    margin: 0 6px 15px 0;
    background: #fff;
}
*/
.detail-info .product-price-cover {
    border-top: 1px solid #e2e9e1;
    border-bottom: 1px solid #e2e9e1;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.detail-info .product-price-cover .product-price {
    line-height: 1;
}

.button.button-add-to-cart {
    padding: 8px 30px !important;
    font-size: 14px !important;
}
.button.button-add-to-cart:hover{
    color: #fff !important;
}
.product-extra-link2 a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    color: #333;
    border-radius: 4px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 40px;
    margin: 0 3px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.product-extra-link2 a:hover {
    background-color: #507468;
    color: #fff;
}

.tab-style3 .nav-tabs .nav-item a.active {
    border-bottom-color: #507468;
    color: #507468;
}

.tab-style3 .nav-tabs li.nav-item a {
    background-color: transparent;
    display: block;
    padding: .5rem 1rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
}

.tab-content.shop_info_tab {
    margin-top: 40px;
}

.tab-pane .comments-area {
    padding-top: 0;
    border: 0;
}

.product-color-red {
    background: #ff596d;
}

.product-color-yellow {
    background: #ffdb33;
}

.product-color-white {
    background: #ffffff;
}

.product-color-orange {
    background: #ffbb51;
}

.product-color-cyan {
    background: #80e6ff;
}

.product-color-green {
    background: #38cf46;
}

.product-color-purple {
    background: #ff8ff8;
}

.detail-gallery .slick-slider {
    background-color: #000;
    margin-bottom: 30px;
    border-radius: 10px;
}

.detail-gallery .slick-slider img {
    opacity: 0.96;
}

.detail-gallery .slick-slider.slider-nav-thumbnails {
    background: none;
    border-radius: 0;
}

.detail-gallery .slick-slider button.slick-arrow {
    background: none;
    border: 0;
    padding: 0;
    font-size: 14px;
}

.detail-gallery .slick-slider button.slick-arrow i {
    color: #90908e;
}

.mail-to-friend {
    color: #90908e;
    font-size: 12px;
}

.mail-to-friend i {
    margin-right: 5px;
}

.attr-color,
.attr-size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-detail-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-detail .section-title.style-1 {
    font-size: 22px;
}

.product-more-infor {
    padding: 0 0 0px 14px;
}

.product-more-infor li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px;
    position: relative;
}

.product-more-infor li ::before {
    position: absolute;
    left: -14px;
    top: 9px;
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #9b9b9b;
}

.product-more-infor li span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    display: inline-block;
}

.product-more-infor li:last-child {
    margin: 0 0 0;
}

.progress+.progress {
    margin-top: 1rem;
}

.progress span {
    line-height: 16px;
    background: #fff;
    padding-right: 10px;
    width: 45px;
}

.progress-bar {
    background-color: #507468;
}

.shop-filter-toogle {
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.shop-filter-toogle i {
    margin-left: 5px;
}

.shop-filter-toogle i.angle-down {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.shop-filter-toogle.active i.angle-down {
    opacity: 1;
    visibility: visible;
    display: inline-block;
}

.shop-filter-toogle.active i.angle-up {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.shop-product-fillter-header {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    margin-bottom: 50px;
    padding: 30px;
    -webkit-box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
    box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.shop-product-fillter-header .categor-list li {
    font-size: 12px;
}

.shop-product-fillter-header .categor-list li+li {
    border-top: 1px solid #f7f8f9;
    padding-top: 5px;
    margin-top: 5px;
}

.shop-product-fillter-header .categor-list li a {
    font-size: 14px;
    color: #4f5d77;
    margin-right: 10px;
}

.shop-product-fillter-header .categor-list li a:hover {
    color: #507468;
}

.shop-product-fillter-header .color-filter {
    border-bottom: 1px solid #e2e9e1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.shop-product-fillter-header .product-rate-cover+.product-rate-cover {
    margin-top: 15px;
}

.shopping-summery tbody tr img {
    border-radius: 0;
    max-width: 80px !important;
}

.order_review {
    border: 1px solid #e2e9e1;
    padding: 30px;
    border-radius: 10px;
}

.toggle_info {
    padding: 20px;
    background-color: #f7f8f9;
    border-radius: 10px;
    border: 1px solid #e2e9e1;
}

.login_form .panel-body,
.coupon_form .panel-body {
    border: 1px solid #e2e9e1;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}

.payment_option .custome-radio {
    margin-bottom: 10px;
}

.payment_option .custome-radio .form-check-label {
    color: #292b2c;
    font-weight: 600;
}

.custome-radio .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 16px;
    width: 16px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 8px;
}

.custome-radio input[type="radio"]+.form-check-label::after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 3px;
    opacity: 0;
}

.custome-radio input[type="radio"]:checked+.form-check-label::after {
    opacity: 1;
    background-color: #507468;
}

.related-products .product-img-action-wrap {
    padding: 0;
    margin-bottom: 15px;
}

/*BLOG*/


.single-content {
    text-rendering: optimizeLegibility;
}

.single-content h1 {
    font-size: 56px;
    line-height: 72px;
    margin-bottom: 32px;
}

.single-content h2 {
    font-size: 38px;
    line-height: 64px;
    margin-bottom: 30px;
}

.single-content h3 {
    font-size: 26px;
    line-height: 48px;
    margin-bottom: 28px;
}

.single-content h4 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 26px;
}

.single-content h5 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.single-content h6 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.single-content p {
    margin-bottom: 1.2em;
    font-weight: 400;
}

.single-content ul {
    list-style: circle;
    padding-left: 1rem;
    font-size: 1rem;
}

.single-content ul li {
    position: relative;
    margin-bottom: 7px;
}

.single-content ol li {
    font-size: 1rem;
}

.single-header {
    margin-bottom: 30px;
}

.single-header.style-2 {
    border-bottom: 1px solid #e2e9e1;
    padding-bottom: 10px;
}

.single-header .entry-meta.meta-1 {
    display: block;
}

.single-header .single-header-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-header .single-header-meta .social-icons ul {
    margin-top: 15px;
}

.single-thumbnail {
    margin-bottom: 30px;
}

.single-thumbnail img {
    border-radius: 10px;
    overflow: hidden;
}

.entry-bottom {
    border-top: 1px solid #e2e9e1;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.entry-bottom .social-icons ul {
    margin-top: 15px;
}

/*Entry meta*/

.entry-meta {
    line-height: 1;
}

.entry-meta.meta-2 .author-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.entry-meta.meta-2 .author-name {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.entry-meta.meta-2 a.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.entry-meta .author-add {
    font-size: 12px;
}

.entry-meta.meta-1 span {
    margin-right: 10px;
    color: #AC6C53;
    font-weight: 600;
    font-size: 16px;
}
.entry-content-2 p{
    text-align: justify;
}
.entry-meta.meta-1 a.text-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.entry-meta.meta-1 a.text-brand i {
    margin-left: 5px;
}

.entry-meta.meta-0 span {
    padding: 4px 10px 4px 19px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    position: relative;
    margin-left: -5px;
}

.entry-meta.meta-0 span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: none;
    margin-right: 3px;
    border-radius: 5px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 8px;
    margin-top: -3px;
    border: 1px solid #507468;
}

span.has-dot {
    position: relative;
    padding-left: 10px;
}

span.has-dot::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #999;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    display: block;
    left: -2px;
}

h6.post-title {
    font-size: 14px;
}

.post-title a {
    color: #1a1a1a;
}

.post-title a:hover {
    color: #507468;
}

.post-thumb {
    overflow: hidden;
    position: relative;
}

.post-thumb.border-radius-5 img {
    border-radius: 5px;
}

.post-thumb a {
    line-height: 1;
}

.post-thumb .entry-meta {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.post-thumb .entry-meta a {
    display: inline-block;
    color: #fff !important;
    background-color: #507468;
    border-radius: 4px;
    padding: 8px 15px;
}

/*Loop Grid*/

.loop-grid {
    position: relative;
}

.loop-grid article {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eef1ee;
}

.loop-grid .entry-content {
    padding: 30px;
}

.loop-grid .entry-content-2 {
    padding: 20px;
}

.loop-grid.loop-list {
    position: relative;
}

.loop-grid.loop-list article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loop-grid.loop-list article .post-thumb {
    min-height: 280px;
    min-width: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

.img-hover-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
    overflow: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

.top-right-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    z-index: 3;
    color: #fff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -ms-transition: all 0.4s ease;
}

.entry-meta.meta-1,
.entry-meta.meta-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.entry-meta a.read-more {
    font-size: 12px;
    border-radius: 30px;
    border: 1px solid #abd7ab;
    padding: 10px 15px;
    color: #98ca98;
    font-weight: 600;
    display: inline-block;
}

.single-share img {
    width: 20px;
    opacity: 0.7;
}

.single-share img:hover {
    opacity: 1;
}

/*LAYOUT -> HEADER STYLE*/

/*Header default*/

.header-top-ptb-1 {
    padding: 10px 0;
    border-bottom: 1px solid #e2e9e1;
    background-color: #f2f3f8;
    font-size: 14px;
    line-height: 1;
}

.header-top-ptb-1 #news-flash {
    min-width: 400px;
    font-size: 14px;
    line-height: 10px;
    font-weight: 600;
}

.header-top-ptb-1 #news-flash li {
    min-height: 14px;
}

.header-top-ptb-1 #news-flash i {
    line-height: 6px;
    margin-right: 5px;
}

.header-info-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-info>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-info-right.header-info>ul>li{
    margin-right: 30px;
}
.header-info>ul>li {
    margin-right: 15px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-info>ul>li:before {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #141313;
}

.header-info>ul>li:last-child {
    margin-right: 0;
}

.header-info>ul>li:last-child:before {
    display: none;
}

.header-info>ul>li a {
    color: #1a1a1a;
    font-weight: 500;
}

.header-info>ul>li a i {
    font-size: 14px;
    margin-right: 5px;
}

.header-info>ul>li a.language-dropdown-active i.fa-chevron-down {
    font-size: 8px;
    margin-left: 5px;
}

.header-info>ul>li>ul.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 120px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
    padding: 10px 15px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 1px solid #eef0ee;
}

.header-info>ul>li>ul li {
    display: block;
}

.header-info>ul>li>ul li a {
    display: block;
    color: #696969;
    padding: 5px;
}

.header-info>ul>li>ul li a:hover {
    color: #507468;
    background-color: none;
}

.header-info>ul>li>ul li a img {
    max-width: 15px;
    display: inline-block;
    margin-right: 5px;
}

.header-info>ul>li:hover>a {
    color: #333;
}

.header-info>ul>li:hover>ul.language-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    top: 25px;
}

.header-info i {
    font-size: 12px;
    margin-right: 5px;
    line-height: 6px;
}

/*.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}*/

.header-wrap .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-wrap.header-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-wrap .header-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo.logo-width-1 {
    margin-right: 75px;
        margin-top: 11px;
}

.logo.logo-width-1 a img {
    width: 120px;
    min-width: 120px;
}

.search-style-1 form {
    width: 370px;
    position: relative;
}

.search-style-1 form input {
    font-size: 15px;
    height: 48px;
    color: #1a1a1a;
    border-radius: 26px;
    padding: 3px 50px 3px 20px;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-action .header-action-icon.header-action-mrg-none2 {
    margin-right: 0px;
}

.header-action .header-action-icon:last-child {
    margin-right: 0;
}

.header-action .header-action-icon>a span.pro-count {
    position: absolute;
    right: -11px;
    bottom: -8px;
    color: #ffffff;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
}

.header-action-2 {
    /*margin-top: 21px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-action-2 .header-action-icon-2:last-child {
    padding: 0 0px 0 8px;
}

.header-action-2 .header-action-icon-2>a {
    font-size: 30px;
    color: #333;
    line-height: 1;
    display: inline-block;
    position: relative;
    width: 1em;
}

.header-action-2 .header-action-icon-2>a img {
    width: 100%;
    max-width: 25px;
    opacity: 0.8;
}

.header-action-2 .header-action-icon-2>a span.pro-count {
    position: absolute;
    right: -11px;
    top: -5px;
    color: #ffffff;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    line-height: 18px;
}

.cart-dropdown-wrap ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.cart-dropdown-wrap ul li .shopping-cart-img a {
    display: block;
}

.header-height-2 {
    border-bottom: 1px solid #e2e9e1;
}

.header-height-3 {
    min-height: 132px;
}

.header-height-4 {
    min-height: 120px;
}

.search-popup-wrap.search-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.mobile-header-wrapper-style.sidebar-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
    display: block;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav {
    height: 100%;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .main-categori-wrap a i {
    margin-right: 15px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .main-categori-wrap .categori-dropdown-active-small {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.header-action-right {
    float: right;
}

.search-style-1 {
    margin-right: 28px;
}

.search-style-1 form input::-moz-input-placeholder {
    color: #1a1a1a;
    opacity: 1;
}

.search-style-1 form input::-webkit-input-placeholder {
    color: #1a1a1a;
    opacity: 1;
}

.search-style-1 form input:focus {
    border: 1px solid #507468;
    background-color: #ffffff;
}

.search-style-1 form button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    border: none;
    font-size: 19px;
    height: 100%;
    padding: 0 15px;
    background-color: transparent;
    color: #507468;
}

.search-style-1 form button:hover {
    color: #3f81eb;
}

.header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-action .header-action-icon {
    margin-right: 28px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-action .header-action-icon.header-action-mrg-none {
    margin-right: 13px;
}

.header-action .header-action-icon>a {
    font-size: 24px;
    color: #333;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.header-action .header-action-icon>a span.pro-count.blue {
    background-color: #507468;
}

.header-action .header-action-icon:hover>a {
    color: #507468;
}

.header-action .header-action-icon:hover .cart-dropdown-wrap {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.header-action.header-action-hm3 .header-action-icon.header-action-mrg-none2 {
    margin-right: 0px;
}

.header-action.header-action-hm3 .header-action-icon:last-child {
    margin-right: 0;
}

.header-action-2 .header-action-icon-2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 14px;
}

/*.header-action-2 .header-action-icon-2>a svg {
    width: 1em;
    height: 1em;
}*/

.header-action-2 .header-action-icon-2>a span.pro-count.blue {
    background-color: #507468;
}

.header-action-2 .header-action-icon-2:hover>a {
    color: #507468;
    fill: #507468;
}

.header-action-2 .header-action-icon-2:hover .cart-dropdown-wrap {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.header-middle-ptb-1 {
    padding: 25px 0 0 0;
}
.header-action-2 .header-action-icon-2:hover .cart-dropdown-wrap {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}
.cart-dropdown-wrap {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    width: 320px;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05);
    padding: 30px 20px 27px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 4px;
    border: 1px solid #eef0ee;
}

.cart-dropdown-wrap.cart-dropdown-hm2 {
    right: 0px;
}

.cart-dropdown-wrap ul li:last-child {
    margin: 0 0 0px;
}

.cart-dropdown-wrap ul li .shopping-cart-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 70px;
    margin-right: 10px;
}

.cart-dropdown-wrap ul li .shopping-cart-img a img {
    max-width: 50px !important;
    width: 50px !important;
    height: 60px !important;
}

.cart-dropdown-wrap ul li .shopping-cart-title {
    margin: 0px 0 0;
    display: block;
    align-content: center;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 6px;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a {
    color: #507468;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a:hover {
    color: #1a1a1a;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0px;
    color: #507468;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 span {
    color: #696969;
    font-weight: 400;
    font-size: 15px;
}

.cart-dropdown-wrap ul li .shopping-cart-delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 100;
    -ms-flex-positive: 100;
    flex-grow: 100;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 6px 0 0;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a {
    font-size: 18px;
    color: #696969;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a:hover {
    color: #333;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total {
    border-top: 2px solid #f3f3f3;
    margin: 25px 0;
    padding: 17px 0 0;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 {
    color: var(--color-black);
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 span {
    font-size: 18px;
    color: #507468;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
    display: block;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    line-height: 1;
    padding: 15px 20px;
    background-color: #507468;
    border: 2px solid #507468;
    width: 100%;
    text-align: center;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline {
    background-color: transparent;
    color: #507468;
    border: 2px solid var(--color-green);
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline:hover {
    color: #ffffff;
    border: none !important;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a:hover {
    background-color: #046963;
}

.sticky-bar.stick {
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border-bottom: 2px solid #046963;
    background: #fff;
}

.sticky-bar.stick.sticky-white-bg {
    background-color: #fff;
}

.sticky-bar.stick.sticky-blue-bg {
    background-color: #3286e0;
}

.header-height-1 {
    min-height: 133px;
}

.search-style-2 {
    width: 100%;
}

.search-style-2 form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.search-style-2 form select {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    min-height: 45px;
    border: 1px solid #e2e9e1;
    border-right: none;
    width: 140px;
    padding: 3px 35px 3px 20px;
    border-radius: 4px 0 0 4px;
    background-color: #fff;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.search-style-2 form select:focus {
    color: #333;
}

.search-style-2 form select::after {
    position: absolute;
}

.search-style-2 form input {
    width: 100%;
    max-width: 683px;
    border-radius: 0;
    background-color: #fff;
    border-color: #414648;
    border-width: 0 0 3px 0;
    border-style: solid;
    font-size: 16px;
    background-image: url(../imgs/theme/icons/search.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 35px;
    font-style: italic;
}

.search-style-2 form input::-moz-input-placeholder {
    opacity: 1;
}

.search-style-2 form input::-webkit-input-placeholder {
    opacity: 1;
}

.search-style-2 form input:focus {
    border-color: #414648;
    border-width: 0 0 3px 0;
    border-style: solid;
}

.search-style-2 form button {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0;
    border: none;
    font-size: 20px;
    color: #507468;
    height: 100%;
    padding: 5px 17px;
}

.header-bottom-shadow {
    -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.header-bottom .header-action-right a span.pro-count {
    background-color: #507468;
    color: #fff;
}

.search-style-3 form {
    position: relative;
}

.search-style-3 form input {
    font-size: 15px;
    height: 40px;
    color: #1a1a1a;
    border-radius: 4px;
    padding: 3px 50px 3px 20px;
    border: 1px solid #507468;
    background-color: #ffffff;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.search-style-3 form input::-moz-input-placeholder {
    color: #1a1a1a;
    opacity: 1;
}

.search-style-3 form input::-webkit-input-placeholder {
    color: #1a1a1a;
    opacity: 1;
}

.search-style-3 form input:focus {
    border: 1px solid #507468;
}

.search-style-3 form button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    border: none;
    font-size: 15px;
    height: 100%;
    padding: 0 14px;
    background-color: transparent;
    color: #333;
}

.search-style-3 form button:hover {
    color: #507468;
}

.search-popup-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: white;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.search-popup-wrap .search-popup-content form input {
    width: 1170px;
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid #507468;
    font-size: 50px;
    padding: 21px 50px 16px 0px;
    color: #919191;
    font-weight: 300;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out, opacity .5s linear;
    transition: all .5s ease-in-out, opacity .5s linear;
}

.search-popup-wrap .search-popup-content form input::-moz-input-placeholder {
    color: #919191;
    opacity: 1;
}

.search-popup-wrap .search-popup-content form input::-webkit-input-placeholder {
    color: #919191;
    opacity: 1;
}

.search-popup-wrap.search-visible .search-popup-content form input {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}

.close-style-wrap {
    position: absolute;
    right: 55px;
    top: 40px;
}

.close-style-wrap.close-style-position-inherit {
    position: inherit;
}

.close-style-wrap .close-style {
    position: relative;
    background-color: transparent;
    padding: 0;
    border: none;
    width: 30px;
    height: 30px;
}

.close-style-wrap .close-style>i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: 0 !important;
    -webkit-transform-origin: center;
    transform-origin: center;
    display: block;
    overflow: hidden;
}

.close-style-wrap .close-style>i.icon-top {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-style-wrap .close-style>i.icon-top::before {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.close-style-wrap .close-style>i.icon-top::after {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.close-style-wrap .close-style>i.icon-bottom {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-style-wrap .close-style>i.icon-bottom::before {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.close-style-wrap .close-style>i.icon-bottom::after {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.close-style-wrap .close-style>i::before,
.close-style-wrap .close-style>i::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #111;
}

.burger-icon {
    position: relative;
    width: 24px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.burger-icon>span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
}

.burger-icon>span.burger-icon-top {
    top: 2px;
}

.burger-icon>span.burger-icon-bottom {
    bottom: 2px;
}

.burger-icon>span.burger-icon-mid {
    top: 9px;
}

.burger-icon>span::before,
.burger-icon>span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #333;
}

.burger-icon.burger-icon-white>span::before,
.burger-icon.burger-icon-white>span::after {
    background-color: #1a1a1a;
}

.body-overlay-1 {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    visibility: hidden;
    width: 100%;
    cursor: crosshair;
    z-index: 9999;
}

.mobile-menu-active .body-overlay-1 {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-header-wrapper-style {
    position: fixed;
    top: 0;
    width: 360px;
    min-height: 100vh;
    bottom: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate(200px, 0);
    transform: translate(200px, 0);
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
    z-index: 99999;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
    padding: 0px 0px 30px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 30px;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
    width: 100px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
    padding: 30px 30px 30px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
    display: block;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand {
    right: 0;
    position: absolute;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    font-size: 12px;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 35px;
    color: #1a1a1a;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand i {
    font-size: 14px;
    font-weight: 300;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active>.menu-expand {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active>.menu-expand i::before {
    content: "\f112";
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: #1a1a1a;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
    margin-right: 5px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
    padding: 0 0 0 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
    padding: 10px 0;
    border-bottom: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children .menu-expand {
    top: 0px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
    font-size: 15px;
    display: block;
    font-weight: 500;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
    margin-top: 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children.active {
    padding-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover>a {
    color: #507468;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categori-dropdown-wrap ul li a {
    padding: 5px 15px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
    padding: 25px 0 30px;
    margin-bottom: 30px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
    position: relative;
    margin-bottom: 13px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
    margin-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
    font-size: 15px;
    display: block;
    font-weight: 500;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a span {
    float: right;
    font-size: 18px;
    position: relative;
    top: 8px;
    line-height: 1;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
    margin-top: 5px;
    display: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 0 0 0;
    width: 100%;
    z-index: 11;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
    padding-bottom: 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
    padding-bottom: 0px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
    color: #507468;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover>a {
    color: #1a1a1a;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-social-icon a {
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.mobile-social-icon a img {
    max-width: 20px;
    opacity: 0.7;
}

.mobile-social-icon a img:hover {
    opacity: 1;
}

.mobile-social-icon a:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.mobile-social-icon a:last-child {
    margin-right: 0;
}

.mobile-search {
    padding: 0 0 10px 0;
}

.categori-button-active-2 {
    padding: 21px 0;
    display: block !important;
}

.categori-button-active-2 i {
    float: right;
    position: relative;
    top: 5px;
}

.hotline p {
    color: #507468;
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hotline p span {
    margin-right: 10px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

.hotline p i {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 19px;
    margin-right: 5px;
}

.header-style-1 .search-style-2 select {
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: #414648;
    border-radius: 0;
}

.header-style-1 .header-top-ptb-1 {
    padding: 13px 0;
    border-bottom: 3px solid #39b4ac;
    background-color: #d8f4e2;
    background-image: none;
}

/* Header style 2 */

.header-style-2 .header-top-ptb-1 {
    padding: 10px 0;
    border-bottom: 3px solid #507468 !important;
    font-size: 14px;
    line-height: 1;
    background: #fff;
}

.header-style-2 .header-middle-ptb-1 {
    padding: 35px 0;
}

.header-style-2 .select2-container {
    max-width: unset;
    min-width: 150px;
}

.header-style-2 .select2-container--default .select2-selection--single {
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #e2e9e1;
    height: 45px;
    padding-left: 20px;
    width: 155px;
    max-width: unset;
    border-radius: 4px 0 0 4px;
}

.header-style-2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.header-style-2 .search-style-2 form {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    max-width: 700px;
}

.header-style-2 .search-style-2 form input {
    color: #1a1a1a;
    max-width: 600px;
    background-color: #fff;
    border-width: 0px;
    border-radius: 0 4px 4px 0;
    margin-left: 20px;
}

/* Header style 3 */
.header-style-3{
    /*background-image: url(../imgs/theme/topbar-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;*/
}
.header-style-3.header-height-2 {
    border-bottom: none;
}

.header-style-3 .main-nav {
    border-top: 1px solid #e2e9e1;
    border-bottom: 1px solid #e2e9e1;
}

.header-style-3 .header-top-ptb-1 {
    background-image: url(../imgs/theme/topbar-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #020202;
}

.header-style-3 .header-top-ptb-1 a {
    color: #fff;
}

.header-style-3 .header-top-ptb-1 i {
    color: #fff;
}

.header-style-3 .header-top-ptb-1 .language-dropdown a {
    color: #1a1a1a;
}

.header-style-3 .header-middle-ptb-1 {
    padding: 25px 0;
    /*background-image: url(../imgs/theme/topbar-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;*/
}

.header-style-3 .header-bottom-bg-color {
    background-color: #fff;
}

.header-style-3 .main-categori-wrap>a {
    color: #494949;
}

.header-style-3 .main-menu.main-menu-light-white>nav>ul>li>a {
    color: #494949;
}

.header-style-3 .main-nav {
    border-top: 1px solid #e2e9e1;
    border-bottom: 1px solid #e2e9e1;
}

.header-style-3 .sticky-bar.stick.sticky-blue-bg {
    background-color: #fff;
}

.header-style-3 .hotline p {
    color: #AC6C53 !important;
}

.header-style-3 .select2-container {
    max-width: unset;
    min-width: 150px;
}

.header-style-3 .select2-container--default .select2-selection--single {
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #e2e9e1;
    height: 45px;
    padding-left: 20px;
    width: 155px;
    max-width: unset;
    border-radius: 4px 0 0 4px;
}

.header-style-3 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.header-style-3 .search-style-2 form {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    max-width: 700px;
}

.header-style-3 .search-style-2 form input {
    color: #1a1a1a;
    max-width: 600px;
    background-color: #fff;
    border-width: 0px;
    border-radius: 0 4px 4px 0;
    margin-left: 20px;
}

/* Header style 4 */

.header-style-4 {
    position: relative;
}

.header-style-4.header-height-2 {
    border-bottom: 0;
}

.header-style-4 .header-top-ptb-1 {
    background-color: #d8f4e2;
    background-image: none;
    padding: 15px 0;
    border: 0;
}

.header-style-4 .header-top-ptb-1 .language-dropdown a {
    color: #1a1a1a;
}

.header-style-4 .header-middle-ptb-1 {
    padding: 40px 0;
}

.header-style-4 .select2-container {
    max-width: unset;
    min-width: 150px;
}

.header-style-4 .select2-container--default .select2-selection--single {
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #e2e9e1;
    height: 45px;
    padding-left: 20px;
    width: 155px;
    max-width: unset;
    border-radius: 4px 0 0 4px;
}

.header-style-4 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.header-style-4 .search-style-2 form {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    max-width: 700px;
}

.header-style-4 .search-style-2 form input {
    color: #1a1a1a;
    max-width: 600px;
    background-color: #fff;
    border-width: 0px;
    border-radius: 0 4px 4px 0;
    margin-left: 20px;
}

.header-style-4 .header-bottom-bg-color {
    background-color: #fff;
    border-top: 1px solid #e2e9e1;
    border-bottom: 1px solid #e2e9e1;
}

.header-style-4 .main-categori-wrap>a {
    color: #fff;
    line-height: 60px;
    background: #507468;
    padding: 0 30px;
}

.header-style-4 .main-categori-wrap>a i.up {
    right: 30px;
}

.header-style-4 .main-menu.main-menu-light-white>nav>ul>li>a {
    color: #494949;
}

.header-style-4 .stick .main-menu.main-menu-light-white>nav>ul>li>a {
    color: #ffffff !important;
}

.header-style-4 .categori-dropdown-active-large {
    top: 100%;
}

.header-style-4 .hotline p {
    color: #507468 !important;
}

.header-style-4 .stick .hotline p {
    color: #fff !important;
}

.header-style-4 .main-categori-wrap>a span {
    color: #fff !important;
}

.header-style-5 .logo.logo-width-1 a img {
    width: 120px;
    margin-top: 5px;
}

.header-style-5 .select2-container--default {
    width: 115px !important;
}

.header-style-5 .select2-container--default .select2-selection--single {
    border: 1px solid #e8e8e8;
    height: 45px;
    padding-left: 10px;
    font-size: 13px;
}

.header-style-5 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    font-size: 13px;
}

.header-style-5 .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 7px;
}

.header-style-5 .logo.logo-width-1 {
    margin-right: 40px;
}

.header-style-5 .header-bottom .header-action-right a span.pro-count {
    color: #fff;
}

.header-style-5 .header-action-2 .header-action-icon-2>a {
    font-size: 24px;
}

.header-style-5 .select2-container {
    max-width: unset;
    min-width: 100px;
}

.header-style-5 .select2-container--default .select2-selection--single {
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #e2e9e1;
    height: 45px;
    padding-left: 20px;
    width: 105px;
    max-width: unset;
    border-radius: 4px 0 0 4px;
}

.header-style-5 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.header-style-5 .search-style-2 form {
    border: 1px solid #e2e9e1;
    border-radius: 4px;
    max-width: 700px;
}

.header-style-5 .search-style-2 form input {
    color: #1a1a1a;
    max-width: 600px;
    background-color: #fff;
    border-width: 0px;
    border-radius: 0 4px 4px 0;
    margin-left: 20px;
}

span.fi-rs-apps {
    font-size: 19px;
    opacity: 0.7;
}

.hotline i {
    opacity: 0.7;
}

/*LAYOUT -> NAVIGATION STYLE*/

.main-menu.main-menu-mrg-1 {
    margin: 0 0 0 27px;
}

.main-menu>nav>ul>li.position-static {
    position: static;
}

.main-menu>nav>ul>li>a {
    display: inline-block;
    font-size: 16px;
    font-weight: 550;
    color: #1a1a1a;
    font-family: "Alata", sans-serif;
}
.blink_text{
    color: #EA1919 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}
.main-menu>nav>ul>li>a i {
    font-size: 18px;
    position: relative;
    margin-left: 4px;
    color: #AC6C53;
}

.main-menu>nav>ul>li>a.active {
    color: #507468;
}

.main-menu>nav>ul>li ul.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 250px;
    padding: 25px 15px;
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    border-radius: 0 0 4px 4px;
    z-index: 999;
    border: 1px solid #eef0ee;
}

.main-menu>nav>ul>li ul.sub-menu li {
    line-height: 1;
    display: block;
    margin-bottom: 21px;
    position: relative;
}

.main-menu>nav>ul>li ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.main-menu>nav>ul>li ul.sub-menu li ul.level-menu {
    position: absolute;
    left: 100%;
    top: -110px;
    background-color: #ffffff;
    width: 240px;
    padding: 33px 0 35px;
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #eef0ee;
}

.main-menu>nav>ul>li ul.sub-menu li ul.level-menu.level-menu-modify {
    top: -25px;
}

.main-menu>nav>ul>li ul.sub-menu li a i {
    font-size: 9px;
    float: right;
    position: relative;
    top: 4px;
}

.main-menu>nav>ul>li ul.sub-menu li:hover>a {
    color: #000;
}

.main-menu>nav>ul>li ul.sub-menu li:hover ul.level-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.main-menu>nav>ul>li ul.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    width: 100%;
    padding: 35px 25px 35px 35px;
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    border-radius: 0 0 4px 4px;
    z-index: 999;
    border: 1px solid #eef0ee;
}

.main-menu>nav>ul>li ul.mega-menu li {
    line-height: 1;
    display: block;
    position: relative;
    float: left;
    padding-right: 10px;
}

.main-menu>nav>ul>li ul.mega-menu li:last-child {
    margin-bottom: 0;
}

.main-menu>nav>ul>li ul.mega-menu li.sub-mega-menu-width-22 {
    width: 22%;
}

.main-menu>nav>ul>li ul.mega-menu li.sub-mega-menu-width-34 {
    width: 34%;
}

.main-menu>nav>ul>li ul.mega-menu li a.menu-title {
    font-size: 19px;
    font-weight: 500;
    display: block;
}

.main-menu>nav>ul>li ul.mega-menu li ul {
    margin-top: 28px;
}

.main-menu>nav>ul>li ul.mega-menu li ul li {
    line-height: 1;
    display: block;
    margin-bottom: 14px;
    float: none;
}

.main-menu>nav>ul>li ul.mega-menu li ul li:last-child {
    margin-bottom: 0;
}

.main-menu>nav>ul>li ul.mega-menu li ul li a {
    font-size: 15px;
    color: #161c27;
    display: block;
    line-height: 1.4;
}

.main-menu>nav>ul>li ul.mega-menu li ul li a:hover {
    color: #507468;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap {
    overflow: hidden;
    position: relative;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap a {
    display: block;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap a img {
    width: 100%;
    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content {
    position: absolute;
    top: 32px;
    left: 30px;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 5px 0 11px;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price span.old-price {
    font-size: 19px;
    font-weight: 400;
    color: #696969;
    text-decoration: line-through;
    margin-left: 5px;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-btn a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 26px;
    padding: 12px 22px 14px;
    background-color: #507468;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-discount h3 span {
    display: block;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 3px;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap:hover a img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap:hover .menu-banner-btn a {
    background-color: #ff3551;
}

.main-menu>nav>ul>li:hover>a {
    color: #507468;
}

.main-menu>nav>ul>li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.main-menu>nav>ul>li:hover ul.mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.main-menu.hover-boder>nav>ul>li>a {
    position: relative;
}

.main-menu.hover-boder>nav>ul>li>a::after {
    content: none;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 34px;
    height: 1px;
    width: 0;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: #507468;
}

.main-menu.hover-boder>nav>ul>li:hover>a::after {
    width: 100%;
    left: 0;
    right: auto;
}

.main-menu.hover-boder.hover-boder-white>nav>ul>li>a::after {
    bottom: 18px;
    background: #ffffff;
}

.main-menu.hover-boder.hover-boder-modify>nav>ul>li>a::after {
    bottom: 28px;
}

.main-menu.main-menu-light-white>nav>ul>li>a {
    color: white;
}

.main-menu.main-menu-padding-1>nav>ul>li {
    padding: 0 17px;
}

.main-menu.main-menu-padding-1>nav>ul>li:first-child {
    padding-left: 0 !important;
}

.main-menu.main-menu-lh-2>nav>ul>li {
    line-height: 60px;
}

.main-menu.main-menu-lh-3>nav>ul>li {
    line-height: 80px;
}

.main-menu.main-menu-grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.main-menu>nav>ul>li {
    display: inline-block;
    position: relative;
}

.header-style-3 .header-wrap.header-space-between {
    border-top: 1px solid #e2e9e1;
    border-bottom: 1px solid #e2e9e1;
}

.main-menu>nav>ul>li ul.sub-menu li a {
    font-size: 15px;
    color: #111;
    font-weight: 550;
    display: block;
    padding: 0 15px;
}

.main-menu>nav>ul>li ul.sub-menu li a:hover {
    color: #507468;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price {
    margin: 0 0 28px;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price span.new-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff3551;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-discount {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffd55a;
    position: absolute;
    top: 13%;
    right: 7%;
}

.main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-discount h3 {
    color: #333;
    margin: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.main-menu.main-menu-lh-1>nav>ul>li {
    line-height: 70px;
}

.main-categori-wrap {
    position: relative;
    margin-right: 70px;
}

.main-categori-wrap>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.main-categori-wrap>a span {
    margin-right: 7px;
    color: #161c27;
}

.main-categori-wrap>a>i {
    margin-left: 5px;
    margin-top: 7px;
    color: #999;
}

.main-categori-wrap>a>i.up {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.main-categori-wrap>a.open>i {
    opacity: 0;
    visibility: hidden;
}

.main-categori-wrap>a.open>i.up {
    opacity: 1;
    visibility: visible;
}

.categori-dropdown-active-large {
    list-style-type: none;
    position: absolute;
    top: 177%;
    left: 0;
    z-index: 9;
    margin: 0;
    padding: 15px 0 10px 0;
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: 0 0 4px 4px;
    font-size: 15px;
    font-weight: 400;
    min-width: 270px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    visibility: hidden;
}

.categori-dropdown-active-large.open {
    opacity: 1;
    visibility: visible;
}

.categori-dropdown-active-small {
    z-index: 9;
    margin: 0;
    padding: 14px 0 23px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
    font-size: 15px;
    font-weight: 400;
    display: none;
    width: 100%;
}

.categori-dropdown-wrap ul li {
    display: block;
}

.categori-dropdown-wrap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 34px;
    line-height: 1.5;
    color: #1a1a1a;
    font-size: 15px;
}

.categori-dropdown-wrap ul li a:hover {
    color: #507468;
    background-color: rgba(78, 151, 253, 0.1);
}

.categori-dropdown-wrap ul li a i {
    margin-right: 16px;
    font-size: 18px;
    opacity: 0.9;
}

.categori-dropdown-wrap ul li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
    pointer-events: auto;
}

.categori-dropdown-wrap ul li.has-children {
    position: relative;
}

.categori-dropdown-wrap ul li.has-children>a::after {
    content: "\f111";
    font-family: 'uicons-regular-straight' !important;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu {
    left: 100%;
    top: 0;
    margin: 0;
    margin-top: 0px;
    border: 1px solid #eef0ee;
    min-width: 800px;
    width: 100%;
    right: 0;
    border-radius: 0;
    padding: 20px;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu .submenu-title {
    font-size: 19px;
    font-weight: 500;
    display: block;
    color: #507468;
    padding: 5px 34px;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15px;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info a {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    color: #272a2c !important;
}

.categori-dropdown-wrap ul li.has-children .dropdown-menu .header-banner2 .banne_info a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 50%;
    background-color: #272a2c;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.categori-dropdown-wrap .more_categories {
    border-top: 1px solid #eaeaea;
    padding: 10px 34px 0 34px;
    margin-top: 10px;
    color: #507468;
    position: relative;
    font-size: 13px;
    
}

.categori-dropdown-wrap .more_categories::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #507468;
    position: absolute;
    right: 31px;
    top: 21px;
}

.categori-dropdown-wrap .more_categories::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #507468;
    position: absolute;
    right: 38px;
    top: 14px;
}

.categori-dropdown-wrap .more_categories.show::after {
    display: none;
    content: none;
}

/*Pagination*/

.pagination-area .page-item {
    margin: 0 5px;
}

.pagination-area .page-item:first-child {
    margin-left: 0;
}

.pagination-area .page-item:first-child .page-link {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination-area .page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.pagination-area .page-item.active .page-link,
.pagination-area .page-item:hover .page-link {
    color: #fff;
    background: #507468;
}

.pagination-area .page-link {
    border: 0;
    padding: 0 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    width: 34px;
    height: 34px;
    display: block;
    border-radius: 4px;
    color: #696969;
    line-height: 34px;
    text-align: center;
    font-weight: 700;
}

.pagination-area .page-link.dot {
    background-color: transparent;
    color: #4f5d77;
    letter-spacing: 2px;
}

/*LAYOUT -> SIDEBAR*/

.widget-category {
    position: relative;
    padding: 30px;
    border: 1px solid #e8e8e8;
}

.widget-category ul>li {
    padding: 6px 0;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.widget-category ul>li:hover {
    padding-left: 5px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.widget-category ul>li a {
    color: #242424;
}

.widget-category ul>li a:hover {
    color: #507468;
}

/*Social network widget*/

.follow-us a {
    display: block;
    padding: 12px 10px;
    color: #fff;
    width: 50%;
    border-radius: 5px;
    font-size: 11px;
    overflow: hidden;
    height: 46px;
}

.follow-us a .social-count {
    font-weight: bold;
}

.follow-us a:hover i {
    -webkit-transform: translateY(-35px) !important;
    transform: translateY(-35px) !important;
}

.follow-us a i {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.2s cubic-bezier(0.65, 0.23, 0.31, 0.88);
    transition: 0.2s cubic-bezier(0.65, 0.23, 0.31, 0.88);
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}

.follow-us a i.nth-2 {
    position: absolute;
    top: 38px;
    left: 0;
}

.follow-us i.v-align-space {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 4px;
    line-height: 1;
}

.follow-us .social-icon {
    display: inline-block;
    position: relative;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}

.follow-us a.follow-us-facebook,
.single-social-share a.facebook-icon {
    background: #305c99;
}

.follow-us a.follow-us-twitter,
.single-social-share a.twitter-icon {
    background: #00cdff;
}

.follow-us a.follow-us-instagram,
.single-social-share a.instagram-icon {
    background: #3f729b;
}

.follow-us a.follow-us-youtube,
.single-social-share a.pinterest-icon {
    background: #e22b26;
}

.sidebar-widget .widget-header {
    border-bottom: 1px solid #e2e9e1;
}

.sidebar-widget .widget-header h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.sidebar-widget.price_range,
.sidebar-widget.product-sidebar {
    border-radius: 0px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}

.sidebar-widget .banner-img {
    float: none;
}

.widget_categories li.cat-item,
.widget_archive li,
.widget_pages li,
.widget_recent_comments li,
.widget_nav_menu li {
    text-align: right;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    display: table;
    width: 100%;
    font-size: 14px;
    padding: 7px 0;
}

.widget_categories li.cat-item:last-child {
    border: none;
}

.widget_categories li.cat-item a,
.widget_archive li a,
.widget_pages li a {
    text-align: left;
    float: left;
    padding: 0;
}

.widget_tags {
    position: relative;
    border-radius: 0px;
}

.widget_tags a {
    display: inline-block;
    background-color: #ffffff;
    border-radius: 4px;
    color: #242424;
    padding: 4px 15px 5px;
    margin: 0 8px 10px 0;
    border: 1px solid #e2e9e1;
}

.newsletter {
    background-color: #aeccc5;
}

.newsletter .icon-email {
    max-width: 40px;
    margin-right: 15px;
}

.newsletter .form-subcriber input {
    border-radius: 4px 0 0 4px;
    border: 0;
    padding: 0 20px 0 30px;
    font-size: 14px;
}

.newsletter .form-subcriber button {
    border-radius: 0 4px 4px 0;
    border: 0;
    font-size: 14px;
    padding: 0 30px;
    
}

.download-app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 25px 0 33px;
}

.download-app a {
    display: block;
    margin-right: 12px;
}

.download-app a img {
    width: 170px;
    border-radius: 5px;
    border: 2px solid #e2e9e1;
}

.download-app a img.active,
.download-app a img:hover {
    border: 2px solid #507468;
}

.footer-list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    display: block;
    margin: 0 0 13px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.footer-list li:last-child {
    margin: 0;
}

.footer-list li:hover {
    padding-left: 5px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.footer-list li a {
    font-size: 14px;
    color: #1a1a1a;
    display: block;
}

.footer-list li a:hover {
    color: #507468;
}

.footer-bottom {
    border-top: 1px solid #e2e9e1;
}

#scrollUp {
    width: 40px;
    height: 40px;
    background-color: #507468;
    color: #ffffff;
    right: 30px;
    bottom: 30px;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999 !important;
}

#scrollUp i {
    display: block;
    line-height: 40px !important;
    font-size: 16px;
}

#scrollUp:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.footer-mid .widget-title {
    margin: 15px 0 20px 0;
}

/*LAYOUT -> SPACING**/

.section-padding-30 {
    padding: 30px 0;
}

.section-padding-50 {
    padding: 50px 0;
}

.section-padding-60 {
    padding: 60px 0;
}

.section-padding {
    padding: 25px 0;
}

.ptb-0 {
    padding: 0;
}

.ptb-10 {
    padding: 10px 0;
}

.ptb-20 {
    padding: 20px 0;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-35 {
    padding: 35px 0;
}

.ptb-32 {
    padding: 32px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.ptb-70 {
    padding: 70px 0;
}

.ptb-80 {
    padding: 80px 0;
}

.ptb-90 {
    padding: 90px 0;
}

.ptb-100 {
    padding: 100px 0;
}

.ptb-110 {
    padding: 110px 0;
}

.ptb-120 {
    padding: 120px 0;
}

.ptb-130 {
    padding: 130px 0;
}

.ptb-140 {
    padding: 140px 0;
}

.ptb-150 {
    padding: 150px 0;
}

.ptb-160 {
    padding: 160px 0;
}

.ptb-170 {
    padding: 170px 0;
}

.ptb-177 {
    padding: 177px 0;
}

.ptb-180 {
    padding: 180px 0;
}

.ptb-190 {
    padding: 190px 0;
}

.ptb-200 {
    padding: 200px 0;
}

.ptb-210 {
    padding: 210px 0;
}

.ptb-220 {
    padding: 220px 0;
}

.ptb-290 {
    padding: 290px 0;
}

.ptb-310 {
    padding: 310px 0;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-65 {
    padding: 65px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-85 {
    padding-top: 85px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-105 {
    padding-top: 105px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-115 {
    padding-top: 115px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

.pt-125 {
    padding-top: 125px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pt-135 {
    padding-top: 135px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

.pt-145 {
    padding-top: 145px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-155 {
    padding-top: 155px !important;
}

.pt-160 {
    padding-top: 160px !important;
}

.pt-165 {
    padding-top: 165px !important;
}

.pt-170 {
    padding-top: 170px !important;
}

.pt-175 {
    padding-top: 175px !important;
}

.pt-180 {
    padding-top: 180px !important;
}

.pt-185 {
    padding-top: 185px !important;
}

.pt-190 {
    padding-top: 190px !important;
}

.pt-195 {
    padding-top: 195px !important;
}

.pt-200 {
    padding-top: 200px !important;
}

.pt-260 {
    padding-top: 260px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-105 {
    padding-bottom: 105px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-115 {
    padding-bottom: 115px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-125 {
    padding-bottom: 125px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-135 {
    padding-bottom: 135px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

.pb-145 {
    padding-bottom: 145px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

.pb-155 {
    padding-bottom: 155px !important;
}

.pb-160 {
    padding-bottom: 160px !important;
}

.pb-165 {
    padding-bottom: 165px !important;
}

.pb-170 {
    padding-bottom: 170px !important;
}

.pb-175 {
    padding-bottom: 175px !important;
}

.pb-180 {
    padding-bottom: 180px !important;
}

.pb-185 {
    padding-bottom: 185px !important;
}

.pb-190 {
    padding-bottom: 190px !important;
}

.pb-195 {
    padding-bottom: 195px !important;
}

.pb-200 {
    padding-bottom: 200px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-95 {
    padding-left: 95px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pl-105 {
    padding-left: 105px !important;
}

.pl-110 {
    padding-left: 110px !important;
}

.pl-115 {
    padding-left: 115px !important;
}

.pl-120 {
    padding-left: 120px !important;
}

.pl-125 {
    padding-left: 125px !important;
}

.pl-130 {
    padding-left: 130px !important;
}

.pl-135 {
    padding-left: 135px !important;
}

.pl-140 {
    padding-left: 140px !important;
}

.pl-145 {
    padding-left: 145px !important;
}

.pl-150 {
    padding-left: 150px !important;
}

.pl-155 {
    padding-left: 155px !important;
}

.pl-160 {
    padding-left: 160px !important;
}

.pl-165 {
    padding-left: 165px !important;
}

.pl-170 {
    padding-left: 170px !important;
}

.pl-175 {
    padding-left: 175px !important;
}

.pl-180 {
    padding-left: 180px !important;
}

.pl-185 {
    padding-left: 185px !important;
}

.pl-190 {
    padding-left: 190px !important;
}

.pl-195 {
    padding-left: 195px !important;
}

.pl-200 {
    padding-left: 200px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-95 {
    padding-right: 95px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pr-105 {
    padding-right: 105px !important;
}

.pr-110 {
    padding-right: 110px !important;
}

.pr-115 {
    padding-right: 115px !important;
}

.pr-120 {
    padding-right: 120px !important;
}

.pr-125 {
    padding-right: 125px !important;
}

.pr-130 {
    padding-right: 130px !important;
}

.pr-135 {
    padding-right: 135px !important;
}

.pr-140 {
    padding-right: 140px !important;
}

.pr-145 {
    padding-right: 145px !important;
}

.pr-150 {
    padding-right: 150px !important;
}

.pr-155 {
    padding-right: 155px !important;
}

.pr-160 {
    padding-right: 160px !important;
}

.pr-165 {
    padding-right: 165px !important;
}

.pr-170 {
    padding-right: 170px !important;
}

.pr-175 {
    padding-right: 175px !important;
}

.pr-180 {
    padding-right: 180px !important;
}

.pr-185 {
    padding-right: 185px !important;
}

.pr-190 {
    padding-right: 190px !important;
}

.pr-195 {
    padding-right: 195px !important;
}

.pr-200 {
    padding-right: 200px !important;
}

.plr-5-percent {
    padding: 0 5%;
}

/***************************
    Page section margin 
****************************/

.mtb-0 {
    margin: 0;
}

.mtb-10 {
    margin: 10px 0;
}

.mtb-15 {
    margin: 15px 0;
}

.mtb-20 {
    margin: 20px 0;
}

.mtb-30 {
    margin: 30px 0;
}

.mtb-40 {
    margin: 40px 0;
}

.mtb-50 {
    margin: 50px 0;
}

.mtb-60 {
    margin: 60px 0;
}

.mtb-70 {
    margin: 70px 0;
}

.mtb-80 {
    margin: 80px 0;
}

.mtb-90 {
    margin: 90px 0;
}

.mtb-100 {
    margin: 100px 0;
}

.mtb-110 {
    margin: 110px 0;
}

.mtb-120 {
    margin: 120px 0;
}

.mtb-130 {
    margin: 130px 0;
}

.mtb-140 {
    margin: 140px 0;
}

.mtb-150 {
    margin: 150px 0;
}

.mtb-290 {
    margin: 290px 0;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-105 {
    margin-top: 105px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-115 {
    margin-top: 115px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-125 {
    margin-top: 125px !important;
}

.mt-130 {
    margin-top: 130px !important;
}

.mt-135 {
    margin-top: 135px !important;
}

.mt-140 {
    margin-top: 140px !important;
}

.mt-145 {
    margin-top: 145px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

.mt-155 {
    margin-top: 155px !important;
}

.mt-160 {
    margin-top: 160px !important;
}

.mt-165 {
    margin-top: 165px !important;
}

.mt-170 {
    margin-top: 170px !important;
}

.mt-175 {
    margin-top: 175px !important;
}

.mt-180 {
    margin-top: 180px !important;
}

.mt-185 {
    margin-top: 185px !important;
}

.mt-190 {
    margin-top: 190px !important;
}

.mt-195 {
    margin-top: 195px !important;
}

.mt-200 {
    margin-top: 200px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-95 {
    margin-bottom: 95px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-105 {
    margin-bottom: 105px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-115 {
    margin-bottom: 115px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.mb-125 {
    margin-bottom: 125px !important;
}

.mb-130 {
    margin-bottom: 130px !important;
}

.mb-135 {
    margin-bottom: 135px !important;
}

.mb-140 {
    margin-bottom: 140px !important;
}

.mb-145 {
    margin-bottom: 145px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

.mb-155 {
    margin-bottom: 155px !important;
}

.mb-160 {
    margin-bottom: 160px !important;
}

.mb-165 {
    margin-bottom: 165px !important;
}

.mb-170 {
    margin-bottom: 170px !important;
}

.mb-175 {
    margin-bottom: 175px !important;
}

.mb-180 {
    margin-bottom: 180px !important;
}

.mb-185 {
    margin-bottom: 185px !important;
}

.mb-190 {
    margin-bottom: 190px !important;
}

.mb-195 {
    margin-bottom: 195px !important;
}

.mb-200 {
    margin-bottom: 200px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-65 {
    margin-left: 65px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-75 {
    margin-left: 75px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-85 {
    margin-left: 85px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-95 {
    margin-left: 95px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.ml-105 {
    margin-left: 105px !important;
}

.ml-110 {
    margin-left: 110px !important;
}

.ml-115 {
    margin-left: 115px !important;
}

.ml-120 {
    margin-left: 120px !important;
}

.ml-125 {
    margin-left: 125px !important;
}

.ml-130 {
    margin-left: 130px !important;
}

.ml-135 {
    margin-left: 135px !important;
}

.ml-140 {
    margin-left: 140px !important;
}

.ml-145 {
    margin-left: 145px !important;
}

.ml-150 {
    margin-left: 150px !important;
}

.ml-155 {
    margin-left: 155px !important;
}

.ml-160 {
    margin-left: 160px !important;
}

.ml-165 {
    margin-left: 165px !important;
}

.ml-170 {
    margin-left: 170px !important;
}

.ml-175 {
    margin-left: 175px !important;
}

.ml-180 {
    margin-left: 180px !important;
}

.ml-185 {
    margin-left: 185px !important;
}

.ml-190 {
    margin-left: 190px !important;
}

.ml-195 {
    margin-left: 195px !important;
}

.ml-200 {
    margin-left: 200px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-65 {
    margin-right: 65px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-75 {
    margin-right: 75px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-85 {
    margin-right: 85px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-95 {
    margin-right: 95px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.mr-105 {
    margin-right: 105px !important;
}

.mr-110 {
    margin-right: 110px !important;
}

.mr-115 {
    margin-right: 115px !important;
}

.mr-120 {
    margin-right: 120px !important;
}

.mr-125 {
    margin-right: 125px !important;
}

.mr-130 {
    margin-right: 130px !important;
}

.mr-135 {
    margin-right: 135px !important;
}

.mr-140 {
    margin-right: 140px !important;
}

.mr-145 {
    margin-right: 145px !important;
}

.mr-150 {
    margin-right: 150px !important;
}

.mr-155 {
    margin-right: 155px !important;
}

.mr-160 {
    margin-right: 160px !important;
}

.mr-165 {
    margin-right: 165px !important;
}

.mr-170 {
    margin-right: 170px !important;
}

.mr-175 {
    margin-right: 175px !important;
}

.mr-180 {
    margin-right: 180px !important;
}

.mr-185 {
    margin-right: 185px !important;
}

.mr-190 {
    margin-right: 190px !important;
}

.mr-195 {
    margin-right: 195px !important;
}

.mr-200 {
    margin-right: 200px !important;
}

@media only screen and (max-width: 768px) {
    .logo.logo-width-1 {
        margin-right: 0;
    }
    .logo.logo-width-1 a img {
        width: 120px;
    }
    .header-action .header-action-icon {
        margin-right: 15px;
    }
    .header-action .header-action-icon.header-action-mrg-none {
        margin-right: 15px;
    }
    .header-action .header-action-icon.header-action-mrg-none2 {
        margin-right: 15px;
    }
    .header-action .header-action-icon>a {
        font-size: 20px;
    }
    .header-action-2 .header-action-icon-2 {
        padding: 0 6px;
    }
    .header-action-2 .header-action-icon-2:last-child {
        padding: 0 0 0 6px;
    }
    .header-action-2 .header-action-icon-2>a {
        color: #fff;
        fill: #fff;
        font-size: 22px;
        margin-right: 10px;
    }
    .header-style-5 .logo.logo-width-1 {
        margin-right: 0;
    }
    .header-style-5 .search-style-2 {
        margin-right: 30px;
    }
    .header-style-5 .header-bottom {
        padding: 5px 0;
    }
    .cart-dropdown-wrap {
        width: 290px;
        right: -39px;
    }
    .cart-dropdown-wrap.cart-dropdown-hm2 {
        right: -63px;
    }
    .cart-dropdown-wrap ul li .shopping-cart-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        margin-right: 10px;
    }
    .cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
        padding: 12px 22px 13px;
    }
    .categori-dropdown-wrap ul li a {
        padding: 5px 12px;
    }
    .search-popup-wrap .search-popup-content form input {
        width: 270px;
        font-size: 25px;
        padding: 21px 20px 12px 0;
    }
    .mobile-header-wrapper-style {
        width: 320px;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
        padding: 10px 20px;
        border-bottom: 1px solid #e2e9e1;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
        width: 80px;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
        padding: 30px 20px;
    }
    .header-height-1 {
        min-height: 65px;
    }
    .header-height-2 {
        min-height: 65px;
    }
    .hero-slider-1 {
        height: 350px;
    }
    .hero-slider-1 .single-slider-img-1 {
        height: 350px;
    }
    .home-slider.pt-50 {
        padding-top: 0 !important;
    }
    .hero-slider-content-2 h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-slider-content-2 h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .hero-slider-content-2 h4 {
        font-size: 16px;
        margin: 0 0 10px;
    }
    .hero-slider-content-2 .btn-default {
        color: #fff;
        background-color: #507468;
        border-radius: 50px;
        padding: 10px 22px;
        font-size: 14px;
    }
    .hero-slider-content-2 p {
        font-size: 14px;
        line-height: 1.3;
    }
    .banner-big h4 {
        font-size: 12px;
    }
    .banner-big h2 {
        font-size: 16px;
    }
    .banner-big .btn {
        background-color: #507468;
        color: #fff;
        border-radius: 3px;
        font-size: 13px;
        padding: 10px 22px;
        border: 0;
    }
    .home-slider .slider-arrow {
        display: none;
    }
    .home-slider .hero-slider-1.style-2 {
        height: 400px;
    }
    .home-slider .hero-slider-1.style-2 .hero-slider-content-2 {
        padding-left: 0;
        padding-top: 100px;
    }
    .home-slider .hero-slider-1.style-2 .single-slider-img img {
        max-width: 400px;
    }
    .home-slider .hero-slider-1.style-2 .slider-1-height-2 {
        height: 400px;
        position: relative;
    }
    .banner-img {
        float: left;
    }
    .banner-img.f-none {
        float: none;
    }
    .hero-slider-1.style-3 .slider-1-height-3 {
        height: 390px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 {
        padding-left: 20px;
    }
    .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 {
        padding-left: 0;
    }
    .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h1 {
        font-size: 30px;
    }
    .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h2 {
        font-size: 14px;
    }
    .home-slide-cover .hero-slider-1.style-4 .hero-slider-content-2 h4 {
        font-size: 12px;
    }
    .header-style-3 .header-bottom-bg-color {
        border-bottom: 2px solid #507468;
    }
    .header-style-3 .main-nav {
        border: none !important;
    }
    .header-style-3 .sticky-bar.stick.sticky-blue-bg {
        background-color: #507468;
    }
    .header-style-4 .main-nav {
        border: none !important;
    }
    .header-style-4 .sticky-bar.stick.sticky-blue-bg {
        background-color: #507468;
    }
    .font-xxl {
        font-size: 38px;
    }
    .single-page.pl-30,
    .single-page.pr-30 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .download-app {
        margin-bottom: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .mobile-promotion {
        display: inline-block;
    }
}

/*Mobile landscape*/

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-action .header-action-icon {
        margin-right: 20px;
    }
    .header-action .header-action-icon.header-action-mrg-none {
        margin-right: 20px;
    }
    .header-action .header-action-icon.header-action-mrg-none2 {
        margin-right: 20px;
    }
    .header-action .header-action-icon>a {
        font-size: 22px;
    }
    .header-action-2 .header-action-icon-2 {
        padding: 0 10px;
    }
    .header-action-2 .header-action-icon-2:last-child {
        padding: 0 0 0 10px;
    }
    .header-action-2 .header-action-icon-2>a {
        font-size: 22px;
    }
    .cart-dropdown-wrap {
        width: 310px;
    }
    .search-popup-wrap .search-popup-content form input {
        width: 480px;
        font-size: 25px;
        padding: 21px 20px 12px 0;
    }
    .comment-form .name {
        padding-right: 0px;
        margin-bottom: 1rem;
    }
    .header-style-5 .search-style-2 {
        display: none;
    }
}

/*Tablet*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-action .header-action-icon {
        margin-right: 33px;
    }
    .header-action .header-action-icon.header-action-mrg-none {
        margin-right: 33px;
    }
    .header-action .header-action-icon.header-action-mrg-none2 {
        margin-right: 33px;
    }
    .header-action-2 .header-action-icon-2>a {
        color: #fff;
        fill: #fff;
    }
    .search-popup-wrap .search-popup-content form input {
        width: 650px;
        font-size: 35px;
    }
    .header-bottom {
        padding: 10px 0 3px 0;
        overflow: hidden;
    }
    .header-height-1 {
        min-height: 50px;
    }
    .header-height-2 {
        min-height: 50px;
        border-bottom: 2px solid #507468;
    }
    .header-height-3 {
        min-height: 50px;
    }
    .header-height-4 {
        min-height: 50px;
    }
    .header-style-5 .header-bottom {
        padding: 5px 0;
        border-bottom: 1px solid #f7f8f9;
    }
    .comment-form .email {
        padding-left: 0px;
    }
    .loop-grid.pr-30 {
        padding-right: 0 !important;
    }
}

/*Desktop*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .logo.logo-hm3 a img {
        width: 120px;
    }
    .header-style-5 .search-style-2 {
        display: none;
    }
    .main-menu.main-menu-mrg-1 {
        margin: 0 0 0 15px;
    }
    .main-menu>nav>ul>li ul.sub-menu li ul.level-menu.level-menu-modify {
        width: 165px;
    }
    .main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content {
        left: 20px;
        top: 22px;
    }
    .main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content h3 {
        font-size: 20px;
        line-height: 1.3;
        margin: 5px 0 7px;
    }
    .main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-price {
        margin: 0 0 10px;
    }
    .main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-content .menu-banner-btn a {
        padding: 10px 16px 13px;
    }
    .main-menu>nav>ul>li ul.mega-menu li .menu-banner-wrap .menu-banner-discount {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    .main-menu.main-menu-padding-1>nav>ul>li {
        padding: 0 8px;
    }
    .main-menu.main-menu-padding-1.hm3-menu-padding>nav>ul>li {
        padding: 0 6px;
    }
    .search-style-1 {
        margin-right: 15px;
    }
    .search-style-1 form {
        width: 170px;
    }
    .header-action.header-action-hm3 .header-action-icon {
        margin-right: 15px;
    }
    .header-action.header-action-hm3 .header-action-icon.header-action-mrg-none2 {
        margin-right: 0;
    }
    .header-action.header-action-hm3 .header-action-icon:last-child {
        margin-right: 0;
    }
    .search-style-2 form input {
        width: 340px;
    }
    .hotline p {
        font-size: 15px;
    }
    .search-popup-wrap .search-popup-content form input {
        width: 820px;
    }
    .header-height-1 {
        min-height: 157px;
    }
    .header-height-3 {
        min-height: 133px;
    }
    .header-height-4 {
        min-height: 144px;
    }
    .hero-slider-1 {
        height: 500px;
    }
    .hero-slider-1 .single-slider-img-1 {
        height: 500px;
    }
}

/*Wide screen*/

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .main-menu.main-menu-padding-1>nav>ul>li {
        padding: 0 14px;
    }
}

@media only screen and (max-width: 1024px) {
    .header-style-1 .main-categori-wrap {
        margin-right: 20px;
    }
    .product-cart-wrap .product-action-1 a.action-btn {
        width: 34px;
        height: 34px;
        line-height: 40px;
        font-size: 13px;
    }
    .product-img-action-wrap .product-action-1 {
        width: 100%;
        text-align: center;
    }
    .banner-big h1 {
        font-size: 22px;
    }
    .banner-big .btn {
        border-radius: 3px;
        font-size: 12px;
        padding: 6px 12px;
        border: 0;
    }
    .banner-img .banner-text h4 {
        margin-top: 0px !important;
    }
    .header-wrap .header-right {
        overflow: hidden;
    }
}

/*small phone*/

@media only screen and (max-width: 480px) {
    .post-list .post-thumb {
        max-width: unset;
        margin-right: 0 !important;
    }
    .entry-meta.meta-2 a.btn {
        display: inline-block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
    .entry-meta.meta-2 .font-xs {
        max-width: 150px;
        line-height: 1.3;
    }
    .banner-bg h2 {
        font-size: 20px;
    }
    .single-header .single-header-meta,
    .entry-bottom {
        display: block;
    }
    
    .carausel-6-columns,
    .carausel-4-columns {
        max-width: 100%;
        overflow: hidden;
        margin: 0px 5px !important;
    }
    .slider-arrow .slider-btn.slider-next {
        right: 0 !important;
    }
    .hero-slider-1 {
        height: unset;
    }
    .hero-slider-content-2 {
        text-align: center;
        padding-top: 20px;
    }
    .hero-slider-content-2 p {
        width: 100%;
    }
    .header-height-2 {
        min-height: 40px;
    }
    .header-bottom-bg-color {
        padding: 10px 0 3px 0;
    }
    .banner-left-icon,
    .banner-img {
        margin-bottom: 15px;
    }
    .popular-categories .slider-btn.slider-prev {
        right: 50px !important;
        left: unset !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
    .mb-sm-4 {
        margin-bottom: 1rem;
    }
    .mb-sm-5 {
        margin-bottom: 2rem;
    }
    .heading-tab {
        display: block !important;
    }
    .heading-tab h3.section-title {
        margin-bottom: 15px !important;
    }
    .nav.right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    .hero-slider-1.style-2 .single-slider-img {
        display: none;
    }
    ul.footer-list {
        margin-bottom: 30px;
    }
    .section-padding-60 {
        padding: 30px 0;
    }
    .pt-60,
    .pt-40 {
        padding-top: 30px !important;
    }
    .pb-60 {
        padding-bottom: 30px !important;
    }
    .mb-60 {
        margin-bottom: 30px !important;
    }
    .hero-slider-1.style-3 .slider-1-height-3 {
        height: 220px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 {
        position: relative;
        text-align: left;
        padding-left: 15px;
        padding-top: 0;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 h1 {
        font-size: 18px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 h2 {
        font-size: 16px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 h4 {
        font-size: 14px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 p {
        font-size: 11px;
    }
    .hero-slider-1.style-3 .hero-slider-content-2 a.btn {
        display: none;
    }
    .header-style-5 .search-style-2 {
        display: none;
    }
    .header-style-5 .header-action-2 .header-action-icon-2>a {
        font-size: 18px;
    }
    .header-style-5 .sticky-bar.stick.sticky-white-bg {
        background-color: #fff;
        padding: 15px 0;
    }
    .font-xxl {
        font-size: 28px;
    }
    .w-50 {
        width: 100% !important;
    }
    .product-list .product-cart-wrap {
        display: block;
    }
    .product-list .product-cart-wrap .product-img-action-wrap {
        max-width: 100%;
    }
    .shop-product-fillter {
        display: block;
    }
    .shop-product-fillter .totall-product {
        margin-bottom: 15px;
    }
    .table td {
        text-align: left;
    }
    .shopping-summery tbody tr img{
        max-width: 40px !important;
    }
    .cart-action.text-end{
        text-align: center !important;
    }
    .table td::before {
        content: attr(data-title) " ";
        float: none;
        text-transform: capitalize;
        margin-right: 15px;
        font-weight: bold;
    }
    .kshitii-checkout-btn{
        display: block;
    }
    .cart-totals.p-30{
        padding: 10px !important;
    }
    .table thead {
        display: none;
    }
    .loop-grid.pr-30 {
        padding-right: 0 !important;
    }
    .loop-grid.loop-list article {
        display: block;
    }
    .d-sm-none {
        display: none;
    }
    .banner-features {
        margin-bottom: 15px;
    }
    .product-cart-wrap:not(:last-child),
    .mb-xs-30 {
        margin-bottom: 30px !important;
    }
    .slick-track .product-cart-wrap {
        margin-bottom: 0 !important;
    }
    .header-bottom {
        overflow: hidden;
    }
    .first-post .meta-1 .font-sm {
        display: none;
    }
    .first-post .btn.btn-sm {
        display: none;
    }
    .loop-grid .entry-content {
        padding: 20px 20px 0 20px;
    }
    .img-hover-slide {
        min-height: 232px;
    }
    .comments-area .thumb {
        min-width: 100px;
    }
    .hero-slider-1 .single-slider-img-1 {
        height: 300px;
    }
    .featured .col-lg-2 {
        width: 50%;
    }
    .nav-tabs .nav-link {
        font-size: 13px;
        padding: 10px 12px;
    }
    .deal {
        background-position: left center;
    }
    .deals-countdown .countdown-section .countdown-amount {
        width: 30px;
        height: 40px;
        line-height: 40px;
    }
    .banner-bg {
        padding: 30px;
    }
    .product-list-small figure {
        margin-bottom: 20px !important;
    }
    .product-list-small .title-small {
        font-size: 16px;
        font-weight: 600;
    }
    .newsletter .des {
        display: none;
    }
    .newsletter form {
        margin: 15px 0;
    }
    footer .col-lg-2.col-md-3 {
        width: 50%;
    }
    footer .download-app a img {
        width: 150px;
    }
    .home-slider .hero-slider-1.style-2 .hero-slider-content-2 {
        padding-left: 0;
        padding-top: 50px;
    }
    .home-slider .hero-slider-1.style-2 .hero-slider-content-2 h3 {
        line-height: 1.4;
    }
    .hero-slider-1.style-3.dot-style-1.dot-style-1-position-1 ul {
        bottom: 0;
    }
    .single-content .banner-text,
    .banner-img.banner-big .banner-text {
        display: none;
    }
    .comments-area {
        padding: 25px 0;
        margin-top: 0;
    }
    .entry-bottom {
        margin-bottom: 0 !important;
    }
    section.pt-150.pb-150 {
        padding: 50px 0 !important;
    }
    .product-detail .single-share {
        margin-bottom: 20px;
    }
    .product-detail .tab-style3 .nav-tabs li.nav-item a {
        padding: 0.5rem;
        text-transform: none;
    }
    .related-products .product-cart-wrap {
        margin-bottom: 30px;
    }
    .mb-sm-15 {
        margin-bottom: 15px;
    }
}

/*phone landscape*/

@media only screen and (min-width: 480px) and (max-width: 667px) {
    .header-bottom-bg-color {
        padding: 3px 0;
    }
    .header-height-2 {
        min-height: 40px;
    }
    .col-lg-4 .banner-img {
        margin-bottom: 30px;
    }
    .banner-features {
        margin-bottom: 30px;
    }
}

/*small phone*/

@media only screen and (max-width: 375px) {
    .entry-meta .hit-count,
    .entry-meta.meta-2 .font-xs {
        display: none;
    }
    .deal {
        padding: 30px;
    }
}

.zoomContainer {
    z-index: 9999;
}

.zoomWindow {
    z-index: 9999;
}

/*-------- Hover Style Css --------*/

.thumb-scale-hover-style {
    position: relative;
    overflow: hidden;
}

.thumb-scale-hover-style .hover-img {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    width: 100%;
}

.thumb-scale-hover-style:hover .hover-img {
    transform: scale(1.045) rotate(0.05deg);
    -webkit-transform: scale(1.045) rotate(0.05deg);
    -moz-transform: scale(1.045) rotate(0.05deg);
    -ms-transform: scale(1.045) rotate(0.05deg);
    -o-transform: scale(1.045) rotate(0.05deg);
}

.zoomImg {
    cursor: crosshair;
    pointer-events: none;
}

.shape-one {
    right: 0;
    top: -155px;
    position: absolute;
    z-index: 1;
}

.shape-two {
    left: 0;
    top: 5px;
    position: absolute;
    z-index: 99;
}

.shape-three {
    right: 40px;
    top: 15px;
    position: absolute;
    z-index: 99;
}

.floating2 {
    animation: animName 2s linear infinite;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes animName {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -0px);
    }
}

.hero-shape-1 {
    max-width: 100px;
    top: auto;
    bottom: 10%;
}

.hero-shape-2 {
    max-width: 200px;
    top: auto;
}

.hero-shape-3 {
    max-width: 200px;
    top: auto;
}

.mad-banner {
    display: block;
    position: relative;
    overflow: hidden;
}

.mad-banner:not(:last-child) {
    margin-bottom: 1.75rem;
}

.mad-banner img {
    width: 100%;
}

.mad-banner:not(.style-3) .mad-banner-inner {
    position: absolute;
    top: 18%;
    right: 66px;
    max-width: 310px;
    z-index: 2;
}

.mad-banner-cat {
    color: #386f7c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

h2.mad-banner-title {
    font-size: 3.75rem;
    line-height: 3.9375rem;
    letter-spacing: -1px;
}

h2.mad-banner-title:not(:last-child) {
    margin-bottom: 2.625rem;
}

.mad-banner-title {
    font-weight: bold;
}

.mad-banner.style-3 {
    margin-bottom: 25px;
}

.mad-banner.style-2 .mad-banner-inner {
    right: 3.25rem;
    max-width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.mad-banner.style-2.left-side .mad-banner-inner {
    right: auto;
    left: 3.25rem;
}

.mad-banner.style-3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    border: 2px solid #fff;
    opacity: 0.6;
    margin-top: 0.4375rem;
    margin-left: 0.4375rem;
    margin-bottom: 0.4375rem;
    transition: all .5s ease;
}

.mad-banner.style-3:hover:after {
    opacity: 1;
}

.mad-banner.style-3 .mad-banner-inner {
    background: #fff;
    padding: 1.0625rem 1.75rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.mad-banner.style-3:hover .mad-banner-title {
    color: #d69080;
}

.mad-banner.style-3 .mad-banner-title {
    font-size: 26px;
    color: #507468;
    font-weight: normal;
    transition: color .45s ease;
    letter-spacing: -0.1px;
}

.mad-banner .mad-banner-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none !important;
}

.hover12 figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover12 figure:hover img {
    opacity: .5;
}

.mad-banner {
    position: relative;
}

.mad-banner::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.mad-banner:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/***

==================================================================
    About Section Three
==================================================================

***/

.about-section-three {
    position: relative;
    padding: 90px 0 70px;
    z-index: 1;
}

.about-section-three .sec-title {
    margin-bottom: 40px;
}

.about-section-three .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section-three .content-column .inner-column {
    position: relative;
}
.about-section-three .content-column .inner-column p{
    text-align: justify;
    font-size: 15px;
}
.about-section-three .content-column .theme-btn {
    margin-top: 10px;
}

.about-section-three .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section-three .about-image-wrapper {
    position: relative;
    padding-right: 50px;
    margin-left: -50px;
    padding-bottom: 100px;
}

.about-section-three .exp-box {
    position: absolute;
    left: -60px;
    top: 70px;
    height: 160px;
    width: 160px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: #111;
    background: #AC6C53;
    border-radius: 0 10px 10px 10px;
    padding: 20px;
}

.about-section-three .exp-box strong {
    font-size: 40px;
    color: #fff;
    display: block;
    margin-bottom: 15px;
}

.about-section-three .exp-box:before {
    position: absolute;
    left: 0;
    top: -40px;
    border-left: 60px solid transparent;
    border-bottom: 40px solid #AC6C53;
    content: "";
}

.about-section-three .image-1 {
    position: relative;
    overflow: hidden;
}

.about-section-three .image-1 img {
    border-radius: 10px;
}

.about-section-three .image-2 {
    position: absolute;
    right: 30px;
    bottom: -90px;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 10px;
}

.about-block-two {
    position: relative;
    padding-left: 110px;
    margin-bottom: 30px;
    min-height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-block-two .icon img {
    width: 50px;
    width: 50px;
}

.about-block-two .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 85px;
    width: 85px;
    background: #507468;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 42px;
    color: #ffffff;
    border-radius: 50%;
}

.about-block-two .icon img:before {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-block-two:hover .icon img {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.about-block-two h4 {
    position: relative;
    font-size: 24px;
    color: #AC6C53;
    font-weight: 700;
    margin-bottom: 10px;
}

@media(max-width: 767px) {
    .about-section-three .exp-box {
        height: 120px;
        width: 120px;
        line-height: 18px;
        left: 0px;
    }
    .about-section-three .image-2 {
        display: none;
    }
    .about-section-three .about-image-wrapper {
        margin-left: 0px;
        padding: 0;
    }
}

.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    padding: 20px 40px;
    font-weight: 600;
    background: #507468;
    letter-spacing: 0.05em;
    border-radius: 10px;
    overflow: hidden;
    text-transform: uppercase;
    display: inline-block;
}

.btn-style-one .btn-title {
    position: relative;
}

.btn-style-one:hover {
    color: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-style-one:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #AC6C53;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.product-tabs {
    position: relative;
}

.fun-fact-section-two {
    position: relative;
    background-repeat: no-repeat;
    background-position: center left;
    padding: 120px 0 80px;
}

.fun-fact-section-two .counter-column .icon {
    position: relative;
    display: block;
    height: 181px;
    width: 181px;
    background: url(../imgs/theme/icons/funfact-bg-1.png) center no-repeat;
    color: #222222;
    font-size: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fun-fact-section-two .counter-column:hover .icon:before {
    position: relative;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.fun-fact-section-two .counter-column:nth-child(2) .icon {
    background: url(../imgs/theme/icons/funfact-bg-2.png) center no-repeat;
    color: #b1656a;
}

.fun-fact-section-two .counter-column:nth-child(3) .icon {
    background: url(../imgs/theme/icons/funfact-bg-3.png) center no-repeat;
    color: #c8ac59;
}

.fun-fact-section-two .counter-column:nth-child(4) .icon {
    background: url(../imgs/theme/icons/funfact-bg-4.png) center no-repeat;
    color: #50b7a3;
}

.fun-fact-section-two .count-box {
    position: relative;
    font-size: 70px;
    color: #AC6C53;
    line-height: 1em;
    font-family: var(--third-font);
}

.fun-fact-section-two .count-box .count-text {
    font-size: 70px;
    color: #AC6C53;
    line-height: 1em;
    margin-bottom: 10px;
}

.fun-fact-section-two .counter-title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #797f7d;
    margin-top: 10px;
}

.single-item {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 26px;
}

.single-item .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 35px;
    line-height: 35px;
}

.single-item h5 {
    position: relative;
    display: block;
    font-size: 19px;
    line-height: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.single-item h5 a {
    display: inline-block;
    color: #222;
}

.img-1 {
    z-index: 100;
    position: relative;
}

@media(min-width: 992px) {
    /*.pw-text img{
        padding-top: 15px;
    }*/
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.h3-services .single-services {
    padding: 33px 27px;
}

.orange {
    background-color: #fcedda;
}

.yellow {
    background-color: #f2fbcb;
}

.purple {
    background-color: #f7d8f9;
}

.sky {
    background-color: #dbfafe;
}

/* about css */

.about__area .shape__1 {
    left: 0;
    top: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .about__area .shape__1 {
        width: 35%;
    }
}

@media (max-width: 1199px) {
    .about__area .shape__1 {
        width: 35%;
    }
}

.about__area .shape__2 {
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .about__area .shape__2 {
        width: 30%;
    }
}

.about__area--2 {
    overflow: hidden;
}

.about__area--2 .shape__1 {
    top: 80px;
}

.about__area--2 .shape__2 {
    top: -60px;
}

@media (max-width: 1199px) {
    .about__area--3 .col-xl-6.d-flex {
        display: block !important;
    }
}

@media (max-width: 1199px) {
    .about__area--4 .mm-reverse {
        flex-direction: column-reverse;
    }
}

.about__left img {
    max-width: auto;
}

@media (max-width: 1199px) {
    .about__left img {
        max-width: inherit;
    }
}

@media (max-width: 991px) {
    .about__left img {
        max-width: inherit;
    }
}

@media (max-width: 767px) {
    .about__left img {
        max-width: 100%;
    }
}

.about__left .year {
    font-size: 130px;
    line-height: 57px;
    color: #ffffff;
    position: absolute;
    bottom: 160px;
    right: 0;
}

@media (max-width: 767px) {
    .about__left .year {
        font-size: 80px;
        right: 15%;
    }
}

@media (max-width: 767px) {
    .about__left--2 {
        text-align: center;
    }
}

.about__left--2 .big {
    max-width: inherit;
}

@media (max-width: 767px) {
    .about__left--2 .big {
        width: 100%;
    }
}

.about__left--2 .small {
    left: -50px;
    bottom: -60px;
}

@media (max-width: 1199px) {
    .about__left--2 .small {
        right: -130px;
        left: auto;
    }
}

@media (max-width: 991px) {
    .about__left--2 .small {
        right: 0;
        left: auto;
    }
}

@media (max-width: 767px) {
    .about__left--2 .small {
        position: static !important;
        left: 0;
        right: 0;
        margin-top: 40px;
    }
}

@media (max-width: 1199px) {
    .about__left--3 {
        display: block !important;
    }
}

.about__left--3 img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about__left--4 .section-heading {
        text-align: left;
    }
}

.about__right {
    position: relative;
    z-index: 2;
    text-align: right;
}

@media (max-width: 1199px) {
    .about__right {
        padding-left: 0px;
        text-align: left;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about__right {
        padding-left: 0px;
        text-align: left;
        margin-top: 0px;
        padding-left:0px !important;
    }
}
.about__right .btns {
    justify-content: flex-end;
}

@media (max-width: 1199px) {
    .about__right .btns {
        justify-content: flex-start;
    }
}

.about__right .btns .video-btn {
    padding-right: 70px;
}

@media (max-width: 1199px) {
    .about__right .btns .video-btn {
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .about__right .section-heading {
        text-align: left;
    }
}

.about__right--2 {
    text-align: left;
}

.about__right--5 {
    border: 1px solid #e2dfdd;
    background: #ffffff;
    box-shadow: 0px 14px 40px 0px rgba(220, 220, 220, 0.3);
    border-radius: 10px;
    padding: 60px;
}

@media (max-width: 1199px) {
    .about__right--5 {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .about__right--5 {
        padding: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about__right--5 {
        padding: 60px;
    }
}

.about__history {
    text-align: left;
    background: #13131a;
    padding: 78.5px 100px;
    border: 1px solid #32323d;
    border-left: 0px;
    padding-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .about__history {
        padding: 78.5px 80px;
    }
}

@media (max-width: 1199px) {
    .about__history {
        margin-top: 0px;
        border-left: 1px;
        border-top: 0px;
    }
}

@media (max-width: 767px) {
    .about__history {
        padding: 50.5px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about__history {
        padding: 78.5px 50px;
    }
}

.about__list .icon {
    color: #292d32;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    border: 1px solid #e2dfdd;
    margin-right: 15px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.about__list li {
    color: #1b2026;
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.about__list li:hover .icon {
    color: #ffffff;
    background-color: #292d32;
    border-color: #292d32;
}

.about__list li:not(:last-child) {
    margin-bottom: 18px;
}

.about__list .text {
    flex: 0 0 90%;
    -ms-flex: 0 0 90%;
    max-width: 90%;
}

.wwa-wrapper {
    position: relative;
}

.wwa-wrapper__img {
    position: absolute;
    top: 125px;
    right: 0px;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .wwa-wrapper__img {
        margin-top: 50px;
        position: static;
        top: 0;
    }
}

.wwa-wrapper__img img {
    border-radius: 10px;
}

.services-text h5 {
    font-size: 18px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.h3-services .single-services img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.h3-services .single-services:hover img {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}
.recent_blog .entry-content-2{
    padding: 12px 10px;
}
.recent_blog .entry-content-2 .post-title{
    font-size: 18px;
}
.contact-title {
    color: #505050;
    font-size: 26px;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}
.contact-title::before {
    background-color: #507468;
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 59px;
}
.contact-form-style input {
    background-color: #f7f7f7;
    border: none;
    font-weight: 500;
    font-size: 12px;
    color: #7d7d7d;
    padding: 0 15px;
    height: 50px;
}
.contact-form-style textarea {
    background-color: #f7f7f7;
    border: medium none;
    color: #7d7d7d;
    font-size: 12px;
    font-weight: 500;
    height: 190px;
    padding: 20px 15px;
}
.contact-form-style input::-moz-placeholder,
.contact-form-style textarea::-moz-placeholder {
    color: #7d7d7d;
    opacity: 1;
}
.contact-form-style input::-webkit-placeholder,
.contact-form-style textarea::-webkit-placeholder {
    color: #7d7d7d;
    opacity: 1;
}

.contact-form-style .btn-style {
    border: medium none;
    padding: 12px 32px;
    margin-top: 40px;
    cursor: pointer;
}
.communication-info {
    background-color: #f7f7f7;
    margin-right: 80px;
    padding: 54px 35px;
}
.single-communication {
    display: flex;
    margin-bottom: 37px;
}
.single-communication:last-child {
    margin-bottom: 0px;
}
.communication-icon i {
    border: 1px solid #ea000d;
    border-radius: 50%;
    color: #ea000d;
    font-size: 24px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    width: 66px;
}
.communication-icon i {
    border: 1px solid #507468;
    border-radius: 50%;
    color: #507468;
    display: inline-block;
    font-size: 18px;
    height: 47px;
    line-height: 47px !important;
    text-align: center;
    width: 47px;
    transition: all 0.3s ease 0s;
}
.communication-icon {
    margin-right: 15px;
}
.communication-text > h4 {
    font-size: 15px;
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
}
.communication-text > p {
    color: #666;
    margin: 0;
    font-size: 14px;
}
.communication-text > p a {
    color: #666;
}
.communication-text > p a:hover {
    color: #507468;
}
.single-communication:hover .communication-icon i {
    background-color: #507468;
    color: #fff;
}
.contact-message p {
    margin-top: 10px;
    margin-bottom: 0;
    color: #555;
}

.blink_text {
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.input-box {
    position: absolute;
    top: calc(100% + 5px);
    right: 33px;
    width: 300px;
    height: 50px;
    padding: 0 55px 0 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
    z-index: 9999;
}

.input-box.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.input-box input{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:15px;
    color:#111;
    padding-right:40px;
}

.input-box input::placeholder{
    color:#999;
}

.input-box .icon{
    position:absolute;
    right:15px;
    left:auto;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    background:#474444;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.input-box .search-icon{
    color:#fff;
    font-size:14px;
    position:static;
    transform:none;
}

.input-box .close-icon{
    position:absolute;
    top:-12px;
    right:-12px;
    width:28px;
    height:28px;
    background:#474444;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    transform:none;
}

.input-box.open .close-icon{
    opacity:1;
    visibility:visible;
}

.testimonials_sec{
    background-color: rgba(162, 126, 43, 0.26);
}
.testimonial{
    background: #fff;
    text-align: center;
    padding: 30px 30px 50px;
    margin: 0 15px 150px;
    position: relative;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.testimonial:before,
.testimonial:after{
    content: "";
    border-top: 40px solid #fff;
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}
.testimonial:after{
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}
.testimonial .icon{
    display: inline-block;
    font-size: 80px;
    color: #bd986b;
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial .description{
    font-size: 15px;
    color: #3e3b34;
    text-align: left;
    margin-bottom: 30px;
}
.testimonial .testimonial-content{
    width: 100%;
    position: absolute;
    left: 0;
}
.testimonial .pic{
    width: 120px;
    height: 120px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px 2px #daad86;
    overflow: hidden;
    z-index: 1;
    position: relative;
    background-color: #fff;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .title{
    font-size: 17px;
    font-weight: bold;
    color: #111;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #333130;
}
@media only screen and (max-width: 650px) and (min-width: 400px){
    .testimonial:before{ border-right: 325px solid transparent; }
    .testimonial:after{ border-left: 325px solid transparent; }
}


.blog-item {
    margin-bottom: 25px;
    transition: all .5s ease-in-out
}

.blog-item:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.blog-item-img img {
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}

.blog-item-info {
    padding-top: 20px
}

.blog-item-meta ul {
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #e6e8eb;
    padding-bottom: 18px
}

.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #232323
}

.blog-item-meta ul li i {
    margin-right: 5px;
    color: #cda45e
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-title a {
    color: #0d0d0e
}

.blog-title a:hover {
    color: #cda45e!important
}

.blog-item-info p {
    margin-bottom: 16px
}

.blog-btn {
    padding: 6px 25px;
    border: 2px solid #cda45e;
    color: #cda45e;
    border-radius: 50px
}

.blog-item-info a:hover {
    color: #cda45e
}

.blog-thumb-img {
    margin-bottom: 20px
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.blog-meta .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog-meta i {
    margin-right: 5px;
    color: #cda45e
}

.blog-meta a {
    color: #66788a
}

.blog-meta a:hover {
    color: #cda45e
}


.section-space--mt_60 {
    margin-top: 20px;
}
.ht-box-images.style-02 {
    display: block;
    transition: 0.5s;
}
.ht-box-images.style-02 .image-box-wrap {
    -webkit-box-shadow: 0 0 40px 5px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 40px 5px rgba(51, 51, 51, 0.1);
    background: #fff;
    border-radius: 5px;
    padding: 30px 38px;
    min-height: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.ht-box-images.style-02 .image-box-wrap .box-image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px;
}
.ht-box-images.style-02 .image-box-wrap .content .heading {
    font-weight: 600;
    line-height: 1.40;
    margin-bottom: 0;
}
.ht-box-images.style-02:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.magnific-img img {
    width: 100%;
    height: auto;
}
.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #ccc;
}
.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}
.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
}
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
}
.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}
.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.services .services-box{
    text-align: left;
}
.services-block-two {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
    /*padding: 0px 15px;*/
}

.services-block-two .inner-box {
	padding: 40px 10px 20px;
}
.services-block-two.style1 .icon{
    min-height: inherit;
}
.services-block-two.style1 .icon i{
    font-size: 45px;
}
.services-block-two .icons {
	position: relative;
	display: inline-block;
    margin: 0px auto 10px;
}
.services-block-two h4 {
	position: relative;
	font-size: 17px;
	font-weight: 600;
	padding-bottom: 20px;
	/*margin-bottom: 20px;*/
}

.services-block-two h4{
	color: #8c4e36;
	-webkit-transition: .5s ease;
	-o-transition: .5s ease;
	transition: .5s ease;
}

.services-block-two h4:hover {
	color: #111;
}

.services-block-two h4:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 2px;
	width: 15px;
	height: 2px;
	background-color: #94c13d;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.services-block-two:hover h4:after {
	width: 50px;
}

.services-block-two h4:before {
	position: absolute;
	content: '';
	left: 50%;
	bottom: -5px;
	width: 30px;
	height: 2px;
	background-color: #94c13d;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.why_us{
    display: flex;
    padding: 0;
    justify-content: center;
}
.why_us li{
    width: 190px;
}
.services-block-two:hover .desc {
    color: #408024;
}
.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
/*.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
     W3C 
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}*/

.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}
.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}


.btn-style-two {
	position: relative;
	padding: 11px 40px;
	border-radius: 25px;
	line-height: 24px;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	background: #94c13d;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 2px solid #94c13d;
}

.btn-style-two:hover {
	color: #ffffff;
	background: #101010;
	border-color: #101010;
}
.btn-style-two.light {
	position: relative;
	padding: 11px 40px;
	border-radius: 25px;
	line-height: 24px;
	color: #7c9330;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	background: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 2px solid #fff;
}

.btn-style-two.light:hover {
	color: #ffffff;
	background: #101010;
	border-color: #101010;
}



.intro-part {
    padding: 20px 0px 40px;
}
.intro-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.intro-wrap:hover .intro-icon i {
    color:#fff;
    background: #cda45e;
}
.intro-icon {
    margin-right: 20px;
}
.intro-icon i {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 43px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: #cda45e;
    background:#fff;
    border: 3px double #cda45e;
    -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.intro-content h5 {
    font-size: 17px;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.intro-content p {
    font-size: 15px;
    line-height: 22px;
}
@media (max-width: 767px) {
    .intro-part {
        padding: 60px 0px 30px;
    }
    .intro-wrap {
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .intro-part {
        padding: 80px 0px 50px;
    }
    .intro-wrap {
        margin-bottom: 30px;
    }
}
.woocommerce-Tabs-panel{
}
.woocommerce-Tabs-panel ul{
    text-align: left;
    max-width: 100% !important;
    padding-left: 15px;
}
.woocommerce-Tabs-panel ul li{
    list-style: disc;
    display: list-item !important;
}
.single-product .entry .entry-content{
    margin: 0px !important;
}





article .woocommerce {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0px auto;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 48%;
    float: left;
}
.button:hover{
    color: #fff;
    text-decoration: none !important;
}
.singular .entry-title{
    text-align: center;
    font-size: 46px;
}
.page-header.breadcrumb-wrap{
    border-bottom: none;
}
span.select2-container {
  max-width: 100% !important;
}



/*==========================
Accordian Box
===========================*/
.accordion {
	 margin: 1rem 0;
	 padding: 0;
	 list-style: none;
	 border-top: 1px solid #e5e5e5;
    text-align: left;
}
 .accordion-item {
	 border: 1px solid #e5e5e5;
     padding: 12px;
}
/* Thumb */
 .accordion-thumb {
	 margin: 0;
	 padding: 0.8rem 0;
	 cursor: pointer;
	 font-weight: normal;
     font-size: 18px;
     color: #231f20;
     font-weight: 600;
}
 .accordion-thumb::before {
	 content: '';
	 display: inline-block;
	 height: 7px;
	 width: 7px;
	 margin-right: 1rem;
	 margin-left: 0.5rem;
	 vertical-align: middle;
	 border-right: 1px solid;
	 border-bottom: 1px solid;
	 transform: rotate(-45deg);
	 transition: transform 0.2s ease-out;
}
/* Panel */
 .accordion-panel {
	 margin: 0;
	 padding-bottom: 0.8rem;
	 display: none;
}
/* Active */
 .accordion-item.is-active .accordion-thumb::before {
	 transform: rotate(45deg);
}
 
.accordion-panel ul{
    padding-left: 15px;
}

.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
  color: #914a2f;
}
.woocommerce-product-attributes-item__value{
    font-size:1rem;
}
.woocommerce-message{
    border-top-color: var(--color-brown);
}



#order_review .order_item{
    text-align:center;
}
#order_review .woocommerce-privacy-policy-text p{
    font-size: 1.4rem !important;
    line-height: 1.8rem !important;
}
.woocommerce-terms-and-conditions-wrapper{
    margin-bottom:2rem !important;
}
.post-12 .woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
    float:left !important;
}
.button{
    background-color: #ac6c53 !important;
    border:none !important;
}
.button:hover{
    background-color: #672b83 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
    float:left !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: left !important;
    
}
.woocommerce-account .woocommerce-EditAccountForm fieldset p{
    margin-bottom:0;
    margin-top:10px;
}
.woocommerce-account .woocommerce-EditAccountForm p{
    margin-top:0;
}
.woocommerce-account .woocommerce-MyAccount-content p{
    font-size: 1.5rem;
    line-height: 1.8rem;
}
.post-13 .entry-title {
    font-size: 48px !important;
    text-align: center !important;
}
.post-651 .entry-title {
    font-size: 48px !important;
    text-align: center !important;
}
.post-13 .woocommerce .col2-set .col-2, .woocommerce-page #customer_login .col-2{
    float: right !important;
}
.post-13 .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
    float: left !important;
}
.post-13 .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height:30px !important;
}
/*.woocommerce-account .woocommerce-MyAccount-content p:first-of-type{
    margin-bottom:1.5rem !important;
}*/
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection{
    margin-top: 1rem !important;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields input{
    border: 2px solid #000;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row{
    margin-bottom:1.5rem !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
    background-color: #edf2ee;
    border-color: #ac6c53;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li{
    border-left: 2px solid transparent;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 15px;
    margin-right: 0px;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link{
    margin-bottom: 10px!important;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link a{
    font-size: 0.95rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul{
    position: relative;
    border-radius: 8px;
    padding: 24px 0px;
    padding-bottom: 12px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}
.woocommerce-order-received table tr{
    height:10px;
}
.woocommerce table.shop_table tbody tr,
.woocommerce-page table.shop_table tbody tr{
    text-align:left;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label{
    font-size:18px;
}

.post-9 .woocommerce-form-row--first{
    float:left !important;
}


.page-header .page-title{
    font-size: 46px;
    font-weight: 600;
}




/*NEW STYLE 20.04.2026*/

/* Header */

.site-header2 {
    background: rgba(253, 252, 247, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header--hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.page-id-17 .site-header--hero .navbar-brand,
.page-id-17 .site-header--hero .nav-main .nav-link,
.page-id-17 .site-header--hero .btn-icon {
    color: #fff !important;
}
.site-header--hero .navbar-brand,
.site-header--hero .nav-main .nav-link,
.site-header--hero .btn-icon {
    color: #111 !important;
}
.navbar-toggler{
    background-color: inherit !important;
}

.site-header--hero .navbar-toggler-icon {
    filter: invert(1);
}

.site-header--hero.scrolled {
    background: rgba(253, 252, 247, 0.96);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    backdrop-filter: blur(12px);
}

.site-header--hero.scrolled .navbar-brand,
.site-header--hero.scrolled .nav-main .nav-link,
.site-header--hero.scrolled .btn-icon {
    color: var(--color-text) !important;
}

.site-header--hero.scrolled .navbar-toggler-icon {
    filter: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--color-forest) !important;
}

.nav-main .nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text) !important;
    padding: 0.5rem 0.85rem !important;
    transition: opacity var(--transition), color var(--transition);
}

.nav-main .nav-link:hover,
.nav-main .nav-link:focus {
    opacity: 0.65;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    color: var(--color-text);
    background-color: inherit !important;
    border: none;
    transition: opacity var(--transition), color var(--transition);
}

.btn-icon:hover,
.btn-icon:focus {
    opacity: 0.6;
    color: var(--color-forest);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    margin-top: -72px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../imgs/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient( 180deg, rgba(26, 60, 52, 0.55) 0%, rgba(26, 43, 38, 0.65) 50%, rgba(15, 35, 30, 0.75) 100%);*/
    background-color: rgba(57, 58, 58, 0.79);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.hero__overline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    opacity: 0.95;
    color: var(--color-cream-alt);
}

.hero__title {
    font-weight: 600;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    color: #fff;
}
.hero__title span{
    font-style: italic;
    color: var(--color-forest)
}
.hero__lead {
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.92;
    font-weight: 500;
    color: #e5ddcd;
}

.btn-hero-solid {
    background: #eee8e8;
    color: #665d5d !important;
    border: #eee8e8;
    padding: 18px 24px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    border-radius: .75rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-hero-solid:hover {
    background: var(--color-green);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-1px);
    border: 1px solid #142e28;
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.85);
    padding: 18px 24px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    border-radius: .75rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff !important;
}

/* Sections */

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #5a8a7a;
}

.section-title {
    font-size: 44px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--color-green);
}

.section-title span {
    color: var(--color-forest-deep);
}

.section--cream {
    background: var(--color-cream);
}

.section--sage {
    background: var(--color-section-sage);
}

.section--forest {
    background: var(--color-forest);
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

.about-image img {
    object-fit: cover;
    min-height: 420px;
}

.badge-pill {
    display: inline-block;
    padding: 0.45rem 1rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--color-pill-bg);
    color: var(--color-text);
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
}

.badge-pill:hover {
    background: #d5e0e6;
    transform: translateY(-1px);
}

/* Products */

.product-card__image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--color-cream-alt);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.25rem 0.65rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--color-forest);
    color: #fff;
    border-radius: 2px;
}

.product-card__tag--new {
    background: var(--color-forest-deep);
}

.product-card__ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    z-index: 1;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card__ribbon--alt {
    top: 18%;
    transform: translate(-50%, 0) rotate(-6deg);
    font-size: 1.1rem;
}

.product-card__overlay-text {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 88%;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.25;
}
.product-card__title{
    font-size: 20px;
}
.product-card__title a{
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-forest-deep);
    text-decoration: none;
}

.product-card__price {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.link-view-all {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--color-forest);
    text-decoration: none;
    transition: opacity var(--transition), letter-spacing var(--transition);
}

.link-view-all:hover {
    opacity: 0.65;
    letter-spacing: 0.26em;
}

/* Benefits */

.benefits-image img {
    object-fit: cover;
    min-height: 380px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(90, 138, 122, 0.2);
    color: #2d6a5a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Steps */

.step-card__num {
    display: block;
    font-size: 2.75rem;
    font-weight: 400;
    color: rgba(26, 60, 52, 0.18);
    line-height: 1;
}

/* Testimonials */
.bg-card {
    background-color: #f2f4f0;
}
.testimonial-card {
    margin: 0;
    padding: 2rem 1.75rem;
    border-radius: 15px;
    border: 1px solid rgba(27, 67, 50, 0.08);
    box-shadow: 0 8px 32px rgba(26, 60, 52, 0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(26, 60, 52, 0.1);
    transform: translateY(-2px);
}

.stars {
    color: #c9a227;
    font-size: 1.35rem;
    letter-spacing: 0.15em;
}

.testimonial-card__quote p{
    color: var(--color-muted);
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
    font-size: 15px;
    font-style: italic !important;
}
.review_name{
    font-weight: 600;
    font-size: 16px;
}

.review_name span{
    font-weight: 400;
    font-size: 14px;
}
/* Newsletter */

/* =========================================
   NEWSLETTER FORM
========================================= */

.newsletter-form {
    max-width: 520px;
}

.newsletter-form .letter-spacing {
    letter-spacing: 0.28em;
}


/* Form */

.newsletter-form form {
    width: 100%;
    margin: 0;
}


/* Input group */

.newsletter-form .input-group {
    display: flex;
    width: 100%;
}


/* Email input */

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    flex: 1;
    min-width: 0;

    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;

    color: #fff !important;

    padding: 0.85rem 1.25rem;

    font-size: 0.85rem;

    outline: none;

    box-shadow: none;
}


/* Placeholder */

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}


/* Focus */

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);

    border-color: rgba(255, 255, 255, 0.5) !important;
}


/* =========================================
   SUBSCRIBE BUTTON
========================================= */

.newsletter-form button,
.newsletter-form input[type="submit"],
.newsletter-form .btn,
.newsletter-form button[type="submit"] {

    background: var(--color-sage) !important;

    color: #fff !important;

    border: none !important;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.2em;

    padding: 0 1.5rem;

    transition:
        background var(--transition),
        opacity var(--transition);

    cursor: pointer;
}


/* Button hover */

.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover,
.newsletter-form .btn:hover,
.newsletter-form button[type="submit"]:hover {

    background: #7a9a7e !important;

    color: #fff !important;
}


/* =========================================
   INPUT / BUTTON RADIUS
========================================= */

.newsletter-form .input-group input:first-child {
    border-radius: 2px 0 0 2px !important;
}

.newsletter-form .input-group button,
.newsletter-form .input-group input[type="submit"] {
    border-radius: 0 2px 2px 0 !important;
}


/* =========================================
   FEEDBACK
========================================= */

.newsletter-form .form-feedback.text-success {
    color: rgba(200, 230, 210, 1) !important;
}

.newsletter-form .form-feedback.text-danger {
    color: #ffb4b4 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-form .input-group {
        display: flex;
    }

    .newsletter-form input[type="email"],
    .newsletter-form input[type="text"] {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .newsletter-form button,
    .newsletter-form input[type="submit"] {
        padding: 0 1rem;
        font-size: 0.6rem;
    }

}

/* Footer */

.footer {
    /*background: var(--color-cream-alt);*/
    border-top: 1px solid rgba(27, 67, 50, 0.06);
    clear: both;
}
.foot_menu li{
    padding-bottom: 7px;
}
.footer-brand {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: var(--color-forest) !important;
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer-brand:hover {
    opacity: 0.7;
}

.footer-heading {
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-forest);
}

.footer a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

.footer ul a:hover {
    color: var(--color-forest);
}

.social-links a {
    color: var(--color-forest);
}

.social-links a:hover {
    opacity: 0.65;
}

.footer-bottom {
    border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.footer-bottom a:hover {
    color: var(--color-forest);
}

/* Back to top */

.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-forest);
    background: var(--color-cream);
    color: var(--color-forest);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), background var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-forest);
    color: #fff;
    transform: translateY(-2px);
}

.bg-mist {
    background-color: #e9eff2;
}


.commitment-box {
    text-align: center;
    padding: 10px 20px;
}
.commitment-box:hover .icon-circle{
    background: #365f4d;
}
.commitment-box:hover .icon-circle svg{
    stroke: #fff;
}
.icon-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #d9e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.icon-circle.dark {
    background: #365f4d;
}

.icon-circle svg {
    width: 34px;
    height: 34px;
    stroke: #365f4d;
    fill: none;
    stroke-width: 1.8;
}

.icon-circle.dark svg {
    stroke: #fff;
}

.box-title {
    font-size: 18px;
    color: #0e2f28;
    margin-bottom: 12px;
    font-weight: 500;
}

.box-text {
    font-size: 14px;
    line-height: 1.6;
    color: #365248;
    font-weight: 300;
}

.text-sand {
    color: #e6dccb !important;
}
.text-white {
    color: var(--color-white);
}
.rounded-4{
    border-radius: 1rem;
}


.page-id-17 .site-header--hero .btn-icon svg{
    stroke: var(--color-white);
}
/*.page-id-17 .header-action-2 .header-action-icon-2 a svg{
    stroke: var(--color-white);
}*/
.site-header--hero.scrolled .header-action-2 .header-action-icon-2 a svg{
    stroke: #111 !important;
}
.mini-cart-icon svg{
    stroke: #111;
}
.btn-icon svg{
    stroke: var(--color-text);
}
.woocommerce-tabs #tab-description p,
.woocommerce-tabs #tab-description ul,
.woocommerce-tabs #tab-description ol{
    margin-bottom: 20px;
    margin-left: 0px;
}
.woocommerce-tabs #tab-description ul{
    list-style: disc;
    padding-left: 15px;
}
.woocommerce-tabs #tab-description ol{
    list-style: decimal;
    padding-left: 15px;
}
.woocommerce-tabs #tab-description h3,
.woocommerce-tabs #tab-description h4,
.woocommerce-tabs #tab-description h5,
.woocommerce-tabs #tab-description h6{
    margin-left: inherit;
    max-width: inherit;
    margin-bottom: 20px;
    margin-top: 20px;
}
.woocommerce-tabs #tab-description ul{
    border-bottom: none !important;
}
.additional_information_tab.active a{
    color: #fff;
}
.page-id-17 .white-logo {
    display: block !important;
}
.page-id-17 .dark-logo {
    display: none !important;
}
.page-id-17 .site-header2:not(.site-header--hero) .white-logo {
    display: none !important;
}
.page-id-17 .site-header2:not(.site-header--hero) .dark-logo {
    display: block !important;
}

.site-header2.site-header--hero .white-logo {
    display: none;
}
.site-header2.site-header--hero .dark-logo {
    display: block;
}



.fa-search::before {
  content: "\f002" !important;
}


.fa-remove::before, .fa-close::before, .fa-times::before {
  content: "\f00d" !important;
}
.payment-icons{
    margin-top: 10px;
}
.shopping-cart-footer .payment-icons{
    margin-top: 5px;
}
.close{
    background-color: #666;
    position: absolute;
    right: 10px;
    top: 15px;
    z-index: 99;
    padding: 0px 10px;
}



.woocommerce-error a.button, 
.woocommerce-info a.button{
    background-color: #111;
    color: #fff;
} 
.woocommerce-error a.button:hover, 
.woocommerce-info a.button:hover{
    background-color: #672b83 !important;
    color: #fff;
}
.woocommerce-message a.button,
.woocommerce .wc-proceed-to-checkout a.button{
    background-color: #ac6c53 !important;
    color: #fff;
}
.woocommerce-message a.button:hover,
.woocommerce .wc-proceed-to-checkout a.button:hover{
    background-color: #046963 !important;
    text-decoration: none !important;
    color: #fff;
}


/* =========================================================
   KSHITII - SINGLE PRODUCT PAGE
   ========================================================= */

.kshitii-single-product {
    --kshitii-bg: #fbf8f3;
    --kshitii-cream: #f5eee5;
    --kshitii-brown: #705443;
    --kshitii-dark: #111;
    --kshitii-muted: #766d65;
    --kshitii-border: #ddd3c8;
    --kshitii-accent: #ac6c53;

    /*background: var(--kshitii-bg);*/
    color: var(--kshitii-dark);
    padding-bottom: 80px;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.kshitii-product-breadcrumb {
    max-width: 1240px;
    margin: 0 auto;
    padding: 25px 30px 10px;
}

.kshitii-breadcrumb {
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--kshitii-muted);
}

.kshitii-breadcrumb a {
    color: var(--kshitii-muted);
    text-decoration: none;
}

.kshitii-breadcrumb a:hover {
    color: var(--kshitii-brown);
}

.kshitii-breadcrumb-separator {
    margin: 0 10px;
    opacity: .5;
}


/* =========================================================
   MAIN PRODUCT AREA
   ========================================================= */

.kshitii-product-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 1.19fr);
    gap: 70px;
    align-items: start;
}


/* =========================================================
   PRODUCT GALLERY
   ========================================================= */

/* =========================================
   KSHITII CUSTOM PRODUCT GALLERY
   ========================================= */

.kshitii-product-gallery {
    width: 100%;
    position: relative;
}


/* Main image area */

.kshitii-gallery-main {
    position: relative;
    width: 100%;
    background: #f5f0e9;
    overflow: hidden;
}


/* Slides */

.kshitii-gallery-slide {
    display: none;
    width: 100%;
}

.kshitii-gallery-slide.active {
    display: block;
}

.kshitii-main-image {
    width: 100% !important;
    height: auto !important;
    max-height: 650px;
    object-fit: contain;
    display: block;
    margin: 0 !important;
}


/* =========================================
   THUMBNAILS
   ========================================= */

.kshitii-gallery-thumbnails {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}


.kshitii-thumbnail-track {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.kshitii-thumbnail-track::-webkit-scrollbar {
    display: none;
}


.kshitii-thumbnail {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    background: inherit !important;
    cursor: pointer;
    overflow: hidden;
}


.kshitii-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    opacity: .6;
    transition: opacity .25s ease;
}


.kshitii-thumbnail:hover img,
.kshitii-thumbnail.active img {
    opacity: 1;
}


.kshitii-thumbnail.active {
    border-color: #705443;
}


/* =========================================
   ARROWS
   ========================================= */

.kshitii-gallery-prev,
.kshitii-gallery-next {
    width: 38px;
    height: 38px;
    min-width: 38px;

    padding: 0;
    margin: 0;

    border: 1px solid #ddd3c8;
    background: #fff;

    color: #705443;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}


.kshitii-gallery-prev:hover,
.kshitii-gallery-next:hover {
    background: #705443;
    color: #fff;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .kshitii-main-image {
        max-height: 500px;
    }

    .kshitii-thumbnail {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
    }

    .kshitii-gallery-prev,
    .kshitii-gallery-next {
        width: 32px;
        min-width: 32px;
        height: 32px;
    }

}


/* =========================================================
   SUMMARY
   ========================================================= */

.kshitii-product-summary {
    padding-top: 15px;
}

.kshitii-product-category {
    color: var(--kshitii-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.kshitii-product-title {
    color: var(--kshitii-dark);
}


/* =========================================================
   RATING
   ========================================================= */

.kshitii-product-rating {
    margin-bottom: 20px;
}

.kshitii-product-rating .star-rating {
    color: var(--kshitii-accent);
}

.kshitii-product-rating .woocommerce-review-link {
    color: var(--kshitii-muted);
    text-decoration: none;
    font-size: 13px;
    margin-left: 8px;
}


/* =========================================================
   PRICE
   ========================================================= */

.kshitii-product-price {
    margin: 5px 0 10px;
}

.kshitii-product-price .price {
    font-size: 20px;
    color: var(--kshitii-dark);
}

.kshitii-product-price del {
    opacity: .5;
    margin-right: 8px;
}

.kshitii-product-price ins {
    text-decoration: none;
}


/* =========================================================
   SHORT DESCRIPTION
   ========================================================= */

.kshitii-product-short-description {
    color: var(--kshitii-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.kshitii-product-short-description p {
    margin-bottom: 10px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.kshitii-product-benefits {
    border-top: 1px solid var(--kshitii-border);
    border-bottom: 1px solid var(--kshitii-border);
    padding: 17px 0;
    margin-bottom: 28px;
}

.kshitii-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--kshitii-muted);
    margin: 9px 0;
}

.kshitii-benefit-icon {
    color: var(--kshitii-accent);
    font-size: 14px;
}


/* =========================================================
   ADD TO CART
   ========================================================= */

.kshitii-add-to-cart {
    margin-top: 20px;
}

.kshitii-add-to-cart form.cart {
    margin-bottom: 0;
}

.kshitii-add-to-cart .quantity {
    margin-right: 10px !important;
}

.kshitii-add-to-cart .quantity .qty {
    height: 54px;
    min-width: 70px;
    border: 1px solid var(--kshitii-border);
    background: #fff;
    color: var(--kshitii-dark);
    text-align: center;
}

.kshitii-add-to-cart .single_add_to_cart_button {
    height: 54px;
    padding: 0 38px;
    background: var(--kshitii-brown);
    color: #fff;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    transition:
        background .3s ease,
        transform .3s ease;
}

.kshitii-add-to-cart .single_add_to_cart_button:hover {
    background: var(--kshitii-dark);
    transform: translateY(-2px);
}


/* =========================================================
   VARIABLE PRODUCTS
   ========================================================= */

.kshitii-add-to-cart
.variations {
    width: 100%;
    margin-bottom: 20px;
}

.kshitii-add-to-cart
.variations td {
    padding: 8px 0;
}

.kshitii-add-to-cart
.variations label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.kshitii-add-to-cart
.variations select {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--kshitii-border);
    background: #fff;
}

.kshitii-add-to-cart
.reset_variations {
    color: var(--kshitii-brown);
    font-size: 12px;
}


/* =========================================================
   STOCK
   ========================================================= */

.kshitii-stock {
    margin-top: 18px;
    color: #68745c;
    font-size: 13px;
}

.kshitii-stock-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #718467;
    margin-right: 7px;
}

.kshitii-out-stock {
    color: #a15c52;
}


/* =========================================================
   PRODUCT META
   ========================================================= */

.kshitii-product-meta {
    border-top: 1px solid var(--kshitii-border);
    margin-top: 25px;
    padding-top: 18px;
}

.kshitii-product-meta .product_meta {
    font-size: 12px;
    color: var(--kshitii-muted);
    line-height: 1.8;
}

.kshitii-product-meta a {
    color: var(--kshitii-brown);
    text-decoration: none;
}


/* =========================================================
   TRUST INFORMATION
   ========================================================= */

.kshitii-product-trust {
    background: var(--kshitii-cream);
    padding: 20px;
    margin-top: 28px;
}

.kshitii-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
}

.kshitii-trust-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kshitii-border);
    border-radius: 50%;
    color: var(--kshitii-accent);
}

.kshitii-trust-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.kshitii-trust-item span:not(.kshitii-trust-icon) {
    display: block;
    color: var(--kshitii-muted);
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================================
   PRODUCT DETAILS
   ========================================================= */
.tinv-wishlist .button:hover{
    background-color: var(--color-green) !important;
    color: var(--color-white) !important;
}
.kshitii-product-details {
    max-width: 1180px;
    margin: 80px auto 0;
    padding: 0 30px;
}

.kshitii-tabs-wrapper
.woocommerce-tabs {
    width: 100% !important;
    margin: 0 !important;
}

.kshitii-tabs-wrapper .wc-tabs {
    display: flex;
    justify-content: left;
    gap: 15px;
    border-bottom: 1px solid var(--kshitii-border);
    margin: 0 !important;
    padding: 0 !important;
}

.kshitii-tabs-wrapper .wc-tabs li {
    background: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 10px 17px !important;
}

.kshitii-tabs-wrapper .wc-tabs li::before,
.kshitii-tabs-wrapper .wc-tabs li::after {
    display: none !important;
}

.kshitii-tabs-wrapper .wc-tabs li a {
    color: var(--kshitii-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    /*text-transform: uppercase;*/
    text-decoration: none;
}

.kshitii-tabs-wrapper.wc-tabs li.active {
    /*! border-bottom: 2px solid var(--kshitii-brown) !important; */
    background-color: var(--button--color-background);
}

.kshitii-tabs-wrapper .wc-tabs li.active a {
    color: var(--kshitii-dark);
}

.kshitii-tabs-wrapper .woocommerce-Tabs-panel {
    padding: 40px 0 !important;
    color: var(--kshitii-muted);
    font-size: 15px;
    line-height: 1.9;
}

.kshitii-tabs-wrapper .woocommerce-Tabs-panel h2 {
    text-align: center;
    color: var(--kshitii-dark);
}
.kshitii-tabs-wrapper .wc-tabs li.active{
    background-color: var(--color-black) !important;
    color: var(--color-white) !important;
}

/* =========================================================
   RELATED PRODUCTS
   ========================================================= */

.kshitii-related-products {
    max-width: 1180px;
    margin: 30px auto 0;
    padding: 0 30px;
}

.kshitii-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.kshitii-eyebrow {
    display: block;
    color: var(--kshitii-accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    margin-bottom: 10px;
}

.kshitii-section-heading h2 {
    
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 10px;
}

.kshitii-section-heading p {
    color: var(--kshitii-muted);
    font-size: 14px;
}


/* Related product cards */

.kshitii-related-products .related.products ul.products {
    margin: 0;
}

.kshitii-related-products .related.products li.product {
    background: transparent;
    text-align: center;
}

.kshitii-related-products .related.products li.product img {
    background: #f1ebe3;
    transition: transform .4s ease;
}

.kshitii-related-products .related.products li.product:hover img {
    transform: scale(1.02);
}

.kshitii-related-products .related.products li.product .woocommerce-loop-product__title {
    color: var(--kshitii-dark);
    
    font-size: 17px;
    font-weight: 400;
}

.kshitii-related-products .related.products li.product .price {
    color: var(--kshitii-brown);
}
.kshitii-related-products ul.products li.product .button{
    color: var(--color-white) !important;
}
.kshitii-related-products ul.products li.product .button:hover{
    
    background-color: var(--color-green) !important;
    color: var(--color-white) !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
    color: var(--color-dark) !important;
}
/* =========================================================
   SALE BADGE
   ========================================================= */

.kshitii-product-gallery .onsale {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    background: var(--kshitii-brown);
    color: #fff;
    min-width: auto;
    min-height: auto;
    padding: 8px 14px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .kshitii-product-main {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 20px;
    }

    .kshitii-product-breadcrumb {
        padding: 20px;
    }

    .kshitii-product-summary {
        padding-top: 0;
    }

    .kshitii-product-title {
        font-size: 40px;
    }

    .kshitii-product-details,
    .kshitii-related-products {
        padding-left: 20px;
        padding-right: 20px;
    }

    .kshitii-tabs-wrapper .wc-tabs {
        display: inline-block;
        justify-content: center;
    }

    .kshitii-tabs-wrapper .wc-tabs li {
        white-space: nowrap;
        padding: 5px 10px !important;
    }
    .kshitii-tabs-wrapper .wc-tabs li a{
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .kshitii-product-main {
        padding: 10px 15px;
    }

    .kshitii-product-title {
        font-size: 34px;
    }

    .kshitii-product-price .price {
        font-size: 22px;
    }

    .kshitii-add-to-cart
    form.cart {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .kshitii-add-to-cart .quantity {
        margin-right: 0 !important;
    }

    .kshitii-add-to-cart .single_add_to_cart_button {
        flex: 1;
        padding: 0 15px;
    }

    .kshitii-product-details,
    .kshitii-related-products {
        padding-left: 15px;
        padding-right: 15px;
    }

    .kshitii-section-heading h2 {
        font-size: 31px;
    }

    .kshitii-product-gallery
    .flex-control-thumbs li {
        width: 60px !important;
    }

}


/* =========================================================
   KSHITII PRODUCT SEARCH PAGE
   ========================================================= */

.kshitii-search-page {
    --ks-bg: #fbf8f3;
    --ks-cream: #f3ece3;
    --ks-brown: #705443;
    --ks-dark: #302821;
    --ks-muted: #766d65;
    --ks-border: #ddd3c8;
    --ks-accent: #a4775d;

    background: var(--ks-bg);
    color: var(--ks-dark);

    padding-bottom: 100px;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.kshitii-search-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;
}

/* =========================================================
   SEARCH HERO
   ========================================================= */

.kshitii-search-hero {
    text-align: center;

    padding: 90px 20px 70px;

    background: #f5efe7;
}

.kshitii-search-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: var(--ks-accent);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.2em;
}

.kshitii-search-title {
    max-width: 850px;

    margin: 0 auto 18px;

    color: var(--ks-dark);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 64px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.025em;
}

.kshitii-search-title span {
    color: var(--ks-brown);
}

.kshitii-search-description {
    max-width: 650px;

    margin: 0 auto 32px;

    color: var(--ks-muted);

    font-size: 14px;

    line-height: 1.8;
}

/* =========================================================
   SEARCH FORM
   ========================================================= */

.kshitii-search-form {
    display: flex;

    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    background: #fff;

    border: 1px solid var(--ks-border);
}

.kshitii-search-form input[type="search"] {
    flex: 1;

    width: 100%;

    min-height: 56px;

    padding: 0 20px;

    border: 0 !important;

    outline: none !important;

    background: transparent;

    color: var(--ks-dark);

    font-size: 14px;

    box-shadow: none !important;
}

.kshitii-search-form input::placeholder {
    color: #9b9188;
}

.kshitii-search-form button {
    min-width: 125px;

    border: 0;

    border-radius: 0;

    background: var(--ks-brown);

    color: #fff;

    cursor: pointer;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition: background 0.25s ease;
}

.kshitii-search-form button:hover {
    background: var(--ks-dark);
}

/* =========================================================
   RESULTS AREA
   ========================================================= */

.kshitii-search-results {
    padding-top: 60px;
}

/* =========================================================
   RESULTS HEADER
   ========================================================= */

.kshitii-results-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.kshitii-results-count {
    color: var(--ks-muted);

    font-size: 13px;
}

/* =========================================================
   SORT
   ========================================================= */

.kshitii-sort-form {
    display: flex;

    align-items: center;

    gap: 12px;
}

.kshitii-sort-form label {
    color: var(--ks-muted);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.kshitii-sort-form select {
    min-width: 180px;

    height: 42px;

    padding: 0 35px 0 14px;

    border: 1px solid var(--ks-border);

    border-radius: 0;

    background: #fff;

    color: var(--ks-dark);

    font-size: 12px;
}

/* =========================================================
   PRODUCT GRID
   ========================================================= */

.kshitii-product-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 24px;

    row-gap: 55px;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.kshitii-search-product {
    min-width: 0;

    margin: 0 !important;

    padding: 0 !important;

    background: transparent;
}

.kshitii-search-product::before,
.kshitii-search-product::after {
    display: none !important;
}

/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.kshitii-search-product-image {
    position: relative;

    overflow: hidden;

    margin-bottom: 18px;

    background: var(--ks-cream);
}

.kshitii-search-product-image > a {
    display: block;

    position: relative;
}

.kshitii-search-product-image img {
    display: block;

    width: 100% !important;

    height: auto !important;

    margin: 0 !important;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.kshitii-search-product:hover .kshitii-search-product-image img {
    transform: scale(1.035);
}

/* =========================================================
   SALE BADGE
   ========================================================= */

.kshitii-sale-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    padding: 7px 12px;

    background: var(--ks-brown);

    color: #fff;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

/* =========================================================
   WISHLIST
   ========================================================= */

.kshitii-product-wishlist {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 4;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: var(--ks-brown);

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.kshitii-product-wishlist:hover {
    background: var(--ks-brown);

    color: #fff;

    transform: scale(1.05);
}

/* =========================================================
   PRODUCT INFO
   ========================================================= */

.kshitii-search-product-info {
    padding: 0 2px;
}

/* Category */

.kshitii-search-product .kshitii-product-category {
    margin-bottom: 7px;

    color: var(--ks-accent);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.14em;

    line-height: 1.4;

    text-transform: uppercase;
}

/* Product title */

.kshitii-search-product-title {
    margin: 0 7px;

    padding: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;

    font-weight: 400;

    line-height: 1.3;
}

.kshitii-search-product-title a {
    color: var(--ks-dark);

    text-decoration: none;
}

.kshitii-search-product-title a:hover {
    color: var(--ks-brown);
}

/* =========================================================
   RATING
   ========================================================= */

.kshitii-search-rating {
    display: flex;

    align-items: center;

    gap: 7px;

    min-height: 20px;

    margin-bottom: 5px;
}

.kshitii-search-rating .star-rating {
    margin: 0 !important;

    color: var(--ks-accent);

    font-size: 11px;
}

.kshitii-search-rating > span {
    color: var(--ks-muted);

    font-size: 10px;
}

/* =========================================================
   PRICE
   ========================================================= */

.kshitii-search-price {
    margin-top: 6px;
}

.kshitii-search-price .price {
    color: var(--ks-brown);

    font-size: 14px;
}

.kshitii-search-price del {
    margin-right: 6px;

    color: #999;

    opacity: 0.65;
}

.kshitii-search-price ins {
    color: var(--ks-brown);

    text-decoration: none;
}

/* =========================================================
   ADD TO CART
   ========================================================= */

.kshitii-search-add-cart {
    margin-top: 13px;
}

.kshitii-search-add-cart .button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: auto;

    min-height: 40px;

    padding: 0 18px;

    border: 1px solid var(--ks-brown);

    border-radius: 0;

    background: transparent;

    color: var(--ks-brown);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.kshitii-search-add-cart .button:hover {
    background: var(--ks-brown);

    color: #fff;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.kshitii-pagination {
    display: flex;

    justify-content: center;

    margin-top: 75px;
}

.kshitii-pagination ul {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.kshitii-pagination li {
    margin: 0;

    padding: 0;
}

.kshitii-pagination a,
.kshitii-pagination span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--ks-border);

    background: transparent;

    color: var(--ks-muted);

    font-size: 12px;

    text-decoration: none;
}

.kshitii-pagination .current {
    border-color: var(--ks-brown);

    background: var(--ks-brown);

    color: #fff;
}

.kshitii-pagination a:hover {
    border-color: var(--ks-brown);

    color: var(--ks-brown);
}

/* =========================================================
   NO RESULTS
   ========================================================= */

.kshitii-no-results {
    max-width: 650px;

    margin: 50px auto 80px;

    padding: 70px 30px;

    text-align: center;

    background: var(--ks-cream);
}

.kshitii-no-results-icon {
    margin-bottom: 20px;

    color: var(--ks-accent);

    font-size: 30px;
}

.kshitii-no-results h2 {
    margin: 0 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;

    font-weight: 400;
}

.kshitii-no-results p {
    margin: 0 auto 25px;

    color: var(--ks-muted);

    font-size: 14px;

    line-height: 1.8;
}

.kshitii-shop-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    background: var(--ks-brown);

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-decoration: none;

    text-transform: uppercase;
}

.kshitii-shop-button:hover {
    background: var(--ks-dark);

    color: #fff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
    .kshitii-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 35px 20px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .kshitii-search-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kshitii-search-hero {
        padding: 60px 15px 50px;
    }

    .kshitii-search-results {
        padding-top: 40px;
    }

    .kshitii-results-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 28px;
    }

    .kshitii-sort-form {
        width: 100%;

        justify-content: space-between;
    }

    .kshitii-sort-form select {
        flex: 1;

        min-width: 0;
    }

    .kshitii-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 12px;

        row-gap: 40px;
    }

    .kshitii-search-product-title {
        font-size: 16px;
    }

    .kshitii-product-wishlist {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }

    .kshitii-search-add-cart .button {
        width: 100%;

        padding: 0 10px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
    .kshitii-search-title {
        font-size: 36px;
    }

    .kshitii-search-form {
        flex-direction: column;

        background: transparent;

        border: 0;

        gap: 8px;
    }

    .kshitii-search-form input[type="search"] {
        min-height: 52px;

        background: #fff;

        border: 1px solid var(--ks-border) !important;
    }

    .kshitii-search-form button {
        min-height: 50px;
    }

    .kshitii-no-results {
        padding: 50px 20px;
    }
}

.return-to-shop .button{
    background-color: #ac6c53 !important;
    color: #fff !important;
    text-align: center;
    margin-bottom: 1em;
    padding: 1em !important;
}
.return-to-shop .button,
.woocommerce-form-login__submit,
.woocommerce-form-register__submit:hover{
    background: var(--color-green) !important;
    transform: translateY(-2px);
}
.woocommerce a.remove{
    color: #046963;
}
.woocommerce a.remove:hover{
    background-color: inherit !important;
    color: var(--global--color-primary) !important;
}
.woocommerce-Tabs-panel--additional_information table th,
.single-product .woocommerce-Tabs-panel--additional_information table td{
    border: 1px solid #666 !important;
    padding: 2px 10px;
}
.tinv-wishlist .product-action{
    width: inherit;
}
.return-to-shop a.button{
    background-color: #ac6c53 !important;
}
.return-to-shop a.button:hover{
    background-color: #046963 !important;
    text-decoration: none !important;
}
.button span{
    color: #fff !important;
}
.shipping-calculator-form .button{
    margin-top: 15px;
}
.woocommerce-shipping-calculator .button:hover{
    color: #fff !important;
}
.if_addedcart .added_to_cart.wc-forward{
    margin-left: 10px;
}
.woocommerce form .form-row .input-text, 
.woocommerce form .form-row select{
    height: 45px;
}

/* =========================================
   KSHITII WISHLIST
========================================= */

.kshitii-wishlist-page {
    padding: 70px 0;
    background: #fff;
}


/* Header */

.kshitii-wishlist-header {
    margin-bottom: 40px;
}

.kshitii-wishlist-header h1 {
    margin: 0 0 8px;
    font-size: 36px;
    font-weight: 500;
    color: #252525;
}

.kshitii-wishlist-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* Card */

.kshitii-wishlist-card {
    position: relative;
    height: 100%;
    background: #fff;
}


/* Image */

.kshitii-wishlist-card-image {
    position: relative;
    overflow: hidden;
    background: #f7f4ef;
}

.kshitii-wishlist-card-image > a:first-child {
    display: block;
}

.kshitii-wishlist-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .4s ease;
}

.kshitii-wishlist-card:hover
.kshitii-wishlist-card-image img {
    transform: scale(1.03);
}


/* Remove */

.kshitii-wishlist-remove {
    position: relative;
    font-size: 26px;
    line-height: 1;

    text-decoration: none;
    border: none !important;
    color: var(--white) !important;    
    background: var(--global--color-primary);
}
.kshitii-wishlist-remove:hover {
    color: var(--white-color) !important;    
    background-color: inherit !important;
}

/* Body */

.kshitii-wishlist-card-body {
    padding: 18px 5px 0;
    text-align: center;
}


/* Category */

.kshitii-wishlist-category {
    margin: 0 0 6px;
    color: #888;
    font-size: 12px;
}


/* Product name */

.kshitii-wishlist-card-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}

.kshitii-wishlist-card-body h3 a {
    color: #333;
    text-decoration: none;
}

.kshitii-wishlist-card-body h3 a:hover {
    color: #b36f52;
}


/* Price */

.kshitii-wishlist-price {
    margin-bottom: 14px;
    color: #333;
    font-size: 15px;
}

.kshitii-wishlist-price del {
    color: #999;
    margin-right: 5px;
}

.kshitii-wishlist-price ins {
    color: #b36f52;
    text-decoration: none;
}


/* Add to cart */

.kshitii-wishlist-cart a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    background: #b36f52;
    color: #fff !important;

    border-radius: 3px;

    font-size: 13px;
    text-decoration: none;
}

.kshitii-wishlist-cart a:hover {
    background: #965a40;
}


/* Empty */

.kshitii-empty-wishlist {
    padding: 100px 20px;
    text-align: center;
    background: #faf9f6;
    border: 1px solid #eee7df;
}
.kshitii-empty-wishlist a.btn{
    background-color: var(--color-black) !important;
}
.kshitii-empty-wishlist a.btn:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
}
.kshitii-empty-wishlist-icon {
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 1;
    color: #b36f52;
}

.kshitii-empty-wishlist h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 500;
}

.kshitii-empty-wishlist p {
    margin: 0 0 25px;
    color: #777;
}

.kshitii-wishlist-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 25px;

    background: #b36f52;
    color: #fff !important;

    text-decoration: none;
    border-radius: 3px;
}

.kshitii-wishlist-shop-btn:hover {
    background: #965a40;
}


/* Mobile */

@media (max-width: 767px) {

    .kshitii-wishlist-page {
        padding: 45px 0;
    }

    .kshitii-wishlist-header h1 {
        font-size: 30px;
    }

    .kshitii-wishlist-card-body {
        padding-top: 12px;
    }

}

/* =========================================
   KSHITII CHECKOUT
========================================= */

.kshitii-checkout-page {
    padding: 60px 0 80px;
    background: #fff;
}

/* =========================================
   CHECKOUT BENEFITS
========================================= */

.kshitii-checkout-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
    padding: 14px 0;

    border-top: 1px solid #e5e0da;
    border-bottom: 1px solid #e5e0da;
}


/* Individual benefit */

.kshitii-checkout-benefit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #555;

    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
}


/* Icon */

.kshitii-checkout-benefit i {
    color: #b36f52;

    font-size: 16px;
    line-height: 1;
}


/* Hover */

.kshitii-checkout-benefit:hover {
    color: #333;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .kshitii-checkout-benefits {
        gap: 8px;
    }

    .kshitii-checkout-benefit {
        gap: 4px;
        font-size: 9px;
    }

    .kshitii-checkout-benefit i {
        font-size: 13px;
    }

}
/* =========================================
   HEADER
========================================= */

.kshitii-checkout-header {
    margin-bottom: 40px;
}

.kshitii-checkout-header h1 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #252525;
}

.kshitii-checkout-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================
   BOXES
========================================= */

.kshitii-checkout-box,
.kshitii-order-box {
    padding: 30px;
    border: 1px solid #e5e0da;
    background: #fff;
    margin-bottom: 25px;
}

.kshitii-order-box {
    position: sticky;
    top: 30px;
    background: #faf9f6;
}


/* =========================================
   SECTION TITLE
========================================= */

.kshitii-section-heading {
    margin-bottom: 25px;
}

.kshitii-section-heading h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #252525;
}


/* =========================================
   CHECKOUT FORM
========================================= */

.kshitii-checkout-form .form-row {
    margin-bottom: 18px;
}

.kshitii-checkout-form label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.kshitii-checkout-form label .required {
    color: #b36f52;
}


/* Inputs */

.kshitii-checkout-form input.input-text,
.kshitii-checkout-form select,
.kshitii-checkout-form textarea {
    width: 100%;
    border: 1px solid #d8d3cc;
    border-radius: 2px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    transition: .2s ease;
}


/* Input */

.kshitii-checkout-form input.input-text {
    height: 48px;
    padding: 0 14px;
}


/* Select */

.kshitii-checkout-form select {
    height: 48px;
    padding: 0 14px;
    cursor: pointer;
}


/* Textarea */

.kshitii-checkout-form textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}


/* Focus */

.kshitii-checkout-form input.input-text:focus,
.kshitii-checkout-form select:focus,
.kshitii-checkout-form textarea:focus {
    border-color: #b36f52;
    box-shadow: 0 0 0 2px rgba(179, 111, 82, .08);
}


/* Placeholder */

.kshitii-checkout-form input::placeholder,
.kshitii-checkout-form textarea::placeholder {
    color: #999;
}


/* =========================================
   CHECKBOX
========================================= */

.kshitii-checkout-form input[type="checkbox"] {
    width: 15px;
    height: 15px;
}


/* =========================================
   ORDER REVIEW
========================================= */

#order_review {
    width: 100%;
}

.kshitii-order-box table.shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
}

.kshitii-order-box table.shop_table th,
.kshitii-order-box table.shop_table td {
    padding: 14px 10px;
    border-bottom: 1px solid #ded8d0;
    background: transparent;
    text-align: left;
}

.kshitii-order-box table.shop_table th:last-child,
.kshitii-order-box table.shop_table td:last-child {
    text-align: right;
}


/* Product */

.kshitii-order-box .product-name {
    font-size: 14px;
    color: #333;
}

.kshitii-order-box .product-total {
    font-size: 14px;
    color: #333;
}


/* Subtotal */

.kshitii-order-box .cart-subtotal th,
.kshitii-order-box .cart-subtotal td {
    font-weight: 500;
}


/* Total */

.kshitii-order-box .order-total th,
.kshitii-order-box .order-total td {
    padding-top: 20px;
    border-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.kshitii-order-box .order-total .amount {
    color: #b36f52;
}


/* =========================================
   PAYMENT
========================================= */

.kshitii-order-box #payment {
    margin-top: 25px;
    padding: 0;
    background: transparent;
}

.kshitii-order-box #payment ul.payment_methods {
    padding: 0;
    margin: 0;
    border: 0;
}

.kshitii-order-box #payment .payment_box {
    padding: 15px;
    margin: 12px 0;
    background: #fff;
    color: #666;
    font-size: 13px;
}


/* Payment labels */

.kshitii-order-box #payment label {
    color: #333;
    font-size: 14px;
}


/* =========================================
   PLACE ORDER
========================================= */

.kshitii-order-box #place_order {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    border: 0;
    border-radius: 3px;
    background: var(--color-black) !important;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s ease;
}

.kshitii-order-box #place_order:hover {
    background: var(--color-green) !important;
}


/* =========================================
   CHECKBOX / TERMS
========================================= */

.kshitii-order-box .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.kshitii-order-box .woocommerce-privacy-policy-text {
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   WOOCOMMERCE NOTICES
========================================= */

.kshitii-checkout-page .woocommerce-error,
.kshitii-checkout-page .woocommerce-info,
.kshitii-checkout-page .woocommerce-message {
    margin-bottom: 25px;
    padding: 15px 18px;
    border: 1px solid #e5e0da;
    background: #faf9f6;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .kshitii-order-box {
        position: static;
        margin-top: 20px;
    }

}


@media (max-width: 767px) {

    .kshitii-checkout-page {
        padding: 40px 0 60px;
    }

    .kshitii-checkout-header h1 {
        font-size: 30px;
    }

    .kshitii-checkout-box,
    .kshitii-order-box {
        padding: 20px;
    }

    .kshitii-section-heading h2 {
        font-size: 20px;
    }

}
/* =========================================
   CHECKOUT PRODUCT IMAGE
========================================= */

.kshitii-order-box .kshitii-checkout-product-image {
    max-width: 60px !important;
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    border: 1px solid #e5e0da;
    background: #fff;
}

.kshitii-order-box .kshitii-checkout-product-name {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 80px);
}


/* Mobile */

@media (max-width: 767px) {

    .kshitii-order-box .kshitii-checkout-product-image {
        width: 50px;
        height: 50px;
        margin-right: 8px;
    }

    .kshitii-order-box .kshitii-checkout-product-name {
        max-width: calc(100% - 65px);
    }

}

.woocommerce-info::before{
    color: var(--color-brown) !important;
}
.woocommerce-info{
    border-top-color: var(--color-green);
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    background-color: var(--color-brown) !important;
}
.woocommerce .woocommerce-form-login input[type="checkbox"]{
    border: 1.5px solid var(--form--border-color);
    width: 15px;
    height: 15px;
}
.show-password-input{
    background-color: inherit !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    background-color: var(--color-black) !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
    color: var(--color-white) !important;
}
/*.woocommerce form .form-row button.show-password-input{
    background-color: var(--color-black) !important;
}
.woocommerce form .form-row button.show-password-input:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
    color: var(--color-white) !important;
}*/
#woocommerce-checkout-form-coupon button[type="submit"]{
    padding: 15px 20px !important;
    background-color: var(--color-black) !important;
}
#woocommerce-checkout-form-coupon button[type="submit"]:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
    color: var(--color-white) !important;
}
.kshitii-checkout-btn{
    background-color: var(--color-black) !important;
}
.kshitii-checkout-btn:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
    color: var(--color-white) !important;
}
.woocommerce-form-register__submit{
    background-color: var(--color-black) !important;
}
.woocommerce-form-register__submit:hover{
    background-color: var(--color-green) !important;
    border: 1px solid var(--color-green);
    color: var(--color-white) !important;
}


/* =========================================================
   KSHITII - WOOCOMMERCE MY ACCOUNT
   COMPLETE STYLESHEET
========================================================= */


/* =========================================================
   01. MAIN ACCOUNT WRAPPER
========================================================= */

.kshitii-account-page {
    width: 100%;
    padding: 70px 0 80px;
    background: #fff;
}

.kshitii-account-page .container {
    width: 100%;
}


/* Main 2-column layout */

.kshitii-account-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}


/* =========================================================
   02. SIDEBAR
========================================================= */

.kshitii-account-sidebar {
    width: 100%;
    border: 1px solid #dfe5e3;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}


/* ---------------------------------------------------------
   User information
--------------------------------------------------------- */

.kshitii-account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-bottom: 1px solid #dfe5e3;
    background: #fafafa;
}

.kshitii-account-avatar {
    flex: 0 0 55px;
}

.kshitii-account-avatar img {
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.kshitii-account-user-info {
    min-width: 0;
}

.kshitii-account-user-info span {
    display: block;
    margin-bottom: 3px;
    color: #888;
    font-size: 11px;
    line-height: 1.3;
}

.kshitii-account-user-info h3 {
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    word-break: break-word;
}


/* =========================================================
   03. ACCOUNT NAVIGATION
========================================================= */

.kshitii-account-nav-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.kshitii-account-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kshitii-account-nav li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #dfe5e3;
}

.kshitii-account-nav li:last-child {
    border-bottom: 0;
}

.kshitii-account-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    min-height: 55px;
    padding: 0 28px;

    background: #fff;
    color: #333;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease;
}


/* Navigation icon */

.kshitii-account-nav li a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    min-width: 17px;

    color: #888;

    font-size: 15px;
    line-height: 1;

    transition: color .2s ease;
}


/* Hover */

.kshitii-account-nav li a:hover {
    background: #f7f9f8;
    color: var(--color-green);
}

.kshitii-account-nav li a:hover i {
    color: var(--color-green);
}


/* Active item */

.kshitii-account-nav li.is-active a,
.kshitii-account-nav li.woocommerce-MyAccount-navigation-link--is-active a {
    background: var(--color-green);
    color: #fff;
}

.kshitii-account-nav li.is-active a i,
.kshitii-account-nav li.woocommerce-MyAccount-navigation-link--is-active a i {
    color: #fff;
}


/* =========================================================
   04. RIGHT CONTENT
========================================================= */

.kshitii-account-content {
    min-width: 0;
    width: 100%;
    color: #333;
}

.kshitii-account-content > *:first-child {
    margin-top: 0;
}


/* =========================================================
   05. DASHBOARD
========================================================= */

.kshitii-dashboard {
    width: 100%;
}


/* Dashboard heading */

.kshitii-dashboard-heading {
    margin: 0 0 25px;
}

.kshitii-dashboard-heading > span {
    display: block;
    margin-bottom: 6px;

    color: var(--color-green);

    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kshitii-dashboard-heading h2 {
    margin: 0 0 8px;

    color: #222;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
}

.kshitii-dashboard-heading p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* Dashboard cards */

.kshitii-account-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.kshitii-account-card {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fff;
    color: #333;

    text-decoration: none;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.kshitii-account-card:hover {
    border-color: var(--color-green);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.kshitii-account-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    min-width: 48px;
    height: 48px;

    background: #eef8f7;
    color: var(--color-green);

    font-size: 19px;
}

.kshitii-account-card h3 {
    margin: 0 0 4px;

    color: #333;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.kshitii-account-card p {
    margin: 0;

    color: #888;

    font-size: 12px;
    line-height: 1.5;
}


/* Custom dashboard welcome */

.kshitii-dashboard-box {
    width: 100%;

    border: 1px solid #dfe5e3;
    border-radius: 5px;

    background: #fff;

    overflow: hidden;
}

.kshitii-dashboard-box-header {
    padding: 16px;

    border-bottom: 1px solid #dfe5e3;

    background: #f7f8f8;

    color: #222;

    font-size: 14px;
    line-height: 1.4;
}

.kshitii-dashboard-box-content {
    padding: 16px;
}

.kshitii-dashboard-box-content p {
    margin: 0;

    color: #333;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   06. GENERAL ACCOUNT SECTION
========================================================= */

.kshitii-account-section {
    width: 100%;
}

.kshitii-account-section-heading {
    margin: 0 0 28px;
}

.kshitii-account-section-heading > span {
    display: block;

    margin-bottom: 6px;

    color: var(--color-green);

    font-size: 11px;
    line-height: 1.2;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.kshitii-account-section-heading h2 {
    margin: 0 0 8px;

    color: #222;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
}

.kshitii-account-section-heading p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   07. GENERAL WOOCOMMERCE NOTICES
========================================================= */

.kshitii-account-content .woocommerce-message,
.kshitii-account-content .woocommerce-info,
.kshitii-account-content .woocommerce-error {
    position: relative;

    margin: 0 0 25px;
    padding: 14px 18px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #f8faf9;

    color: #444;

    font-size: 13px;
    line-height: 1.6;
}

.kshitii-account-content .woocommerce-message {
    border-left: 3px solid var(--color-green);
}

.kshitii-account-content .woocommerce-info {
    border-left: 3px solid var(--color-green);
}

.kshitii-account-content .woocommerce-error {
    border-left: 3px solid #c55b5b;
    background: #fff8f8;
}

.kshitii-account-content .woocommerce-message a,
.kshitii-account-content .woocommerce-info a {
    color: var(--color-green);
}


/* =========================================================
   08. ORDERS
========================================================= */

.kshitii-orders-table {
    width: 100%;
    overflow-x: auto;
}

.kshitii-orders-table table {
    width: 100%;
    min-width: 650px;

    border-collapse: collapse;
    border: 1px solid #dfe5e3;
    background: #fff;
}

.kshitii-orders-table th {
    padding: 14px 15px;

    border-bottom: 1px solid #dfe5e3;

    background: #f7f8f8;

    color: #444;

    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.kshitii-orders-table td {
    padding: 16px 15px;

    border-bottom: 1px solid #e7ebe9;

    color: #555;

    font-size: 13px;
    line-height: 1.5;
}

.kshitii-orders-table tr:last-child td {
    border-bottom: 0;
}

.kshitii-orders-table tr:hover td {
    background: #fcfdfd;
}


/* Order number */

.kshitii-orders-table td strong {
    color: #222;
}


/* Order status */

.kshitii-order-status {
    display: inline-flex;
    align-items: center;

    min-height: 27px;
    padding: 4px 9px;

    border-radius: 3px;

    background: #eef8f7;
    color: var(--color-green);

    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}


/* Status variations */

.kshitii-order-status.status-completed {
    background: #eef8f7;
    color: var(--color-green);
}

.kshitii-order-status.status-processing {
    background: #fff8e9;
    color: #9a721e;
}

.kshitii-order-status.status-pending {
    background: #fff8e9;
    color: #9a721e;
}

.kshitii-order-status.status-cancelled,
.kshitii-order-status.status-failed {
    background: #fff1f1;
    color: #b94d4d;
}


/* View order */

.kshitii-view-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 13px;

    border-radius: 3px;

    background: var(--color-green);
    color: #fff !important;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    transition: background .2s ease;
}

.kshitii-view-order:hover {
    background: #06756e;
}


/* =========================================================
   09. WOOCOMMERCE DEFAULT ORDERS TABLE
========================================================= */

.kshitii-account-content table.woocommerce-orders-table {
    width: 100%;
    border: 1px solid #dfe5e3;
    border-collapse: collapse;
    background: #fff;
}

.kshitii-account-content table.woocommerce-orders-table th {
    padding: 14px;
    background: #f7f8f8;
    border-bottom: 1px solid #dfe5e3;

    color: #444;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.kshitii-account-content table.woocommerce-orders-table td {
    padding: 15px 14px;
    border-bottom: 1px solid #e7ebe9;

    color: #555;
    font-size: 13px;
}


/* =========================================================
   10. PAGINATION
========================================================= */

.kshitii-pagination {
    margin-top: 25px;
}

.kshitii-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.kshitii-pagination li {
    margin: 0;
}

.kshitii-pagination a,
.kshitii-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;
    padding: 0 10px;

    border: 1px solid #dfe5e3;
    border-radius: 3px;

    background: #fff;
    color: #444;

    font-size: 12px;

    text-decoration: none;
}

.kshitii-pagination .current,
.kshitii-pagination a:hover {
    border-color: var(--color-green);
    background: var(--color-green);
    color: #fff;
}


/* =========================================================
   11. ACCOUNT FORMS
========================================================= */

.kshitii-account-form {
    width: 100%;
}

.kshitii-account-form .form-row {
    margin: 0 0 20px;
}

.kshitii-account-form label {
    display: block;

    margin: 0 0 7px;

    color: #333;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.kshitii-account-form label .required {
    color: #d04c4c;
}


/* Inputs */

.kshitii-account-form input.input-text,
.kshitii-account-form input[type="text"],
.kshitii-account-form input[type="email"],
.kshitii-account-form input[type="tel"],
.kshitii-account-form input[type="password"],
.kshitii-account-form select,
.kshitii-account-form textarea {

    width: 100%;

    border: 1px solid #cfd7d4;
    border-radius: 3px;

    background: #fff;
    color: #333;

    outline: none;
    box-shadow: none;

    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Input height */

.kshitii-account-form input.input-text,
.kshitii-account-form input[type="text"],
.kshitii-account-form input[type="email"],
.kshitii-account-form input[type="tel"],
.kshitii-account-form input[type="password"],
.kshitii-account-form select {
    height: 48px;
    padding: 0 13px;
}


/* Textarea */

.kshitii-account-form textarea {
    min-height: 120px;
    padding: 12px 13px;
    resize: vertical;
}


/* Focus */

.kshitii-account-form input:focus,
.kshitii-account-form select:focus,
.kshitii-account-form textarea:focus {
    border-color: var(--color-green);

    box-shadow:
        0 0 0 2px rgba(7, 140, 131, .08);
}


/* =========================================================
   12. ACCOUNT PASSWORD FIELDSET
========================================================= */

.kshitii-account-form fieldset {
    margin: 30px 0;
    padding: 22px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fafafa;
}

.kshitii-account-form fieldset legend {
    display: block;

    width: auto;

    margin: 0;
    padding: 0 8px;

    color: #222;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
}


/* =========================================================
   13. ACCOUNT BUTTONS
========================================================= */

.kshitii-account-button,
.kshitii-account-form button,
.kshitii-account-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 0 24px;

    border: 0;
    border-radius: 3px;

    background: var(--color-green);
    color: #fff !important;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition: background .2s ease;
}

.kshitii-account-button:hover,
.kshitii-account-form button:hover,
.kshitii-account-form input[type="submit"]:hover {
    background: #06756e;
    color: #fff;
}


/* =========================================================
   14. ADDRESSES
========================================================= */

.kshitii-account-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.kshitii-account-content .woocommerce-Address {
    position: relative;

    padding: 22px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fff;
}


/* Address title */

.kshitii-account-content .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.kshitii-account-content .woocommerce-Address-title h3 {
    margin: 0;

    color: #222;

    font-size: 17px;
    font-weight: 500;
}


/* Edit address */

.kshitii-account-content .woocommerce-Address-title a {
    color: var(--color-green);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.kshitii-account-content .woocommerce-Address-title a:hover {
    text-decoration: underline;
}


/* Address text */

.kshitii-account-content .woocommerce-Address address {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.8;

    font-style: normal;
}


/* Address form */

.kshitii-account-content form.woocommerce-EditAddressForm {
    width: 100%;
}


/* =========================================================
   15. PAYMENT METHODS
========================================================= */

.kshitii-account-content .woocommerce-PaymentMethods,
.kshitii-account-content .woocommerce-PaymentMethods ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kshitii-account-content .woocommerce-PaymentMethods li {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fff;
}


/* Payment method title */

.kshitii-account-content .woocommerce-PaymentMethods .method {
    color: #333;
    font-size: 14px;
}


/* Delete */

.kshitii-account-content .woocommerce-PaymentMethods .delete {
    color: #c05252;
    font-size: 12px;
    text-decoration: none;
}


/* =========================================================
   16. DOWNLOADS
========================================================= */

.kshitii-account-content .woocommerce-table--order-downloads {
    width: 100%;
    border: 1px solid #dfe5e3;
    border-collapse: collapse;
}

.kshitii-account-content .woocommerce-table--order-downloads th {
    padding: 14px;

    background: #f7f8f8;

    border-bottom: 1px solid #dfe5e3;

    color: #444;

    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.kshitii-account-content .woocommerce-table--order-downloads td {
    padding: 15px 14px;

    border-bottom: 1px solid #e7ebe9;

    color: #555;

    font-size: 13px;
}

.kshitii-account-content .woocommerce-table--order-downloads .download-file a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 14px;

    border-radius: 3px;

    background: var(--color-green);
    color: #fff !important;

    font-size: 12px;

    text-decoration: none;
}


/* =========================================================
   17. VIEW ORDER
========================================================= */

.kshitii-account-content .woocommerce-order-details {
    margin-top: 0;
}

.kshitii-account-content .woocommerce-order-details__title {
    margin: 0 0 20px;

    color: #222;

    font-size: 24px;
    font-weight: 500;
}


/* Order details table */

.kshitii-account-content .woocommerce-table--order-details {
    width: 100%;

    border: 1px solid #dfe5e3;
    border-collapse: collapse;

    background: #fff;
}

.kshitii-account-content .woocommerce-table--order-details th {
    padding: 14px;

    background: #f7f8f8;

    border-bottom: 1px solid #dfe5e3;

    color: #444;

    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.kshitii-account-content .woocommerce-table--order-details td {
    padding: 15px 14px;

    border-bottom: 1px solid #e7ebe9;

    color: #555;

    font-size: 13px;
}


/* Product links */

.kshitii-account-content .woocommerce-table--order-details a {
    color: var(--color-green);
    text-decoration: none;
}

.kshitii-account-content .woocommerce-table--order-details a:hover {
    text-decoration: underline;
}


/* Order total */

.kshitii-account-content .woocommerce-table--order-details tfoot th,
.kshitii-account-content .woocommerce-table--order-details tfoot td {
    font-weight: 600;
}


/* =========================================================
   18. CUSTOMER DETAILS / ORDER ADDRESS
========================================================= */

.kshitii-account-content .woocommerce-customer-details {
    margin-top: 30px;
}

.kshitii-account-content .woocommerce-customer-details h2 {
    margin: 0 0 18px;

    color: #222;

    font-size: 22px;
    font-weight: 500;
}

.kshitii-account-content .woocommerce-customer-details h3 {
    margin: 0 0 10px;

    color: #333;

    font-size: 16px;
    font-weight: 600;
}

.kshitii-account-content .woocommerce-customer-details address {
    padding: 20px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fff;

    color: #666;

    font-size: 13px;
    line-height: 1.8;

    font-style: normal;
}


/* =========================================================
   19. EMPTY STATES
========================================================= */

.kshitii-empty-account {
    padding: 70px 20px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fafafa;

    text-align: center;
}

.kshitii-empty-account i {
    display: block;

    margin-bottom: 15px;

    color: var(--color-green);

    font-size: 42px;
}

.kshitii-empty-account h3 {
    margin: 0 0 8px;

    color: #222;

    font-size: 22px;
    font-weight: 500;
}

.kshitii-empty-account p {
    margin: 0 0 20px;

    color: #777;

    font-size: 13px;
}


/* =========================================================
   20. LOGIN / REGISTER
========================================================= */

.kshitii-account-login-page {
    width: 100%;
    padding: 70px 0;
}

.kshitii-account-login-wrapper {
    /*max-width: 900px;*/
    margin: 0 auto;
}

.kshitii-account-login-wrapper .u-column1,
.kshitii-account-login-wrapper .u-column2 {
    width: 100%;
}


/* Login/register boxes */

.kshitii-account-login-wrapper form.login,
.kshitii-account-login-wrapper form.register {
    margin: 0;
    padding: 30px;

    border: 1px solid #dfe5e3;
    border-radius: 4px;

    background: #fff;
}


/* Login headings */

.kshitii-account-login-wrapper h2 {
    margin: 0 0 25px;

    color: #222;

    font-size: 25px;
    font-weight: 500;
}


/* =========================================================
   21. LOGIN FORM
========================================================= */

.kshitii-account-login-wrapper .form-row {
    margin-bottom: 18px;
}

.kshitii-account-login-wrapper label {
    display: block;

    margin-bottom: 7px;

    color: #333;

    font-size: 13px;
    font-weight: 500;
}

.kshitii-account-login-wrapper input.input-text {
    width: 100%;
    height: 48px;

    padding: 0 13px;

    border: 1px solid #cfd7d4;
    border-radius: 3px;

    background: #fff;

    outline: none;

    font-size: 14px;
}

.kshitii-account-login-wrapper input.input-text:focus {
    border-color: var(--color-green);
}


/* Remember me */

.kshitii-account-login-wrapper .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #666;

    font-size: 12px;
    font-weight: 400;
}


/* Login button */

.kshitii-account-login-wrapper button {
    min-height: 45px;

    padding: 0 24px;

    border: 0;
    border-radius: 3px;

    background: var(--color-green);
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}


/* Lost password */

.kshitii-account-login-wrapper .woocommerce-LostPassword {
    margin-top: 15px;
}

.kshitii-account-login-wrapper .woocommerce-LostPassword a {
    color: var(--color-green);

    font-size: 13px;

    text-decoration: none;
}


/* =========================================================
   22. LOGIN / REGISTER COLUMNS
========================================================= */

/* =========================================================
   WOOCOMMERCE LOGIN / REGISTER
========================================================= */

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    box-sizing: border-box;
}


/* Main login/register columns */

.woocommerce-account .u-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;

    /*! width: 100%; */
    margin: 0;
}


/* Login column */

.woocommerce-account .u-columns .u-column1,
.woocommerce-account .u-columns .u-column2 {

    float: none;

    width: 48%;
    max-width: 48%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* Forms */

.woocommerce-account .u-columns form.login,
.woocommerce-account .u-columns form.register {

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    margin: 0;
}


/* =========================================================
   LOGIN / REGISTER HEADINGS
========================================================= */

.woocommerce-account .u-columns h2 {
    margin: 0 0 25px;

    color: #222;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.woocommerce-account .u-columns .form-row {
    width: 100%;
    margin-bottom: 18px;
}

.woocommerce-account .u-columns label {
    display: block;

    margin-bottom: 7px;

    color: #222;

    font-size: 14px;
}


/* Inputs */

.woocommerce-account .u-columns input.input-text,
.woocommerce-account .u-columns input[type="text"],
.woocommerce-account .u-columns input[type="email"],
.woocommerce-account .u-columns input[type="password"] {

    display: block;

    width: 100%;
    max-width: 100%;

    height: 42px;

    padding: 0 13px;

    box-sizing: border-box;

    border: 1px solid #cfd7d4;
    border-radius: 3px;

    background: #fff;

    color: #333;

    outline: none;
}


/* Focus */

.woocommerce-account .u-columns input.input-text:focus,
.woocommerce-account .u-columns input[type="text"]:focus,
.woocommerce-account .u-columns input[type="email"]:focus,
.woocommerce-account .u-columns input[type="password"]:focus {

    border-color: #078c83;

    box-shadow: 0 0 0 2px rgba(7, 140, 131, .08);
}


/* =========================================================
   BUTTON
========================================================= */

.woocommerce-account .u-columns button.woocommerce-button,
.woocommerce-account .u-columns button[name="login"],
.woocommerce-account .u-columns button[name="register"] {

    min-height: 45px;

    padding: 0 24px;

    border: 0;
    border-radius: 3px;

    background: #078c83;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.woocommerce-account .u-columns button:hover {
    background: #06756e;
}


/* =========================================================
   REMEMBER ME
========================================================= */

.woocommerce-account .u-columns .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;

    width: auto;

    gap: 7px;

    color: #555;

    font-size: 13px;
    font-weight: 400;
}


/* =========================================================
   LOST PASSWORD
========================================================= */

.woocommerce-account .u-columns .lost_password {
    margin-top: 15px;
}

.woocommerce-account .u-columns .lost_password a {
    color: #078c83;
    font-size: 13px;
    text-decoration: none;
}


/* =========================================================
   REGISTER PRIVACY TEXT
========================================================= */

.woocommerce-account .u-columns .woocommerce-privacy-policy-text {
    margin-bottom: 20px;

    color: #777;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .woocommerce-account .u-columns {

        display: block;

        width: 100%;
    }


    .woocommerce-account .u-columns .u-column1,
    .woocommerce-account .u-columns .u-column2 {

        width: 100%;
        max-width: 100%;

        margin-bottom: 30px;
    }


    .woocommerce-account .u-columns h2 {
        font-size: 24px;
    }

}

/* =========================================================
   23. CHECKBOX / RADIO
========================================================= */

.kshitii-account-page input[type="checkbox"],
.kshitii-account-page input[type="radio"] {
    accent-color: var(--color-green);
}


/* =========================================================
   24. SELECT2
========================================================= */

.kshitii-account-page .select2-container {
    width: 100% !important;
}

.kshitii-account-page .select2-container .select2-selection--single {
    height: 48px;

    border: 1px solid #cfd7d4;
    border-radius: 3px;

    background: #fff;
}

.kshitii-account-page
.select2-container
.select2-selection--single
.select2-selection__rendered {
    height: 48px;

    padding-left: 13px;

    color: #333;

    line-height: 48px;
    font-size: 14px;
}

.kshitii-account-page
.select2-container
.select2-selection--single
.select2-selection__arrow {
    height: 46px;
}


/* =========================================================
   25. FORM VALIDATION
========================================================= */

.kshitii-account-page .woocommerce-invalid input,
.kshitii-account-page .woocommerce-invalid select,
.kshitii-account-page .woocommerce-invalid textarea {
    border-color: #c75a5a;
}

.kshitii-account-page .woocommerce-validated input,
.kshitii-account-page .woocommerce-validated select,
.kshitii-account-page .woocommerce-validated textarea {
    border-color: var(--color-green);
}


/* =========================================================
   26. REQUIRED
========================================================= */

.kshitii-account-page .required {
    color: #c84e4e;
}


/* =========================================================
   27. LINKS
========================================================= */

.kshitii-account-content a {
    color: var(--color-green);
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
}

.kshitii-account-content a:hover {
    color: #06756e;
}



/* =========================================================
   28. HIDE UNNECESSARY DEFAULT ELEMENTS
========================================================= */

.kshitii-account-page
.woocommerce-MyAccount-navigation {
    display: none !important;
}


/*
 * We use our own navigation.
 */

.kshitii-account-page
.woocommerce-MyAccount-content {
    float: none;
    width: 100%;
}


/* =========================================================
   29. MOBILE - TABLET
========================================================= */

@media (max-width: 991px) {

    .kshitii-account-page {
        padding: 50px 0 60px;
    }

    .kshitii-account-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .kshitii-account-sidebar {
        width: 100%;
    }

    /*
     * Keep sidebar vertical on tablet.
     */

    .kshitii-account-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .kshitii-account-nav li {
        border-bottom: 1px solid #dfe5e3;
    }

    .kshitii-account-nav li:nth-child(odd) {
        border-right: 1px solid #dfe5e3;
    }

    .kshitii-account-nav li a {
        min-height: 52px;
        padding: 0 18px;
    }

    .kshitii-account-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   30. MOBILE
========================================================= */

@media (max-width: 767px) {

    .kshitii-account-page {
        padding: 35px 0 50px;
    }


    /* Sidebar */

    .kshitii-account-user {
        padding: 16px;
    }

    .kshitii-account-nav {
        display: block;
    }

    .kshitii-account-nav li {
        border-bottom: 1px solid #dfe5e3;
        border-right: 0 !important;
    }

    .kshitii-account-nav li a {
        min-height: 50px;
        padding: 0 18px;
    }


    /* Dashboard */

    .kshitii-dashboard-heading h2,
    .kshitii-account-section-heading h2 {
        font-size: 24px;
    }

    .kshitii-dashboard-heading p,
    .kshitii-account-section-heading p {
        font-size: 13px;
    }


    /* Cards */

    .kshitii-account-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kshitii-account-card {
        padding: 16px;
    }


    /* Address */

    .kshitii-account-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .kshitii-account-content .woocommerce-Address {
        padding: 18px;
    }


    /* Forms */

    .kshitii-account-form fieldset {
        padding: 18px;
    }


    /* Orders */

    .kshitii-orders-table {
        overflow: visible;
    }

    .kshitii-orders-table table,
    .kshitii-account-content table.woocommerce-orders-table {
        min-width: 0;
        border: 0;
    }

    .kshitii-orders-table thead,
    .kshitii-account-content table.woocommerce-orders-table thead {
        display: none;
    }

    .kshitii-orders-table tbody,
    .kshitii-orders-table tr,
    .kshitii-account-content table.woocommerce-orders-table tbody,
    .kshitii-account-content table.woocommerce-orders-table tr {
        display: block;
        width: 100%;
    }

    .kshitii-orders-table tr,
    .kshitii-account-content table.woocommerce-orders-table tr {
        margin-bottom: 15px;

        border: 1px solid #dfe5e3;
        border-radius: 4px;

        background: #fff;
    }

    .kshitii-orders-table td,
    .kshitii-account-content table.woocommerce-orders-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 11px 14px;

        border-bottom: 1px solid #edf0ef;

        text-align: right;
    }

    .kshitii-orders-table td:last-child,
    .kshitii-account-content table.woocommerce-orders-table td:last-child {
        border-bottom: 0;
    }

    .kshitii-orders-table td::before,
    .kshitii-account-content table.woocommerce-orders-table td::before {
        content: attr(data-title);

        color: #333;

        font-size: 12px;
        font-weight: 600;

        text-align: left;
    }


    /* Order details */

    .kshitii-account-content .woocommerce-table--order-details {
        border: 1px solid #dfe5e3;
    }

    .kshitii-account-content .woocommerce-table--order-details th,
    .kshitii-account-content .woocommerce-table--order-details td {
        padding: 11px 10px;
        font-size: 12px;
    }


    /* Downloads */

    .kshitii-account-content .woocommerce-table--order-downloads {
        display: block;
        overflow-x: auto;
    }


    /* Login */

    .woocommerce-account .u-columns {
        grid-template-columns: 1fr;
    }

    .kshitii-account-login-wrapper form.login,
    .kshitii-account-login-wrapper form.register {
        padding: 22px;
    }


    /* Empty state */

    .kshitii-empty-account {
        padding: 50px 15px;
    }

}


/* =========================================================
   31. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kshitii-account-page {
        padding: 25px 0 40px;
    }

    .kshitii-account-user {
        gap: 10px;
    }

    .kshitii-account-avatar,
    .kshitii-account-avatar img {
        width: 45px;
        height: 45px;
    }

    .kshitii-account-user-info h3 {
        font-size: 14px;
    }

    .kshitii-account-nav li a {
        padding: 0 15px;
        font-size: 13px;
    }

    .kshitii-account-card {
        gap: 12px;
    }

    .kshitii-account-card-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .kshitii-account-form input.input-text,
    .kshitii-account-form input[type="text"],
    .kshitii-account-form input[type="email"],
    .kshitii-account-form input[type="tel"],
    .kshitii-account-form input[type="password"],
    .kshitii-account-form select {
        height: 45px;
    }

}
.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-message::before{
    padding-left: 0.5em;
}


.kshitii-cart-message {
    position: fixed;
    top: 90px;
    right: 25px;

    z-index: 999999;

    display: flex;
    align-items: center;
    gap: 10px;

    max-width: 420px;

    margin: 0 !important;
    padding: 14px 18px !important;

    border: 1px solid #dce7e4 !important;
    border-left: 4px solid #078c83 !important;
    border-radius: 4px;

    background: #fff !important;
    color: #333 !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    font-size: 13px;
    line-height: 1.5;
}

.kshitii-cart-message::before {
    display: none !important;
}

.kshitii-cart-message > i {
    color: #078c83;
    font-size: 17px;
    flex-shrink: 0;
}

.kshitii-cart-message span {
    display: block;
}

.kshitii-cart-message strong {
    color: #222;
}

@media (max-width: 767px) {

    .kshitii-cart-message {
        top: 70px;
        right: 15px;
        left: 15px;

        max-width: none;

        font-size: 12px;
    }

}

.product-card__add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 40px;
    padding: 0 18px;

    border: 0;
    border-radius: 3px;

    background: #078c83;
    color: #fff !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: all .2s ease;
}

.product-card__add-to-cart:hover {
    background: #06756e !important;
    color: #fff !important;
}

.product-card__add-to-cart i {
    font-size: 14px;
}

.product-card__add-to-cart.loading {
    opacity: .6;
    pointer-events: none;
}

.product-card__add-to-cart.added {
    opacity: .8;
}

/* =========================================
   PRODUCT CART ACTION
========================================= */

.kshitii-product-cart-action {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   QUANTITY
========================================= */

.kshitii-quantity {
    display: inline-flex;
    align-items: center;

    height: 40px;

    border: 1px solid #ddd;
    border-radius: 3px;

    background: #fff;
}


/* Quantity buttons */

.kshitii-qty-minus,
.kshitii-qty-plus {

    width: 32px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #333;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;
}

.kshitii-qty-minus:hover,
.kshitii-qty-plus:hover {
    color: #078c83;
}


/* Quantity input */

.kshitii-qty-input {

    width: 35px !important;
    height: 38px !important;

    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    color: #333;

    font-size: 13px;

    text-align: center;

    box-shadow: none !important;

    outline: none;
}


/* Remove browser arrows */

.kshitii-qty-input::-webkit-outer-spin-button,
.kshitii-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.kshitii-qty-input[type="number"] {
    -moz-appearance: textfield;
}


/* Add cart button */

.kshitii-add-cart-btn {

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0 !important;

    flex-shrink: 0;
}


/* Loading */

.kshitii-add-cart-btn.loading {
    opacity: .5;
    pointer-events: none;
}


/* Mobile */

@media (max-width: 575px) {

    .kshitii-product-cart-action {
        gap: 5px;
    }

    .kshitii-qty-minus,
    .kshitii-qty-plus {
        width: 28px;
    }

    .kshitii-qty-input {
        width: 30px !important;
    }

}


.tinvwl_add_to_wishlist-text{
    display: none;
}
.home_products .tinvwl-shortcode-add-to-cart{
    width: auto !important;
    margin: initial !important;
}