@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900');



/*=====================ROOT COLOR THEME================*/
:root {
    /* --first-color: #43b02a;
    --first-inverse-color: #43b02a;
    --second-color: #ff6633;
    --second-inverse-color: #ff6633;
    --grey-darkest: #333333;
    --grey-darker: #555555;
    --grey-dark: #888888;
    --grey-light: #bfbfbf;
    --grey-lighter: #ebebeb;
    --grey-lightest: #f0f0f0; */

    --white-color: #ffffff;
    --black-color: #000000;

    --txt-color: var(--grey-darkest);
    --txt-color-light: var(--grey-darker);
    --border-color: var(--grey-lighter);
    --border-color-one: var(--grey-lighter);
    --border-color-second: var(--grey-lighter);
}

/*==========================CLEARFIX============================*/
.-clearfix:before,
-clearfix:after {
    clear: both;
    display: block;
    content: "";
}

.-clear-right {
    float: right !important;
    clear: right !important;
}

.-clear-left {
    float: left !important;
    clear: left !important;
}


/*==========================HEADING TAGS============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.6px;
    font-family: inherit;
    text-transform: none;
    margin: 0;
    line-height: normal;
}

h1 {
    /*font-size: 2.2rem;*/
    font-size: calc(24px + (36 - 24) * ((100vw - 300px) / (1600 - 300)));
}

h2 {
    /*font-size: 1.5rem;*/
    font-size: calc(22px + (32 - 22) * ((100vw - 300px) / (1600 - 300)));
}

h3 {
    /*font-size: 1.8rem;*/
    font-size: calc(20px + (28 - 20) * ((100vw - 300px) / (1600 - 300)));
}

h4 {
    /*font-size: 1.6rem;*/
    font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1600 - 300)));
}

h5 {
    /*font-size: 1.6rem;*/
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1600 - 300)));
}

h6 {
    /*font-size: 1rem*/
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1600 - 300)));
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
}


@media (max-width:767px) {
    /*  h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.2rem
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.2rem;
    }*/
}

/*==================REQUIRED AND MANDATORY=================*/
.mandatory {
    color: red;
}


/*======================TYPOGRAPHY AND ITS STYLING=====================*/
p {
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 15px 0;
    white-space: normal;
}

p img {
    margin: 0;
}

p.lead {
    font-size: 21px;
    color: #777;
}

.-text-small {
    font-size: 0.85rem;
    color: #999;
}

.-style-uppercase,
.-style-uppercase * {
    text-transform: uppercase;
}

.-style-italic {
    font-style: italic;
}

.-style-bold {
    font-weight: 700;
}

.-border-bottom {
    border-bottom: 1px solid #ddd;
}

.-border-top {
    border-top: 1px solid #ddd;
}



/*===========================CONTAINER=================*/
.container {
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 1362px;
}

@media(max-width:767px) {
    .container {
        width: 96%;
    }
}

.container .container {
    width: 100%;
}

.container:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.container--fixed {
    max-width: 1362px;
}

.container--narrow {
    max-width: 1020px;
}

.container--sm {
    max-width: 500px;
}

/*========================INPUT===================*/
input[type="submit"],
input[type="button"] {
    outline: none;
    /* background: transparent; */
    border: 0px;
}

/*===========================OVERLAY===============*/
.overlay,
.facebox_overlayBG,
.overlay-filter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
    opacity: 1;
    background-color: rgba(240, 240, 240, 0.8);
}



html.address-is-active .overlay.overlay-address,
body.toggled_left .overlay.overlay-sidenav,
.toggled-user .overlay.overlay-user,
.toggled-action .overlay.overlay-action,
.cart-is-active .overlay.overlay-cart {
    opacity: 1;
    visibility: visible;
}

/*
html.cart-is-active .header__nav .overlay.common_overlay {
     opacity: 0;
     visibility: hidden;
}
*/

.overlay.overlay-action {
    z-index: 19;
}

.overlay.overlay-address {
    z-index: 19;
}

@media (max-width:1199px){
    .toggled-action .overlay.overlay-action{
        z-index: 22;
    }
    .address-is-active .overlay.overlay-address{
        z-index: 22;
    }

    .toggled-action .header__top, .address-is-active .header__top{
        z-index: 23;
    }
    
}


@media (max-width: 1200px) {
    html.show-filters .overlay-filter {
        opacity: 1;
        visibility: visible;
    }
}

html.show-filters .body {
    z-index: 22;
}

/*=============================ALIGNMENT==================*/
.-float-left {
    float: left !important;
}

.-float-right {
    float: right !important;
}

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

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

.-align-center,
.align--center

/*align--center used in existing pages*/
    {
    text-align: center !important;
}

.-align-justify {
    text-align: justify !important;
}

.-align-auto {
    margin: auto !important;
}


/*=============================DISPLAY & HIDING==================*/
.-line {
    width: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    height: 2px;
}

.-display-inline-top {
    display: inline-block !important;
    vertical-align: top !important;
}

.-display-inline {
    display: inline-block !important;
    vertical-align: middle !important;
}

.-display-inline-top {
    display: inline-block !important;
    vertical-align: top !important;
}

.-hide-desktop {
    display: none !important;
}



@media(max-width:1024px) {
    .-hide-tab {
        display: none !important;
    }

    .-show-tab {
        display: block !important;
    }

    .-show-responsive {
        display: inline-block !important;
    }

    .-hide-responsive {
        display: none !important;
    }

}

/*=====================TEXTUAL LINKS & STYLING===================*/
.-link-underline {
    text-decoration: underline;
}

.-style-uppercase,
.-style-uppercase * {
    text-transform: uppercase;
}

.-style-italic {
    font-style: italic;
}

.-style-bold {
    font-weight: 700;
}

.-box-shadow-xy {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}

.-color-primary {
    color: var(--first-color) !important;
}


/*=====================ANIMATION===================*/
.-transition {
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}


/*=====================NO EFFECTS AND STYLING===================*/
.-no-hover {
    box-shadow: none !important;
    cursor: default !important;
}

.-no-border {
    border: none !important;
}

.-no-border-bottom {
    border-bottom: none !important;
}

.-no-border-top {
    border-top: none !important;
}

.-no-border-right {
    border-right: none !important;
}

.-no-border-left {
    border-left: none !important;
}

.-no-margin {
    margin: 0 !important;
}

.-no-margin-top {
    margin-top: 0 !important;
}

.-no-margin-left {
    margin-left: 0 !important;
}

.-no-margin-right {
    margin-right: 0 !important;
}

.-no-margin-bottom {
    margin-bottom: 0 !important;
}

.-no-padding {
    padding: 0 !important;
}

.-no-padding-top {
    padding-top: 0 !important;
}

.-no-padding-left {
    padding-left: 0 !important;
}

.-no-padding-right {
    padding-right: 0 !important;
}

.-no-padding-bottom {
    padding-bottom: 0 !important;
}

.-no-background-color {
    background-color: transparent !important;
}


/*=====================SECTION HEADING===================*/
.section-head {
    display: table;
    width: 100%;
    margin-bottom: 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.section-head a {
    color: #888;
    font-size: 0.875rem;
    cursor: pointer;
}

/*=====================SCROLL and SCROLLBAR==================*/
.scrollbar {
    overflow: auto;
    width: 100% !important;
    max-height: 200px;
    padding: 0 !important;
    position: relative;
}

.scroll-track {
    width: 10px;
    right: -10px !important;
    position: relative;
}


.scroll-handle {
    width: 4px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 0 0 3px;
    border-radius: 3px;
    -webkit-transition: width 250ms;
    transition: width 250ms;
}

@media(max-width:1024px) {

    .horiz-scroller {
        overflow-y: hidden;
        overflow-x: scroll;
        white-space: nowrap;
        position: relative;
    }

    .horiz-scroller [class*="col-"] {
        display: inherit;
    }

    /* .horiz-scroller:after {
        background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 72%, #ffffff 73%) repeat scroll 0 0;
        bottom: 0;
        content: "";
        pointer-events: none;
        position: absolute;
        right: -10px;
        top: 0;
        width: 50%;
    }*/
}

@media(max-width:768px) {
    .mini-horiz-scroller {
        overflow-y: hidden;
        overflow-x: scroll;
        white-space: nowrap;
        position: relative;
        display: inline-block;
    }

    .mini-horiz-scroller [class*="col-"] {
        display: inherit;
        width: 50%;
    }
}

/*==========================FILLING BACKGROUNDS============*/
/*Overwrite esiting live css*/
.bg--second {
    background: #4d4d4d;
}

.white-fill {
    background-color: #fff;
}

@media(min-width:1210px) {

    .-padding-rl-large {
        padding-left: 100px;
        padding-right: 100px;
    }

    .-padding-rl-medium {
        padding-left: 50px;
        padding-right: 50px;
    }

    .-padding-rl-small {
        padding-left: 30px;
        padding-right: 30px;
    }
}




/*==================ROW AND COL AND SECTION================*/
.section-grey {
    background-color: var(--grey-lightest);
}
.section-black {
    background-color: var(--black-color);
}

.section,
.site-section,
.dashboard {
    padding: 50px 0;
}

@media(max-width:767px) {

    .section,
    .site-section,
    .dashboard {
        padding: 30px 0;
    }
}

.dashboard {
    padding-top: 25px;
}

.dashboard .container {
    max-width: 1440px;
}

.section-inside {
    padding: 15px;
    display: inline-block;
    width: 100%;
}

@media(min-width:1199px) {

    .section,
    .site-section,
    .dashboard {
        padding: 70px 0;
    }
}

@media(min-width:1025px) {
    .section-inside {
        padding: 30px;
    }
}

/*=====================FORM & BUTTON & LINK====================*/
.form-head {}

.form-head h4 {
    /*font-size: 1.875rem;*/
    font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1600 - 300)));
}

.form-head p {
    font-size: 0.8125rem;
    color: #b1b1b1;
}


.btn,
.form input[type="submit"],
.form input[type="button"] {
    box-shadow: none;
    text-transform: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
}

.btn--black {
    background-color: #333;
}

.btn--block {
    display: block;
    width: 100%;
    height: auto;
}

.btn-large {
    min-width: 170px;
    height: auto;
    padding: 0;
}

.btn-large-h {
    height: 50px;
    line-height: 50px;
}

.btn.btn--large {
    box-shadow: none;
    padding: 8px;
}

.btn--small,
.btn--sm {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    font-size: 0.9rem;
}

.btn--wide {
    min-width: 250px;
}

.btn--border {
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
}

.btn--border.border-color-black {
    border-color: #333;
}

.btn--border.border-color-first {
    border-color: var(--first-color);
    color: var(--first-color) !important;
}

.btn--border.border-color-second {
    border-color: var(--second-color);
    color: var(--second-color) !important;
}

.btn.btn-transpaent {
    background-color: transparent;
}

.text-link {
    color: #888;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
}



/*===================SVG===================*/
.svg-icon {
    display: inline-block;
    fill: #858585;
    vertical-align: middle;
}

.svg-icon svg {
    width: 15px;
}

.svg-icon.svg-star {
    fill: var(--first-color);
}

.svg-icon.svg-star svg {
    width: 9px;
    margin-top: -1px;
    display: block;
    height: 10px;
    margin-left: 2px;
}

.svg-icon.svg-basket svg {
    width: 25px;
    fill: currentColor;
}

.svg-icon.svg-grid svg {
    fill: #fff;
    stroke: #a6a6a6;
    stroke-linejoin: round;
    stroke-width: 2px;
    fill-rule: evenodd;
    width: 25px;
}

.svg-icon.svg-list svg {
    fill: #fff;
    fill-opacity: 0;
    stroke: #a6a6a6;
    stroke-linejoin: round;
    stroke-width: 2px;
    fill-rule: evenodd;
    width: 26px;
}

/*==============ROUNDED CORNERS=============*/
.round-1 {
    border-radius: 4px;
}

.round-2 {
    border-radius: 6px;
}

.round-3 {
    border-radius: 10px !important;
}

/*==================CAROUSEL and SLICK and LOADER==============*/
.loading {
    background-image: url(images/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
}

.carousel {
    margin: 0 -10px;
}

.slick-disabled {
    opacity: 0;
    cursor: default;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    margin: auto;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/*Slick Arrow*/
.slick-arrow {
    /* background-color: #fff; */
    /* border: 1px solid var(--border-color-one); */
    background-color: var(--grey-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    text-indent: -9999px;
    position: absolute;
    z-index: 9;
    top: 50%;
    margin-top: -25px;
    background-position: center;
    background-repeat: no-repeat;
}

.slick-arrow:before {
    content: "";
    position: absolute;
    left: 21px;
    width: 14px;
    height: 2px;
    background-color: #000;
    top: 30px;
}

.slick-arrow:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #333;
    border-style: solid;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 27px;
}

.slick-prev {
    left: 0
}

.slick-arrow.slick-prev:after {
    right: 28px;
    left: auto;
    border-right-width: 2px;
    border-top-width: 2px;
    border-left: 0px;
    border-bottom: 0px;
}

.slick-arrow.slick-prev:before {
    left: 24px;
}

.slick-next {
    right: 0
}

.slick-arrow.slick-next:after {
    left: 29px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-right: 0px;
    border-top: 0px;
}

@media(max-width:1024px) {
    .slick-arrow {
        width: 50px;
        height: 50px;
    }

    .slick-arrow:after {
        top: 20px;
    }

    .slick-arrow:before {
        left: 16px;
        top: 23px;
    }

    .slick-arrow.slick-prev:before {
        left: 18px;
    }

    .slick-arrow.slick-prev:after {
        right: 24px;
    }

    .slick-arrow.slick-next:after {
        left: 23px;
    }
}

@media(max-width:767px) {
    .slick-arrow {
        background-color: transparent;
    }

    .slick-arrow::before {
        background-color: transparent;
        height: 8px;
        width: 8px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        top: 20px;
        left: 21px;
    }

    .slick-arrow.slick-prev::before {
        left: 20px;
        transform: rotate(44deg);
        -webkit-transform: rotate(44deg);
    }

    .advertisement-wrapper .slick-dots,
    .testimonial-wrapper .slick-dots {
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;
        -webkit-transform: none;
        text-align: center;
        margin-top: 10px;
    }

    .advertisement-wrapper .slick-dots li,
    .testimonial-wrapper .slick-dots li {
        padding: 0;
        margin: 0 2px
    }

    .advertisement-wrapper .slick-dots li button,
    .testimonial-wrapper .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .testimonial-wrapper .slick-prev {
        left: 10px;
    }

    .testimonial-wrapper .slick-next {
        right: 10px;
    }
}

/*----Slick dots*/
.slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
}

.slick-dots li button {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid var(--second-color);
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: var(--second-color);
}

.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

/*==================DIVIDER AND GAP============*/
/*.divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}*/

.container--cms .divider {
    margin: 0;
}


.-gap,
.gap {
    height: 20px;
    display: block;
    clear: both;
}

.padding-30 {
    padding: 30px;
}

.-padding-15 {
    padding: 15px;
}


/*=====================LISTING=================*/
.list-vertical li {
    display: block;
    padding: 0 0 10px 0;
    text-transform: capitalize;
    position: relative;
    color: #333;
}


/*===================RATING===================*/
.rated-wrap {}

.rated {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid var(--first-color);
    color: var(--txt-color);
    vertical-align: middle;
    padding: 0px;
    /*border: solid 1px var(--first-color);border-radius: 2px;*/
    margin-top: 5px;
    height: 20px;
    padding-right: 5px;
    padding-left: 5px;
}

.rated .rate {
    line-height: 1;
    font-size: 0.8em;
    display: inline-block;
    vertical-align: middle;
}


/*==================INPUT and SELECT================*/
select:focus {
    box-shadow: none;
}


/*
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea,
select {
    box-shadow: 0px 2px var(--border-color-one);
    -moz-box-shadow: 0px 2px var(--border-color-one);
    -webkit-box-shadow: 0px 2px var(--border-color-one);
}
*/


/*==================PLACEHOLDER===========*/
::-webkit-input-placeholder {
    color: #888888;
    /* Firefox */
}
::-moz-placeholder {
    color: #888888;
    /* Firefox */
}
:-ms-input-placeholder {
    color: #888888;
    /* Firefox */
}
::-ms-input-placeholder {
    color: #888888;
    /* Firefox */
}
::placeholder {
    color: #888888;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #888888;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #888888;
}

/*===================PLUS SYMBOL==================*/
.plus-symbol {
    bottom: 0;
    cursor: pointer;
    display: block;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible;
    width: 40px;
    z-index: 1;
}


.plus-symbol:before {
    background: #333;
    content: "";
    height: 2px;
    left: 14px;
    position: absolute;
    top: 20px;
    width: 10px;
}

.plus-symbol:after {
    background: #333;
    content: "";
    height: 2px;
    left: 14px;
    position: absolute;
    top: 20px;
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    width: 10px;
}


.plus-symbol.active:after {
    display: none;
}

/*====================ARROW=================*/

.arrow {
    position: relative;
    display: inline-block;
    padding-right: 35px;
}

.arrow:after {
    position: absolute;
    right: 10px;
    top: 50%;
    content: "";
    width: 7px;
    height: 7px;
    transform: translateY(-80%) rotate(-45deg);
    -moz-transform: translateY(-80%) rotate(-45deg);
    -webkit-transform: translateY(-80%) rotate(-45deg);
}

.arrow.arrow--down:after {
    border-left: 1px solid #333333;
    border-bottom: 1px solid #333333;
}


/*==================HEADER==================*/

/*Overwrite from live*/
#header {
    background-color: #fff;
    color: #333;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
    font-weight: 600;
}


.fixed .hamburger {
    top: 0px;
}

.header__action:hover .header__action-link {
    background: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}


/*-----Header Bar*/

.header-bar {
    display: -webkit-box;
    display: flex;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-box-align: center;
            align-items: center;

}

.header-bar a {
    display: block;
}

.header__top {
    padding: 0 10px;
    position: relative;
    z-index: 20;
    background-color: var(--second-color);
    color: var(--second-inverse-color);
}

.header-label {
    padding: 5px 0px;
    font-size: .9em;
}

.short-links > ul > li > a.header__action-lang {
    padding-right: 25px;
    position: relative;
}

.header__action-lang:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    -webkit-transform: translateY(-80%) rotate(-45deg);
            transform: translateY(-80%) rotate(-45deg);
}

.header__action-langicon {
    height: 25px;
    width: 25px;
    padding: 0px;
    background-color: var(--grey-light);
    border-radius: 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (max-width:767px) {
    .is-home .header-bar {
        -webkit-box-pack: center;
                justify-content: center;
    }
}

.header-bar > div:last-child {
    display: -webkit-box;
    display: flex;
    margin-left: auto;
}

@media (min-width:1199px) {

    .header-bar,
    .header__top {
        padding: 0 30px;
    }
}

.header-menu-button {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    margin-right: 10px;
}

/*-----Hamburger*/
.header-left .header-menu-button {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    padding-right: 20px;
}

.hamburger {
    top: 0;
    display: block;
    width: 20px;
    height: 30px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    left: auto;
    margin: 0 10px 0 0;
}

.hamburger span {
    display: block;
    margin: 14px 0 0;
    position: relative;
    width: 100%;
}

.hamburger span:before {
    content: "";
    left: 0;
    position: absolute;
    top: -7px;
}

.hamburger span:after {
    content: "";
    left: 0;
    position: absolute;
    bottom: -7px;
    width: 100%;
}

.hamburger span,
.hamburger span:before,
.hamburger span:after {
    background: #333;
    width: 100%;
    height: 2px;
}

/*-----Hamburger Navigation*/
.navigation-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -webkit-transform: translate(-100%, 0px);
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 0;
    width: 260px;
    opacity: 0;
    overflow: auto;
    z-index: 110;
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
}

body.toggled_left .navigation-wrapper {
    transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    opacity: 1;
}

.navigations > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 1em;
    font-weight: 600
}

.navigations > li > a {
    padding: 15px 40px 15px 15px;
    height: auto;
    text-align: left;
    color: #333;
    display: block;
    position: relative;
    overflow: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}

.navigations > li > a:after,
.navigations > li > a:before {
    content: "";
    background: transparent;
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.navigations > li > a:after {
    left: 50%;
}

.navigations > li > a:before {
    right: 50%;
}


body.toggled_left .common_overlay,
body.is-toggle .header__search.is-visible .common_overlay {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}



.navigations > li .subnav {
    display: none;
    position: relative;
    width: 100%;
}

.navigations > li.navchild > a:after,
.navigations > li .nav-expand.active:after {
    display: none;
}

.subnav__wrapper .container,
.navigations > li .subnav__wrapper.addspace {
    padding: 0;
}

.subnav_row {
    padding: 0px;
}

.sublinks {
    color: #222;
    margin: 0;
    text-align: left;
}


.sublinks > li {
    display: inline-block;
    margin: 0;
    width: 100%;
    vertical-align: top;
    padding: 0 15px;
}

.sublinks > li > a {
    color: inherit;
    display: block;
    font-size: 1em;
    text-transform: uppercase;
    padding: 0;
}



.sublinks > li > ul {
    margin: 10px 0;
    padding-top: 10px;
    border-top: 2px solid;
}


.sublinks > li > ul > li {
    padding: 0 0 5px;
    float: none;
}

.sublinks > li > ul > li a {
    color: #999;
    font-size: 1em;
    padding: 3px 0;
    display: inline-block;
    font-weight: 400;
    position: relative;
}

.sublinks > li > ul > li a:before {
    background: var(--first-color);
    bottom: 0px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 100%;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
}

.sublinks > li > ul > li a:hover::before {
    right: 0;
}


.sublinks > li > ul > li a:hover {
    color: var(--first-color);
}

.trigger-js.is-active:after {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    display: none;
}

.trigger-target.is-visible {
    display: block;
}



.navigations > li > a:hover:before,
.navigations > li > a:hover:after {
    display: none;
}

.navigations > li:hover > a {
    color: #333;
}

.navigations > li .subnav__wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 10px;
    overflow: auto;
    background: #fff;
    border-top: medium none;
    box-shadow: none;
    display: inline-block;
    opacity: 1;
    position: relative;
    top: 0;
    visibility: visible;
    width: 100%;
}

.navigations > li .subnav__wrapper .sublinks > li {}

.navigations > li .subnav__wrapper .sublinks > li > a > img {
    float: right;
}

.navigations > li .subnav__wrapper .sublinks > li > a > span {
    display: inline-block;
    max-width: 60%;
}

.navigations > li .subnav__wrapper .sublinks > li > a:after {
    clear: both;
    display: table;
    content: "";
}

.navigations > li .subnav__wrapper .sublinks > li > ul {}

@media(min-width:1199px) {
    .navigations > li.navchild > a {
        padding-right: 25px;
    }
}


/*-----Header single list nav*/
@media(min-width:1199px) {

    .global-nav ul {
        display: -webkit-box;
        display: flex;
    }

    .global-nav ul li {
        padding: 0 15px;
    }

    .global-nav ul li a {
        /* font-size: 1rem;*/
        font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1600 - 300)));
        color: currentColor;
    }

}

@media(min-width:1199px) {
    .global-nav ul li {
        padding: 0 25px;
    }

    .header-logo a.topnavs-toggle {
        display: none
    }
    .header-logo a.logo-image{
        margin-right: 20px;
    }
}

@media(min-width:767px) {
    
}

/*-----Logo*/
.header-logo a {
    display: -webkit-box;
    display: flex;
}



.header-logo {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.topnavs-toggle {
    cursor: pointer;
    display: none;
    height: 30px;
    position: relative;
    width: 30px;
    margin-right: 15px;
    padding-left: 5px;
    padding-right: 5px;
}

.topnavs-toggle span {
    background: #000;
    display: block;
    height: 2px;
    margin: 14px 0 0;
    position: relative;
    width: 100%;
}

.topnavs-toggle span:before {
    background: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -7px;
    width: 100%;
}

.topnavs-toggle span:after {
    background: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -7px;
    width: 100%;
}

.logo-image {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    height: 60px;
}

.logo-image img {
    width: auto;
    max-height: 40px;
}

/*-----Header Right Corner list*/
.header-corner-actions {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header-bar .svg-icon {
    line-height: 15px;
}

/*-----Header Location*/

.address-dropdown {
    min-width: 100%;
    padding: 20px;
    position: absolute;
    top: 150%;
    right: 0;
    background: #fff;
    color: #000;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
    transition: all 300ms;
    -webkit-transition: all 300ms;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    z-index: 25;
}

@media(min-width:992px) {
    .header-address {
        position: relative;
    }

    .address-dropdown {
        min-width: 400px;
    }
}

.header-address.is-active .address-dropdown {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    top: 100%;
}

/*.address-is-active: {}*/

@media(min-width:767px) {
    .header-address {
        /*border-right: 1px solid var(--border-color-one);
        margin-right: 20px;*/
    }

    .header-address > a {
        position: relative;
        padding: 5px 15px;
        height: auto;
        border-radius: 0;
        -webkit-transition: none;
        transition: none;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .header-address.is-active > a {
        z-index: 21;
    }
}

.svg-icon.svg-location {
    padding-right: 5px;
}

.svg-icon.svg-location svg {
    height: 18px;
    width: 18px;
    display: block;
}

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

.address-form > div {
    padding-bottom: 15px;
}

.address-form > div:last-child {
    padding-bottom: 0;
}

.address-form .btn-address input,
.address-form .btn-address {
    color: var(--first-inverse-color);
    font-size: 1rem;
    background: var(--first-color);
}

.selected-address {
    font-size: 1rem;
}

.selected-address .arrow {
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: var(--second-inverse-color);
    font-size: .9em;
}

.header-address .svg-icon {
    fill: var(--second-inverse-color);
    line-height: 1;
}

.header__top .arrow.arrow--down::after {
    border-color: currentColor;
}

@media(max-width:767px) {
    .address-select {
        padding: 7px 0;
        display: inline-block;
    }

    .selected-address .arrow {
        max-width: 100px;
        padding-right: 20px;
    }

    .short-links > ul > li > a.header__action-lang {
        padding-right: 20px;
    }

    .short-links > ul > li {
        margin: 0 8px;
    }

    .short-links > ul > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header__top {
        padding: 0 20px;
    }

    .header-bar {
        padding: 0 15px;
    }

}

@media(max-width:1200px) {
    .selected-address {
        font-size: 0.9em;
    }
}

/*
@media(max-width:1200px) {
    .selected-address {}

    .selected-address span {
        font-size: 0.8rem;
        position: absolute;
        padding-right: 0;
        width: 100%;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        color:#000;
        padding: 5px;
        border-top: 1px solid #eee;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .05);
        -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .05);
        -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .05);
    }

    .selected-address .arrow.arrow--down:after {
        display: none;
    }
}*/

/*-----Header User*/
@media(max-width:1025px) {
    .header-bar .svg-user.-show-tab {
        display: inline-block !important;
    }

    .avtarImg {
        background-color: var(--grey-lighter);
        border-radius: 5px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--grey-lighter);
        overflow: hidden;
        margin-right: 10px;
    }
}

@media(min-width:1025px) {
    .header-account {
        padding-right: 10px;
        position: relative;
    }

}

.header__action-link.sign-in {
    color: currentColor;
    /* text-decoration: underline; */
}

.header__action-link.sign-in:hover {
    color: var(--second-color);
    text-decoration: none;
}

.header-account {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.header__account-user {
    padding-right: 15px;

}

.grey-circle {
    background-color: transparent;
    border: 1px solid var(--grey-lighter);
    border-radius: 4px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: currentColor;
}

@media(max-width:1200px) {
    .grey-circle {
        margin: 0 5px;
    }
    .header-account .grey-circle {
        margin: 0;
    }

}

@media(max-width:1025px) {
    .header-account .grey-circle {
        margin: 0 3px;
    }
}

@media(min-width:767px) {

    .header-address .grey-circle {
        background-color: transparent;
        width: auto;
        height: auto;
        line-height: inherit;
    }
}

.header-address .grey-circle {
    display: inline-block;
}

/* @media(min-width:1025px) { */
.basket-action .grey-circle {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 0;
}

.basket-action .grey-circle .cart-counter {
    display: inline-block;
    /* vertical-align: middle; */
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 28px;
    font-size: 0.8em;
    background-color: var(--first-color);
    color: var(--first-inverse-color);
    margin-left: 8px;
}

/* } */

.header__action .header__action-link {
    display: block;
    height: 40px;
    line-height: 40px;
    color: inherit;
    position: relative;
    min-width: 40px;
    padding: 0 15px;
    border-radius: 3px;
    transition: none;
    -webkit-transition: none;
    -ms-transition: none;
}

.header__action-target {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 3px;
    display: none;
    z-index: 1;
    padding: 10px;
}

@media (min-width: 1199px) {
    .header-account:hover .header__action-target {
        display: block;
    }

    .header__action:hover .header__action-link {
        z-index: 2;
        color: #333;
    }

    .header__action:hover .header__action-link {
        background: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
}

/*TOGGLE & TARGET CSS START HERE*/
.desktop.toggle--target {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    max-width: 25rem;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    -webkit-transition: -webkit-transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
}

.desktop.toggle--target.right {
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.desktop.toggle--target.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.toggle::before {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(240, 240, 240, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    content: "";
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.toggle.open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

a.toggle--nav {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer
}

/*TOGGLE & TARGET CSS END*/
@media(max-width:1200px) {

    .header-account .header__action-target {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 22;
        width: 280px;
        left: auto;
        border-radius: 0;
        overflow: auto;
        font-size: 15px;
        padding: 0;
        display: block;
    }

    .header-account .trigger-js.is-active::after {
        background: rgba(0, 0, 0, 0.9);
    }

    .header__action-target .list--vertical .childs {
        padding-left: 15px;
    }

    .tablet.toggle__target.left {
        left: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .tablet.toggle__target.right {
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    .tablet.toggle__target {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 1000;
        width: 100%;
        max-width: 25rem;
        padding: 20px;
        overflow: hidden;
        overflow-y: auto;
        background-color: #f7f7f7;
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    }

    .tablet.toggle__target.visible {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }








    .tablet.toggle__target {
        max-width: 17rem
    }
    .mobile.toggle__target.left {
        left: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .mobile.toggle__target.right {
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    

    .mobile.toggle__target.top {
        left: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .mobile.toggle__target {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 1000;
        width: 100%;
        max-width: 17rem;
        padding: 20px;
        overflow: hidden;
        overflow-y: auto;
        background-color: #f7f7f7;
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }

    .mobile.toggle__target.top {
        bottom: auto;
        max-width: 100%;
    }

    .mobile.toggle__target.visible {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .global-nav ul li {
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 6px 10px;
    }

    .global-nav ul li a {
        color: var(--txt-color);
    }

    
    .header__account-user {
        display: none;
    }

}

.mobile.toggle__target:not(.header__action-target) {
    display: block;
}

@media (max-width: 767px) {
    
    


    
}

.grey-circle.user_img_crcle {
    padding: 1px;
}

/*-----Header Basket*/
.basket-action {
    margin-top: 0;
    float: right;
    position: relative;
    cursor: pointer;
}

.basket-action .header__action-link .svg-basket {
    display: inline-block;
}

.basket-content {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    color: #333;
}


.basket-action .icn {
    background: url(images/retina/cart.svg) no-repeat center;
    vertical-align: top;
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.basket-action .icn-txt {
    color: inherit;
    font-size: 0.8em;
    font-weight: 400;
    text-transform: uppercase;
    padding-right: 5px;
}



@media(max-width:1025px) {
    .basket-action .cart-count {
        /*Growcer*/
        background: var(--first-color);
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: block;
        position: absolute;
        z-index: 0;
        top: 0px;
        right: 5px;
        color: var(--first-inverse-color);
        border: solid 2px var(--first-color);
        font-size: 0.7em;
        text-align: center;
        vertical-align: middle;
        line-height: 2;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}


@media(min-width:1199px) {
    .basket-content .cart-static-label {
        display: block;
        font-size: 0.813rem;
        line-height: 8px;
        color: #bfbfbf;
    }

    .basket-content .cart-counter {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
                align-items: center;
    }

    .basket-content .cart-counter .cart-static-label {
        font-size: 0.85rem;
        line-height: normal;
        color: #333;
    }

    .basket-content .cart-counter .cart-count.cartQuantity {
        padding-right: 2px
    }
}

.basket-content .cart-counter .cart-count.cartQuantity,
.basket-content .cart-counter .cart-static-label {
    font-size: 0.85rem;
}

/*---Cart After Toogle*/
.cartdetail__footer a {
    display: inline-block;
}

/*==================HOME/INDEX==============*/
.is-home .body {
    background-color: #fff;
}

.hero-banner-wrapper {
    position: relative;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
}

@media (min-width: 768px) {
    .hero-banner-wrapper {
        min-height: 70vh;
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    /* .hero-banner-wrapper {
        padding: 30px;
    } */

    .or:after,
    .or:before {
        width: 35%;
    }


}

@media (max-width:576px) {
    .cartdetail__footer a {
        display: block;
    }

    .block-on-mobile + .block-on-mobile {
        margin-top: 5px;
    }
}

@media (max-width: 600px) {
    .hero-banner-wrapper {
        padding: 15px;
    }
}

.hero-banner-wrapper .slick-list {
    overflow: visible;
}

.hero-banner {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    opacity: 0.6;
    overflow: hidden;
}

.hero-heading{
    position: relative;
    color: #ffffff;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: calc(1rem + 1vw);
}

/*
.hero-banner > div {
    width: 100px;
    height: 100px;
}*/

.hero-banner .hero-item {
    position: relative;
}

.hero-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--grey-light);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    min-width: 100vw;
    min-height: 100vh;
}

/* @media (max-width:1200px) {

    .hero-banner-wrapper,
    .hero-image {
        min-height: 500px;
    }
} */

@media (max-width: 767px) {
    .hero-image {
        /* background-image: none !important; */
        /* min-height: auto; */
    }

    .hero-banner-wrapper {
        min-height: auto;
    }
}

.hero-banner-in {
    background: #fff;
    width: 400px;
    margin: 0px auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    text-align: center;
    z-index: 2;
    position: relative;
}

@media (min-width: 768px) {
    .hero-banner-in {
        width: 430px;
        padding: calc(1.5rem + 1.5vw);
    }
}

@media (max-width: 1024px) {
    .hero-banner-in {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .hero-banner-in {
        padding: 15px;
        position: relative;
        z-index: 1;
        width: 100%;
    }
}

.hero-banner-form {}

.hero-banner-form .sign-in {
    margin: 0;
    background: #333;
    color: #fff;
}

.hero-banner-form .hero-form .city-filled-field,
.hero-banner-form .hero-form .radius-filled-field {
    margin-bottom: 20px;
}

.hero-banner-form .hero-form .city-filled-field input[type="text"] {
    background-image: url(images/retina/map-pin.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 55px;
}

.radius-filled-field {
    text-align: left;
}

.hero-form .radius-field {
    background-image: url(images/retina/radius.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.hero-form .btn-fb,
.hero-banner-form .btn-fb {
    background-color: #3b5998;
    color: #fff;
}

.hero-form .option-wrap .text-link,
.hero-banner-form .option-wrap .text-link {
    color: #bfbfbf;
    margin-top: 15px;
    display: block;
}

/*---After Login*/
.hero-half-form .or,
.hero-half-form .option-wrap {
    display: none;
}

@media (min-width: 768px) {
    .hero-half-form.hero-banner-wrapper {
        /* padding-top: 5.5vw;
    padding-bottom: 5.5vw;*/
    }
}

/*----How works*/
.process-pannel {}

.process-pannel .process {
    margin-top: 30px;
}

/*.process-pannel [class*="col-"] {
    padding-right: 30px;
}

.process-pannel [class*="col-"]:last-child {
    padding-right: 0;
}*/

.process .process-icon {
    margin-bottom: 30px;
}

.process h5 {
    /*font-size: 1.125rem;*/
    margin-bottom: 10px;
}

.process p {}

@media(max-width:767px) {
    .process-pannel {
        text-align: center;
    }

    .process .process-icon img {
        margin: auto;
    }
}

@media(min-width: 767px) {
    .process-pannel [class*="col-"] {
        -webkit-box-flex: 0;
                flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    /*.process-pannel {
        text-align: left;
    }

    .process .process-icon img {
        margin: 0;
    }*/

    .process-pannel.pannel-left .process{
        text-align:left;
    }
    .process-pannel.pannel-left .process .process-icon img{
        margin-right:auto;
    }
    
    .process-pannel.pannel-center .process{
        text-align:center;
    }
    .process-pannel.pannel-center .process .process-icon img{
        margin:0 auto;
    }
    
    .process-pannel.pannel-right .process{
        text-align:right;
    }
    .process-pannel.pannel-right .process .process-icon img{
        margin-left:auto;
    }

}

/*---Home Section Cms*/
.section-cms .btn {
    padding-left: 60px;
    padding-right: 60px;
}

.grid-pannel {}


.grid-pannel.grid-right {
    /*  margin-top: 60px*/
}

.grid-pannel.grid-right [class*="col-"]:first-child {
    -webkit-box-ordinal-group: 3;
            order: 2
}


@media (min-width:769px) {
    .grid-pannel [class*="col-"]:last-child {
        padding-left: 40px;
    }

    .grid-pannel.grid-right [class*="col-"]:last-child {
        padding-left: 0
    }

    .grid-pannel [class*="col-"]:last-child {
        padding-left: 90px;
    }
}

.grid-pannel h3 {
    max-width: 400px;
}

.grid-pannel p {
    margin: 20px 0;
}

.grid-pannel img {
    border-radius: 10px;
}

@media (min-width:1199px) {
    /*.grid-pannel.grid-app img {
        margin-left: -75px;
        max-width: initial;
    }*/
}

@media (max-width:768px) {
    .grid-pannel [class*="col-"]:last-child {
        padding-top: 20px;
    }

    .grid-pannel.grid-app [class*="col-"]:last-child {
        padding: 20px;
    }
}

/*---Testimonail*/
.section-testimonial {
    padding-top: 0;
}

.testimonial-wrapper {
    margin-top: 30px;
}

@media (min-width:700px) {
    .testi-block {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0 25px;
    }
}

.testi-block .block-image {
    max-width: 270px;
    position: relative;
    width: 100%;
    border-radius: 6px;
}

.testi-block .block-image:before {
    position: relative;
    content: "";
    display: block;
    padding-bottom: 100%;
}

.testi-block .block-image img {
    margin: auto;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 6px;
}


.testi-block .block-comments {
    width: calc(100% - 270px);
    background-color: #f1f1f1;
    padding: 60px;
    align-self: stretch;
    margin-left: 20px;
    border-radius: 6px;
    color: #333;
}

.testi-block .block-comments h6 {
    font-weight: 800;
    color: #333;
}

@media (max-width:1023px) {
    .testi-block {
        background: #f1f1f1;
        margin: 0 25px;
        -webkit-box-align: center;
                align-items: center;
        border-radius: 6px;
    }
}

@media (max-width:700px) {
    .testi-block {
        padding: 10px;
        margin: 0px 15px;
    }

    .testi-block .block-image {
        margin: 20px 20px 0 20px;
        max-width: 70px;
    }

    .testi-block .block-comments {
        width: 100%;
        margin: 0px;
        padding: 20px;
    }
}


.brands {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;

}

.brands li {
    max-width: 170px;
    padding: 10px;
    margin: 0 10px;
}

@media (max-width:1200px) {
    .brands li {
        max-width: 33.33%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33%;
        padding: 20px;
        margin: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }
}

.brands li img {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
}

@media (max-width:480px) {
    .brands li {
        max-width: 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
    }
}

/*==================BODY==================*/
.body {
    position: relative;
    z-index: 1;
    background-color: #ebebeb;
}

.is-home .body {}

.is-home input[type="text"],
.is-home input[type="email"],
.is-home input[type="phone"],
.is-home input[type="search"],
.is-home input[type="password"],
.is-home textarea,
.is-home select,
.is-home input[type="number"],
.is-home input[type="file"] {
    height: 50px;
    line-height: 50px;
}

/*-----Common Quantity*/
.qty input {
    background: transparent;
    border-radius: unset;
}

/*-----Add symbol + Quantity input with Increase/Decrease*/
.add-request-wrap {
    position: absolute;
    top: 0;
    right: 0;
}

.qty-request-action {
    position: relative;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    /* background-color: #E9F5E6; */
    color: var(--first-color);
    margin-top: 40px;
}

.qty-request-action:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    background-color: currentColor;
    content: "";
}

.select-options + .qty-request-action {
    margin-top: 0;
}

.qty-request-wrap {
    display: -webkit-box;
    display: flex;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
    justify-content: space-around;
    align-content: center;
    border-radius: 4px 0px 0px 4px;
    background-color: #fff;
    height: 35px;

}

@media(min-width:1199px) {

    .qty-request-wrap {
        height: 24px;
    }
}

.qty-request-wrap {
    background-color: transparent;
}

.qty-request-wrap .svg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    display: block;
    fill: var(--first-color);

}

.qty-request-wrap .svg-icon svg {
    vertical-align: middle;
}

.qty-request-wrap input.qty-value {
    height: 100%;
    padding: 0;
    width: calc(100% - 50px);
    border: none;
    background-color: transparent;
    border-radius: 0px;
    text-align: center;
    box-shadow: none;
    color: var(--first-color);
}


.btn-add-request {
    border-radius: 0 4px 4px 0;
    height: 35px;
    -webkit-box-pack: center;
            justify-content: center;
    font-size: 0.765rem;
    margin: 0;
    background-color: var(--first-color);
    color: var(--first-inverse-color);
    padding-top: 0;
    padding-bottom: 0;
}

@media(min-width:1199px) {

    .btn-add-request {
        height: 24px;
        line-height: 24px;
    }
}

.btn-add-request:hover {
    box-shadow: none;
}

.btn-add-request:before,
.btn-add-request:after {
    display: none;
}


@media(min-width:1025px) {
    .add-request .svg-icon {
        border-radius: 3px;
    }

    .add-request-wrap:hover .svg-icon {
        border-radius: 0 3px 3px 0;
    }

    .add-text {
        right: 0;
        visibility: hidden;
        opacity: 0
    }

    .add-request-wrap:hover .add-request {
        overflow: visible;
    }

    .add-request-wrap:hover .add-text {
        right: 30px;
        visibility: visible;
        opacity: 1;
    }
}

.svg-increase {
    fill: var(--first-color);
}

.svg-increase svg {
    vertical-align: middle;
}

.decrease,
.increase {
    height: 100%;
    width: 40px;
    position: relative;
}

@media(min-width:1199px) {

    .decrease,
    .increase {
        width: 25px;
    }
}



/*-----Common Tile*/
.store-list .tile{
    height: 100%;
}


.tile {
    position: relative;
    background-color: #fff;
    display: block;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    padding: 15px;
}

.tile .tile-media img {
    display: inline-block;
    margin: auto;
    max-width: 80%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.tile-media {
    display: block;
    position: relative;
    margin: auto;
    max-width: 100%;
}

.tile-media:before {
    position: relative;
    content: "";
    display: block;
}


/*-----Title Modes*/
.tile .title {
    font-size: 0.85rem;/*1rem;*/
    color: #333;
    font-weight: 400;
    display: block;
    /*text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;*/
}


/*-----Tile with Store List Page*/

.store .tile-media {
    max-width: 200px;
}

.store .tile-media:before {
    padding-bottom: 75%;
}

.store .divider {
    margin-left: -15px;
    margin-right: -15px;
    display: block;
    background-color: #ebebeb;
}

.title.store-title {
    font-size: 0.9rem;
    font-weight: 700;
    padding-bottom: 0;
}

.store-rated-wrap {
    padding-top: 0;
}

/*Store Listing*/
.store-list > .row > [class*="col-"] {
    padding: 10px;
}

@media(min-width:1199px) {

    /*Store Listing*/
    .store-list > .row {
        margin-right: -20px;
        margin-left: -20px;
        width: 100%;
    }

    .store-list > .row > [class*="col-"] {
        -webkit-box-flex: 0;
                flex: 0 0 20%;
        max-width: 20%;
        padding: 20px;
    }
}


/*-----STORE HOME PAGE----*/
/*-----Common for both Store Home and Store Product*/
.store-inline {
    padding: 15px;
}

@media(min-width:768px) {
    .store-inline {
        margin-right: 150px;
    }
}

.store-info .title {
    font-size: 1.5rem;
    padding: 0;
}

.store-info .shop-opened {
    line-height: 0;
    color: #333;
}

.store-info .rated-wrap {
    padding: 0;
}

.store-inline-wrap {
    background-repeat: no-repeat;
    background-position: right center;
    padding: 0;
}


@media (min-width: 1199px) {

    .store-inline-wrap,
    .store-iniline-info {
        padding: 5px 0;
    }
}

.store-inline .tile-media img {
    max-width: 100%;
}

.store-inline .tile-media {
    margin-left: -15px;
    margin-right: 15px;
}

.store-inline-wrap .search-form {
    max-width: 550px;
    width: 100%;
    position: relative;
}

.store-inline-wrap .search-form .search-form-field {
    position: relative;
}

/*.store-inline-wrap .search-form input[type="text"],
.store-inline-wrap .search-form input[type="submit"] {
    height: 50px;
    line-height: 50px;
}*/

.store-inline-wrap .search-form input[type="submit"] {
    background-image: url(images/retina/icon_magnifier.svg);
    background-color: transparent;
    background-position: 30px center;
    background-repeat: no-repeat;
    background-size: 15px 100%;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 600;
    font-size: 0;
    height: 100%;
}

.store-inline-wrap .search-form input[type="submit"]:hover {
    box-shadow: none;
}


.search-dropdown-wrap {
    border: 1px solid var(--border-color-one);
    border-top: 0px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 10;
    box-shadow: 6px 4px 7px -5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 6px 4px 7px -5px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 6px 4px 7px -5px rgba(0, 0, 0, .3);
}

.search-dropdown-wrap .search-item-suggesion {
    list-style: none;
}

.search-dropdown-wrap .search-item-suggesion li {
    border-bottom: 1px solid #dedede
}

.search-dropdown-wrap .search-product {
    padding: 5px 10px;
}

.search-dropdown-wrap .search-product .col:first-child {
    max-width: 24%;
}

.search-dropdown-wrap .search-product .product-detail {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
}

.search-dropdown-wrap .search-product .tile-media {
    margin-bottom: 0;
}

.search-dropdown-wrap .search-product .title {
    font-size: 0.8rem;
    -webkit-box-ordinal-group: 3;
            order: 2;
    width: 110px;
}

.search-dropdown-wrap .search-product .product-unit,
.search-dropdown-wrap .search-product .price-standard {
    font-size: 0.8rem;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;

}

.search-dropdown-wrap .search-product .price-standard {
    margin-left: 5px;
}

.search-dropdown-wrap .search-product form {
    width: 68%;
}

/* .search-dropdown-wrap .decrease,
.search-dropdown-wrap .increase {
    display: none;
} */

.search-dropdown-wrap .qty-request-action {
    margin-top: 0;
}

.search-dropdown-wrap .qty-request-wrap input.qty-value {
    width: 100%;
    height: 100%;
    line-height: 100%;
}

.search-dropdown-wrap .view-all {
    padding: 10px;
}

.search-dropdown-wrap .view-all a {
    margin: auto;
    background-color: #f9f9f9;
    color: #888;
    font-size: 0.875rem;
    height: 34px;
    border-color: var(--grey-dark);
    line-height: 34px;
}


.search-dropdown-wrap .view-all a:hover {
    background-color: #f9f9f9;
    color: #333;
    border-color: #333;
}

@media(max-width:767px) {
    .search-item-suggesion [class*="col-"] {
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .search-item-suggesion [class*="col-"]:last-child {
        -webkit-box-flex: 0;
        flex: 0 0 60%;
        max-width: 60%;
    }
}

@media(min-width:500px) {
    .search-dropdown-wrap .product-info {
        display: -webkit-box !important;
        display: flex !important;
    }

    .search-dropdown-wrap .search-product .col:first-child {
        max-width: 12%;
    }

    .search-dropdown-wrap .search-product .product-unit,
    .search-dropdown-wrap .search-product .price-standard {
        margin: 0 20px;

    }

    .search-dropdown-wrap .search-product .product-info {
        -webkit-box-pack: justify !important;
        justify-content: space-between;
    }

    .search-dropdown-wrap .search-product form {
        width: 30%;
    }



}



@media(max-width:600px) {
    .store-inline-wrap .store-inline {
        text-align: center;
        margin-bottom: 15px;
    }

    .store-inline .tile-media {
        padding: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .store-inline .tile-media img {
        margin: auto;
    }
}

@media(max-width:992px) {
    .store-inline-wrap .search-form {
        max-width: 100%;
        padding-bottom: 20px;
    }
}


/*-----Store Navigation*/
.main-page-nav {}

.main-page-nav .page-nav-listing {
    margin-left: -15px;
    margin-right: -15px
}

.main-page-nav .page-nav-listing li {
    display: inline-block;
    padding: 0 15px;
}

.main-page-nav .page-nav-listing li a {
    color: #333;
    display: inline-block;
    padding: 10px;
    padding-top: 13px;
    -webkit-transition: color .2s linear;
    transition: color .2s linear;
    border-width: 0 0 3px;
    border-style: solid;
    border-color: transparent;
}

.main-page-nav .page-nav-listing li:hover a {
    border-color: var(--second-color);
}

.main-page-nav .page-nav-listing li .is-active {
    border-color: var(--second-color);
    font-weight: 700;
}

.store__nav {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}

/*-----Store Actions*/
.store-nav-header {
    position: relative;
}

.store-action-wrapper {
    -webkit-box-pack: center;
            justify-content: center;
    padding: 20px 0;
}

@media(min-width:1199px) {
    .store-action-wrapper {
        position: absolute;
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}

.store-action-wrapper ul {}


.store-action-wrapper ul li a {
    border: 1px solid var(--border-color-second);
    padding: 6px 16px;
    margin-right: 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    background-color: #fff;
    height: 100%;
    color: #a6a6a6;
}

.store-action-wrapper ul li a.is-selected {
    color: #333;
    border-color: #333;
}

.store-action-wrapper ul li:last-child a {
    margin-right: 0px;
}

.store-action-wrapper ul li a:hover {
    color: #333;
    border-color: #333;
}

.store-action-wrapper ul li .is-active {
    color: var(--first-color);
    border-color: var(--first-color);
}

@media(max-width:400px) {
    .store-action-wrapper ul {
        padding: 0 10px;
    }

    .store-action-wrapper ul li {
        padding: 5px;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;

    }

    .store-action-wrapper ul li a {
        display: block;
        text-align: center;
        padding: 10px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/*-----Adverting pannel*/
.advertisement-wrapper {
    padding-top: calc(1.5rem + 1.5vw);
    padding-bottom: calc(1.5rem);
}

.is-home .advertisement-wrapper {
    /* padding-top: 70px; */
    /* border-bottom: 1px solid #e5e5e5; */
}
.hero-banner-wrapper .advertisement-wrapper {
    overflow: hidden;
    width: 100%;
}

@media(max-width:767px) {
    .hero-banner-wrapper .advertisement-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
}

@media(min-width:1199px) {
    .advertisement-wrapper ul {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.advertisement-wrapper ul li {
    display: inline-block;
    margin-left -2px;
    margin-right -2px;
    padding: 0 10px;
}

.advertisement-wrapper ul li a,
.advertisement-wrapper ul li a img {
    border-radius: 10px;

}

@media(min-width:1210px) {
    .advertisement-wrapper ul li {
        padding: 0 15px;
    }

    advertisement-wrapper ul li a,
    .advertisement-wrapper ul li a img {
        max-width: 100%;
        width: 100%;
    }
}


/*-----Tile with Product Page*/

.product {
    padding: 10px;
}

.tile.product .title img {
    display: inline-block;
    vertical-align: top;
    width: 14px;
    margin: 3px 0 0 0;
}

.product .tile-media {
    margin-bottom: 10px;
}

.product .tile-media:before {
    padding-bottom: 100%;
}

.product .tile-media img {
    border-radius: 4px;
}

/*-----Product Hovered*/
.product-listing.carousel {
    padding-right: 0px;
}

.product-listing .slick-list {
    padding: 0 5px;
}

.product-hovered {
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
}

.product-hovered:hover {
    border-color: var(--border-color-one);
}

.product-category {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
}

.product .select-options {}

.select-options select {
    height: 25px;
    font-size: 0.765rem;
    padding-left: 10px;
    color: #333;
    background-image: none;
}

.select-options.arrow {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
}

.product-price {
    margin: 5px 0;
}

.product-price .price-standard {
    font-size: 1rem;
    color: #333;
}

.product-price {
    font-size: 0.875rem;
    -webkit-box-pack: justify;
            justify-content: space-between;
}

.product-price .price-old {
    font-size: 0.775rem;
    color: #888;
    margin-right: 3px;
}

.product-price .price-discounted {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.76rem;
    color: #fff;
    background: var(--second-color);
}

.product-action {}

.product-action .btn-add-cart {
    font-size: 1.02rem;
    margin: 0 auto;
    background-color: #E9F5E6;
    color: var(--first-color);
}

@media(min-width:1199px) {
    .product-action .btn-add-cart {
        font-size: 0.875rem;
        height: 30px;
    }
}

/*Product Quick View-----------*/
#facebox .content.productQuickView .prod_scroller {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
}


/*Tile Category-------------*/
.category {
    padding: 0;
}

.category .tile-media {
    max-width: 165px;
    margin-bottom: 15px;
}

.category .tile-media:before {
    padding-bottom: 100%;

}

.category .tile-media img {
    border-radius: 6px;
}

.category .category-count {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    margin-left: 3px;
}

/*-----Full page Media Store home[*/
@media(max-width:1025px) {
    .store-inline-wrap {
        background-image: none !important;
    }

    .main-page-nav {
        display: block;
        width: 100%;
        margin: auto;
        text-align: center;
        border-bottom: 1px solid var(--border-color-second);
    }

    /* .store-nav-header {
        margin-left: -10px;
        margin-right: -10px;
    }*/

}

@media(max-width:767px) {
    .store-white-wrapper {
        overflow: hidden;
    }

    .main-page-nav::after {
        content: "";
        border-bottom: 1px solid var(--border-color-second);
        left: -30px;
        position: absolute;
        right: -30px;
    }
}

/*-----]*/


/*-----SHOP PRODUCT PAGE*/

/*============================BLOCK==================*/
.store-inline-wrap.store-active .tile-media img {
    max-width: 70px;
}

.store-inline-wrap.store-active .store-info .title {
    font-size: 1.3rem;
}

.block {
    padding: 15px 30px;
    position: relative;
}

@media(max-width:1024px) {
    .block {
        padding: 15px;
    }
}

.block-head {
    margin-bottom: 10px;
}

.block-head h5 {
    font-size: 1.125rem;
    color: #333;
}

.block-head a {
    color: #888;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
}

.block-body {}

.filter-categories .plus-symbol {
    right: -10px;
    opacity: 0.6
}

/*-----Filters Grid*/
.grid-wrapper {}

.grid-wrapper .grid-left {
    float: left;
    width: 250px;
    clear: left;
}

@media(max-width:1024px) {
    .grid-wrapper {
        padding: 0 10px;
    }
}

@media(min-width:1199px) {
    .grid-wrapper .grid-right {
        float: right;
        clear: right;
        width: calc(100% - 250px);
        padding: 0 0 0 30px;
    }
}


.grid-container [class*="col-"] {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media(min-width:1200px) {
    .grid-wrapper .grid-right [class*="col-"] {
        max-width: 25%;
        -webkit-box-flex: 1;
                flex: auto;
    }
}


@media(min-width:1201) {
    .grid-wrapper .grid-right [class*="col-"] {
        max-width: 20%;
        -webkit-box-flex: 1;
                flex: auto;
    }
}

@media(min-width:1366px) {
    .listing-products.-listing-products  .product-listing  [class*="col-"]{
        max-width: 20%;
        -webkit-box-flex: 1;
                flex: auto;
    }
}

/*---Filters left pannel*/
.filters-wrap {}

@media(max-width:1200px) {
    .filters-wrap {
        background: #fff;
        bottom: 0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        left: 0;
        margin: 0;
        overflow: auto;
        position: fixed;
        text-align: left;
        top: 0;
        transform: translate(-100%, 0px);
        -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
        transition: all 300ms ease 0s;
        -webkit-transition: all 300ms ease 0s;
        -ms-transition: all 300ms ease 0s;
        width: 300px;
        opacity: 0;
        visibility: hidden;
        z-index: 999999999999;
        padding: 0;
        border-radius: 0;

    }

    html.show-filters .filters-wrap {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
        -webkit-transform: translate3d(0px, 0px, 0px);
        -ms-transform: translate3d(0px, 0px, 0px);
        visibility: visible;
    }
}

.filters-wrap .block-wrapper {
    margin-bottom: 30px;
}

.filters-wrap .block-wrapper .plus-symbol {
    top: -6px;
}

.filters-wrap .block-wrapper .plus-symbol:before,
.filters-wrap .block-wrapper .plus-symbol:after {
    left: 25px;
}

.filters-wrap .selected-filters {
    margin-left: -5px;
    margin-right: -5px;
}

.filters-wrap .selected-filters a {
    color: #999999;
    font-size: 0.8em;
    display: inline-block;
    padding: 5px 10px;
    margin: 4px;
    background: #fff;
    position: relative;
    padding-right: 30px;
    border: 1px solid var(--border-color-second);
    border-radius: 4px;
}


.filters-wrap .selected-filters a:after {
    position: absolute;
    content: "+";
    font-size: 1.4rem;
    font-weight: 700;
    top: 50%;
    right: 4px;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    opacity: 0.7;

}

/*---Filters Category Block*/
.filter-category-list {
    display: none;
    position: relative;
    width: 100%;
}


.filters-wrap .categories {
    width: 100%;
    margin: 0;
}

.filters-wrap .categories ul li a,
.filters-wrap .categories ul li label {
    font-size: 0.875rem;
    position: relative;
    color: #888888;
    margin: 5px 0;
    display: inline-block;
    padding-right: 40px;
}

.filters-wrap .categories ul li a:hover .filters-wrap .categories ul li label:hover {
    color: var(--first-color);
}

.filters-wrap .categories li {
    position: relative;
    list-style-type: none;
    margin: 0;
}

.filters-wrap .categories li label {
    padding: 0;
}

.filters-wrap .categories ul ul ul li a {
    color: #999999;
}

.filters-wrap .categories li a.is--active {
    font-weight: 600;
}

.filters-wrap .categories ul ul li a {
    display: -webkit-box;
    display: flex;
    position: relative;
    padding-right: 0;
    -webkit-box-align: center;
            align-items: center;
}

.filters-wrap .categories ul ul li a:hover {
    color: #333;
}

.filters-wrap .categories ul ul {
    display: none;
}

.filters-wrap .categories li.active > ul {
    display: block;
}

.filters-wrap .categories ul ul {
    margin-left: 10px;
}

.filters-wrap .categories .acc-trigger {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: '';
    display: inline-block;
    height: 7px;
    left: 4px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    position: absolute;
    top: 7px;
    vertical-align: top;
    width: 7px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    transform-origin: center;
}

.filters-wrap .categories .acc-trigger.is--active {
    top: 4px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}



/*---Filters label and checkbox/radio Block*/
.filters-wrap ul li label {
    font-size: 0.875rem;
    position: relative;
    color: #888888;
    margin: 5px 0;
    display: inline-block;
    padding-right: 40px;
}

.filters-wrap .checkbox .input-helper:before,
.filters-wrap .radio .input-helper:before {
    border-color: #a8a8a8;
}

/*---Filter with Price
.price-range .js-growcer-slider .irs-line,
.price-range .js-growcer-slider .irs-bar, .price-range .js-growcer-slider .irs-handle > i:first-child {
    background: silver;
}

.price-range .js-growcer-slider .irs-from, .price-range .js-growcer-slider .irs-to, .price-range .js-growcer-slider .irs-single {
    color: #fff;
    font-size: 10px;
    padding: 0px 5px;
    background: var(--first-color);
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    display: block;
    top: 9px;
    left: 0;
    cursor: default;
    white-space: nowrap;
    width: auto;
    height: 20px;
    min-width: 22px;
    text-align: center;
    line-height: 20px;

}

.price-range .js-growcer-slider .irs-from:after, .price-range .js-growcer-slider .irs-to:after, .price-range .js-growcer-slider .irs-single:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: var(--first-color);
}
.price-range .js-growcer-slider .irs-handle > i, .price-range .js-growcer-slider .irs-handle > i:first-child{
    background: var(--first-color);
}
.price-range .js-growcer-slider .irs-to{z-index: 2;     cursor: pointer;}

.price-range .js-growcer-slider .irs-handle > i:hover, .price-range .js-growcer-slider .irs-handle > i:hover{
    background:  var(--first-color);
}
*/
.price-range .js-growcer-slider .irs-handle.state_hover,
.price-range .js-growcer-slider .irs-handle:hover,
.price-range .js-growcer-slider .irs-handle,
.price-range .js-growcer-slider .irs-bar,
.price-range .js-growcer-slider .irs-from,
.price-range .js-growcer-slider .irs-to,
.price-range .js-growcer-slider .irs-single {
    background-color: var(--first-color);
    color: var(--first-inverse-color);
}

.price-range .js-growcer-slider .irs-from,
.price-range .js-growcer-slider .irs-to {
    font-size: 12px;
    padding: 5px 7px;
}

.price-range .js-growcer-slider .irs-handle.state_hover > i:first-child,
.price-range .js-growcer-slider .irs-handle:hover > i:first-child,
.price-range .js-growcer-slider .irs-handle > i:first-child,
.price-range .js-growcer-slider .irs-from:before,
.price-range .js-growcer-slider .irs-to:before,
.price-range .js-growcer-slider .irs-single:before {
    border-top-color: var(--first-color);
}

.price-range .js-growcer-slider .irs-line {
    background-color: #eee;
}

/*----pannel top*/
.pannel-top {
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 1199px) {

    .pannel-top {
        padding: 0;
        margin-bottom: 10px;
        background-color: transparent;
    }

    .pannel-top .top-actions .btn-filter-wrap {
        width: 50%;
        padding-right: 8px;
    }

    .btn-filter {
        font-size: 0.8rem;
        padding: 0 35px 0 10px;
        text-align: left;
        background: #fff;
        color: #888;
        border: 1px solid var(--border-color-one);
        text-transform: uppercase;
        letter-spacing: 0.45px;
        display: block;
        margin: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .btn-filter .icon_filters {
        position: absolute;
        right: 14px;
        top: 10px;
        width: 16px;
    }

}

@media (min-width: 700px) and (max-width:1200px) {

    .pannel-top {
        display: -webkit-box;
        display: flex;
    }

    .top-actions {
        width: 100%;
        margin: 0 auto;
    }
}


.sort-list {
    position: relative;
}

@media (max-width: 1200px) {
    .pannel-top .top-actions .sort-list {
        width: 50%;
        padding-left: 8px;
    }
}

.sort-list ul li span {
    display: inline-block;
    height: 100%;
    padding: 6px 16px;
    margin-right: 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #a6a6a6;
    background-color: #fff;
    border: 1px solid var(--border-color-second);
}

.sort-list ul li .checkbox,
.sort-list ul li .radio {
    padding: 0
}

.sort-list ul li span:hover,
.sort-list ul li input:checked + span {
    color: #333;
    border-color: #333;
}


@media (max-width: 1200px) {
    .sort-caption {
        position: relative;
        display: block;
        height: 40px;
        padding: 0 35px 0 10px;
        border-radius: 4px;
        line-height: 40px;
        text-transform: uppercase;
        background: #fff;
        border: 1px solid var(--border-color-one);
        cursor: pointer;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sort-hamburger {
        display: block;
        margin: 14px 0 0;
        position: absolute;
        width: 25px;
        top: 4px;
        right: 18px;
    }

    .sort-hamburger,
    .sort-hamburger:before,
    .sort-hamburger:after {
        background: #333;
        width: 13px;
        height: 2px;
    }

    .sort-hamburger:before {
        content: "";
        left: 0;
        position: absolute;
        top: -6px;
        width: 20px;
    }

    .sort-hamburger:after {
        content: "";
        left: 0;
        position: absolute;
        bottom: -6px;
        width: 6px;
    }



    .sort-caption-value {
        font-size: 0.8rem;
        color: #888;
    }

    .sort-list .sort-dropdown {
        display: none;
        background: #fff;
        border: 1px solid #ddd;
        width: 100%;
    }


    .sort-list ul li label {
        display: block;
    }

    .sort-list ul li:first-child span {
        border-top: 0;
    }

    .sort-list ul li span:hover,
    .sort-list ul li input:checked + span {
        border-color: transparent;
    }

    .sort-list ul li span {
        display: block;
        padding: 10px;
        margin: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-radius: 0;

    }

}

.btn-switch-list ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
}

.btn-switch-list ul li:last-child a {
    border-left: 1px solid var(--border-color-one);
    padding-left: 10px;
    margin-left: 10px;
}

.btn-switch-list ul li svg {
    vertical-align: middle;
    margin-top: -5px;
}

.btn-switch-list ul li svg {
    vertical-align: middle;
    margin-top: -5px;
}

.btn-switch-list ul li a:hover svg,
.btn-switch-list ul li a.is-active svg {
    stroke: var(--first-color);
}

/*----pannel bottom*/
@media (max-width: 1200px) {

    .pannel-bottom {
        padding: 0;
    }

    .pannel-bottom.white-fill {
        background-color: transparent;
    }

}

/*---To swich grid to list or vice versa*/

@media screen and (min-width:1025px){
	.listing-products.-listing-products .grid-container.list-view [class*="col-"] {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}
	.grid-container.list-view [class*="col-"] {
		-webkit-box-flex: 0;
				flex: 0 0 50%;
		max-width: 50%;
	}

	.grid-container.list-view [class*="col-"] .product {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	.grid-container.list-view .product .tile-media {
		width: 157px;
		float: left;
	}

	.grid-container.list-view .product .product-info {
		width: calc(100% - 160px);
		float: left;
		padding: 0 0 0 35px;
	}

	.grid-container.list-view .product-action {
		width: 185px;
	}
}

/*============================FOOTER=========================*/
/*-----Footer Upper*/
.footer__upper {
    padding: 0;
    background: #fbfbfb;
    border-top: 1px solid #ebebeb;
}

/*-----Section Values*/
.section-values {}

.section-values .row-infos .info-icon {
    background-color: var(--grey-lighter);
    width: 45px;
    height: 45px;
    border-radius: 100%;
    position: relative;
    margin: 0 0 15px 0;
}


.section-values .row-infos .info-icon img {
    max-width: 25px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.section-values .row-infos h6 {
    padding: 0;
}


.section-values .row-infos p {
    line-height: 1.5;
    font-size: 0.938rem;
    color: #888888;
    margin: 0;
}

@media(min-width:1199px) {
    .section-values .row-infos > [class*="col-"] {
        padding-right: 10px;
    }
}

@media(max-width:767px) {
    .section-values .row-infos > [class*="col-"] {
        padding-bottom: 20px;
    }
}


@media(max-width:768px) {
    .section-values .row-infos .info-icon {
        float: none;
        margin: 0 auto 15px;
    }

    .section-values .row-infos {
        text-align: center;
    }
}

/*-----Section subscribe*/
.form-subscribe {
    position: relative;
    border-radius: 50px;
    margin: 5px 0 0;
}

.form-subscribe form img {
    margin-right: 15px;
}

@media(min-width:1199px) {
    .form-subscribe {
        max-width: 1100px;
        margin: auto;
    }
}


.form-subscribe .form {
    display: -webkit-box;
    display: flex;
}

.form-subscribe input[type="text"] {
    margin: 0 30px;
    max-width: 600px;
}


.form-subscribe input[type="submit"] {
    background-image: none;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    color: #333;
    font-size: 1.125rem;
    height: 50px;
    width: auto;
    float: none;
    min-width: 235px;
}

.form-subscribe input[type="submit"]:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.form-subscribe input[type="text"]:focus {
    box-shadow: none;
    border-color: #333;
}

.form-subscribe input[type="text"]:focus::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

.form-subscribe input[type="text"]:focus::-moz-placeholder {
    color: #333;
    opacity: 1;
}

.form-subscribe input[type="text"]:focus:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

.form-subscribe input[type="text"]:focus:-moz-placeholder {
    color: #333;
    opacity: 1;
}

/*-----Footer lower and bottom*/

/*.footer__lower [class*="col-"] {
    border-left: 1px solid #ebebeb;
    padding: 50px;
}

.footer__lower [class*="col-full-last"] {
    padding-right: 0;
}

@media (max-width:1200px) {
    .footer__lower [class*="col-"] {
        padding: 30px;
    }

    .footer__lower [class*="col-full-last"] {
        padding-right: 0;
    }
}

@media (max-width: 1209px) {
    .footer__lower .row > [class*="col-"]:first-child {
        padding-left: 20px !important;
    }
}*/

.footer__bottom {
    border-top: 1px solid #ebebeb;
    padding: 20px 0;
    color: #666;
}

.footer-col-border {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.footer-last-col {
    padding-left: 3rem;
}

/*.footer__lower [class*="col-"],*/
.footer__bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer__lower,
.footer__bottom {
    background: #333;
}

.footer__lower h1,
.footer__lower h2,
.footer__lower h3,
.footer__lower h4,
.footer__lower h5,
.footer__lower h6 {
    color: #fff;
    font-size: 1.125rem;
}

.footer__lower h6 {
    margin-bottom: 10px;
}

@media(min-width:767px) {
    .footer__lower h6 {
        pointer-events: none;
    }
}

.footer__lower .btn {
    /* opacity: 0.5; */
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}

@media(max-width:1300px) {
    .footer__lower .btn {
        font-size: .875rem;
        padding: 0 5px;
    }
}

.footer__lower .btn--border {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer a {
    font-size: 1rem;
    letter-spacing: 0.6px;
}

.social-list li {
    display: inline-block;
    vertical-align: top;
    /* padding: 0 10px 10px 0; */
    margin-bottom: 10px;
}

.social-list li a {
    width: 45px;
    height: 45px;
    border-radius: 3px;
    position: relative;
    display: block;
    text-align: center;
    border: 0 none;
    /*background-color: rgba(255, 255, 255, 0.1);*/
}

.footer .social-list li a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-list li a img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: auto;
}

.links-vertical li {
    margin: 5px 0 0;
    color: #999;
}

.links-vertical li a {
    color: inherit;
}

.links-vertical li a:hover {
    color: #000;
    text-decoration: underline;
}

.links-horizontal {
    display: -webkit-box;
    display: flex;
}

.links-horizontal li {
    margin: 0 10px 0 0;
}



.links-vertical li a:hover {
    color: var(--second-color);
    text-decoration: none;
}


.footer__bottom p a {
    color: inherit;
}

/*============================TABS PAGE NAVIGATION [USED IN PRODUCT DETAIL PAGE]=========================*/
.page-nav--centered.page-nav {}

.page-nav {
    display: inline-block;
    width: 100%;
}

.page-nav li {
    display: inline-block;
    vertical-align: top;
    padding: 0 45px 0 0;
    padding-right: 30px;
}

.page-nav li a.is-active {
    color: var(--second-color);
}

.page-nav li a {
    display: block;
    font-size: 1rem;
    padding: 20px 0;
    position: relative;
    font-weight: 700;
    color: #373838;
}

.page-nav li a.is-active::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    content: "";
    height: 4px;
    background: var(--second-color);
}




/*============================LOGIN POPUP AND FACEBOX=========================*/
#facebox .popup .content {
    box-shadow: 0 0px 20px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0px 20px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0px 20px 3px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #f2f2f2; */
}

#facebox .close.close--white:before,
#facebox .close.close--white:after {
    background: var(--grey-darkest);
}



.login-wrapper .social-list ul,
.group_wrapper_for_signup .social-list ul {
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}

.group_wrapper_for_signup .or {
    max-width: 100%;
}

.group_wrapper_for_signup .or:after,
.group_wrapper_for_signup .or:before {
    width: calc(100% - 30px);
}

.group_wrapper_for_signup .or span {
    background: #fff;
    padding: 0 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

#facebox .login-wrapper .social-list li,
#facebox .login-wrapper ul li,
.group_wrapper_for_signup .social-list li,
.group_wrapper_for_signup ul li {
    padding: 0;
    margin: 0 0 10px;
}
#facebox .login-wrapper ul li{margin:0 10px 10px 10px;}

#facebox .social-list li {
    text-align: center;
    margin: auto;
    display: block;
}

#facebox .social-list li a,
.group_wrapper_for_signup .social-list li a {
    text-align: center;
    margin: auto;
    display: block;
}

.login-wrapper .social-list li a img,
#facebox .login-wrapper .social-list li a img,
.group_wrapper_for_signup .social-list li a img {
    width: 15px;
    margin: auto;
    margin-left: 20px;
}

.login-wrapper .social-list ul li .btn--fb,
.group_wrapper_for_signup .social-list li .btn--fb,
.btn--fb {
    background-color: #3856a0;
}

.login-wrapper .social-list ul li .btn--gp,
.group_wrapper_for_signup .social-list li .btn--gp,
.btn--gp {
    background-color: #dd4330;
}


/*============================CART POPUP=========================*/
/*--Cart Seller---*/
.cart.cart-is-active .dropsection.cart-seller {
    overflow: visible;
    padding-top: 0;
}

.cart-seller .close {
    left: -20px;
    top: 0;
    right: auto;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.cart-seller .close:before {
    top: 7px;
}

.cart-seller .close:after {
    left: 7px;
}

.cart-seller .grey_head {
    border-top: 0 none;
}

.cart-seller .grey_head label {
    font-weight: 600;
    font-size: 14px;
    vertical-align: middle;
    color: var(--grey-darker);
}

.cart-seller .grey_head span {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-bottom: 0;
}

.cart-seller .grey_head {
    padding: 7px 30px;
    font-size: 14px;
}

.cart-seller .cart-summary tr:last-child {
    border-bottom: 0px;
}

.repeat-cell.cart-seller-wrap .box_wrap {
    padding-bottom: 10px;
}

.cart-seller .cartdetail__footer {
    background: var(--grey-lighter);
    margin: 10px 15px;
}

.cart-seller-actions {
    padding: 0 10px;
}

.cart-seller-actions .seller-actions td {
    padding: 10px;
    width: 50%;
}


/*--Cart Buyer----*/
.cart .dropsection{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.cart .cartdetail__body, .dropsection .cartdetail__body{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    }
.cart.cart-is-active .dropsection.cart-buyer, .is-active.dropsection.cart-buyer {
    overflow: visible;
}

@media(min-width:767px) {
    .cart.cart-is-active .dropsection.cart-buyer, .basket-content .dropsection.cart-buyer {
        padding-top: 0;
    }

     
}



.cart-buyer .close {
    left: -20px;
    top: 0px;
    right: auto;
    background: #fff;
    border-radius: 500px;
    opacity: 1;
    background-color: var(--grey-light);
    padding: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cart-buyer .close::before {
    height: 12px;
    width: 2px;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin: 0;
}

.cart-buyer .close::after {
    width: 12px;
    height: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin: 0;
}

@media(max-width:767px) {
    /*  .cart.cart-is-active .cart-buyer .close {
        top: 10px;
        right: 10px;
        left: auto;
    }*/

    .cart-detail {
        max-width: 18rem;
        padding-top: 0;
    }

}

.cart-buyer .grey_head {
    border-top: 0 none;
}

.cart-buyer .grey_head label {
    font-weight: 600;
    font-size: 14px;
    vertical-align: middle;
    /* color: var(--grey-darker); */
}

.cart-buyer .grey_head span {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-bottom: 0;
}

.cart-buyer .grey_head {
    padding: 7px 30px;
    font-size: 14px;
}

.cart-buyer .cart-summary tr:last-child {
    border-bottom: 0px;
}

.repeat-cell.cart-buyer-wrap .box_wrap {
    padding-bottom: 10px;
}

.repeat-cell.cart-buyer-wrap:first-child {
    padding-top: 0;
}

.cart-buyer .cartdetail__footer {
    background: var(--grey-lighter);
    /* margin: 10px 15px; */
    padding: 10px ;
}
.cart-buyer .cartdetail__footer .cart-btn-group{
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
}
.cart-buyer .cartdetail__footer .cart-btn-group > *{flex: 1; margin: 0;}
.cart-buyer .cartdetail__footer .cart-btn-group > *:not(:last-child){margin-right: 10px;}
.tile .product_with_varient .product-info{min-height:85px;}
.tile .product-category{display: -webkit-box !important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;}
.product-card .item-yk-head {
    padding-left: 0px;
    padding-right: 20px;
}
#shopSettingsBlock .form.form--horizontal input[type='submit']{
	margin-top:5px;
}

@media only screen and (max-width: 767px) {

    .cart-buyer .cartdetail__footer {
        margin: 5px;
    }

    .cart-buyer .cartdetail__footer .btn {
        padding: 0 13px;
        font-size: 13px;
        margin: 5px 0;
        display: block;
    }
}

.cart-buyer-actions {
    padding: 0 10px;
}

.cart-buyer-actions .seller-actions td {
    padding: 10px;
    width: 50%;
}

.dropsection.cart-buyer .cart-summary.item-yk .item-yk-head-specification {
    word-break: break-all;
    white-space: normal;
}

/* .dropsection.cart-buyer .cart-summary .product_price span {
    display: block;
} */

.repeat-cell.cart-buyer-wrap {
    padding: 0;
}

.cart-buyer-wrap h5 {
    border-top: 0 none;
    padding: 10px 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    background-color: var(--grey-darker);
    color: var(--white-color);
}

.item-detail-listing {
    max-height: 80vh;
    overflow: hidden;
    overflow-y: auto;
}

.cart-buyer-wrap .title_head {
    padding: 0;
}

.cart-buyer-wrap .grey_head label {
    font-weight: 500;
}

.cart-buyer-wrap .grey_head .green_tag {
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: 0;
    padding: 5px 10px;
}

.cart-buyer-wrap .cart-buyer-actions .seller-actions td {
    width: auto;
}

.cart-buyer-listing.cart--full tr {
    border-bottom: 0 none;
}

.cart-buyer-listing.cart--full .cart-buyer-wrap tr {
    border-bottom: solid 1px var(--grey-darker);
}

@media (max-width:767px) {
    .cart-buyer-listing .panel__head .btn {
        margin-top: 15px;
    }

    .cart-buyer-wrap .grey_head {
        display: block;
        text-align: center;
    }
}

.cart-buyer-wrap .cart-buyer-actions .seller-actions td {
    padding: 0 5px;
    vertical-align: middle;
}

.cart-buyer-wrap .cart-buyer-actions {
    padding-right: 0;
}

.cart-buyer-wrap .cart-buyer-actions .field-set {
    margin: 0;
}

.cart-buyer-wrap .label_tag {
    color: var(--txt-color-light);
}

.cart-buyer-wrap .cart--full tr td:not(:last-child):first-child {
    padding-left: 0;
    width: 100px;
    vertical-align: middle;
}

.cart-buyer-wrap .cart--full tr td {
    vertical-align: middle;
}

.cart-buyer-wrap .qty-wrapper {
    display: block;
}

.cart-buyer-wrap .qty-wrapper .qty-wrap {
    display: -webkit-box;
    display: flex;
}

.cart-buyer-wrap .qty-wrapper .qty {
    /* width: 20% */
    max-width: 150px;
}

@media(max-width:767px) {
    .cart-buyer-wrap .qty-wrapper .qty {
        width: 100%;
    }
}

.cart-buyer-wrap .qty-wrapper .refresh {
    width: 25px;
}

.cart-buyer-wrap .qty-wrapper .refresh path {
    fill: var(--second-color);
}

.cart-buyer-wrap .qty-wrapper .text--normal-primary {
    margin-top: 2px;
    display: block;
    color: var(--first-color) !important;
    font-size: 12px;
}

.cart-buyer-wrap .price-wrap .text--normal-secondary {
    margin-left: 10px;
}

.cart-buyer-wrap .cart--full tr td:not(:first-child):last-child {
    width: 15%;
}

.cart-buyer-wrap .cart--full tr td:last-child .btn {
    margin-top: 10px;
}

.cart-buyer-wrap .cart--full tr:last-child {
    border-bottom: 0 none;
}

.cart-footer-buyer {
    background: var(--grey-lightest);
    padding: 1rem;
}

.cart-footer-buyer.cart-footer .cartdetail__footer {
    /* width: 35%; */
}

.cart-footer-buyer.cart-footer .cartdetail__footer table td {
    padding: 10px;
}

.cart-footer-buyer.cart-footer .cartdetail__footer table td:first-child {
    padding-left: 0;
}

.cart-footer-buyer.cart-footer .cartdetail__footer table td:last-child {
    padding-right: 0;
}

.cart-footer-buyer.cart-footer .cartdetail__footer table tr.border {
    border: 0 none;
    border-top: 1px dashed var(--grey-light);
}

/* .cart-footer-buyer .cartdetail__footer td,
.cart-footer-buyer .cartdetail__footer td.hightlighted {
    font-size: 1.1em;
} */

/*============================SHOP TIME SLOT POPUP=========================*/

.togglehead {
    display: none;
}

.tabspanel .tabs_list {
    display: table;
    margin: 0 auto;
}

.tabspanel .tabs_list li {
    display: inline-block;
    padding: 0 10px 10px 25px;
}

.tabspanel .tabs_list li a {
    border-bottom: 3px solid transparent;
    padding-bottom: 8px;
}

.tabspanel .tabs_list li a .txt {
    font-size: 20px;
    color: #2c2c2c;
    margin-left: 10px;
    vertical-align: top;
}

.tabspanel .tabs_list li:hover a,
.tabspanel .tabs_list li a.active {
    border-bottom-color: #9de8d7;
}

.tabspanel .tabs_list li:hover a .txt,
.tabspanel .tabs_list li a.active .txt {
    color: #6dc2af;
}

.tabspanel .tabs_list li:hover a .svg_icon,
.tabspanel .tabs_list li a.active .svg_icon {
    fill: #6dc2af;
}


#facebox .shop__slot__popup {
    padding: 0;
}

#facebox .content.faceboxWidth.shop__slot__popup {
    width: 580px;
}

@media (max-width: 1024px) {
    #facebox .content.faceboxWidth.shop__slot__popup {
        width: auto;
    }

    .dashboard .container--addresses {
        -webkit-box-flex: 0;
                flex: 0 0 100%;
        max-width: 100%;
    }

}

.shop__slot__popup .tabspanel {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.cal-wrap,
.slot-wrap {
    width: 50% !important;
}

.slot-wrap {
    padding: 25px;
    padding-right: 0px;
}

.shop__slot__popup .normaltabs li a {
    padding: 8px 20px;
    display: -webkit-box;
    display: flex;
    /*flex-wrap: wrap;*/
    -webkit-box-align: center;
            align-items: center;
}

.shop__slot__popup .normaltabs li a:hover,
.shop__slot__popup .normaltabs li a.is-active {
    background-color: var(--first-color);
    color: var(--first-inverse-color);
}

.shop__slot__popup .cal-icon {
    padding-right: 15px;
}


.shop__slot__popup .cal-icon svg {
    fill: #dcdcdc;
}

.shop__slot__popup .normaltabs li a:hover .cal-icon svg,
.shop__slot__popup .normaltabs li a.is-active .cal-icon svg {
    fill: #fff;
}

.shop__slot__popup .cal-list {
    /*display: flex;*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    color: #000;
    font-size: 15px;
}

.shop__slot__popup .cal-list span {
    margin-left: 7px;
}

.shop__slot__popup .normaltabs li a:hover .cal-list,
.shop__slot__popup .normaltabs li a.is-active .cal-list {
    color: #fff;
}

.shop__slot__popup .slot-wrap .title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.shop__slot__popup .slot-wrap .slot-list li {
    margin-bottom: 18px;
}

.shop__slot__popup .slot-wrap .slot-list li:last-child {
    margin-bottom: 0;
}

.radio.is-checked .input-helper:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.checkout-page .action_two_cell {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
}

.checkout-page .self_pickup_field {
    float: left;
}

.checkout-page .delivery_slot_field {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
            align-items: center;
}

.checkout-page .delivery_slot_field .field-set label {
    margin-right: 5px;
}

.checkout-page .setDeliveryDate a {
    /* border: 1px solid var(--first-color); */
    padding: 5px 10px;
    background-color: #fff;
    color: #000;
    /* background-image: url(images/arrow-link.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    background-size: 17px 17px;
    padding-right: 33px; */
}

.checkout-page .setDeliveryDate a {
    color: #000;
    font-size: 13px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
}

.checkout-page .setDeliveryDate a .cal-slot-icon {
    display: inline-flex;
    margin-left: 10px;
    width: 15px;
    height: 21px;
}

.checkout-page .setDeliveryDate a .cal-slot-icon svg {
    width: 15px;
}

.checkout-page .setDeliveryDate a .cal-slot-icon path {
    fill: var(--first-color)
}


.popup .shop__slot__popup .cal-wrap.scrollbar,
.slot-wrap {
    max-height: 320px;
    min-height: 320px;
}

.slot-wrap .scrollbar {
    max-height: 240px;
}

.slot-wrap .slot-list {
    padding-top: 10px;
}

.popup .shop__slot__popup .scroll__handle {
    margin: 0 0 0 -4px;
    background: #c3c3c3;
}

form.header_location_form {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.remove_first_document {
    margin-right: 5px;
    margin-bottom: 0px;
}

.form__content .add_document {
    margin-top: 25px;
}


@media(max-width:500px) {
    .form__content .add_document {
        margin-top: 0;
    }

    #facebox .content.faceboxWidth.shop__slot__popup {
        width: 100%;
    }

    .cal-wrap,
    .slot-wrap {
        width: 100% !important;
    }

    .popup .shop__slot__popup .cal-wrap.scrollbar,
    .slot-wrap {
        min-height: auto;
    }

    .checkout-page .container--addresses .form input[type="submit"],
    .checkout-page .container--addresses .form input[type="button"] {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media(max-width:700px) {

    .popup .shop__slot__popup .cal-wrap.scrollbar,
    .slot-wrap {
        min-height: auto;
    }
}


/*============================DASHBORAD=========================*/
.dashboard-togles span.ink {
    display: block;
}

.toggled-user .dashboard-options li a {
    /* box-shadow: 0 0px 20px 3px #000;
    -moz-box-shadow: 0 0px 20px 3px #000;
    -webkit-box-shadow: 0 0px 20px 3px #000;*/
    border: 1px solid #f2f2f2;
}

.field_cover .btn-showmap {
    line-height: 40px;
}

.tabs--small li {
    background: transparent
}


/*--From Style-css*/
.dashboard .map-wrap {
    margin-top: 15px;
}


/*============================ORDER PAGE=========================*/
.orders-detailing {}

.light-graybg {
    background: #fff;
    padding: 15px;
}

.border-gap {
    border-top: 1px solid #e2e7ec;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
}

.repeated-table {
    padding: 15px;
}

.orders-detailing .repeated-table tr th,
.orders-detailing .label-field {
    color: #38424f;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;

}

@media(max-width:1440px) {
    .orders-detailing .label-field {
        display: none !important;
    }
}

@media(max-width:700px) {
    .orders-detailing .label-field {
        display: block !important;
    }
}

.orders-detailing .repeated-table tr th,
.orders-detailing .repeated-table tr td,
.orders-detailing .label-field {
    font-size: 13px;
    padding: 15px 7px;
    vertical-align: top;
}


.orders-detailing .repeated-table tr td {
    color: #545e6c;
    font-size: 12px;
    border-top: 1px solid #e2e7ec;
    font-weight: 600;
}

@media(max-width:700px) {
    .orders-detailing .repeated-table tr th {
        display: none;
    }

    .orders-detailing .repeated-table tr td {
        display: block;
        padding: 10px 0;
    }

}

.orders-detailing tr td:first-child,
.orders-detailing tr th:first-child {
    padding-left: 20px;
}


.repeat-head {
    background: #f5f5f5;
    padding: 15px;
    padding-bottom: 0;
}

@media(max-width:700px) {
    .repeat-head {
        padding: 10px;
    }
}

.repeated-body {
    padding: 0 15px;
}

@media(max-width:700px) {
    .repeated-body {
        padding: 0;
    }
}

.repeated-body:nth-child(odd) {
    background: #fbfbfb;
    border-top: 1px solid #e2e7ec;
    border-bottom: 1px solid #e2e7ec;
}

.box-highlights {
    margin-bottom: 20px;
    box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f4;
}

.orders-detailing .label-field {
    padding: 0 0 5px 0;

}

.repeat-wrapper {
    border: 1px solid #dddddd;
    margin-bottom: 25px;
}

.repeat-wrapper:last-child {
    margin-bottom: 5px;
}

.top_cell {
    padding: 20px 30px;
}

.top_cell label {
    font-weight: 700;
    font-size: 18px;
}

@media(max-width:500px) {
    .top_cell label {
        font-size: 16px;
    }
}

.top_cell label:last-child {
    display: none;
}

.top_cell .order_id {
    background: var(--first-color);
    padding: 5px 10px;
    color: var(--first-inverse-color);
    margin-left: 10px;
}

.grey_head {
    background: #f5f5f5;
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.grey_head label {
    font-weight: 700;
    font-size: 16px;
}

.grey_head span {
    font-weight: 700;
    font-size: 22px;
    display: block;
}

.grey_head .green_tag,
.checkout-page .green_tag {
    position: relative;
    padding: 5px;
    border-radius: 3px;
    /* background: #E9F5E6; */
    border: 1px solid var(--first-color);
    color: var(--first-color);
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 8px;
    text-align: center;
}

.grey_head .red_tag {
    position: relative;
    padding: 5px;
    /* background: #fddbe4; */
    border: 1px solid var(--second-color);
    color: var(--second-color);
    Font-size: 13px;
    font-weight: 400;
    display: block;
    text-align: center;
}

.grey_head .green_tag:before,
.checkout-page .green_tag:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: currentColor;
    opacity: 0.15;
}

.box_wrap {}

.box_wrap .box_head {
    padding: 15px 30px;
    background: #d7d7d7;
    font-size: 18px;
}

.box_wrap .box_body_wrap {
    padding: 20px 30px;
}

.box_wrap .box_body .box {
    width: 26.33%;
    display: inline-block;
    padding: 0 20px 0 0;
    vertical-align: top;
}

.box_wrap .box_body .box:first-child,
.box_wrap .box_body .box:nth-child(3) {
    width: 46%;
}

.box_wrap .box_body .box:first-child p,
.box_wrap .box_body .box:nth-child(2) p {
    display: block;
    margin-top: 10px;
}

.box_wrap .box_body .box:nth-child(2) {
    width: 50%;
    padding-right: 0;
    margin: 0;
}

@media(max-width:500px) {
    .box_wrap .box_body .box {
        width: 48%;
    }

    .box_wrap .box_body .box:first-child,
    .box_wrap .box_body .box:nth-child(3),
    .box_wrap .box_body .box:nth-child(2) {
        width: 100%;
    }
}

.box_wrap .box_body .box label {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.box_wrap .box_body .box p {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.box_wrap .box_body_wrap .box_header {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.box_wrap .box_body_wrap .box_header li {
    display: inline-block;
    width: 15%;
    padding: 0 10px;
}

.box_wrap .box_body_wrap .box_header li label {
    font-size: 16px;
    font-weight: 700;
}

.box_wrap .box_body_wrap .box_body {
    padding: 0;
}

.box_wrap .box_body_wrap .box_body li {
    display: inline-block;
    width: 15%;
    padding: 8px 10px;
    vertical-align: top;
}

.box_wrap .box_body_wrap .box_body li p {
    width: 255px;
}

.box_wrap .box_body_wrap .box_body label {
    display: none;
    font-size: 16px;
    font-weight: 700;
}

.box_wrap .box_body_wrap .box_body .gap {
    border-top: 1px solid #d7d7d7;
    display: block;
    width: 100%;
    display: none;
}

.grey_head .select_tag {
    color: var(--grey-lightest);
    Font-size: 14px;
    font-weight: 700;
    display: block;
    text-align: left;
    margin: 10px 0;
}

.grey_head .select_tag form {
    margin-top: 5px;
}

/*============================AVTAR=========================*/
.avatar {
    border-radius: 100%;
    display: block;
    position: relative;
    width: 90px;
    height: 90px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}

.avatar img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.avatar.avatar--xsmall {
    width: 40px;
    height: 40px;
}

.avatar.avatar--small {
    width: 60px;
    height: 60px;
}

.avatar:after {
    pointer-events: none;
    content: attr(data-text);
    font-size: 2em;
    color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-weight: 700;
}

.avatar.avatar--xsmall:after {
    font-size: 1rem;
}

.avatar.avatar--centered {
    margin: auto;
    display: block;
}


/*============================BREADCRUMBS=========================*/
.breadcrumbs {}

.breadcrumbs-row {
    padding: 20px 0px 0px;
}

@media(max-width:1024px) {
    .breadcrumbs-row {
        padding: 15px;
        background: #eee;
        margin: 0 -10px;
    }

}

.breadcrumbs ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #8b8b8b;
    padding: 0 25px 0 0;
    font-weight: 700;
    font-size: 12px;
}

.breadcrumbs ul li:before {
    position: absolute;
    right: 12px;
    top: 4px;
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.breadcrumbs ul li:last-child:before {
    border: 0px;
}

.breadcrumbs ul li a {
    color: inherit;
    display: block;
    color: #8b8b8b;
}

/*============================RIBBON=========================*/
.ribbon-wrap {
    background: #80c300;
    color: #fff;
    font-size: 0.9em;
    border-radius: 4px;
    padding: 4px 10px;
    font-weight: 700;
    display: inline-block;
    max-width: 800px;
}

.ribbon-wrap span {
    color: #f7ff1d;
    display: inline-block;
}

@media(max-width:1024px) {
    .ribbon-wrap {
        max-width: 550px;

    }
}

/*============================PAGINATION=========================*/
.pagination {
    border: none;
    padding: 0;
}

.pagination.pagination--center {
    display: table;
    margin: 30px auto 0;
    text-align: center;
}

.pagination li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 2px;
}

.pagination li a {
    text-transform: uppercase;
    width: 35px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    display: block;
    font-size: 0.9rem;
    color: #373838;
    border-color: transparent;
    border-radius: 0px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.pagination li.is-prev a:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    content: "";
    border-left: 3px solid #373838;
    border-bottom: 3px solid #373838;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.pagination li.is-next a:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    content: "";
    border-right: 3px solid #373838;
    border-top: 3px solid #373838;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.pagination li a:hover,
.pagination li.is--active a {
    border-color: var(--first-color);
    color: var(--first-color);
    background: #fff;
}

.pagination li.is-prev a:hover:before {
    border-left-color: var(--first-color);
    border-bottom-color: var(--first-color);
}

.pagination li.is-next a:hover:before {
    border-right-color: var(--first-color);
    border-top-color: var(--first-color);
}


/*============================CONTACT US=========================*/
@media(min-width:768px) {
    .contact-grid.box--tabled .box__cell:last-child {
        padding-left: 50px;
    }
	.boxcontainer .box--gray {
		padding: 10px 10px 10px 80px;
	}
	.boxcontainer .box--gray .fa {
		top: 15px;
		font-size: calc(1.5em + 1.1vw);
	}
	.boxcontainer .box--gray h3 {
		font-size: calc(0.75rem + 0.75vw);
	}
}
@media(max-width:767px) {
	.boxcontainer .box--gray {
		padding: 10px 0px 10px 60px;
	}
	.boxcontainer .box--gray .fa {
		top: 15px;
		left: 0;
	}
	.boxcontainer .box--gray h3 {
		font-size: 1rem;
	}

}



/*============================INNER PAGES MORE=========================*/
.banner-seller {
    margin-top: -30px;
}

.mobile-actions {
    display: none;
}

.top-row {
    margin-bottom: 10px;
}

.col__left .sticky-col {
    padding-bottom: 40px;
}

.gallery {
    position: relative;
    margin: auto;
}

@media(max-width:767px) {
    .gallery {
        max-width: 500px;
    }

    .boxcontainer .box--gray .fa {
        font-size: 2.5rem;
    }
}

.gallery .caraousel {
    margin: 0;
}

.gallery .gallery__media {
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery .gallery__media:before {
    position: relative;
    padding-bottom: 100%;
    display: block;
    content: "";
}

.gallery .gallery__media img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.gallery__main li .gallery__media img {
    display: block;
    margin: auto;
}

.gallery .gallery__lbottom {
    margin: 10px 0 0;
}

.gallery__thumbs {
    padding: 0 35px;
}

.gallery__thumbs li > div {
    padding: 10px;
    /* border: solid 1px var(--border-color);
    margin: 10px 15px;
    text-align: center;
    cursor: pointer;*/

}

@media(max-width:500px) {
    .gallery__thumbs li > div {
        padding: 5px;
    }
}

.gallery__thumbs li .gallery__media {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

.gallery__thumbs li.slick-current .gallery__media {
    border-color: var(--first-color);
}

.caraousel .slick-arrow {
    position: absolute;
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: none;
    text-indent: -999999px;
    z-index: 1;
    top: 50%;
    margin: -10px 0 0;
}

.caraousel .slick-prev:after,
.caraousel .slick-next:after {
    content: "";
    border-width: 0;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    position: absolute;
    left: 50%;
    margin-left: 0;
    top: 50%;
    margin-top: -5px;
}

.caraousel .slick-prev::after {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
}

.gallery__top {
    list-style: none;
}

.gallery__thumbs .slick-arrow.slick-prev,
.gallery__top .slick-arrow.slick-prev {
    opacity: 1;
    box-shadow: none;
    left: 0;
}

.gallery__thumbs .slick-arrow.slick-disabled,
.gallery__top .slick-arrow.slick-disabled {
    opacity: 0.2;
    cursor: default;
}

.gallery__thumbs .slick-next.slick-arrow,
.gallery__top .slick-next.slick-arrow {
    right: 15px;
    opacity: 1;
    box-shadow: none;
}


.horizontal-actionlist {
    float: right;
}

@media(max-width:500px) {
    .horizontal-actionlist {
        float: none;
    }
}

.horizontal-actionlist li {
    margin: 10px 0 0;
    display: inline-block;
}

@media(max-width:1024px) {
    .horizontal-actionlist li {
        margin: 0;
        /*display: block;*/
    }
}


@media(max-width:767px) {
    .horizontal-actionlist {
        float: none;
    }

    .horizontal-actionlist li {
        margin: 10px 0 0;
        display: inline-block;
    }

}

.like-action {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    z-index: 1;
    background: #fff;
}

.like-action.is-active .svg-icon svg {
    fill: var(--first-color);
}

.horizontal-actionlist li a.like-action {
    position: relative;
    display: block;
    left: auto;
    top: auto;
    border: 1px solid #ddd;
}

.like-action .svg-icon {
    height: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.like-action .svg-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--grey-lighter);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.toggle-dropdown {
    position: relative;
    display: inline-block;
}

.horizontal-actionlist li a.share-action {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: block;
    position: relative;
    border: 1px solid #ddd;
}

.horizontal-actionlist li a.share-action .svg-icon {
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.horizontal-actionlist li a.share-action .svg-icon svg {
    fill: #BABABA;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.toggle-dropdown__target {
    min-width: 250px;
    z-index: 9;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.toggle-dropdown.is-active .toggle-dropdown__target {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.toggle-dropdown__target::before {
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    position: absolute;
    right: 5px;
    top: -10px;
    z-index: 1;
}

@media(max-width:767px) {

    /* .toggle-dropdown__target {
        left: 0;
        transform-origin: top left;
    }

    .toggle-dropdown__target:before {
        left: 5px;
        right: auto;
    }*/
}

.toggle-dropdown .collection__container {
    padding: 15px;
}

.toggle-dropdown .collection__container ul li {
    display: inline-block;
}

.collection__title {
    display: block;
    border-bottom: 1px solid #eee;
    margin: 0 0 10px 0;
    color: #000;
    padding: 0 0 5px 0;
    font-weight: 500;
    font-size: 1.1em;
}

.social-share li {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 0 0;
}

.social-share li a,
.social-share li span {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: block;
    padding: 5px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.06);
}

.social-share li a img,
.social-share li span img {
    width: 16px;
    display: block;
    margin: 5px auto 0;
    opacity: 0.6;
    pointer-events: none;
}

.content__row {
    margin: 25px 0;
}

.product-type-img {
    position: relative;
    width: 22px;
    padding: 6px 0 0 0;
    float: left;
}

@media(max-width:767px) {
    .content__row {
        margin: 20px 0;
    }

    .product-type-img {
        padding-top: 5px;
    }

}

.content__row.content__row-head {
    margin: 0;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 15px;
}

.content__row-head .head__subtitle {
    color: #8b8b8b;
    font-size: 12px;
}

.content__row .content__row-caption {
    color: #373838;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.content__row .price-content {
    color: #373838;
}

.content__row .price-content .price-standard {
    font-size: calc(1rem + 1vw);
    font-weight: 700;
}

.content__row .price-content .price-old {
    font-size: 20px;
    color: #8b8b8b;
    font-weight: 700;
    margin: 0 0 0 10px;
}

.content__row .price-content .price-discounted {
    font-size: 20px;
    color: #8b8b8b;
    font-weight: 700;
    margin: 0 0 0 10px;
}

.content__row .price-content .price-note {
    display: block;
    line-height: 0.5;
}

.content__row .select-border {}

.content__row .select-border ul {
    margin-left: -3px;
    margin-right: -3px;
}

.content__row .select-border ul li {
    display: inline-block;
    margin: 3px;
    margin-top: 0;
}

.content__row .select-border ul li a {
    color: #373838;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 3px;
}

.content__row .select-border ul li:hover a,
.content__row .select-border ul li.is--active a {
    border-color: var(--first-color);
}

.content__guides {
    margin-left: -3px;
    margin-right: -3px;
}

.content__guides span {
    margin: 0 3px;
}

.content__guides .guides-shipping {
    color: #80c300;
}

.content__guides .question-icon {
    vertical-align: middle;
}

.content__guides .guides-shipping .question-icon path {
    fill: #80c300;
}

.content__guides .guides-delivery .question-icon path {
    fill: #ff1653;
}

.content__guides .guides-delivery {
    color: var(--first-color)
}

.qty {
    width: 100%;
    background: #fff;
    border-radius: 4px;
}


.content__row .qty .increase,
.content__row .qty .decrease {
    font-weight: 300;
    height: 40px;
    line-height: 40px;
    width: 50px;
}

.content__row .addToCartForm {
    width: 100%;
}

.content__row .btns-group {
    margin-top: 27px;
}

.content__row .btns-group .btn {
    height: 46px;
    line-height: 46px;
    padding: 0 15px;
}


.content__row .qty input {
    box-shadow: none;
    -webkit-box-shadow: none;
}



@media(max-width:500px) {
    .content__row .btns-group .btn {
        padding: 0 15px;
    }

}

.selectors.selector--qty .slick-arrow {
    opacity: 1;
    top: calc(50% - 20px);
    background: none;
    box-shadow: none;
    margin: 0;
}

.selectors.selector--qty .slick-arrow.slick-prev {
    right: 7px;
}

.selectors.selector--qty.caraousel .slick-arrow.slick-disabled {
    opacity: 0.2;
}

.selectors.selector--qty .slick-arrow.slick-next {
    /* top: 18px; */
    right: 10px;
}

.selector--qty .slick-arrow.slick-prev:before,
.selector--qty .slick-arrow.slick-next:before {
    display: none;
}

.content__row .product-img {
    width: 50px;
    border: 1px solid #ddd;
}

.cart-tbl-addons {
    border-radius: 5px;
    overflow: hidden;
    border-collapse: separate;
    display: table;
    border: 1px solid #ededed;
}
/*
.cart-tbl-addons td:first-child {
    border-left: 1px solid #ededed;
}

.cart-tbl-addons td:last-child {
    border-right: 1px solid #ededed;
}
*/
@media(max-width:767px) {
    .cart-tbl-addons {
        display: block;
    }
    .cart-tbl-addons .item-yk-head-title {
        white-space: normal;
    }
    .cart-tbl-addons {
        border-top: 1px solid var(--border-color)
    }

    .cart-tbl-addons td {
        vertical-align: middle;
    }
}

@media(max-width:1023px) {
    .cart-tbl-addons.table .qty {
        width: 95px;
    }

}

.content__row.shop-info-row {
    position: relative;
    /* background-color: #E9F5E6; */
    padding: 20px;
    /*background-image: url(images/lines-pattern.jpg);*/
    background-repeat: repeat;
    text-align: center;
    z-index: 2;
}

.content__row.shop-info-row:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--first-color);
    opacity: 0.15;
    z-index: -1;
}

.shop-info-row .avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.shop-info-row .avatar a {
    display: block;
}

.shop-info-row .avatar img {
    border-radius: 0;
}

.shop-info-row .shop-info [class*="col-"]:last-child {
    text-align: left;
}


.shop-info-row .shop-info [class*="col-"]:last-child p {
    margin: 0;
}

.shop-info-row .shop-links {
    text-align: inherit;
}

@media(max-width:575px) {

    .shop-info-row .shop-links,
    .shop-info-row .content__row-caption {
        text-align: center;
    }

    .shop-info-row .avatar {
        margin: 10px auto;
    }

    .shop-info-row .shop-info [class*="col-"]:last-child {
        text-align: center;
    }
	.grey-circle.user_img_crcle{margin: 0;}
	.basket-action .grey-circle{ padding-left: 5px; padding-right: 5px;}
	.basket-action .grey-circle .cart-counter{display: none;}
}

@media(width:768px) {
    .shop-info-row .shop-links {
        text-align: left;
    }

    .shop-info-row .shop-info [class*="col-"]:last-child {
        padding-top: 15px;
        padding-left: 10px;
    }
}

.shop-info-row .shop-links a {
    font-weight: 600;
    border-left: 2px solid var(--first-color);
    margin-left: 7px;
    padding-left: 7px;
}

.shop-info-row .shop-links a:first-child {
    border: 0 none;
    padding: 0;
    margin: 0;
}

.shop-info-row .shop-info {
    padding: 10px 0 0 0;
}

.shop-info-row .shop-info h6 {
    padding: 0;
}

.shop-info-row .shop-info h6 a {
    color: #373838;
    font-size: 24px;
}

.sticky-bar {
    z-index: 1;
}

.section-actions-bar {
    /*background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
  margin-top: -10px;
    padding: 0 10px;*/
}



.section-repeated {
    border: 1px solid #e8e8e8;
    padding: 20px;
    margin: 20px 0;
}

@media(max-width:500px) {
    .section-repeated {
        padding: 15px;
    }
}

.section-repeated .container--cms h3 {
    font-size: 1.2rem;
    padding-bottom: 10px;
}

.section-repeated .container--cms h6 {
    font-size: 1.0rem;
    color: #373838;
    padding-bottom: 10px;
}

.repeat-feedback-wrap .repeat-btn {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.repeat-feedback-wrap .repeat-btn .btn {}

.feedback-wrap {
    background: #f5f5f5;
    padding: 15px;
    margin-top: 20px;
}

@media(max-width:500px) {
    .feedback-wrap {
        text-align: center;
    }
}

.repeat-feedback {
    display: table;
    width: 100%;
}

.feedback-head .rating {
    display: block;
    margin: 0 0 10px 0;
}

.feedback-left {
    display: table-cell;
    width: 20%;
    text-align: center;
    margin: auto;
    vertical-align: top;

}

@media(max-width:500px) {
    .feedback-left {
        display: block;
        width: 100%;
        text-align: left
    }
}

.feedback-guest {}

.feedback-guest .guest-label {
    background: #f5f5f5;
    color: #454545;
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    margin: auto;
    margin-bottom: 10px;
}

@media(max-width:500px) {
    .feedback-guest .guest-label {
        margin: 0 0 10px 0;
    }
}

.feedback-guest .guest-label img {
    border-radius: 100%;
    padding: 10px;
}

.feedback-guest .guest-name {
    display: block;
    font-weight: 700;
}

.feedback-guest .guest-time {
    color: #9a9a9a;
    font-size: 12px;
    text-transform: uppercase;
}

.feedback-actions .inline-list {
    display: inline-block;
    margin: 0;
}

.feedback-actions .inline-list > li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px 5px 5px;
}

.feedback-actions .inline-list > li:before {
    display: none;
}

.repeat-feedback {
    border-bottom: 1px solid #f1f1f1;
    padding: 20px 0;
}

.repeat-feedback:last-child {
    border-bottom: 0 none;
}

.repeat-feedback .image-helper {
    display: inline-block;
    vertical-align: middle;
}

.repeat-feedback .image-helper .thumb-action {
    fill: #80c300;
}

.repeat-feedback .image-helper.thumb-rotate .thumb-action {
    fill: #ff1653;
}

.repeat-feedback .image-helper.thumb-rotate {
    position: relative;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
    vertical-align: middle;
    margin-top: -7px;
}

.repeat-feedback .inline-list .thumb-y,
.repeat-feedback .inline-list .thumb-n {
    padding-left: 10px;
    font-weight: 700;
}

.feedback-actions p {
    display: inline-block;
    margin: 0;
}

.section-repeated .progress--horizontal .progress__bar {
    background-color: var(--first-color);
    color: var(--first-inverse-color);
}

.section-repeated .listing--progress li {
    list-style: none;
    padding: 0 15px 12px 15px;
}

@media(max-width:500px) {
    .section-repeated .listing--progress li {
        padding: 0 0 12px 0;
    }
}

/*.section-repeated .rating-progress-row {
    border-right: 1px solid #e6eeeb;
    padding-right: 25px;
}*/

@media(max-width:768px) {
    .section-repeated .rating-progress-row {
        border: 0 none;
        padding-right: 0;
    }
}



.section-repeated .listing--progress li:before {
    display: none;
}

.section-repeated .progress--radial {
    margin: auto;
}
.card-ratings{text-align:center;}
.section-repeated .have-you {
    background: #fff
}

.section-repeated .listing--progress > li .grid--left {
    /*width: 12%;*/
}

.section-repeated .select-custom .select--arrow select {
    border: none;
    box-shadow: none;

}

@media(max-width:500px) {
    .select-custom span.static_txt {
        display: none;
    }

    .select-custom .select--arrow {
        width: 100%;
    }
}

@media(max-width:400px) {
    .section-repeated .listing--progress > li .grid--left {
        width: 20%;
    }
}

.box.box-green {
    border: 1px solid var(--second-color);
    background: #edfdcf;
    color: #629600;
}

.box.box-red {
    border: 1px solid var(--first-color);
    background: #fddbe4;
    color: var(--first-color);
}

.box.box-goldengreen {
    border: 1px solid #c3ca14;
    background: #fbfce1;
    color: #c3ca14;
}

.box.box-blue {
    border: 1px solid #72b9f5;
    color: #72b9f5;
    background: #edf4fe;
}

.box.box-grey {
    border: 1px solid #a5a5a5;
    color: #a5a5a5;
    background: #f7f8fa;
}

.statistics__box h4 span {
    background: transparent;
}

.statistics__box h4:before {
    display: none;
}

.statistics__box.-statsFull .box {
    min-height: auto;
    border-color: var(--border-color);
    color: var(--txt-color);
}

.statistics__box.-statsFull h4 {
    margin: 0;
}

.tbl-dashboard .box-head {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
    flex-wrap: nowrap;
    clear: both;
    float: none;
}

.box-head h4 {}

.box-head .view-all-orders-link {}

.tbl-normal {
    border: solid 1px #dedddd;
    border-collapse: collapse;
    width: 100%;
    margin-top: 25px;
}

.tbl-normal th {
    text-transform: uppercase;
    background: #fbfbfb;
    font-size: 14px;
    color: #545353;
    font-weight: 600;
    padding: 15px 20px;
    border: solid 1px #dedddd;
}

.tbl-normal td {
    vertical-align: top;
    font-size: 14px;
    color: #545353;
    font-weight: 400;
    padding: 15px;
    border: solid 1px #dedddd;
}

.tbl-normal.table tr:last-child td {
    border: solid 1px #dedddd;
}

.tbl-normal.table tr td:first-child {
    border-bottom: none;
}

.tbl-normal.table td:first-child,
.tbl-normal.table th:first-child {
    padding: 15px
}

.graph--sales.ct-perfect-fourth:before {
    padding-bottom: 40%;
}

.box.box-navigation {
    background: #fbfbfb
}

.box.box-navigation .box--list .links--vertical li {
    padding: 6px 0 15px 37px;
}

.box.box-navigation .box--list:last-child {
    border: 0 none;
    padding-bottom: 0;
}

.box.box-navigation .box--list .links--vertical a {
    /* font-size: 1.1em;*/
}

.box.box-navigation .box--list .links--vertical li .fa {
    font-size: 19px;
}

.tbl-dashboard .view-all-orders-link {
    float: right;
}

.tbl-dashboard .box-head {
    float: left;
}

.checkout-page {
    /* background: #fbfbfb;*/
}

.allsteps {
    counter-reset: section;
}

.steps__head {
    margin-bottom: 15px;
}

.steps__head .steps__number {
    position: relative;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
    line-height: 40px;
    background-color: var(--white-color);
    color: var(--first-color);
    border: 1px solid var(--first-color);
}

/* .steps__head .steps__number:before{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 100px;
  content: "";
  background-color: currentColor;
  opacity: 0.15;
} */
.steps__number:before {
    bottom: 0;
    color: inherit;
    content: ""counter(section, decimal) " ";
    counter-increment: section;
    left: 10px;
    overflow: hidden;
    padding: 15px 0;
    text-align: center;
    top: 0;
    width: 30px;
}

.steps__title {
    font-size: 24px;
    color: var(--first-color);
    font-weight: 600;
}

.block-pannel {
    margin-bottom: 40px;
}

.block-pannel .block {
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
}




.checkout-page .section {
    border-color: #ececec;
}

.checkout-page .section-head {
    padding: 15px;
    margin: 0;
    font-size: 1.25em;
    font-weight: 600;
}
.checkout-page .section-head:not(:last-child){
    border-bottom: solid 1px var(--border-color);
}

/* .checkout-page .check-login-wrapper,
.checkout-page .address-wrapper {
    padding: 25px;
} */

/* .checkout-page .make-payment-wrapper {
    padding: 25px 0 0 0;
} */

.checkout-page .add-side .heading {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.checkout-page .payment-pannel .section-head,
.checkout-page .payment-pannel .section {
    /* border: 0 none;
    padding: 0;
    border-bottom: 0 none; */
    margin: 0;
}

.checkout-page .check-login-wrapper .forgot {
    text-transform: capitalize;
}

.checkout-page .green_tag {
    margin-left: 10px;
    margin-bottom: 0;
}

.checkout-page .-row-heading td {
    vertical-align: middle;
    text-align: right;
}

.checkout-page .-row-heading td:first-child {
    text-align: left;
}

.checkout-page .-row-heading td select {
    width: 28%;
    margin-right: 10px;
}

.checkout-page .-row-heading td .field-set {
    width: auto;
    margin: 0;
}

/* .checkout-page .text-right .btn {
    margin-top: 10px;
} */

.checkout-page .product_price .item__price {
    display: inline-block;
    padding-right: 20px;
}

.checkout-page .product_price .text--normal {
    display: inline-block;
}

.checkout-page .product_price .text--normal input {
    border: 0 none;
    width: 115px;
    text-align: right;
}

.checkout-page .product_price .item__price {
    display: inline-block;
    text-align: left;
}

.review-wrapper span {
    display: inline-block;
    margin: 0 5px;
}


/*Non Rendered--*/
.field-two-wrap .field-wraper {
    width: 100%;
    position: relative;
}

.field-two-wrap .caption-wraper {
    width: 20%;
}

.field-two-wrap .field-wraper input {
    width: calc(100% - 74px);
    margin-right: 10px;
}

.field-two-wrap .field-wraper a {
    vertical-align: top
}


/*Seller Shops after liogin with Seller-------*/
.shopFormBlock .field-two-wrap .caption-wraper {
    width: 30%;
}

.shopFormBlock .field-two-wrap .field-wraper {
    width: 53%;
}

.shopFormBlock .field-wraper {
    vertical-align: middle;
}

@media(max-width:1200px) {
    .right-panel .row {
        padding-bottom: 20px;
    }

    .right-panel .row.top-row [class*="col-"] {
        margin: auto;
    }

    .sortlist-actions {
        float: none;
    }

}

@media(max-width:1200px) {

    .toggle-group--left {
        float: left;
        width: 50%;
    }

    .toggle-group--right {
        float: right;
        width: 50%;
        padding-left: 20px;
    }

    .footer-col-border {
        border-right: none;
    }

    .footer-last-col {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        display: -webkit-box;
        display: flex;
    }

    .product-type-img {
        width: 14px;
    }

    .footer-last-col .footer-block {
        max-width: 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
    }

    .footer__lower .btn {
        font-size: 1em;
    }
}

@media(max-width:992px) {
    .checkout-page .order-summary {
        margin: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media(max-width:767px) {
    .footer-block {
        padding: 5px 0;
    }

    .footer-last-col {
        padding-left: 0rem;
        display: block;
    }

    .footer-last-col .footer-block {
        max-width: 100%;
    }

    .shopFormBlock .field-two-wrap .field-wraper {
        width: 100%;
    }

    .dashboard .container--addresses .form small {
        display: block;
    }

    .toggle-group--left {
        width: 100%;
    }

    .toggle-group--right {
        padding: 0;
        width: 100%;
    }

    .container--cms p {
        font-size: .90rem;
    }

    .footer__lower {
        padding-bottom: 25px;
    }
}

@media(max-width:400px) {
    .container--addresses .field_cover small {
        display: block;
    }
}

@media(max-width:575px) {
    .checkout-page .order-summary .qty {
        width: 100%;
    }
}

@media(max-width:500px) {
    .row.site-section__body [class*="col-"] {
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .sortlist-actions li:first-child {
        width: 34%;
    }

    .cart-tbl-addons-wrap {
        white-space: nowrap;
        overflow: auto;
        display: block;
    }

    .feedback-wrap .sortlist-actions {
        max-width: 200px;
        float: none;
        margin: 10px auto 0;
    }

    .top_cell,
    .grey_head,
    .box_wrap .box_head,
    .box_wrap .box_body_wrap {
        padding: 15px;
    }

    .top_cell .-show-mobile {
        display: inline-block !important;
    }

    .top_cell [class*="col-"],
    .grey_head [class*="col-"] {
        margin: 5px 0;
    }

    .box_wrap .box_body li p {
        width: 100%;
    }

}

@media(width:768px) {
    .feedback-wrap .sortlist-actions {
        float: right;
        background: #fff;
        padding: 0 10px;
    }
}

@media(max-width:700px) {
    .repeated-table .box__head {
        background: #eee;
        padding: 10px;
    }
}

@media(max-width:600px) {

    .top_cell [class*="col-"]:last-child {
        padding-left: 20px;
    }

    .top_cell [class*="col-"]:last-child {
        padding-left: 10px;
        text-align: left;
    }


}


button#new_card {
    background-color: var(--first-color);
    color: #fff;
    padding: 9px;
    margin-right: 15px;
}

.--grey {
    background: #f5f5f5;
}

.search_map_pannel {
    padding: 10px;
}

.no-record {
    background-image: url(images/no-record.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    background-size: 45%;
    height: 250px;
}

.delivery-boy-view-order {
    float: left;
    padding-right: 20px;
}

@media(max-width:500px) {
    .rotator-actions .btn {
        margin: 5px 0;
    }

    .sortlist-actions li,
    .sortlist-actions li:first-child {
        width: 100%;
        margin: 2px 0;
    }
}


@media only screen and (max-width: 767px) {
    .fixed .header-checkout .logo {
        margin: 5px auto;
    }

    .field_cover .address_identifier {
        width: 100%;
    }

    .field_cover .btn-showmap {
        margin-top: 20px;
    }

}

/*.container--addresses .errorlist {
    position: absolute;
}*/

.list--vertical li .parents--link:after {
    top: 0px;
}

.cat-accordion ul ul li a {
    display: inline-block;
}

.field-wraper.field-two-wrap .field_cover,
.field-two-wrap .field-wraper .field_cover {
    border: 1px solid var(--border-color);
}

.field-wraper.field-two-wrap .field_cover span,
.field-two-wrap .field-wraper .field_cover span {
    width: 60px;
    display: inline-block;
    padding-left: 10px;
    border-right: 1px solid var(--border-color);
}

.field-wraper.field-two-wrap .field_cover input,
.field-two-wrap .field-wraper .field_cover input {
    width: calc(100% - 60px);
    border: 0px;
    border-radius: 0px;
}

.field-two-wrap .field-wraper .field_cover input,
.field-two-wrap .field-wraper .field_cover div {
    width: 100%
}

.field-two-wrap .field-wraper .field_cover {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
}

.field-wraper.field-two-wrap .field_cover input:focus,
.field-two-wrap .field-wraper .field_cover input:focus {
    border: 0 none;
    box-shadow: none
}

.field-two-wrap .errorlist {
    position: absolute;
    left: 0;
    top: 100%;
}

.final_order_table th:last-child, .final_order_table td:last-child {
    text-align: right;
}



.cart {
    display: inline-block;
    float: none;
}


@media(max-width:1199px) {

    /*From Style-newcss*/
    .quote__content {
        font-size: 1.1rem;
    }

}

@media(max-width:1200px) {
    .hide-resp {
        display: none !important;
    }

    .basket-content .cart-static-label {
        display: none;
    }

    .header__action .cart-count {
        background-color: var(--first-color);
    }

    .form-subscribe .form {
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }

    .form-subscribe .form img {
        display: none;
    }

    .form-subscribe input[type="text"] {
        max-width: 360px;
    }

    .form-subscribe input[type="submit"] {
        min-width: inherit;
    }

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

    .form-subscribe .form h6 {
        margin-bottom: 10px;
        -webkit-box-flex: 0;
                flex: 0 0 100%;
    }

    .payments_cards img {
        max-width: 45px;
    }

}

@media(max-width:768px) {
    .-hide-pmode-tab {
        display: none !important;
    }


    .form-subscribe .form h6 {
        text-align: center;
    }

    .form-subscribe input[type="text"] {
        margin-right: 10px;
    }

    /*h3 {
        font-size: 1.6rem;
    }*/
}


@media(max-width:767px) {

    .hide-mobile,
    .-hide-mobile {
        display: none !important;
    }

    .form-subscribe input[type="text"] {
        margin-right: 10px;
    }

    .form-subscribe input[type="submit"] {
        width: calc(100% - 400px);
    }

    .footer .toggle__trigger {
        width: 100%;
        display: inline-block;
        position: relative;
        text-align: left;
        position: relative;
        margin: 1px 0 0 0;
        cursor: pointer;
        padding: 10px 0px 10px 0px;
        color: #fff;
        /* background: rgba(0, 0, 0, 1); */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        font-size: 0.90rem;
    }

    .footer .toggle__trigger:before {
        position: absolute;
        right: 5px;
        top: 14px;
        width: 8px;
        height: 8px;
        content: "";
        border-left: 2px solid rgba(255, 255, 255, 1);
        border-bottom: 2px solid rgba(255, 255, 255, 1);
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
    }

    .footer .toggle__trigger.is-active:before {
        top: 19px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
    }

    .toggle__target {
        display: none;
        padding: 10px 0px;
    }

    .col-full-last,
    .footer__bottom {
        border: none;
    }

    .footer__bottom {
        padding: 5px 0;
    }

    .footer__bottom_info p,
    .footer__bottom p a {
        font-size: .90rem;
    }

    .footer__bottom .col-auto {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .links-vertical li {
        margin: 8px 0;
        font-size: 1rem;
    }

    .footer-last-col {
        border-top: none;
    }

    .footer__lower h1,
    .footer__lower h2,
    .footer__lower h3,
    .footer__lower h4,
    .footer__lower h5,
    .footer__lower h6 {
        font-size: 1rem;
    }

    .payments_cards img {
        max-width: 35px;
    }


}

@media(max-width:767px) {

    .form-subscribe input[type="text"],
    .form-subscribe input[type="submit"] {
        width: 100%;
        margin: 10px 0;
    }

    .form-subscribe input[type="submit"] {
        max-width: 360px;
    }

    .footer-col-border {
        border: none;
    }

    .title.store-title {
        font-size: 1rem;
    }

}

@media(min-width:767px) {
    .pac-container {
        width: 335px !important;
    }
}

@media (min-width:768px) and (max-width:992px) {

    .content__row.shop-info-row,
    .content__row.shop-info-row .content__row-caption,
    .shop-info-row .shop-links {
        text-align: center;
    }

    .shop-info-row .shop-links {
        text-align: center;
    }

    .shop-info-row .avatar {
        margin: auto;
    }

    .shop-info-row .shop-info [class*="col-"]:last-child {
        text-align: center;
    }

}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .heading4 span {
        display: block;
    }

    .order-summary .summary-listing .product_price {
        float: none;
        margin-top: 10px;
        display: inline-block;
        width: 100%;
    }

    .order-summary .summary-listing .qty {
        width: 70%;
    }

}

.review--product-list {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.review--product-list:last-child {
    border-bottom: none;
}

.review--product-list span {
    display: block;
    color: #000;
    font-size: 15px;
}

@media(min-width:768px) {
    .address_map_row .field_cover {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between
    }

    /* .field_cover .address_identifier {
        max-width: 58%;
        -webkit-box-flex: 0;
        flex: 0 0 58%;
    } */

    .address_map_row .field_cover .btn-showmap {
        max-width: 38%;
        -webkit-box-flex: 0;
        flex: 0 0 38%;
    }
    
    .container--addresses.shopFormBlock .address_map_row .field_cover .btn-showmap {
        max-width: inherit;
        -webkit-box-flex: 0;
        flex: inherit;
        margin:10px 0;
    }

    .address_map_row .errorlist {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 6;
        order: 5
    }
}

.product-gallery #slider-nav {
    padding: 0 65px;
	margin-top: 20px;
}

.product-gallery #slider-nav .slick-track {
    margin: 0 auto;
}

html.cart-is-active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.qty.product__qty {
    max-width: 150px;
}

.row > .row {
    width: 100%;
    padding: 0 10px;
}

.error {
    box-shadow: none !important;
}


.cart__listing {
    max-height: 80vh;
    overflow: auto;
}

@media(min-width:1200px) {
    .cart__listing {
        padding-right: 15px;
    }
}
@media(max-width:1200px) {
    .main-page-nav .page-nav-listing {
        margin: 0;
    }
}

.add-to-cart-wrapper .btn {
 height: 42px;
}
@media(max-width:767px) {
    .cart__listing {
        max-height: inherit;
    }

    .product-gallery #slider-nav {
        /* display: none; */
    }

    .product-gallery {
        margin-bottom: 20px;
    }

    .content__row .qty .increase,
    .content__row .qty .decrease {
        font-size: 1.4rem;
        background-color: #f0f0f0;
    }

    .content__row .qty input {
        font-size: 1rem
    }

    .qty.product-detail__qty {
        max-width: 100%;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .add-to-cart-wrapper .btn {
        width: 100%;
        margin: 0;
    }
}

.first-color {
    color: var(--first-color);
}

.shops-location-list span {
    display: inline-block;
    margin: 0;
    margin-right: 0.75em;
    margin-bottom: 0.75em;
    padding: 0.15em 0.5em;
    border-radius: 4px;
    color: var(--grey-light);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.currency--list {
    min-width: 55px;
}

.currency--list a {
    display: block;
}

.content__row .btns-group .btn i {
    margin-bottom: 5px;
}

.city__listing {
    color: var(--black-color);
    text-align: left;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer__bottom {
    color: var(--white-color)
}

.city__listing .container {
    padding: 0 15px;
}

.city__listing .shops-location-list span {
    color: var(--second-color);
    border: 1px solid var(--second-color);
}

.qty-request-wrap {
    position: relative;
    z-index: 2;
}

.shop__logo {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-color: #fff;
    overflow: hidden;
    margin: 0 auto;
    /* padding: 10px; */
    padding: 0px;

}

.link_group a {
    margin: 5px;
    white-space: nowrap;
}

@media(max-width:480px) {
    .qty-request-action {
        flex-wrap: wrap;
    }

    .btn-add-request {
        border-radius: 0;
        width: 100%;
    }
}

@media(max-width:767px) {
    .add-to-cart-wrapper.is-stick {
        position: fixed;
        left: 0;
        bottom: 0;
        padding: 20px;
        width: 100%;
        z-index: 9999;
        background-color: #f5f5f5;
    }
    .alert, #mbsmessage, .system_message{padding:5px!important;}
    .short-detail .cart-summary .item-yk-head .item-yk-head-specification span{display: block;}

    .btn-add-request{height:30px;}
}
.header__top {
    padding: 0 10px;
}
.cart-buyer-wrap .cart--full .cart-remove{
  background: url(/images/retina/delete.svg) no-repeat center;
  background-size: 20px;
  width: 30px;
  height: 30px;
  display: inline-block;
vertical-align: middle;
margin-left:10px;
}
/* .cart-buyer-wrap .cart--full .total-wrap{display: -webkit-box;display: flex;
-webkit-box-align: center;
        align-items: center;
-webkit-box-pack: end;
        justify-content: flex-end;} */
.cart-buyer-wrap .cart--full .product-img {
    max-width: 80px;
}
.cart-buyer-wrap .cart--full .qty .increase,
.cart-buyer-wrap .cart--full .qty .decrease{height:28px; line-height: 28px;}
.cart-buyer-wrap .cart--full .qty input, .cart-buyer-wrap .cart--full .qty{height:30px; line-height: 30px;}
.cart-buyer-wrap .qty-wrapper .qty{max-width:100px;}
.cart-buyer-wrap  .cart--full td{padding: 10px 15px;}
.review-wrapper .cart-summary th, .review-wrapper .cart-summary td{vertical-align: middle;}
.not-allowed {background: #ededed;color: #888;cursor: not-allowed !important;}
.send-msg-section .section-head, .send-msg-section .section-inside{max-width:80%;margin:auto;display: block;}
.send-msg-section .section-head{margin-bottom: 30px;}

.statistics.-buyer .statistics__box .value--total{font-size: 22px;}
.statistics.-buyer .statistics__box:first-child .text--normal{padding-top:5px;display: inline-block;}
.statistics.-buyer .value--total,.statistics.-buyer .text--normal{float: left;width:100%;display: flex;align-items: center;justify-content:space-between;}
.statistics.-buyer .text--normal{font-size:14px;padding-bottom:10px;}

.statistics .statistics__box .stats-wrapper{float:left;width:100%;}
.statistics .statistics__box .stats-wrapper .value--total{font-size: 16px;}


.box--share{min-height:unset;display: flex;flex-direction: column;height: 100%;}
.box__body .alert--gray {word-break: break-all;}
.page-import-export .tabs--scroll ul#map{width:100%!important;}
.grid-container [class*="col-"]{display: flex;}
.grid-wrapper .product{width: 100%; height: 100%;justify-content: space-between;display: flex;flex-direction: column;}
.btn.add-slot,  .btn.add-date  {margin-bottom: 5px;}
#messageListing .media > li{align-items: center;}
#map{max-width:100%!important;}
.cart.dropdown .qty .increase,
.cart.dropdown .qty .decrease,
.dropsection.cart-detail .qty,
.dropsection.cart-detail .qty input {height: 30px; line-height: 30px;}
.cc-window .box-cookies{padding-bottom: 40px;}
.-fixed-wrap{display: none!important;}
.col__left.w-full{width:100%;}

@media screen and (max-width:767px){
  .send-msg-section .section-head, .send-msg-section .section-inside{max-width:100%;}
}
.m-b-20{ margin-bottom: 20px;}
.custom-hero-banner{box-shadow:none;background-color:transparent;width:800px;padding-left:0;padding-right:0;}
.product-form, .location-form{box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;background-color:#ffffff;padding:0.5rem;border-radius:8px;}
.product-form h4, .location-form h4{
text-align:left;margin-bottom:15px;font-size:20px;}
.product-form input[type="text"]{display:inline-block;width:calc(100% - 160px);margin-right:0;height:40px;margin-bottom:0;border-right: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;background-image:url(images/product-search-icn.svg);background-repeat: no-repeat;
background-size: 24px;
padding-left: 70px;
background-position: 25px 50%;
border-width: 0;}
.location-form input[type="text"]:focus,
.product-form input[type="text"]:focus{box-shadow: none;}
.product-form input[type="submit"]{display:inline-block;width: 160px;font-size: 16px;
height: 40px;margin:0;}
.product-form form{display:flex;}
.location-form .city-filled-field,.location-form .radius-filled-field{margin-bottom:0!important;}
.location-form .city-filled-field{flex: 1;position:relative;}
.location-form .radius-filled-field{width:100px;}
.location-form .city-filled-field:before{content:"";position:absolute;right:0;top: 10px;
height: 20px;width:1px;background:var(--border-color-one);}
.location-form .city-filled-field input{border-right:0;}
.location-form form{display:flex;}
.location-form input[type="submit"]{width: 160px;margin:0;height:40px;line-height:1;width:30%}
.location-form .city-filled-field input, .location-form .radius-filled-field input{border-width:0;padding-left:25px;height:40px;}
 .location-form .radius-filled-field small{display:none;}
 .location-form .radius-filled-field input{border-radius:0;border-left:0;}
.input-radio-wrap input[type='radio']{position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
opacity: 0;
cursor: pointer;}
.input-radio-wrap{
margin-left: 5px;
display:inline-block;
padding: 10px 20px 5px 20px;
background: #999;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
color: #fff;
font-size: 15px;
text-transform: uppercase;
position: relative;height:36px;}
.custom-hero-banner{text-align:left;}
.input-radio-wrap.active{background: var(--second-color);}
.input-radio-wrap .icn{display: inline-block;
vertical-align: middle;
margin-left: 15px;}
.hero-banner-form .input-radio-wrap:first-child{margin-left:20px;}
/* .product-form input[type="submit"], .location-form input[type="submit"]{background-image:url(images/icon-search.svg);background-repeat: no-repeat;
background-position: 25px 50%;
background-size: 16px;
padding-left: 50px;} */
.location-form .city-filled-field input{background-image:url(images/icon-map-pin.svg)!important;
background-size: 12px!important;
background-position: calc(100% - 15px) center!important;
padding-right: 35px!important;}
.location-form .radius-filled-field input{background-image:url(images/icon-radius.svg);padding-right: 35px;
background-position: calc(100% - 15px) 50%;}
.content__row .content__row-caption.text-center{text-align: center}
.seller-wrap{/*border: 1px solid var(--border-color-one);*/
padding: 20px 15px;
border-radius: 0px;background: #fff;
margin-top: 20px;}
.seller-wrap .seller-block{background: #f9f9f9;
padding: 10px;
margin-top: 10px;
display: flex;flex-direction:column;}
.btn--primary.mt-10{margin-top:10px;}
.seller-wrap .seller-block .qty input, .seller-wrap .seller-block .qty .increase, .seller-wrap .seller-block .qty .decrease {height:26px;}
.seller-wrap .seller-block .qty{width: 25px;padding: 0 5px;}
.seller-wrap .seller-block .qty .increase, .seller-wrap .seller-block .qty .decrease {width: 20px;}
.seller-wrap .seller-block .qty.product-detail__qty{width:50%;}
.seller-wrap .seller-block .btn.btn--primary{font-size: 12px;padding: 0 5px;min-width:40px;width:50%;height: 28px;
line-height: 28px;}
.seller-wrap .seller-block form{display:flex;justify-content:flex-end;}
.seller-wrap .seller-block  .seller-info{width: 100%;}
.seller-wrap .seller-block .item-yk .product_price{font-size: 16px;}
.seller-wrap .seller-block .ftshops_name{font-size: 14px;display:inline-block;}
.seller-wrap .seller-block .ftshops_name a{color:inherit;}
.seller-wrap .seller-block .ftshops_location{font-size: 14px;display:inline-block;}
.seller-wrap .seller-block .price-old{font-size: 11px;opacity: 0.7;}
.seller-wrap .seller-block .item-yk{padding-bottom:10px;}
.link-more-seller{display: block;
text-align: right;
margin-top: 10px;
font-size: 14px;padding: 0 15px;}
.listing-products.-listing-products .pannel-top{width:100%;padding:0;margin:0;}
.listing-products.-listing-products  .product-listing .pannel-bottom{margin-top:30px;}

.listing-products.-listing-products .pannel-top .top-actions{justify-content:flex-end!important;align-items:center;}
.seller-detail h6 a{color:#373838;}
.seller-detail + .link_group a:first-child{position:relative;}
.seller-detail + .link_group a:first-child:before{content: "";
width: 1px;
height: 80%;
right: -3px;
background-color: var(--first-color);
position: absolute;
top: 2px;}
.seller-table .ftshops_name,.seller-table .item-yk_rating{display:inline-block;}
.seller-table .qty input, .seller-table .qty .increase,.seller-table  .qty .decrease {height:26px;}
.seller-table td form{display:flex;align-items:center;}
.seller-table td form .btn{height:28px;line-height:28px;font-size:12px;min-width: 110px;}
.seller-table td{vertical-align:middle;}
.seller-table td .item-yk .product_price {
font-size: 14px;}
.section--pagebar .cell__right{flex:0 auto;}
.seller-table .item-yk_rating .svg svg{vertical-align: baseline;width:13px;height:13px;}
.seller-table .item-yk_rating .svg{margin:0;margin-right: 2px;width:13px;height:13px;}
.seller-table th{font-size:16px;font-weight:600;}
.seller-table th:last-child, .seller-table td:last-child{width:50%;}
.prod-card .tile-media{max-width:100px;}
.prod-card .product-info{width:calc(100% - 100px);padding-left: 30px;}
.prod-card {display:flex;align-items:center;}
.prod-card--wrapper {padding:10px 20px;}
.seller-table .item-yk_rating {border: 1px solid var(--first-color);
padding: 2px 10px;
margin-left: 10px;
border-radius: 8px;
display: inline-flex;
justify-content: center;
align-content: center;}
.no-float{float:unset;}
.seller-table .rated{margin-top:0;margin-left:5px;}
.bg--second{background-color:#d0d0d0!important;}
.breadcrumb-title *{color: #333333!important;}
.breadcrumbs ul li a, .breadcrumbs ul li{color: #333333!important;font-size:12px!important;font-weight:600!important;}
.breadcrumbs ul {display:flex;align-items:baseline;justify-content:center;}
.city__listing .footer__bottom{background:#ffffff;}
.city__listing .footer__bottom {
    color: #333;
}

.field_cover .remove_first_document, .field_cover .add_document,.field_cover .remove_document {min-width:50px;width:50px;}



/* .dropsection{width:390px;min-width:390px;} */
.dropsection .cart-summary th,.dropsection .cart-summary td{padding:10px 5px;}
.header-corner-actions  .short-links .dropdown.is-active .dropdown__target{min-width:110px!important;}

.cart.dropdown .qty .increase, .cart.dropdown .qty .decrease,
.dropsection.cart-detail .qty .decrease, .dropsection.cart-detail .qty .increase{
height:28px!important;}
.cc-window .box-cookies{padding-bottom:15px;}


.is--blog  .global-nav ul {
    display: flex;
    margin-left: 20px;
    
}

.is--blog  .global-nav ul li {
    border: 0;
    padding: 0 25px;
}
.is--blog  .global-nav ul li a {
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1600 - 300)));
}


@media screen and (max-width:991px){
	.custom-hero-banner{width: 85%;}
.hero-banner-form .input-radio-wrap:first-child {
    margin-left: 20px;
}
.field_cover .remove_first_document, .field_cover .add_document, .field_cover .remove_document {
	min-width: 35px;
	width: 35px;
	padding: 0;
	margin: 0 2px;
}

.is--blog .header-bar{flex-wrap:wrap;}
.is--blog .header-logo{order:1;}
.is--blog .header-corner-actions{order:2;}
.is--blog .global-nav{order:3;width:100%;}
.is--blog  .global-nav ul {margin: 10px 0 0 0;background: #f5f5f5;padding: 10px 0;white-space: nowrap;overflow-x: auto;}
.is--blog .global-nav ul li{display: inline-block;border-bottom:0;}
.is--blog .global-nav ul li a{color: currentColor;font-size: 16px;}

.grid-pannel.grid-app img{
    margin:0 auto;
}

.grid-pannel [class*="col-"]:last-child {
    padding: 20px;
}


}
@media screen and (max-width:767px){
	.listing-products.-listing-products > .d-flex{flex-direction:column;}
	.listing-products.-listing-products .total-products{margin-bottom:10px;}
	.product-form input[type="submit"], .location-form input[type="submit"]{background-image:none;padding-left:16px;}
	.input-radio-wrap .icn{display:none;}
	.custom-hero-banner{width: 90%;
margin: auto;}
.hero-banner-form .input-radio-wrap:first-child {
    margin-left: 10px;
}
.product-form h4, .location-form h4{margin-bottom: 15px;
font-size: 20px;}
.listing-products.-listing-products > .padding-30{padding:15px;}
.navs--main.category--nav{margin-left:15px;}
.navs--main.category--nav{margin-right: 10px;}
 /*.field_cover .btn-showmap, .container--addresses .field_cover small{display:none;}*/
 


}
@media screen and (max-width:575px){
	.product-form h4, .location-form h4 {
    margin-bottom: 10px;
    font-size: 17px;
}
	.hero-banner-form .input-radio-wrap{
		margin: 0!important;
		display: inline-block;
border-radius: 8px;
font-size: 14px;
width: 49%;
margin-bottom: 10px !important;
text-align: center;
	}
	.custom-hero-banner{width: 100%;}
	.product-form input[type='text'], .location-form .city-filled-field input, .location-form .radius-filled-field input[type="text"]{width: 100%;
border: 1px solid var(--border-color-one);
border-radius: 4px;
margin-bottom: 15px;}
.location-form .city-filled-field, .location-form .radius-filled-field{width:100%;}
.location-form .city-filled-field:before{display:none;}
.product-form, .location-form{padding: 1rem;}
.product-form form, .location-form form{flex-direction:column;}
.product-form input[type="submit"], .location-form input[type="submit"]{width: 100%;
border-radius: 4px;}
.input-radio-wrap .icn{float:right;}
.listing-products.-listing-products .pannel-top .top-actions{flex-direction: column;}
.pannel-top .top-actions .btn-filter-wrap{width: 100%;padding-right: 0;margin-bottom: 10px;}
.pannel-top .top-actions .sort-list {width: 100%;padding-left: 0;}
.prod-card .product-info{padding-left:10px;}
.pannel-top .top-actions.d-flex{display: block!important;}
}

@media screen and (max-width:480px){
	.qty-request-wrap {border-bottom: 5px solid #fff;}
}

@media screen and (min-width:1280px){
	.hero-banner-wrapper {min-height: calc(100vh - 30px); margin-top: -60px; padding-top: 60px;}
	/* .hero-image{min-height: 100vh;} */
	.input-radio-wrap{
	display: inline-flex;
	align-items: center;
	padding: 0px 15px;
	}
.input-radio-wrap .icn{display:inline-flex;}
.input-radio-wrap{height: 36px;}
.custom-hero-banner{
	width: 50vw;
	max-width: 800px;
}
.product-form, .location-form{
	padding: calc(0.5rem + 0.25vw);
}
.hero-banner-form .input-radio-wrap:first-child{
	margin-left: calc(0.75rem + 0.75vw);   }
.product-form h4, .location-form h4{
	margin-bottom: 0.75em;
	font-size: calc(0.75rem + 0.5vw);
	}
.product-form input[type="submit"],.location-form input[type="submit"], .location-form .city-filled-field input, .location-form .radius-filled-field input{
	height: calc(2.25rem + 0.75vw);
}
.location-form .city-filled-field input, .location-form .radius-filled-field input{
    padding-left:  calc(0.5rem + 0.25vw);
}
.product-form input[type="submit"],.location-form input[type="submit"]{
    max-width: 160px;
}
	.product-form input[type="text"]{height: calc(2.25rem + 0.75vw); }
.location-form .city-filled-field::before{top: 50%;
height: 60%;transform: translateY(-50%);}
}

.header-corner-actions .header-address form strong{margin: 10px 0px;display: block;}
.listing-products .grid-view .product{width:100%;display:flex;flex-direction:column;justify-content: space-between;}
.big-title img{border-radius:50%;}
.cg-main a{display:inline-block;padding:10px 0;}
.category--listing{background:#ffffff;}
.category--listing .item{max-width:90%;margin:auto;}
.category--listing{padding:3rem 0;}
.category--listing .cell__body{padding-left:55px;}
.category--listing .item li a {position:relative;padding-left:20px;transition:all 0.3s ease;}
.category--listing li a:before {content:"";width:7px;height:7px;border-right:1px solid var(--txt-color-light);border-bottom:1px solid var(--txt-color-light);transform:rotate(-45deg);position:absolute;top:17px;left:0;}
.category--listing .item li a:hover{padding-left:25px;transition:all 0.3s ease;}
.category--listing .item li a:hover:before{border-color:var(--first-color);}
.view-related-wrapper{margin-top: 30px;border-top: 1px solid var(--border-color);padding-top: 30px;}

@media screen and (max-width:1025px){
	.category--listing .item {max-width: 95%;}
	.category--listing {padding: 30px 0;}
	.category--listing .item li{width:49%;}
}
@media screen and (max-width:767px){
	.category--listing .item li{width:100%;}
	.category--listing .cell__body {
    padding-left: 0;
}
}


@media screen and (min-width:800px){
	.cart-buyer .cartdetail__footer {
    padding: 10px 20px calc(3rem + 3vw) 20px;
}
}

.info--order .btn.btn--secondary{margin-top: 10px;}
.big-title {margin-bottom: 10px;}
.big-title img{display: inline-block;vertical-align: middle;margin-right: 10px;}
.final_order_table .item-yk-head-specification a{display:inline-block;margin-right:8px;}
.cart-buyer-wrap .qty-wrapper{position:relative;}
.cart-buyer-wrap .qty-wrapper .qty-wrap + span {left:0;}
.price-range .prices .irs--sharp .irs-grid-text{
		font-size: 11px!important;
		padding-right: 10px!important;
}
.cart-summary .cod-label {
	font-size: 12px;
padding: 3px 8px;
border-radius: 4px;
background: #fefbc6;
color: #000;
margin: 0;
text-align: center;
display: inline-block;
margin-top: 5px;
line-height: 1.5;
letter-spacing: 0.05em;
}
.cms--container h1,.cms--container  h2,.cms--container  h3,.cms--container  h4,.cms--container  h5,.cms--container  h6{
    font-weight:bold;
    padding-top:15px;
}
.cms--container  h3{font-size:1.1em;}
.address-wrapper .btn.btn--secondary{float:right;}
.otp-heading {text-align:right;}
.otp-heading a{text-decoration:underline;}
.forgot{text-align:right;}
.forgotPwForm .otp-heading {
    text-align: left;
}
.otp-row .otp-col{width:25%;width: 25%;
display: flex;
align-items: center;max-width:90px;}
.otp-row{
	display: flex;
   align-items: center;
}
.otp-row .otp-col span{
	display: inline-block;
margin: 0 5px;
}
.otp-row .otp-col input[type='text']{max-width:70px;}

.form.change-phone-form input[type='submit']{
margin-top:27px;}
.form-head{
	display: flex;
align-items: center;
justify-content: space-between;
}
.form.form-otp input[type='submit']{
max-width:200px;
}
.form.form-otp a.link{
	color: var(--first-color);
text-decoration: underline;
}
.carousel--onefourth-center,
.carousel--onethird-center{display: flex;
align-items: center;
justify-content: center;}
.carousel--onethird-center li{
	width:31%;
}
.action.action--favs{display: flex;justify-content: flex-end;}
.action.action--favs label{position:relative;padding-left:30px;background: #fff;border: 1px solid var(--first-color);color: var(--first-color);}
.action.action--favs label input[type="checkbox"]{position: absolute;top:6px;left:5px;}
.action.action--favs label.checkbox .input-helper:before{top:6px;left:5px;}
.action.action--favs label.checkbox .input-helper:after{top:6px;left:5px;}
.formActions-css {display: none !important;}

.basket-action{
	position:relative;
    width:40px;
    margin-left: 10px;
}
.basket-action .grey-circle .cart-counter{
	position: absolute;
	right: 0;
	width: 22px;
	height: 22px;
	top: 7px;
	line-height: 24px;
	font-size: 11px;
}
.form--horizontal .caption-wraper{
	padding: 5px 5px 0 0;
	width: 40%;
}
.product_tax .item__tax{
	font-size:13px;
}

.checkbox .input-helper::before, .radio .input-helper::before {
	border: 1px solid #ccc;
}
.packages-box .after-box .radio .input-helper::before{
	top:2px;
}
.packages-box .after-box .radio .input-helper::after{
	top:6px;
}
.section-head.-package, .subs-payment .section-head{
	padding: 10px 15px;
	background-color: var(--grey-darker);
	color: var(--white-color);
	margin-bottom:0;
}
.review-wrapper.-subscription .cart-remove{margin-left:15px;}
.review-wrapper.-subscription .cartdetail__footer{padding: 10px 20px;}
.block .section.subs-payment.is-current:not(:first-child) {
	border-bottom: 0;
}
.subs-payment .listing--grids li{padding-right:0;}
.subs-payment .listing--grids{margin-top:0;}
.order-summary.-subs{
	padding: 25px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
    border-radius: 10px;
}

.heart-wrapper  a.like-action{
	height:40px;
	width:40px;
}
.heart-wrapper .like-action .svg-icon svg {
    width: 20px;
	height: 20px;
	top:2px;
}

.search-dropdown-wrap .search-product .product-detail{width:30%;}
.search-dropdown-wrap .search-product .price-wrap{width:40%;}
.search-dropdown-wrap .search-product .price-wrap .product-unit{width:50%;margin:0;padding:0 8px;}
.search-dropdown-wrap .search-product .price-wrap .product-price{width:50%;}

.hero-banner-form .input-radio-wrap {
	color: var(--second-inverse-color);
}

/*.simple-price .heading1{color: var(--first-inverse-color);}*/
.search-dropdown-wrap .search-product .product-detail{width:30%;}
.search-dropdown-wrap .search-product .price-wrap{width:40%;}
.search-dropdown-wrap .search-product .price-wrap .product-unit{width:50%;margin:0;padding:0 8px;}
.search-dropdown-wrap .search-product .price-wrap .product-price{width:50%;}
.checkout-page .setDeliveryDate a .cal-slot-icon {
	display: inline-flex;
	margin-left: 0;
	width: 15px;
	height: 25px;
	margin-right: 10px;
}
.box-wishlist .product_with_varient .product-price .price-discounted{
	top: 9px;
	left: 35px;
}

#footer {
	color: var(--white-color);
	background: var(--grey-lightest);
}
.footer__lower, .footer__bottom {
	background: var(--grey-darkest);
}
.footer__lower h1, .footer__lower h2, .footer__lower h3, .footer__lower h4, .footer__lower h5, .footer__lower h6 {
	color: inherit;
}
.links-vertical li{
color: var(--grey-dark);
}
@media screen and (max-width:1500px){
	#facebox .popup  .content{
		max-height: 500px;
		overflow-y: auto;
	}
}

@media screen and (max-width:1200px){
	.basket-action .grey-circle{margin:0;}
}
@media screen and (max-width:1199px){
	.form.change-phone-form input[type="submit"] {
		margin-top: 22px;
	}
}

@media screen and (max-width:767px){
	.form.change-phone-form input[type="submit"] {
		margin-top: 0;
	}
	.form-head{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		margin-bottom: 20px;
	}
	.otp-heading a {
    text-decoration: underline;
    font-size: 15px;
    margin-top: 5px;
    display: block;
	}
}

@media screen and (max-width:575px){
	
	.basket-action .grey-circle .cart-counter{
		display:inline-block;

	}
    .action.action--favs{display: flex;
        justify-content: flex-start;
        margin-top:10px;
        margin-bottom:10px;
    }
}

@media screen and (min-width:1200px){
    .header-corner-actions .header-address{max-width:100%;}
    .header-corner-actions  .selected-address .arrow {
        max-width: 320px;}
        .header-corner-actions .short-links{
            /*flex:unset;*/
            flex: 0 0 auto;
        }
        .header-corner-actions{justify-content: flex-end;}
}


/****** 20201117 ****/


.about-grid img{
    border-radius: 10px;
    width: 100%;
}

.dashboard .media > li.is-read .media__description, .dashboard .media .media__description{
    word-break: break-word;
}

.dashboard .tabs--scroll {
    background: #ffffff;
    border-radius: 4px 4px 0 0;
}
.dashboard .tabs--scroll ul{
    padding: 0;
    overflow-x: auto;
    overflow: hidden;
}
.tabs--scroll li:last-child{
    margin: 0;
}
.dashboard  .tabs--scroll:after{
    display: none;
}
.dashboard .tabs--scroll ul li a{
    opacity: 1;
}


.header-account span.svg-icon {
    fill: #858585;
}

/**** 20201203 ***/

.btn-filter-wrap{
    display:none;
}

.pannel-top  .top-actions .sort-list .sort-caption{
    display: none;
}

@media(max-width:1199px){
    .dashboard{
        padding-top: 10px;
    }

    /**** 20201203 ***/
    .btn-filter-wrap{
        display:block;
    }
    .pannel-top .top-actions .sort-list .sort-caption{
        display: block;
    }

    .pannel-top .top-actions .sort-list .sort-dropdown{
        position: absolute;
        z-index: 1;
        left:8px;
        width:calc(100% - 8px);
    }
    
}

@media (max-width:1024px){
    .filters-wrap .block-wrapper {
        margin-bottom: 0;
    }
}

@media(max-width:767px){

    .basket-action{
        margin-left: 5px;
        
    }
    
    



    .checkout-page .order-summary{
        max-width: 100%;
        margin: 0;
    }
    .checkout-page .order-summary .box.box-white{
        margin: 0;
    }
    .btn, .form input[type="submit"], .form input[type="button"]{
        margin-left: 0;
        margin-right: 0;
    }
    /*#optionListing table {
        display: table;
    }*/

    .scroll-hint th:nth-child(2), .scroll-hint td:nth-child(2) {
        width: 100%;
    }

    .final_order_table tr th:nth-child(2), .final_order_table tr td:nth-child(2) {
        padding-left: 0;
    }

    .posts--all .section, .posts--all .section .post-repeated {
        padding: 0 0 0.875rem 0;
    }

     .-show-mobile{
    display: block !important;
    }
     
}

@media(min-width:1199px){
    .header-bar .navs--main.category--nav.navs--main > ul > li > a > svg{
        display: none;
    }
}
@media(max-width:575px){
    .navs--main.category--nav{
        margin-right: 3px;
    }

    .logo-image img{
    /*    width: 44px;
          height: 44px;*/
        max-height: 37px;
      
    }

    .avtarImg{
        width: 32px;
        height: 32px;
    }

    .topnavs-toggle{
        padding-left: 0;
        margin-right: 10px;
        flex: 0 0 24px;
        max-width: 24px;
    }
    .header-corner-actions .header-account > a{
        width:32px;
        height: 32px;
        margin: 0 3px;
    }

    .header-corner-actions .header-account > a .svg-icon svg{
        width:18px;
    }

    .header-corner-actions .header-account > a .grey-circle{
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-corner-actions .header-account > a .grey-circle > span{
        width: 16px;
        height: 16px;
    }

    .header-corner-actions .header-account > a .grey-circle > span > svg{
        width: 100%;
        height: 100%;
    }

    .header-bar .navs--main.category--nav.navs--main > ul > li > a{
        
        height: 32px;
        width: 32px;
    } 

    .header-bar .navs--main.category--nav.navs--main > ul > li > a > svg{
        width:16px;
        height: 16px;
    }

    .listing-products .product-listing{
        width: 100%;
    }
    .advertisement-wrapper .carousel--onethird-center {
        overflow-x: scroll;
        justify-content: flex-start;
    }
    .advertisement-wrapper .carousel--onethird-center li {
        flex: 0 0 80%;
        margin: auto;
    }
    .pannel-top .top-actions .sort-list .sort-dropdown{
        width:100%;
        position:relative;
        left:0;
    }
}


.make-payment-wrapper li {
    list-style: none;
}
@media(max-width:767px){
    .js-confirm-address-wraper{
        display:none;
    }
    .js-confirm-address-btn.btn-showmap {
        margin: 0 0 20px 0;
    }
    .-mobile-logo{
        display:flex !important;
    }
}


@media screen and (min-width:540px) and (max-width:767px){
    #header{
        position: relative;
    }
}




.advertisement-wrapper .slick-track {
    margin: auto;
}

@media (max-width:767px){
    .advertisement-wrapper .slick-list{
        overflow: hidden;
    }
    advertisement-wrapper ul li a, .advertisement-wrapper ul li a img{
        width: 100%;
    }
}

@media (min-width:1200px){
    .navs--main.category--nav a{
        position: relative;
    }
    span.cat-arrow::after {
        display: inline-block;
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        border: solid currentColor;
        border-width: 0 1.5px 1.5px 0;
        padding: 3px;
        transform: rotate(-45deg) translateY(-50%);
    }
}

/***** Location Selection ********/
.location_on_map_wrapper {
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    padding-bottom: 10px;
    border-top: 1px solid #ebebeb;
    padding: 10px 15px;
    background: #f8f8f8;
}

.location_on_map_wrapper h4 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.4;
}
.location_on_map_wrapper > div {
    font-size: 14px;
    line-height: 1.2;
}

.location_on_map_wrapper {
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    padding-bottom: 10px;
    border-top: 1px solid #ebebeb;
    padding: 5px 10px;
    background: #f8f8f8;
}
.location_on_map_wrapper label {
    font-size: 12px;
    opacity: 0.8;
}
.location_on_map_wrapper label:before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #333333;
    margin-right: 4px;
    margin-top: 0;
    position: relative;
    top: 0;
}
/***** Location Selection ********/

/***** 20210128 - START [ ****/
.dashboard_sales_report{
    overflow: auto;
    overflow-y: hidden;
}
.dashboard_sales_report table tr th {
    text-transform: uppercase;
    font-weight: 700;
}
.dashboard_sales_report table tr th, .dashboard_sales_report table tr td {
    white-space: nowrap;
}
/***** ] 20210128 - END ****/

/***** 20210208 ******/

.map-address--wrapper .field-wraper {
    position: relative;
}
.map-address--wrapper .field-wraper input[type="text"] {
    padding-right: 40px;
}
.map-address--wrapper .field-wraper a.icn-gps {
    position: absolute;
    right: 11px;
    top: 12px;
    display: inline-flex;
}

.map-address--wrapper .field-wraper a.icn-gps span.tooltip_content {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);    
        background: #000000;
        padding: 6px;
        color: #ffffff;
        transition: 0.3s all ease-in-out;
        border-radius: 4px;
        text-align: center;
        visibility: hidden;
        opacity: 0;
        font-size: 12px;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
        white-space: nowrap;
}
.map-address--wrapper .field-wraper a.icn-gps:hover span.tooltip_content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}


.map-address--wrapper .field-wraper a.icn-gps span.tooltip_content:before {
    position: absolute;
    left: 50%;
    bottom: -7px;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
    transform: translateX(-50%);
}


@media(max-width:767px){

    .map-address--wrapper .field-wraper a.icn-gps span.tooltip_content {
        left: 100%;
        transform: translateX(-100%); 
    }

    .map-address--wrapper .field-wraper a.icn-gps span.tooltip_content:before {
        left: inherit;
        bottom: -9px;
        border-left: 12px solid transparent;
        border-right: 0 solid transparent;
        border-top: 12px solid #000;
        transform: inherit;
        right: 0;
    }
} 


.map-address--wrapper > label{
    font-size:12px;
    opacity:0.8;
    
}


.map-address--wrapper > label:before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background: var(--first-color);
    margin-right: 4px;
    margin-top: 0;
    position: relative;
    top: 0;
}


/***** 2021FEB11 *****/

.product.item--out_of_stock:after { 
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    content: "";
    border-radius:6px;
}

.item--out_of_stock_child {
    background: red;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 14px;
    height: auto;
    width: 110px;
    left: 0;
    right: 0;
    margin: 0 auto;
    line-height: 1.2;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    text-transform: capitalize;
    top: 50%;
    z-index: 2;
    font-weight: 700;
    text-align: center;
    transform: translateY(-50%);
}




/****** 20211702 ******/

.srch-address{
    margin-top:5px;
}
.srch-address span {
    /*background: #f5f5f5;
    padding: 5px 10px;*/
    font-size: 13px;
    border-radius: 4px;
    color: #333;
    display: inline-flex;
    align-items: center;    
}

.srch-address span a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: var(--first-color);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 5px;
}
.srch-address span a i.icon {
    width: 12px;
    height: 16px;
}
.srch-address span a i svg {
    width: 100%;
    fill: #fff;
    height: 100%;
}


.listings__repeated .rated {
    height: 24px;
    border-color: var(--second-color);
    margin-bottom: 10px;
}
.listings__repeated .rated span.rate {
    font-size: 1rem;
}
.listings__repeated .rated .svg-icon.svg-star svg {
    width: 14px;
    height: 13px;
    fill: var(--second-color);
    margin: -2px 0 0 4px;
}

.wishlist-back_btn {
    /*#display: flex !important;*/
    justify-content:space-between;
    align-items:center;
    margin-bottom: 10px;
}

/******* 20210609 Detail page Description Language text issue *********/

.container--cms .content-container p, .container--cms .content-container div{
    word-break: break-word;
}

/******* 20210609 *********/
.affiliate-registration-css ul li a{
    cursor: default;
}
